From d5c8091df83da5e34417ff36a778eb9068b16798 Mon Sep 17 00:00:00 2001 From: PouleyKetchoupp Date: Tue, 3 Aug 2021 15:21:47 -0700 Subject: [PATCH] Convert physics test projects to 4.0 --- .../assets/texture/godot-head.png.import | 27 +- .../assets/tileset/tiles_demo.png.import | 27 +- 2d/physics_tests/assets/tileset/tileset.tres | 377 ++------------ 2d/physics_tests/icon.png.import | 27 +- 2d/physics_tests/main.tscn | 160 +++--- 2d/physics_tests/project.godot | 66 +-- 2d/physics_tests/test.gd | 12 +- 2d/physics_tests/tests/dynamic_box.tscn | 12 +- .../tests/functional/test_character.gd | 44 +- .../tests/functional/test_character_pixels.gd | 34 +- .../functional/test_character_pixels.tscn | 157 +++--- .../functional/test_character_slopes.tscn | 105 ++-- .../functional/test_character_tilemap.gd | 54 +- .../functional/test_character_tilemap.tscn | 142 +++--- .../tests/functional/test_collision_pairs.gd | 38 +- .../functional/test_collision_pairs.tscn | 149 +++--- .../tests/functional/test_joints.gd | 24 +- .../tests/functional/test_joints.tscn | 30 +- .../functional/test_one_way_collision.gd | 203 ++++---- .../functional/test_one_way_collision.tscn | 260 +++++----- .../tests/functional/test_pyramid.gd | 6 +- .../tests/functional/test_pyramid.tscn | 13 +- .../tests/functional/test_raycasting.gd | 10 +- .../tests/functional/test_raycasting.tscn | 82 +-- .../tests/functional/test_shapes.tscn | 80 +-- .../tests/functional/test_stack.gd | 8 +- .../tests/functional/test_stack.tscn | 13 +- .../tests/performance/test_perf_broadphase.gd | 46 +- .../performance/test_perf_broadphase.tscn | 9 +- .../test_perf_contact_islands.tscn | 113 +++-- .../tests/performance/test_perf_contacts.gd | 54 +- .../tests/performance/test_perf_contacts.tscn | 89 ++-- 2d/physics_tests/tests/static_scene.tscn | 9 +- 2d/physics_tests/tests/static_scene_flat.tscn | 13 +- 2d/physics_tests/tests/test_options.tscn | 16 +- 2d/physics_tests/tests_menu.gd | 6 +- ...troller.gd => characterbody_controller.gd} | 11 +- 2d/physics_tests/utils/container_log.gd | 6 +- 2d/physics_tests/utils/label_slider_value.gd | 2 +- 2d/physics_tests/utils/label_test.gd | 12 +- 2d/physics_tests/utils/option_menu.gd | 2 +- .../utils/rigidbody_controller.gd | 3 + 2d/physics_tests/utils/scroll_log.gd | 8 +- 2d/physics_tests/utils/slider.gd | 4 +- 2d/physics_tests/utils/system.gd | 9 +- .../godot3_robot_head_collision.tres | 4 +- 3d/physics_tests/icon.png.import | 27 +- 3d/physics_tests/main.tscn | 159 +++--- 3d/physics_tests/project.godot | 60 +-- 3d/physics_tests/test.gd | 28 +- .../tests/functional/test_collision_pairs.gd | 42 +- .../functional/test_collision_pairs.tscn | 200 ++++---- .../functional/test_compound_shapes.tscn | 287 ++++++----- .../tests/functional/test_friction.tscn | 218 ++++---- .../tests/functional/test_joints.gd | 26 +- .../tests/functional/test_joints.tscn | 55 +- .../tests/functional/test_moving_platform.gd | 20 +- .../functional/test_moving_platform.tscn | 221 ++++---- .../tests/functional/test_pyramid.gd | 12 +- .../tests/functional/test_pyramid.tscn | 23 +- .../tests/functional/test_raycasting.gd | 49 +- .../tests/functional/test_raycasting.tscn | 105 ++-- .../functional/test_rigidbody_ground_check.gd | 6 +- .../test_rigidbody_ground_check.tscn | 472 +++++++++--------- .../functional/test_rigidbody_impact.tscn | 122 ++--- .../tests/functional/test_shapes.tscn | 105 ++-- .../tests/functional/test_stack.gd | 12 +- .../tests/functional/test_stack.tscn | 23 +- .../tests/performance/test_perf_broadphase.gd | 48 +- .../performance/test_perf_broadphase.tscn | 11 +- .../test_perf_contact_islands.tscn | 214 ++++---- .../tests/performance/test_perf_contacts.gd | 54 +- .../tests/performance/test_perf_contacts.tscn | 135 ++--- 3d/physics_tests/tests/static_scene.tscn | 30 +- .../tests/static_scene_plane.tscn | 27 +- 3d/physics_tests/tests/test_options.tscn | 16 +- 3d/physics_tests/tests_menu.gd | 6 +- 3d/physics_tests/utils/camera_orbit.gd | 6 +- .../utils/characterbody_physics.gd | 19 + 3d/physics_tests/utils/container_log.gd | 6 +- 3d/physics_tests/utils/control3d.gd | 6 +- .../utils/kinematicbody_physics.gd | 23 - 3d/physics_tests/utils/label_test.gd | 12 +- 3d/physics_tests/utils/option_menu.gd | 2 +- .../utils/rigidbody_ground_check.gd | 22 +- 3d/physics_tests/utils/rigidbody_pick.gd | 10 +- 3d/physics_tests/utils/scroll_log.gd | 6 +- 3d/physics_tests/utils/system.gd | 9 +- 88 files changed, 2854 insertions(+), 2656 deletions(-) rename 2d/physics_tests/utils/{kinematicbody_controller.gd => characterbody_controller.gd} (85%) create mode 100644 3d/physics_tests/utils/characterbody_physics.gd delete mode 100644 3d/physics_tests/utils/kinematicbody_physics.gd diff --git a/2d/physics_tests/assets/texture/godot-head.png.import b/2d/physics_tests/assets/texture/godot-head.png.import index af8b6dd10d2..2c0e332918c 100644 --- a/2d/physics_tests/assets/texture/godot-head.png.import +++ b/2d/physics_tests/assets/texture/godot-head.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture" -path="res://.import/godot-head.png-6a90da7ab6a8c80b4170f240c8e33e70.stex" +type="StreamTexture2D" +uid="uid://c5duuyhbmd0m4" +path="res://.godot/imported/godot-head.png-6a90da7ab6a8c80b4170f240c8e33e70.stex" metadata={ "vram_texture": false } @@ -10,25 +11,25 @@ metadata={ [deps] source_file="res://assets/texture/godot-head.png" -dest_files=[ "res://.import/godot-head.png-6a90da7ab6a8c80b4170f240c8e33e70.stex" ] +dest_files=["res://.godot/imported/godot-head.png-6a90da7ab6a8c80b4170f240c8e33e70.stex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +compress/streamed=false +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false +process/normal_map_invert_y=false process/HDR_as_SRGB=false -process/invert_color=false -stream=false -size_limit=0 -detect_3d=true +process/size_limit=0 +detect_3d/compress_to=1 svg/scale=1.0 diff --git a/2d/physics_tests/assets/tileset/tiles_demo.png.import b/2d/physics_tests/assets/tileset/tiles_demo.png.import index 9ed1bbf5b1e..bb2fb195307 100644 --- a/2d/physics_tests/assets/tileset/tiles_demo.png.import +++ b/2d/physics_tests/assets/tileset/tiles_demo.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture" -path="res://.import/tiles_demo.png-4d398d5cc02bc85a2809dc13fbc9a3c2.stex" +type="StreamTexture2D" +uid="uid://1nmxl2dgdqro" +path="res://.godot/imported/tiles_demo.png-4d398d5cc02bc85a2809dc13fbc9a3c2.stex" metadata={ "vram_texture": false } @@ -10,25 +11,25 @@ metadata={ [deps] source_file="res://assets/tileset/tiles_demo.png" -dest_files=[ "res://.import/tiles_demo.png-4d398d5cc02bc85a2809dc13fbc9a3c2.stex" ] +dest_files=["res://.godot/imported/tiles_demo.png-4d398d5cc02bc85a2809dc13fbc9a3c2.stex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +compress/streamed=false +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false +process/normal_map_invert_y=false process/HDR_as_SRGB=false -process/invert_color=false -stream=false -size_limit=0 -detect_3d=true +process/size_limit=0 +detect_3d/compress_to=1 svg/scale=1.0 diff --git a/2d/physics_tests/assets/tileset/tileset.tres b/2d/physics_tests/assets/tileset/tileset.tres index ccf9907e6dd..d7e527e6a4a 100644 --- a/2d/physics_tests/assets/tileset/tileset.tres +++ b/2d/physics_tests/assets/tileset/tileset.tres @@ -1,335 +1,46 @@ -[gd_resource type="TileSet" load_steps=14 format=2] - -[ext_resource path="res://assets/tileset/tiles_demo.png" type="Texture" id=1] - -[sub_resource type="ConvexPolygonShape2D" id=1] -points = PoolVector2Array( 0, 6, 32, 6, 32, 32, 0, 32 ) - -[sub_resource type="ConvexPolygonShape2D" id=2] -points = PoolVector2Array( 0, 6, 28, 6, 28, 32, 0, 32 ) - -[sub_resource type="ConvexPolygonShape2D" id=3] -points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) - -[sub_resource type="ConvexPolygonShape2D" id=4] -points = PoolVector2Array( 0, 6, 32, 6, 32, 32, 0, 32 ) - -[sub_resource type="ConvexPolygonShape2D" id=5] -points = PoolVector2Array( 32, 38, 32, 64, 0, 64, 0, 6 ) - -[sub_resource type="ConvexPolygonShape2D" id=6] -points = PoolVector2Array( 0, 0, 28, 0, 28, 32, 0, 32 ) - -[sub_resource type="ConvexPolygonShape2D" id=7] -points = PoolVector2Array( 28, 6, 32, 6, 32, 32, 0, 32, 0, 0, 28, 0 ) - -[sub_resource type="ConvexPolygonShape2D" id=8] -points = PoolVector2Array( 0, 6, 32, 6, 32, 32, 0, 32 ) - -[sub_resource type="ConvexPolygonShape2D" id=9] -points = PoolVector2Array( 0, 6, 28, 6, 28, 32, 0, 32 ) - -[sub_resource type="ConvexPolygonShape2D" id=10] -points = PoolVector2Array( 0, 0, 32, 0, 32, 32, 0, 32 ) - -[sub_resource type="ConvexPolygonShape2D" id=11] -points = PoolVector2Array( 0, 0, 32, 0, 32, 24, 0, 24 ) - -[sub_resource type="ConvexPolygonShape2D" id=12] -points = PoolVector2Array( 0, 0, 28, 0, 28, 24, 0, 24 ) +[gd_resource type="TileSet" load_steps=4 format=3 uid="uid://rgfdpxlejxl3"] + +[ext_resource type="Texture2D" uid="uid://1nmxl2dgdqro" path="res://assets/tileset/tiles_demo.png" id="1"] + +[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_4jjf0"] +texture = ExtResource( "1" ) +tile_size = Vector2i(32, 32) +0:0/next_alternative_id = 8 +0:0/0 = 0 +0:0/0/flip_h = false +0:0/0/flip_v = false +0:0/0/transpose = false +0:0/0/texture_offset = Vector2i(0, 0) +0:0/0/modulate = Color(0, 0, 1, 1) +0:0/0/z_index = 0 +0:0/0/y_sort_origin = 0 +0:0/0/terrain_set = -1 +0:0/0/probability = 1.0 +0:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) + +[sub_resource type="TileSetAtlasSource" id="TileSetAtlasSource_rwmao"] +texture = ExtResource( "1" ) +margins = Vector2i(64, 0) +tile_size = Vector2i(32, 32) +0:0/next_alternative_id = 8 +0:0/0 = 0 +0:0/0/flip_h = false +0:0/0/flip_v = false +0:0/0/transpose = false +0:0/0/texture_offset = Vector2i(0, 0) +0:0/0/modulate = Color(1, 1, 1, 1) +0:0/0/z_index = 0 +0:0/0/y_sort_origin = 0 +0:0/0/terrain_set = -1 +0:0/0/probability = 1.0 +0:0/0/physics_layer_0/polygon_0/points = PackedVector2Array(-16, -16, 16, -16, 16, 16, -16, 16) +0:0/0/physics_layer_0/polygon_0/one_way = true [resource] -0/name = "ground" -0/texture = ExtResource( 1 ) -0/tex_offset = Vector2( 0, 0 ) -0/modulate = Color( 0, 0, 1, 1 ) -0/region = Rect2( 0, 0, 32, 32 ) -0/tile_mode = 0 -0/occluder_offset = Vector2( 0, 0 ) -0/navigation_offset = Vector2( 0, 0 ) -0/shape_offset = Vector2( 0, 0 ) -0/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -0/shape = SubResource( 1 ) -0/shape_one_way = false -0/shape_one_way_margin = 1.0 -0/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": false, -"one_way_margin": 1.0, -"shape": SubResource( 1 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -0/z_index = 0 -1/name = "ground_end" -1/texture = ExtResource( 1 ) -1/tex_offset = Vector2( 0, 0 ) -1/modulate = Color( 1, 1, 1, 1 ) -1/region = Rect2( 32, 0, 32, 32 ) -1/tile_mode = 0 -1/occluder_offset = Vector2( 0, 0 ) -1/navigation_offset = Vector2( 0, 0 ) -1/shape_offset = Vector2( 0, 0 ) -1/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -1/shape = SubResource( 2 ) -1/shape_one_way = false -1/shape_one_way_margin = 1.0 -1/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": false, -"one_way_margin": 1.0, -"shape": SubResource( 2 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -1/z_index = 0 -2/name = "slope" -2/texture = ExtResource( 1 ) -2/tex_offset = Vector2( 0, 0 ) -2/modulate = Color( 1, 1, 1, 1 ) -2/region = Rect2( 64, 64, 32, 64 ) -2/tile_mode = 0 -2/occluder_offset = Vector2( 0, 0 ) -2/navigation_offset = Vector2( 0, 0 ) -2/shape_offset = Vector2( 0, 0 ) -2/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -2/shape = SubResource( 5 ) -2/shape_one_way = false -2/shape_one_way_margin = 1.0 -2/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": false, -"one_way_margin": 1.0, -"shape": SubResource( 5 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -2/z_index = 0 -3/name = "wall" -3/texture = ExtResource( 1 ) -3/tex_offset = Vector2( 0, 0 ) -3/modulate = Color( 1, 1, 1, 1 ) -3/region = Rect2( 32, 32, 32, 32 ) -3/tile_mode = 0 -3/occluder_offset = Vector2( 0, 0 ) -3/navigation_offset = Vector2( 0, 0 ) -3/shape_offset = Vector2( 0, 0 ) -3/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -3/shape = SubResource( 6 ) -3/shape_one_way = false -3/shape_one_way_margin = 1.0 -3/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": false, -"one_way_margin": 1.0, -"shape": SubResource( 6 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -3/z_index = 0 -4/name = "slope_top" -4/texture = ExtResource( 1 ) -4/tex_offset = Vector2( 0, 0 ) -4/modulate = Color( 1, 1, 1, 1 ) -4/region = Rect2( 32, 64, 32, 32 ) -4/tile_mode = 0 -4/occluder_offset = Vector2( 0, 0 ) -4/navigation_offset = Vector2( 0, 0 ) -4/shape_offset = Vector2( 0, 0 ) -4/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -4/shape = SubResource( 7 ) -4/shape_one_way = false -4/shape_one_way_margin = 1.0 -4/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": false, -"one_way_margin": 1.0, -"shape": SubResource( 7 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -4/z_index = 0 -5/name = "one_way" -5/texture = ExtResource( 1 ) -5/tex_offset = Vector2( 0, 0 ) -5/modulate = Color( 1, 1, 1, 1 ) -5/region = Rect2( 64, 0, 32, 32 ) -5/tile_mode = 0 -5/occluder_offset = Vector2( 0, 0 ) -5/navigation_offset = Vector2( 0, 0 ) -5/shape_offset = Vector2( 0, 0 ) -5/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -5/shape = SubResource( 8 ) -5/shape_one_way = true -5/shape_one_way_margin = 1.0 -5/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": true, -"one_way_margin": 1.0, -"shape": SubResource( 8 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -5/z_index = 0 -6/name = "one_way_end" -6/texture = ExtResource( 1 ) -6/tex_offset = Vector2( 0, 0 ) -6/modulate = Color( 1, 1, 1, 1 ) -6/region = Rect2( 96, 0, 32, 32 ) -6/tile_mode = 0 -6/occluder_offset = Vector2( 0, 0 ) -6/navigation_offset = Vector2( 0, 0 ) -6/shape_offset = Vector2( 0, 0 ) -6/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -6/shape = SubResource( 9 ) -6/shape_one_way = true -6/shape_one_way_margin = 1.0 -6/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": true, -"one_way_margin": 1.0, -"shape": SubResource( 9 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -6/z_index = 0 -7/name = "rock" -7/texture = ExtResource( 1 ) -7/tex_offset = Vector2( 0, 0 ) -7/modulate = Color( 1, 1, 1, 1 ) -7/region = Rect2( 0, 32, 32, 32 ) -7/tile_mode = 0 -7/occluder_offset = Vector2( 0, 0 ) -7/navigation_offset = Vector2( 0, 0 ) -7/shape_offset = Vector2( 0, 0 ) -7/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -7/shape = SubResource( 10 ) -7/shape_one_way = false -7/shape_one_way_margin = 1.0 -7/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": false, -"one_way_margin": 1.0, -"shape": SubResource( 10 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -7/z_index = 0 -8/name = "bottom" -8/texture = ExtResource( 1 ) -8/tex_offset = Vector2( 0, 0 ) -8/modulate = Color( 1, 1, 1, 1 ) -8/region = Rect2( 192, 32, 32, 32 ) -8/tile_mode = 0 -8/occluder_offset = Vector2( 0, 0 ) -8/navigation_offset = Vector2( 0, 0 ) -8/shape_offset = Vector2( 0, 0 ) -8/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -8/shape = SubResource( 11 ) -8/shape_one_way = false -8/shape_one_way_margin = 1.0 -8/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": false, -"one_way_margin": 1.0, -"shape": SubResource( 11 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -8/z_index = 0 -9/name = "bottom_end" -9/texture = ExtResource( 1 ) -9/tex_offset = Vector2( 0, 0 ) -9/modulate = Color( 1, 1, 1, 1 ) -9/region = Rect2( 224, 32, 32, 32 ) -9/tile_mode = 0 -9/occluder_offset = Vector2( 0, 0 ) -9/navigation_offset = Vector2( 0, 0 ) -9/shape_offset = Vector2( 0, 0 ) -9/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -9/shape = SubResource( 12 ) -9/shape_one_way = false -9/shape_one_way_margin = 1.0 -9/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": false, -"one_way_margin": 1.0, -"shape": SubResource( 12 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -9/z_index = 0 -10/name = "bottom_corner" -10/texture = ExtResource( 1 ) -10/tex_offset = Vector2( 0, 0 ) -10/modulate = Color( 1, 1, 1, 1 ) -10/region = Rect2( 160, 32, 32, 32 ) -10/tile_mode = 0 -10/occluder_offset = Vector2( 0, 0 ) -10/navigation_offset = Vector2( 0, 0 ) -10/shape_offset = Vector2( 0, 0 ) -10/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -10/shape = SubResource( 3 ) -10/shape_one_way = false -10/shape_one_way_margin = 1.0 -10/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": false, -"one_way_margin": 1.0, -"shape": SubResource( 3 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -10/z_index = 0 -11/name = "tree_trunk_0" -11/texture = ExtResource( 1 ) -11/tex_offset = Vector2( 0, 0 ) -11/modulate = Color( 1, 1, 1, 1 ) -11/region = Rect2( 128, 64, 32, 32 ) -11/tile_mode = 0 -11/occluder_offset = Vector2( 0, 0 ) -11/navigation_offset = Vector2( 0, 0 ) -11/shape_offset = Vector2( 0, 0 ) -11/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -11/shape_one_way = false -11/shape_one_way_margin = 0.0 -11/shapes = [ ] -11/z_index = 0 -12/name = "tree_trunk_1" -12/texture = ExtResource( 1 ) -12/tex_offset = Vector2( 0, 0 ) -12/modulate = Color( 1, 1, 1, 1 ) -12/region = Rect2( 128, 32, 32, 32 ) -12/tile_mode = 0 -12/occluder_offset = Vector2( 0, 0 ) -12/navigation_offset = Vector2( 0, 0 ) -12/shape_offset = Vector2( 0, 0 ) -12/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -12/shape_one_way = false -12/shape_one_way_margin = 0.0 -12/shapes = [ ] -12/z_index = 0 -13/name = "tree_base" -13/texture = ExtResource( 1 ) -13/tex_offset = Vector2( 0, 0 ) -13/modulate = Color( 1, 1, 1, 1 ) -13/region = Rect2( 128, 96, 32, 32 ) -13/tile_mode = 0 -13/occluder_offset = Vector2( 0, 0 ) -13/navigation_offset = Vector2( 0, 0 ) -13/shape_offset = Vector2( 0, 0 ) -13/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -13/shape = SubResource( 4 ) -13/shape_one_way = false -13/shape_one_way_margin = 1.0 -13/shapes = [ { -"autotile_coord": Vector2( 0, 0 ), -"one_way": false, -"one_way_margin": 1.0, -"shape": SubResource( 4 ), -"shape_transform": Transform2D( 1, 0, 0, 1, 0, 0 ) -} ] -13/z_index = 0 -14/name = "tree_top" -14/texture = ExtResource( 1 ) -14/tex_offset = Vector2( 0, 0 ) -14/modulate = Color( 1, 1, 1, 1 ) -14/region = Rect2( 128, 0, 32, 32 ) -14/tile_mode = 0 -14/occluder_offset = Vector2( 0, 0 ) -14/navigation_offset = Vector2( 0, 0 ) -14/shape_offset = Vector2( 0, 0 ) -14/shape_transform = Transform2D( 1, 0, 0, 1, 0, 0 ) -14/shape_one_way = false -14/shape_one_way_margin = 0.0 -14/shapes = [ ] -14/z_index = 0 +tile_size = Vector2i(32, 32) +physics_layer_0/collision_layer = 1 +sources/0 = SubResource( "TileSetAtlasSource_4jjf0" ) +sources/5 = SubResource( "TileSetAtlasSource_rwmao" ) +tile_proxies/source_level = [] +tile_proxies/coords_level = [] +tile_proxies/alternative_level = [] diff --git a/2d/physics_tests/icon.png.import b/2d/physics_tests/icon.png.import index 96cbf4629a5..9e8403b505e 100644 --- a/2d/physics_tests/icon.png.import +++ b/2d/physics_tests/icon.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture" -path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +type="StreamTexture2D" +uid="uid://cpps5r8o4dfwo" +path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" metadata={ "vram_texture": false } @@ -10,25 +11,25 @@ metadata={ [deps] source_file="res://icon.png" -dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] +dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +compress/streamed=false +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false +process/normal_map_invert_y=false process/HDR_as_SRGB=false -process/invert_color=false -stream=false -size_limit=0 -detect_3d=true +process/size_limit=0 +detect_3d/compress_to=1 svg/scale=1.0 diff --git a/2d/physics_tests/main.tscn b/2d/physics_tests/main.tscn index 84ee8093963..26d389b4586 100644 --- a/2d/physics_tests/main.tscn +++ b/2d/physics_tests/main.tscn @@ -1,132 +1,133 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=11 format=3 uid="uid://6a0nxwkgf5dq"] -[ext_resource path="res://utils/label_fps.gd" type="Script" id=1] -[ext_resource path="res://utils/label_version.gd" type="Script" id=2] -[ext_resource path="res://utils/label_engine.gd" type="Script" id=3] -[ext_resource path="res://tests_menu.gd" type="Script" id=4] -[ext_resource path="res://utils/label_test.gd" type="Script" id=5] -[ext_resource path="res://utils/label_pause.gd" type="Script" id=6] -[ext_resource path="res://utils/container_log.gd" type="Script" id=10] -[ext_resource path="res://utils/scroll_log.gd" type="Script" id=11] -[ext_resource path="res://tests.gd" type="Script" id=12] +[ext_resource type="Script" path="res://utils/label_fps.gd" id="1"] +[ext_resource type="Script" path="res://utils/label_version.gd" id="2"] +[ext_resource type="Script" path="res://utils/label_engine.gd" id="3"] +[ext_resource type="Script" path="res://tests_menu.gd" id="4"] +[ext_resource type="Script" path="res://utils/label_test.gd" id="5"] +[ext_resource type="Script" path="res://utils/label_pause.gd" id="6"] +[ext_resource type="Script" path="res://utils/container_log.gd" id="10"] +[ext_resource type="Script" path="res://utils/scroll_log.gd" id="11"] +[ext_resource type="Script" path="res://tests.gd" id="12"] -[sub_resource type="StyleBoxFlat" id=1] -bg_color = Color( 0, 0, 0, 0.176471 ) +[sub_resource type="StyleBoxFlat" id="1"] +bg_color = Color(0, 0, 0, 0.176471) [node name="Main" type="Control"] anchor_right = 1.0 anchor_bottom = 1.0 mouse_filter = 2 -script = ExtResource( 12 ) +script = ExtResource( "12" ) __meta__ = { "_edit_use_anchors_": false } [node name="TestsMenu" type="MenuButton" parent="."] -pause_mode = 2 -margin_left = 10.0 -margin_top = 10.0 -margin_right = 125.0 -margin_bottom = 30.0 +offset_left = 10.0 +offset_top = 10.0 +offset_right = 125.0 +offset_bottom = 30.0 text = "TESTS" flat = false -script = ExtResource( 4 ) +items = [] +script = ExtResource( "4" ) __meta__ = { "_edit_use_anchors_": false } [node name="LabelControls" type="Label" parent="."] -pause_mode = 2 -margin_left = 157.0 -margin_top = 13.0 -margin_right = 646.0 -margin_bottom = 27.0 +offset_left = 157.0 +offset_top = 13.0 +offset_right = 646.0 +offset_bottom = 27.0 text = "P - TOGGLE PAUSE / R - RESTART / C - TOGGLE COLLISION / F - TOGGLE FULL SCREEN / ESC - QUIT" +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } [node name="LabelFPS" type="Label" parent="."] -pause_mode = 2 anchor_top = 1.0 anchor_bottom = 1.0 -margin_left = 10.0 -margin_top = -19.0 -margin_right = 50.0 -margin_bottom = -5.0 +offset_left = 10.0 +offset_top = -19.0 +offset_right = 50.0 +offset_bottom = -5.0 text = "FPS: 0" -script = ExtResource( 1 ) +structured_text_bidi_override_options = [] +script = ExtResource( "1" ) __meta__ = { "_edit_use_anchors_": false } [node name="LabelEngine" type="Label" parent="."] -pause_mode = 2 anchor_top = 1.0 anchor_bottom = 1.0 -margin_left = 10.0 -margin_top = -39.0 -margin_right = 50.0 -margin_bottom = -25.0 +offset_left = 10.0 +offset_top = -39.0 +offset_right = 50.0 +offset_bottom = -25.0 text = "Physics engine:" -script = ExtResource( 3 ) +structured_text_bidi_override_options = [] +script = ExtResource( "3" ) __meta__ = { "_edit_use_anchors_": false } [node name="LabelVersion" type="Label" parent="."] -pause_mode = 2 anchor_top = 1.0 anchor_bottom = 1.0 -margin_left = 10.0 -margin_top = -59.0 -margin_right = 50.0 -margin_bottom = -45.0 +offset_left = 10.0 +offset_top = -59.0 +offset_right = 50.0 +offset_bottom = -45.0 text = "Godot Version:" -script = ExtResource( 2 ) +structured_text_bidi_override_options = [] +script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false } [node name="LabelTest" type="Label" parent="."] -pause_mode = 2 anchor_top = 1.0 anchor_bottom = 1.0 -margin_left = 10.0 -margin_top = -79.0 -margin_right = 50.0 -margin_bottom = -65.0 +offset_left = 10.0 +offset_top = -79.0 +offset_right = 50.0 +offset_bottom = -65.0 text = "Test:" -script = ExtResource( 5 ) +structured_text_bidi_override_options = [] +script = ExtResource( "5" ) __meta__ = { "_edit_use_anchors_": false } [node name="LabelPause" type="Label" parent="."] -pause_mode = 2 anchor_left = 0.5 anchor_top = 1.0 anchor_right = 0.5 anchor_bottom = 1.0 -margin_left = -20.0 -margin_top = -40.9695 -margin_right = 31.0 -margin_bottom = -26.9695 +offset_left = -20.0 +offset_top = -40.9695 +offset_right = 31.0 +offset_bottom = -26.9695 text = "PAUSED" -script = ExtResource( 6 ) +structured_text_bidi_override_options = [] +script = ExtResource( "6" ) __meta__ = { "_edit_use_anchors_": false } [node name="PanelLog" type="Panel" parent="."] -pause_mode = 2 anchor_left = 1.0 anchor_top = 1.0 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = -428.0 -margin_top = -125.0 -custom_styles/panel = SubResource( 1 ) +offset_left = -428.0 +offset_top = -125.0 +theme_override_styles/panel = SubResource( "1" ) +script = null __meta__ = { "_edit_use_anchors_": false } @@ -136,12 +137,13 @@ anchor_left = 1.0 anchor_top = 1.0 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = -48.0 -margin_top = -25.0 -margin_right = -5.0 -margin_bottom = -5.0 +offset_left = -48.0 +offset_top = -25.0 +offset_right = -5.0 +offset_bottom = -5.0 focus_mode = 0 text = "clear" +script = null __meta__ = { "_edit_use_anchors_": false } @@ -151,45 +153,47 @@ anchor_left = 1.0 anchor_top = 1.0 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = -150.0 -margin_top = -27.0 -margin_right = -54.0 -margin_bottom = -3.0 +offset_left = -150.0 +offset_top = -27.0 +offset_right = -54.0 +offset_bottom = -3.0 focus_mode = 0 pressed = true text = "auto-scroll" +script = null __meta__ = { "_edit_use_anchors_": false } [node name="ScrollLog" type="ScrollContainer" parent="PanelLog"] -margin_left = 10.0 -margin_top = 5.0 -margin_right = 418.0 -margin_bottom = 94.0 +offset_left = 10.0 +offset_top = 5.0 +offset_right = 418.0 +offset_bottom = 94.0 scroll_horizontal_enabled = false -script = ExtResource( 11 ) +script = ExtResource( "11" ) __meta__ = { "_edit_use_anchors_": false } auto_scroll = true [node name="VBoxLog" type="VBoxContainer" parent="PanelLog/ScrollLog"] -margin_right = 408.0 -margin_bottom = 89.0 +offset_right = 408.0 +offset_bottom = 89.0 size_flags_horizontal = 3 size_flags_vertical = 3 alignment = 2 -script = ExtResource( 10 ) +script = ExtResource( "10" ) [node name="LabelLog" type="Label" parent="PanelLog/ScrollLog/VBoxLog"] -margin_top = 75.0 -margin_right = 408.0 -margin_bottom = 89.0 +offset_top = 63.0 +offset_right = 408.0 +offset_bottom = 89.0 text = "Log start" valign = 2 -autowrap = true max_lines_visible = 5 +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } diff --git a/2d/physics_tests/project.godot b/2d/physics_tests/project.godot index 580d85eea58..6924611ad83 100644 --- a/2d/physics_tests/project.godot +++ b/2d/physics_tests/project.godot @@ -8,22 +8,22 @@ config_version=4 -_global_script_classes=[ { +_global_script_classes=[{ "base": "MenuButton", -"class": "OptionMenu", -"language": "GDScript", +"class": &"OptionMenu", +"language": &"GDScript", "path": "res://utils/option_menu.gd" }, { "base": "Node2D", -"class": "Test", -"language": "GDScript", +"class": &"Test", +"language": &"GDScript", "path": "res://test.gd" }, { "base": "Test", -"class": "TestCharacter", -"language": "GDScript", +"class": &"TestCharacter", +"language": &"GDScript", "path": "res://tests/functional/test_character.gd" -} ] +}] _global_script_class_icons={ "OptionMenu": "", "Test": "", @@ -48,69 +48,69 @@ gdscript/warnings/return_value_discarded=false [display] window/dpi/allow_hidpi=true -window/stretch/mode="2d" +window/stretch/mode="canvas_items" window/stretch/aspect="expand" [input] ui_left={ "deadzone": 0.5, -"events": [ ] +"events": [] } ui_right={ "deadzone": 0.5, -"events": [ ] +"events": [] } ui_up={ "deadzone": 0.5, -"events": [ ] +"events": [] } ui_down={ "deadzone": 0.5, -"events": [ ] +"events": [] } toggle_full_screen={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":70,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":70,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } exit={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":16777217,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } toggle_debug_collision={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":67,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":67,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } restart_test={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":82,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":82,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } toggle_pause={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":80,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":80,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } character_left={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777231,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":16777231,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":65,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } character_right={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777233,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":16777233,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":68,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } character_jump={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777232,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":16777232,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":87,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } [memory] @@ -122,5 +122,5 @@ limits/message_queue/max_size_kb=10240 quality/driver/driver_name="GLES2" vram_compression/import_etc=true vram_compression/import_etc2=false -environment/default_clear_color=Color( 0.184314, 0.184314, 0.184314, 1 ) +environment/default_clear_color=Color(0.184314, 0.184314, 0.184314, 1) quality/filters/msaa=2 diff --git a/2d/physics_tests/test.gd b/2d/physics_tests/test.gd index b5e9b6f3af7..65c57d7d42a 100644 --- a/2d/physics_tests/test.gd +++ b/2d/physics_tests/test.gd @@ -4,7 +4,7 @@ extends Node2D signal wait_done() -export var _enable_debug_collision = true +@export var _enable_debug_collision = true var _timer var _timer_started = false @@ -68,7 +68,7 @@ func clear_drawn_nodes(): _drawn_nodes.clear() -func create_rigidbody(shape, pickable = false, transform = Transform.IDENTITY): +func create_rigidbody(shape, pickable = false, transform = Transform2D.IDENTITY): var collision = CollisionShape2D.new() collision.shape = shape collision.transform = transform @@ -83,15 +83,15 @@ func create_rigidbody(shape, pickable = false, transform = Transform.IDENTITY): return body -func create_rigidbody_box(size, pickable = false, use_icon = false, transform = Transform.IDENTITY): +func create_rigidbody_box(size, pickable = false, use_icon = false, transform = Transform2D.IDENTITY): var shape = RectangleShape2D.new() - shape.extents = 0.5 * size + shape.size = size var body = create_rigidbody(shape, pickable, transform) if use_icon: var texture = load("res://icon.png") - var icon = Sprite.new() + var icon = Sprite2D.new() icon.texture = texture icon.scale = size / texture.get_size() body.add_child(icon) @@ -104,7 +104,7 @@ func start_timer(timeout): _timer = Timer.new() _timer.one_shot = true add_child(_timer) - _timer.connect("timeout", self, "_on_timer_done") + _timer.connect("timeout", Callable(self, "_on_timer_done")) else: cancel_timer() diff --git a/2d/physics_tests/tests/dynamic_box.tscn b/2d/physics_tests/tests/dynamic_box.tscn index 716f93096ce..ae86b9efba8 100644 --- a/2d/physics_tests/tests/dynamic_box.tscn +++ b/2d/physics_tests/tests/dynamic_box.tscn @@ -1,10 +1,12 @@ -[gd_scene load_steps=2 format=2] +[gd_scene load_steps=2 format=3 uid="uid://gk0nqu0jrwm"] -[sub_resource type="RectangleShape2D" id=1] -extents = Vector2( 20, 20 ) +[sub_resource type="RectangleShape2D" id="1"] +size = Vector2(40, 40) [node name="StackBox" type="RigidBody2D"] -position = Vector2( -180, -20 ) +position = Vector2(-180, -20) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="."] -shape = SubResource( 1 ) +shape = SubResource( "1" ) +script = null diff --git a/2d/physics_tests/tests/functional/test_character.gd b/2d/physics_tests/tests/functional/test_character.gd index e7fc6ac0506..974da6b84b3 100644 --- a/2d/physics_tests/tests/functional/test_character.gd +++ b/2d/physics_tests/tests/functional/test_character.gd @@ -15,30 +15,30 @@ const OPTION_OBJECT_TYPE_KINEMATIC_RAYSHAPE = "Object type/Kinematic body with r const OPTION_MOVE_KINEMATIC_SNAP = "Move Options/Use snap (Kinematic only)" const OPTION_MOVE_KINEMATIC_STOP_ON_SLOPE = "Move Options/Use stop on slope (Kinematic only)" -export(Vector2) var _initial_velocity = Vector2.ZERO -export(Vector2) var _constant_velocity = Vector2.ZERO -export(float) var _motion_speed = 400.0 -export(float) var _gravity_force = 50.0 -export(float) var _jump_force = 1000.0 -export(float) var _snap_distance = 0.0 -export(float) var _floor_max_angle = 45.0 -export(E_BodyType) var _body_type = 0 +@export var _initial_velocity = Vector2.ZERO +@export var _constant_velocity = Vector2.ZERO +@export var _motion_speed = 400.0 +@export var _gravity_force = 50.0 +@export var _jump_force = 1000.0 +@export var _snap_distance = 0.0 +@export var _floor_max_angle = 45.0 +@export var _body_type : E_BodyType = 0 -onready var options = $Options +@onready var options = $Options var _use_snap = true var _use_stop_on_slope = true -var _body_parent = null +var _body_parent : Node = null var _rigid_body_template = null var _kinematic_body_template = null var _kinematic_body_ray_template = null -var _moving_body = null +var _moving_body : PhysicsBody2D = null func _ready(): - options.connect("option_selected", self, "_on_option_selected") - options.connect("option_changed", self, "_on_option_changed") + options.connect("option_selected", Callable(self, "_on_option_selected")) + options.connect("option_changed", Callable(self, "_on_option_changed")) _rigid_body_template = find_node("RigidBody2D") if _rigid_body_template: @@ -47,14 +47,14 @@ func _ready(): var enabled = _body_type == E_BodyType.RIGID_BODY options.add_menu_item(OPTION_OBJECT_TYPE_RIGIDBODY, true, enabled, true) - _kinematic_body_template = find_node("KinematicBody2D") + _kinematic_body_template = find_node("CharacterBody2D") if _kinematic_body_template: _body_parent = _kinematic_body_template.get_parent() _body_parent.remove_child(_kinematic_body_template) var enabled = _body_type == E_BodyType.KINEMATIC_BODY options.add_menu_item(OPTION_OBJECT_TYPE_KINEMATIC, true, enabled, true) - _kinematic_body_ray_template = find_node("KinematicBodyRay2D") + _kinematic_body_ray_template = find_node("CharacterBodyRay2D") if _kinematic_body_ray_template: _body_parent = _kinematic_body_ray_template.get_parent() _body_parent.remove_child(_kinematic_body_ray_template) @@ -72,10 +72,10 @@ func _process(_delta): if _moving_body: if _moving_body.is_on_floor(): label_floor.text = "ON FLOOR" - label_floor.self_modulate = Color.green + label_floor.self_modulate = Color.GREEN else: label_floor.text = "OFF FLOOR" - label_floor.self_modulate = Color.red + label_floor.self_modulate = Color.RED else: label_floor.visible = false @@ -83,13 +83,13 @@ func _process(_delta): func _input(event): var key_event = event as InputEventKey if key_event and not key_event.pressed: - if key_event.scancode == KEY_1: + if key_event.keycode == KEY_1: if _rigid_body_template: _on_option_selected(OPTION_OBJECT_TYPE_RIGIDBODY) - elif key_event.scancode == KEY_2: + elif key_event.keycode == KEY_2: if _kinematic_body_template: _on_option_selected(OPTION_OBJECT_TYPE_KINEMATIC) - elif key_event.scancode == KEY_3: + elif key_event.keycode == KEY_3: if _kinematic_body_ray_template: _on_option_selected(OPTION_OBJECT_TYPE_KINEMATIC_RAYSHAPE) @@ -145,7 +145,7 @@ func _start_test(): E_BodyType.KINEMATIC_BODY_RAY_SHAPE: template = _kinematic_body_ray_template - test_label += template.name + test_label += String(template.name) _moving_body = template.duplicate() _body_parent.add_child(_moving_body) @@ -156,7 +156,7 @@ func _start_test(): _moving_body._gravity_force = _gravity_force _moving_body._jump_force = _jump_force - if _moving_body is KinematicBody2D: + if _moving_body is CharacterBody2D: if _use_snap: _moving_body._snap = Vector2(0, _snap_distance) _moving_body._stop_on_slope = _use_stop_on_slope diff --git a/2d/physics_tests/tests/functional/test_character_pixels.gd b/2d/physics_tests/tests/functional/test_character_pixels.gd index 993dc50ce81..d1b1399d807 100644 --- a/2d/physics_tests/tests/functional/test_character_pixels.gd +++ b/2d/physics_tests/tests/functional/test_character_pixels.gd @@ -17,11 +17,15 @@ var _failed_reason = "" func _ready(): + super._ready() + options.add_menu_item(OPTION_TEST_CASE_ALL) options.add_menu_item(OPTION_TEST_CASE_DETECT_FLOOR_NO_SNAP) options.add_menu_item(OPTION_TEST_CASE_DETECT_FLOOR_MOTION_CHANGES) -func _physics_process(_delta): +func _physics_process(delta): + super._physics_process(delta) + if _moving_body: if _moving_body.is_on_floor(): _floor_detected = true @@ -40,24 +44,26 @@ func _physics_process(_delta): func _input(event): + super._input(event) + var key_event = event as InputEventKey if key_event and not key_event.pressed: - if key_event.scancode == KEY_0: - _on_option_selected(OPTION_TEST_CASE_ALL) + if key_event.keycode == KEY_0: + await _on_option_selected(OPTION_TEST_CASE_ALL) func _on_option_selected(option): match option: OPTION_TEST_CASE_ALL: - _test_all() + await _test_all() OPTION_TEST_CASE_DETECT_FLOOR_NO_SNAP: - _start_test_case(option) + await _start_test_case(option) return OPTION_TEST_CASE_DETECT_FLOOR_MOTION_CHANGES: - _start_test_case(option) + await _start_test_case(option) return - ._on_option_selected(option) + super._on_option_selected(option) func _start_test_case(option): @@ -71,7 +77,7 @@ func _start_test_case(option): _body_type = E_BodyType.KINEMATIC_BODY _start_test() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -83,7 +89,7 @@ func _start_test_case(option): _body_type = E_BodyType.KINEMATIC_BODY _start_test() - yield(start_timer(4.0), "timeout") + await start_timer(4.0).timeout if is_timer_canceled(): _test_motion_changes = false return @@ -100,13 +106,13 @@ func _test_all(): Log.print_log("* TESTING ALL...") # Test floor detection with no snapping. - yield(_start_test_case(OPTION_TEST_CASE_DETECT_FLOOR_NO_SNAP), "completed") + await _start_test_case(OPTION_TEST_CASE_DETECT_FLOOR_NO_SNAP) if is_timer_canceled(): return # Test floor detection with no snapping. # In this test case, motion alternates different speeds. - yield(_start_test_case(OPTION_TEST_CASE_DETECT_FLOOR_MOTION_CHANGES), "completed") + await _start_test_case(OPTION_TEST_CASE_DETECT_FLOOR_MOTION_CHANGES) if is_timer_canceled(): return @@ -120,7 +126,7 @@ func _set_result(test_passed): else: result = "FAILED" - if not test_passed and not _failed_reason.empty(): + if not test_passed and not _failed_reason.is_empty(): result += _failed_reason else: result += "." @@ -129,7 +135,7 @@ func _set_result(test_passed): func _start_test(): - ._start_test() + super._start_test() _failed_reason = "" @@ -140,7 +146,7 @@ func _start_test(): _failed_reason = ": floor was not detected consistently." if _test_motion_changes: # Always use the same seed for reproducible results. - rand_seed(123456789) + seed(123456789) _moving_body._gravity_force = 0.0 _moving_body._motion_speed = 0.0 _moving_body._jump_force = 0.0 diff --git a/2d/physics_tests/tests/functional/test_character_pixels.tscn b/2d/physics_tests/tests/functional/test_character_pixels.tscn index 411cffe590d..bc1725836d8 100644 --- a/2d/physics_tests/tests/functional/test_character_pixels.tscn +++ b/2d/physics_tests/tests/functional/test_character_pixels.tscn @@ -1,151 +1,176 @@ -[gd_scene load_steps=12 format=2] +[gd_scene load_steps=12 format=3 uid="uid://bxx2ftwccdlft"] -[ext_resource path="res://tests/functional/test_character_pixels.gd" type="Script" id=1] -[ext_resource path="res://utils/rigidbody_controller.gd" type="Script" id=2] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=3] -[ext_resource path="res://tests/static_scene_flat.tscn" type="PackedScene" id=4] -[ext_resource path="res://utils/kinematicbody_controller.gd" type="Script" id=7] +[ext_resource type="Script" path="res://tests/functional/test_character_pixels.gd" id="1"] +[ext_resource type="Script" path="res://utils/rigidbody_controller.gd" id="2"] +[ext_resource type="PackedScene" uid="uid://blh3twy74kbkv" path="res://tests/test_options.tscn" id="3"] +[ext_resource type="PackedScene" uid="uid://cx2q80okt25o1" path="res://tests/static_scene_flat.tscn" id="4"] +[ext_resource type="Script" path="res://utils/characterbody_controller.gd" id="7"] -[sub_resource type="PhysicsMaterial" id=1] +[sub_resource type="PhysicsMaterial" id="1"] friction = 0.0 -[sub_resource type="RectangleShape2D" id=2] -extents = Vector2( 3, 5 ) +[sub_resource type="RectangleShape2D" id="2"] +size = Vector2(6, 10) -[sub_resource type="RectangleShape2D" id=3] -extents = Vector2( 3, 4.9 ) +[sub_resource type="RectangleShape2D" id="3"] +size = Vector2(6, 9.8) -[sub_resource type="RectangleShape2D" id=4] -extents = Vector2( 3, 3 ) +[sub_resource type="RectangleShape2D" id="4"] +size = Vector2(6, 6) -[sub_resource type="RayShape2D" id=5] +[sub_resource type="RayShape2D" id="5"] length = 3.0 -[sub_resource type="RectangleShape2D" id=6] -extents = Vector2( 10, 2 ) +[sub_resource type="RectangleShape2D" id="6"] +size = Vector2(20, 4) [node name="Test" type="Node2D"] -script = ExtResource( 1 ) +script = ExtResource( "1" ) _motion_speed = 30.0 _gravity_force = 2.0 _jump_force = 50.0 _snap_distance = 1.0 -[node name="ViewportContainer" type="ViewportContainer" parent="."] +[node name="ViewportContainer" type="SubViewportContainer" parent="."] anchor_right = 1.0 anchor_bottom = 1.0 -margin_right = 1024.0 -margin_bottom = 600.0 +offset_right = 1024.0 +offset_bottom = 600.0 size_flags_horizontal = 3 size_flags_vertical = 3 stretch = true +script = null __meta__ = { "_edit_use_anchors_": false } -[node name="Viewport" type="Viewport" parent="ViewportContainer"] -size = Vector2( 128, 75 ) +[node name="Viewport" type="SubViewport" parent="ViewportContainer"] handle_input_locally = false -render_target_update_mode = 3 +size = Vector2i(1024, 600) +size_2d_override = Vector2i(128, 75) +size_2d_override_stretch = true +render_target_update_mode = 4 +script = null -[node name="StaticSceneFlat" parent="ViewportContainer/Viewport" instance=ExtResource( 4 )] -position = Vector2( 0, -450 ) +[node name="StaticSceneFlat" parent="ViewportContainer/Viewport" instance=ExtResource( "4" )] +position = Vector2(0, -450) [node name="RigidBody2D" type="RigidBody2D" parent="ViewportContainer/Viewport"] -position = Vector2( 30, 40 ) +position = Vector2(30, 40) collision_mask = 2147483649 mode = 2 -physics_material_override = SubResource( 1 ) +physics_material_override = SubResource( "1" ) contacts_reported = 4 contact_monitor = true -script = ExtResource( 2 ) +script = ExtResource( "2" ) [node name="CollisionShape2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/RigidBody2D"] -shape = SubResource( 2 ) +shape = SubResource( "2" ) +script = null -[node name="KinematicBody2D" type="KinematicBody2D" parent="ViewportContainer/Viewport"] -position = Vector2( 30, 40 ) +[node name="CharacterBody2D" type="CharacterBody2D" parent="ViewportContainer/Viewport"] +position = Vector2(30, 40) collision_mask = 2147483649 -script = ExtResource( 7 ) +script = ExtResource( "7" ) -[node name="CollisionShape2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/KinematicBody2D"] -shape = SubResource( 3 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/CharacterBody2D"] +shape = SubResource( "3" ) +script = null -[node name="KinematicBodyRay2D" type="KinematicBody2D" parent="ViewportContainer/Viewport"] -position = Vector2( 30, 40 ) +[node name="CharacterBodyRay2D" type="CharacterBody2D" parent="ViewportContainer/Viewport"] +position = Vector2(30, 40) collision_mask = 2147483649 -script = ExtResource( 7 ) +script = ExtResource( "7" ) -[node name="CollisionShape2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/KinematicBodyRay2D"] -position = Vector2( 0, -2 ) -shape = SubResource( 4 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/CharacterBodyRay2D"] +position = Vector2(0, -2) +shape = SubResource( "4" ) +script = null -[node name="CollisionShapeRay2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/KinematicBodyRay2D"] -position = Vector2( 0, -1 ) -shape = SubResource( 5 ) +[node name="CollisionShapeRay2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/CharacterBodyRay2D"] +position = Vector2(0, -1) +shape = SubResource( "5" ) +script = null [node name="Wall1" type="StaticBody2D" parent="ViewportContainer/Viewport"] -position = Vector2( 20, 40 ) +position = Vector2(20, 40) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/Wall1"] rotation = 1.5708 -shape = SubResource( 6 ) +shape = SubResource( "6" ) +script = null [node name="Wall2" type="StaticBody2D" parent="ViewportContainer/Viewport"] -position = Vector2( 122, 40 ) +position = Vector2(122, 40) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/Wall2"] rotation = 1.5708 -shape = SubResource( 6 ) +shape = SubResource( "6" ) +script = null [node name="Platform1" type="StaticBody2D" parent="ViewportContainer/Viewport"] -position = Vector2( 50, 44 ) +position = Vector2(50, 44) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/Platform1"] -shape = SubResource( 6 ) +shape = SubResource( "6" ) one_way_collision = true +script = null [node name="Platform2" type="StaticBody2D" parent="ViewportContainer/Viewport"] -position = Vector2( 80, 38 ) +position = Vector2(80, 38) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="ViewportContainer/Viewport/Platform2"] -shape = SubResource( 6 ) +shape = SubResource( "6" ) +script = null [node name="Slope" type="StaticBody2D" parent="ViewportContainer/Viewport"] -position = Vector2( 84, 36 ) +position = Vector2(84, 36) +script = null [node name="CollisionShape2D" type="CollisionPolygon2D" parent="ViewportContainer/Viewport/Slope"] -polygon = PoolVector2Array( 0, 0, 6, 0, 22, 16, 16, 16 ) +polygon = PackedVector2Array(0, 0, 6, 0, 22, 16, 16, 16) +script = null [node name="LabelTestType" type="Label" parent="."] -margin_left = 14.0 -margin_top = 79.0 -margin_right = 145.0 -margin_bottom = 93.0 +offset_left = 14.0 +offset_top = 79.0 +offset_right = 145.0 +offset_bottom = 93.0 text = "Testing: " +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } -[node name="Options" parent="." instance=ExtResource( 3 )] +[node name="Options" parent="." instance=ExtResource( "3" )] +items = [] [node name="LabelFloor" type="Label" parent="."] -margin_left = 14.0 -margin_top = 237.929 -margin_right = 145.0 -margin_bottom = 251.929 +offset_left = 14.0 +offset_top = 237.929 +offset_right = 145.0 +offset_bottom = 251.929 text = "ON FLOOR" +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } [node name="LabelControls" type="Label" parent="."] -margin_left = 14.0 -margin_top = 263.291 -margin_right = 145.0 -margin_bottom = 294.291 +offset_left = 14.0 +offset_top = 263.291 +offset_right = 145.0 +offset_bottom = 294.291 text = "LEFT/RIGHT - MOVE UP - JUMP" +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } diff --git a/2d/physics_tests/tests/functional/test_character_slopes.tscn b/2d/physics_tests/tests/functional/test_character_slopes.tscn index edacfafd8d8..a032ebccbfd 100644 --- a/2d/physics_tests/tests/functional/test_character_slopes.tscn +++ b/2d/physics_tests/tests/functional/test_character_slopes.tscn @@ -1,102 +1,115 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=11 format=3 uid="uid://bqmku5ewlo6j5"] -[ext_resource path="res://tests/functional/test_character.gd" type="Script" id=1] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=3] -[ext_resource path="res://tests/static_scene_flat.tscn" type="PackedScene" id=4] -[ext_resource path="res://utils/rigidbody_controller.gd" type="Script" id=6] -[ext_resource path="res://utils/kinematicbody_controller.gd" type="Script" id=7] +[ext_resource type="Script" path="res://tests/functional/test_character.gd" id="1"] +[ext_resource type="PackedScene" uid="uid://blh3twy74kbkv" path="res://tests/test_options.tscn" id="3"] +[ext_resource type="PackedScene" uid="uid://cx2q80okt25o1" path="res://tests/static_scene_flat.tscn" id="4"] +[ext_resource type="Script" path="res://utils/rigidbody_controller.gd" id="6"] +[ext_resource type="Script" path="res://utils/characterbody_controller.gd" id="7"] -[sub_resource type="PhysicsMaterial" id=1] +[sub_resource type="PhysicsMaterial" id="1"] friction = 0.0 -[sub_resource type="CapsuleShape2D" id=2] +[sub_resource type="CapsuleShape2D" id="2"] radius = 32.0 height = 32.0 -[sub_resource type="CapsuleShape2D" id=3] +[sub_resource type="CapsuleShape2D" id="3"] radius = 32.0 height = 32.0 -[sub_resource type="CircleShape2D" id=4] +[sub_resource type="CircleShape2D" id="4"] radius = 32.0 -[sub_resource type="RayShape2D" id=5] +[sub_resource type="RayShape2D" id="5"] length = 64.0 [node name="Test" type="Node2D"] -script = ExtResource( 1 ) +script = ExtResource( "1" ) _snap_distance = 32.0 [node name="LabelTestType" type="Label" parent="."] -margin_left = 14.0 -margin_top = 79.0 -margin_right = 145.0 -margin_bottom = 93.0 +offset_left = 14.0 +offset_top = 79.0 +offset_right = 145.0 +offset_bottom = 93.0 text = "Testing: " +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } -[node name="Options" parent="." instance=ExtResource( 3 )] +[node name="Options" parent="." instance=ExtResource( "3" )] +items = [] [node name="LabelFloor" type="Label" parent="."] -margin_left = 14.0 -margin_top = 237.929 -margin_right = 145.0 -margin_bottom = 251.929 +offset_left = 14.0 +offset_top = 237.929 +offset_right = 145.0 +offset_bottom = 251.929 text = "ON FLOOR" +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } [node name="LabelControls" type="Label" parent="."] -margin_left = 14.0 -margin_top = 263.291 -margin_right = 145.0 -margin_bottom = 294.291 +offset_left = 14.0 +offset_top = 263.291 +offset_right = 145.0 +offset_bottom = 294.291 text = "LEFT/RIGHT - MOVE UP - JUMP" +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } [node name="RigidBody2D" type="RigidBody2D" parent="."] -position = Vector2( 100, 450 ) +position = Vector2(100, 450) collision_mask = 2147483649 mode = 2 -physics_material_override = SubResource( 1 ) +physics_material_override = SubResource( "1" ) contacts_reported = 4 contact_monitor = true -script = ExtResource( 6 ) +script = ExtResource( "6" ) [node name="CollisionShape2D" type="CollisionShape2D" parent="RigidBody2D"] -shape = SubResource( 2 ) +shape = SubResource( "2" ) +script = null -[node name="KinematicBody2D" type="KinematicBody2D" parent="."] -position = Vector2( 100, 450 ) +[node name="CharacterBody2D" type="CharacterBody2D" parent="."] +position = Vector2(100, 450) collision_mask = 2147483649 -script = ExtResource( 7 ) +script = ExtResource( "7" ) -[node name="CollisionShape2D" type="CollisionShape2D" parent="KinematicBody2D"] -shape = SubResource( 3 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D"] +shape = SubResource( "3" ) +script = null -[node name="KinematicBodyRay2D" type="KinematicBody2D" parent="."] -position = Vector2( 100, 450 ) +[node name="CharacterBodyRay2D" type="CharacterBody2D" parent="."] +position = Vector2(100, 450) collision_mask = 2147483649 -script = ExtResource( 7 ) +script = ExtResource( "7" ) -[node name="CollisionShape2D" type="CollisionShape2D" parent="KinematicBodyRay2D"] -position = Vector2( 0, -16 ) -shape = SubResource( 4 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBodyRay2D"] +position = Vector2(0, -16) +shape = SubResource( "4" ) +script = null -[node name="CollisionShapeRay2D" type="CollisionShape2D" parent="KinematicBodyRay2D"] -position = Vector2( 0, -16 ) -shape = SubResource( 5 ) +[node name="CollisionShapeRay2D" type="CollisionShape2D" parent="CharacterBodyRay2D"] +position = Vector2(0, -16) +shape = SubResource( "5" ) +script = null -[node name="StaticSceneFlat" parent="." instance=ExtResource( 4 )] -position = Vector2( 0, 12 ) +[node name="StaticSceneFlat" parent="." instance=ExtResource( "4" )] +position = Vector2(0, 12) [node name="StaticBody2D" type="StaticBody2D" parent="."] +script = null [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="StaticBody2D"] -polygon = PoolVector2Array( 171.04, 529.248, 379.275, 294.316, 506.084, 429.135, 648.26, 322.058, 868.746, 322.058, 985.282, 36.6919, 1242.91, 531.917 ) +polygon = PackedVector2Array(171.04, 529.248, 379.275, 294.316, 506.084, 429.135, 648.26, 322.058, 868.746, 322.058, 985.282, 36.6919, 1242.91, 531.917) +script = null diff --git a/2d/physics_tests/tests/functional/test_character_tilemap.gd b/2d/physics_tests/tests/functional/test_character_tilemap.gd index 5babe58bf3f..02cda317fd1 100644 --- a/2d/physics_tests/tests/functional/test_character_tilemap.gd +++ b/2d/physics_tests/tests/functional/test_character_tilemap.gd @@ -12,12 +12,14 @@ var _test_jump_one_way = false var _test_jump_one_way_corner = false var _test_fall_one_way = false -var _extra_body = null +var _extra_body : PhysicsBody2D = null var _failed_reason = "" func _ready(): + super._ready() + options.add_menu_item(OPTION_TEST_CASE_ALL) options.add_menu_item(OPTION_TEST_CASE_JUMP_ONE_WAY_RIGID) options.add_menu_item(OPTION_TEST_CASE_JUMP_ONE_WAY_KINEMATIC) @@ -27,33 +29,35 @@ func _ready(): func _input(event): + super._input(event) + var key_event = event as InputEventKey if key_event and not key_event.pressed: - if key_event.scancode == KEY_0: - _on_option_selected(OPTION_TEST_CASE_ALL) + if key_event.keycode == KEY_0: + await _on_option_selected(OPTION_TEST_CASE_ALL) func _on_option_selected(option): match option: OPTION_TEST_CASE_ALL: - _test_all() + await _test_all() OPTION_TEST_CASE_JUMP_ONE_WAY_RIGID: - _start_test_case(option) + await _start_test_case(option) return OPTION_TEST_CASE_JUMP_ONE_WAY_KINEMATIC: - _start_test_case(option) + await _start_test_case(option) return OPTION_TEST_CASE_JUMP_ONE_WAY_CORNER_RIGID: - _start_test_case(option) + await _start_test_case(option) return OPTION_TEST_CASE_JUMP_ONE_WAY_CORNER_KINEMATIC: - _start_test_case(option) + await _start_test_case(option) return OPTION_TEST_CASE_FALL_ONE_WAY_KINEMATIC: - _start_test_case(option) + await _start_test_case(option) return - ._on_option_selected(option) + super._on_option_selected(option) func _start_test_case(option): @@ -63,22 +67,22 @@ func _start_test_case(option): OPTION_TEST_CASE_JUMP_ONE_WAY_RIGID: _body_type = E_BodyType.RIGID_BODY _test_jump_one_way_corner = false - yield(_start_jump_one_way(), "completed") + await _start_jump_one_way() OPTION_TEST_CASE_JUMP_ONE_WAY_KINEMATIC: _body_type = E_BodyType.KINEMATIC_BODY _test_jump_one_way_corner = false - yield(_start_jump_one_way(), "completed") + await _start_jump_one_way() OPTION_TEST_CASE_JUMP_ONE_WAY_CORNER_RIGID: _body_type = E_BodyType.RIGID_BODY _test_jump_one_way_corner = true - yield(_start_jump_one_way(), "completed") + await _start_jump_one_way() OPTION_TEST_CASE_JUMP_ONE_WAY_CORNER_KINEMATIC: _body_type = E_BodyType.KINEMATIC_BODY _test_jump_one_way_corner = true - yield(_start_jump_one_way(), "completed") + await _start_jump_one_way() OPTION_TEST_CASE_FALL_ONE_WAY_KINEMATIC: _body_type = E_BodyType.KINEMATIC_BODY - yield(_start_fall_one_way(), "completed") + await _start_fall_one_way() _: Log.print_error("Invalid test case.") @@ -87,24 +91,24 @@ func _test_all(): Log.print_log("* TESTING ALL...") # RigidBody tests. - yield(_start_test_case(OPTION_TEST_CASE_JUMP_ONE_WAY_RIGID), "completed") + await _start_test_case(OPTION_TEST_CASE_JUMP_ONE_WAY_RIGID) if is_timer_canceled(): return - yield(_start_test_case(OPTION_TEST_CASE_JUMP_ONE_WAY_CORNER_RIGID), "completed") + await _start_test_case(OPTION_TEST_CASE_JUMP_ONE_WAY_CORNER_RIGID) if is_timer_canceled(): return - # KinematicBody tests. - yield(_start_test_case(OPTION_TEST_CASE_JUMP_ONE_WAY_KINEMATIC), "completed") + # CharacterBody tests. + await _start_test_case(OPTION_TEST_CASE_JUMP_ONE_WAY_KINEMATIC) if is_timer_canceled(): return - yield(_start_test_case(OPTION_TEST_CASE_JUMP_ONE_WAY_CORNER_KINEMATIC), "completed") + await _start_test_case(OPTION_TEST_CASE_JUMP_ONE_WAY_CORNER_KINEMATIC) if is_timer_canceled(): return - yield(_start_test_case(OPTION_TEST_CASE_FALL_ONE_WAY_KINEMATIC), "completed") + await _start_test_case(OPTION_TEST_CASE_FALL_ONE_WAY_KINEMATIC) if is_timer_canceled(): return @@ -118,7 +122,7 @@ func _set_result(test_passed): else: result = "FAILED" - if not test_passed and not _failed_reason.empty(): + if not test_passed and not _failed_reason.is_empty(): result += _failed_reason else: result += "." @@ -132,7 +136,7 @@ func _start_test(): _extra_body.queue_free() _extra_body = null - ._start_test() + super._start_test() if _test_jump_one_way: _test_jump_one_way = false @@ -167,7 +171,7 @@ func _start_jump_one_way(): _test_jump_one_way = true _start_test() - yield(start_timer(1.5), "timeout") + await start_timer(1.5).timeout if is_timer_canceled(): return @@ -178,7 +182,7 @@ func _start_fall_one_way(): _test_fall_one_way = true _start_test() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return diff --git a/2d/physics_tests/tests/functional/test_character_tilemap.tscn b/2d/physics_tests/tests/functional/test_character_tilemap.tscn index aaa142cfbb1..c8639ed5444 100644 --- a/2d/physics_tests/tests/functional/test_character_tilemap.tscn +++ b/2d/physics_tests/tests/functional/test_character_tilemap.tscn @@ -1,125 +1,143 @@ -[gd_scene load_steps=12 format=2] +[gd_scene load_steps=12 format=3 uid="uid://b7fcmfv5sqxfo"] -[ext_resource path="res://tests/functional/test_character_tilemap.gd" type="Script" id=1] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=3] -[ext_resource path="res://tests/static_scene_flat.tscn" type="PackedScene" id=4] -[ext_resource path="res://assets/tileset/tileset.tres" type="TileSet" id=5] -[ext_resource path="res://utils/rigidbody_controller.gd" type="Script" id=6] -[ext_resource path="res://utils/kinematicbody_controller.gd" type="Script" id=7] +[ext_resource type="Script" path="res://tests/functional/test_character_tilemap.gd" id="1"] +[ext_resource type="PackedScene" uid="uid://blh3twy74kbkv" path="res://tests/test_options.tscn" id="3"] +[ext_resource type="PackedScene" uid="uid://cx2q80okt25o1" path="res://tests/static_scene_flat.tscn" id="4"] +[ext_resource type="TileSet" uid="uid://rgfdpxlejxl3" path="res://assets/tileset/tileset.tres" id="5"] +[ext_resource type="Script" path="res://utils/rigidbody_controller.gd" id="6"] +[ext_resource type="Script" path="res://utils/characterbody_controller.gd" id="7"] -[sub_resource type="PhysicsMaterial" id=1] +[sub_resource type="PhysicsMaterial" id="1"] friction = 0.0 -[sub_resource type="RectangleShape2D" id=2] -extents = Vector2( 16, 31.9 ) +[sub_resource type="RectangleShape2D" id="2"] +size = Vector2(32, 63.9) -[sub_resource type="RectangleShape2D" id=3] -extents = Vector2( 16, 24 ) +[sub_resource type="RectangleShape2D" id="3"] +size = Vector2(32, 48) -[sub_resource type="RayShape2D" id=4] +[sub_resource type="RayShape2D" id="4"] length = 24.0 -[sub_resource type="CircleShape2D" id=5] +[sub_resource type="CircleShape2D" id="5"] radius = 16.0 [node name="Test" type="Node2D"] -script = ExtResource( 1 ) +script = ExtResource( "1" ) [node name="LabelTestType" type="Label" parent="."] -margin_left = 14.0 -margin_top = 79.0 -margin_right = 145.0 -margin_bottom = 93.0 +offset_left = 14.0 +offset_top = 79.0 +offset_right = 145.0 +offset_bottom = 93.0 text = "Testing: " +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } -[node name="Options" parent="." instance=ExtResource( 3 )] +[node name="Options" parent="." instance=ExtResource( "3" )] +items = [] [node name="LabelFloor" type="Label" parent="."] -margin_left = 14.0 -margin_top = 237.929 -margin_right = 145.0 -margin_bottom = 251.929 +offset_left = 14.0 +offset_top = 237.929 +offset_right = 145.0 +offset_bottom = 251.929 text = "ON FLOOR" +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } [node name="LabelControls" type="Label" parent="."] -margin_left = 14.0 -margin_top = 263.291 -margin_right = 145.0 -margin_bottom = 277.291 +offset_left = 14.0 +offset_top = 263.291 +offset_right = 145.0 +offset_bottom = 277.291 text = "LEFT/RIGHT - MOVE UP - JUMP" +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } [node name="RigidBody2D" type="RigidBody2D" parent="."] -position = Vector2( 250, 460 ) +position = Vector2(250, 460) collision_mask = 2147483649 mode = 2 -physics_material_override = SubResource( 1 ) +physics_material_override = SubResource( "1" ) contacts_reported = 4 contact_monitor = true -script = ExtResource( 6 ) +script = ExtResource( "6" ) [node name="CollisionShape2D" type="CollisionShape2D" parent="RigidBody2D"] -shape = SubResource( 2 ) +shape = SubResource( "2" ) +script = null -[node name="KinematicBody2D" type="KinematicBody2D" parent="."] -position = Vector2( 250, 460 ) +[node name="CharacterBody2D" type="CharacterBody2D" parent="."] +position = Vector2(250, 460) collision_mask = 2147483649 -script = ExtResource( 7 ) +script = ExtResource( "7" ) -[node name="CollisionShape2D" type="CollisionShape2D" parent="KinematicBody2D"] -shape = SubResource( 2 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D"] +shape = SubResource( "2" ) +script = null -[node name="KinematicBodyRay2D" type="KinematicBody2D" parent="."] -position = Vector2( 250, 460 ) +[node name="CharacterBodyRay2D" type="CharacterBody2D" parent="."] +position = Vector2(250, 460) collision_mask = 2147483649 -script = ExtResource( 7 ) +script = ExtResource( "7" ) -[node name="CollisionShape2D" type="CollisionShape2D" parent="KinematicBodyRay2D"] -position = Vector2( 0, -8 ) -shape = SubResource( 3 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBodyRay2D"] +position = Vector2(0, -8) +shape = SubResource( "3" ) +script = null -[node name="CollisionShapeRay2D" type="CollisionShape2D" parent="KinematicBodyRay2D"] -position = Vector2( 0, 8 ) -shape = SubResource( 4 ) +[node name="CollisionShapeRay2D" type="CollisionShape2D" parent="CharacterBodyRay2D"] +position = Vector2(0, 8) +shape = SubResource( "4" ) +script = null -[node name="CollisionShapeRay2DLeft" type="CollisionShape2D" parent="KinematicBodyRay2D"] -position = Vector2( -16, 8 ) -shape = SubResource( 4 ) +[node name="CollisionShapeRay2DLeft" type="CollisionShape2D" parent="CharacterBodyRay2D"] +position = Vector2(-16, 8) +shape = SubResource( "4" ) +script = null -[node name="CollisionShapeRay2DRight" type="CollisionShape2D" parent="KinematicBodyRay2D"] -position = Vector2( 16, 8 ) -shape = SubResource( 4 ) +[node name="CollisionShapeRay2DRight" type="CollisionShape2D" parent="CharacterBodyRay2D"] +position = Vector2(16, 8) +shape = SubResource( "4" ) +script = null [node name="JumpTargetArea2D" type="Area2D" parent="."] visible = false -position = Vector2( 810, 390 ) +position = Vector2(810, 390) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="JumpTargetArea2D"] -shape = SubResource( 5 ) +shape = SubResource( "5" ) disabled = true +script = null [node name="FallTargetArea2D" type="Area2D" parent="."] visible = false -position = Vector2( 250, 480 ) +position = Vector2(250, 480) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="FallTargetArea2D"] -shape = SubResource( 5 ) +shape = SubResource( "5" ) disabled = true +script = null -[node name="StaticSceneFlat" parent="." instance=ExtResource( 4 )] -position = Vector2( 0, 12 ) +[node name="StaticSceneFlat" parent="." instance=ExtResource( "4" )] +position = Vector2(0, 12) [node name="TileMap" type="TileMap" parent="."] -tile_set = ExtResource( 5 ) -cell_size = Vector2( 32, 32 ) -format = 1 -tile_data = PoolIntArray( 458764, 5, 0, 458765, 5, 0, 458766, 5, 0, 458767, 5, 0, 458768, 5, 0, 458769, 5, 0, 458770, 5, 0, 458771, 5, 0, 524300, 5, 0, 524301, 5, 0, 524302, 5, 0, 524303, 5, 0, 524304, 5, 0, 524305, 5, 0, 524306, 5, 0, 524307, 5, 0, 589836, 5, 0, 589837, 5, 0, 589838, 5, 0, 589839, 5, 0, 589840, 5, 0, 589841, 5, 0, 589842, 5, 0, 589843, 5, 0, 655372, 5, 0, 655373, 5, 0, 655374, 5, 0, 655375, 5, 0, 655376, 5, 0, 655377, 5, 0, 655378, 5, 0, 655379, 5, 0, 720908, 5, 0, 720909, 5, 0, 720910, 5, 0, 720911, 5, 0, 720912, 5, 0, 720913, 5, 0, 720914, 5, 0, 720915, 5, 0, 720922, 0, 0, 720923, 0, 0, 720924, 0, 0, 720925, 0, 0, 786438, 5, 0, 786439, 5, 0, 786440, 5, 0, 786441, 5, 0, 786444, 5, 0, 786445, 5, 0, 786446, 5, 0, 786447, 5, 0, 786448, 5, 0, 786449, 5, 0, 786450, 5, 0, 786451, 5, 0, 851980, 5, 0, 851981, 5, 0, 851982, 5, 0, 851983, 5, 0, 851984, 5, 0, 851985, 5, 0, 851986, 5, 0, 851987, 5, 0, 851992, 0, 0, 851993, 0, 0, 851994, 0, 0, 851995, 0, 0, 917516, 5, 0, 917517, 5, 0, 917518, 5, 0, 917519, 5, 0, 917520, 5, 0, 917521, 5, 0, 917522, 5, 0, 917523, 5, 0, 983052, 5, 0, 983053, 5, 0, 983054, 5, 0, 983055, 5, 0, 983056, 5, 0, 983057, 5, 0, 983058, 5, 0, 983059, 5, 0 ) +tile_set = ExtResource( "5" ) +collision_visibility_mode = 1 +format = 2 +layer_0/tile_data = PackedInt32Array(786438, 5, 0, 786439, 5, 0, 786440, 5, 0, 786441, 5, 0, 458764, 5, 0, 524300, 5, 0, 589836, 5, 0, 655372, 5, 0, 720908, 5, 0, 786444, 5, 0, 851980, 5, 0, 917516, 5, 0, 983052, 5, 0, 458765, 5, 0, 524301, 5, 0, 589837, 5, 0, 655373, 5, 0, 720909, 5, 0, 786445, 5, 0, 851981, 5, 0, 917517, 5, 0, 983053, 5, 0, 458766, 5, 0, 524302, 5, 0, 589838, 5, 0, 655374, 5, 0, 720910, 5, 0, 786446, 5, 0, 851982, 5, 0, 917518, 5, 0, 983054, 5, 0, 458767, 5, 0, 524303, 5, 0, 589839, 5, 0, 655375, 5, 0, 720911, 5, 0, 786447, 5, 0, 851983, 5, 0, 917519, 5, 0, 983055, 5, 0, 458768, 5, 0, 524304, 5, 0, 589840, 5, 0, 655376, 5, 0, 720912, 5, 0, 786448, 5, 0, 851984, 5, 0, 917520, 5, 0, 983056, 5, 0, 458769, 5, 0, 524305, 5, 0, 589841, 5, 0, 655377, 5, 0, 720913, 5, 0, 786449, 5, 0, 851985, 5, 0, 917521, 5, 0, 983057, 5, 0, 458770, 5, 0, 524306, 5, 0, 589842, 5, 0, 655378, 5, 0, 720914, 5, 0, 786450, 5, 0, 851986, 5, 0, 917522, 5, 0, 983058, 5, 0, 458771, 5, 0, 524307, 5, 0, 589843, 5, 0, 655379, 5, 0, 720915, 5, 0, 786451, 5, 0, 851987, 5, 0, 917523, 5, 0, 983059, 5, 0, 851992, 0, 0, 851993, 0, 0, 720922, 0, 0, 851994, 0, 0, 720923, 0, 0, 851995, 0, 0, 720924, 0, 0, 720925, 0, 0) +script = null diff --git a/2d/physics_tests/tests/functional/test_collision_pairs.gd b/2d/physics_tests/tests/functional/test_collision_pairs.gd index 778521333ec..48830acb638 100644 --- a/2d/physics_tests/tests/functional/test_collision_pairs.gd +++ b/2d/physics_tests/tests/functional/test_collision_pairs.gd @@ -16,9 +16,9 @@ const OPTION_SHAPE_CONCAVE_SEGMENTS = "Shape type/Concave Segments" const OFFSET_RANGE = 120.0 -export(Vector2) var offset = Vector2.ZERO +@export var offset = Vector2.ZERO -onready var options = $Options +@onready var options = $Options var _update_collision = false var _collision_test_index = 0 @@ -42,10 +42,10 @@ func _ready(): options.add_menu_item(OPTION_SHAPE_CONCAVE_POLYGON, true, true) options.add_menu_item(OPTION_SHAPE_CONCAVE_SEGMENTS, true, true) - options.connect("option_selected", self, "_on_option_selected") - options.connect("option_changed", self, "_on_option_changed") + options.connect("option_selected", Callable(self, "_on_option_selected")) + options.connect("option_changed", Callable(self, "_on_option_changed")) - yield(start_timer(0.5), "timeout") + await start_timer(0.5).timeout if is_timer_canceled(): return @@ -55,19 +55,21 @@ func _ready(): func _input(event): var key_event = event as InputEventKey if key_event and not key_event.pressed: - if key_event.scancode == KEY_1: + if key_event.keycode == KEY_1: _on_option_selected(OPTION_TYPE_RECTANGLE) - elif key_event.scancode == KEY_2: + elif key_event.keycode == KEY_2: _on_option_selected(OPTION_TYPE_SPHERE) - elif key_event.scancode == KEY_3: + elif key_event.keycode == KEY_3: _on_option_selected(OPTION_TYPE_CAPSULE) - elif key_event.scancode == KEY_4: + elif key_event.keycode == KEY_4: _on_option_selected(OPTION_TYPE_CONVEX_POLYGON) - elif key_event.scancode == KEY_5: + elif key_event.keycode == KEY_5: _on_option_selected(OPTION_TYPE_CONCAVE_SEGMENTS) -func _physics_process(_delta): +func _physics_process(delta): + super._physics_process(delta) + if not _update_collision: return @@ -104,7 +106,7 @@ func _do_collision_test(): Log.print_log("* Start %s collision tests..." % shape.resource_name) - var shape_query = Physics2DShapeQueryParameters.new() + var shape_query = PhysicsShapeQueryParameters2D.new() shape_query.set_shape(shape) var shape_scale = Vector2(0.5, 0.5) shape_query.transform = Transform2D.IDENTITY.scaled(shape_scale) @@ -116,13 +118,13 @@ func _do_collision_test(): var body = node as PhysicsBody2D var space_state = body.get_world_2d().direct_space_state - Log.print_log("* Testing: %s" % body.name) + Log.print_log("* Testing: %s" % String(body.name)) var center = body.position # Collision at the center inside. var res = _add_collision(space_state, center, shape, shape_query) - Log.print_log("Collision center inside: %s" % ("NO HIT" if res.empty() else "HIT")) + Log.print_log("Collision center inside: %s" % ("NO HIT" if res.is_empty() else "HIT")) Log.print_log("* Done.") @@ -132,17 +134,17 @@ func _add_collision(space_state, pos, shape, shape_query): var results = space_state.collide_shape(shape_query) var color - if results.empty(): - color = Color.white.darkened(0.5) + if results.is_empty(): + color = Color.WHITE.darkened(0.5) else: - color = Color.green + color = Color.GREEN # Draw collision query shape. add_shape(shape, shape_query.transform, color) # Draw contact positions. for contact_pos in results: - add_circle(contact_pos, 1.0, Color.red) + add_circle(contact_pos, 1.0, Color.RED) return results diff --git a/2d/physics_tests/tests/functional/test_collision_pairs.tscn b/2d/physics_tests/tests/functional/test_collision_pairs.tscn index d059963c700..48369a7d636 100644 --- a/2d/physics_tests/tests/functional/test_collision_pairs.tscn +++ b/2d/physics_tests/tests/functional/test_collision_pairs.tscn @@ -1,151 +1,174 @@ -[gd_scene load_steps=8 format=2] +[gd_scene load_steps=8 format=3 uid="uid://pm3t5nl2v6gj"] -[ext_resource path="res://tests/functional/test_collision_pairs.gd" type="Script" id=1] -[ext_resource path="res://assets/texture/godot-head.png" type="Texture" id=2] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=3] +[ext_resource type="Script" path="res://tests/functional/test_collision_pairs.gd" id="1"] +[ext_resource type="Texture2D" uid="uid://c5duuyhbmd0m4" path="res://assets/texture/godot-head.png" id="2"] +[ext_resource type="PackedScene" uid="uid://blh3twy74kbkv" path="res://tests/test_options.tscn" id="3"] -[sub_resource type="RectangleShape2D" id=1] -extents = Vector2( 40, 60 ) +[sub_resource type="RectangleShape2D" id="1"] +size = Vector2(80, 120) -[sub_resource type="CircleShape2D" id=2] +[sub_resource type="CircleShape2D" id="2"] radius = 60.0 -[sub_resource type="CapsuleShape2D" id=3] +[sub_resource type="CapsuleShape2D" id="3"] radius = 30.0 height = 50.0 -[sub_resource type="ConcavePolygonShape2D" id=4] -segments = PoolVector2Array( -5.93512, -43.2195, 6.44476, -42.9695, 6.44476, -42.9695, 11.127, -54.3941, 11.127, -54.3941, 26.9528, -49.4309, 26.9528, -49.4309, 26.2037, -36.508, 26.2037, -36.508, 37.5346, -28.1737, 37.5346, -28.1737, 47.6282, -34.3806, 47.6282, -34.3806, 58.0427, -20.9631, 58.0427, -20.9631, 51.113, -10.2876, 51.113, -10.2876, 50.9869, 35.2694, 50.9869, 35.2694, 38.8, 47.5, 38.8, 47.5, 15.9852, 54.3613, 15.9852, 54.3613, -14.9507, 54.1845, -14.9507, 54.1845, -36.5, 48.1, -36.5, 48.1, -50.4828, 36.33, -50.4828, 36.33, -51.3668, -9.98545, -51.3668, -9.98545, -57.8889, -20.5885, -57.8889, -20.5885, -46.9473, -34.7342, -46.9473, -34.7342, -37.4014, -28.547, -37.4014, -28.547, -26.0876, -37.0323, -26.0876, -37.0323, -26.9862, -49.15, -26.9862, -49.15, -11.4152, -54.5332, -11.4152, -54.5332, -5.93512, -43.2195 ) +[sub_resource type="ConcavePolygonShape2D" id="4"] +segments = PackedVector2Array(-5.93512, -43.2195, 6.44476, -42.9695, 6.44476, -42.9695, 11.127, -54.3941, 11.127, -54.3941, 26.9528, -49.4309, 26.9528, -49.4309, 26.2037, -36.508, 26.2037, -36.508, 37.5346, -28.1737, 37.5346, -28.1737, 47.6282, -34.3806, 47.6282, -34.3806, 58.0427, -20.9631, 58.0427, -20.9631, 51.113, -10.2876, 51.113, -10.2876, 50.9869, 35.2694, 50.9869, 35.2694, 38.8, 47.5, 38.8, 47.5, 15.9852, 54.3613, 15.9852, 54.3613, -14.9507, 54.1845, -14.9507, 54.1845, -36.5, 48.1, -36.5, 48.1, -50.4828, 36.33, -50.4828, 36.33, -51.3668, -9.98545, -51.3668, -9.98545, -57.8889, -20.5885, -57.8889, -20.5885, -46.9473, -34.7342, -46.9473, -34.7342, -37.4014, -28.547, -37.4014, -28.547, -26.0876, -37.0323, -26.0876, -37.0323, -26.9862, -49.15, -26.9862, -49.15, -11.4152, -54.5332, -11.4152, -54.5332, -5.93512, -43.2195) [node name="Test" type="Node2D"] -script = ExtResource( 1 ) +script = ExtResource( "1" ) -[node name="Options" parent="." instance=ExtResource( 3 )] +[node name="Options" parent="." instance=ExtResource( "3" )] +items = [] [node name="Shapes" type="Node2D" parent="."] z_index = -1 z_as_relative = false +script = null [node name="RigidBodyRectangle" type="RigidBody2D" parent="Shapes"] -position = Vector2( 114.877, 248.76 ) +position = Vector2(114.877, 248.76) mode = 1 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="Shapes/RigidBodyRectangle"] rotation = -1.19206 -scale = Vector2( 1.2, 1.2 ) -shape = SubResource( 1 ) +scale = Vector2(1.2, 1.2) +shape = SubResource( "1" ) +script = null [node name="RigidBodySphere" type="RigidBody2D" parent="Shapes"] -position = Vector2( 314.894, 257.658 ) +position = Vector2(314.894, 257.658) mode = 1 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="Shapes/RigidBodySphere"] -shape = SubResource( 2 ) +shape = SubResource( "2" ) +script = null [node name="RigidBodyCapsule" type="RigidBody2D" parent="Shapes"] -position = Vector2( 465.629, 261.204 ) +position = Vector2(465.629, 261.204) mode = 1 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="Shapes/RigidBodyCapsule"] rotation = -0.202458 -scale = Vector2( 1.2, 1.2 ) -shape = SubResource( 3 ) +scale = Vector2(1.2, 1.2) +shape = SubResource( "3" ) +script = null [node name="RigidBodyConvexPolygon" type="RigidBody2D" parent="Shapes"] -position = Vector2( 613.385, 252.771 ) +position = Vector2(613.385, 252.771) mode = 1 +script = null [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="Shapes/RigidBodyConvexPolygon"] -polygon = PoolVector2Array( 10.7, -54.5, 28.3596, -49.4067, 47.6282, -34.3806, 57.9717, -20.9447, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -58.0115, -20.515, -46.9473, -34.7342, -26.0876, -50.1138, -11.4152, -54.5332 ) +polygon = PackedVector2Array(10.7, -54.5, 28.3596, -49.4067, 47.6282, -34.3806, 57.9717, -20.9447, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -58.0115, -20.515, -46.9473, -34.7342, -26.0876, -50.1138, -11.4152, -54.5332) +script = null -[node name="GodotIcon" type="Sprite" parent="Shapes/RigidBodyConvexPolygon"] -modulate = Color( 1, 1, 1, 0.392157 ) -texture = ExtResource( 2 ) +[node name="GodotIcon" type="Sprite2D" parent="Shapes/RigidBodyConvexPolygon"] +modulate = Color(1, 1, 1, 0.392157) +texture = ExtResource( "2" ) +script = null [node name="RigidBodyConcavePolygon" type="RigidBody2D" parent="Shapes"] -position = Vector2( 771.159, 252.771 ) +position = Vector2(771.159, 252.771) mode = 1 +script = null [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="Shapes/RigidBodyConcavePolygon"] -polygon = PoolVector2Array( -5.93512, -43.2195, 6.44476, -42.9695, 11.127, -54.3941, 26.9528, -49.4309, 26.2037, -36.508, 37.5346, -28.1737, 47.6282, -34.3806, 58.0427, -20.9631, 51.113, -10.2876, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -51.3668, -9.98545, -57.8889, -20.5885, -46.9473, -34.7342, -37.4014, -28.547, -26.0876, -37.0323, -26.9862, -49.15, -11.4152, -54.5332 ) +polygon = PackedVector2Array(-5.93512, -43.2195, 6.44476, -42.9695, 11.127, -54.3941, 26.9528, -49.4309, 26.2037, -36.508, 37.5346, -28.1737, 47.6282, -34.3806, 58.0427, -20.9631, 51.113, -10.2876, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -51.3668, -9.98545, -57.8889, -20.5885, -46.9473, -34.7342, -37.4014, -28.547, -26.0876, -37.0323, -26.9862, -49.15, -11.4152, -54.5332) +script = null -[node name="GodotIcon" type="Sprite" parent="Shapes/RigidBodyConcavePolygon"] -modulate = Color( 1, 1, 1, 0.392157 ) -texture = ExtResource( 2 ) +[node name="GodotIcon" type="Sprite2D" parent="Shapes/RigidBodyConcavePolygon"] +modulate = Color(1, 1, 1, 0.392157) +texture = ExtResource( "2" ) +script = null [node name="RigidBodyConcaveSegments" type="RigidBody2D" parent="Shapes"] -position = Vector2( 930.097, 252.771 ) +position = Vector2(930.097, 252.771) mode = 1 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="Shapes/RigidBodyConcaveSegments"] -shape = SubResource( 4 ) +shape = SubResource( "4" ) +script = null -[node name="GodotIcon" type="Sprite" parent="Shapes/RigidBodyConcaveSegments"] -modulate = Color( 1, 1, 1, 0.392157 ) -texture = ExtResource( 2 ) +[node name="GodotIcon" type="Sprite2D" parent="Shapes/RigidBodyConcaveSegments"] +modulate = Color(1, 1, 1, 0.392157) +texture = ExtResource( "2" ) +script = null [node name="Controls" type="VBoxContainer" parent="."] -pause_mode = 2 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = 25.3619 -margin_top = 416.765 -margin_right = 218.362 -margin_bottom = 458.765 -custom_constants/separation = 10 +offset_left = 25.3619 +offset_top = 416.765 +offset_right = 218.362 +offset_bottom = 458.765 +theme_override_constants/separation = 10 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="OffsetH" type="HBoxContainer" parent="Controls"] -margin_right = 193.0 -margin_bottom = 16.0 -custom_constants/separation = 20 +offset_right = 204.0 +offset_bottom = 26.0 +theme_override_constants/separation = 20 alignment = 2 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="Label" type="Label" parent="Controls/OffsetH"] -margin_top = 1.0 -margin_right = 53.0 -margin_bottom = 15.0 +offset_right = 64.0 +offset_bottom = 26.0 text = "Offset H" +structured_text_bidi_override_options = [] +script = null [node name="HSlider" type="HSlider" parent="Controls/OffsetH"] -margin_left = 73.0 -margin_right = 193.0 -margin_bottom = 16.0 -rect_min_size = Vector2( 120, 0 ) +offset_left = 84.0 +offset_right = 204.0 +offset_bottom = 16.0 +rect_min_size = Vector2(120, 0) min_value = -1.0 max_value = 1.0 step = 0.01 +script = null [node name="OffsetV" type="HBoxContainer" parent="Controls"] -margin_top = 26.0 -margin_right = 193.0 -margin_bottom = 42.0 -custom_constants/separation = 20 +offset_top = 36.0 +offset_right = 204.0 +offset_bottom = 62.0 +theme_override_constants/separation = 20 alignment = 2 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="Label" type="Label" parent="Controls/OffsetV"] -margin_left = 2.0 -margin_top = 1.0 -margin_right = 53.0 -margin_bottom = 15.0 +offset_left = 2.0 +offset_right = 64.0 +offset_bottom = 26.0 text = "Offset V" +structured_text_bidi_override_options = [] +script = null [node name="HSlider" type="HSlider" parent="Controls/OffsetV"] -margin_left = 73.0 -margin_right = 193.0 -margin_bottom = 16.0 -rect_min_size = Vector2( 120, 0 ) +offset_left = 84.0 +offset_right = 204.0 +offset_bottom = 16.0 +rect_min_size = Vector2(120, 0) min_value = -1.0 max_value = 1.0 step = 0.01 +script = null [connection signal="value_changed" from="Controls/OffsetH/HSlider" to="." method="set_h_offset"] [connection signal="value_changed" from="Controls/OffsetV/HSlider" to="." method="set_v_offset"] diff --git a/2d/physics_tests/tests/functional/test_joints.gd b/2d/physics_tests/tests/functional/test_joints.gd index b0f54f7cbb8..8bdbe47dc22 100644 --- a/2d/physics_tests/tests/functional/test_joints.gd +++ b/2d/physics_tests/tests/functional/test_joints.gd @@ -31,7 +31,7 @@ func _ready(): for joint_index in range(joints.get_child_count()): var joint_node = joints.get_child(joint_index) joint_node.visible = false - var joint_name = joint_node.name + var joint_name = String(joint_node.name) var joint_short = joint_name.substr(0, joint_name.length() - 7) var option_name = OPTION_JOINT_TYPE % [joint_short, joint_index + 1] options.add_menu_item(option_name) @@ -43,8 +43,8 @@ func _ready(): options.add_menu_item(OPTION_TEST_CASE_DESTROY_BODY, true, false) options.add_menu_item(OPTION_TEST_CASE_CHANGE_POSITIONS, true, false) - options.connect("option_selected", self, "_on_option_selected") - options.connect("option_changed", self, "_on_option_changed") + options.connect("option_selected", Callable(self, "_on_option_selected")) + options.connect("option_changed", Callable(self, "_on_option_changed")) _selected_joint = _joint_types.values()[0] _update_joint = true @@ -53,14 +53,14 @@ func _ready(): func _process(_delta): if _update_joint: _update_joint = false - _create_joint() - $LabelJointType.text = "Joint Type: " + _selected_joint.name + await _create_joint() + $LabelJointType.text = "Joint Type: " + String(_selected_joint.name) func _input(event): var key_event = event as InputEventKey if key_event and not key_event.pressed: - var joint_index = key_event.scancode - KEY_1 + var joint_index = key_event.keycode - KEY_1 if joint_index >= 0 and joint_index < _joint_types.size(): _selected_joint = _joint_types.values()[joint_index] _update_joint = true @@ -103,7 +103,7 @@ func _create_joint(): last_child.queue_free() var child_body = create_rigidbody_box(BOX_SIZE, true, true) - child_body.mode = RigidBody2D.MODE_RIGID + child_body.mode = RigidBody2D.MODE_DYNAMIC if _change_positions: root.add_child(child_body) child_body.position = Vector2(0.0, 40) @@ -115,7 +115,7 @@ func _create_joint(): if not _world_attachement: parent_body = create_rigidbody_box(BOX_SIZE, true, true) if _dynamic_attachement: - parent_body.mode = RigidBody2D.MODE_RIGID + parent_body.mode = RigidBody2D.MODE_DYNAMIC parent_body.gravity_scale = 0.0 child_body.gravity_scale = 0.0 else: @@ -130,13 +130,13 @@ func _create_joint(): var joint = _selected_joint.duplicate() joint.visible = true joint.disable_collision = not _bodies_collide - if parent_body: - joint.node_a = parent_body.get_path() - joint.node_b = child_body.get_path() root.add_child(joint) + if parent_body: + joint.set_node_a(joint.get_path_to(parent_body)) + joint.set_node_b(joint.get_path_to(child_body)) if _destroy_body: - yield(start_timer(0.5), "timeout") + await start_timer(0.5).timeout if is_timer_canceled(): return diff --git a/2d/physics_tests/tests/functional/test_joints.tscn b/2d/physics_tests/tests/functional/test_joints.tscn index 411273e29ed..736c192c3e8 100644 --- a/2d/physics_tests/tests/functional/test_joints.tscn +++ b/2d/physics_tests/tests/functional/test_joints.tscn @@ -1,31 +1,39 @@ -[gd_scene load_steps=3 format=2] +[gd_scene load_steps=3 format=3 uid="uid://bckpvilds8sif"] -[ext_resource path="res://tests/functional/test_joints.gd" type="Script" id=2] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=4] +[ext_resource type="Script" path="res://tests/functional/test_joints.gd" id="2"] +[ext_resource type="PackedScene" uid="uid://blh3twy74kbkv" path="res://tests/test_options.tscn" id="4"] [node name="JointTest2D" type="Node2D"] -script = ExtResource( 2 ) +script = ExtResource( "2" ) [node name="LabelJointType" type="Label" parent="."] -margin_left = 14.0 -margin_top = 79.0 -margin_right = 145.0 -margin_bottom = 93.0 +offset_left = 14.0 +offset_top = 79.0 +offset_right = 145.0 +offset_bottom = 93.0 text = "Joint Type: " +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } -[node name="Options" parent="." instance=ExtResource( 4 )] +[node name="Options" parent="." instance=ExtResource( "4" )] +items = [] [node name="Joints" type="Node2D" parent="."] -position = Vector2( 512, 200 ) +position = Vector2(512, 200) +script = null [node name="PinJoint2D" type="PinJoint2D" parent="Joints"] +script = null [node name="DampedSpringJoint2D" type="DampedSpringJoint2D" parent="Joints"] +script = null [node name="GrooveJoint2D" type="GrooveJoint2D" parent="Joints"] +script = null [node name="Objects" type="Node2D" parent="."] -position = Vector2( 512, 200 ) +position = Vector2(512, 200) +script = null diff --git a/2d/physics_tests/tests/functional/test_one_way_collision.gd b/2d/physics_tests/tests/functional/test_one_way_collision.gd index 19cc06c2de1..2708a1810f5 100644 --- a/2d/physics_tests/tests/functional/test_one_way_collision.gd +++ b/2d/physics_tests/tests/functional/test_one_way_collision.gd @@ -1,5 +1,5 @@ +@tool extends Test -tool signal all_tests_done() @@ -19,21 +19,40 @@ const OPTION_TEST_CASE_MOVING_PLATFORM_KINEMATIC = "Test Cases/Moving Platform ( const TEST_ALL_ANGLES_STEP = 15.0 const TEST_ALL_ANGLES_MAX = 344.0 -export(float, 32, 128, 0.1) var _platform_size = 64.0 setget _set_platform_size -export(float, 0, 360, 0.1) var _platform_angle = 0.0 setget _set_platform_angle -export(float) var _platform_speed = 0.0 -export(float, 0, 360, 0.1) var _body_angle = 0.0 setget _set_rigidbody_angle -export(Vector2) var _body_velocity = Vector2(400.0, 0.0) -export(bool) var _use_kinematic_body = false +@export_range(64, 256, 0.1) var _platform_size = 128.0: + set(value): + if value == _platform_size: + return + _platform_size = value + _update_platform_size(value) -onready var options = $Options +@export_range(0, 360, 0.1) var _platform_angle = 0.0: + set(value): + if value == _platform_angle: + return + _platform_angle = value + _update_platform_angle(value) + +@export var _platform_speed = 0.0 + +@export_range(0, 360, 0.1) var _body_angle = 0.0: + set(value): + if value == _body_angle: + return + _body_angle = value + _update_rigidbody_angle(value) + +@export var _body_velocity = Vector2(400.0, 0.0) +@export var _use_kinematic_body = false + +@onready var options = $Options var _rigid_body_template = null var _kinematic_body_template = null -var _moving_body = null +var _moving_body : PhysicsBody2D = null var _platform_template = null -var _platform_body = null +var _platform_body : PhysicsBody2D = null var _platform_velocity = Vector2.ZERO var _contact_detected = false @@ -60,22 +79,22 @@ func _ready(): options.add_menu_item(OPTION_TEST_CASE_MOVING_PLATFORM_RIGID) options.add_menu_item(OPTION_TEST_CASE_MOVING_PLATFORM_KINEMATIC) - options.connect("option_selected", self, "_on_option_selected") + options.connect("option_selected", Callable(self, "_on_option_selected")) $Controls/PlatformSize/HSlider.value = _platform_size $Controls/PlatformAngle/HSlider.value = _platform_angle $Controls/BodyAngle/HSlider.value = _body_angle - $TargetArea2D.connect("body_entered", self, "_on_target_entered") - $Timer.connect("timeout", self, "_on_timeout") + $TargetArea2D.connect("body_entered", Callable(self, "_on_target_entered")) + $Timer.connect("timeout", Callable(self, "_on_timeout")) _rigid_body_template = $RigidBody2D remove_child(_rigid_body_template) - _kinematic_body_template = $KinematicBody2D + _kinematic_body_template = $CharacterBody2D remove_child(_kinematic_body_template) - _platform_template = $OneWayKinematicBody2D + _platform_template = $OneWayStaticBody2D remove_child(_platform_template) _start_test() @@ -84,17 +103,19 @@ func _ready(): func _process(_delta): if not Engine.editor_hint: if Input.is_action_just_pressed("ui_accept"): - _reset_test(false) + await _reset_test(false) func _physics_process(delta): + super._physics_process(delta) + if not Engine.editor_hint: if _moving_body and not _contact_detected: if _use_kinematic_body: var collision = _moving_body.move_and_collide(_body_velocity * delta, false) if collision: var colliding_body = collision.collider - _on_contact_detected(colliding_body) + await _on_contact_detected(colliding_body) if _platform_body and _platform_velocity != Vector2.ZERO: var motion = _platform_velocity * delta @@ -104,12 +125,12 @@ func _physics_process(delta): func _input(event): var key_event = event as InputEventKey if key_event and not key_event.pressed: - if key_event.scancode == KEY_0: - _on_option_selected(OPTION_TEST_CASE_ALL) - if key_event.scancode == KEY_1: - _on_option_selected(OPTION_OBJECT_TYPE_RIGIDBODY) - elif key_event.scancode == KEY_2: - _on_option_selected(OPTION_OBJECT_TYPE_KINEMATIC) + if key_event.keycode == KEY_0: + await _on_option_selected(OPTION_TEST_CASE_ALL) + if key_event.keycode == KEY_1: + await _on_option_selected(OPTION_OBJECT_TYPE_RIGIDBODY) + elif key_event.keycode == KEY_2: + await _on_option_selected(OPTION_OBJECT_TYPE_KINEMATIC) func _exit_tree(): @@ -119,7 +140,7 @@ func _exit_tree(): _platform_template.free() -func _set_platform_size(value, reset = true): +func _update_platform_size(value, reset = true): if _lock_controls: return if value == _platform_size: @@ -127,10 +148,10 @@ func _set_platform_size(value, reset = true): _platform_size = value if is_inside_tree(): if Engine.editor_hint: - $OneWayKinematicBody2D/CollisionShape2D.shape.extents.x = value + $OneWayStaticBody2D/CollisionShape2D.shape.size.x = value else: var platform_collision = _platform_template.get_child(0) - platform_collision.shape.extents.x = value + platform_collision.shape.size.x = value if _platform_body: # Bug: need to re-add when changing shape. var child_index = _platform_body.get_index() @@ -138,10 +159,10 @@ func _set_platform_size(value, reset = true): add_child(_platform_body) move_child(_platform_body, child_index) if reset: - _reset_test() + await _reset_test() -func _set_platform_angle(value, reset = true): +func _update_platform_angle(value, reset = true): if _lock_controls: return if value == _platform_angle: @@ -149,16 +170,16 @@ func _set_platform_angle(value, reset = true): _platform_angle = value if is_inside_tree(): if Engine.editor_hint: - $OneWayKinematicBody2D.rotation = deg2rad(value) + $OneWayStaticBody2D.rotation = deg2rad(value) else: if _platform_body: _platform_body.rotation = deg2rad(value) _platform_template.rotation = deg2rad(value) if reset: - _reset_test() + await _reset_test() -func _set_rigidbody_angle(value, reset = true): +func _update_rigidbody_angle(value, reset = true): if _lock_controls: return if value == _body_angle: @@ -167,108 +188,108 @@ func _set_rigidbody_angle(value, reset = true): if is_inside_tree(): if Engine.editor_hint: $RigidBody2D.rotation = deg2rad(value) - $KinematicBody2D.rotation = deg2rad(value) + $CharacterBody2D.rotation = deg2rad(value) else: if _moving_body: _moving_body.rotation = deg2rad(value) _rigid_body_template.rotation = deg2rad(value) _kinematic_body_template.rotation = deg2rad(value) if reset: - _reset_test() + await _reset_test() func _on_option_selected(option): match option: OPTION_OBJECT_TYPE_KINEMATIC: _use_kinematic_body = true - _reset_test() + await _reset_test() OPTION_OBJECT_TYPE_RIGIDBODY: _use_kinematic_body = false - _reset_test() + await _reset_test() OPTION_TEST_CASE_ALL: - _test_all() + await _test_all() OPTION_TEST_CASE_ALL_RIGID: - _test_all_rigid_body() + await _test_all_rigid_body() OPTION_TEST_CASE_ALL_KINEMATIC: - _test_all_kinematic_body() + await _test_all_kinematic_body() OPTION_TEST_CASE_ALL_ANGLES_RIGID: _use_kinematic_body = false _test_all_angles = true - _reset_test(false) + await _reset_test(false) OPTION_TEST_CASE_ALL_ANGLES_KINEMATIC: _use_kinematic_body = true _test_all_angles = true - _reset_test(false) + await _reset_test(false) OPTION_TEST_CASE_MOVING_PLATFORM_RIGID: _use_kinematic_body = false - _test_moving_platform() + await _test_moving_platform() OPTION_TEST_CASE_MOVING_PLATFORM_KINEMATIC: _use_kinematic_body = true - _test_moving_platform() + await _test_moving_platform() func _start_test_case(option): Log.print_log("* Starting " + option) - _on_option_selected(option) + await _on_option_selected(option) - yield(self, "all_tests_done") + await self.all_tests_done func _wait_for_test(): - _reset_test() + await _reset_test() - yield(self, "test_done") + await self.test_done func _test_all_rigid_body(): Log.print_log("* All RigidBody test cases...") - _set_platform_size(64.0, false) - _set_rigidbody_angle(0.0, false) - yield(_start_test_case(OPTION_TEST_CASE_ALL_ANGLES_RIGID), "completed") + await _update_platform_size(128.0, false) + await _update_rigidbody_angle(0.0, false) + await _start_test_case(OPTION_TEST_CASE_ALL_ANGLES_RIGID) if _test_canceled: return - _set_platform_size(64.0, false) - _set_rigidbody_angle(45.0, false) - yield(_start_test_case(OPTION_TEST_CASE_ALL_ANGLES_RIGID), "completed") + await _update_platform_size(128.0, false) + await _update_rigidbody_angle(45.0, false) + await _start_test_case(OPTION_TEST_CASE_ALL_ANGLES_RIGID) if _test_canceled: return - _set_platform_size(32.0, false) - _set_rigidbody_angle(45.0, false) - yield(_start_test_case(OPTION_TEST_CASE_ALL_ANGLES_RIGID), "completed") + await _update_platform_size(64.0, false) + await _update_rigidbody_angle(45.0, false) + await _start_test_case(OPTION_TEST_CASE_ALL_ANGLES_RIGID) if _test_canceled: return - yield(_start_test_case(OPTION_TEST_CASE_MOVING_PLATFORM_RIGID), "completed") + await _start_test_case(OPTION_TEST_CASE_MOVING_PLATFORM_RIGID) if _test_canceled: return func _test_all_kinematic_body(): - Log.print_log("* All KinematicBody test cases...") + Log.print_log("* All CharacterBody test cases...") - _set_platform_size(64.0, false) - _set_rigidbody_angle(0.0, false) - yield(_start_test_case(OPTION_TEST_CASE_ALL_ANGLES_KINEMATIC), "completed") + await _update_platform_size(128.0, false) + await _update_rigidbody_angle(0.0, false) + await _start_test_case(OPTION_TEST_CASE_ALL_ANGLES_KINEMATIC) if _test_canceled: return - _set_platform_size(64.0, false) - _set_rigidbody_angle(45.0, false) - yield(_start_test_case(OPTION_TEST_CASE_ALL_ANGLES_KINEMATIC), "completed") + await _update_platform_size(128.0, false) + await _update_rigidbody_angle(45.0, false) + await _start_test_case(OPTION_TEST_CASE_ALL_ANGLES_KINEMATIC) if _test_canceled: return - _set_platform_size(32.0, false) - _set_rigidbody_angle(45.0, false) - yield(_start_test_case(OPTION_TEST_CASE_ALL_ANGLES_KINEMATIC), "completed") + await _update_platform_size(64.0, false) + await _update_rigidbody_angle(45.0, false) + await _start_test_case(OPTION_TEST_CASE_ALL_ANGLES_KINEMATIC) if _test_canceled: return - yield(_start_test_case(OPTION_TEST_CASE_MOVING_PLATFORM_KINEMATIC), "completed") + await _start_test_case(OPTION_TEST_CASE_MOVING_PLATFORM_KINEMATIC) if _test_canceled: return @@ -277,32 +298,32 @@ func _test_moving_platform(): Log.print_log("* Start moving platform tests") Log.print_log("* Platform moving away from body...") - _set_platform_size(64.0, false) - _set_rigidbody_angle(0.0, false) + await _update_platform_size(128.0, false) + await _update_rigidbody_angle(0.0, false) _platform_speed = 50.0 - _set_platform_angle(90.0, false) - yield(_wait_for_test(), "completed") + await _update_platform_angle(90.0, false) + await _wait_for_test() if _test_canceled: return - _set_platform_angle(-90.0, false) - yield(_wait_for_test(), "completed") + await _update_platform_angle(-90.0, false) + await _wait_for_test() if _test_canceled: return Log.print_log("* Platform moving towards body...") - _set_platform_size(64.0, false) - _set_rigidbody_angle(0.0, false) + await _update_platform_size(128.0, false) + await _update_rigidbody_angle(0.0, false) _platform_speed = -50.0 - _set_platform_angle(90.0, false) - yield(_wait_for_test(), "completed") + await _update_platform_angle(90.0, false) + await _wait_for_test() if _test_canceled: return - _set_platform_angle(-90.0, false) - yield(_wait_for_test(), "completed") + await _update_platform_angle(-90.0, false) + await _wait_for_test() if _test_canceled: return @@ -313,11 +334,11 @@ func _test_moving_platform(): func _test_all(): Log.print_log("* TESTING ALL...") - yield(_test_all_rigid_body(), "completed") + await _test_all_rigid_body() if _test_canceled: return - yield(_test_all_kinematic_body(), "completed") + await _test_all_kinematic_body() if _test_canceled: return @@ -339,13 +360,13 @@ func _start_test(): add_child(_platform_body) if _use_kinematic_body: - test_label += _kinematic_body_template.name + test_label += String(_kinematic_body_template.name) _moving_body = _kinematic_body_template.duplicate() else: - test_label += _rigid_body_template.name + test_label += String(_rigid_body_template.name) _moving_body = _rigid_body_template.duplicate() _moving_body.linear_velocity = _body_velocity - _moving_body.connect("body_entered", self, "_on_contact_detected") + _moving_body.connect("body_entered", Callable(self, "_on_contact_detected")) add_child(_moving_body) if _platform_speed != 0.0: @@ -369,12 +390,12 @@ func _start_test(): $Timer.start() $LabelResult.text = "..." - $LabelResult.self_modulate = Color.white + $LabelResult.self_modulate = Color.WHITE func _reset_test(cancel_test = true): _test_canceled = true - _on_timeout() + await _on_timeout() _test_canceled = false _test_step = 0 @@ -427,7 +448,7 @@ func _on_contact_detected(_body): _contact_detected = true _test_passed = _should_collide() _set_result() - _on_timeout() + await _on_timeout() func _on_target_entered(_body): @@ -437,7 +458,7 @@ func _on_target_entered(_body): _target_entered = true _test_passed = not _should_collide() _set_result() - _on_timeout() + await _on_timeout() func _should_collide(): @@ -464,7 +485,7 @@ func _on_timeout(): Log.print_log("Test TIMEOUT") _set_result() - yield(start_timer(0.5), "timeout") + await start_timer(0.5).timeout if _test_canceled: emit_signal("test_done") emit_signal("all_tests_done") @@ -484,10 +505,10 @@ func _set_result(): var result = "" if _test_passed: result = "PASSED" - $LabelResult.self_modulate = Color.green + $LabelResult.self_modulate = Color.GREEN else: result = "FAILED" - $LabelResult.self_modulate = Color.red + $LabelResult.self_modulate = Color.RED $LabelResult.text = result diff --git a/2d/physics_tests/tests/functional/test_one_way_collision.tscn b/2d/physics_tests/tests/functional/test_one_way_collision.tscn index c3f948b7e3c..3ccbbb10d06 100644 --- a/2d/physics_tests/tests/functional/test_one_way_collision.tscn +++ b/2d/physics_tests/tests/functional/test_one_way_collision.tscn @@ -1,164 +1,175 @@ -[gd_scene load_steps=9 format=2] +[gd_scene load_steps=9 format=3 uid="uid://c85275leeliuq"] -[ext_resource path="res://tests/functional/test_one_way_collision.gd" type="Script" id=1] -[ext_resource path="res://icon.png" type="Texture" id=2] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=3] -[ext_resource path="res://utils/label_slider_value.gd" type="Script" id=4] -[ext_resource path="res://utils/slider.gd" type="Script" id=5] +[ext_resource type="Script" path="res://tests/functional/test_one_way_collision.gd" id="1"] +[ext_resource type="Texture2D" uid="uid://cpps5r8o4dfwo" path="res://icon.png" id="2"] +[ext_resource type="PackedScene" uid="uid://blh3twy74kbkv" path="res://tests/test_options.tscn" id="3"] +[ext_resource type="Script" path="res://utils/label_slider_value.gd" id="4"] +[ext_resource type="Script" path="res://utils/slider.gd" id="5"] -[sub_resource type="RectangleShape2D" id=1] -extents = Vector2( 32, 32 ) +[sub_resource type="RectangleShape2D" id="1"] +size = Vector2(64, 64) -[sub_resource type="RectangleShape2D" id=2] -extents = Vector2( 64, 32 ) +[sub_resource type="RectangleShape2D" id="2"] +size = Vector2(128, 64) -[sub_resource type="RectangleShape2D" id=3] -extents = Vector2( 32, 32 ) +[sub_resource type="RectangleShape2D" id="3"] +size = Vector2(64, 64) [node name="Test" type="Node2D"] -script = ExtResource( 1 ) +script = ExtResource( "1" ) [node name="LabelTestType" type="Label" parent="."] -margin_left = 14.0 -margin_top = 79.0 -margin_right = 145.0 -margin_bottom = 93.0 +offset_left = 14.0 +offset_top = 79.0 +offset_right = 145.0 +offset_bottom = 93.0 text = "Testing: " +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } -[node name="Options" parent="." instance=ExtResource( 3 )] +[node name="Options" parent="." instance=ExtResource( "3" )] +items = [] [node name="Controls" type="VBoxContainer" parent="."] -pause_mode = 2 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = 25.3619 -margin_top = 416.765 -margin_right = 265.362 -margin_bottom = 484.765 -custom_constants/separation = 10 +offset_left = 25.3619 +offset_top = 416.765 +offset_right = 265.362 +offset_bottom = 484.765 +theme_override_constants/separation = 10 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="PlatformSize" type="HBoxContainer" parent="Controls"] -margin_right = 432.0 -margin_bottom = 16.0 -custom_constants/separation = 20 +offset_right = 452.0 +offset_bottom = 26.0 +theme_override_constants/separation = 20 alignment = 2 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="Label" type="Label" parent="Controls/PlatformSize"] -margin_left = 8.0 -margin_top = 1.0 -margin_right = 92.0 -margin_bottom = 15.0 +offset_left = 12.0 +offset_right = 112.0 +offset_bottom = 26.0 text = "Platform size" +structured_text_bidi_override_options = [] +script = null [node name="HSlider" type="HSlider" parent="Controls/PlatformSize"] -margin_left = 112.0 -margin_right = 312.0 -margin_bottom = 16.0 -rect_min_size = Vector2( 200, 0 ) -min_value = 32.0 -max_value = 128.0 +offset_left = 132.0 +offset_right = 332.0 +offset_bottom = 16.0 +rect_min_size = Vector2(200, 0) +min_value = 64.0 +max_value = 256.0 value = 64.0 -script = ExtResource( 5 ) +script = ExtResource( "5" ) [node name="LabelValue" type="Label" parent="Controls/PlatformSize"] -margin_left = 332.0 -margin_top = 1.0 -margin_right = 432.0 -margin_bottom = 15.0 -rect_min_size = Vector2( 100, 0 ) +offset_left = 352.0 +offset_right = 452.0 +offset_bottom = 26.0 +rect_min_size = Vector2(100, 0) text = "64.0" -script = ExtResource( 4 ) +structured_text_bidi_override_options = [] +script = ExtResource( "4" ) [node name="PlatformAngle" type="HBoxContainer" parent="Controls"] -margin_top = 26.0 -margin_right = 432.0 -margin_bottom = 42.0 -custom_constants/separation = 20 +offset_top = 36.0 +offset_right = 452.0 +offset_bottom = 62.0 +theme_override_constants/separation = 20 alignment = 2 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="Label" type="Label" parent="Controls/PlatformAngle"] -margin_top = 1.0 -margin_right = 92.0 -margin_bottom = 15.0 +offset_right = 112.0 +offset_bottom = 26.0 text = "Platform angle" +structured_text_bidi_override_options = [] +script = null [node name="HSlider" type="HSlider" parent="Controls/PlatformAngle"] -margin_left = 112.0 -margin_right = 312.0 -margin_bottom = 16.0 -rect_min_size = Vector2( 200, 0 ) +offset_left = 132.0 +offset_right = 332.0 +offset_bottom = 16.0 +rect_min_size = Vector2(200, 0) max_value = 360.0 -script = ExtResource( 5 ) +script = ExtResource( "5" ) snap_step = 5.0 [node name="LabelValue" type="Label" parent="Controls/PlatformAngle"] -margin_left = 332.0 -margin_top = 1.0 -margin_right = 432.0 -margin_bottom = 15.0 -rect_min_size = Vector2( 100, 0 ) +offset_left = 352.0 +offset_right = 452.0 +offset_bottom = 26.0 +rect_min_size = Vector2(100, 0) text = "0.0" -script = ExtResource( 4 ) +structured_text_bidi_override_options = [] +script = ExtResource( "4" ) [node name="BodyAngle" type="HBoxContainer" parent="Controls"] -margin_top = 52.0 -margin_right = 432.0 -margin_bottom = 68.0 -custom_constants/separation = 20 +offset_top = 72.0 +offset_right = 452.0 +offset_bottom = 98.0 +theme_override_constants/separation = 20 alignment = 2 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="Label" type="Label" parent="Controls/BodyAngle"] -margin_left = 22.0 -margin_top = 1.0 -margin_right = 92.0 -margin_bottom = 15.0 +offset_left = 27.0 +offset_right = 112.0 +offset_bottom = 26.0 text = "Body angle" +structured_text_bidi_override_options = [] +script = null [node name="HSlider" type="HSlider" parent="Controls/BodyAngle"] -margin_left = 112.0 -margin_right = 312.0 -margin_bottom = 16.0 -rect_min_size = Vector2( 200, 0 ) +offset_left = 132.0 +offset_right = 332.0 +offset_bottom = 16.0 +rect_min_size = Vector2(200, 0) max_value = 360.0 -script = ExtResource( 5 ) +script = ExtResource( "5" ) snap_step = 5.0 [node name="LabelValue" type="Label" parent="Controls/BodyAngle"] -margin_left = 332.0 -margin_top = 1.0 -margin_right = 432.0 -margin_bottom = 15.0 -rect_min_size = Vector2( 100, 0 ) +offset_left = 352.0 +offset_right = 452.0 +offset_bottom = 26.0 +rect_min_size = Vector2(100, 0) text = "0.0" -script = ExtResource( 4 ) +structured_text_bidi_override_options = [] +script = ExtResource( "4" ) [node name="LabelResultTitle" type="Label" parent="."] anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -margin_left = 34.1273 -margin_top = 251.131 -margin_right = 88.1273 -margin_bottom = 265.131 +offset_left = 34.1273 +offset_top = 251.131 +offset_right = 88.1273 +offset_bottom = 265.131 text = "RESULT: " align = 1 valign = 1 +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } @@ -168,13 +179,15 @@ anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -margin_left = 34.1273 -margin_top = 266.131 -margin_right = 88.1273 -margin_bottom = 280.131 +offset_left = 34.1273 +offset_top = 266.131 +offset_right = 88.1273 +offset_bottom = 280.131 text = "..." align = 1 valign = 1 +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } @@ -184,13 +197,15 @@ anchor_left = 0.5 anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 -margin_left = 34.1273 -margin_top = 304.841 -margin_right = 139.127 -margin_bottom = 318.841 +offset_left = 34.1273 +offset_top = 304.841 +offset_right = 139.127 +offset_bottom = 318.841 text = "SPACE - RESTART" align = 1 valign = 1 +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } @@ -198,47 +213,60 @@ __meta__ = { [node name="Timer" type="Timer" parent="."] wait_time = 5.0 one_shot = true +script = null [node name="TargetArea2D" type="Area2D" parent="."] -position = Vector2( 724, 300 ) +position = Vector2(724, 300) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="TargetArea2D"] -shape = SubResource( 1 ) +shape = SubResource( "1" ) +script = null -[node name="OneWayKinematicBody2D" type="KinematicBody2D" parent="."] -position = Vector2( 512, 300 ) +[node name="OneWayStaticBody2D" type="StaticBody2D" parent="."] +position = Vector2(512, 300) +kinematic_motion = true +script = null -[node name="CollisionShape2D" type="CollisionShape2D" parent="OneWayKinematicBody2D"] -shape = SubResource( 2 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="OneWayStaticBody2D"] +skew = 4.37114e-08 +shape = SubResource( "2" ) one_way_collision = true +script = null [node name="RigidBody2D" type="RigidBody2D" parent="."] -position = Vector2( 300, 300 ) +position = Vector2(300, 300) collision_mask = 2147483649 gravity_scale = 0.0 contacts_reported = 1 contact_monitor = true +script = null -[node name="Sprite" type="Sprite" parent="RigidBody2D"] -self_modulate = Color( 1, 1, 1, 0.501961 ) -scale = Vector2( 0.5, 0.5 ) -texture = ExtResource( 2 ) +[node name="Sprite" type="Sprite2D" parent="RigidBody2D"] +self_modulate = Color(1, 1, 1, 0.501961) +scale = Vector2(0.5, 0.5) +texture = ExtResource( "2" ) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="RigidBody2D"] -shape = SubResource( 3 ) +shape = SubResource( "3" ) +script = null -[node name="KinematicBody2D" type="KinematicBody2D" parent="."] -position = Vector2( 300, 300 ) +[node name="CharacterBody2D" type="CharacterBody2D" parent="."] +position = Vector2(300, 300) collision_mask = 2147483649 +script = null -[node name="Sprite" type="Sprite" parent="KinematicBody2D"] -self_modulate = Color( 1, 1, 1, 0.501961 ) -scale = Vector2( 0.5, 0.5 ) -texture = ExtResource( 2 ) +[node name="Sprite" type="Sprite2D" parent="CharacterBody2D"] +self_modulate = Color(1, 1, 1, 0.501961) +scale = Vector2(0.5, 0.5) +texture = ExtResource( "2" ) +script = null -[node name="CollisionShape2D" type="CollisionShape2D" parent="KinematicBody2D"] -shape = SubResource( 3 ) +[node name="CollisionShape2D" type="CollisionShape2D" parent="CharacterBody2D"] +shape = SubResource( "3" ) +script = null -[connection signal="value_changed" from="Controls/PlatformSize/HSlider" to="." method="_set_platform_size"] -[connection signal="value_changed" from="Controls/PlatformAngle/HSlider" to="." method="_set_platform_angle"] -[connection signal="value_changed" from="Controls/BodyAngle/HSlider" to="." method="_set_rigidbody_angle"] +[connection signal="value_changed" from="Controls/PlatformSize/HSlider" to="." method="_update_platform_size"] +[connection signal="value_changed" from="Controls/PlatformAngle/HSlider" to="." method="_update_platform_angle"] +[connection signal="value_changed" from="Controls/BodyAngle/HSlider" to="." method="_update_rigidbody_angle"] diff --git a/2d/physics_tests/tests/functional/test_pyramid.gd b/2d/physics_tests/tests/functional/test_pyramid.gd index ee974e2c9db..6a661fd84c5 100644 --- a/2d/physics_tests/tests/functional/test_pyramid.gd +++ b/2d/physics_tests/tests/functional/test_pyramid.gd @@ -1,9 +1,9 @@ extends Test -export(int, 1, 100) var height = 10 -export(Vector2) var box_size = Vector2(40.0, 40.0) -export(Vector2) var box_spacing = Vector2(0.0, 0.0) +@export_range(1, 100) var height = 10 +@export var box_size = Vector2(40.0, 40.0) +@export var box_spacing = Vector2(0.0, 0.0) func _ready(): diff --git a/2d/physics_tests/tests/functional/test_pyramid.tscn b/2d/physics_tests/tests/functional/test_pyramid.tscn index f229c4101bf..59fb5fd6cef 100644 --- a/2d/physics_tests/tests/functional/test_pyramid.tscn +++ b/2d/physics_tests/tests/functional/test_pyramid.tscn @@ -1,12 +1,13 @@ -[gd_scene load_steps=3 format=2] +[gd_scene load_steps=3 format=3 uid="uid://b4s4ohq0j4oi8"] -[ext_resource path="res://tests/functional/test_pyramid.gd" type="Script" id=1] -[ext_resource path="res://tests/static_scene_flat.tscn" type="PackedScene" id=2] +[ext_resource type="Script" path="res://tests/functional/test_pyramid.gd" id="1"] +[ext_resource type="PackedScene" uid="uid://cx2q80okt25o1" path="res://tests/static_scene_flat.tscn" id="2"] [node name="Test" type="Node2D"] -script = ExtResource( 1 ) +script = ExtResource( "1" ) [node name="Pyramid" type="Node2D" parent="."] -position = Vector2( 512, 500 ) +position = Vector2(512, 500) +script = null -[node name="StaticSceneFlat" parent="." instance=ExtResource( 2 )] +[node name="StaticSceneFlat" parent="." instance=ExtResource( "2" )] diff --git a/2d/physics_tests/tests/functional/test_raycasting.gd b/2d/physics_tests/tests/functional/test_raycasting.gd index 9b19addfa48..253916a9552 100644 --- a/2d/physics_tests/tests/functional/test_raycasting.gd +++ b/2d/physics_tests/tests/functional/test_raycasting.gd @@ -5,14 +5,16 @@ var _do_raycasts = false func _ready(): - yield(start_timer(0.5), "timeout") + await start_timer(0.5).timeout if is_timer_canceled(): return _do_raycasts = true -func _physics_process(_delta): +func _physics_process(delta): + super._physics_process(delta) + if not _do_raycasts: return @@ -56,9 +58,9 @@ func _add_raycast(space_state, pos_start, pos_end): var result = space_state.intersect_ray(pos_start, pos_end) var color if result: - color = Color.green + color = Color.GREEN else: - color = Color.red.darkened(0.5) + color = Color.RED.darkened(0.5) # Draw raycast line. add_line(pos_start, pos_end, color) diff --git a/2d/physics_tests/tests/functional/test_raycasting.tscn b/2d/physics_tests/tests/functional/test_raycasting.tscn index 32db5b7d390..13b0f8cebcd 100644 --- a/2d/physics_tests/tests/functional/test_raycasting.tscn +++ b/2d/physics_tests/tests/functional/test_raycasting.tscn @@ -1,82 +1,98 @@ -[gd_scene load_steps=7 format=2] +[gd_scene load_steps=7 format=3 uid="uid://dwka2imbe5gcs"] -[ext_resource path="res://assets/texture/godot-head.png" type="Texture" id=1] -[ext_resource path="res://tests/functional/test_raycasting.gd" type="Script" id=2] +[ext_resource type="Texture2D" uid="uid://c5duuyhbmd0m4" path="res://assets/texture/godot-head.png" id="1"] +[ext_resource type="Script" path="res://tests/functional/test_raycasting.gd" id="2"] -[sub_resource type="RectangleShape2D" id=1] -extents = Vector2( 40, 60 ) +[sub_resource type="RectangleShape2D" id="1"] +size = Vector2(80, 120) -[sub_resource type="CircleShape2D" id=2] +[sub_resource type="CircleShape2D" id="2"] radius = 60.0 -[sub_resource type="CapsuleShape2D" id=3] +[sub_resource type="CapsuleShape2D" id="3"] radius = 30.0 height = 50.0 -[sub_resource type="ConcavePolygonShape2D" id=4] -segments = PoolVector2Array( -5.93512, -43.2195, 6.44476, -42.9695, 6.44476, -42.9695, 11.127, -54.3941, 11.127, -54.3941, 26.9528, -49.4309, 26.9528, -49.4309, 26.2037, -36.508, 26.2037, -36.508, 37.5346, -28.1737, 37.5346, -28.1737, 47.6282, -34.3806, 47.6282, -34.3806, 58.0427, -20.9631, 58.0427, -20.9631, 51.113, -10.2876, 51.113, -10.2876, 50.9869, 35.2694, 50.9869, 35.2694, 38.8, 47.5, 38.8, 47.5, 15.9852, 54.3613, 15.9852, 54.3613, -14.9507, 54.1845, -14.9507, 54.1845, -36.5, 48.1, -36.5, 48.1, -50.4828, 36.33, -50.4828, 36.33, -51.3668, -9.98545, -51.3668, -9.98545, -57.8889, -20.5885, -57.8889, -20.5885, -46.9473, -34.7342, -46.9473, -34.7342, -37.4014, -28.547, -37.4014, -28.547, -26.0876, -37.0323, -26.0876, -37.0323, -26.9862, -49.15, -26.9862, -49.15, -11.4152, -54.5332, -11.4152, -54.5332, -5.93512, -43.2195 ) +[sub_resource type="ConcavePolygonShape2D" id="4"] +segments = PackedVector2Array(-5.93512, -43.2195, 6.44476, -42.9695, 6.44476, -42.9695, 11.127, -54.3941, 11.127, -54.3941, 26.9528, -49.4309, 26.9528, -49.4309, 26.2037, -36.508, 26.2037, -36.508, 37.5346, -28.1737, 37.5346, -28.1737, 47.6282, -34.3806, 47.6282, -34.3806, 58.0427, -20.9631, 58.0427, -20.9631, 51.113, -10.2876, 51.113, -10.2876, 50.9869, 35.2694, 50.9869, 35.2694, 38.8, 47.5, 38.8, 47.5, 15.9852, 54.3613, 15.9852, 54.3613, -14.9507, 54.1845, -14.9507, 54.1845, -36.5, 48.1, -36.5, 48.1, -50.4828, 36.33, -50.4828, 36.33, -51.3668, -9.98545, -51.3668, -9.98545, -57.8889, -20.5885, -57.8889, -20.5885, -46.9473, -34.7342, -46.9473, -34.7342, -37.4014, -28.547, -37.4014, -28.547, -26.0876, -37.0323, -26.0876, -37.0323, -26.9862, -49.15, -26.9862, -49.15, -11.4152, -54.5332, -11.4152, -54.5332, -5.93512, -43.2195) [node name="Test" type="Node2D"] -script = ExtResource( 2 ) +script = ExtResource( "2" ) [node name="Shapes" type="Node2D" parent="."] z_index = -1 z_as_relative = false +script = null [node name="RigidBodyRectangle" type="RigidBody2D" parent="Shapes"] -position = Vector2( 114.877, 248.76 ) +position = Vector2(114.877, 248.76) mode = 1 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="Shapes/RigidBodyRectangle"] rotation = -1.19206 -scale = Vector2( 1.2, 1.2 ) -shape = SubResource( 1 ) +scale = Vector2(1.2, 1.2) +shape = SubResource( "1" ) +script = null [node name="RigidBodySphere" type="RigidBody2D" parent="Shapes"] -position = Vector2( 314.894, 257.658 ) +position = Vector2(314.894, 257.658) mode = 1 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="Shapes/RigidBodySphere"] -shape = SubResource( 2 ) +shape = SubResource( "2" ) +script = null [node name="RigidBodyCapsule" type="RigidBody2D" parent="Shapes"] -position = Vector2( 465.629, 261.204 ) +position = Vector2(465.629, 261.204) mode = 1 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="Shapes/RigidBodyCapsule"] rotation = -0.202458 -scale = Vector2( 1.2, 1.2 ) -shape = SubResource( 3 ) +scale = Vector2(1.2, 1.2) +shape = SubResource( "3" ) +script = null [node name="RigidBodyConvexPolygon" type="RigidBody2D" parent="Shapes"] -position = Vector2( 613.385, 252.771 ) +position = Vector2(613.385, 252.771) mode = 1 +script = null [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="Shapes/RigidBodyConvexPolygon"] -polygon = PoolVector2Array( 10.7, -54.5, 28.3596, -49.4067, 47.6282, -34.3806, 57.9717, -20.9447, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -58.0115, -20.515, -46.9473, -34.7342, -26.0876, -50.1138, -11.4152, -54.5332 ) +polygon = PackedVector2Array(10.7, -54.5, 28.3596, -49.4067, 47.6282, -34.3806, 57.9717, -20.9447, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -58.0115, -20.515, -46.9473, -34.7342, -26.0876, -50.1138, -11.4152, -54.5332) +script = null -[node name="GodotIcon" type="Sprite" parent="Shapes/RigidBodyConvexPolygon"] -modulate = Color( 1, 1, 1, 0.392157 ) -texture = ExtResource( 1 ) +[node name="GodotIcon" type="Sprite2D" parent="Shapes/RigidBodyConvexPolygon"] +modulate = Color(1, 1, 1, 0.392157) +texture = ExtResource( "1" ) +script = null [node name="RigidBodyConcavePolygon" type="RigidBody2D" parent="Shapes"] -position = Vector2( 771.159, 252.771 ) +position = Vector2(771.159, 252.771) mode = 1 +script = null [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="Shapes/RigidBodyConcavePolygon"] -polygon = PoolVector2Array( -5.93512, -43.2195, 6.44476, -42.9695, 11.127, -54.3941, 26.9528, -49.4309, 26.2037, -36.508, 37.5346, -28.1737, 47.6282, -34.3806, 58.0427, -20.9631, 51.113, -10.2876, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -51.3668, -9.98545, -57.8889, -20.5885, -46.9473, -34.7342, -37.4014, -28.547, -26.0876, -37.0323, -26.9862, -49.15, -11.4152, -54.5332 ) +polygon = PackedVector2Array(-5.93512, -43.2195, 6.44476, -42.9695, 11.127, -54.3941, 26.9528, -49.4309, 26.2037, -36.508, 37.5346, -28.1737, 47.6282, -34.3806, 58.0427, -20.9631, 51.113, -10.2876, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -51.3668, -9.98545, -57.8889, -20.5885, -46.9473, -34.7342, -37.4014, -28.547, -26.0876, -37.0323, -26.9862, -49.15, -11.4152, -54.5332) +script = null -[node name="GodotIcon" type="Sprite" parent="Shapes/RigidBodyConcavePolygon"] -modulate = Color( 1, 1, 1, 0.392157 ) -texture = ExtResource( 1 ) +[node name="GodotIcon" type="Sprite2D" parent="Shapes/RigidBodyConcavePolygon"] +modulate = Color(1, 1, 1, 0.392157) +texture = ExtResource( "1" ) +script = null [node name="RigidBodyConcaveSegments" type="RigidBody2D" parent="Shapes"] -position = Vector2( 930.097, 252.771 ) +position = Vector2(930.097, 252.771) mode = 1 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="Shapes/RigidBodyConcaveSegments"] -shape = SubResource( 4 ) +shape = SubResource( "4" ) +script = null -[node name="GodotIcon" type="Sprite" parent="Shapes/RigidBodyConcaveSegments"] -modulate = Color( 1, 1, 1, 0.392157 ) -texture = ExtResource( 1 ) +[node name="GodotIcon" type="Sprite2D" parent="Shapes/RigidBodyConcaveSegments"] +modulate = Color(1, 1, 1, 0.392157) +texture = ExtResource( "1" ) +script = null diff --git a/2d/physics_tests/tests/functional/test_shapes.tscn b/2d/physics_tests/tests/functional/test_shapes.tscn index b6286d27c68..62b934aae30 100644 --- a/2d/physics_tests/tests/functional/test_shapes.tscn +++ b/2d/physics_tests/tests/functional/test_shapes.tscn @@ -1,72 +1,80 @@ -[gd_scene load_steps=8 format=2] +[gd_scene load_steps=8 format=3 uid="uid://v3saw5bafa6a"] -[ext_resource path="res://assets/texture/godot-head.png" type="Texture" id=1] -[ext_resource path="res://test.gd" type="Script" id=2] -[ext_resource path="res://utils/rigidbody_pick.gd" type="Script" id=3] -[ext_resource path="res://tests/static_scene.tscn" type="PackedScene" id=6] +[ext_resource type="Texture2D" uid="uid://c5duuyhbmd0m4" path="res://assets/texture/godot-head.png" id="1"] +[ext_resource type="Script" path="res://test.gd" id="2"] +[ext_resource type="Script" path="res://utils/rigidbody_pick.gd" id="3"] +[ext_resource type="PackedScene" uid="uid://dv7rxhg55y3t6" path="res://tests/static_scene.tscn" id="6"] -[sub_resource type="RectangleShape2D" id=1] -extents = Vector2( 20, 30 ) +[sub_resource type="RectangleShape2D" id="1"] +size = Vector2(40, 60) -[sub_resource type="CapsuleShape2D" id=2] +[sub_resource type="CapsuleShape2D" id="2"] radius = 20.0 height = 30.0 -[sub_resource type="CircleShape2D" id=3] +[sub_resource type="CircleShape2D" id="3"] radius = 30.0 [node name="Test" type="Node2D"] -script = ExtResource( 2 ) +script = ExtResource( "2" ) [node name="DynamicShapes" type="Node2D" parent="."] +script = null [node name="RigidBodyRectangle" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 96, 127 ) -script = ExtResource( 3 ) +position = Vector2(96, 127) +script = ExtResource( "3" ) [node name="CollisionShape2D" type="CollisionShape2D" parent="DynamicShapes/RigidBodyRectangle"] rotation = 0.675442 -shape = SubResource( 1 ) +shape = SubResource( "1" ) +script = null [node name="RigidBodyCapsule" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 270.165, 139.444 ) -script = ExtResource( 3 ) +position = Vector2(270.165, 139.444) +script = ExtResource( "3" ) [node name="CollisionShape2D" type="CollisionShape2D" parent="DynamicShapes/RigidBodyCapsule"] rotation = -0.202458 -shape = SubResource( 2 ) +shape = SubResource( "2" ) +script = null [node name="RigidBodyConcavePolygon" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 683.614, 132.749 ) -script = ExtResource( 3 ) +position = Vector2(683.614, 132.749) +script = ExtResource( "3" ) [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="DynamicShapes/RigidBodyConcavePolygon"] -scale = Vector2( 0.5, 0.5 ) -polygon = PoolVector2Array( -5.93512, -43.2195, 6.44476, -42.9695, 11.127, -54.3941, 26.9528, -49.4309, 26.2037, -36.508, 37.5346, -28.1737, 47.6282, -34.3806, 58.0427, -20.9631, 51.113, -10.2876, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -51.3668, -9.98545, -57.8889, -20.5885, -46.9473, -34.7342, -37.4014, -28.547, -26.0876, -37.0323, -26.9862, -49.15, -11.4152, -54.5332 ) +scale = Vector2(0.5, 0.5) +polygon = PackedVector2Array(-5.93512, -43.2195, 6.44476, -42.9695, 11.127, -54.3941, 26.9528, -49.4309, 26.2037, -36.508, 37.5346, -28.1737, 47.6282, -34.3806, 58.0427, -20.9631, 51.113, -10.2876, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -51.3668, -9.98545, -57.8889, -20.5885, -46.9473, -34.7342, -37.4014, -28.547, -26.0876, -37.0323, -26.9862, -49.15, -11.4152, -54.5332) +script = null -[node name="GodotIcon" type="Sprite" parent="DynamicShapes/RigidBodyConcavePolygon"] -self_modulate = Color( 1, 1, 1, 0.392157 ) -scale = Vector2( 0.5, 0.5 ) -texture = ExtResource( 1 ) +[node name="GodotIcon" type="Sprite2D" parent="DynamicShapes/RigidBodyConcavePolygon"] +self_modulate = Color(1, 1, 1, 0.392157) +scale = Vector2(0.5, 0.5) +texture = ExtResource( "1" ) +script = null [node name="RigidBodyConvexPolygon" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 473.536, 134.336 ) -script = ExtResource( 3 ) +position = Vector2(473.536, 134.336) +script = ExtResource( "3" ) [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="DynamicShapes/RigidBodyConvexPolygon"] -scale = Vector2( 0.5, 0.5 ) -polygon = PoolVector2Array( 10.7, -54.5, 28.3596, -49.4067, 47.6282, -34.3806, 57.9717, -20.9447, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -58.0115, -20.515, -46.9473, -34.7342, -26.0876, -50.1138, -11.4152, -54.5332 ) +scale = Vector2(0.5, 0.5) +polygon = PackedVector2Array(10.7, -54.5, 28.3596, -49.4067, 47.6282, -34.3806, 57.9717, -20.9447, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -58.0115, -20.515, -46.9473, -34.7342, -26.0876, -50.1138, -11.4152, -54.5332) +script = null -[node name="GodotIcon" type="Sprite" parent="DynamicShapes/RigidBodyConvexPolygon"] -self_modulate = Color( 1, 1, 1, 0.392157 ) -scale = Vector2( 0.5, 0.5 ) -texture = ExtResource( 1 ) +[node name="GodotIcon" type="Sprite2D" parent="DynamicShapes/RigidBodyConvexPolygon"] +self_modulate = Color(1, 1, 1, 0.392157) +scale = Vector2(0.5, 0.5) +texture = ExtResource( "1" ) +script = null [node name="RigidBodySphere" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 919.968, 115.129 ) -script = ExtResource( 3 ) +position = Vector2(919.968, 115.129) +script = ExtResource( "3" ) [node name="CollisionShape2D" type="CollisionShape2D" parent="DynamicShapes/RigidBodySphere"] -shape = SubResource( 3 ) +shape = SubResource( "3" ) +script = null -[node name="StaticScene" parent="." instance=ExtResource( 6 )] +[node name="StaticScene" parent="." instance=ExtResource( "6" )] diff --git a/2d/physics_tests/tests/functional/test_stack.gd b/2d/physics_tests/tests/functional/test_stack.gd index 300376897ab..a9be5f0acc5 100644 --- a/2d/physics_tests/tests/functional/test_stack.gd +++ b/2d/physics_tests/tests/functional/test_stack.gd @@ -1,10 +1,10 @@ extends Test -export(int) var height = 10 -export(int) var width = 1 -export(Vector2) var box_size = Vector2(40.0, 40.0) -export(Vector2) var box_spacing = Vector2(0.0, 0.0) +@export var height = 10 +@export var width = 1 +@export var box_size = Vector2(40.0, 40.0) +@export var box_spacing = Vector2(0.0, 0.0) func _ready(): diff --git a/2d/physics_tests/tests/functional/test_stack.tscn b/2d/physics_tests/tests/functional/test_stack.tscn index d4009805a53..da86e5ab63c 100644 --- a/2d/physics_tests/tests/functional/test_stack.tscn +++ b/2d/physics_tests/tests/functional/test_stack.tscn @@ -1,12 +1,13 @@ -[gd_scene load_steps=3 format=2] +[gd_scene load_steps=3 format=3 uid="uid://m8crffoaqg7b"] -[ext_resource path="res://tests/functional/test_stack.gd" type="Script" id=1] -[ext_resource path="res://tests/static_scene_flat.tscn" type="PackedScene" id=2] +[ext_resource type="Script" path="res://tests/functional/test_stack.gd" id="1"] +[ext_resource type="PackedScene" uid="uid://cx2q80okt25o1" path="res://tests/static_scene_flat.tscn" id="2"] [node name="Test" type="Node2D"] -script = ExtResource( 1 ) +script = ExtResource( "1" ) [node name="Stack" type="Node2D" parent="."] -position = Vector2( 512, 500 ) +position = Vector2(512, 500) +script = null -[node name="StaticSceneFlat" parent="." instance=ExtResource( 2 )] +[node name="StaticSceneFlat" parent="." instance=ExtResource( "2" )] diff --git a/2d/physics_tests/tests/performance/test_perf_broadphase.gd b/2d/physics_tests/tests/performance/test_perf_broadphase.gd index f2d17296766..1fb7c012cdd 100644 --- a/2d/physics_tests/tests/performance/test_perf_broadphase.gd +++ b/2d/physics_tests/tests/performance/test_perf_broadphase.gd @@ -4,8 +4,8 @@ extends Test const BOX_SIZE = Vector2(40, 40) const BOX_SPACE = Vector2(50, 50) -export(int, 1, 1000) var row_size = 100 -export(int, 1, 1000) var column_size = 100 +@export_range(1, 1000) var row_size = 100 +@export_range(1, 1000) var column_size = 100 var _objects = [] @@ -15,7 +15,7 @@ var _log_physics_time_start = 0 func _ready(): - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -23,10 +23,10 @@ func _ready(): _create_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -34,10 +34,10 @@ func _ready(): _add_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -45,10 +45,10 @@ func _ready(): _move_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -56,10 +56,10 @@ func _ready(): _remove_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -71,9 +71,11 @@ func _exit_tree(): object.free() -func _physics_process(_delta): +func _physics_process(delta): + super._physics_process(delta) + if _log_physics: - var time = OS.get_ticks_usec() + var time = Time.get_ticks_usec() var time_delta = time - _log_physics_time var time_total = time - _log_physics_time_start _log_physics_time = time @@ -82,7 +84,7 @@ func _physics_process(_delta): func _log_physics_start(): _log_physics = true - _log_physics_time_start = OS.get_ticks_usec() + _log_physics_time_start = Time.get_ticks_usec() _log_physics_time = _log_physics_time_start @@ -94,7 +96,7 @@ func _create_objects(): _objects.clear() Log.print_log("* Creating objects...") - var timer = OS.get_ticks_usec() + var timer = Time.get_ticks_usec() var pos_x = -0.5 * (row_size - 1) * BOX_SPACE.x @@ -112,7 +114,7 @@ func _create_objects(): pos_x += BOX_SPACE.x - timer = OS.get_ticks_usec() - timer + timer = Time.get_ticks_usec() - timer Log.print_log(" Create Time: %.3f ms" % (0.001 * timer)) @@ -120,23 +122,23 @@ func _add_objects(): var root_node = $Objects Log.print_log("* Adding objects...") - var timer = OS.get_ticks_usec() + var timer = Time.get_ticks_usec() for object in _objects: root_node.add_child(object) - timer = OS.get_ticks_usec() - timer + timer = Time.get_ticks_usec() - timer Log.print_log(" Add Time: %.3f ms" % (0.001 * timer)) func _move_objects(): Log.print_log("* Moving objects...") - var timer = OS.get_ticks_usec() + var timer = Time.get_ticks_usec() for object in _objects: object.position += BOX_SPACE - timer = OS.get_ticks_usec() - timer + timer = Time.get_ticks_usec() - timer Log.print_log(" Move Time: %.3f ms" % (0.001 * timer)) @@ -144,12 +146,12 @@ func _remove_objects(): var root_node = $Objects Log.print_log("* Removing objects...") - var timer = OS.get_ticks_usec() + var timer = Time.get_ticks_usec() # Remove objects in reversed order to avoid the overhead of changing children index in parent. var object_count = _objects.size() for object_index in range(object_count): root_node.remove_child(_objects[object_count - object_index - 1]) - timer = OS.get_ticks_usec() - timer + timer = Time.get_ticks_usec() - timer Log.print_log(" Remove Time: %.3f ms" % (0.001 * timer)) diff --git a/2d/physics_tests/tests/performance/test_perf_broadphase.tscn b/2d/physics_tests/tests/performance/test_perf_broadphase.tscn index 75ea05fe0e1..6741e785d78 100644 --- a/2d/physics_tests/tests/performance/test_perf_broadphase.tscn +++ b/2d/physics_tests/tests/performance/test_perf_broadphase.tscn @@ -1,12 +1,13 @@ -[gd_scene load_steps=2 format=2] +[gd_scene load_steps=2 format=3 uid="uid://yk1857jynutc"] -[ext_resource path="res://tests/performance/test_perf_broadphase.gd" type="Script" id=1] +[ext_resource type="Script" path="res://tests/performance/test_perf_broadphase.gd" id="1"] [node name="Test" type="Node2D"] -script = ExtResource( 1 ) +script = ExtResource( "1" ) _enable_debug_collision = false row_size = 300 column_size = 300 [node name="Objects" type="Node2D" parent="."] -position = Vector2( 512, 300 ) +position = Vector2(512, 300) +script = null diff --git a/2d/physics_tests/tests/performance/test_perf_contact_islands.tscn b/2d/physics_tests/tests/performance/test_perf_contact_islands.tscn index 296575c6687..2606c199d52 100644 --- a/2d/physics_tests/tests/performance/test_perf_contact_islands.tscn +++ b/2d/physics_tests/tests/performance/test_perf_contact_islands.tscn @@ -1,105 +1,128 @@ -[gd_scene load_steps=8 format=2] +[gd_scene load_steps=8 format=3 uid="uid://vb6u0374prwg"] -[ext_resource path="res://tests/static_scene.tscn" type="PackedScene" id=1] -[ext_resource path="res://tests/performance/test_perf_contacts.gd" type="Script" id=2] -[ext_resource path="res://assets/texture/godot-head.png" type="Texture" id=3] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=4] +[ext_resource type="PackedScene" uid="uid://dv7rxhg55y3t6" path="res://tests/static_scene.tscn" id="1"] +[ext_resource type="Script" path="res://tests/performance/test_perf_contacts.gd" id="2"] +[ext_resource type="Texture2D" uid="uid://c5duuyhbmd0m4" path="res://assets/texture/godot-head.png" id="3"] +[ext_resource type="PackedScene" uid="uid://blh3twy74kbkv" path="res://tests/test_options.tscn" id="4"] -[sub_resource type="RectangleShape2D" id=1] -extents = Vector2( 5, 7 ) +[sub_resource type="RectangleShape2D" id="1"] +size = Vector2(10, 14) -[sub_resource type="CircleShape2D" id=2] +[sub_resource type="CircleShape2D" id="2"] radius = 5.0 -[sub_resource type="CapsuleShape2D" id=3] +[sub_resource type="CapsuleShape2D" id="3"] radius = 5.0 height = 7.0 [node name="Test" type="Node2D"] -script = ExtResource( 2 ) +script = ExtResource( "2" ) _enable_debug_collision = false -spawns = [ NodePath("SpawnTarget1"), NodePath("SpawnTarget2"), NodePath("SpawnTarget3"), NodePath("SpawnTarget4"), NodePath("SpawnTarget5"), NodePath("SpawnTarget6"), NodePath("SpawnTarget7"), NodePath("SpawnTarget8"), NodePath("SpawnTarget9") ] +spawns = [NodePath("SpawnTarget1"), NodePath("SpawnTarget2"), NodePath("SpawnTarget3"), NodePath("SpawnTarget4"), NodePath("SpawnTarget5"), NodePath("SpawnTarget6"), NodePath("SpawnTarget7"), NodePath("SpawnTarget8"), NodePath("SpawnTarget9")] spawn_count = 300 -spawn_randomize = Vector2( 10, 10 ) +spawn_randomize = Vector2(10, 10) -[node name="Options" parent="." instance=ExtResource( 4 )] +[node name="Options" parent="." instance=ExtResource( "4" )] +items = [] [node name="SpawnTarget1" type="Node2D" parent="."] -position = Vector2( 145.646, 109.462 ) +position = Vector2(145.646, 109.462) +script = null [node name="SpawnTarget2" type="Node2D" parent="."] -position = Vector2( 508.14, 109.113 ) +position = Vector2(508.14, 109.113) +script = null [node name="SpawnTarget3" type="Node2D" parent="."] -position = Vector2( 873.995, 110.042 ) +position = Vector2(873.995, 110.042) +script = null [node name="SpawnTarget4" type="Node2D" parent="."] -position = Vector2( 149.646, 301.462 ) +position = Vector2(149.646, 301.462) +script = null [node name="SpawnTarget5" type="Node2D" parent="."] -position = Vector2( 512.14, 301.113 ) +position = Vector2(512.14, 301.113) +script = null [node name="SpawnTarget6" type="Node2D" parent="."] -position = Vector2( 877.995, 302.042 ) +position = Vector2(877.995, 302.042) +script = null [node name="SpawnTarget7" type="Node2D" parent="."] -position = Vector2( 165.646, 507.462 ) +position = Vector2(165.646, 507.462) +script = null [node name="SpawnTarget8" type="Node2D" parent="."] -position = Vector2( 528.14, 507.113 ) +position = Vector2(528.14, 507.113) +script = null [node name="SpawnTarget9" type="Node2D" parent="."] -position = Vector2( 893.995, 508.042 ) +position = Vector2(893.995, 508.042) +script = null -[node name="StaticScene" parent="." instance=ExtResource( 1 )] +[node name="StaticScene" parent="." instance=ExtResource( "1" )] visible = false -position = Vector2( 0, 125.017 ) +position = Vector2(0, 125.017) [node name="DynamicShapes" type="Node2D" parent="."] +script = null [node name="RigidBodyRectangle" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 0, 1024 ) +position = Vector2(0, 1024) gravity_scale = 0.0 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="DynamicShapes/RigidBodyRectangle"] -shape = SubResource( 1 ) +shape = SubResource( "1" ) +script = null [node name="RigidBodySphere" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 100, 1024 ) +position = Vector2(100, 1024) gravity_scale = 0.0 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="DynamicShapes/RigidBodySphere"] -shape = SubResource( 2 ) +shape = SubResource( "2" ) +script = null [node name="RigidBodyCapsule" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 200, 1024 ) +position = Vector2(200, 1024) gravity_scale = 0.0 +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="DynamicShapes/RigidBodyCapsule"] -shape = SubResource( 3 ) +shape = SubResource( "3" ) +script = null [node name="RigidBodyConvexPolygon" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 300, 1024 ) +position = Vector2(300, 1024) gravity_scale = 0.0 +script = null [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="DynamicShapes/RigidBodyConvexPolygon"] -scale = Vector2( 0.1, 0.1 ) -polygon = PoolVector2Array( 10.7, -54.5, 28.3596, -49.4067, 47.6282, -34.3806, 57.9717, -20.9447, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -58.0115, -20.515, -46.9473, -34.7342, -26.0876, -50.1138, -11.4152, -54.5332 ) +scale = Vector2(0.1, 0.1) +polygon = PackedVector2Array(10.7, -54.5, 28.3596, -49.4067, 47.6282, -34.3806, 57.9717, -20.9447, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -58.0115, -20.515, -46.9473, -34.7342, -26.0876, -50.1138, -11.4152, -54.5332) +script = null -[node name="GodotIcon" type="Sprite" parent="DynamicShapes/RigidBodyConvexPolygon"] -self_modulate = Color( 1, 1, 1, 0.392157 ) -scale = Vector2( 0.1, 0.1 ) -texture = ExtResource( 3 ) +[node name="GodotIcon" type="Sprite2D" parent="DynamicShapes/RigidBodyConvexPolygon"] +self_modulate = Color(1, 1, 1, 0.392157) +scale = Vector2(0.1, 0.1) +texture = ExtResource( "3" ) +script = null [node name="RigidBodyConcavePolygon" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 400, 1024 ) +position = Vector2(400, 1024) gravity_scale = 0.0 +script = null [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="DynamicShapes/RigidBodyConcavePolygon"] -scale = Vector2( 0.1, 0.1 ) -polygon = PoolVector2Array( -5.93512, -43.2195, 6.44476, -42.9695, 11.127, -54.3941, 26.9528, -49.4309, 26.2037, -36.508, 37.5346, -28.1737, 47.6282, -34.3806, 58.0427, -20.9631, 51.113, -10.2876, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -51.3668, -9.98545, -57.8889, -20.5885, -46.9473, -34.7342, -37.4014, -28.547, -26.0876, -37.0323, -26.9862, -49.15, -11.4152, -54.5332 ) - -[node name="GodotIcon" type="Sprite" parent="DynamicShapes/RigidBodyConcavePolygon"] -self_modulate = Color( 1, 1, 1, 0.392157 ) -scale = Vector2( 0.1, 0.1 ) -texture = ExtResource( 3 ) +scale = Vector2(0.1, 0.1) +polygon = PackedVector2Array(-5.93512, -43.2195, 6.44476, -42.9695, 11.127, -54.3941, 26.9528, -49.4309, 26.2037, -36.508, 37.5346, -28.1737, 47.6282, -34.3806, 58.0427, -20.9631, 51.113, -10.2876, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -51.3668, -9.98545, -57.8889, -20.5885, -46.9473, -34.7342, -37.4014, -28.547, -26.0876, -37.0323, -26.9862, -49.15, -11.4152, -54.5332) +script = null + +[node name="GodotIcon" type="Sprite2D" parent="DynamicShapes/RigidBodyConcavePolygon"] +self_modulate = Color(1, 1, 1, 0.392157) +scale = Vector2(0.1, 0.1) +texture = ExtResource( "3" ) +script = null diff --git a/2d/physics_tests/tests/performance/test_perf_contacts.gd b/2d/physics_tests/tests/performance/test_perf_contacts.gd index 0a422ca297c..1424abadbeb 100644 --- a/2d/physics_tests/tests/performance/test_perf_contacts.gd +++ b/2d/physics_tests/tests/performance/test_perf_contacts.gd @@ -8,11 +8,11 @@ const OPTION_TYPE_CAPSULE = "Shape type/Capsule" const OPTION_TYPE_CONVEX_POLYGON = "Shape type/Convex Polygon" const OPTION_TYPE_CONCAVE_POLYGON = "Shape type/Concave Polygon" -export(Array, NodePath) var spawns = Array() -export(int) var spawn_count = 100 -export(Vector2) var spawn_randomize +@export var spawns = [] +@export var spawn_count = 100 +@export var spawn_randomize = Vector2.ZERO -onready var options = $Options +@onready var options = $Options var _object_templates = [] @@ -22,7 +22,7 @@ var _log_physics_time_start = 0 func _ready(): - yield(start_timer(0.5), "timeout") + await start_timer(0.5).timeout if is_timer_canceled(): return @@ -39,14 +39,16 @@ func _ready(): options.add_menu_item(OPTION_TYPE_CAPSULE) options.add_menu_item(OPTION_TYPE_CONVEX_POLYGON) options.add_menu_item(OPTION_TYPE_CONCAVE_POLYGON) - options.connect("option_selected", self, "_on_option_selected") + options.connect("option_selected", Callable(self, "_on_option_selected")) - _start_all_types() + await _start_all_types() -func _physics_process(_delta): +func _physics_process(delta): + super._physics_process(delta) + if _log_physics: - var time = OS.get_ticks_usec() + var time = Time.get_ticks_usec() var time_delta = time - _log_physics_time var time_total = time - _log_physics_time_start _log_physics_time = time @@ -55,7 +57,7 @@ func _physics_process(_delta): func _log_physics_start(): _log_physics = true - _log_physics_time_start = OS.get_ticks_usec() + _log_physics_time_start = Time.get_ticks_usec() _log_physics_time = _log_physics_time_start @@ -75,17 +77,17 @@ func _on_option_selected(option): match option: OPTION_TYPE_ALL: - _start_all_types() + await _start_all_types() OPTION_TYPE_RECTANGLE: - _start_type(_find_type_index("Rectangle")) + await _start_type(_find_type_index("Rectangle")) OPTION_TYPE_SPHERE: - _start_type(_find_type_index("Sphere")) + await _start_type(_find_type_index("Sphere")) OPTION_TYPE_CAPSULE: - _start_type(_find_type_index("Capsule")) + await _start_type(_find_type_index("Capsule")) OPTION_TYPE_CONVEX_POLYGON: - _start_type(_find_type_index("ConvexPolygon")) + await _start_type(_find_type_index("ConvexPolygon")) OPTION_TYPE_CONCAVE_POLYGON: - _start_type(_find_type_index("ConcavePolygon")) + await _start_type(_find_type_index("ConcavePolygon")) func _find_type_index(type_name): @@ -104,7 +106,7 @@ func _start_type(type_index): if type_index >= _object_templates.size(): return - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -112,10 +114,10 @@ func _start_type(type_index): _spawn_objects(type_index) - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -123,10 +125,10 @@ func _start_type(type_index): _activate_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(5.0), "timeout") + await start_timer(5.0).timeout if is_timer_canceled(): return @@ -134,17 +136,17 @@ func _start_type(type_index): _despawn_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout func _start_all_types(): Log.print_log("* Start all types.") for type_index in range(_object_templates.size()): - yield(_start_type(type_index), "completed") + await _start_type(type_index) if is_timer_canceled(): return @@ -154,7 +156,7 @@ func _start_all_types(): func _spawn_objects(type_index): var template_node = _object_templates[type_index] - Log.print_log("* Spawning: " + template_node.name) + Log.print_log("* Spawning: " + String(template_node.name)) for spawn in spawns: var spawn_parent = get_node(spawn) @@ -165,7 +167,7 @@ func _spawn_objects(type_index): if collision is CollisionShape2D: collision.shape = collision.shape.duplicate() var body = template_node.duplicate() - body.transform = Transform.IDENTITY + body.transform = Transform2D.IDENTITY if spawn_randomize != Vector2.ZERO: body.position.x = randf() * spawn_randomize.x body.position.y = randf() * spawn_randomize.y diff --git a/2d/physics_tests/tests/performance/test_perf_contacts.tscn b/2d/physics_tests/tests/performance/test_perf_contacts.tscn index 5142450641f..4e785e4c59b 100644 --- a/2d/physics_tests/tests/performance/test_perf_contacts.tscn +++ b/2d/physics_tests/tests/performance/test_perf_contacts.tscn @@ -1,74 +1,89 @@ -[gd_scene load_steps=8 format=2] +[gd_scene load_steps=8 format=3 uid="uid://bsieda0p35qu3"] -[ext_resource path="res://tests/static_scene.tscn" type="PackedScene" id=1] -[ext_resource path="res://tests/performance/test_perf_contacts.gd" type="Script" id=2] -[ext_resource path="res://assets/texture/godot-head.png" type="Texture" id=3] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=4] +[ext_resource type="PackedScene" uid="uid://dv7rxhg55y3t6" path="res://tests/static_scene.tscn" id="1"] +[ext_resource type="Script" path="res://tests/performance/test_perf_contacts.gd" id="2"] +[ext_resource type="Texture2D" uid="uid://c5duuyhbmd0m4" path="res://assets/texture/godot-head.png" id="3"] +[ext_resource type="PackedScene" uid="uid://blh3twy74kbkv" path="res://tests/test_options.tscn" id="4"] -[sub_resource type="RectangleShape2D" id=1] -extents = Vector2( 10, 15 ) +[sub_resource type="RectangleShape2D" id="1"] +size = Vector2(20, 30) -[sub_resource type="CircleShape2D" id=2] +[sub_resource type="CircleShape2D" id="2"] radius = 15.0 -[sub_resource type="CapsuleShape2D" id=3] +[sub_resource type="CapsuleShape2D" id="3"] height = 15.0 [node name="Test" type="Node2D"] -script = ExtResource( 2 ) +script = ExtResource( "2" ) _enable_debug_collision = false -spawns = [ NodePath("SpawnTarget1") ] +spawns = [NodePath("SpawnTarget1")] spawn_count = 500 -spawn_randomize = Vector2( 10, 10 ) +spawn_randomize = Vector2(10, 10) -[node name="Options" parent="." instance=ExtResource( 4 )] +[node name="Options" parent="." instance=ExtResource( "4" )] +items = [] [node name="SpawnTarget1" type="Node2D" parent="."] -position = Vector2( 512, 400 ) +position = Vector2(512, 400) +script = null -[node name="StaticScene" parent="." instance=ExtResource( 1 )] -position = Vector2( 0, 125.017 ) +[node name="StaticScene" parent="." instance=ExtResource( "1" )] +position = Vector2(0, 125.017) [node name="DynamicShapes" type="Node2D" parent="."] +script = null [node name="RigidBodyRectangle" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 0, 1024 ) +position = Vector2(0, 1024) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="DynamicShapes/RigidBodyRectangle"] -shape = SubResource( 1 ) +shape = SubResource( "1" ) +script = null [node name="RigidBodySphere" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 100, 1024 ) +position = Vector2(100, 1024) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="DynamicShapes/RigidBodySphere"] -shape = SubResource( 2 ) +shape = SubResource( "2" ) +script = null [node name="RigidBodyCapsule" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 200, 1024 ) +position = Vector2(200, 1024) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="DynamicShapes/RigidBodyCapsule"] -shape = SubResource( 3 ) +shape = SubResource( "3" ) +script = null [node name="RigidBodyConvexPolygon" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 300, 1024 ) +position = Vector2(300, 1024) +script = null [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="DynamicShapes/RigidBodyConvexPolygon"] -scale = Vector2( 0.25, 0.25 ) -polygon = PoolVector2Array( 10.7, -54.5, 28.3596, -49.4067, 47.6282, -34.3806, 57.9717, -20.9447, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -58.0115, -20.515, -46.9473, -34.7342, -26.0876, -50.1138, -11.4152, -54.5332 ) +scale = Vector2(0.25, 0.25) +polygon = PackedVector2Array(10.7, -54.5, 28.3596, -49.4067, 47.6282, -34.3806, 57.9717, -20.9447, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -58.0115, -20.515, -46.9473, -34.7342, -26.0876, -50.1138, -11.4152, -54.5332) +script = null -[node name="GodotIcon" type="Sprite" parent="DynamicShapes/RigidBodyConvexPolygon"] -self_modulate = Color( 1, 1, 1, 0.392157 ) -scale = Vector2( 0.25, 0.25 ) -texture = ExtResource( 3 ) +[node name="GodotIcon" type="Sprite2D" parent="DynamicShapes/RigidBodyConvexPolygon"] +self_modulate = Color(1, 1, 1, 0.392157) +scale = Vector2(0.25, 0.25) +texture = ExtResource( "3" ) +script = null [node name="RigidBodyConcavePolygon" type="RigidBody2D" parent="DynamicShapes"] -position = Vector2( 400, 1024 ) +position = Vector2(400, 1024) +script = null [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="DynamicShapes/RigidBodyConcavePolygon"] -scale = Vector2( 0.25, 0.25 ) -polygon = PoolVector2Array( -5.93512, -43.2195, 6.44476, -42.9695, 11.127, -54.3941, 26.9528, -49.4309, 26.2037, -36.508, 37.5346, -28.1737, 47.6282, -34.3806, 58.0427, -20.9631, 51.113, -10.2876, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -51.3668, -9.98545, -57.8889, -20.5885, -46.9473, -34.7342, -37.4014, -28.547, -26.0876, -37.0323, -26.9862, -49.15, -11.4152, -54.5332 ) - -[node name="GodotIcon" type="Sprite" parent="DynamicShapes/RigidBodyConcavePolygon"] -self_modulate = Color( 1, 1, 1, 0.392157 ) -scale = Vector2( 0.25, 0.25 ) -texture = ExtResource( 3 ) +scale = Vector2(0.25, 0.25) +polygon = PackedVector2Array(-5.93512, -43.2195, 6.44476, -42.9695, 11.127, -54.3941, 26.9528, -49.4309, 26.2037, -36.508, 37.5346, -28.1737, 47.6282, -34.3806, 58.0427, -20.9631, 51.113, -10.2876, 50.9869, 35.2694, 38.8, 47.5, 15.9852, 54.3613, -14.9507, 54.1845, -36.5, 48.1, -50.4828, 36.33, -51.3668, -9.98545, -57.8889, -20.5885, -46.9473, -34.7342, -37.4014, -28.547, -26.0876, -37.0323, -26.9862, -49.15, -11.4152, -54.5332) +script = null + +[node name="GodotIcon" type="Sprite2D" parent="DynamicShapes/RigidBodyConcavePolygon"] +self_modulate = Color(1, 1, 1, 0.392157) +scale = Vector2(0.25, 0.25) +texture = ExtResource( "3" ) +script = null diff --git a/2d/physics_tests/tests/static_scene.tscn b/2d/physics_tests/tests/static_scene.tscn index 0fdb28950e8..b16dce6a779 100644 --- a/2d/physics_tests/tests/static_scene.tscn +++ b/2d/physics_tests/tests/static_scene.tscn @@ -1,10 +1,13 @@ -[gd_scene format=2] +[gd_scene format=3 uid="uid://dv7rxhg55y3t6"] [node name="StaticScene" type="Node2D"] +script = null [node name="StaticBodyPolygon" type="StaticBody2D" parent="."] -position = Vector2( -7.85718, 399.596 ) +position = Vector2(-7.85718, 399.596) +script = null [node name="CollisionPolygon2D" type="CollisionPolygon2D" parent="StaticBodyPolygon"] build_mode = 1 -polygon = PoolVector2Array( 16.3331, -129.432, 154.006, -20.0078, 292.354, 30.3943, 447.054, 33.9161, 584.899, -14.7955, 751.156, -15.5179, 894.098, -65.4518, 1000.73, -209.127, 1037.77, -398.823, 1029.92, 253.327, 6.2309, 261.185, 7.35339, -398.823 ) +polygon = PackedVector2Array(16.3331, -129.432, 154.006, -20.0078, 292.354, 30.3943, 447.054, 33.9161, 584.899, -14.7955, 751.156, -15.5179, 894.098, -65.4518, 1000.73, -209.127, 1037.77, -398.823, 1029.92, 253.327, 6.2309, 261.185, 7.35339, -398.823) +script = null diff --git a/2d/physics_tests/tests/static_scene_flat.tscn b/2d/physics_tests/tests/static_scene_flat.tscn index 368ac2b3c70..e17be5d0c8e 100644 --- a/2d/physics_tests/tests/static_scene_flat.tscn +++ b/2d/physics_tests/tests/static_scene_flat.tscn @@ -1,12 +1,15 @@ -[gd_scene load_steps=2 format=2] +[gd_scene load_steps=2 format=3 uid="uid://cx2q80okt25o1"] -[sub_resource type="RectangleShape2D" id=1] -extents = Vector2( 800, 50 ) +[sub_resource type="RectangleShape2D" id="1"] +size = Vector2(1600, 100) [node name="StaticSceneFlat" type="Node2D"] +script = null [node name="StaticBodyPolygon" type="StaticBody2D" parent="."] -position = Vector2( 512, 550 ) +position = Vector2(512, 550) +script = null [node name="CollisionShape2D" type="CollisionShape2D" parent="StaticBodyPolygon"] -shape = SubResource( 1 ) +shape = SubResource( "1" ) +script = null diff --git a/2d/physics_tests/tests/test_options.tscn b/2d/physics_tests/tests/test_options.tscn index 63d66ee5a7a..9f2cc049381 100644 --- a/2d/physics_tests/tests/test_options.tscn +++ b/2d/physics_tests/tests/test_options.tscn @@ -1,17 +1,17 @@ -[gd_scene load_steps=2 format=2] +[gd_scene load_steps=2 format=3 uid="uid://blh3twy74kbkv"] -[ext_resource path="res://utils/option_menu.gd" type="Script" id=1] +[ext_resource type="Script" path="res://utils/option_menu.gd" id="1"] [node name="Options" type="MenuButton"] -pause_mode = 2 -margin_left = 10.0 -margin_top = 106.719 -margin_right = 125.0 -margin_bottom = 126.719 +offset_left = 10.0 +offset_top = 106.719 +offset_right = 125.0 +offset_bottom = 126.719 text = "TEST OPTIONS" flat = false align = 0 -script = ExtResource( 1 ) +items = [] +script = ExtResource( "1" ) __meta__ = { "_edit_use_anchors_": false } diff --git a/2d/physics_tests/tests_menu.gd b/2d/physics_tests/tests_menu.gd index bb3cad61ff7..27ef04669ab 100644 --- a/2d/physics_tests/tests_menu.gd +++ b/2d/physics_tests/tests_menu.gd @@ -9,11 +9,11 @@ class TestData: var _test_list = [] var _current_test = null -var _current_test_scene = null +var _current_test_scene : Node = null func _ready(): - connect("option_selected", self, "_on_option_selected") + connect("option_selected", Callable(self, "_on_option_selected")) func _process(_delta): @@ -46,7 +46,7 @@ func _start_test(test): Log.print_log("*** STARTING TEST: " + test.id) var scene = load(test.scene_path) - _current_test_scene = scene.instance() + _current_test_scene = scene.instantiate() get_tree().root.add_child(_current_test_scene) get_tree().root.move_child(_current_test_scene, 0) diff --git a/2d/physics_tests/utils/kinematicbody_controller.gd b/2d/physics_tests/utils/characterbody_controller.gd similarity index 85% rename from 2d/physics_tests/utils/kinematicbody_controller.gd rename to 2d/physics_tests/utils/characterbody_controller.gd index ac40f39d191..cc32283fdc1 100644 --- a/2d/physics_tests/utils/kinematicbody_controller.gd +++ b/2d/physics_tests/utils/characterbody_controller.gd @@ -1,4 +1,4 @@ -extends KinematicBody2D +extends CharacterBody2D var _initial_velocity = Vector2.ZERO @@ -46,9 +46,12 @@ func _physics_process(_delta): # Always apply gravity for floor detection. _velocity.y += _gravity_force - var snap = _snap if not _jumping else Vector2.ZERO - var max_angle = deg2rad(_floor_max_angle) - _velocity = move_and_slide_with_snap(_velocity, snap, Vector2.UP, _stop_on_slope, 4, max_angle) + snap = _snap if not _jumping else Vector2.ZERO + stop_on_slope = _stop_on_slope + floor_max_angle = deg2rad(_floor_max_angle) + linear_velocity = _velocity + move_and_slide() + _velocity = linear_velocity # Get next jump ready. if _jumping: diff --git a/2d/physics_tests/utils/container_log.gd b/2d/physics_tests/utils/container_log.gd index 2baff145bd8..47a7a0f33dd 100644 --- a/2d/physics_tests/utils/container_log.gd +++ b/2d/physics_tests/utils/container_log.gd @@ -7,7 +7,7 @@ var _entry_template func _enter_tree(): - Log.connect("entry_logged", self, "_on_log_entry") + Log.connect("entry_logged", Callable(self, "_on_log_entry")) _entry_template = get_child(0) as Label remove_child(_entry_template) @@ -29,9 +29,9 @@ func _on_log_entry(message, type): new_entry.set_text(message) if type == Log.LogType.ERROR: - new_entry.modulate = Color.red + new_entry.modulate = Color.RED else: - new_entry.modulate = Color.white + new_entry.modulate = Color.WHITE if get_child_count() >= MAX_ENTRIES: var first_entry = get_child(0) as Label diff --git a/2d/physics_tests/utils/label_slider_value.gd b/2d/physics_tests/utils/label_slider_value.gd index 67f736980fa..4db7e58d8db 100644 --- a/2d/physics_tests/utils/label_slider_value.gd +++ b/2d/physics_tests/utils/label_slider_value.gd @@ -1,5 +1,5 @@ +@tool extends Label -tool func _process(_delta): diff --git a/2d/physics_tests/utils/label_test.gd b/2d/physics_tests/utils/label_test.gd index d5de3d49f2f..01e0c1bca32 100644 --- a/2d/physics_tests/utils/label_test.gd +++ b/2d/physics_tests/utils/label_test.gd @@ -1,13 +1,13 @@ extends Label -var test_name setget _set_test_name +var test_name = "": + set(value): + if (test_name != value): + return + test_name = value + set_text("Test: %s" % test_name) func _ready(): set_text("Select a test from the menu to start it") - - -func _set_test_name(value): - test_name = value - set_text("Test: %s" % test_name) diff --git a/2d/physics_tests/utils/option_menu.gd b/2d/physics_tests/utils/option_menu.gd index 79fd54445b5..1fe30377071 100644 --- a/2d/physics_tests/utils/option_menu.gd +++ b/2d/physics_tests/utils/option_menu.gd @@ -47,7 +47,7 @@ func _add_popup(parent_popup, path, label): parent_popup.add_child(popup_menu) parent_popup.add_submenu_item(label, label) - popup_menu.connect("index_pressed", self, "_on_item_pressed", [popup_menu, path]) + popup_menu.connect("index_pressed", Callable(self, "_on_item_pressed"), [popup_menu, path]) return popup_menu diff --git a/2d/physics_tests/utils/rigidbody_controller.gd b/2d/physics_tests/utils/rigidbody_controller.gd index b76a207b5e3..b25417de355 100644 --- a/2d/physics_tests/utils/rigidbody_controller.gd +++ b/2d/physics_tests/utils/rigidbody_controller.gd @@ -12,6 +12,9 @@ var _jumping = false var _keep_velocity = false +func _ready(): + gravity_scale = 0.0 + func _physics_process(_delta): if _initial_velocity != Vector2.ZERO: _velocity = _initial_velocity diff --git a/2d/physics_tests/utils/scroll_log.gd b/2d/physics_tests/utils/scroll_log.gd index d4af9cebc9b..3eb42740488 100644 --- a/2d/physics_tests/utils/scroll_log.gd +++ b/2d/physics_tests/utils/scroll_log.gd @@ -1,12 +1,12 @@ extends ScrollContainer -export(bool) var auto_scroll = false setget set_auto_scroll +@export var auto_scroll = false func _ready(): var scrollbar = get_v_scrollbar() - scrollbar.connect("scrolling", self, "_on_scrolling") + scrollbar.connect("scrolling", Callable(self, "_on_scrolling")) func _process(_delta): @@ -15,10 +15,6 @@ func _process(_delta): scrollbar.value = scrollbar.max_value -func set_auto_scroll(value): - auto_scroll = value - - func _on_scrolling(): auto_scroll = false $"../CheckBoxScroll".pressed = false diff --git a/2d/physics_tests/utils/slider.gd b/2d/physics_tests/utils/slider.gd index 96c22e560c3..ab555b8a1c8 100644 --- a/2d/physics_tests/utils/slider.gd +++ b/2d/physics_tests/utils/slider.gd @@ -1,7 +1,7 @@ -extends Slider +extends HSlider -export(float) var snap_step = 1.0 +@export var snap_step = 1.0 func _process(_delta): diff --git a/2d/physics_tests/utils/system.gd b/2d/physics_tests/utils/system.gd index 290ce27d220..3ec0316784e 100644 --- a/2d/physics_tests/utils/system.gd +++ b/2d/physics_tests/utils/system.gd @@ -10,7 +10,7 @@ var _engine = PhysicsEngine.OTHER func _enter_tree(): - pause_mode = Node.PAUSE_MODE_PROCESS + process_mode = Node.PROCESS_MODE_ALWAYS get_tree().debug_collisions_hint = true @@ -18,7 +18,7 @@ func _enter_tree(): match engine_string: "DEFAULT": _engine = PhysicsEngine.GODOT_PHYSICS - "GodotPhysics": + "GodotPhysics2D": _engine = PhysicsEngine.GODOT_PHYSICS _: _engine = PhysicsEngine.OTHER @@ -26,7 +26,10 @@ func _enter_tree(): func _process(_delta): if Input.is_action_just_pressed("toggle_full_screen"): - OS.window_fullscreen = not OS.window_fullscreen + if DisplayServer.window_get_mode() == DisplayServer.WINDOW_MODE_FULLSCREEN: + DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_WINDOWED) + else: + DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_FULLSCREEN) if Input.is_action_just_pressed("toggle_debug_collision"): var debug_collision_enabled = not _is_debug_collision_enabled() diff --git a/3d/physics_tests/assets/robot_head/godot3_robot_head_collision.tres b/3d/physics_tests/assets/robot_head/godot3_robot_head_collision.tres index 8a116d22f63..536af80d2bd 100644 --- a/3d/physics_tests/assets/robot_head/godot3_robot_head_collision.tres +++ b/3d/physics_tests/assets/robot_head/godot3_robot_head_collision.tres @@ -1,4 +1,4 @@ -[gd_resource type="ConcavePolygonShape" format=2] +[gd_resource type="ConcavePolygonShape3D" format=2] [resource] -data = PoolVector3Array( 0.4536, 0.8618, 0.6113, 0.4756, 0.8662, 0.6201, 0.4561, 0.8857, 0.6001, 0.4561, 0.8857, 0.6001, 0.4756, 0.8662, 0.6201, 0.4797, 0.8882, 0.6113, 0.4111, 0.8584, 0.605, 0.4326, 0.8594, 0.6069, 0.4111, 0.8833, 0.5923, 0.4111, 0.8833, 0.5923, 0.4326, 0.8594, 0.6069, 0.4341, 0.8838, 0.5942, 0.3689, 0.8618, 0.6113, 0.3896, 0.8594, 0.6069, 0.3665, 0.8857, 0.6001, 0.3665, 0.8857, 0.6001, 0.3896, 0.8594, 0.6069, 0.3884, 0.8838, 0.5942, 0.3271, 0.8721, 0.6323, 0.3469, 0.8662, 0.6201, 0.3215, 0.8921, 0.6265, 0.3215, 0.8921, 0.6265, 0.3469, 0.8662, 0.6201, 0.3428, 0.8882, 0.6113, 0.4578, 0.9077, 0.5942, 0.4824, 0.9087, 0.6069, 0.458, 0.9302, 0.5923, 0.458, 0.9302, 0.5923, 0.4824, 0.9087, 0.6069, 0.4829, 0.9302, 0.605, 0.4111, 0.9067, 0.5859, 0.4348, 0.9067, 0.5884, 0.4111, 0.9302, 0.584, 0.4111, 0.9302, 0.584, 0.4348, 0.9067, 0.5884, 0.4351, 0.9302, 0.5859, 0.3647, 0.9077, 0.5942, 0.3877, 0.9067, 0.5884, 0.3645, 0.9302, 0.5923, 0.3645, 0.9302, 0.5923, 0.3877, 0.9067, 0.5884, 0.3875, 0.9302, 0.5859, 0.3186, 0.9111, 0.6235, 0.3401, 0.9087, 0.6069, 0.3176, 0.9302, 0.6226, 0.3176, 0.9302, 0.6226, 0.3401, 0.9087, 0.6069, 0.3394, 0.9302, 0.605, 0.4578, 0.9531, 0.5942, 0.4824, 0.9517, 0.6069, 0.4561, 0.9751, 0.6001, 0.4561, 0.9751, 0.6001, 0.4824, 0.9517, 0.6069, 0.4797, 0.9727, 0.6113, 0.4111, 0.9541, 0.5859, 0.4348, 0.9541, 0.5884, 0.4111, 0.9771, 0.5923, 0.4111, 0.9771, 0.5923, 0.4348, 0.9541, 0.5884, 0.4341, 0.9771, 0.5942, 0.3647, 0.9531, 0.5942, 0.3877, 0.9541, 0.5884, 0.3665, 0.9751, 0.6001, 0.3665, 0.9751, 0.6001, 0.3877, 0.9541, 0.5884, 0.3884, 0.9771, 0.5942, 0.3186, 0.9497, 0.6235, 0.3401, 0.9517, 0.6069, 0.3215, 0.9688, 0.6265, 0.3215, 0.9688, 0.6265, 0.3401, 0.9517, 0.6069, 0.3428, 0.9727, 0.6113, 0.4536, 0.999, 0.6113, 0.4756, 0.9946, 0.6201, 0.4495, 1.0195, 0.6265, 0.4495, 1.0195, 0.6265, 0.4756, 0.9946, 0.6201, 0.4692, 1.0137, 0.6323, 0.4111, 1.002, 0.605, 0.4326, 1.001, 0.6069, 0.4111, 1.0234, 0.6226, 0.4111, 1.0234, 0.6226, 0.4326, 1.001, 0.6069, 0.4307, 1.0225, 0.6235, 0.3689, 0.999, 0.6113, 0.3896, 1.001, 0.6069, 0.373, 1.0195, 0.6265, 0.373, 1.0195, 0.6265, 0.3896, 1.001, 0.6069, 0.3918, 1.0225, 0.6235, 0.3271, 0.9883, 0.6323, 0.3469, 0.9946, 0.6201, 0.3347, 1.0068, 0.6396, 0.3347, 1.0068, 0.6396, 0.3469, 0.9946, 0.6201, 0.3533, 1.0137, 0.6323, 0.3064, 0.8618, 0.6738, 0.3152, 0.8662, 0.6519, 0.2949, 0.8857, 0.6714, 0.2949, 0.8857, 0.6714, 0.3152, 0.8662, 0.6519, 0.3064, 0.8882, 0.6479, 0.3, 0.8584, 0.7163, 0.3018, 0.8594, 0.6948, 0.2874, 0.8833, 0.7163, 0.2874, 0.8833, 0.7163, 0.3018, 0.8594, 0.6948, 0.2893, 0.8838, 0.6934, 0.3064, 0.8618, 0.7588, 0.3018, 0.8594, 0.7378, 0.2949, 0.8857, 0.7612, 0.2949, 0.8857, 0.7612, 0.3018, 0.8594, 0.7378, 0.2893, 0.8838, 0.7393, 0.3271, 0.8721, 0.8003, 0.3152, 0.8662, 0.7808, 0.3215, 0.8921, 0.8057, 0.3215, 0.8921, 0.8057, 0.3152, 0.8662, 0.7808, 0.3064, 0.8882, 0.7847, 0.2893, 0.9077, 0.6699, 0.3018, 0.9087, 0.645, 0.2874, 0.9302, 0.6694, 0.2874, 0.9302, 0.6694, 0.3018, 0.9087, 0.645, 0.3, 0.9302, 0.6445, 0.281, 0.9067, 0.7163, 0.2832, 0.9067, 0.6929, 0.2788, 0.9302, 0.7163, 0.2788, 0.9302, 0.7163, 0.2832, 0.9067, 0.6929, 0.281, 0.9302, 0.6924, 0.2893, 0.9077, 0.7627, 0.2832, 0.9067, 0.7397, 0.2874, 0.9302, 0.7632, 0.2874, 0.9302, 0.7632, 0.2832, 0.9067, 0.7397, 0.281, 0.9302, 0.7402, 0.3186, 0.9111, 0.8091, 0.3018, 0.9087, 0.7876, 0.3176, 0.9302, 0.8101, 0.3176, 0.9302, 0.8101, 0.3018, 0.9087, 0.7876, 0.3, 0.9302, 0.7881, 0.2893, 0.9531, 0.6699, 0.3018, 0.9517, 0.645, 0.2949, 0.9751, 0.6714, 0.2949, 0.9751, 0.6714, 0.3018, 0.9517, 0.645, 0.3064, 0.9727, 0.6479, 0.281, 0.9541, 0.7163, 0.2832, 0.9541, 0.6929, 0.2874, 0.9771, 0.7163, 0.2874, 0.9771, 0.7163, 0.2832, 0.9541, 0.6929, 0.2893, 0.9771, 0.6934, 0.2893, 0.9531, 0.7627, 0.2832, 0.9541, 0.7397, 0.2949, 0.9751, 0.7612, 0.2949, 0.9751, 0.7612, 0.2832, 0.9541, 0.7397, 0.2893, 0.9771, 0.7393, 0.3186, 0.9497, 0.8091, 0.3018, 0.9517, 0.7876, 0.3215, 0.9688, 0.8057, 0.3215, 0.9688, 0.8057, 0.3018, 0.9517, 0.7876, 0.3064, 0.9727, 0.7847, 0.3064, 0.999, 0.6738, 0.3152, 0.9946, 0.6519, 0.3215, 1.0195, 0.6782, 0.3215, 1.0195, 0.6782, 0.3152, 0.9946, 0.6519, 0.3271, 1.0137, 0.6582, 0.3, 1.002, 0.7163, 0.3018, 1.001, 0.6948, 0.3176, 1.0234, 0.7163, 0.3176, 1.0234, 0.7163, 0.3018, 1.001, 0.6948, 0.3186, 1.0225, 0.6968, 0.3064, 0.999, 0.7588, 0.3018, 1.001, 0.7378, 0.3215, 1.0195, 0.7544, 0.3215, 1.0195, 0.7544, 0.3018, 1.001, 0.7378, 0.3186, 1.0225, 0.7358, 0.3271, 0.9883, 0.8003, 0.3152, 0.9946, 0.7808, 0.3347, 1.0068, 0.7925, 0.3347, 1.0068, 0.7925, 0.3152, 0.9946, 0.7808, 0.3271, 1.0137, 0.7744, 0.3689, 0.8618, 0.8213, 0.3469, 0.8662, 0.8125, 0.3665, 0.8857, 0.8325, 0.3665, 0.8857, 0.8325, 0.3469, 0.8662, 0.8125, 0.3428, 0.8882, 0.8213, 0.4111, 0.8584, 0.8276, 0.3896, 0.8594, 0.8257, 0.4111, 0.8833, 0.8398, 0.4111, 0.8833, 0.8398, 0.3896, 0.8594, 0.8257, 0.3884, 0.8838, 0.8379, 0.4536, 0.8618, 0.8213, 0.4326, 0.8594, 0.8257, 0.4561, 0.8857, 0.8325, 0.4561, 0.8857, 0.8325, 0.4326, 0.8594, 0.8257, 0.4341, 0.8838, 0.8379, 0.4954, 0.8721, 0.8003, 0.4756, 0.8662, 0.8125, 0.5005, 0.8921, 0.8057, 0.5005, 0.8921, 0.8057, 0.4756, 0.8662, 0.8125, 0.4797, 0.8882, 0.8213, 0.3647, 0.9077, 0.8379, 0.3401, 0.9087, 0.8257, 0.3645, 0.9302, 0.8398, 0.3645, 0.9302, 0.8398, 0.3401, 0.9087, 0.8257, 0.3394, 0.9302, 0.8276, 0.4111, 0.9067, 0.8467, 0.3877, 0.9067, 0.8442, 0.4111, 0.9302, 0.8486, 0.4111, 0.9302, 0.8486, 0.3877, 0.9067, 0.8442, 0.3875, 0.9302, 0.8467, 0.4578, 0.9077, 0.8379, 0.4348, 0.9067, 0.8442, 0.458, 0.9302, 0.8398, 0.458, 0.9302, 0.8398, 0.4348, 0.9067, 0.8442, 0.4351, 0.9302, 0.8467, 0.5039, 0.9111, 0.8091, 0.4824, 0.9087, 0.8257, 0.5049, 0.9302, 0.8101, 0.5049, 0.9302, 0.8101, 0.4824, 0.9087, 0.8257, 0.4829, 0.9302, 0.8276, 0.3647, 0.9531, 0.8379, 0.3401, 0.9517, 0.8257, 0.3665, 0.9751, 0.8325, 0.3665, 0.9751, 0.8325, 0.3401, 0.9517, 0.8257, 0.3428, 0.9727, 0.8213, 0.4111, 0.9541, 0.8467, 0.3877, 0.9541, 0.8442, 0.4111, 0.9771, 0.8398, 0.4111, 0.9771, 0.8398, 0.3877, 0.9541, 0.8442, 0.3884, 0.9771, 0.8379, 0.4578, 0.9531, 0.8379, 0.4348, 0.9541, 0.8442, 0.4561, 0.9751, 0.8325, 0.4561, 0.9751, 0.8325, 0.4348, 0.9541, 0.8442, 0.4341, 0.9771, 0.8379, 0.5039, 0.9497, 0.8091, 0.4824, 0.9517, 0.8257, 0.5005, 0.9688, 0.8057, 0.5005, 0.9688, 0.8057, 0.4824, 0.9517, 0.8257, 0.4797, 0.9727, 0.8213, 0.3689, 0.999, 0.8213, 0.3469, 0.9946, 0.8125, 0.373, 1.0195, 0.8057, 0.373, 1.0195, 0.8057, 0.3469, 0.9946, 0.8125, 0.3533, 1.0137, 0.8003, 0.4111, 1.002, 0.8276, 0.3896, 1.001, 0.8257, 0.4111, 1.0234, 0.8101, 0.4111, 1.0234, 0.8101, 0.3896, 1.001, 0.8257, 0.3918, 1.0225, 0.8091, 0.4536, 0.999, 0.8213, 0.4326, 1.001, 0.8257, 0.4495, 1.0195, 0.8057, 0.4495, 1.0195, 0.8057, 0.4326, 1.001, 0.8257, 0.4307, 1.0225, 0.8091, 0.4954, 0.9883, 0.8003, 0.4756, 0.9946, 0.8125, 0.4875, 1.0068, 0.7925, 0.4875, 1.0068, 0.7925, 0.4756, 0.9946, 0.8125, 0.4692, 1.0137, 0.8003, 0.5161, 0.8618, 0.7588, 0.5073, 0.8662, 0.7808, 0.5273, 0.8857, 0.7612, 0.5273, 0.8857, 0.7612, 0.5073, 0.8662, 0.7808, 0.5161, 0.8882, 0.7847, 0.5225, 0.8584, 0.7163, 0.5205, 0.8594, 0.7378, 0.5347, 0.8833, 0.7163, 0.5347, 0.8833, 0.7163, 0.5205, 0.8594, 0.7378, 0.5327, 0.8838, 0.7393, 0.5161, 0.8618, 0.6738, 0.5205, 0.8594, 0.6948, 0.5273, 0.8857, 0.6714, 0.5273, 0.8857, 0.6714, 0.5205, 0.8594, 0.6948, 0.5327, 0.8838, 0.6934, 0.4954, 0.8721, 0.6323, 0.5073, 0.8662, 0.6519, 0.5005, 0.8921, 0.6265, 0.5005, 0.8921, 0.6265, 0.5073, 0.8662, 0.6519, 0.5161, 0.8882, 0.6479, 0.5327, 0.9077, 0.7627, 0.5205, 0.9087, 0.7876, 0.5347, 0.9302, 0.7632, 0.5347, 0.9302, 0.7632, 0.5205, 0.9087, 0.7876, 0.5225, 0.9302, 0.7881, 0.5415, 0.9067, 0.7163, 0.5391, 0.9067, 0.7397, 0.5435, 0.9302, 0.7163, 0.5435, 0.9302, 0.7163, 0.5391, 0.9067, 0.7397, 0.5415, 0.9302, 0.7402, 0.5327, 0.9077, 0.6699, 0.5391, 0.9067, 0.6929, 0.5347, 0.9302, 0.6694, 0.5347, 0.9302, 0.6694, 0.5391, 0.9067, 0.6929, 0.5415, 0.9302, 0.6924, 0.5039, 0.9111, 0.6235, 0.5205, 0.9087, 0.645, 0.5049, 0.9302, 0.6226, 0.5049, 0.9302, 0.6226, 0.5205, 0.9087, 0.645, 0.5225, 0.9302, 0.6445, 0.5327, 0.9531, 0.7627, 0.5205, 0.9517, 0.7876, 0.5273, 0.9751, 0.7612, 0.5273, 0.9751, 0.7612, 0.5205, 0.9517, 0.7876, 0.5161, 0.9727, 0.7847, 0.5415, 0.9541, 0.7163, 0.5391, 0.9541, 0.7397, 0.5347, 0.9771, 0.7163, 0.5347, 0.9771, 0.7163, 0.5391, 0.9541, 0.7397, 0.5327, 0.9771, 0.7393, 0.5327, 0.9531, 0.6699, 0.5391, 0.9541, 0.6929, 0.5273, 0.9751, 0.6714, 0.5273, 0.9751, 0.6714, 0.5391, 0.9541, 0.6929, 0.5327, 0.9771, 0.6934, 0.5039, 0.9497, 0.6235, 0.5205, 0.9517, 0.645, 0.5005, 0.9688, 0.6265, 0.5005, 0.9688, 0.6265, 0.5205, 0.9517, 0.645, 0.5161, 0.9727, 0.6479, 0.5161, 0.999, 0.7588, 0.5073, 0.9946, 0.7808, 0.5005, 1.0195, 0.7544, 0.5005, 1.0195, 0.7544, 0.5073, 0.9946, 0.7808, 0.4954, 1.0137, 0.7744, 0.5225, 1.002, 0.7163, 0.5205, 1.001, 0.7378, 0.5049, 1.0234, 0.7163, 0.5049, 1.0234, 0.7163, 0.5205, 1.001, 0.7378, 0.5039, 1.0225, 0.7358, 0.5161, 0.999, 0.6738, 0.5205, 1.001, 0.6948, 0.5005, 1.0195, 0.6782, 0.5005, 1.0195, 0.6782, 0.5205, 1.001, 0.6948, 0.5039, 1.0225, 0.6968, 0.4954, 0.9883, 0.6323, 0.5073, 0.9946, 0.6519, 0.4875, 1.0068, 0.6396, 0.4875, 1.0068, 0.6396, 0.5073, 0.9946, 0.6519, 0.4954, 1.0137, 0.6582, 0.4536, 0.8252, 0.7847, 0.4756, 0.8345, 0.7803, 0.4561, 0.814, 0.7612, 0.4561, 0.814, 0.7612, 0.4756, 0.8345, 0.7803, 0.4797, 0.8252, 0.7588, 0.4111, 0.8193, 0.7881, 0.4326, 0.8208, 0.7876, 0.4111, 0.8066, 0.7632, 0.4111, 0.8066, 0.7632, 0.4326, 0.8208, 0.7876, 0.4341, 0.8086, 0.7627, 0.3689, 0.8252, 0.7847, 0.3896, 0.8208, 0.7876, 0.3665, 0.814, 0.7612, 0.3665, 0.814, 0.7612, 0.3896, 0.8208, 0.7876, 0.3884, 0.8086, 0.7627, 0.3271, 0.8462, 0.7744, 0.3469, 0.8345, 0.7803, 0.3215, 0.8408, 0.7544, 0.3215, 0.8408, 0.7544, 0.3469, 0.8345, 0.7803, 0.3428, 0.8252, 0.7588, 0.4578, 0.8086, 0.7393, 0.4824, 0.8208, 0.7378, 0.458, 0.8066, 0.7163, 0.458, 0.8066, 0.7163, 0.4824, 0.8208, 0.7378, 0.4829, 0.8193, 0.7163, 0.4111, 0.8003, 0.7402, 0.4348, 0.8022, 0.7397, 0.4111, 0.7979, 0.7163, 0.4111, 0.7979, 0.7163, 0.4348, 0.8022, 0.7397, 0.4351, 0.8003, 0.7163, 0.3647, 0.8086, 0.7393, 0.3877, 0.8022, 0.7397, 0.3645, 0.8066, 0.7163, 0.3645, 0.8066, 0.7163, 0.3877, 0.8022, 0.7397, 0.3875, 0.8003, 0.7163, 0.3186, 0.8379, 0.7358, 0.3401, 0.8208, 0.7378, 0.3176, 0.8369, 0.7163, 0.3176, 0.8369, 0.7163, 0.3401, 0.8208, 0.7378, 0.3394, 0.8193, 0.7163, 0.4578, 0.8086, 0.6934, 0.4824, 0.8208, 0.6948, 0.4561, 0.814, 0.6714, 0.4561, 0.814, 0.6714, 0.4824, 0.8208, 0.6948, 0.4797, 0.8252, 0.6738, 0.4111, 0.8003, 0.6924, 0.4348, 0.8022, 0.6929, 0.4111, 0.8066, 0.6694, 0.4111, 0.8066, 0.6694, 0.4348, 0.8022, 0.6929, 0.4341, 0.8086, 0.6699, 0.3647, 0.8086, 0.6934, 0.3877, 0.8022, 0.6929, 0.3665, 0.814, 0.6714, 0.3665, 0.814, 0.6714, 0.3877, 0.8022, 0.6929, 0.3884, 0.8086, 0.6699, 0.3186, 0.8379, 0.6968, 0.3401, 0.8208, 0.6948, 0.3215, 0.8408, 0.6782, 0.3215, 0.8408, 0.6782, 0.3401, 0.8208, 0.6948, 0.3428, 0.8252, 0.6738, 0.4536, 0.8252, 0.6479, 0.4756, 0.8345, 0.6519, 0.4495, 0.8408, 0.6265, 0.4495, 0.8408, 0.6265, 0.4756, 0.8345, 0.6519, 0.4692, 0.8462, 0.6323, 0.4111, 0.8193, 0.6445, 0.4326, 0.8208, 0.645, 0.4111, 0.8369, 0.6226, 0.4111, 0.8369, 0.6226, 0.4326, 0.8208, 0.645, 0.4307, 0.8379, 0.6235, 0.3689, 0.8252, 0.6479, 0.3896, 0.8208, 0.645, 0.373, 0.8408, 0.6265, 0.373, 0.8408, 0.6265, 0.3896, 0.8208, 0.645, 0.3918, 0.8379, 0.6235, 0.3271, 0.8462, 0.6582, 0.3469, 0.8345, 0.6519, 0.3347, 0.854, 0.6396, 0.3347, 0.854, 0.6396, 0.3469, 0.8345, 0.6519, 0.3533, 0.8462, 0.6323, 0.4536, 1.0352, 0.6479, 0.4756, 1.0264, 0.6519, 0.4561, 1.0459, 0.6714, 0.4561, 1.0459, 0.6714, 0.4756, 1.0264, 0.6519, 0.4797, 1.0352, 0.6738, 0.4111, 1.041, 0.6445, 0.4326, 1.04, 0.645, 0.4111, 1.0537, 0.6694, 0.4111, 1.0537, 0.6694, 0.4326, 1.04, 0.645, 0.4341, 1.0518, 0.6699, 0.3689, 1.0352, 0.6479, 0.3896, 1.04, 0.645, 0.3665, 1.0459, 0.6714, 0.3665, 1.0459, 0.6714, 0.3896, 1.04, 0.645, 0.3884, 1.0518, 0.6699, 0.3271, 1.0137, 0.6582, 0.3469, 1.0264, 0.6519, 0.3215, 1.0195, 0.6782, 0.3215, 1.0195, 0.6782, 0.3469, 1.0264, 0.6519, 0.3428, 1.0352, 0.6738, 0.4578, 1.0518, 0.6934, 0.4824, 1.04, 0.6948, 0.458, 1.0537, 0.7163, 0.458, 1.0537, 0.7163, 0.4824, 1.04, 0.6948, 0.4829, 1.041, 0.7163, 0.4111, 1.0605, 0.6924, 0.4348, 1.0586, 0.6929, 0.4111, 1.0625, 0.7163, 0.4111, 1.0625, 0.7163, 0.4348, 1.0586, 0.6929, 0.4351, 1.0605, 0.7163, 0.3647, 1.0518, 0.6934, 0.3877, 1.0586, 0.6929, 0.3645, 1.0537, 0.7163, 0.3645, 1.0537, 0.7163, 0.3877, 1.0586, 0.6929, 0.3875, 1.0605, 0.7163, 0.3186, 1.0225, 0.6968, 0.3401, 1.04, 0.6948, 0.3176, 1.0234, 0.7163, 0.3176, 1.0234, 0.7163, 0.3401, 1.04, 0.6948, 0.3394, 1.041, 0.7163, 0.4578, 1.0518, 0.7393, 0.4824, 1.04, 0.7378, 0.4561, 1.0459, 0.7612, 0.4561, 1.0459, 0.7612, 0.4824, 1.04, 0.7378, 0.4797, 1.0352, 0.7588, 0.4111, 1.0605, 0.7402, 0.4348, 1.0586, 0.7397, 0.4111, 1.0537, 0.7632, 0.4111, 1.0537, 0.7632, 0.4348, 1.0586, 0.7397, 0.4341, 1.0518, 0.7627, 0.3647, 1.0518, 0.7393, 0.3877, 1.0586, 0.7397, 0.3665, 1.0459, 0.7612, 0.3665, 1.0459, 0.7612, 0.3877, 1.0586, 0.7397, 0.3884, 1.0518, 0.7627, 0.3186, 1.0225, 0.7358, 0.3401, 1.04, 0.7378, 0.3215, 1.0195, 0.7544, 0.3215, 1.0195, 0.7544, 0.3401, 1.04, 0.7378, 0.3428, 1.0352, 0.7588, 0.4536, 1.0352, 0.7847, 0.4756, 1.0264, 0.7803, 0.4495, 1.0195, 0.8057, 0.4495, 1.0195, 0.8057, 0.4756, 1.0264, 0.7803, 0.4692, 1.0137, 0.8003, 0.4111, 1.041, 0.7881, 0.4326, 1.04, 0.7876, 0.4111, 1.0234, 0.8101, 0.4111, 1.0234, 0.8101, 0.4326, 1.04, 0.7876, 0.4307, 1.0225, 0.8091, 0.3689, 1.0352, 0.7847, 0.3896, 1.04, 0.7876, 0.373, 1.0195, 0.8057, 0.373, 1.0195, 0.8057, 0.3896, 1.04, 0.7876, 0.3918, 1.0225, 0.8091, 0.3271, 1.0137, 0.7744, 0.3469, 1.0264, 0.7803, 0.3347, 1.0068, 0.7925, 0.3347, 1.0068, 0.7925, 0.3469, 1.0264, 0.7803, 0.3533, 1.0137, 0.8003, 0.3469, 1.0264, 0.7803, 0.3689, 1.0352, 0.7847, 0.3533, 1.0137, 0.8003, 0.3533, 1.0137, 0.8003, 0.3689, 1.0352, 0.7847, 0.373, 1.0195, 0.8057, 0.3428, 1.0352, 0.7588, 0.3665, 1.0459, 0.7612, 0.3469, 1.0264, 0.7803, 0.3469, 1.0264, 0.7803, 0.3665, 1.0459, 0.7612, 0.3689, 1.0352, 0.7847, 0.3215, 1.0195, 0.7544, 0.3428, 1.0352, 0.7588, 0.3271, 1.0137, 0.7744, 0.3271, 1.0137, 0.7744, 0.3428, 1.0352, 0.7588, 0.3469, 1.0264, 0.7803, 0.3896, 1.04, 0.7876, 0.4111, 1.041, 0.7881, 0.3918, 1.0225, 0.8091, 0.3918, 1.0225, 0.8091, 0.4111, 1.041, 0.7881, 0.4111, 1.0234, 0.8101, 0.3884, 1.0518, 0.7627, 0.4111, 1.0537, 0.7632, 0.3896, 1.04, 0.7876, 0.3896, 1.04, 0.7876, 0.4111, 1.0537, 0.7632, 0.4111, 1.041, 0.7881, 0.3665, 1.0459, 0.7612, 0.3884, 1.0518, 0.7627, 0.3689, 1.0352, 0.7847, 0.3689, 1.0352, 0.7847, 0.3884, 1.0518, 0.7627, 0.3896, 1.04, 0.7876, 0.4326, 1.04, 0.7876, 0.4536, 1.0352, 0.7847, 0.4307, 1.0225, 0.8091, 0.4307, 1.0225, 0.8091, 0.4536, 1.0352, 0.7847, 0.4495, 1.0195, 0.8057, 0.4341, 1.0518, 0.7627, 0.4561, 1.0459, 0.7612, 0.4326, 1.04, 0.7876, 0.4326, 1.04, 0.7876, 0.4561, 1.0459, 0.7612, 0.4536, 1.0352, 0.7847, 0.4111, 1.0537, 0.7632, 0.4341, 1.0518, 0.7627, 0.4111, 1.041, 0.7881, 0.4111, 1.041, 0.7881, 0.4341, 1.0518, 0.7627, 0.4326, 1.04, 0.7876, 0.4756, 1.0264, 0.7803, 0.4954, 1.0137, 0.7744, 0.4692, 1.0137, 0.8003, 0.4692, 1.0137, 0.8003, 0.4954, 1.0137, 0.7744, 0.4875, 1.0068, 0.7925, 0.4797, 1.0352, 0.7588, 0.5005, 1.0195, 0.7544, 0.4756, 1.0264, 0.7803, 0.4756, 1.0264, 0.7803, 0.5005, 1.0195, 0.7544, 0.4954, 1.0137, 0.7744, 0.4561, 1.0459, 0.7612, 0.4797, 1.0352, 0.7588, 0.4536, 1.0352, 0.7847, 0.4536, 1.0352, 0.7847, 0.4797, 1.0352, 0.7588, 0.4756, 1.0264, 0.7803, 0.3401, 1.04, 0.7378, 0.3647, 1.0518, 0.7393, 0.3428, 1.0352, 0.7588, 0.3428, 1.0352, 0.7588, 0.3647, 1.0518, 0.7393, 0.3665, 1.0459, 0.7612, 0.3394, 1.041, 0.7163, 0.3645, 1.0537, 0.7163, 0.3401, 1.04, 0.7378, 0.3401, 1.04, 0.7378, 0.3645, 1.0537, 0.7163, 0.3647, 1.0518, 0.7393, 0.3176, 1.0234, 0.7163, 0.3394, 1.041, 0.7163, 0.3186, 1.0225, 0.7358, 0.3186, 1.0225, 0.7358, 0.3394, 1.041, 0.7163, 0.3401, 1.04, 0.7378, 0.3877, 1.0586, 0.7397, 0.4111, 1.0605, 0.7402, 0.3884, 1.0518, 0.7627, 0.3884, 1.0518, 0.7627, 0.4111, 1.0605, 0.7402, 0.4111, 1.0537, 0.7632, 0.3875, 1.0605, 0.7163, 0.4111, 1.0625, 0.7163, 0.3877, 1.0586, 0.7397, 0.3877, 1.0586, 0.7397, 0.4111, 1.0625, 0.7163, 0.4111, 1.0605, 0.7402, 0.3645, 1.0537, 0.7163, 0.3875, 1.0605, 0.7163, 0.3647, 1.0518, 0.7393, 0.3647, 1.0518, 0.7393, 0.3875, 1.0605, 0.7163, 0.3877, 1.0586, 0.7397, 0.4348, 1.0586, 0.7397, 0.4578, 1.0518, 0.7393, 0.4341, 1.0518, 0.7627, 0.4341, 1.0518, 0.7627, 0.4578, 1.0518, 0.7393, 0.4561, 1.0459, 0.7612, 0.4351, 1.0605, 0.7163, 0.458, 1.0537, 0.7163, 0.4348, 1.0586, 0.7397, 0.4348, 1.0586, 0.7397, 0.458, 1.0537, 0.7163, 0.4578, 1.0518, 0.7393, 0.4111, 1.0625, 0.7163, 0.4351, 1.0605, 0.7163, 0.4111, 1.0605, 0.7402, 0.4111, 1.0605, 0.7402, 0.4351, 1.0605, 0.7163, 0.4348, 1.0586, 0.7397, 0.4824, 1.04, 0.7378, 0.5039, 1.0225, 0.7358, 0.4797, 1.0352, 0.7588, 0.4797, 1.0352, 0.7588, 0.5039, 1.0225, 0.7358, 0.5005, 1.0195, 0.7544, 0.4829, 1.041, 0.7163, 0.5049, 1.0234, 0.7163, 0.4824, 1.04, 0.7378, 0.4824, 1.04, 0.7378, 0.5049, 1.0234, 0.7163, 0.5039, 1.0225, 0.7358, 0.458, 1.0537, 0.7163, 0.4829, 1.041, 0.7163, 0.4578, 1.0518, 0.7393, 0.4578, 1.0518, 0.7393, 0.4829, 1.041, 0.7163, 0.4824, 1.04, 0.7378, 0.3401, 1.04, 0.6948, 0.3647, 1.0518, 0.6934, 0.3394, 1.041, 0.7163, 0.3394, 1.041, 0.7163, 0.3647, 1.0518, 0.6934, 0.3645, 1.0537, 0.7163, 0.3428, 1.0352, 0.6738, 0.3665, 1.0459, 0.6714, 0.3401, 1.04, 0.6948, 0.3401, 1.04, 0.6948, 0.3665, 1.0459, 0.6714, 0.3647, 1.0518, 0.6934, 0.3215, 1.0195, 0.6782, 0.3428, 1.0352, 0.6738, 0.3186, 1.0225, 0.6968, 0.3186, 1.0225, 0.6968, 0.3428, 1.0352, 0.6738, 0.3401, 1.04, 0.6948, 0.3877, 1.0586, 0.6929, 0.4111, 1.0605, 0.6924, 0.3875, 1.0605, 0.7163, 0.3875, 1.0605, 0.7163, 0.4111, 1.0605, 0.6924, 0.4111, 1.0625, 0.7163, 0.3884, 1.0518, 0.6699, 0.4111, 1.0537, 0.6694, 0.3877, 1.0586, 0.6929, 0.3877, 1.0586, 0.6929, 0.4111, 1.0537, 0.6694, 0.4111, 1.0605, 0.6924, 0.3665, 1.0459, 0.6714, 0.3884, 1.0518, 0.6699, 0.3647, 1.0518, 0.6934, 0.3647, 1.0518, 0.6934, 0.3884, 1.0518, 0.6699, 0.3877, 1.0586, 0.6929, 0.4348, 1.0586, 0.6929, 0.4578, 1.0518, 0.6934, 0.4351, 1.0605, 0.7163, 0.4351, 1.0605, 0.7163, 0.4578, 1.0518, 0.6934, 0.458, 1.0537, 0.7163, 0.4341, 1.0518, 0.6699, 0.4561, 1.0459, 0.6714, 0.4348, 1.0586, 0.6929, 0.4348, 1.0586, 0.6929, 0.4561, 1.0459, 0.6714, 0.4578, 1.0518, 0.6934, 0.4111, 1.0537, 0.6694, 0.4341, 1.0518, 0.6699, 0.4111, 1.0605, 0.6924, 0.4111, 1.0605, 0.6924, 0.4341, 1.0518, 0.6699, 0.4348, 1.0586, 0.6929, 0.4824, 1.04, 0.6948, 0.5039, 1.0225, 0.6968, 0.4829, 1.041, 0.7163, 0.4829, 1.041, 0.7163, 0.5039, 1.0225, 0.6968, 0.5049, 1.0234, 0.7163, 0.4797, 1.0352, 0.6738, 0.5005, 1.0195, 0.6782, 0.4824, 1.04, 0.6948, 0.4824, 1.04, 0.6948, 0.5005, 1.0195, 0.6782, 0.5039, 1.0225, 0.6968, 0.4561, 1.0459, 0.6714, 0.4797, 1.0352, 0.6738, 0.4578, 1.0518, 0.6934, 0.4578, 1.0518, 0.6934, 0.4797, 1.0352, 0.6738, 0.4824, 1.04, 0.6948, 0.3469, 1.0264, 0.6519, 0.3689, 1.0352, 0.6479, 0.3428, 1.0352, 0.6738, 0.3428, 1.0352, 0.6738, 0.3689, 1.0352, 0.6479, 0.3665, 1.0459, 0.6714, 0.3533, 1.0137, 0.6323, 0.373, 1.0195, 0.6265, 0.3469, 1.0264, 0.6519, 0.3469, 1.0264, 0.6519, 0.373, 1.0195, 0.6265, 0.3689, 1.0352, 0.6479, 0.3347, 1.0068, 0.6396, 0.3533, 1.0137, 0.6323, 0.3271, 1.0137, 0.6582, 0.3271, 1.0137, 0.6582, 0.3533, 1.0137, 0.6323, 0.3469, 1.0264, 0.6519, 0.3896, 1.04, 0.645, 0.4111, 1.041, 0.6445, 0.3884, 1.0518, 0.6699, 0.3884, 1.0518, 0.6699, 0.4111, 1.041, 0.6445, 0.4111, 1.0537, 0.6694, 0.3918, 1.0225, 0.6235, 0.4111, 1.0234, 0.6226, 0.3896, 1.04, 0.645, 0.3896, 1.04, 0.645, 0.4111, 1.0234, 0.6226, 0.4111, 1.041, 0.6445, 0.373, 1.0195, 0.6265, 0.3918, 1.0225, 0.6235, 0.3689, 1.0352, 0.6479, 0.3689, 1.0352, 0.6479, 0.3918, 1.0225, 0.6235, 0.3896, 1.04, 0.645, 0.4326, 1.04, 0.645, 0.4536, 1.0352, 0.6479, 0.4341, 1.0518, 0.6699, 0.4341, 1.0518, 0.6699, 0.4536, 1.0352, 0.6479, 0.4561, 1.0459, 0.6714, 0.4307, 1.0225, 0.6235, 0.4495, 1.0195, 0.6265, 0.4326, 1.04, 0.645, 0.4326, 1.04, 0.645, 0.4495, 1.0195, 0.6265, 0.4536, 1.0352, 0.6479, 0.4111, 1.0234, 0.6226, 0.4307, 1.0225, 0.6235, 0.4111, 1.041, 0.6445, 0.4111, 1.041, 0.6445, 0.4307, 1.0225, 0.6235, 0.4326, 1.04, 0.645, 0.4756, 1.0264, 0.6519, 0.4954, 1.0137, 0.6582, 0.4797, 1.0352, 0.6738, 0.4797, 1.0352, 0.6738, 0.4954, 1.0137, 0.6582, 0.5005, 1.0195, 0.6782, 0.4692, 1.0137, 0.6323, 0.4875, 1.0068, 0.6396, 0.4756, 1.0264, 0.6519, 0.4756, 1.0264, 0.6519, 0.4875, 1.0068, 0.6396, 0.4954, 1.0137, 0.6582, 0.4495, 1.0195, 0.6265, 0.4692, 1.0137, 0.6323, 0.4536, 1.0352, 0.6479, 0.4536, 1.0352, 0.6479, 0.4692, 1.0137, 0.6323, 0.4756, 1.0264, 0.6519, 0.3469, 0.8345, 0.6519, 0.3689, 0.8252, 0.6479, 0.3533, 0.8462, 0.6323, 0.3533, 0.8462, 0.6323, 0.3689, 0.8252, 0.6479, 0.373, 0.8408, 0.6265, 0.3428, 0.8252, 0.6738, 0.3665, 0.814, 0.6714, 0.3469, 0.8345, 0.6519, 0.3469, 0.8345, 0.6519, 0.3665, 0.814, 0.6714, 0.3689, 0.8252, 0.6479, 0.3215, 0.8408, 0.6782, 0.3428, 0.8252, 0.6738, 0.3271, 0.8462, 0.6582, 0.3271, 0.8462, 0.6582, 0.3428, 0.8252, 0.6738, 0.3469, 0.8345, 0.6519, 0.3896, 0.8208, 0.645, 0.4111, 0.8193, 0.6445, 0.3918, 0.8379, 0.6235, 0.3918, 0.8379, 0.6235, 0.4111, 0.8193, 0.6445, 0.4111, 0.8369, 0.6226, 0.3884, 0.8086, 0.6699, 0.4111, 0.8066, 0.6694, 0.3896, 0.8208, 0.645, 0.3896, 0.8208, 0.645, 0.4111, 0.8066, 0.6694, 0.4111, 0.8193, 0.6445, 0.3665, 0.814, 0.6714, 0.3884, 0.8086, 0.6699, 0.3689, 0.8252, 0.6479, 0.3689, 0.8252, 0.6479, 0.3884, 0.8086, 0.6699, 0.3896, 0.8208, 0.645, 0.4326, 0.8208, 0.645, 0.4536, 0.8252, 0.6479, 0.4307, 0.8379, 0.6235, 0.4307, 0.8379, 0.6235, 0.4536, 0.8252, 0.6479, 0.4495, 0.8408, 0.6265, 0.4341, 0.8086, 0.6699, 0.4561, 0.814, 0.6714, 0.4326, 0.8208, 0.645, 0.4326, 0.8208, 0.645, 0.4561, 0.814, 0.6714, 0.4536, 0.8252, 0.6479, 0.4111, 0.8066, 0.6694, 0.4341, 0.8086, 0.6699, 0.4111, 0.8193, 0.6445, 0.4111, 0.8193, 0.6445, 0.4341, 0.8086, 0.6699, 0.4326, 0.8208, 0.645, 0.4756, 0.8345, 0.6519, 0.4954, 0.8462, 0.6582, 0.4692, 0.8462, 0.6323, 0.4692, 0.8462, 0.6323, 0.4954, 0.8462, 0.6582, 0.4875, 0.854, 0.6396, 0.4797, 0.8252, 0.6738, 0.5005, 0.8408, 0.6782, 0.4756, 0.8345, 0.6519, 0.4756, 0.8345, 0.6519, 0.5005, 0.8408, 0.6782, 0.4954, 0.8462, 0.6582, 0.4561, 0.814, 0.6714, 0.4797, 0.8252, 0.6738, 0.4536, 0.8252, 0.6479, 0.4536, 0.8252, 0.6479, 0.4797, 0.8252, 0.6738, 0.4756, 0.8345, 0.6519, 0.3401, 0.8208, 0.6948, 0.3647, 0.8086, 0.6934, 0.3428, 0.8252, 0.6738, 0.3428, 0.8252, 0.6738, 0.3647, 0.8086, 0.6934, 0.3665, 0.814, 0.6714, 0.3394, 0.8193, 0.7163, 0.3645, 0.8066, 0.7163, 0.3401, 0.8208, 0.6948, 0.3401, 0.8208, 0.6948, 0.3645, 0.8066, 0.7163, 0.3647, 0.8086, 0.6934, 0.3176, 0.8369, 0.7163, 0.3394, 0.8193, 0.7163, 0.3186, 0.8379, 0.6968, 0.3186, 0.8379, 0.6968, 0.3394, 0.8193, 0.7163, 0.3401, 0.8208, 0.6948, 0.3877, 0.8022, 0.6929, 0.4111, 0.8003, 0.6924, 0.3884, 0.8086, 0.6699, 0.3884, 0.8086, 0.6699, 0.4111, 0.8003, 0.6924, 0.4111, 0.8066, 0.6694, 0.3875, 0.8003, 0.7163, 0.4111, 0.7979, 0.7163, 0.3877, 0.8022, 0.6929, 0.3877, 0.8022, 0.6929, 0.4111, 0.7979, 0.7163, 0.4111, 0.8003, 0.6924, 0.3645, 0.8066, 0.7163, 0.3875, 0.8003, 0.7163, 0.3647, 0.8086, 0.6934, 0.3647, 0.8086, 0.6934, 0.3875, 0.8003, 0.7163, 0.3877, 0.8022, 0.6929, 0.4348, 0.8022, 0.6929, 0.4578, 0.8086, 0.6934, 0.4341, 0.8086, 0.6699, 0.4341, 0.8086, 0.6699, 0.4578, 0.8086, 0.6934, 0.4561, 0.814, 0.6714, 0.4351, 0.8003, 0.7163, 0.458, 0.8066, 0.7163, 0.4348, 0.8022, 0.6929, 0.4348, 0.8022, 0.6929, 0.458, 0.8066, 0.7163, 0.4578, 0.8086, 0.6934, 0.4111, 0.7979, 0.7163, 0.4351, 0.8003, 0.7163, 0.4111, 0.8003, 0.6924, 0.4111, 0.8003, 0.6924, 0.4351, 0.8003, 0.7163, 0.4348, 0.8022, 0.6929, 0.4824, 0.8208, 0.6948, 0.5039, 0.8379, 0.6968, 0.4797, 0.8252, 0.6738, 0.4797, 0.8252, 0.6738, 0.5039, 0.8379, 0.6968, 0.5005, 0.8408, 0.6782, 0.4829, 0.8193, 0.7163, 0.5049, 0.8369, 0.7163, 0.4824, 0.8208, 0.6948, 0.4824, 0.8208, 0.6948, 0.5049, 0.8369, 0.7163, 0.5039, 0.8379, 0.6968, 0.458, 0.8066, 0.7163, 0.4829, 0.8193, 0.7163, 0.4578, 0.8086, 0.6934, 0.4578, 0.8086, 0.6934, 0.4829, 0.8193, 0.7163, 0.4824, 0.8208, 0.6948, 0.3401, 0.8208, 0.7378, 0.3647, 0.8086, 0.7393, 0.3394, 0.8193, 0.7163, 0.3394, 0.8193, 0.7163, 0.3647, 0.8086, 0.7393, 0.3645, 0.8066, 0.7163, 0.3428, 0.8252, 0.7588, 0.3665, 0.814, 0.7612, 0.3401, 0.8208, 0.7378, 0.3401, 0.8208, 0.7378, 0.3665, 0.814, 0.7612, 0.3647, 0.8086, 0.7393, 0.3215, 0.8408, 0.7544, 0.3428, 0.8252, 0.7588, 0.3186, 0.8379, 0.7358, 0.3186, 0.8379, 0.7358, 0.3428, 0.8252, 0.7588, 0.3401, 0.8208, 0.7378, 0.3877, 0.8022, 0.7397, 0.4111, 0.8003, 0.7402, 0.3875, 0.8003, 0.7163, 0.3875, 0.8003, 0.7163, 0.4111, 0.8003, 0.7402, 0.4111, 0.7979, 0.7163, 0.3884, 0.8086, 0.7627, 0.4111, 0.8066, 0.7632, 0.3877, 0.8022, 0.7397, 0.3877, 0.8022, 0.7397, 0.4111, 0.8066, 0.7632, 0.4111, 0.8003, 0.7402, 0.3665, 0.814, 0.7612, 0.3884, 0.8086, 0.7627, 0.3647, 0.8086, 0.7393, 0.3647, 0.8086, 0.7393, 0.3884, 0.8086, 0.7627, 0.3877, 0.8022, 0.7397, 0.4348, 0.8022, 0.7397, 0.4578, 0.8086, 0.7393, 0.4351, 0.8003, 0.7163, 0.4351, 0.8003, 0.7163, 0.4578, 0.8086, 0.7393, 0.458, 0.8066, 0.7163, 0.4341, 0.8086, 0.7627, 0.4561, 0.814, 0.7612, 0.4348, 0.8022, 0.7397, 0.4348, 0.8022, 0.7397, 0.4561, 0.814, 0.7612, 0.4578, 0.8086, 0.7393, 0.4111, 0.8066, 0.7632, 0.4341, 0.8086, 0.7627, 0.4111, 0.8003, 0.7402, 0.4111, 0.8003, 0.7402, 0.4341, 0.8086, 0.7627, 0.4348, 0.8022, 0.7397, 0.4824, 0.8208, 0.7378, 0.5039, 0.8379, 0.7358, 0.4829, 0.8193, 0.7163, 0.4829, 0.8193, 0.7163, 0.5039, 0.8379, 0.7358, 0.5049, 0.8369, 0.7163, 0.4797, 0.8252, 0.7588, 0.5005, 0.8408, 0.7544, 0.4824, 0.8208, 0.7378, 0.4824, 0.8208, 0.7378, 0.5005, 0.8408, 0.7544, 0.5039, 0.8379, 0.7358, 0.4561, 0.814, 0.7612, 0.4797, 0.8252, 0.7588, 0.4578, 0.8086, 0.7393, 0.4578, 0.8086, 0.7393, 0.4797, 0.8252, 0.7588, 0.4824, 0.8208, 0.7378, 0.3469, 0.8345, 0.7803, 0.3689, 0.8252, 0.7847, 0.3428, 0.8252, 0.7588, 0.3428, 0.8252, 0.7588, 0.3689, 0.8252, 0.7847, 0.3665, 0.814, 0.7612, 0.3533, 0.8462, 0.8003, 0.373, 0.8408, 0.8057, 0.3469, 0.8345, 0.7803, 0.3469, 0.8345, 0.7803, 0.373, 0.8408, 0.8057, 0.3689, 0.8252, 0.7847, 0.3347, 0.854, 0.7925, 0.3533, 0.8462, 0.8003, 0.3271, 0.8462, 0.7744, 0.3271, 0.8462, 0.7744, 0.3533, 0.8462, 0.8003, 0.3469, 0.8345, 0.7803, 0.3896, 0.8208, 0.7876, 0.4111, 0.8193, 0.7881, 0.3884, 0.8086, 0.7627, 0.3884, 0.8086, 0.7627, 0.4111, 0.8193, 0.7881, 0.4111, 0.8066, 0.7632, 0.3918, 0.8379, 0.8091, 0.4111, 0.8369, 0.8101, 0.3896, 0.8208, 0.7876, 0.3896, 0.8208, 0.7876, 0.4111, 0.8369, 0.8101, 0.4111, 0.8193, 0.7881, 0.373, 0.8408, 0.8057, 0.3918, 0.8379, 0.8091, 0.3689, 0.8252, 0.7847, 0.3689, 0.8252, 0.7847, 0.3918, 0.8379, 0.8091, 0.3896, 0.8208, 0.7876, 0.4326, 0.8208, 0.7876, 0.4536, 0.8252, 0.7847, 0.4341, 0.8086, 0.7627, 0.4341, 0.8086, 0.7627, 0.4536, 0.8252, 0.7847, 0.4561, 0.814, 0.7612, 0.4307, 0.8379, 0.8091, 0.4495, 0.8408, 0.8057, 0.4326, 0.8208, 0.7876, 0.4326, 0.8208, 0.7876, 0.4495, 0.8408, 0.8057, 0.4536, 0.8252, 0.7847, 0.4111, 0.8369, 0.8101, 0.4307, 0.8379, 0.8091, 0.4111, 0.8193, 0.7881, 0.4111, 0.8193, 0.7881, 0.4307, 0.8379, 0.8091, 0.4326, 0.8208, 0.7876, 0.4756, 0.8345, 0.7803, 0.4954, 0.8462, 0.7744, 0.4797, 0.8252, 0.7588, 0.4797, 0.8252, 0.7588, 0.4954, 0.8462, 0.7744, 0.5005, 0.8408, 0.7544, 0.4692, 0.8462, 0.8003, 0.4875, 0.854, 0.7925, 0.4756, 0.8345, 0.7803, 0.4756, 0.8345, 0.7803, 0.4875, 0.854, 0.7925, 0.4954, 0.8462, 0.7744, 0.4495, 0.8408, 0.8057, 0.4692, 0.8462, 0.8003, 0.4536, 0.8252, 0.7847, 0.4536, 0.8252, 0.7847, 0.4692, 0.8462, 0.8003, 0.4756, 0.8345, 0.7803, 0.5073, 0.9946, 0.6519, 0.5161, 0.999, 0.6738, 0.4954, 1.0137, 0.6582, 0.4954, 1.0137, 0.6582, 0.5161, 0.999, 0.6738, 0.5005, 1.0195, 0.6782, 0.5161, 0.9727, 0.6479, 0.5273, 0.9751, 0.6714, 0.5073, 0.9946, 0.6519, 0.5073, 0.9946, 0.6519, 0.5273, 0.9751, 0.6714, 0.5161, 0.999, 0.6738, 0.5005, 0.9688, 0.6265, 0.5161, 0.9727, 0.6479, 0.4954, 0.9883, 0.6323, 0.4954, 0.9883, 0.6323, 0.5161, 0.9727, 0.6479, 0.5073, 0.9946, 0.6519, 0.5205, 1.001, 0.6948, 0.5225, 1.002, 0.7163, 0.5039, 1.0225, 0.6968, 0.5039, 1.0225, 0.6968, 0.5225, 1.002, 0.7163, 0.5049, 1.0234, 0.7163, 0.5327, 0.9771, 0.6934, 0.5347, 0.9771, 0.7163, 0.5205, 1.001, 0.6948, 0.5205, 1.001, 0.6948, 0.5347, 0.9771, 0.7163, 0.5225, 1.002, 0.7163, 0.5273, 0.9751, 0.6714, 0.5327, 0.9771, 0.6934, 0.5161, 0.999, 0.6738, 0.5161, 0.999, 0.6738, 0.5327, 0.9771, 0.6934, 0.5205, 1.001, 0.6948, 0.5205, 1.001, 0.7378, 0.5161, 0.999, 0.7588, 0.5039, 1.0225, 0.7358, 0.5039, 1.0225, 0.7358, 0.5161, 0.999, 0.7588, 0.5005, 1.0195, 0.7544, 0.5327, 0.9771, 0.7393, 0.5273, 0.9751, 0.7612, 0.5205, 1.001, 0.7378, 0.5205, 1.001, 0.7378, 0.5273, 0.9751, 0.7612, 0.5161, 0.999, 0.7588, 0.5347, 0.9771, 0.7163, 0.5327, 0.9771, 0.7393, 0.5225, 1.002, 0.7163, 0.5225, 1.002, 0.7163, 0.5327, 0.9771, 0.7393, 0.5205, 1.001, 0.7378, 0.5073, 0.9946, 0.7808, 0.4954, 0.9883, 0.8003, 0.4954, 1.0137, 0.7744, 0.4954, 1.0137, 0.7744, 0.4954, 0.9883, 0.8003, 0.4875, 1.0068, 0.7925, 0.5161, 0.9727, 0.7847, 0.5005, 0.9688, 0.8057, 0.5073, 0.9946, 0.7808, 0.5073, 0.9946, 0.7808, 0.5005, 0.9688, 0.8057, 0.4954, 0.9883, 0.8003, 0.5273, 0.9751, 0.7612, 0.5161, 0.9727, 0.7847, 0.5161, 0.999, 0.7588, 0.5161, 0.999, 0.7588, 0.5161, 0.9727, 0.7847, 0.5073, 0.9946, 0.7808, 0.5205, 0.9517, 0.645, 0.5327, 0.9531, 0.6699, 0.5161, 0.9727, 0.6479, 0.5161, 0.9727, 0.6479, 0.5327, 0.9531, 0.6699, 0.5273, 0.9751, 0.6714, 0.5225, 0.9302, 0.6445, 0.5347, 0.9302, 0.6694, 0.5205, 0.9517, 0.645, 0.5205, 0.9517, 0.645, 0.5347, 0.9302, 0.6694, 0.5327, 0.9531, 0.6699, 0.5049, 0.9302, 0.6226, 0.5225, 0.9302, 0.6445, 0.5039, 0.9497, 0.6235, 0.5039, 0.9497, 0.6235, 0.5225, 0.9302, 0.6445, 0.5205, 0.9517, 0.645, 0.5391, 0.9541, 0.6929, 0.5415, 0.9541, 0.7163, 0.5327, 0.9771, 0.6934, 0.5327, 0.9771, 0.6934, 0.5415, 0.9541, 0.7163, 0.5347, 0.9771, 0.7163, 0.5415, 0.9302, 0.6924, 0.5435, 0.9302, 0.7163, 0.5391, 0.9541, 0.6929, 0.5391, 0.9541, 0.6929, 0.5435, 0.9302, 0.7163, 0.5415, 0.9541, 0.7163, 0.5347, 0.9302, 0.6694, 0.5415, 0.9302, 0.6924, 0.5327, 0.9531, 0.6699, 0.5327, 0.9531, 0.6699, 0.5415, 0.9302, 0.6924, 0.5391, 0.9541, 0.6929, 0.5391, 0.9541, 0.7397, 0.5327, 0.9531, 0.7627, 0.5327, 0.9771, 0.7393, 0.5327, 0.9771, 0.7393, 0.5327, 0.9531, 0.7627, 0.5273, 0.9751, 0.7612, 0.5415, 0.9302, 0.7402, 0.5347, 0.9302, 0.7632, 0.5391, 0.9541, 0.7397, 0.5391, 0.9541, 0.7397, 0.5347, 0.9302, 0.7632, 0.5327, 0.9531, 0.7627, 0.5435, 0.9302, 0.7163, 0.5415, 0.9302, 0.7402, 0.5415, 0.9541, 0.7163, 0.5415, 0.9541, 0.7163, 0.5415, 0.9302, 0.7402, 0.5391, 0.9541, 0.7397, 0.5205, 0.9517, 0.7876, 0.5039, 0.9497, 0.8091, 0.5161, 0.9727, 0.7847, 0.5161, 0.9727, 0.7847, 0.5039, 0.9497, 0.8091, 0.5005, 0.9688, 0.8057, 0.5225, 0.9302, 0.7881, 0.5049, 0.9302, 0.8101, 0.5205, 0.9517, 0.7876, 0.5205, 0.9517, 0.7876, 0.5049, 0.9302, 0.8101, 0.5039, 0.9497, 0.8091, 0.5347, 0.9302, 0.7632, 0.5225, 0.9302, 0.7881, 0.5327, 0.9531, 0.7627, 0.5327, 0.9531, 0.7627, 0.5225, 0.9302, 0.7881, 0.5205, 0.9517, 0.7876, 0.5205, 0.9087, 0.645, 0.5327, 0.9077, 0.6699, 0.5225, 0.9302, 0.6445, 0.5225, 0.9302, 0.6445, 0.5327, 0.9077, 0.6699, 0.5347, 0.9302, 0.6694, 0.5161, 0.8882, 0.6479, 0.5273, 0.8857, 0.6714, 0.5205, 0.9087, 0.645, 0.5205, 0.9087, 0.645, 0.5273, 0.8857, 0.6714, 0.5327, 0.9077, 0.6699, 0.5005, 0.8921, 0.6265, 0.5161, 0.8882, 0.6479, 0.5039, 0.9111, 0.6235, 0.5039, 0.9111, 0.6235, 0.5161, 0.8882, 0.6479, 0.5205, 0.9087, 0.645, 0.5391, 0.9067, 0.6929, 0.5415, 0.9067, 0.7163, 0.5415, 0.9302, 0.6924, 0.5415, 0.9302, 0.6924, 0.5415, 0.9067, 0.7163, 0.5435, 0.9302, 0.7163, 0.5327, 0.8838, 0.6934, 0.5347, 0.8833, 0.7163, 0.5391, 0.9067, 0.6929, 0.5391, 0.9067, 0.6929, 0.5347, 0.8833, 0.7163, 0.5415, 0.9067, 0.7163, 0.5273, 0.8857, 0.6714, 0.5327, 0.8838, 0.6934, 0.5327, 0.9077, 0.6699, 0.5327, 0.9077, 0.6699, 0.5327, 0.8838, 0.6934, 0.5391, 0.9067, 0.6929, 0.5391, 0.9067, 0.7397, 0.5327, 0.9077, 0.7627, 0.5415, 0.9302, 0.7402, 0.5415, 0.9302, 0.7402, 0.5327, 0.9077, 0.7627, 0.5347, 0.9302, 0.7632, 0.5327, 0.8838, 0.7393, 0.5273, 0.8857, 0.7612, 0.5391, 0.9067, 0.7397, 0.5391, 0.9067, 0.7397, 0.5273, 0.8857, 0.7612, 0.5327, 0.9077, 0.7627, 0.5347, 0.8833, 0.7163, 0.5327, 0.8838, 0.7393, 0.5415, 0.9067, 0.7163, 0.5415, 0.9067, 0.7163, 0.5327, 0.8838, 0.7393, 0.5391, 0.9067, 0.7397, 0.5205, 0.9087, 0.7876, 0.5039, 0.9111, 0.8091, 0.5225, 0.9302, 0.7881, 0.5225, 0.9302, 0.7881, 0.5039, 0.9111, 0.8091, 0.5049, 0.9302, 0.8101, 0.5161, 0.8882, 0.7847, 0.5005, 0.8921, 0.8057, 0.5205, 0.9087, 0.7876, 0.5205, 0.9087, 0.7876, 0.5005, 0.8921, 0.8057, 0.5039, 0.9111, 0.8091, 0.5273, 0.8857, 0.7612, 0.5161, 0.8882, 0.7847, 0.5327, 0.9077, 0.7627, 0.5327, 0.9077, 0.7627, 0.5161, 0.8882, 0.7847, 0.5205, 0.9087, 0.7876, 0.5073, 0.8662, 0.6519, 0.5161, 0.8618, 0.6738, 0.5161, 0.8882, 0.6479, 0.5161, 0.8882, 0.6479, 0.5161, 0.8618, 0.6738, 0.5273, 0.8857, 0.6714, 0.4954, 0.8462, 0.6582, 0.5005, 0.8408, 0.6782, 0.5073, 0.8662, 0.6519, 0.5073, 0.8662, 0.6519, 0.5005, 0.8408, 0.6782, 0.5161, 0.8618, 0.6738, 0.4875, 0.854, 0.6396, 0.4954, 0.8462, 0.6582, 0.4954, 0.8721, 0.6323, 0.4954, 0.8721, 0.6323, 0.4954, 0.8462, 0.6582, 0.5073, 0.8662, 0.6519, 0.5205, 0.8594, 0.6948, 0.5225, 0.8584, 0.7163, 0.5327, 0.8838, 0.6934, 0.5327, 0.8838, 0.6934, 0.5225, 0.8584, 0.7163, 0.5347, 0.8833, 0.7163, 0.5039, 0.8379, 0.6968, 0.5049, 0.8369, 0.7163, 0.5205, 0.8594, 0.6948, 0.5205, 0.8594, 0.6948, 0.5049, 0.8369, 0.7163, 0.5225, 0.8584, 0.7163, 0.5005, 0.8408, 0.6782, 0.5039, 0.8379, 0.6968, 0.5161, 0.8618, 0.6738, 0.5161, 0.8618, 0.6738, 0.5039, 0.8379, 0.6968, 0.5205, 0.8594, 0.6948, 0.5205, 0.8594, 0.7378, 0.5161, 0.8618, 0.7588, 0.5327, 0.8838, 0.7393, 0.5327, 0.8838, 0.7393, 0.5161, 0.8618, 0.7588, 0.5273, 0.8857, 0.7612, 0.5039, 0.8379, 0.7358, 0.5005, 0.8408, 0.7544, 0.5205, 0.8594, 0.7378, 0.5205, 0.8594, 0.7378, 0.5005, 0.8408, 0.7544, 0.5161, 0.8618, 0.7588, 0.5049, 0.8369, 0.7163, 0.5039, 0.8379, 0.7358, 0.5225, 0.8584, 0.7163, 0.5225, 0.8584, 0.7163, 0.5039, 0.8379, 0.7358, 0.5205, 0.8594, 0.7378, 0.5073, 0.8662, 0.7808, 0.4954, 0.8721, 0.8003, 0.5161, 0.8882, 0.7847, 0.5161, 0.8882, 0.7847, 0.4954, 0.8721, 0.8003, 0.5005, 0.8921, 0.8057, 0.4954, 0.8462, 0.7744, 0.4875, 0.854, 0.7925, 0.5073, 0.8662, 0.7808, 0.5073, 0.8662, 0.7808, 0.4875, 0.854, 0.7925, 0.4954, 0.8721, 0.8003, 0.5005, 0.8408, 0.7544, 0.4954, 0.8462, 0.7744, 0.5161, 0.8618, 0.7588, 0.5161, 0.8618, 0.7588, 0.4954, 0.8462, 0.7744, 0.5073, 0.8662, 0.7808, 0.4756, 0.9946, 0.8125, 0.4536, 0.999, 0.8213, 0.4692, 1.0137, 0.8003, 0.4692, 1.0137, 0.8003, 0.4536, 0.999, 0.8213, 0.4495, 1.0195, 0.8057, 0.4797, 0.9727, 0.8213, 0.4561, 0.9751, 0.8325, 0.4756, 0.9946, 0.8125, 0.4756, 0.9946, 0.8125, 0.4561, 0.9751, 0.8325, 0.4536, 0.999, 0.8213, 0.5005, 0.9688, 0.8057, 0.4797, 0.9727, 0.8213, 0.4954, 0.9883, 0.8003, 0.4954, 0.9883, 0.8003, 0.4797, 0.9727, 0.8213, 0.4756, 0.9946, 0.8125, 0.4326, 1.001, 0.8257, 0.4111, 1.002, 0.8276, 0.4307, 1.0225, 0.8091, 0.4307, 1.0225, 0.8091, 0.4111, 1.002, 0.8276, 0.4111, 1.0234, 0.8101, 0.4341, 0.9771, 0.8379, 0.4111, 0.9771, 0.8398, 0.4326, 1.001, 0.8257, 0.4326, 1.001, 0.8257, 0.4111, 0.9771, 0.8398, 0.4111, 1.002, 0.8276, 0.4561, 0.9751, 0.8325, 0.4341, 0.9771, 0.8379, 0.4536, 0.999, 0.8213, 0.4536, 0.999, 0.8213, 0.4341, 0.9771, 0.8379, 0.4326, 1.001, 0.8257, 0.3896, 1.001, 0.8257, 0.3689, 0.999, 0.8213, 0.3918, 1.0225, 0.8091, 0.3918, 1.0225, 0.8091, 0.3689, 0.999, 0.8213, 0.373, 1.0195, 0.8057, 0.3884, 0.9771, 0.8379, 0.3665, 0.9751, 0.8325, 0.3896, 1.001, 0.8257, 0.3896, 1.001, 0.8257, 0.3665, 0.9751, 0.8325, 0.3689, 0.999, 0.8213, 0.4111, 0.9771, 0.8398, 0.3884, 0.9771, 0.8379, 0.4111, 1.002, 0.8276, 0.4111, 1.002, 0.8276, 0.3884, 0.9771, 0.8379, 0.3896, 1.001, 0.8257, 0.3469, 0.9946, 0.8125, 0.3271, 0.9883, 0.8003, 0.3533, 1.0137, 0.8003, 0.3533, 1.0137, 0.8003, 0.3271, 0.9883, 0.8003, 0.3347, 1.0068, 0.7925, 0.3428, 0.9727, 0.8213, 0.3215, 0.9688, 0.8057, 0.3469, 0.9946, 0.8125, 0.3469, 0.9946, 0.8125, 0.3215, 0.9688, 0.8057, 0.3271, 0.9883, 0.8003, 0.3665, 0.9751, 0.8325, 0.3428, 0.9727, 0.8213, 0.3689, 0.999, 0.8213, 0.3689, 0.999, 0.8213, 0.3428, 0.9727, 0.8213, 0.3469, 0.9946, 0.8125, 0.4824, 0.9517, 0.8257, 0.4578, 0.9531, 0.8379, 0.4797, 0.9727, 0.8213, 0.4797, 0.9727, 0.8213, 0.4578, 0.9531, 0.8379, 0.4561, 0.9751, 0.8325, 0.4829, 0.9302, 0.8276, 0.458, 0.9302, 0.8398, 0.4824, 0.9517, 0.8257, 0.4824, 0.9517, 0.8257, 0.458, 0.9302, 0.8398, 0.4578, 0.9531, 0.8379, 0.5049, 0.9302, 0.8101, 0.4829, 0.9302, 0.8276, 0.5039, 0.9497, 0.8091, 0.5039, 0.9497, 0.8091, 0.4829, 0.9302, 0.8276, 0.4824, 0.9517, 0.8257, 0.4348, 0.9541, 0.8442, 0.4111, 0.9541, 0.8467, 0.4341, 0.9771, 0.8379, 0.4341, 0.9771, 0.8379, 0.4111, 0.9541, 0.8467, 0.4111, 0.9771, 0.8398, 0.4351, 0.9302, 0.8467, 0.4111, 0.9302, 0.8486, 0.4348, 0.9541, 0.8442, 0.4348, 0.9541, 0.8442, 0.4111, 0.9302, 0.8486, 0.4111, 0.9541, 0.8467, 0.458, 0.9302, 0.8398, 0.4351, 0.9302, 0.8467, 0.4578, 0.9531, 0.8379, 0.4578, 0.9531, 0.8379, 0.4351, 0.9302, 0.8467, 0.4348, 0.9541, 0.8442, 0.3877, 0.9541, 0.8442, 0.3647, 0.9531, 0.8379, 0.3884, 0.9771, 0.8379, 0.3884, 0.9771, 0.8379, 0.3647, 0.9531, 0.8379, 0.3665, 0.9751, 0.8325, 0.3875, 0.9302, 0.8467, 0.3645, 0.9302, 0.8398, 0.3877, 0.9541, 0.8442, 0.3877, 0.9541, 0.8442, 0.3645, 0.9302, 0.8398, 0.3647, 0.9531, 0.8379, 0.4111, 0.9302, 0.8486, 0.3875, 0.9302, 0.8467, 0.4111, 0.9541, 0.8467, 0.4111, 0.9541, 0.8467, 0.3875, 0.9302, 0.8467, 0.3877, 0.9541, 0.8442, 0.3401, 0.9517, 0.8257, 0.3186, 0.9497, 0.8091, 0.3428, 0.9727, 0.8213, 0.3428, 0.9727, 0.8213, 0.3186, 0.9497, 0.8091, 0.3215, 0.9688, 0.8057, 0.3394, 0.9302, 0.8276, 0.3176, 0.9302, 0.8101, 0.3401, 0.9517, 0.8257, 0.3401, 0.9517, 0.8257, 0.3176, 0.9302, 0.8101, 0.3186, 0.9497, 0.8091, 0.3645, 0.9302, 0.8398, 0.3394, 0.9302, 0.8276, 0.3647, 0.9531, 0.8379, 0.3647, 0.9531, 0.8379, 0.3394, 0.9302, 0.8276, 0.3401, 0.9517, 0.8257, 0.4824, 0.9087, 0.8257, 0.4578, 0.9077, 0.8379, 0.4829, 0.9302, 0.8276, 0.4829, 0.9302, 0.8276, 0.4578, 0.9077, 0.8379, 0.458, 0.9302, 0.8398, 0.4797, 0.8882, 0.8213, 0.4561, 0.8857, 0.8325, 0.4824, 0.9087, 0.8257, 0.4824, 0.9087, 0.8257, 0.4561, 0.8857, 0.8325, 0.4578, 0.9077, 0.8379, 0.5005, 0.8921, 0.8057, 0.4797, 0.8882, 0.8213, 0.5039, 0.9111, 0.8091, 0.5039, 0.9111, 0.8091, 0.4797, 0.8882, 0.8213, 0.4824, 0.9087, 0.8257, 0.4348, 0.9067, 0.8442, 0.4111, 0.9067, 0.8467, 0.4351, 0.9302, 0.8467, 0.4351, 0.9302, 0.8467, 0.4111, 0.9067, 0.8467, 0.4111, 0.9302, 0.8486, 0.4341, 0.8838, 0.8379, 0.4111, 0.8833, 0.8398, 0.4348, 0.9067, 0.8442, 0.4348, 0.9067, 0.8442, 0.4111, 0.8833, 0.8398, 0.4111, 0.9067, 0.8467, 0.4561, 0.8857, 0.8325, 0.4341, 0.8838, 0.8379, 0.4578, 0.9077, 0.8379, 0.4578, 0.9077, 0.8379, 0.4341, 0.8838, 0.8379, 0.4348, 0.9067, 0.8442, 0.3877, 0.9067, 0.8442, 0.3647, 0.9077, 0.8379, 0.3875, 0.9302, 0.8467, 0.3875, 0.9302, 0.8467, 0.3647, 0.9077, 0.8379, 0.3645, 0.9302, 0.8398, 0.3884, 0.8838, 0.8379, 0.3665, 0.8857, 0.8325, 0.3877, 0.9067, 0.8442, 0.3877, 0.9067, 0.8442, 0.3665, 0.8857, 0.8325, 0.3647, 0.9077, 0.8379, 0.4111, 0.8833, 0.8398, 0.3884, 0.8838, 0.8379, 0.4111, 0.9067, 0.8467, 0.4111, 0.9067, 0.8467, 0.3884, 0.8838, 0.8379, 0.3877, 0.9067, 0.8442, 0.3401, 0.9087, 0.8257, 0.3186, 0.9111, 0.8091, 0.3394, 0.9302, 0.8276, 0.3394, 0.9302, 0.8276, 0.3186, 0.9111, 0.8091, 0.3176, 0.9302, 0.8101, 0.3428, 0.8882, 0.8213, 0.3215, 0.8921, 0.8057, 0.3401, 0.9087, 0.8257, 0.3401, 0.9087, 0.8257, 0.3215, 0.8921, 0.8057, 0.3186, 0.9111, 0.8091, 0.3665, 0.8857, 0.8325, 0.3428, 0.8882, 0.8213, 0.3647, 0.9077, 0.8379, 0.3647, 0.9077, 0.8379, 0.3428, 0.8882, 0.8213, 0.3401, 0.9087, 0.8257, 0.4756, 0.8662, 0.8125, 0.4536, 0.8618, 0.8213, 0.4797, 0.8882, 0.8213, 0.4797, 0.8882, 0.8213, 0.4536, 0.8618, 0.8213, 0.4561, 0.8857, 0.8325, 0.4692, 0.8462, 0.8003, 0.4495, 0.8408, 0.8057, 0.4756, 0.8662, 0.8125, 0.4756, 0.8662, 0.8125, 0.4495, 0.8408, 0.8057, 0.4536, 0.8618, 0.8213, 0.4875, 0.854, 0.7925, 0.4692, 0.8462, 0.8003, 0.4954, 0.8721, 0.8003, 0.4954, 0.8721, 0.8003, 0.4692, 0.8462, 0.8003, 0.4756, 0.8662, 0.8125, 0.4326, 0.8594, 0.8257, 0.4111, 0.8584, 0.8276, 0.4341, 0.8838, 0.8379, 0.4341, 0.8838, 0.8379, 0.4111, 0.8584, 0.8276, 0.4111, 0.8833, 0.8398, 0.4307, 0.8379, 0.8091, 0.4111, 0.8369, 0.8101, 0.4326, 0.8594, 0.8257, 0.4326, 0.8594, 0.8257, 0.4111, 0.8369, 0.8101, 0.4111, 0.8584, 0.8276, 0.4495, 0.8408, 0.8057, 0.4307, 0.8379, 0.8091, 0.4536, 0.8618, 0.8213, 0.4536, 0.8618, 0.8213, 0.4307, 0.8379, 0.8091, 0.4326, 0.8594, 0.8257, 0.3896, 0.8594, 0.8257, 0.3689, 0.8618, 0.8213, 0.3884, 0.8838, 0.8379, 0.3884, 0.8838, 0.8379, 0.3689, 0.8618, 0.8213, 0.3665, 0.8857, 0.8325, 0.3918, 0.8379, 0.8091, 0.373, 0.8408, 0.8057, 0.3896, 0.8594, 0.8257, 0.3896, 0.8594, 0.8257, 0.373, 0.8408, 0.8057, 0.3689, 0.8618, 0.8213, 0.4111, 0.8369, 0.8101, 0.3918, 0.8379, 0.8091, 0.4111, 0.8584, 0.8276, 0.4111, 0.8584, 0.8276, 0.3918, 0.8379, 0.8091, 0.3896, 0.8594, 0.8257, 0.3469, 0.8662, 0.8125, 0.3271, 0.8721, 0.8003, 0.3428, 0.8882, 0.8213, 0.3428, 0.8882, 0.8213, 0.3271, 0.8721, 0.8003, 0.3215, 0.8921, 0.8057, 0.3533, 0.8462, 0.8003, 0.3347, 0.854, 0.7925, 0.3469, 0.8662, 0.8125, 0.3469, 0.8662, 0.8125, 0.3347, 0.854, 0.7925, 0.3271, 0.8721, 0.8003, 0.373, 0.8408, 0.8057, 0.3533, 0.8462, 0.8003, 0.3689, 0.8618, 0.8213, 0.3689, 0.8618, 0.8213, 0.3533, 0.8462, 0.8003, 0.3469, 0.8662, 0.8125, 0.3152, 0.9946, 0.7808, 0.3064, 0.999, 0.7588, 0.3271, 1.0137, 0.7744, 0.3271, 1.0137, 0.7744, 0.3064, 0.999, 0.7588, 0.3215, 1.0195, 0.7544, 0.3064, 0.9727, 0.7847, 0.2949, 0.9751, 0.7612, 0.3152, 0.9946, 0.7808, 0.3152, 0.9946, 0.7808, 0.2949, 0.9751, 0.7612, 0.3064, 0.999, 0.7588, 0.3215, 0.9688, 0.8057, 0.3064, 0.9727, 0.7847, 0.3271, 0.9883, 0.8003, 0.3271, 0.9883, 0.8003, 0.3064, 0.9727, 0.7847, 0.3152, 0.9946, 0.7808, 0.3018, 1.001, 0.7378, 0.3, 1.002, 0.7163, 0.3186, 1.0225, 0.7358, 0.3186, 1.0225, 0.7358, 0.3, 1.002, 0.7163, 0.3176, 1.0234, 0.7163, 0.2893, 0.9771, 0.7393, 0.2874, 0.9771, 0.7163, 0.3018, 1.001, 0.7378, 0.3018, 1.001, 0.7378, 0.2874, 0.9771, 0.7163, 0.3, 1.002, 0.7163, 0.2949, 0.9751, 0.7612, 0.2893, 0.9771, 0.7393, 0.3064, 0.999, 0.7588, 0.3064, 0.999, 0.7588, 0.2893, 0.9771, 0.7393, 0.3018, 1.001, 0.7378, 0.3018, 1.001, 0.6948, 0.3064, 0.999, 0.6738, 0.3186, 1.0225, 0.6968, 0.3186, 1.0225, 0.6968, 0.3064, 0.999, 0.6738, 0.3215, 1.0195, 0.6782, 0.2893, 0.9771, 0.6934, 0.2949, 0.9751, 0.6714, 0.3018, 1.001, 0.6948, 0.3018, 1.001, 0.6948, 0.2949, 0.9751, 0.6714, 0.3064, 0.999, 0.6738, 0.2874, 0.9771, 0.7163, 0.2893, 0.9771, 0.6934, 0.3, 1.002, 0.7163, 0.3, 1.002, 0.7163, 0.2893, 0.9771, 0.6934, 0.3018, 1.001, 0.6948, 0.3152, 0.9946, 0.6519, 0.3271, 0.9883, 0.6323, 0.3271, 1.0137, 0.6582, 0.3271, 1.0137, 0.6582, 0.3271, 0.9883, 0.6323, 0.3347, 1.0068, 0.6396, 0.3064, 0.9727, 0.6479, 0.3215, 0.9688, 0.6265, 0.3152, 0.9946, 0.6519, 0.3152, 0.9946, 0.6519, 0.3215, 0.9688, 0.6265, 0.3271, 0.9883, 0.6323, 0.2949, 0.9751, 0.6714, 0.3064, 0.9727, 0.6479, 0.3064, 0.999, 0.6738, 0.3064, 0.999, 0.6738, 0.3064, 0.9727, 0.6479, 0.3152, 0.9946, 0.6519, 0.3018, 0.9517, 0.7876, 0.2893, 0.9531, 0.7627, 0.3064, 0.9727, 0.7847, 0.3064, 0.9727, 0.7847, 0.2893, 0.9531, 0.7627, 0.2949, 0.9751, 0.7612, 0.3, 0.9302, 0.7881, 0.2874, 0.9302, 0.7632, 0.3018, 0.9517, 0.7876, 0.3018, 0.9517, 0.7876, 0.2874, 0.9302, 0.7632, 0.2893, 0.9531, 0.7627, 0.3176, 0.9302, 0.8101, 0.3, 0.9302, 0.7881, 0.3186, 0.9497, 0.8091, 0.3186, 0.9497, 0.8091, 0.3, 0.9302, 0.7881, 0.3018, 0.9517, 0.7876, 0.2832, 0.9541, 0.7397, 0.281, 0.9541, 0.7163, 0.2893, 0.9771, 0.7393, 0.2893, 0.9771, 0.7393, 0.281, 0.9541, 0.7163, 0.2874, 0.9771, 0.7163, 0.281, 0.9302, 0.7402, 0.2788, 0.9302, 0.7163, 0.2832, 0.9541, 0.7397, 0.2832, 0.9541, 0.7397, 0.2788, 0.9302, 0.7163, 0.281, 0.9541, 0.7163, 0.2874, 0.9302, 0.7632, 0.281, 0.9302, 0.7402, 0.2893, 0.9531, 0.7627, 0.2893, 0.9531, 0.7627, 0.281, 0.9302, 0.7402, 0.2832, 0.9541, 0.7397, 0.2832, 0.9541, 0.6929, 0.2893, 0.9531, 0.6699, 0.2893, 0.9771, 0.6934, 0.2893, 0.9771, 0.6934, 0.2893, 0.9531, 0.6699, 0.2949, 0.9751, 0.6714, 0.281, 0.9302, 0.6924, 0.2874, 0.9302, 0.6694, 0.2832, 0.9541, 0.6929, 0.2832, 0.9541, 0.6929, 0.2874, 0.9302, 0.6694, 0.2893, 0.9531, 0.6699, 0.2788, 0.9302, 0.7163, 0.281, 0.9302, 0.6924, 0.281, 0.9541, 0.7163, 0.281, 0.9541, 0.7163, 0.281, 0.9302, 0.6924, 0.2832, 0.9541, 0.6929, 0.3018, 0.9517, 0.645, 0.3186, 0.9497, 0.6235, 0.3064, 0.9727, 0.6479, 0.3064, 0.9727, 0.6479, 0.3186, 0.9497, 0.6235, 0.3215, 0.9688, 0.6265, 0.3, 0.9302, 0.6445, 0.3176, 0.9302, 0.6226, 0.3018, 0.9517, 0.645, 0.3018, 0.9517, 0.645, 0.3176, 0.9302, 0.6226, 0.3186, 0.9497, 0.6235, 0.2874, 0.9302, 0.6694, 0.3, 0.9302, 0.6445, 0.2893, 0.9531, 0.6699, 0.2893, 0.9531, 0.6699, 0.3, 0.9302, 0.6445, 0.3018, 0.9517, 0.645, 0.3018, 0.9087, 0.7876, 0.2893, 0.9077, 0.7627, 0.3, 0.9302, 0.7881, 0.3, 0.9302, 0.7881, 0.2893, 0.9077, 0.7627, 0.2874, 0.9302, 0.7632, 0.3064, 0.8882, 0.7847, 0.2949, 0.8857, 0.7612, 0.3018, 0.9087, 0.7876, 0.3018, 0.9087, 0.7876, 0.2949, 0.8857, 0.7612, 0.2893, 0.9077, 0.7627, 0.3215, 0.8921, 0.8057, 0.3064, 0.8882, 0.7847, 0.3186, 0.9111, 0.8091, 0.3186, 0.9111, 0.8091, 0.3064, 0.8882, 0.7847, 0.3018, 0.9087, 0.7876, 0.2832, 0.9067, 0.7397, 0.281, 0.9067, 0.7163, 0.281, 0.9302, 0.7402, 0.281, 0.9302, 0.7402, 0.281, 0.9067, 0.7163, 0.2788, 0.9302, 0.7163, 0.2893, 0.8838, 0.7393, 0.2874, 0.8833, 0.7163, 0.2832, 0.9067, 0.7397, 0.2832, 0.9067, 0.7397, 0.2874, 0.8833, 0.7163, 0.281, 0.9067, 0.7163, 0.2949, 0.8857, 0.7612, 0.2893, 0.8838, 0.7393, 0.2893, 0.9077, 0.7627, 0.2893, 0.9077, 0.7627, 0.2893, 0.8838, 0.7393, 0.2832, 0.9067, 0.7397, 0.2832, 0.9067, 0.6929, 0.2893, 0.9077, 0.6699, 0.281, 0.9302, 0.6924, 0.281, 0.9302, 0.6924, 0.2893, 0.9077, 0.6699, 0.2874, 0.9302, 0.6694, 0.2893, 0.8838, 0.6934, 0.2949, 0.8857, 0.6714, 0.2832, 0.9067, 0.6929, 0.2832, 0.9067, 0.6929, 0.2949, 0.8857, 0.6714, 0.2893, 0.9077, 0.6699, 0.2874, 0.8833, 0.7163, 0.2893, 0.8838, 0.6934, 0.281, 0.9067, 0.7163, 0.281, 0.9067, 0.7163, 0.2893, 0.8838, 0.6934, 0.2832, 0.9067, 0.6929, 0.3018, 0.9087, 0.645, 0.3186, 0.9111, 0.6235, 0.3, 0.9302, 0.6445, 0.3, 0.9302, 0.6445, 0.3186, 0.9111, 0.6235, 0.3176, 0.9302, 0.6226, 0.3064, 0.8882, 0.6479, 0.3215, 0.8921, 0.6265, 0.3018, 0.9087, 0.645, 0.3018, 0.9087, 0.645, 0.3215, 0.8921, 0.6265, 0.3186, 0.9111, 0.6235, 0.2949, 0.8857, 0.6714, 0.3064, 0.8882, 0.6479, 0.2893, 0.9077, 0.6699, 0.2893, 0.9077, 0.6699, 0.3064, 0.8882, 0.6479, 0.3018, 0.9087, 0.645, 0.3152, 0.8662, 0.7808, 0.3064, 0.8618, 0.7588, 0.3064, 0.8882, 0.7847, 0.3064, 0.8882, 0.7847, 0.3064, 0.8618, 0.7588, 0.2949, 0.8857, 0.7612, 0.3271, 0.8462, 0.7744, 0.3215, 0.8408, 0.7544, 0.3152, 0.8662, 0.7808, 0.3152, 0.8662, 0.7808, 0.3215, 0.8408, 0.7544, 0.3064, 0.8618, 0.7588, 0.3347, 0.854, 0.7925, 0.3271, 0.8462, 0.7744, 0.3271, 0.8721, 0.8003, 0.3271, 0.8721, 0.8003, 0.3271, 0.8462, 0.7744, 0.3152, 0.8662, 0.7808, 0.3018, 0.8594, 0.7378, 0.3, 0.8584, 0.7163, 0.2893, 0.8838, 0.7393, 0.2893, 0.8838, 0.7393, 0.3, 0.8584, 0.7163, 0.2874, 0.8833, 0.7163, 0.3186, 0.8379, 0.7358, 0.3176, 0.8369, 0.7163, 0.3018, 0.8594, 0.7378, 0.3018, 0.8594, 0.7378, 0.3176, 0.8369, 0.7163, 0.3, 0.8584, 0.7163, 0.3215, 0.8408, 0.7544, 0.3186, 0.8379, 0.7358, 0.3064, 0.8618, 0.7588, 0.3064, 0.8618, 0.7588, 0.3186, 0.8379, 0.7358, 0.3018, 0.8594, 0.7378, 0.3018, 0.8594, 0.6948, 0.3064, 0.8618, 0.6738, 0.2893, 0.8838, 0.6934, 0.2893, 0.8838, 0.6934, 0.3064, 0.8618, 0.6738, 0.2949, 0.8857, 0.6714, 0.3186, 0.8379, 0.6968, 0.3215, 0.8408, 0.6782, 0.3018, 0.8594, 0.6948, 0.3018, 0.8594, 0.6948, 0.3215, 0.8408, 0.6782, 0.3064, 0.8618, 0.6738, 0.3176, 0.8369, 0.7163, 0.3186, 0.8379, 0.6968, 0.3, 0.8584, 0.7163, 0.3, 0.8584, 0.7163, 0.3186, 0.8379, 0.6968, 0.3018, 0.8594, 0.6948, 0.3152, 0.8662, 0.6519, 0.3271, 0.8721, 0.6323, 0.3064, 0.8882, 0.6479, 0.3064, 0.8882, 0.6479, 0.3271, 0.8721, 0.6323, 0.3215, 0.8921, 0.6265, 0.3271, 0.8462, 0.6582, 0.3347, 0.854, 0.6396, 0.3152, 0.8662, 0.6519, 0.3152, 0.8662, 0.6519, 0.3347, 0.854, 0.6396, 0.3271, 0.8721, 0.6323, 0.3215, 0.8408, 0.6782, 0.3271, 0.8462, 0.6582, 0.3064, 0.8618, 0.6738, 0.3064, 0.8618, 0.6738, 0.3271, 0.8462, 0.6582, 0.3152, 0.8662, 0.6519, 0.3469, 0.9946, 0.6201, 0.3689, 0.999, 0.6113, 0.3533, 1.0137, 0.6323, 0.3533, 1.0137, 0.6323, 0.3689, 0.999, 0.6113, 0.373, 1.0195, 0.6265, 0.3428, 0.9727, 0.6113, 0.3665, 0.9751, 0.6001, 0.3469, 0.9946, 0.6201, 0.3469, 0.9946, 0.6201, 0.3665, 0.9751, 0.6001, 0.3689, 0.999, 0.6113, 0.3215, 0.9688, 0.6265, 0.3428, 0.9727, 0.6113, 0.3271, 0.9883, 0.6323, 0.3271, 0.9883, 0.6323, 0.3428, 0.9727, 0.6113, 0.3469, 0.9946, 0.6201, 0.3896, 1.001, 0.6069, 0.4111, 1.002, 0.605, 0.3918, 1.0225, 0.6235, 0.3918, 1.0225, 0.6235, 0.4111, 1.002, 0.605, 0.4111, 1.0234, 0.6226, 0.3884, 0.9771, 0.5942, 0.4111, 0.9771, 0.5923, 0.3896, 1.001, 0.6069, 0.3896, 1.001, 0.6069, 0.4111, 0.9771, 0.5923, 0.4111, 1.002, 0.605, 0.3665, 0.9751, 0.6001, 0.3884, 0.9771, 0.5942, 0.3689, 0.999, 0.6113, 0.3689, 0.999, 0.6113, 0.3884, 0.9771, 0.5942, 0.3896, 1.001, 0.6069, 0.4326, 1.001, 0.6069, 0.4536, 0.999, 0.6113, 0.4307, 1.0225, 0.6235, 0.4307, 1.0225, 0.6235, 0.4536, 0.999, 0.6113, 0.4495, 1.0195, 0.6265, 0.4341, 0.9771, 0.5942, 0.4561, 0.9751, 0.6001, 0.4326, 1.001, 0.6069, 0.4326, 1.001, 0.6069, 0.4561, 0.9751, 0.6001, 0.4536, 0.999, 0.6113, 0.4111, 0.9771, 0.5923, 0.4341, 0.9771, 0.5942, 0.4111, 1.002, 0.605, 0.4111, 1.002, 0.605, 0.4341, 0.9771, 0.5942, 0.4326, 1.001, 0.6069, 0.4756, 0.9946, 0.6201, 0.4954, 0.9883, 0.6323, 0.4692, 1.0137, 0.6323, 0.4692, 1.0137, 0.6323, 0.4954, 0.9883, 0.6323, 0.4875, 1.0068, 0.6396, 0.4797, 0.9727, 0.6113, 0.5005, 0.9688, 0.6265, 0.4756, 0.9946, 0.6201, 0.4756, 0.9946, 0.6201, 0.5005, 0.9688, 0.6265, 0.4954, 0.9883, 0.6323, 0.4561, 0.9751, 0.6001, 0.4797, 0.9727, 0.6113, 0.4536, 0.999, 0.6113, 0.4536, 0.999, 0.6113, 0.4797, 0.9727, 0.6113, 0.4756, 0.9946, 0.6201, 0.3401, 0.9517, 0.6069, 0.3647, 0.9531, 0.5942, 0.3428, 0.9727, 0.6113, 0.3428, 0.9727, 0.6113, 0.3647, 0.9531, 0.5942, 0.3665, 0.9751, 0.6001, 0.3394, 0.9302, 0.605, 0.3645, 0.9302, 0.5923, 0.3401, 0.9517, 0.6069, 0.3401, 0.9517, 0.6069, 0.3645, 0.9302, 0.5923, 0.3647, 0.9531, 0.5942, 0.3176, 0.9302, 0.6226, 0.3394, 0.9302, 0.605, 0.3186, 0.9497, 0.6235, 0.3186, 0.9497, 0.6235, 0.3394, 0.9302, 0.605, 0.3401, 0.9517, 0.6069, 0.3877, 0.9541, 0.5884, 0.4111, 0.9541, 0.5859, 0.3884, 0.9771, 0.5942, 0.3884, 0.9771, 0.5942, 0.4111, 0.9541, 0.5859, 0.4111, 0.9771, 0.5923, 0.3875, 0.9302, 0.5859, 0.4111, 0.9302, 0.584, 0.3877, 0.9541, 0.5884, 0.3877, 0.9541, 0.5884, 0.4111, 0.9302, 0.584, 0.4111, 0.9541, 0.5859, 0.3645, 0.9302, 0.5923, 0.3875, 0.9302, 0.5859, 0.3647, 0.9531, 0.5942, 0.3647, 0.9531, 0.5942, 0.3875, 0.9302, 0.5859, 0.3877, 0.9541, 0.5884, 0.4348, 0.9541, 0.5884, 0.4578, 0.9531, 0.5942, 0.4341, 0.9771, 0.5942, 0.4341, 0.9771, 0.5942, 0.4578, 0.9531, 0.5942, 0.4561, 0.9751, 0.6001, 0.4351, 0.9302, 0.5859, 0.458, 0.9302, 0.5923, 0.4348, 0.9541, 0.5884, 0.4348, 0.9541, 0.5884, 0.458, 0.9302, 0.5923, 0.4578, 0.9531, 0.5942, 0.4111, 0.9302, 0.584, 0.4351, 0.9302, 0.5859, 0.4111, 0.9541, 0.5859, 0.4111, 0.9541, 0.5859, 0.4351, 0.9302, 0.5859, 0.4348, 0.9541, 0.5884, 0.4824, 0.9517, 0.6069, 0.5039, 0.9497, 0.6235, 0.4797, 0.9727, 0.6113, 0.4797, 0.9727, 0.6113, 0.5039, 0.9497, 0.6235, 0.5005, 0.9688, 0.6265, 0.4829, 0.9302, 0.605, 0.5049, 0.9302, 0.6226, 0.4824, 0.9517, 0.6069, 0.4824, 0.9517, 0.6069, 0.5049, 0.9302, 0.6226, 0.5039, 0.9497, 0.6235, 0.458, 0.9302, 0.5923, 0.4829, 0.9302, 0.605, 0.4578, 0.9531, 0.5942, 0.4578, 0.9531, 0.5942, 0.4829, 0.9302, 0.605, 0.4824, 0.9517, 0.6069, 0.3401, 0.9087, 0.6069, 0.3647, 0.9077, 0.5942, 0.3394, 0.9302, 0.605, 0.3394, 0.9302, 0.605, 0.3647, 0.9077, 0.5942, 0.3645, 0.9302, 0.5923, 0.3428, 0.8882, 0.6113, 0.3665, 0.8857, 0.6001, 0.3401, 0.9087, 0.6069, 0.3401, 0.9087, 0.6069, 0.3665, 0.8857, 0.6001, 0.3647, 0.9077, 0.5942, 0.3215, 0.8921, 0.6265, 0.3428, 0.8882, 0.6113, 0.3186, 0.9111, 0.6235, 0.3186, 0.9111, 0.6235, 0.3428, 0.8882, 0.6113, 0.3401, 0.9087, 0.6069, 0.3877, 0.9067, 0.5884, 0.4111, 0.9067, 0.5859, 0.3875, 0.9302, 0.5859, 0.3875, 0.9302, 0.5859, 0.4111, 0.9067, 0.5859, 0.4111, 0.9302, 0.584, 0.3884, 0.8838, 0.5942, 0.4111, 0.8833, 0.5923, 0.3877, 0.9067, 0.5884, 0.3877, 0.9067, 0.5884, 0.4111, 0.8833, 0.5923, 0.4111, 0.9067, 0.5859, 0.3665, 0.8857, 0.6001, 0.3884, 0.8838, 0.5942, 0.3647, 0.9077, 0.5942, 0.3647, 0.9077, 0.5942, 0.3884, 0.8838, 0.5942, 0.3877, 0.9067, 0.5884, 0.4348, 0.9067, 0.5884, 0.4578, 0.9077, 0.5942, 0.4351, 0.9302, 0.5859, 0.4351, 0.9302, 0.5859, 0.4578, 0.9077, 0.5942, 0.458, 0.9302, 0.5923, 0.4341, 0.8838, 0.5942, 0.4561, 0.8857, 0.6001, 0.4348, 0.9067, 0.5884, 0.4348, 0.9067, 0.5884, 0.4561, 0.8857, 0.6001, 0.4578, 0.9077, 0.5942, 0.4111, 0.8833, 0.5923, 0.4341, 0.8838, 0.5942, 0.4111, 0.9067, 0.5859, 0.4111, 0.9067, 0.5859, 0.4341, 0.8838, 0.5942, 0.4348, 0.9067, 0.5884, 0.4824, 0.9087, 0.6069, 0.5039, 0.9111, 0.6235, 0.4829, 0.9302, 0.605, 0.4829, 0.9302, 0.605, 0.5039, 0.9111, 0.6235, 0.5049, 0.9302, 0.6226, 0.4797, 0.8882, 0.6113, 0.5005, 0.8921, 0.6265, 0.4824, 0.9087, 0.6069, 0.4824, 0.9087, 0.6069, 0.5005, 0.8921, 0.6265, 0.5039, 0.9111, 0.6235, 0.4561, 0.8857, 0.6001, 0.4797, 0.8882, 0.6113, 0.4578, 0.9077, 0.5942, 0.4578, 0.9077, 0.5942, 0.4797, 0.8882, 0.6113, 0.4824, 0.9087, 0.6069, 0.3469, 0.8662, 0.6201, 0.3689, 0.8618, 0.6113, 0.3428, 0.8882, 0.6113, 0.3428, 0.8882, 0.6113, 0.3689, 0.8618, 0.6113, 0.3665, 0.8857, 0.6001, 0.3533, 0.8462, 0.6323, 0.373, 0.8408, 0.6265, 0.3469, 0.8662, 0.6201, 0.3469, 0.8662, 0.6201, 0.373, 0.8408, 0.6265, 0.3689, 0.8618, 0.6113, 0.3347, 0.854, 0.6396, 0.3533, 0.8462, 0.6323, 0.3271, 0.8721, 0.6323, 0.3271, 0.8721, 0.6323, 0.3533, 0.8462, 0.6323, 0.3469, 0.8662, 0.6201, 0.3896, 0.8594, 0.6069, 0.4111, 0.8584, 0.605, 0.3884, 0.8838, 0.5942, 0.3884, 0.8838, 0.5942, 0.4111, 0.8584, 0.605, 0.4111, 0.8833, 0.5923, 0.3918, 0.8379, 0.6235, 0.4111, 0.8369, 0.6226, 0.3896, 0.8594, 0.6069, 0.3896, 0.8594, 0.6069, 0.4111, 0.8369, 0.6226, 0.4111, 0.8584, 0.605, 0.373, 0.8408, 0.6265, 0.3918, 0.8379, 0.6235, 0.3689, 0.8618, 0.6113, 0.3689, 0.8618, 0.6113, 0.3918, 0.8379, 0.6235, 0.3896, 0.8594, 0.6069, 0.4326, 0.8594, 0.6069, 0.4536, 0.8618, 0.6113, 0.4341, 0.8838, 0.5942, 0.4341, 0.8838, 0.5942, 0.4536, 0.8618, 0.6113, 0.4561, 0.8857, 0.6001, 0.4307, 0.8379, 0.6235, 0.4495, 0.8408, 0.6265, 0.4326, 0.8594, 0.6069, 0.4326, 0.8594, 0.6069, 0.4495, 0.8408, 0.6265, 0.4536, 0.8618, 0.6113, 0.4111, 0.8369, 0.6226, 0.4307, 0.8379, 0.6235, 0.4111, 0.8584, 0.605, 0.4111, 0.8584, 0.605, 0.4307, 0.8379, 0.6235, 0.4326, 0.8594, 0.6069, 0.4756, 0.8662, 0.6201, 0.4954, 0.8721, 0.6323, 0.4797, 0.8882, 0.6113, 0.4797, 0.8882, 0.6113, 0.4954, 0.8721, 0.6323, 0.5005, 0.8921, 0.6265, 0.4692, 0.8462, 0.6323, 0.4875, 0.854, 0.6396, 0.4756, 0.8662, 0.6201, 0.4756, 0.8662, 0.6201, 0.4875, 0.854, 0.6396, 0.4954, 0.8721, 0.6323, 0.4495, 0.8408, 0.6265, 0.4692, 0.8462, 0.6323, 0.4536, 0.8618, 0.6113, 0.4536, 0.8618, 0.6113, 0.4692, 0.8462, 0.6323, 0.4756, 0.8662, 0.6201, -0.4797, 0.8882, 0.6113, -0.4756, 0.8662, 0.6201, -0.4561, 0.8857, 0.6001, -0.4561, 0.8857, 0.6001, -0.4756, 0.8662, 0.6201, -0.4536, 0.8618, 0.6113, -0.4341, 0.8838, 0.5942, -0.4326, 0.8594, 0.6069, -0.4111, 0.8833, 0.5923, -0.4111, 0.8833, 0.5923, -0.4326, 0.8594, 0.6069, -0.4111, 0.8584, 0.605, -0.3884, 0.8838, 0.5942, -0.3896, 0.8594, 0.6069, -0.3665, 0.8857, 0.6001, -0.3665, 0.8857, 0.6001, -0.3896, 0.8594, 0.6069, -0.3689, 0.8618, 0.6113, -0.3428, 0.8882, 0.6113, -0.3469, 0.8662, 0.6201, -0.3215, 0.8921, 0.6265, -0.3215, 0.8921, 0.6265, -0.3469, 0.8662, 0.6201, -0.3271, 0.8721, 0.6323, -0.4829, 0.9302, 0.605, -0.4824, 0.9087, 0.6069, -0.458, 0.9302, 0.5923, -0.458, 0.9302, 0.5923, -0.4824, 0.9087, 0.6069, -0.4578, 0.9077, 0.5942, -0.4351, 0.9302, 0.5859, -0.4348, 0.9067, 0.5884, -0.4111, 0.9302, 0.584, -0.4111, 0.9302, 0.584, -0.4348, 0.9067, 0.5884, -0.4111, 0.9067, 0.5859, -0.3875, 0.9302, 0.5859, -0.3877, 0.9067, 0.5884, -0.3645, 0.9302, 0.5923, -0.3645, 0.9302, 0.5923, -0.3877, 0.9067, 0.5884, -0.3647, 0.9077, 0.5942, -0.3394, 0.9302, 0.605, -0.3401, 0.9087, 0.6069, -0.3176, 0.9302, 0.6226, -0.3176, 0.9302, 0.6226, -0.3401, 0.9087, 0.6069, -0.3186, 0.9111, 0.6235, -0.4797, 0.9727, 0.6113, -0.4824, 0.9517, 0.6069, -0.4561, 0.9751, 0.6001, -0.4561, 0.9751, 0.6001, -0.4824, 0.9517, 0.6069, -0.4578, 0.9531, 0.5942, -0.4341, 0.9771, 0.5942, -0.4348, 0.9541, 0.5884, -0.4111, 0.9771, 0.5923, -0.4111, 0.9771, 0.5923, -0.4348, 0.9541, 0.5884, -0.4111, 0.9541, 0.5859, -0.3884, 0.9771, 0.5942, -0.3877, 0.9541, 0.5884, -0.3665, 0.9751, 0.6001, -0.3665, 0.9751, 0.6001, -0.3877, 0.9541, 0.5884, -0.3647, 0.9531, 0.5942, -0.3428, 0.9727, 0.6113, -0.3401, 0.9517, 0.6069, -0.3215, 0.9688, 0.6265, -0.3215, 0.9688, 0.6265, -0.3401, 0.9517, 0.6069, -0.3186, 0.9497, 0.6235, -0.4692, 1.0137, 0.6323, -0.4756, 0.9946, 0.6201, -0.4495, 1.0195, 0.6265, -0.4495, 1.0195, 0.6265, -0.4756, 0.9946, 0.6201, -0.4536, 0.999, 0.6113, -0.4307, 1.0225, 0.6235, -0.4326, 1.001, 0.6069, -0.4111, 1.0234, 0.6226, -0.4111, 1.0234, 0.6226, -0.4326, 1.001, 0.6069, -0.4111, 1.002, 0.605, -0.3918, 1.0225, 0.6235, -0.3896, 1.001, 0.6069, -0.373, 1.0195, 0.6265, -0.373, 1.0195, 0.6265, -0.3896, 1.001, 0.6069, -0.3689, 0.999, 0.6113, -0.3533, 1.0137, 0.6323, -0.3469, 0.9946, 0.6201, -0.3347, 1.0068, 0.6396, -0.3347, 1.0068, 0.6396, -0.3469, 0.9946, 0.6201, -0.3271, 0.9883, 0.6323, -0.3064, 0.8882, 0.6479, -0.3152, 0.8662, 0.6519, -0.2949, 0.8857, 0.6714, -0.2949, 0.8857, 0.6714, -0.3152, 0.8662, 0.6519, -0.3064, 0.8618, 0.6738, -0.2893, 0.8838, 0.6934, -0.3018, 0.8594, 0.6948, -0.2874, 0.8833, 0.7163, -0.2874, 0.8833, 0.7163, -0.3018, 0.8594, 0.6948, -0.3, 0.8584, 0.7163, -0.2893, 0.8838, 0.7393, -0.3018, 0.8594, 0.7378, -0.2949, 0.8857, 0.7612, -0.2949, 0.8857, 0.7612, -0.3018, 0.8594, 0.7378, -0.3064, 0.8618, 0.7588, -0.3064, 0.8882, 0.7847, -0.3152, 0.8662, 0.7808, -0.3215, 0.8921, 0.8057, -0.3215, 0.8921, 0.8057, -0.3152, 0.8662, 0.7808, -0.3271, 0.8721, 0.8003, -0.3, 0.9302, 0.6445, -0.3018, 0.9087, 0.645, -0.2874, 0.9302, 0.6694, -0.2874, 0.9302, 0.6694, -0.3018, 0.9087, 0.645, -0.2893, 0.9077, 0.6699, -0.281, 0.9302, 0.6924, -0.2832, 0.9067, 0.6929, -0.2788, 0.9302, 0.7163, -0.2788, 0.9302, 0.7163, -0.2832, 0.9067, 0.6929, -0.281, 0.9067, 0.7163, -0.281, 0.9302, 0.7402, -0.2832, 0.9067, 0.7397, -0.2874, 0.9302, 0.7632, -0.2874, 0.9302, 0.7632, -0.2832, 0.9067, 0.7397, -0.2893, 0.9077, 0.7627, -0.3, 0.9302, 0.7881, -0.3018, 0.9087, 0.7876, -0.3176, 0.9302, 0.8101, -0.3176, 0.9302, 0.8101, -0.3018, 0.9087, 0.7876, -0.3186, 0.9111, 0.8091, -0.3064, 0.9727, 0.6479, -0.3018, 0.9517, 0.645, -0.2949, 0.9751, 0.6714, -0.2949, 0.9751, 0.6714, -0.3018, 0.9517, 0.645, -0.2893, 0.9531, 0.6699, -0.2893, 0.9771, 0.6934, -0.2832, 0.9541, 0.6929, -0.2874, 0.9771, 0.7163, -0.2874, 0.9771, 0.7163, -0.2832, 0.9541, 0.6929, -0.281, 0.9541, 0.7163, -0.2893, 0.9771, 0.7393, -0.2832, 0.9541, 0.7397, -0.2949, 0.9751, 0.7612, -0.2949, 0.9751, 0.7612, -0.2832, 0.9541, 0.7397, -0.2893, 0.9531, 0.7627, -0.3064, 0.9727, 0.7847, -0.3018, 0.9517, 0.7876, -0.3215, 0.9688, 0.8057, -0.3215, 0.9688, 0.8057, -0.3018, 0.9517, 0.7876, -0.3186, 0.9497, 0.8091, -0.3271, 1.0137, 0.6582, -0.3152, 0.9946, 0.6519, -0.3215, 1.0195, 0.6782, -0.3215, 1.0195, 0.6782, -0.3152, 0.9946, 0.6519, -0.3064, 0.999, 0.6738, -0.3186, 1.0225, 0.6968, -0.3018, 1.001, 0.6948, -0.3176, 1.0234, 0.7163, -0.3176, 1.0234, 0.7163, -0.3018, 1.001, 0.6948, -0.3, 1.002, 0.7163, -0.3186, 1.0225, 0.7358, -0.3018, 1.001, 0.7378, -0.3215, 1.0195, 0.7544, -0.3215, 1.0195, 0.7544, -0.3018, 1.001, 0.7378, -0.3064, 0.999, 0.7588, -0.3271, 1.0137, 0.7744, -0.3152, 0.9946, 0.7808, -0.3347, 1.0068, 0.7925, -0.3347, 1.0068, 0.7925, -0.3152, 0.9946, 0.7808, -0.3271, 0.9883, 0.8003, -0.3428, 0.8882, 0.8213, -0.3469, 0.8662, 0.8125, -0.3665, 0.8857, 0.8325, -0.3665, 0.8857, 0.8325, -0.3469, 0.8662, 0.8125, -0.3689, 0.8618, 0.8213, -0.3884, 0.8838, 0.8379, -0.3896, 0.8594, 0.8257, -0.4111, 0.8833, 0.8398, -0.4111, 0.8833, 0.8398, -0.3896, 0.8594, 0.8257, -0.4111, 0.8584, 0.8276, -0.4341, 0.8838, 0.8379, -0.4326, 0.8594, 0.8257, -0.4561, 0.8857, 0.8325, -0.4561, 0.8857, 0.8325, -0.4326, 0.8594, 0.8257, -0.4536, 0.8618, 0.8213, -0.4797, 0.8882, 0.8213, -0.4756, 0.8662, 0.8125, -0.5005, 0.8921, 0.8057, -0.5005, 0.8921, 0.8057, -0.4756, 0.8662, 0.8125, -0.4954, 0.8721, 0.8003, -0.3394, 0.9302, 0.8276, -0.3401, 0.9087, 0.8257, -0.3645, 0.9302, 0.8398, -0.3645, 0.9302, 0.8398, -0.3401, 0.9087, 0.8257, -0.3647, 0.9077, 0.8379, -0.3875, 0.9302, 0.8467, -0.3877, 0.9067, 0.8442, -0.4111, 0.9302, 0.8486, -0.4111, 0.9302, 0.8486, -0.3877, 0.9067, 0.8442, -0.4111, 0.9067, 0.8467, -0.4351, 0.9302, 0.8467, -0.4348, 0.9067, 0.8442, -0.458, 0.9302, 0.8398, -0.458, 0.9302, 0.8398, -0.4348, 0.9067, 0.8442, -0.4578, 0.9077, 0.8379, -0.4829, 0.9302, 0.8276, -0.4824, 0.9087, 0.8257, -0.5049, 0.9302, 0.8101, -0.5049, 0.9302, 0.8101, -0.4824, 0.9087, 0.8257, -0.5039, 0.9111, 0.8091, -0.3428, 0.9727, 0.8213, -0.3401, 0.9517, 0.8257, -0.3665, 0.9751, 0.8325, -0.3665, 0.9751, 0.8325, -0.3401, 0.9517, 0.8257, -0.3647, 0.9531, 0.8379, -0.3884, 0.9771, 0.8379, -0.3877, 0.9541, 0.8442, -0.4111, 0.9771, 0.8398, -0.4111, 0.9771, 0.8398, -0.3877, 0.9541, 0.8442, -0.4111, 0.9541, 0.8467, -0.4341, 0.9771, 0.8379, -0.4348, 0.9541, 0.8442, -0.4561, 0.9751, 0.8325, -0.4561, 0.9751, 0.8325, -0.4348, 0.9541, 0.8442, -0.4578, 0.9531, 0.8379, -0.4797, 0.9727, 0.8213, -0.4824, 0.9517, 0.8257, -0.5005, 0.9688, 0.8057, -0.5005, 0.9688, 0.8057, -0.4824, 0.9517, 0.8257, -0.5039, 0.9497, 0.8091, -0.3533, 1.0137, 0.8003, -0.3469, 0.9946, 0.8125, -0.373, 1.0195, 0.8057, -0.373, 1.0195, 0.8057, -0.3469, 0.9946, 0.8125, -0.3689, 0.999, 0.8213, -0.3918, 1.0225, 0.8091, -0.3896, 1.001, 0.8257, -0.4111, 1.0234, 0.8101, -0.4111, 1.0234, 0.8101, -0.3896, 1.001, 0.8257, -0.4111, 1.002, 0.8276, -0.4307, 1.0225, 0.8091, -0.4326, 1.001, 0.8257, -0.4495, 1.0195, 0.8057, -0.4495, 1.0195, 0.8057, -0.4326, 1.001, 0.8257, -0.4536, 0.999, 0.8213, -0.4692, 1.0137, 0.8003, -0.4756, 0.9946, 0.8125, -0.4875, 1.0068, 0.7925, -0.4875, 1.0068, 0.7925, -0.4756, 0.9946, 0.8125, -0.4954, 0.9883, 0.8003, -0.5161, 0.8882, 0.7847, -0.5073, 0.8662, 0.7808, -0.5273, 0.8857, 0.7612, -0.5273, 0.8857, 0.7612, -0.5073, 0.8662, 0.7808, -0.5161, 0.8618, 0.7588, -0.5327, 0.8838, 0.7393, -0.5205, 0.8594, 0.7378, -0.5347, 0.8833, 0.7163, -0.5347, 0.8833, 0.7163, -0.5205, 0.8594, 0.7378, -0.5225, 0.8584, 0.7163, -0.5327, 0.8838, 0.6934, -0.5205, 0.8594, 0.6948, -0.5273, 0.8857, 0.6714, -0.5273, 0.8857, 0.6714, -0.5205, 0.8594, 0.6948, -0.5161, 0.8618, 0.6738, -0.5161, 0.8882, 0.6479, -0.5073, 0.8662, 0.6519, -0.5005, 0.8921, 0.6265, -0.5005, 0.8921, 0.6265, -0.5073, 0.8662, 0.6519, -0.4954, 0.8721, 0.6323, -0.5225, 0.9302, 0.7881, -0.5205, 0.9087, 0.7876, -0.5347, 0.9302, 0.7632, -0.5347, 0.9302, 0.7632, -0.5205, 0.9087, 0.7876, -0.5327, 0.9077, 0.7627, -0.5415, 0.9302, 0.7402, -0.5391, 0.9067, 0.7397, -0.5435, 0.9302, 0.7163, -0.5435, 0.9302, 0.7163, -0.5391, 0.9067, 0.7397, -0.5415, 0.9067, 0.7163, -0.5415, 0.9302, 0.6924, -0.5391, 0.9067, 0.6929, -0.5347, 0.9302, 0.6694, -0.5347, 0.9302, 0.6694, -0.5391, 0.9067, 0.6929, -0.5327, 0.9077, 0.6699, -0.5225, 0.9302, 0.6445, -0.5205, 0.9087, 0.645, -0.5049, 0.9302, 0.6226, -0.5049, 0.9302, 0.6226, -0.5205, 0.9087, 0.645, -0.5039, 0.9111, 0.6235, -0.5161, 0.9727, 0.7847, -0.5205, 0.9517, 0.7876, -0.5273, 0.9751, 0.7612, -0.5273, 0.9751, 0.7612, -0.5205, 0.9517, 0.7876, -0.5327, 0.9531, 0.7627, -0.5327, 0.9771, 0.7393, -0.5391, 0.9541, 0.7397, -0.5347, 0.9771, 0.7163, -0.5347, 0.9771, 0.7163, -0.5391, 0.9541, 0.7397, -0.5415, 0.9541, 0.7163, -0.5327, 0.9771, 0.6934, -0.5391, 0.9541, 0.6929, -0.5273, 0.9751, 0.6714, -0.5273, 0.9751, 0.6714, -0.5391, 0.9541, 0.6929, -0.5327, 0.9531, 0.6699, -0.5161, 0.9727, 0.6479, -0.5205, 0.9517, 0.645, -0.5005, 0.9688, 0.6265, -0.5005, 0.9688, 0.6265, -0.5205, 0.9517, 0.645, -0.5039, 0.9497, 0.6235, -0.4954, 1.0137, 0.7744, -0.5073, 0.9946, 0.7808, -0.5005, 1.0195, 0.7544, -0.5005, 1.0195, 0.7544, -0.5073, 0.9946, 0.7808, -0.5161, 0.999, 0.7588, -0.5039, 1.0225, 0.7358, -0.5205, 1.001, 0.7378, -0.5049, 1.0234, 0.7163, -0.5049, 1.0234, 0.7163, -0.5205, 1.001, 0.7378, -0.5225, 1.002, 0.7163, -0.5039, 1.0225, 0.6968, -0.5205, 1.001, 0.6948, -0.5005, 1.0195, 0.6782, -0.5005, 1.0195, 0.6782, -0.5205, 1.001, 0.6948, -0.5161, 0.999, 0.6738, -0.4954, 1.0137, 0.6582, -0.5073, 0.9946, 0.6519, -0.4875, 1.0068, 0.6396, -0.4875, 1.0068, 0.6396, -0.5073, 0.9946, 0.6519, -0.4954, 0.9883, 0.6323, -0.4797, 0.8252, 0.7588, -0.4756, 0.8345, 0.7803, -0.4561, 0.814, 0.7612, -0.4561, 0.814, 0.7612, -0.4756, 0.8345, 0.7803, -0.4536, 0.8252, 0.7847, -0.4341, 0.8086, 0.7627, -0.4326, 0.8208, 0.7876, -0.4111, 0.8066, 0.7632, -0.4111, 0.8066, 0.7632, -0.4326, 0.8208, 0.7876, -0.4111, 0.8193, 0.7881, -0.3884, 0.8086, 0.7627, -0.3896, 0.8208, 0.7876, -0.3665, 0.814, 0.7612, -0.3665, 0.814, 0.7612, -0.3896, 0.8208, 0.7876, -0.3689, 0.8252, 0.7847, -0.3428, 0.8252, 0.7588, -0.3469, 0.8345, 0.7803, -0.3215, 0.8408, 0.7544, -0.3215, 0.8408, 0.7544, -0.3469, 0.8345, 0.7803, -0.3271, 0.8462, 0.7744, -0.4829, 0.8193, 0.7163, -0.4824, 0.8208, 0.7378, -0.458, 0.8066, 0.7163, -0.458, 0.8066, 0.7163, -0.4824, 0.8208, 0.7378, -0.4578, 0.8086, 0.7393, -0.4351, 0.8003, 0.7163, -0.4348, 0.8022, 0.7397, -0.4111, 0.7979, 0.7163, -0.4111, 0.7979, 0.7163, -0.4348, 0.8022, 0.7397, -0.4111, 0.8003, 0.7402, -0.3875, 0.8003, 0.7163, -0.3877, 0.8022, 0.7397, -0.3645, 0.8066, 0.7163, -0.3645, 0.8066, 0.7163, -0.3877, 0.8022, 0.7397, -0.3647, 0.8086, 0.7393, -0.3394, 0.8193, 0.7163, -0.3401, 0.8208, 0.7378, -0.3176, 0.8369, 0.7163, -0.3176, 0.8369, 0.7163, -0.3401, 0.8208, 0.7378, -0.3186, 0.8379, 0.7358, -0.4797, 0.8252, 0.6738, -0.4824, 0.8208, 0.6948, -0.4561, 0.814, 0.6714, -0.4561, 0.814, 0.6714, -0.4824, 0.8208, 0.6948, -0.4578, 0.8086, 0.6934, -0.4341, 0.8086, 0.6699, -0.4348, 0.8022, 0.6929, -0.4111, 0.8066, 0.6694, -0.4111, 0.8066, 0.6694, -0.4348, 0.8022, 0.6929, -0.4111, 0.8003, 0.6924, -0.3884, 0.8086, 0.6699, -0.3877, 0.8022, 0.6929, -0.3665, 0.814, 0.6714, -0.3665, 0.814, 0.6714, -0.3877, 0.8022, 0.6929, -0.3647, 0.8086, 0.6934, -0.3428, 0.8252, 0.6738, -0.3401, 0.8208, 0.6948, -0.3215, 0.8408, 0.6782, -0.3215, 0.8408, 0.6782, -0.3401, 0.8208, 0.6948, -0.3186, 0.8379, 0.6968, -0.4692, 0.8462, 0.6323, -0.4756, 0.8345, 0.6519, -0.4495, 0.8408, 0.6265, -0.4495, 0.8408, 0.6265, -0.4756, 0.8345, 0.6519, -0.4536, 0.8252, 0.6479, -0.4307, 0.8379, 0.6235, -0.4326, 0.8208, 0.645, -0.4111, 0.8369, 0.6226, -0.4111, 0.8369, 0.6226, -0.4326, 0.8208, 0.645, -0.4111, 0.8193, 0.6445, -0.3918, 0.8379, 0.6235, -0.3896, 0.8208, 0.645, -0.373, 0.8408, 0.6265, -0.373, 0.8408, 0.6265, -0.3896, 0.8208, 0.645, -0.3689, 0.8252, 0.6479, -0.3533, 0.8462, 0.6323, -0.3469, 0.8345, 0.6519, -0.3347, 0.854, 0.6396, -0.3347, 0.854, 0.6396, -0.3469, 0.8345, 0.6519, -0.3271, 0.8462, 0.6582, -0.4797, 1.0352, 0.6738, -0.4756, 1.0264, 0.6519, -0.4561, 1.0459, 0.6714, -0.4561, 1.0459, 0.6714, -0.4756, 1.0264, 0.6519, -0.4536, 1.0352, 0.6479, -0.4341, 1.0518, 0.6699, -0.4326, 1.04, 0.645, -0.4111, 1.0537, 0.6694, -0.4111, 1.0537, 0.6694, -0.4326, 1.04, 0.645, -0.4111, 1.041, 0.6445, -0.3884, 1.0518, 0.6699, -0.3896, 1.04, 0.645, -0.3665, 1.0459, 0.6714, -0.3665, 1.0459, 0.6714, -0.3896, 1.04, 0.645, -0.3689, 1.0352, 0.6479, -0.3428, 1.0352, 0.6738, -0.3469, 1.0264, 0.6519, -0.3215, 1.0195, 0.6782, -0.3215, 1.0195, 0.6782, -0.3469, 1.0264, 0.6519, -0.3271, 1.0137, 0.6582, -0.4829, 1.041, 0.7163, -0.4824, 1.04, 0.6948, -0.458, 1.0537, 0.7163, -0.458, 1.0537, 0.7163, -0.4824, 1.04, 0.6948, -0.4578, 1.0518, 0.6934, -0.4351, 1.0605, 0.7163, -0.4348, 1.0586, 0.6929, -0.4111, 1.0625, 0.7163, -0.4111, 1.0625, 0.7163, -0.4348, 1.0586, 0.6929, -0.4111, 1.0605, 0.6924, -0.3875, 1.0605, 0.7163, -0.3877, 1.0586, 0.6929, -0.3645, 1.0537, 0.7163, -0.3645, 1.0537, 0.7163, -0.3877, 1.0586, 0.6929, -0.3647, 1.0518, 0.6934, -0.3394, 1.041, 0.7163, -0.3401, 1.04, 0.6948, -0.3176, 1.0234, 0.7163, -0.3176, 1.0234, 0.7163, -0.3401, 1.04, 0.6948, -0.3186, 1.0225, 0.6968, -0.4797, 1.0352, 0.7588, -0.4824, 1.04, 0.7378, -0.4561, 1.0459, 0.7612, -0.4561, 1.0459, 0.7612, -0.4824, 1.04, 0.7378, -0.4578, 1.0518, 0.7393, -0.4341, 1.0518, 0.7627, -0.4348, 1.0586, 0.7397, -0.4111, 1.0537, 0.7632, -0.4111, 1.0537, 0.7632, -0.4348, 1.0586, 0.7397, -0.4111, 1.0605, 0.7402, -0.3884, 1.0518, 0.7627, -0.3877, 1.0586, 0.7397, -0.3665, 1.0459, 0.7612, -0.3665, 1.0459, 0.7612, -0.3877, 1.0586, 0.7397, -0.3647, 1.0518, 0.7393, -0.3428, 1.0352, 0.7588, -0.3401, 1.04, 0.7378, -0.3215, 1.0195, 0.7544, -0.3215, 1.0195, 0.7544, -0.3401, 1.04, 0.7378, -0.3186, 1.0225, 0.7358, -0.4692, 1.0137, 0.8003, -0.4756, 1.0264, 0.7803, -0.4495, 1.0195, 0.8057, -0.4495, 1.0195, 0.8057, -0.4756, 1.0264, 0.7803, -0.4536, 1.0352, 0.7847, -0.4307, 1.0225, 0.8091, -0.4326, 1.04, 0.7876, -0.4111, 1.0234, 0.8101, -0.4111, 1.0234, 0.8101, -0.4326, 1.04, 0.7876, -0.4111, 1.041, 0.7881, -0.3918, 1.0225, 0.8091, -0.3896, 1.04, 0.7876, -0.373, 1.0195, 0.8057, -0.373, 1.0195, 0.8057, -0.3896, 1.04, 0.7876, -0.3689, 1.0352, 0.7847, -0.3533, 1.0137, 0.8003, -0.3469, 1.0264, 0.7803, -0.3347, 1.0068, 0.7925, -0.3347, 1.0068, 0.7925, -0.3469, 1.0264, 0.7803, -0.3271, 1.0137, 0.7744, -0.373, 1.0195, 0.8057, -0.3689, 1.0352, 0.7847, -0.3533, 1.0137, 0.8003, -0.3533, 1.0137, 0.8003, -0.3689, 1.0352, 0.7847, -0.3469, 1.0264, 0.7803, -0.3689, 1.0352, 0.7847, -0.3665, 1.0459, 0.7612, -0.3469, 1.0264, 0.7803, -0.3469, 1.0264, 0.7803, -0.3665, 1.0459, 0.7612, -0.3428, 1.0352, 0.7588, -0.3469, 1.0264, 0.7803, -0.3428, 1.0352, 0.7588, -0.3271, 1.0137, 0.7744, -0.3271, 1.0137, 0.7744, -0.3428, 1.0352, 0.7588, -0.3215, 1.0195, 0.7544, -0.4111, 1.0234, 0.8101, -0.4111, 1.041, 0.7881, -0.3918, 1.0225, 0.8091, -0.3918, 1.0225, 0.8091, -0.4111, 1.041, 0.7881, -0.3896, 1.04, 0.7876, -0.4111, 1.041, 0.7881, -0.4111, 1.0537, 0.7632, -0.3896, 1.04, 0.7876, -0.3896, 1.04, 0.7876, -0.4111, 1.0537, 0.7632, -0.3884, 1.0518, 0.7627, -0.3896, 1.04, 0.7876, -0.3884, 1.0518, 0.7627, -0.3689, 1.0352, 0.7847, -0.3689, 1.0352, 0.7847, -0.3884, 1.0518, 0.7627, -0.3665, 1.0459, 0.7612, -0.4495, 1.0195, 0.8057, -0.4536, 1.0352, 0.7847, -0.4307, 1.0225, 0.8091, -0.4307, 1.0225, 0.8091, -0.4536, 1.0352, 0.7847, -0.4326, 1.04, 0.7876, -0.4536, 1.0352, 0.7847, -0.4561, 1.0459, 0.7612, -0.4326, 1.04, 0.7876, -0.4326, 1.04, 0.7876, -0.4561, 1.0459, 0.7612, -0.4341, 1.0518, 0.7627, -0.4326, 1.04, 0.7876, -0.4341, 1.0518, 0.7627, -0.4111, 1.041, 0.7881, -0.4111, 1.041, 0.7881, -0.4341, 1.0518, 0.7627, -0.4111, 1.0537, 0.7632, -0.4875, 1.0068, 0.7925, -0.4954, 1.0137, 0.7744, -0.4692, 1.0137, 0.8003, -0.4692, 1.0137, 0.8003, -0.4954, 1.0137, 0.7744, -0.4756, 1.0264, 0.7803, -0.4954, 1.0137, 0.7744, -0.5005, 1.0195, 0.7544, -0.4756, 1.0264, 0.7803, -0.4756, 1.0264, 0.7803, -0.5005, 1.0195, 0.7544, -0.4797, 1.0352, 0.7588, -0.4756, 1.0264, 0.7803, -0.4797, 1.0352, 0.7588, -0.4536, 1.0352, 0.7847, -0.4536, 1.0352, 0.7847, -0.4797, 1.0352, 0.7588, -0.4561, 1.0459, 0.7612, -0.3665, 1.0459, 0.7612, -0.3647, 1.0518, 0.7393, -0.3428, 1.0352, 0.7588, -0.3428, 1.0352, 0.7588, -0.3647, 1.0518, 0.7393, -0.3401, 1.04, 0.7378, -0.3647, 1.0518, 0.7393, -0.3645, 1.0537, 0.7163, -0.3401, 1.04, 0.7378, -0.3401, 1.04, 0.7378, -0.3645, 1.0537, 0.7163, -0.3394, 1.041, 0.7163, -0.3401, 1.04, 0.7378, -0.3394, 1.041, 0.7163, -0.3186, 1.0225, 0.7358, -0.3186, 1.0225, 0.7358, -0.3394, 1.041, 0.7163, -0.3176, 1.0234, 0.7163, -0.4111, 1.0537, 0.7632, -0.4111, 1.0605, 0.7402, -0.3884, 1.0518, 0.7627, -0.3884, 1.0518, 0.7627, -0.4111, 1.0605, 0.7402, -0.3877, 1.0586, 0.7397, -0.4111, 1.0605, 0.7402, -0.4111, 1.0625, 0.7163, -0.3877, 1.0586, 0.7397, -0.3877, 1.0586, 0.7397, -0.4111, 1.0625, 0.7163, -0.3875, 1.0605, 0.7163, -0.3877, 1.0586, 0.7397, -0.3875, 1.0605, 0.7163, -0.3647, 1.0518, 0.7393, -0.3647, 1.0518, 0.7393, -0.3875, 1.0605, 0.7163, -0.3645, 1.0537, 0.7163, -0.4561, 1.0459, 0.7612, -0.4578, 1.0518, 0.7393, -0.4341, 1.0518, 0.7627, -0.4341, 1.0518, 0.7627, -0.4578, 1.0518, 0.7393, -0.4348, 1.0586, 0.7397, -0.4578, 1.0518, 0.7393, -0.458, 1.0537, 0.7163, -0.4348, 1.0586, 0.7397, -0.4348, 1.0586, 0.7397, -0.458, 1.0537, 0.7163, -0.4351, 1.0605, 0.7163, -0.4348, 1.0586, 0.7397, -0.4351, 1.0605, 0.7163, -0.4111, 1.0605, 0.7402, -0.4111, 1.0605, 0.7402, -0.4351, 1.0605, 0.7163, -0.4111, 1.0625, 0.7163, -0.5005, 1.0195, 0.7544, -0.5039, 1.0225, 0.7358, -0.4797, 1.0352, 0.7588, -0.4797, 1.0352, 0.7588, -0.5039, 1.0225, 0.7358, -0.4824, 1.04, 0.7378, -0.5039, 1.0225, 0.7358, -0.5049, 1.0234, 0.7163, -0.4824, 1.04, 0.7378, -0.4824, 1.04, 0.7378, -0.5049, 1.0234, 0.7163, -0.4829, 1.041, 0.7163, -0.4824, 1.04, 0.7378, -0.4829, 1.041, 0.7163, -0.4578, 1.0518, 0.7393, -0.4578, 1.0518, 0.7393, -0.4829, 1.041, 0.7163, -0.458, 1.0537, 0.7163, -0.3645, 1.0537, 0.7163, -0.3647, 1.0518, 0.6934, -0.3394, 1.041, 0.7163, -0.3394, 1.041, 0.7163, -0.3647, 1.0518, 0.6934, -0.3401, 1.04, 0.6948, -0.3647, 1.0518, 0.6934, -0.3665, 1.0459, 0.6714, -0.3401, 1.04, 0.6948, -0.3401, 1.04, 0.6948, -0.3665, 1.0459, 0.6714, -0.3428, 1.0352, 0.6738, -0.3401, 1.04, 0.6948, -0.3428, 1.0352, 0.6738, -0.3186, 1.0225, 0.6968, -0.3186, 1.0225, 0.6968, -0.3428, 1.0352, 0.6738, -0.3215, 1.0195, 0.6782, -0.4111, 1.0625, 0.7163, -0.4111, 1.0605, 0.6924, -0.3875, 1.0605, 0.7163, -0.3875, 1.0605, 0.7163, -0.4111, 1.0605, 0.6924, -0.3877, 1.0586, 0.6929, -0.4111, 1.0605, 0.6924, -0.4111, 1.0537, 0.6694, -0.3877, 1.0586, 0.6929, -0.3877, 1.0586, 0.6929, -0.4111, 1.0537, 0.6694, -0.3884, 1.0518, 0.6699, -0.3877, 1.0586, 0.6929, -0.3884, 1.0518, 0.6699, -0.3647, 1.0518, 0.6934, -0.3647, 1.0518, 0.6934, -0.3884, 1.0518, 0.6699, -0.3665, 1.0459, 0.6714, -0.458, 1.0537, 0.7163, -0.4578, 1.0518, 0.6934, -0.4351, 1.0605, 0.7163, -0.4351, 1.0605, 0.7163, -0.4578, 1.0518, 0.6934, -0.4348, 1.0586, 0.6929, -0.4578, 1.0518, 0.6934, -0.4561, 1.0459, 0.6714, -0.4348, 1.0586, 0.6929, -0.4348, 1.0586, 0.6929, -0.4561, 1.0459, 0.6714, -0.4341, 1.0518, 0.6699, -0.4348, 1.0586, 0.6929, -0.4341, 1.0518, 0.6699, -0.4111, 1.0605, 0.6924, -0.4111, 1.0605, 0.6924, -0.4341, 1.0518, 0.6699, -0.4111, 1.0537, 0.6694, -0.5049, 1.0234, 0.7163, -0.5039, 1.0225, 0.6968, -0.4829, 1.041, 0.7163, -0.4829, 1.041, 0.7163, -0.5039, 1.0225, 0.6968, -0.4824, 1.04, 0.6948, -0.5039, 1.0225, 0.6968, -0.5005, 1.0195, 0.6782, -0.4824, 1.04, 0.6948, -0.4824, 1.04, 0.6948, -0.5005, 1.0195, 0.6782, -0.4797, 1.0352, 0.6738, -0.4824, 1.04, 0.6948, -0.4797, 1.0352, 0.6738, -0.4578, 1.0518, 0.6934, -0.4578, 1.0518, 0.6934, -0.4797, 1.0352, 0.6738, -0.4561, 1.0459, 0.6714, -0.3665, 1.0459, 0.6714, -0.3689, 1.0352, 0.6479, -0.3428, 1.0352, 0.6738, -0.3428, 1.0352, 0.6738, -0.3689, 1.0352, 0.6479, -0.3469, 1.0264, 0.6519, -0.3689, 1.0352, 0.6479, -0.373, 1.0195, 0.6265, -0.3469, 1.0264, 0.6519, -0.3469, 1.0264, 0.6519, -0.373, 1.0195, 0.6265, -0.3533, 1.0137, 0.6323, -0.3469, 1.0264, 0.6519, -0.3533, 1.0137, 0.6323, -0.3271, 1.0137, 0.6582, -0.3271, 1.0137, 0.6582, -0.3533, 1.0137, 0.6323, -0.3347, 1.0068, 0.6396, -0.4111, 1.0537, 0.6694, -0.4111, 1.041, 0.6445, -0.3884, 1.0518, 0.6699, -0.3884, 1.0518, 0.6699, -0.4111, 1.041, 0.6445, -0.3896, 1.04, 0.645, -0.4111, 1.041, 0.6445, -0.4111, 1.0234, 0.6226, -0.3896, 1.04, 0.645, -0.3896, 1.04, 0.645, -0.4111, 1.0234, 0.6226, -0.3918, 1.0225, 0.6235, -0.3896, 1.04, 0.645, -0.3918, 1.0225, 0.6235, -0.3689, 1.0352, 0.6479, -0.3689, 1.0352, 0.6479, -0.3918, 1.0225, 0.6235, -0.373, 1.0195, 0.6265, -0.4561, 1.0459, 0.6714, -0.4536, 1.0352, 0.6479, -0.4341, 1.0518, 0.6699, -0.4341, 1.0518, 0.6699, -0.4536, 1.0352, 0.6479, -0.4326, 1.04, 0.645, -0.4536, 1.0352, 0.6479, -0.4495, 1.0195, 0.6265, -0.4326, 1.04, 0.645, -0.4326, 1.04, 0.645, -0.4495, 1.0195, 0.6265, -0.4307, 1.0225, 0.6235, -0.4326, 1.04, 0.645, -0.4307, 1.0225, 0.6235, -0.4111, 1.041, 0.6445, -0.4111, 1.041, 0.6445, -0.4307, 1.0225, 0.6235, -0.4111, 1.0234, 0.6226, -0.5005, 1.0195, 0.6782, -0.4954, 1.0137, 0.6582, -0.4797, 1.0352, 0.6738, -0.4797, 1.0352, 0.6738, -0.4954, 1.0137, 0.6582, -0.4756, 1.0264, 0.6519, -0.4954, 1.0137, 0.6582, -0.4875, 1.0068, 0.6396, -0.4756, 1.0264, 0.6519, -0.4756, 1.0264, 0.6519, -0.4875, 1.0068, 0.6396, -0.4692, 1.0137, 0.6323, -0.4756, 1.0264, 0.6519, -0.4692, 1.0137, 0.6323, -0.4536, 1.0352, 0.6479, -0.4536, 1.0352, 0.6479, -0.4692, 1.0137, 0.6323, -0.4495, 1.0195, 0.6265, -0.373, 0.8408, 0.6265, -0.3689, 0.8252, 0.6479, -0.3533, 0.8462, 0.6323, -0.3533, 0.8462, 0.6323, -0.3689, 0.8252, 0.6479, -0.3469, 0.8345, 0.6519, -0.3689, 0.8252, 0.6479, -0.3665, 0.814, 0.6714, -0.3469, 0.8345, 0.6519, -0.3469, 0.8345, 0.6519, -0.3665, 0.814, 0.6714, -0.3428, 0.8252, 0.6738, -0.3469, 0.8345, 0.6519, -0.3428, 0.8252, 0.6738, -0.3271, 0.8462, 0.6582, -0.3271, 0.8462, 0.6582, -0.3428, 0.8252, 0.6738, -0.3215, 0.8408, 0.6782, -0.4111, 0.8369, 0.6226, -0.4111, 0.8193, 0.6445, -0.3918, 0.8379, 0.6235, -0.3918, 0.8379, 0.6235, -0.4111, 0.8193, 0.6445, -0.3896, 0.8208, 0.645, -0.4111, 0.8193, 0.6445, -0.4111, 0.8066, 0.6694, -0.3896, 0.8208, 0.645, -0.3896, 0.8208, 0.645, -0.4111, 0.8066, 0.6694, -0.3884, 0.8086, 0.6699, -0.3896, 0.8208, 0.645, -0.3884, 0.8086, 0.6699, -0.3689, 0.8252, 0.6479, -0.3689, 0.8252, 0.6479, -0.3884, 0.8086, 0.6699, -0.3665, 0.814, 0.6714, -0.4495, 0.8408, 0.6265, -0.4536, 0.8252, 0.6479, -0.4307, 0.8379, 0.6235, -0.4307, 0.8379, 0.6235, -0.4536, 0.8252, 0.6479, -0.4326, 0.8208, 0.645, -0.4536, 0.8252, 0.6479, -0.4561, 0.814, 0.6714, -0.4326, 0.8208, 0.645, -0.4326, 0.8208, 0.645, -0.4561, 0.814, 0.6714, -0.4341, 0.8086, 0.6699, -0.4326, 0.8208, 0.645, -0.4341, 0.8086, 0.6699, -0.4111, 0.8193, 0.6445, -0.4111, 0.8193, 0.6445, -0.4341, 0.8086, 0.6699, -0.4111, 0.8066, 0.6694, -0.4875, 0.854, 0.6396, -0.4954, 0.8462, 0.6582, -0.4692, 0.8462, 0.6323, -0.4692, 0.8462, 0.6323, -0.4954, 0.8462, 0.6582, -0.4756, 0.8345, 0.6519, -0.4954, 0.8462, 0.6582, -0.5005, 0.8408, 0.6782, -0.4756, 0.8345, 0.6519, -0.4756, 0.8345, 0.6519, -0.5005, 0.8408, 0.6782, -0.4797, 0.8252, 0.6738, -0.4756, 0.8345, 0.6519, -0.4797, 0.8252, 0.6738, -0.4536, 0.8252, 0.6479, -0.4536, 0.8252, 0.6479, -0.4797, 0.8252, 0.6738, -0.4561, 0.814, 0.6714, -0.3665, 0.814, 0.6714, -0.3647, 0.8086, 0.6934, -0.3428, 0.8252, 0.6738, -0.3428, 0.8252, 0.6738, -0.3647, 0.8086, 0.6934, -0.3401, 0.8208, 0.6948, -0.3647, 0.8086, 0.6934, -0.3645, 0.8066, 0.7163, -0.3401, 0.8208, 0.6948, -0.3401, 0.8208, 0.6948, -0.3645, 0.8066, 0.7163, -0.3394, 0.8193, 0.7163, -0.3401, 0.8208, 0.6948, -0.3394, 0.8193, 0.7163, -0.3186, 0.8379, 0.6968, -0.3186, 0.8379, 0.6968, -0.3394, 0.8193, 0.7163, -0.3176, 0.8369, 0.7163, -0.4111, 0.8066, 0.6694, -0.4111, 0.8003, 0.6924, -0.3884, 0.8086, 0.6699, -0.3884, 0.8086, 0.6699, -0.4111, 0.8003, 0.6924, -0.3877, 0.8022, 0.6929, -0.4111, 0.8003, 0.6924, -0.4111, 0.7979, 0.7163, -0.3877, 0.8022, 0.6929, -0.3877, 0.8022, 0.6929, -0.4111, 0.7979, 0.7163, -0.3875, 0.8003, 0.7163, -0.3877, 0.8022, 0.6929, -0.3875, 0.8003, 0.7163, -0.3647, 0.8086, 0.6934, -0.3647, 0.8086, 0.6934, -0.3875, 0.8003, 0.7163, -0.3645, 0.8066, 0.7163, -0.4561, 0.814, 0.6714, -0.4578, 0.8086, 0.6934, -0.4341, 0.8086, 0.6699, -0.4341, 0.8086, 0.6699, -0.4578, 0.8086, 0.6934, -0.4348, 0.8022, 0.6929, -0.4578, 0.8086, 0.6934, -0.458, 0.8066, 0.7163, -0.4348, 0.8022, 0.6929, -0.4348, 0.8022, 0.6929, -0.458, 0.8066, 0.7163, -0.4351, 0.8003, 0.7163, -0.4348, 0.8022, 0.6929, -0.4351, 0.8003, 0.7163, -0.4111, 0.8003, 0.6924, -0.4111, 0.8003, 0.6924, -0.4351, 0.8003, 0.7163, -0.4111, 0.7979, 0.7163, -0.5005, 0.8408, 0.6782, -0.5039, 0.8379, 0.6968, -0.4797, 0.8252, 0.6738, -0.4797, 0.8252, 0.6738, -0.5039, 0.8379, 0.6968, -0.4824, 0.8208, 0.6948, -0.5039, 0.8379, 0.6968, -0.5049, 0.8369, 0.7163, -0.4824, 0.8208, 0.6948, -0.4824, 0.8208, 0.6948, -0.5049, 0.8369, 0.7163, -0.4829, 0.8193, 0.7163, -0.4824, 0.8208, 0.6948, -0.4829, 0.8193, 0.7163, -0.4578, 0.8086, 0.6934, -0.4578, 0.8086, 0.6934, -0.4829, 0.8193, 0.7163, -0.458, 0.8066, 0.7163, -0.3645, 0.8066, 0.7163, -0.3647, 0.8086, 0.7393, -0.3394, 0.8193, 0.7163, -0.3394, 0.8193, 0.7163, -0.3647, 0.8086, 0.7393, -0.3401, 0.8208, 0.7378, -0.3647, 0.8086, 0.7393, -0.3665, 0.814, 0.7612, -0.3401, 0.8208, 0.7378, -0.3401, 0.8208, 0.7378, -0.3665, 0.814, 0.7612, -0.3428, 0.8252, 0.7588, -0.3401, 0.8208, 0.7378, -0.3428, 0.8252, 0.7588, -0.3186, 0.8379, 0.7358, -0.3186, 0.8379, 0.7358, -0.3428, 0.8252, 0.7588, -0.3215, 0.8408, 0.7544, -0.4111, 0.7979, 0.7163, -0.4111, 0.8003, 0.7402, -0.3875, 0.8003, 0.7163, -0.3875, 0.8003, 0.7163, -0.4111, 0.8003, 0.7402, -0.3877, 0.8022, 0.7397, -0.4111, 0.8003, 0.7402, -0.4111, 0.8066, 0.7632, -0.3877, 0.8022, 0.7397, -0.3877, 0.8022, 0.7397, -0.4111, 0.8066, 0.7632, -0.3884, 0.8086, 0.7627, -0.3877, 0.8022, 0.7397, -0.3884, 0.8086, 0.7627, -0.3647, 0.8086, 0.7393, -0.3647, 0.8086, 0.7393, -0.3884, 0.8086, 0.7627, -0.3665, 0.814, 0.7612, -0.458, 0.8066, 0.7163, -0.4578, 0.8086, 0.7393, -0.4351, 0.8003, 0.7163, -0.4351, 0.8003, 0.7163, -0.4578, 0.8086, 0.7393, -0.4348, 0.8022, 0.7397, -0.4578, 0.8086, 0.7393, -0.4561, 0.814, 0.7612, -0.4348, 0.8022, 0.7397, -0.4348, 0.8022, 0.7397, -0.4561, 0.814, 0.7612, -0.4341, 0.8086, 0.7627, -0.4348, 0.8022, 0.7397, -0.4341, 0.8086, 0.7627, -0.4111, 0.8003, 0.7402, -0.4111, 0.8003, 0.7402, -0.4341, 0.8086, 0.7627, -0.4111, 0.8066, 0.7632, -0.5049, 0.8369, 0.7163, -0.5039, 0.8379, 0.7358, -0.4829, 0.8193, 0.7163, -0.4829, 0.8193, 0.7163, -0.5039, 0.8379, 0.7358, -0.4824, 0.8208, 0.7378, -0.5039, 0.8379, 0.7358, -0.5005, 0.8408, 0.7544, -0.4824, 0.8208, 0.7378, -0.4824, 0.8208, 0.7378, -0.5005, 0.8408, 0.7544, -0.4797, 0.8252, 0.7588, -0.4824, 0.8208, 0.7378, -0.4797, 0.8252, 0.7588, -0.4578, 0.8086, 0.7393, -0.4578, 0.8086, 0.7393, -0.4797, 0.8252, 0.7588, -0.4561, 0.814, 0.7612, -0.3665, 0.814, 0.7612, -0.3689, 0.8252, 0.7847, -0.3428, 0.8252, 0.7588, -0.3428, 0.8252, 0.7588, -0.3689, 0.8252, 0.7847, -0.3469, 0.8345, 0.7803, -0.3689, 0.8252, 0.7847, -0.373, 0.8408, 0.8057, -0.3469, 0.8345, 0.7803, -0.3469, 0.8345, 0.7803, -0.373, 0.8408, 0.8057, -0.3533, 0.8462, 0.8003, -0.3469, 0.8345, 0.7803, -0.3533, 0.8462, 0.8003, -0.3271, 0.8462, 0.7744, -0.3271, 0.8462, 0.7744, -0.3533, 0.8462, 0.8003, -0.3347, 0.854, 0.7925, -0.4111, 0.8066, 0.7632, -0.4111, 0.8193, 0.7881, -0.3884, 0.8086, 0.7627, -0.3884, 0.8086, 0.7627, -0.4111, 0.8193, 0.7881, -0.3896, 0.8208, 0.7876, -0.4111, 0.8193, 0.7881, -0.4111, 0.8369, 0.8101, -0.3896, 0.8208, 0.7876, -0.3896, 0.8208, 0.7876, -0.4111, 0.8369, 0.8101, -0.3918, 0.8379, 0.8091, -0.3896, 0.8208, 0.7876, -0.3918, 0.8379, 0.8091, -0.3689, 0.8252, 0.7847, -0.3689, 0.8252, 0.7847, -0.3918, 0.8379, 0.8091, -0.373, 0.8408, 0.8057, -0.4561, 0.814, 0.7612, -0.4536, 0.8252, 0.7847, -0.4341, 0.8086, 0.7627, -0.4341, 0.8086, 0.7627, -0.4536, 0.8252, 0.7847, -0.4326, 0.8208, 0.7876, -0.4536, 0.8252, 0.7847, -0.4495, 0.8408, 0.8057, -0.4326, 0.8208, 0.7876, -0.4326, 0.8208, 0.7876, -0.4495, 0.8408, 0.8057, -0.4307, 0.8379, 0.8091, -0.4326, 0.8208, 0.7876, -0.4307, 0.8379, 0.8091, -0.4111, 0.8193, 0.7881, -0.4111, 0.8193, 0.7881, -0.4307, 0.8379, 0.8091, -0.4111, 0.8369, 0.8101, -0.5005, 0.8408, 0.7544, -0.4954, 0.8462, 0.7744, -0.4797, 0.8252, 0.7588, -0.4797, 0.8252, 0.7588, -0.4954, 0.8462, 0.7744, -0.4756, 0.8345, 0.7803, -0.4954, 0.8462, 0.7744, -0.4875, 0.854, 0.7925, -0.4756, 0.8345, 0.7803, -0.4756, 0.8345, 0.7803, -0.4875, 0.854, 0.7925, -0.4692, 0.8462, 0.8003, -0.4756, 0.8345, 0.7803, -0.4692, 0.8462, 0.8003, -0.4536, 0.8252, 0.7847, -0.4536, 0.8252, 0.7847, -0.4692, 0.8462, 0.8003, -0.4495, 0.8408, 0.8057, -0.5005, 1.0195, 0.6782, -0.5161, 0.999, 0.6738, -0.4954, 1.0137, 0.6582, -0.4954, 1.0137, 0.6582, -0.5161, 0.999, 0.6738, -0.5073, 0.9946, 0.6519, -0.5161, 0.999, 0.6738, -0.5273, 0.9751, 0.6714, -0.5073, 0.9946, 0.6519, -0.5073, 0.9946, 0.6519, -0.5273, 0.9751, 0.6714, -0.5161, 0.9727, 0.6479, -0.5073, 0.9946, 0.6519, -0.5161, 0.9727, 0.6479, -0.4954, 0.9883, 0.6323, -0.4954, 0.9883, 0.6323, -0.5161, 0.9727, 0.6479, -0.5005, 0.9688, 0.6265, -0.5049, 1.0234, 0.7163, -0.5225, 1.002, 0.7163, -0.5039, 1.0225, 0.6968, -0.5039, 1.0225, 0.6968, -0.5225, 1.002, 0.7163, -0.5205, 1.001, 0.6948, -0.5225, 1.002, 0.7163, -0.5347, 0.9771, 0.7163, -0.5205, 1.001, 0.6948, -0.5205, 1.001, 0.6948, -0.5347, 0.9771, 0.7163, -0.5327, 0.9771, 0.6934, -0.5205, 1.001, 0.6948, -0.5327, 0.9771, 0.6934, -0.5161, 0.999, 0.6738, -0.5161, 0.999, 0.6738, -0.5327, 0.9771, 0.6934, -0.5273, 0.9751, 0.6714, -0.5005, 1.0195, 0.7544, -0.5161, 0.999, 0.7588, -0.5039, 1.0225, 0.7358, -0.5039, 1.0225, 0.7358, -0.5161, 0.999, 0.7588, -0.5205, 1.001, 0.7378, -0.5161, 0.999, 0.7588, -0.5273, 0.9751, 0.7612, -0.5205, 1.001, 0.7378, -0.5205, 1.001, 0.7378, -0.5273, 0.9751, 0.7612, -0.5327, 0.9771, 0.7393, -0.5205, 1.001, 0.7378, -0.5327, 0.9771, 0.7393, -0.5225, 1.002, 0.7163, -0.5225, 1.002, 0.7163, -0.5327, 0.9771, 0.7393, -0.5347, 0.9771, 0.7163, -0.4875, 1.0068, 0.7925, -0.4954, 0.9883, 0.8003, -0.4954, 1.0137, 0.7744, -0.4954, 1.0137, 0.7744, -0.4954, 0.9883, 0.8003, -0.5073, 0.9946, 0.7808, -0.4954, 0.9883, 0.8003, -0.5005, 0.9688, 0.8057, -0.5073, 0.9946, 0.7808, -0.5073, 0.9946, 0.7808, -0.5005, 0.9688, 0.8057, -0.5161, 0.9727, 0.7847, -0.5073, 0.9946, 0.7808, -0.5161, 0.9727, 0.7847, -0.5161, 0.999, 0.7588, -0.5161, 0.999, 0.7588, -0.5161, 0.9727, 0.7847, -0.5273, 0.9751, 0.7612, -0.5273, 0.9751, 0.6714, -0.5327, 0.9531, 0.6699, -0.5161, 0.9727, 0.6479, -0.5161, 0.9727, 0.6479, -0.5327, 0.9531, 0.6699, -0.5205, 0.9517, 0.645, -0.5327, 0.9531, 0.6699, -0.5347, 0.9302, 0.6694, -0.5205, 0.9517, 0.645, -0.5205, 0.9517, 0.645, -0.5347, 0.9302, 0.6694, -0.5225, 0.9302, 0.6445, -0.5205, 0.9517, 0.645, -0.5225, 0.9302, 0.6445, -0.5039, 0.9497, 0.6235, -0.5039, 0.9497, 0.6235, -0.5225, 0.9302, 0.6445, -0.5049, 0.9302, 0.6226, -0.5347, 0.9771, 0.7163, -0.5415, 0.9541, 0.7163, -0.5327, 0.9771, 0.6934, -0.5327, 0.9771, 0.6934, -0.5415, 0.9541, 0.7163, -0.5391, 0.9541, 0.6929, -0.5415, 0.9541, 0.7163, -0.5435, 0.9302, 0.7163, -0.5391, 0.9541, 0.6929, -0.5391, 0.9541, 0.6929, -0.5435, 0.9302, 0.7163, -0.5415, 0.9302, 0.6924, -0.5391, 0.9541, 0.6929, -0.5415, 0.9302, 0.6924, -0.5327, 0.9531, 0.6699, -0.5327, 0.9531, 0.6699, -0.5415, 0.9302, 0.6924, -0.5347, 0.9302, 0.6694, -0.5273, 0.9751, 0.7612, -0.5327, 0.9531, 0.7627, -0.5327, 0.9771, 0.7393, -0.5327, 0.9771, 0.7393, -0.5327, 0.9531, 0.7627, -0.5391, 0.9541, 0.7397, -0.5327, 0.9531, 0.7627, -0.5347, 0.9302, 0.7632, -0.5391, 0.9541, 0.7397, -0.5391, 0.9541, 0.7397, -0.5347, 0.9302, 0.7632, -0.5415, 0.9302, 0.7402, -0.5391, 0.9541, 0.7397, -0.5415, 0.9302, 0.7402, -0.5415, 0.9541, 0.7163, -0.5415, 0.9541, 0.7163, -0.5415, 0.9302, 0.7402, -0.5435, 0.9302, 0.7163, -0.5005, 0.9688, 0.8057, -0.5039, 0.9497, 0.8091, -0.5161, 0.9727, 0.7847, -0.5161, 0.9727, 0.7847, -0.5039, 0.9497, 0.8091, -0.5205, 0.9517, 0.7876, -0.5039, 0.9497, 0.8091, -0.5049, 0.9302, 0.8101, -0.5205, 0.9517, 0.7876, -0.5205, 0.9517, 0.7876, -0.5049, 0.9302, 0.8101, -0.5225, 0.9302, 0.7881, -0.5205, 0.9517, 0.7876, -0.5225, 0.9302, 0.7881, -0.5327, 0.9531, 0.7627, -0.5327, 0.9531, 0.7627, -0.5225, 0.9302, 0.7881, -0.5347, 0.9302, 0.7632, -0.5347, 0.9302, 0.6694, -0.5327, 0.9077, 0.6699, -0.5225, 0.9302, 0.6445, -0.5225, 0.9302, 0.6445, -0.5327, 0.9077, 0.6699, -0.5205, 0.9087, 0.645, -0.5327, 0.9077, 0.6699, -0.5273, 0.8857, 0.6714, -0.5205, 0.9087, 0.645, -0.5205, 0.9087, 0.645, -0.5273, 0.8857, 0.6714, -0.5161, 0.8882, 0.6479, -0.5205, 0.9087, 0.645, -0.5161, 0.8882, 0.6479, -0.5039, 0.9111, 0.6235, -0.5039, 0.9111, 0.6235, -0.5161, 0.8882, 0.6479, -0.5005, 0.8921, 0.6265, -0.5435, 0.9302, 0.7163, -0.5415, 0.9067, 0.7163, -0.5415, 0.9302, 0.6924, -0.5415, 0.9302, 0.6924, -0.5415, 0.9067, 0.7163, -0.5391, 0.9067, 0.6929, -0.5415, 0.9067, 0.7163, -0.5347, 0.8833, 0.7163, -0.5391, 0.9067, 0.6929, -0.5391, 0.9067, 0.6929, -0.5347, 0.8833, 0.7163, -0.5327, 0.8838, 0.6934, -0.5391, 0.9067, 0.6929, -0.5327, 0.8838, 0.6934, -0.5327, 0.9077, 0.6699, -0.5327, 0.9077, 0.6699, -0.5327, 0.8838, 0.6934, -0.5273, 0.8857, 0.6714, -0.5347, 0.9302, 0.7632, -0.5327, 0.9077, 0.7627, -0.5415, 0.9302, 0.7402, -0.5415, 0.9302, 0.7402, -0.5327, 0.9077, 0.7627, -0.5391, 0.9067, 0.7397, -0.5327, 0.9077, 0.7627, -0.5273, 0.8857, 0.7612, -0.5391, 0.9067, 0.7397, -0.5391, 0.9067, 0.7397, -0.5273, 0.8857, 0.7612, -0.5327, 0.8838, 0.7393, -0.5391, 0.9067, 0.7397, -0.5327, 0.8838, 0.7393, -0.5415, 0.9067, 0.7163, -0.5415, 0.9067, 0.7163, -0.5327, 0.8838, 0.7393, -0.5347, 0.8833, 0.7163, -0.5049, 0.9302, 0.8101, -0.5039, 0.9111, 0.8091, -0.5225, 0.9302, 0.7881, -0.5225, 0.9302, 0.7881, -0.5039, 0.9111, 0.8091, -0.5205, 0.9087, 0.7876, -0.5039, 0.9111, 0.8091, -0.5005, 0.8921, 0.8057, -0.5205, 0.9087, 0.7876, -0.5205, 0.9087, 0.7876, -0.5005, 0.8921, 0.8057, -0.5161, 0.8882, 0.7847, -0.5205, 0.9087, 0.7876, -0.5161, 0.8882, 0.7847, -0.5327, 0.9077, 0.7627, -0.5327, 0.9077, 0.7627, -0.5161, 0.8882, 0.7847, -0.5273, 0.8857, 0.7612, -0.5273, 0.8857, 0.6714, -0.5161, 0.8618, 0.6738, -0.5161, 0.8882, 0.6479, -0.5161, 0.8882, 0.6479, -0.5161, 0.8618, 0.6738, -0.5073, 0.8662, 0.6519, -0.5161, 0.8618, 0.6738, -0.5005, 0.8408, 0.6782, -0.5073, 0.8662, 0.6519, -0.5073, 0.8662, 0.6519, -0.5005, 0.8408, 0.6782, -0.4954, 0.8462, 0.6582, -0.5073, 0.8662, 0.6519, -0.4954, 0.8462, 0.6582, -0.4954, 0.8721, 0.6323, -0.4954, 0.8721, 0.6323, -0.4954, 0.8462, 0.6582, -0.4875, 0.854, 0.6396, -0.5347, 0.8833, 0.7163, -0.5225, 0.8584, 0.7163, -0.5327, 0.8838, 0.6934, -0.5327, 0.8838, 0.6934, -0.5225, 0.8584, 0.7163, -0.5205, 0.8594, 0.6948, -0.5225, 0.8584, 0.7163, -0.5049, 0.8369, 0.7163, -0.5205, 0.8594, 0.6948, -0.5205, 0.8594, 0.6948, -0.5049, 0.8369, 0.7163, -0.5039, 0.8379, 0.6968, -0.5205, 0.8594, 0.6948, -0.5039, 0.8379, 0.6968, -0.5161, 0.8618, 0.6738, -0.5161, 0.8618, 0.6738, -0.5039, 0.8379, 0.6968, -0.5005, 0.8408, 0.6782, -0.5273, 0.8857, 0.7612, -0.5161, 0.8618, 0.7588, -0.5327, 0.8838, 0.7393, -0.5327, 0.8838, 0.7393, -0.5161, 0.8618, 0.7588, -0.5205, 0.8594, 0.7378, -0.5161, 0.8618, 0.7588, -0.5005, 0.8408, 0.7544, -0.5205, 0.8594, 0.7378, -0.5205, 0.8594, 0.7378, -0.5005, 0.8408, 0.7544, -0.5039, 0.8379, 0.7358, -0.5205, 0.8594, 0.7378, -0.5039, 0.8379, 0.7358, -0.5225, 0.8584, 0.7163, -0.5225, 0.8584, 0.7163, -0.5039, 0.8379, 0.7358, -0.5049, 0.8369, 0.7163, -0.5005, 0.8921, 0.8057, -0.4954, 0.8721, 0.8003, -0.5161, 0.8882, 0.7847, -0.5161, 0.8882, 0.7847, -0.4954, 0.8721, 0.8003, -0.5073, 0.8662, 0.7808, -0.4954, 0.8721, 0.8003, -0.4875, 0.854, 0.7925, -0.5073, 0.8662, 0.7808, -0.5073, 0.8662, 0.7808, -0.4875, 0.854, 0.7925, -0.4954, 0.8462, 0.7744, -0.5073, 0.8662, 0.7808, -0.4954, 0.8462, 0.7744, -0.5161, 0.8618, 0.7588, -0.5161, 0.8618, 0.7588, -0.4954, 0.8462, 0.7744, -0.5005, 0.8408, 0.7544, -0.4495, 1.0195, 0.8057, -0.4536, 0.999, 0.8213, -0.4692, 1.0137, 0.8003, -0.4692, 1.0137, 0.8003, -0.4536, 0.999, 0.8213, -0.4756, 0.9946, 0.8125, -0.4536, 0.999, 0.8213, -0.4561, 0.9751, 0.8325, -0.4756, 0.9946, 0.8125, -0.4756, 0.9946, 0.8125, -0.4561, 0.9751, 0.8325, -0.4797, 0.9727, 0.8213, -0.4756, 0.9946, 0.8125, -0.4797, 0.9727, 0.8213, -0.4954, 0.9883, 0.8003, -0.4954, 0.9883, 0.8003, -0.4797, 0.9727, 0.8213, -0.5005, 0.9688, 0.8057, -0.4111, 1.0234, 0.8101, -0.4111, 1.002, 0.8276, -0.4307, 1.0225, 0.8091, -0.4307, 1.0225, 0.8091, -0.4111, 1.002, 0.8276, -0.4326, 1.001, 0.8257, -0.4111, 1.002, 0.8276, -0.4111, 0.9771, 0.8398, -0.4326, 1.001, 0.8257, -0.4326, 1.001, 0.8257, -0.4111, 0.9771, 0.8398, -0.4341, 0.9771, 0.8379, -0.4326, 1.001, 0.8257, -0.4341, 0.9771, 0.8379, -0.4536, 0.999, 0.8213, -0.4536, 0.999, 0.8213, -0.4341, 0.9771, 0.8379, -0.4561, 0.9751, 0.8325, -0.373, 1.0195, 0.8057, -0.3689, 0.999, 0.8213, -0.3918, 1.0225, 0.8091, -0.3918, 1.0225, 0.8091, -0.3689, 0.999, 0.8213, -0.3896, 1.001, 0.8257, -0.3689, 0.999, 0.8213, -0.3665, 0.9751, 0.8325, -0.3896, 1.001, 0.8257, -0.3896, 1.001, 0.8257, -0.3665, 0.9751, 0.8325, -0.3884, 0.9771, 0.8379, -0.3896, 1.001, 0.8257, -0.3884, 0.9771, 0.8379, -0.4111, 1.002, 0.8276, -0.4111, 1.002, 0.8276, -0.3884, 0.9771, 0.8379, -0.4111, 0.9771, 0.8398, -0.3347, 1.0068, 0.7925, -0.3271, 0.9883, 0.8003, -0.3533, 1.0137, 0.8003, -0.3533, 1.0137, 0.8003, -0.3271, 0.9883, 0.8003, -0.3469, 0.9946, 0.8125, -0.3271, 0.9883, 0.8003, -0.3215, 0.9688, 0.8057, -0.3469, 0.9946, 0.8125, -0.3469, 0.9946, 0.8125, -0.3215, 0.9688, 0.8057, -0.3428, 0.9727, 0.8213, -0.3469, 0.9946, 0.8125, -0.3428, 0.9727, 0.8213, -0.3689, 0.999, 0.8213, -0.3689, 0.999, 0.8213, -0.3428, 0.9727, 0.8213, -0.3665, 0.9751, 0.8325, -0.4561, 0.9751, 0.8325, -0.4578, 0.9531, 0.8379, -0.4797, 0.9727, 0.8213, -0.4797, 0.9727, 0.8213, -0.4578, 0.9531, 0.8379, -0.4824, 0.9517, 0.8257, -0.4578, 0.9531, 0.8379, -0.458, 0.9302, 0.8398, -0.4824, 0.9517, 0.8257, -0.4824, 0.9517, 0.8257, -0.458, 0.9302, 0.8398, -0.4829, 0.9302, 0.8276, -0.4824, 0.9517, 0.8257, -0.4829, 0.9302, 0.8276, -0.5039, 0.9497, 0.8091, -0.5039, 0.9497, 0.8091, -0.4829, 0.9302, 0.8276, -0.5049, 0.9302, 0.8101, -0.4111, 0.9771, 0.8398, -0.4111, 0.9541, 0.8467, -0.4341, 0.9771, 0.8379, -0.4341, 0.9771, 0.8379, -0.4111, 0.9541, 0.8467, -0.4348, 0.9541, 0.8442, -0.4111, 0.9541, 0.8467, -0.4111, 0.9302, 0.8486, -0.4348, 0.9541, 0.8442, -0.4348, 0.9541, 0.8442, -0.4111, 0.9302, 0.8486, -0.4351, 0.9302, 0.8467, -0.4348, 0.9541, 0.8442, -0.4351, 0.9302, 0.8467, -0.4578, 0.9531, 0.8379, -0.4578, 0.9531, 0.8379, -0.4351, 0.9302, 0.8467, -0.458, 0.9302, 0.8398, -0.3665, 0.9751, 0.8325, -0.3647, 0.9531, 0.8379, -0.3884, 0.9771, 0.8379, -0.3884, 0.9771, 0.8379, -0.3647, 0.9531, 0.8379, -0.3877, 0.9541, 0.8442, -0.3647, 0.9531, 0.8379, -0.3645, 0.9302, 0.8398, -0.3877, 0.9541, 0.8442, -0.3877, 0.9541, 0.8442, -0.3645, 0.9302, 0.8398, -0.3875, 0.9302, 0.8467, -0.3877, 0.9541, 0.8442, -0.3875, 0.9302, 0.8467, -0.4111, 0.9541, 0.8467, -0.4111, 0.9541, 0.8467, -0.3875, 0.9302, 0.8467, -0.4111, 0.9302, 0.8486, -0.3215, 0.9688, 0.8057, -0.3186, 0.9497, 0.8091, -0.3428, 0.9727, 0.8213, -0.3428, 0.9727, 0.8213, -0.3186, 0.9497, 0.8091, -0.3401, 0.9517, 0.8257, -0.3186, 0.9497, 0.8091, -0.3176, 0.9302, 0.8101, -0.3401, 0.9517, 0.8257, -0.3401, 0.9517, 0.8257, -0.3176, 0.9302, 0.8101, -0.3394, 0.9302, 0.8276, -0.3401, 0.9517, 0.8257, -0.3394, 0.9302, 0.8276, -0.3647, 0.9531, 0.8379, -0.3647, 0.9531, 0.8379, -0.3394, 0.9302, 0.8276, -0.3645, 0.9302, 0.8398, -0.458, 0.9302, 0.8398, -0.4578, 0.9077, 0.8379, -0.4829, 0.9302, 0.8276, -0.4829, 0.9302, 0.8276, -0.4578, 0.9077, 0.8379, -0.4824, 0.9087, 0.8257, -0.4578, 0.9077, 0.8379, -0.4561, 0.8857, 0.8325, -0.4824, 0.9087, 0.8257, -0.4824, 0.9087, 0.8257, -0.4561, 0.8857, 0.8325, -0.4797, 0.8882, 0.8213, -0.4824, 0.9087, 0.8257, -0.4797, 0.8882, 0.8213, -0.5039, 0.9111, 0.8091, -0.5039, 0.9111, 0.8091, -0.4797, 0.8882, 0.8213, -0.5005, 0.8921, 0.8057, -0.4111, 0.9302, 0.8486, -0.4111, 0.9067, 0.8467, -0.4351, 0.9302, 0.8467, -0.4351, 0.9302, 0.8467, -0.4111, 0.9067, 0.8467, -0.4348, 0.9067, 0.8442, -0.4111, 0.9067, 0.8467, -0.4111, 0.8833, 0.8398, -0.4348, 0.9067, 0.8442, -0.4348, 0.9067, 0.8442, -0.4111, 0.8833, 0.8398, -0.4341, 0.8838, 0.8379, -0.4348, 0.9067, 0.8442, -0.4341, 0.8838, 0.8379, -0.4578, 0.9077, 0.8379, -0.4578, 0.9077, 0.8379, -0.4341, 0.8838, 0.8379, -0.4561, 0.8857, 0.8325, -0.3645, 0.9302, 0.8398, -0.3647, 0.9077, 0.8379, -0.3875, 0.9302, 0.8467, -0.3875, 0.9302, 0.8467, -0.3647, 0.9077, 0.8379, -0.3877, 0.9067, 0.8442, -0.3647, 0.9077, 0.8379, -0.3665, 0.8857, 0.8325, -0.3877, 0.9067, 0.8442, -0.3877, 0.9067, 0.8442, -0.3665, 0.8857, 0.8325, -0.3884, 0.8838, 0.8379, -0.3877, 0.9067, 0.8442, -0.3884, 0.8838, 0.8379, -0.4111, 0.9067, 0.8467, -0.4111, 0.9067, 0.8467, -0.3884, 0.8838, 0.8379, -0.4111, 0.8833, 0.8398, -0.3176, 0.9302, 0.8101, -0.3186, 0.9111, 0.8091, -0.3394, 0.9302, 0.8276, -0.3394, 0.9302, 0.8276, -0.3186, 0.9111, 0.8091, -0.3401, 0.9087, 0.8257, -0.3186, 0.9111, 0.8091, -0.3215, 0.8921, 0.8057, -0.3401, 0.9087, 0.8257, -0.3401, 0.9087, 0.8257, -0.3215, 0.8921, 0.8057, -0.3428, 0.8882, 0.8213, -0.3401, 0.9087, 0.8257, -0.3428, 0.8882, 0.8213, -0.3647, 0.9077, 0.8379, -0.3647, 0.9077, 0.8379, -0.3428, 0.8882, 0.8213, -0.3665, 0.8857, 0.8325, -0.4561, 0.8857, 0.8325, -0.4536, 0.8618, 0.8213, -0.4797, 0.8882, 0.8213, -0.4797, 0.8882, 0.8213, -0.4536, 0.8618, 0.8213, -0.4756, 0.8662, 0.8125, -0.4536, 0.8618, 0.8213, -0.4495, 0.8408, 0.8057, -0.4756, 0.8662, 0.8125, -0.4756, 0.8662, 0.8125, -0.4495, 0.8408, 0.8057, -0.4692, 0.8462, 0.8003, -0.4756, 0.8662, 0.8125, -0.4692, 0.8462, 0.8003, -0.4954, 0.8721, 0.8003, -0.4954, 0.8721, 0.8003, -0.4692, 0.8462, 0.8003, -0.4875, 0.854, 0.7925, -0.4111, 0.8833, 0.8398, -0.4111, 0.8584, 0.8276, -0.4341, 0.8838, 0.8379, -0.4341, 0.8838, 0.8379, -0.4111, 0.8584, 0.8276, -0.4326, 0.8594, 0.8257, -0.4111, 0.8584, 0.8276, -0.4111, 0.8369, 0.8101, -0.4326, 0.8594, 0.8257, -0.4326, 0.8594, 0.8257, -0.4111, 0.8369, 0.8101, -0.4307, 0.8379, 0.8091, -0.4326, 0.8594, 0.8257, -0.4307, 0.8379, 0.8091, -0.4536, 0.8618, 0.8213, -0.4536, 0.8618, 0.8213, -0.4307, 0.8379, 0.8091, -0.4495, 0.8408, 0.8057, -0.3665, 0.8857, 0.8325, -0.3689, 0.8618, 0.8213, -0.3884, 0.8838, 0.8379, -0.3884, 0.8838, 0.8379, -0.3689, 0.8618, 0.8213, -0.3896, 0.8594, 0.8257, -0.3689, 0.8618, 0.8213, -0.373, 0.8408, 0.8057, -0.3896, 0.8594, 0.8257, -0.3896, 0.8594, 0.8257, -0.373, 0.8408, 0.8057, -0.3918, 0.8379, 0.8091, -0.3896, 0.8594, 0.8257, -0.3918, 0.8379, 0.8091, -0.4111, 0.8584, 0.8276, -0.4111, 0.8584, 0.8276, -0.3918, 0.8379, 0.8091, -0.4111, 0.8369, 0.8101, -0.3215, 0.8921, 0.8057, -0.3271, 0.8721, 0.8003, -0.3428, 0.8882, 0.8213, -0.3428, 0.8882, 0.8213, -0.3271, 0.8721, 0.8003, -0.3469, 0.8662, 0.8125, -0.3271, 0.8721, 0.8003, -0.3347, 0.854, 0.7925, -0.3469, 0.8662, 0.8125, -0.3469, 0.8662, 0.8125, -0.3347, 0.854, 0.7925, -0.3533, 0.8462, 0.8003, -0.3469, 0.8662, 0.8125, -0.3533, 0.8462, 0.8003, -0.3689, 0.8618, 0.8213, -0.3689, 0.8618, 0.8213, -0.3533, 0.8462, 0.8003, -0.373, 0.8408, 0.8057, -0.3215, 1.0195, 0.7544, -0.3064, 0.999, 0.7588, -0.3271, 1.0137, 0.7744, -0.3271, 1.0137, 0.7744, -0.3064, 0.999, 0.7588, -0.3152, 0.9946, 0.7808, -0.3064, 0.999, 0.7588, -0.2949, 0.9751, 0.7612, -0.3152, 0.9946, 0.7808, -0.3152, 0.9946, 0.7808, -0.2949, 0.9751, 0.7612, -0.3064, 0.9727, 0.7847, -0.3152, 0.9946, 0.7808, -0.3064, 0.9727, 0.7847, -0.3271, 0.9883, 0.8003, -0.3271, 0.9883, 0.8003, -0.3064, 0.9727, 0.7847, -0.3215, 0.9688, 0.8057, -0.3176, 1.0234, 0.7163, -0.3, 1.002, 0.7163, -0.3186, 1.0225, 0.7358, -0.3186, 1.0225, 0.7358, -0.3, 1.002, 0.7163, -0.3018, 1.001, 0.7378, -0.3, 1.002, 0.7163, -0.2874, 0.9771, 0.7163, -0.3018, 1.001, 0.7378, -0.3018, 1.001, 0.7378, -0.2874, 0.9771, 0.7163, -0.2893, 0.9771, 0.7393, -0.3018, 1.001, 0.7378, -0.2893, 0.9771, 0.7393, -0.3064, 0.999, 0.7588, -0.3064, 0.999, 0.7588, -0.2893, 0.9771, 0.7393, -0.2949, 0.9751, 0.7612, -0.3215, 1.0195, 0.6782, -0.3064, 0.999, 0.6738, -0.3186, 1.0225, 0.6968, -0.3186, 1.0225, 0.6968, -0.3064, 0.999, 0.6738, -0.3018, 1.001, 0.6948, -0.3064, 0.999, 0.6738, -0.2949, 0.9751, 0.6714, -0.3018, 1.001, 0.6948, -0.3018, 1.001, 0.6948, -0.2949, 0.9751, 0.6714, -0.2893, 0.9771, 0.6934, -0.3018, 1.001, 0.6948, -0.2893, 0.9771, 0.6934, -0.3, 1.002, 0.7163, -0.3, 1.002, 0.7163, -0.2893, 0.9771, 0.6934, -0.2874, 0.9771, 0.7163, -0.3347, 1.0068, 0.6396, -0.3271, 0.9883, 0.6323, -0.3271, 1.0137, 0.6582, -0.3271, 1.0137, 0.6582, -0.3271, 0.9883, 0.6323, -0.3152, 0.9946, 0.6519, -0.3271, 0.9883, 0.6323, -0.3215, 0.9688, 0.6265, -0.3152, 0.9946, 0.6519, -0.3152, 0.9946, 0.6519, -0.3215, 0.9688, 0.6265, -0.3064, 0.9727, 0.6479, -0.3152, 0.9946, 0.6519, -0.3064, 0.9727, 0.6479, -0.3064, 0.999, 0.6738, -0.3064, 0.999, 0.6738, -0.3064, 0.9727, 0.6479, -0.2949, 0.9751, 0.6714, -0.2949, 0.9751, 0.7612, -0.2893, 0.9531, 0.7627, -0.3064, 0.9727, 0.7847, -0.3064, 0.9727, 0.7847, -0.2893, 0.9531, 0.7627, -0.3018, 0.9517, 0.7876, -0.2893, 0.9531, 0.7627, -0.2874, 0.9302, 0.7632, -0.3018, 0.9517, 0.7876, -0.3018, 0.9517, 0.7876, -0.2874, 0.9302, 0.7632, -0.3, 0.9302, 0.7881, -0.3018, 0.9517, 0.7876, -0.3, 0.9302, 0.7881, -0.3186, 0.9497, 0.8091, -0.3186, 0.9497, 0.8091, -0.3, 0.9302, 0.7881, -0.3176, 0.9302, 0.8101, -0.2874, 0.9771, 0.7163, -0.281, 0.9541, 0.7163, -0.2893, 0.9771, 0.7393, -0.2893, 0.9771, 0.7393, -0.281, 0.9541, 0.7163, -0.2832, 0.9541, 0.7397, -0.281, 0.9541, 0.7163, -0.2788, 0.9302, 0.7163, -0.2832, 0.9541, 0.7397, -0.2832, 0.9541, 0.7397, -0.2788, 0.9302, 0.7163, -0.281, 0.9302, 0.7402, -0.2832, 0.9541, 0.7397, -0.281, 0.9302, 0.7402, -0.2893, 0.9531, 0.7627, -0.2893, 0.9531, 0.7627, -0.281, 0.9302, 0.7402, -0.2874, 0.9302, 0.7632, -0.2949, 0.9751, 0.6714, -0.2893, 0.9531, 0.6699, -0.2893, 0.9771, 0.6934, -0.2893, 0.9771, 0.6934, -0.2893, 0.9531, 0.6699, -0.2832, 0.9541, 0.6929, -0.2893, 0.9531, 0.6699, -0.2874, 0.9302, 0.6694, -0.2832, 0.9541, 0.6929, -0.2832, 0.9541, 0.6929, -0.2874, 0.9302, 0.6694, -0.281, 0.9302, 0.6924, -0.2832, 0.9541, 0.6929, -0.281, 0.9302, 0.6924, -0.281, 0.9541, 0.7163, -0.281, 0.9541, 0.7163, -0.281, 0.9302, 0.6924, -0.2788, 0.9302, 0.7163, -0.3215, 0.9688, 0.6265, -0.3186, 0.9497, 0.6235, -0.3064, 0.9727, 0.6479, -0.3064, 0.9727, 0.6479, -0.3186, 0.9497, 0.6235, -0.3018, 0.9517, 0.645, -0.3186, 0.9497, 0.6235, -0.3176, 0.9302, 0.6226, -0.3018, 0.9517, 0.645, -0.3018, 0.9517, 0.645, -0.3176, 0.9302, 0.6226, -0.3, 0.9302, 0.6445, -0.3018, 0.9517, 0.645, -0.3, 0.9302, 0.6445, -0.2893, 0.9531, 0.6699, -0.2893, 0.9531, 0.6699, -0.3, 0.9302, 0.6445, -0.2874, 0.9302, 0.6694, -0.2874, 0.9302, 0.7632, -0.2893, 0.9077, 0.7627, -0.3, 0.9302, 0.7881, -0.3, 0.9302, 0.7881, -0.2893, 0.9077, 0.7627, -0.3018, 0.9087, 0.7876, -0.2893, 0.9077, 0.7627, -0.2949, 0.8857, 0.7612, -0.3018, 0.9087, 0.7876, -0.3018, 0.9087, 0.7876, -0.2949, 0.8857, 0.7612, -0.3064, 0.8882, 0.7847, -0.3018, 0.9087, 0.7876, -0.3064, 0.8882, 0.7847, -0.3186, 0.9111, 0.8091, -0.3186, 0.9111, 0.8091, -0.3064, 0.8882, 0.7847, -0.3215, 0.8921, 0.8057, -0.2788, 0.9302, 0.7163, -0.281, 0.9067, 0.7163, -0.281, 0.9302, 0.7402, -0.281, 0.9302, 0.7402, -0.281, 0.9067, 0.7163, -0.2832, 0.9067, 0.7397, -0.281, 0.9067, 0.7163, -0.2874, 0.8833, 0.7163, -0.2832, 0.9067, 0.7397, -0.2832, 0.9067, 0.7397, -0.2874, 0.8833, 0.7163, -0.2893, 0.8838, 0.7393, -0.2832, 0.9067, 0.7397, -0.2893, 0.8838, 0.7393, -0.2893, 0.9077, 0.7627, -0.2893, 0.9077, 0.7627, -0.2893, 0.8838, 0.7393, -0.2949, 0.8857, 0.7612, -0.2874, 0.9302, 0.6694, -0.2893, 0.9077, 0.6699, -0.281, 0.9302, 0.6924, -0.281, 0.9302, 0.6924, -0.2893, 0.9077, 0.6699, -0.2832, 0.9067, 0.6929, -0.2893, 0.9077, 0.6699, -0.2949, 0.8857, 0.6714, -0.2832, 0.9067, 0.6929, -0.2832, 0.9067, 0.6929, -0.2949, 0.8857, 0.6714, -0.2893, 0.8838, 0.6934, -0.2832, 0.9067, 0.6929, -0.2893, 0.8838, 0.6934, -0.281, 0.9067, 0.7163, -0.281, 0.9067, 0.7163, -0.2893, 0.8838, 0.6934, -0.2874, 0.8833, 0.7163, -0.3176, 0.9302, 0.6226, -0.3186, 0.9111, 0.6235, -0.3, 0.9302, 0.6445, -0.3, 0.9302, 0.6445, -0.3186, 0.9111, 0.6235, -0.3018, 0.9087, 0.645, -0.3186, 0.9111, 0.6235, -0.3215, 0.8921, 0.6265, -0.3018, 0.9087, 0.645, -0.3018, 0.9087, 0.645, -0.3215, 0.8921, 0.6265, -0.3064, 0.8882, 0.6479, -0.3018, 0.9087, 0.645, -0.3064, 0.8882, 0.6479, -0.2893, 0.9077, 0.6699, -0.2893, 0.9077, 0.6699, -0.3064, 0.8882, 0.6479, -0.2949, 0.8857, 0.6714, -0.2949, 0.8857, 0.7612, -0.3064, 0.8618, 0.7588, -0.3064, 0.8882, 0.7847, -0.3064, 0.8882, 0.7847, -0.3064, 0.8618, 0.7588, -0.3152, 0.8662, 0.7808, -0.3064, 0.8618, 0.7588, -0.3215, 0.8408, 0.7544, -0.3152, 0.8662, 0.7808, -0.3152, 0.8662, 0.7808, -0.3215, 0.8408, 0.7544, -0.3271, 0.8462, 0.7744, -0.3152, 0.8662, 0.7808, -0.3271, 0.8462, 0.7744, -0.3271, 0.8721, 0.8003, -0.3271, 0.8721, 0.8003, -0.3271, 0.8462, 0.7744, -0.3347, 0.854, 0.7925, -0.2874, 0.8833, 0.7163, -0.3, 0.8584, 0.7163, -0.2893, 0.8838, 0.7393, -0.2893, 0.8838, 0.7393, -0.3, 0.8584, 0.7163, -0.3018, 0.8594, 0.7378, -0.3, 0.8584, 0.7163, -0.3176, 0.8369, 0.7163, -0.3018, 0.8594, 0.7378, -0.3018, 0.8594, 0.7378, -0.3176, 0.8369, 0.7163, -0.3186, 0.8379, 0.7358, -0.3018, 0.8594, 0.7378, -0.3186, 0.8379, 0.7358, -0.3064, 0.8618, 0.7588, -0.3064, 0.8618, 0.7588, -0.3186, 0.8379, 0.7358, -0.3215, 0.8408, 0.7544, -0.2949, 0.8857, 0.6714, -0.3064, 0.8618, 0.6738, -0.2893, 0.8838, 0.6934, -0.2893, 0.8838, 0.6934, -0.3064, 0.8618, 0.6738, -0.3018, 0.8594, 0.6948, -0.3064, 0.8618, 0.6738, -0.3215, 0.8408, 0.6782, -0.3018, 0.8594, 0.6948, -0.3018, 0.8594, 0.6948, -0.3215, 0.8408, 0.6782, -0.3186, 0.8379, 0.6968, -0.3018, 0.8594, 0.6948, -0.3186, 0.8379, 0.6968, -0.3, 0.8584, 0.7163, -0.3, 0.8584, 0.7163, -0.3186, 0.8379, 0.6968, -0.3176, 0.8369, 0.7163, -0.3215, 0.8921, 0.6265, -0.3271, 0.8721, 0.6323, -0.3064, 0.8882, 0.6479, -0.3064, 0.8882, 0.6479, -0.3271, 0.8721, 0.6323, -0.3152, 0.8662, 0.6519, -0.3271, 0.8721, 0.6323, -0.3347, 0.854, 0.6396, -0.3152, 0.8662, 0.6519, -0.3152, 0.8662, 0.6519, -0.3347, 0.854, 0.6396, -0.3271, 0.8462, 0.6582, -0.3152, 0.8662, 0.6519, -0.3271, 0.8462, 0.6582, -0.3064, 0.8618, 0.6738, -0.3064, 0.8618, 0.6738, -0.3271, 0.8462, 0.6582, -0.3215, 0.8408, 0.6782, -0.373, 1.0195, 0.6265, -0.3689, 0.999, 0.6113, -0.3533, 1.0137, 0.6323, -0.3533, 1.0137, 0.6323, -0.3689, 0.999, 0.6113, -0.3469, 0.9946, 0.6201, -0.3689, 0.999, 0.6113, -0.3665, 0.9751, 0.6001, -0.3469, 0.9946, 0.6201, -0.3469, 0.9946, 0.6201, -0.3665, 0.9751, 0.6001, -0.3428, 0.9727, 0.6113, -0.3469, 0.9946, 0.6201, -0.3428, 0.9727, 0.6113, -0.3271, 0.9883, 0.6323, -0.3271, 0.9883, 0.6323, -0.3428, 0.9727, 0.6113, -0.3215, 0.9688, 0.6265, -0.4111, 1.0234, 0.6226, -0.4111, 1.002, 0.605, -0.3918, 1.0225, 0.6235, -0.3918, 1.0225, 0.6235, -0.4111, 1.002, 0.605, -0.3896, 1.001, 0.6069, -0.4111, 1.002, 0.605, -0.4111, 0.9771, 0.5923, -0.3896, 1.001, 0.6069, -0.3896, 1.001, 0.6069, -0.4111, 0.9771, 0.5923, -0.3884, 0.9771, 0.5942, -0.3896, 1.001, 0.6069, -0.3884, 0.9771, 0.5942, -0.3689, 0.999, 0.6113, -0.3689, 0.999, 0.6113, -0.3884, 0.9771, 0.5942, -0.3665, 0.9751, 0.6001, -0.4495, 1.0195, 0.6265, -0.4536, 0.999, 0.6113, -0.4307, 1.0225, 0.6235, -0.4307, 1.0225, 0.6235, -0.4536, 0.999, 0.6113, -0.4326, 1.001, 0.6069, -0.4536, 0.999, 0.6113, -0.4561, 0.9751, 0.6001, -0.4326, 1.001, 0.6069, -0.4326, 1.001, 0.6069, -0.4561, 0.9751, 0.6001, -0.4341, 0.9771, 0.5942, -0.4326, 1.001, 0.6069, -0.4341, 0.9771, 0.5942, -0.4111, 1.002, 0.605, -0.4111, 1.002, 0.605, -0.4341, 0.9771, 0.5942, -0.4111, 0.9771, 0.5923, -0.4875, 1.0068, 0.6396, -0.4954, 0.9883, 0.6323, -0.4692, 1.0137, 0.6323, -0.4692, 1.0137, 0.6323, -0.4954, 0.9883, 0.6323, -0.4756, 0.9946, 0.6201, -0.4954, 0.9883, 0.6323, -0.5005, 0.9688, 0.6265, -0.4756, 0.9946, 0.6201, -0.4756, 0.9946, 0.6201, -0.5005, 0.9688, 0.6265, -0.4797, 0.9727, 0.6113, -0.4756, 0.9946, 0.6201, -0.4797, 0.9727, 0.6113, -0.4536, 0.999, 0.6113, -0.4536, 0.999, 0.6113, -0.4797, 0.9727, 0.6113, -0.4561, 0.9751, 0.6001, -0.3665, 0.9751, 0.6001, -0.3647, 0.9531, 0.5942, -0.3428, 0.9727, 0.6113, -0.3428, 0.9727, 0.6113, -0.3647, 0.9531, 0.5942, -0.3401, 0.9517, 0.6069, -0.3647, 0.9531, 0.5942, -0.3645, 0.9302, 0.5923, -0.3401, 0.9517, 0.6069, -0.3401, 0.9517, 0.6069, -0.3645, 0.9302, 0.5923, -0.3394, 0.9302, 0.605, -0.3401, 0.9517, 0.6069, -0.3394, 0.9302, 0.605, -0.3186, 0.9497, 0.6235, -0.3186, 0.9497, 0.6235, -0.3394, 0.9302, 0.605, -0.3176, 0.9302, 0.6226, -0.4111, 0.9771, 0.5923, -0.4111, 0.9541, 0.5859, -0.3884, 0.9771, 0.5942, -0.3884, 0.9771, 0.5942, -0.4111, 0.9541, 0.5859, -0.3877, 0.9541, 0.5884, -0.4111, 0.9541, 0.5859, -0.4111, 0.9302, 0.584, -0.3877, 0.9541, 0.5884, -0.3877, 0.9541, 0.5884, -0.4111, 0.9302, 0.584, -0.3875, 0.9302, 0.5859, -0.3877, 0.9541, 0.5884, -0.3875, 0.9302, 0.5859, -0.3647, 0.9531, 0.5942, -0.3647, 0.9531, 0.5942, -0.3875, 0.9302, 0.5859, -0.3645, 0.9302, 0.5923, -0.4561, 0.9751, 0.6001, -0.4578, 0.9531, 0.5942, -0.4341, 0.9771, 0.5942, -0.4341, 0.9771, 0.5942, -0.4578, 0.9531, 0.5942, -0.4348, 0.9541, 0.5884, -0.4578, 0.9531, 0.5942, -0.458, 0.9302, 0.5923, -0.4348, 0.9541, 0.5884, -0.4348, 0.9541, 0.5884, -0.458, 0.9302, 0.5923, -0.4351, 0.9302, 0.5859, -0.4348, 0.9541, 0.5884, -0.4351, 0.9302, 0.5859, -0.4111, 0.9541, 0.5859, -0.4111, 0.9541, 0.5859, -0.4351, 0.9302, 0.5859, -0.4111, 0.9302, 0.584, -0.5005, 0.9688, 0.6265, -0.5039, 0.9497, 0.6235, -0.4797, 0.9727, 0.6113, -0.4797, 0.9727, 0.6113, -0.5039, 0.9497, 0.6235, -0.4824, 0.9517, 0.6069, -0.5039, 0.9497, 0.6235, -0.5049, 0.9302, 0.6226, -0.4824, 0.9517, 0.6069, -0.4824, 0.9517, 0.6069, -0.5049, 0.9302, 0.6226, -0.4829, 0.9302, 0.605, -0.4824, 0.9517, 0.6069, -0.4829, 0.9302, 0.605, -0.4578, 0.9531, 0.5942, -0.4578, 0.9531, 0.5942, -0.4829, 0.9302, 0.605, -0.458, 0.9302, 0.5923, -0.3645, 0.9302, 0.5923, -0.3647, 0.9077, 0.5942, -0.3394, 0.9302, 0.605, -0.3394, 0.9302, 0.605, -0.3647, 0.9077, 0.5942, -0.3401, 0.9087, 0.6069, -0.3647, 0.9077, 0.5942, -0.3665, 0.8857, 0.6001, -0.3401, 0.9087, 0.6069, -0.3401, 0.9087, 0.6069, -0.3665, 0.8857, 0.6001, -0.3428, 0.8882, 0.6113, -0.3401, 0.9087, 0.6069, -0.3428, 0.8882, 0.6113, -0.3186, 0.9111, 0.6235, -0.3186, 0.9111, 0.6235, -0.3428, 0.8882, 0.6113, -0.3215, 0.8921, 0.6265, -0.4111, 0.9302, 0.584, -0.4111, 0.9067, 0.5859, -0.3875, 0.9302, 0.5859, -0.3875, 0.9302, 0.5859, -0.4111, 0.9067, 0.5859, -0.3877, 0.9067, 0.5884, -0.4111, 0.9067, 0.5859, -0.4111, 0.8833, 0.5923, -0.3877, 0.9067, 0.5884, -0.3877, 0.9067, 0.5884, -0.4111, 0.8833, 0.5923, -0.3884, 0.8838, 0.5942, -0.3877, 0.9067, 0.5884, -0.3884, 0.8838, 0.5942, -0.3647, 0.9077, 0.5942, -0.3647, 0.9077, 0.5942, -0.3884, 0.8838, 0.5942, -0.3665, 0.8857, 0.6001, -0.458, 0.9302, 0.5923, -0.4578, 0.9077, 0.5942, -0.4351, 0.9302, 0.5859, -0.4351, 0.9302, 0.5859, -0.4578, 0.9077, 0.5942, -0.4348, 0.9067, 0.5884, -0.4578, 0.9077, 0.5942, -0.4561, 0.8857, 0.6001, -0.4348, 0.9067, 0.5884, -0.4348, 0.9067, 0.5884, -0.4561, 0.8857, 0.6001, -0.4341, 0.8838, 0.5942, -0.4348, 0.9067, 0.5884, -0.4341, 0.8838, 0.5942, -0.4111, 0.9067, 0.5859, -0.4111, 0.9067, 0.5859, -0.4341, 0.8838, 0.5942, -0.4111, 0.8833, 0.5923, -0.5049, 0.9302, 0.6226, -0.5039, 0.9111, 0.6235, -0.4829, 0.9302, 0.605, -0.4829, 0.9302, 0.605, -0.5039, 0.9111, 0.6235, -0.4824, 0.9087, 0.6069, -0.5039, 0.9111, 0.6235, -0.5005, 0.8921, 0.6265, -0.4824, 0.9087, 0.6069, -0.4824, 0.9087, 0.6069, -0.5005, 0.8921, 0.6265, -0.4797, 0.8882, 0.6113, -0.4824, 0.9087, 0.6069, -0.4797, 0.8882, 0.6113, -0.4578, 0.9077, 0.5942, -0.4578, 0.9077, 0.5942, -0.4797, 0.8882, 0.6113, -0.4561, 0.8857, 0.6001, -0.3665, 0.8857, 0.6001, -0.3689, 0.8618, 0.6113, -0.3428, 0.8882, 0.6113, -0.3428, 0.8882, 0.6113, -0.3689, 0.8618, 0.6113, -0.3469, 0.8662, 0.6201, -0.3689, 0.8618, 0.6113, -0.373, 0.8408, 0.6265, -0.3469, 0.8662, 0.6201, -0.3469, 0.8662, 0.6201, -0.373, 0.8408, 0.6265, -0.3533, 0.8462, 0.6323, -0.3469, 0.8662, 0.6201, -0.3533, 0.8462, 0.6323, -0.3271, 0.8721, 0.6323, -0.3271, 0.8721, 0.6323, -0.3533, 0.8462, 0.6323, -0.3347, 0.854, 0.6396, -0.4111, 0.8833, 0.5923, -0.4111, 0.8584, 0.605, -0.3884, 0.8838, 0.5942, -0.3884, 0.8838, 0.5942, -0.4111, 0.8584, 0.605, -0.3896, 0.8594, 0.6069, -0.4111, 0.8584, 0.605, -0.4111, 0.8369, 0.6226, -0.3896, 0.8594, 0.6069, -0.3896, 0.8594, 0.6069, -0.4111, 0.8369, 0.6226, -0.3918, 0.8379, 0.6235, -0.3896, 0.8594, 0.6069, -0.3918, 0.8379, 0.6235, -0.3689, 0.8618, 0.6113, -0.3689, 0.8618, 0.6113, -0.3918, 0.8379, 0.6235, -0.373, 0.8408, 0.6265, -0.4561, 0.8857, 0.6001, -0.4536, 0.8618, 0.6113, -0.4341, 0.8838, 0.5942, -0.4341, 0.8838, 0.5942, -0.4536, 0.8618, 0.6113, -0.4326, 0.8594, 0.6069, -0.4536, 0.8618, 0.6113, -0.4495, 0.8408, 0.6265, -0.4326, 0.8594, 0.6069, -0.4326, 0.8594, 0.6069, -0.4495, 0.8408, 0.6265, -0.4307, 0.8379, 0.6235, -0.4326, 0.8594, 0.6069, -0.4307, 0.8379, 0.6235, -0.4111, 0.8584, 0.605, -0.4111, 0.8584, 0.605, -0.4307, 0.8379, 0.6235, -0.4111, 0.8369, 0.6226, -0.5005, 0.8921, 0.6265, -0.4954, 0.8721, 0.6323, -0.4797, 0.8882, 0.6113, -0.4797, 0.8882, 0.6113, -0.4954, 0.8721, 0.6323, -0.4756, 0.8662, 0.6201, -0.4954, 0.8721, 0.6323, -0.4875, 0.854, 0.6396, -0.4756, 0.8662, 0.6201, -0.4756, 0.8662, 0.6201, -0.4875, 0.854, 0.6396, -0.4692, 0.8462, 0.6323, -0.4756, 0.8662, 0.6201, -0.4692, 0.8462, 0.6323, -0.4536, 0.8618, 0.6113, -0.4536, 0.8618, 0.6113, -0.4692, 0.8462, 0.6323, -0.4495, 0.8408, 0.6265, 0.1039, 0.0017, 0, 0, 0, 0, 0.1035, 0.0017, 0.0102, 0.2067, 0.0068, 0, 0.1039, 0.0017, 0, 0.2057, 0.0068, 0.0202, 0.2057, 0.0068, 0.0202, 0.1039, 0.0017, 0, 0.1035, 0.0017, 0.0102, 0.3069, 0.0153, 0, 0.2067, 0.0068, 0, 0.3052, 0.0153, 0.0301, 0.3052, 0.0153, 0.0301, 0.2067, 0.0068, 0, 0.2057, 0.0068, 0.0202, 0.4033, 0.027, 0, 0.3069, 0.0153, 0, 0.4014, 0.027, 0.0395, 0.4014, 0.027, 0.0395, 0.3069, 0.0153, 0, 0.3052, 0.0153, 0.0301, 0.4949, 0.0418, 0, 0.4033, 0.027, 0, 0.4924, 0.0418, 0.0485, 0.4924, 0.0418, 0.0485, 0.4033, 0.027, 0, 0.4014, 0.027, 0.0395, 0.5806, 0.0597, 0, 0.4949, 0.0418, 0, 0.5776, 0.0597, 0.0569, 0.5776, 0.0597, 0.0569, 0.4949, 0.0418, 0, 0.4924, 0.0418, 0.0485, 0.6592, 0.0803, 0, 0.5806, 0.0597, 0, 0.6563, 0.0803, 0.0646, 0.6563, 0.0803, 0.0646, 0.5806, 0.0597, 0, 0.5776, 0.0597, 0.0569, 0.7305, 0.1036, 0, 0.6592, 0.0803, 0, 0.7271, 0.1036, 0.0716, 0.7271, 0.1036, 0.0716, 0.6592, 0.0803, 0, 0.6563, 0.0803, 0.0646, 0.793, 0.1295, 0, 0.7305, 0.1036, 0, 0.7891, 0.1295, 0.0777, 0.7891, 0.1295, 0.0777, 0.7305, 0.1036, 0, 0.7271, 0.1036, 0.0716, 0.8467, 0.158, 0, 0.793, 0.1295, 0, 0.8428, 0.158, 0.083, 0.8428, 0.158, 0.083, 0.793, 0.1295, 0, 0.7891, 0.1295, 0.0777, 0.8911, 0.1895, 0, 0.8467, 0.158, 0, 0.8867, 0.1895, 0.0873, 0.8867, 0.1895, 0.0873, 0.8467, 0.158, 0, 0.8428, 0.158, 0.083, 0.9253, 0.2247, 0, 0.8911, 0.1895, 0, 0.9209, 0.2247, 0.0907, 0.9209, 0.2247, 0.0907, 0.8911, 0.1895, 0, 0.8867, 0.1895, 0.0873, 0.9482, 0.2646, 0, 0.9253, 0.2247, 0, 0.9438, 0.2646, 0.093, 0.9438, 0.2646, 0.093, 0.9253, 0.2247, 0, 0.9209, 0.2247, 0.0907, 0.9565, 0.3049, 0, 0.9482, 0.2646, 0, 0.9517, 0.3049, 0.0938, 0.9517, 0.3049, 0.0938, 0.9482, 0.2646, 0, 0.9438, 0.2646, 0.093, 0.2776, 0.3464, 0.9155, 0.2776, 0.3049, 0.915, 0.1866, 0.3464, 0.9385, 0.1866, 0.3464, 0.9385, 0.2776, 0.3049, 0.915, 0.1865, 0.3049, 0.938, 0.8433, 0.3049, 0.4509, 0.8438, 0.3464, 0.4509, 0.8838, 0.3049, 0.366, 0.8838, 0.3049, 0.366, 0.8438, 0.3464, 0.4509, 0.8838, 0.3464, 0.366, 0.9565, 0.3955, 0, 0.9565, 0.3464, 0, 0.9521, 0.3955, 0.0938, 0.9521, 0.3955, 0.0938, 0.9565, 0.3464, 0, 0.9521, 0.3464, 0.0938, 0.1035, 0.0017, 0.0102, 0, 0, 0, 0.1019, 0.0017, 0.0203, 0.2057, 0.0068, 0.0202, 0.1035, 0.0017, 0.0102, 0.2026, 0.0068, 0.0403, 0.2026, 0.0068, 0.0403, 0.1035, 0.0017, 0.0102, 0.1019, 0.0017, 0.0203, 0.3052, 0.0153, 0.0301, 0.2057, 0.0068, 0.0202, 0.3008, 0.0153, 0.0598, 0.3008, 0.0153, 0.0598, 0.2057, 0.0068, 0.0202, 0.2026, 0.0068, 0.0403, 0.4014, 0.027, 0.0395, 0.3052, 0.0153, 0.0301, 0.3955, 0.027, 0.0787, 0.3955, 0.027, 0.0787, 0.3052, 0.0153, 0.0301, 0.3008, 0.0153, 0.0598, 0.4924, 0.0418, 0.0485, 0.4014, 0.027, 0.0395, 0.4854, 0.0418, 0.0966, 0.4854, 0.0418, 0.0966, 0.4014, 0.027, 0.0395, 0.3955, 0.027, 0.0787, 0.5776, 0.0597, 0.0569, 0.4924, 0.0418, 0.0485, 0.5693, 0.0597, 0.1133, 0.5693, 0.0597, 0.1133, 0.4924, 0.0418, 0.0485, 0.4854, 0.0418, 0.0966, 0.6563, 0.0803, 0.0646, 0.5776, 0.0597, 0.0569, 0.6465, 0.0803, 0.1287, 0.6465, 0.0803, 0.1287, 0.5776, 0.0597, 0.0569, 0.5693, 0.0597, 0.1133, 0.7271, 0.1036, 0.0716, 0.6563, 0.0803, 0.0646, 0.7163, 0.1036, 0.1425, 0.7163, 0.1036, 0.1425, 0.6563, 0.0803, 0.0646, 0.6465, 0.0803, 0.1287, 0.7891, 0.1295, 0.0777, 0.7271, 0.1036, 0.0716, 0.7778, 0.1295, 0.1547, 0.7778, 0.1295, 0.1547, 0.7271, 0.1036, 0.0716, 0.7163, 0.1036, 0.1425, 0.8428, 0.158, 0.083, 0.7891, 0.1295, 0.0777, 0.8306, 0.158, 0.1652, 0.8306, 0.158, 0.1652, 0.7891, 0.1295, 0.0777, 0.7778, 0.1295, 0.1547, 0.8867, 0.1895, 0.0873, 0.8428, 0.158, 0.083, 0.874, 0.1895, 0.1738, 0.874, 0.1895, 0.1738, 0.8428, 0.158, 0.083, 0.8306, 0.158, 0.1652, 0.9209, 0.2247, 0.0907, 0.8867, 0.1895, 0.0873, 0.9077, 0.2247, 0.1805, 0.9077, 0.2247, 0.1805, 0.8867, 0.1895, 0.0873, 0.874, 0.1895, 0.1738, 0.9438, 0.2646, 0.093, 0.9209, 0.2247, 0.0907, 0.9302, 0.2646, 0.1851, 0.9302, 0.2646, 0.1851, 0.9209, 0.2247, 0.0907, 0.9077, 0.2247, 0.1805, 0.9517, 0.3049, 0.0938, 0.9438, 0.2646, 0.093, 0.938, 0.3049, 0.1865, 0.938, 0.3049, 0.1865, 0.9438, 0.2646, 0.093, 0.9302, 0.2646, 0.1851, 0.0938, 0.3464, 0.9521, 0.1866, 0.3464, 0.9385, 0.0938, 0.3049, 0.9517, 0.0938, 0.3049, 0.9517, 0.1866, 0.3464, 0.9385, 0.1865, 0.3049, 0.938, 0, 0.3464, -0.9565, 0, 0.3049, -0.9565, 0.0938, 0.3464, -0.9521, 0.0938, 0.3464, -0.9521, 0, 0.3049, -0.9565, 0.0938, 0.3049, -0.9517, 0.9521, 0.3955, 0.0938, 0.9521, 0.3464, 0.0938, 0.9385, 0.3955, 0.1866, 0.9385, 0.3955, 0.1866, 0.9521, 0.3464, 0.0938, 0.9385, 0.3464, 0.1866, 0.1019, 0.0017, 0.0203, 0, 0, 0, 0.0995, 0.0017, 0.0302, 0.2026, 0.0068, 0.0403, 0.1019, 0.0017, 0.0203, 0.1978, 0.0068, 0.06, 0.1978, 0.0068, 0.06, 0.1019, 0.0017, 0.0203, 0.0995, 0.0017, 0.0302, 0.3008, 0.0153, 0.0598, 0.2026, 0.0068, 0.0403, 0.2935, 0.0153, 0.0891, 0.2935, 0.0153, 0.0891, 0.2026, 0.0068, 0.0403, 0.1978, 0.0068, 0.06, 0.3955, 0.027, 0.0787, 0.3008, 0.0153, 0.0598, 0.386, 0.027, 0.1171, 0.386, 0.027, 0.1171, 0.3008, 0.0153, 0.0598, 0.2935, 0.0153, 0.0891, 0.4854, 0.0418, 0.0966, 0.3955, 0.027, 0.0787, 0.4736, 0.0418, 0.1437, 0.4736, 0.0418, 0.1437, 0.3955, 0.027, 0.0787, 0.386, 0.027, 0.1171, 0.5693, 0.0597, 0.1133, 0.4854, 0.0418, 0.0966, 0.5557, 0.0597, 0.1686, 0.5557, 0.0597, 0.1686, 0.4854, 0.0418, 0.0966, 0.4736, 0.0418, 0.1437, 0.6465, 0.0803, 0.1287, 0.5693, 0.0597, 0.1133, 0.6309, 0.0803, 0.1914, 0.6309, 0.0803, 0.1914, 0.5693, 0.0597, 0.1133, 0.5557, 0.0597, 0.1686, 0.7163, 0.1036, 0.1425, 0.6465, 0.0803, 0.1287, 0.6987, 0.1036, 0.212, 0.6987, 0.1036, 0.212, 0.6465, 0.0803, 0.1287, 0.6309, 0.0803, 0.1914, 0.7778, 0.1295, 0.1547, 0.7163, 0.1036, 0.1425, 0.7588, 0.1295, 0.2302, 0.7588, 0.1295, 0.2302, 0.7163, 0.1036, 0.1425, 0.6987, 0.1036, 0.212, 0.8306, 0.158, 0.1652, 0.7778, 0.1295, 0.1547, 0.8101, 0.158, 0.2458, 0.8101, 0.158, 0.2458, 0.7778, 0.1295, 0.1547, 0.7588, 0.1295, 0.2302, 0.874, 0.1895, 0.1738, 0.8306, 0.158, 0.1652, 0.8525, 0.1895, 0.2585, 0.8525, 0.1895, 0.2585, 0.8306, 0.158, 0.1652, 0.8101, 0.158, 0.2458, 0.9077, 0.2247, 0.1805, 0.874, 0.1895, 0.1738, 0.8857, 0.2247, 0.2686, 0.8857, 0.2247, 0.2686, 0.874, 0.1895, 0.1738, 0.8525, 0.1895, 0.2585, 0.9302, 0.2646, 0.1851, 0.9077, 0.2247, 0.1805, 0.9077, 0.2646, 0.2751, 0.9077, 0.2646, 0.2751, 0.9077, 0.2247, 0.1805, 0.8857, 0.2247, 0.2686, 0.938, 0.3049, 0.1865, 0.9302, 0.2646, 0.1851, 0.915, 0.3049, 0.2776, 0.915, 0.3049, 0.2776, 0.9302, 0.2646, 0.1851, 0.9077, 0.2646, 0.2751, 0.915, 0.3049, 0.2776, 0.9155, 0.3464, 0.2776, 0.938, 0.3049, 0.1865, 0.938, 0.3049, 0.1865, 0.9155, 0.3464, 0.2776, 0.9385, 0.3464, 0.1866, 0.7393, 0.3464, -0.6069, 0.7393, 0.3049, -0.6064, 0.7954, 0.3464, -0.5313, 0.7954, 0.3464, -0.5313, 0.7393, 0.3049, -0.6064, 0.7954, 0.3049, -0.5313, 0.9385, 0.3955, 0.1866, 0.9385, 0.3464, 0.1866, 0.9155, 0.3955, 0.2776, 0.9155, 0.3955, 0.2776, 0.9385, 0.3464, 0.1866, 0.9155, 0.3464, 0.2776, 0.0995, 0.0017, 0.0302, 0, 0, 0, 0.096, 0.0017, 0.0398, 0.1978, 0.0068, 0.06, 0.0995, 0.0017, 0.0302, 0.1909, 0.0068, 0.079, 0.1909, 0.0068, 0.079, 0.0995, 0.0017, 0.0302, 0.096, 0.0017, 0.0398, 0.2935, 0.0153, 0.0891, 0.1978, 0.0068, 0.06, 0.2834, 0.0153, 0.1174, 0.2834, 0.0153, 0.1174, 0.1978, 0.0068, 0.06, 0.1909, 0.0068, 0.079, 0.386, 0.027, 0.1171, 0.2935, 0.0153, 0.0891, 0.3726, 0.027, 0.1543, 0.3726, 0.027, 0.1543, 0.2935, 0.0153, 0.0891, 0.2834, 0.0153, 0.1174, 0.4736, 0.0418, 0.1437, 0.386, 0.027, 0.1171, 0.4573, 0.0418, 0.1893, 0.4573, 0.0418, 0.1893, 0.386, 0.027, 0.1171, 0.3726, 0.027, 0.1543, 0.5557, 0.0597, 0.1686, 0.4736, 0.0418, 0.1437, 0.5361, 0.0597, 0.2222, 0.5361, 0.0597, 0.2222, 0.4736, 0.0418, 0.1437, 0.4573, 0.0418, 0.1893, 0.6309, 0.0803, 0.1914, 0.5557, 0.0597, 0.1686, 0.6089, 0.0803, 0.2522, 0.6089, 0.0803, 0.2522, 0.5557, 0.0597, 0.1686, 0.5361, 0.0597, 0.2222, 0.6987, 0.1036, 0.212, 0.6309, 0.0803, 0.1914, 0.6748, 0.1036, 0.2795, 0.6748, 0.1036, 0.2795, 0.6309, 0.0803, 0.1914, 0.6089, 0.0803, 0.2522, 0.7588, 0.1295, 0.2302, 0.6987, 0.1036, 0.212, 0.7329, 0.1295, 0.3035, 0.7329, 0.1295, 0.3035, 0.6987, 0.1036, 0.212, 0.6748, 0.1036, 0.2795, 0.8101, 0.158, 0.2458, 0.7588, 0.1295, 0.2302, 0.7822, 0.158, 0.324, 0.7822, 0.158, 0.324, 0.7588, 0.1295, 0.2302, 0.7329, 0.1295, 0.3035, 0.8525, 0.1895, 0.2585, 0.8101, 0.158, 0.2458, 0.8232, 0.1895, 0.3411, 0.8232, 0.1895, 0.3411, 0.8101, 0.158, 0.2458, 0.7822, 0.158, 0.324, 0.8857, 0.2247, 0.2686, 0.8525, 0.1895, 0.2585, 0.855, 0.2247, 0.3542, 0.855, 0.2247, 0.3542, 0.8525, 0.1895, 0.2585, 0.8232, 0.1895, 0.3411, 0.9077, 0.2646, 0.2751, 0.8857, 0.2247, 0.2686, 0.876, 0.2646, 0.3628, 0.876, 0.2646, 0.3628, 0.8857, 0.2247, 0.2686, 0.855, 0.2247, 0.3542, 0.915, 0.3049, 0.2776, 0.9077, 0.2646, 0.2751, 0.8838, 0.3049, 0.366, 0.8838, 0.3049, 0.366, 0.9077, 0.2646, 0.2751, 0.876, 0.2646, 0.3628, 0.915, 0.3049, 0.2776, 0.8838, 0.3049, 0.366, 0.9155, 0.3464, 0.2776, 0.9155, 0.3464, 0.2776, 0.8838, 0.3049, 0.366, 0.8838, 0.3464, 0.366, 0.8838, 0.3464, -0.366, 0.8438, 0.3464, -0.4509, 0.8838, 0.3049, -0.366, 0.8838, 0.3049, -0.366, 0.8438, 0.3464, -0.4509, 0.8433, 0.3049, -0.4509, 0.9155, 0.3955, 0.2776, 0.9155, 0.3464, 0.2776, 0.8838, 0.3955, 0.366, 0.8838, 0.3955, 0.366, 0.9155, 0.3464, 0.2776, 0.8838, 0.3464, 0.366, 0.096, 0.0017, 0.0398, 0, 0, 0, 0.0917, 0.0017, 0.049, 0.1909, 0.0068, 0.079, 0.096, 0.0017, 0.0398, 0.1823, 0.0068, 0.0974, 0.1823, 0.0068, 0.0974, 0.096, 0.0017, 0.0398, 0.0917, 0.0017, 0.049, 0.2834, 0.0153, 0.1174, 0.1909, 0.0068, 0.079, 0.2705, 0.0153, 0.1447, 0.2705, 0.0153, 0.1447, 0.1909, 0.0068, 0.079, 0.1823, 0.0068, 0.0974, 0.3726, 0.027, 0.1543, 0.2834, 0.0153, 0.1174, 0.3557, 0.027, 0.1901, 0.3557, 0.027, 0.1901, 0.2834, 0.0153, 0.1174, 0.2705, 0.0153, 0.1447, 0.4573, 0.0418, 0.1893, 0.3726, 0.027, 0.1543, 0.4365, 0.0418, 0.2333, 0.4365, 0.0418, 0.2333, 0.3726, 0.027, 0.1543, 0.3557, 0.027, 0.1901, 0.5361, 0.0597, 0.2222, 0.4573, 0.0418, 0.1893, 0.5117, 0.0597, 0.2737, 0.5117, 0.0597, 0.2737, 0.4573, 0.0418, 0.1893, 0.4365, 0.0418, 0.2333, 0.6089, 0.0803, 0.2522, 0.5361, 0.0597, 0.2222, 0.5815, 0.0803, 0.3108, 0.5815, 0.0803, 0.3108, 0.5361, 0.0597, 0.2222, 0.5117, 0.0597, 0.2737, 0.6748, 0.1036, 0.2795, 0.6089, 0.0803, 0.2522, 0.644, 0.1036, 0.3442, 0.644, 0.1036, 0.3442, 0.6089, 0.0803, 0.2522, 0.5815, 0.0803, 0.3108, 0.7329, 0.1295, 0.3035, 0.6748, 0.1036, 0.2795, 0.6992, 0.1295, 0.3738, 0.6992, 0.1295, 0.3738, 0.6748, 0.1036, 0.2795, 0.644, 0.1036, 0.3442, 0.7822, 0.158, 0.324, 0.7329, 0.1295, 0.3035, 0.7466, 0.158, 0.3992, 0.7466, 0.158, 0.3992, 0.7329, 0.1295, 0.3035, 0.6992, 0.1295, 0.3738, 0.8232, 0.1895, 0.3411, 0.7822, 0.158, 0.324, 0.7856, 0.1895, 0.4202, 0.7856, 0.1895, 0.4202, 0.7822, 0.158, 0.324, 0.7466, 0.158, 0.3992, 0.855, 0.2247, 0.3542, 0.8232, 0.1895, 0.3411, 0.8164, 0.2247, 0.4363, 0.8164, 0.2247, 0.4363, 0.8232, 0.1895, 0.3411, 0.7856, 0.1895, 0.4202, 0.876, 0.2646, 0.3628, 0.855, 0.2247, 0.3542, 0.8364, 0.2646, 0.447, 0.8364, 0.2646, 0.447, 0.855, 0.2247, 0.3542, 0.8164, 0.2247, 0.4363, 0.8838, 0.3049, 0.366, 0.876, 0.2646, 0.3628, 0.8433, 0.3049, 0.4509, 0.8433, 0.3049, 0.4509, 0.876, 0.2646, 0.3628, 0.8364, 0.2646, 0.447, 0.4509, 0.3464, 0.8438, 0.4509, 0.3049, 0.8433, 0.366, 0.3464, 0.8838, 0.366, 0.3464, 0.8838, 0.4509, 0.3049, 0.8433, 0.366, 0.3049, 0.8838, 0.6064, 0.3049, 0.7393, 0.6069, 0.3464, 0.7393, 0.6763, 0.3049, 0.6763, 0.6763, 0.3049, 0.6763, 0.6069, 0.3464, 0.7393, 0.6763, 0.3464, 0.6763, 0.8838, 0.3955, 0.366, 0.8838, 0.3464, 0.366, 0.8438, 0.3955, 0.4509, 0.8438, 0.3955, 0.4509, 0.8838, 0.3464, 0.366, 0.8438, 0.3464, 0.4509, 0.0917, 0.0017, 0.049, 0, 0, 0, 0.0864, 0.0017, 0.0578, 0.1823, 0.0068, 0.0974, 0.0917, 0.0017, 0.049, 0.1718, 0.0068, 0.1148, 0.1718, 0.0068, 0.1148, 0.0917, 0.0017, 0.049, 0.0864, 0.0017, 0.0578, 0.2705, 0.0153, 0.1447, 0.1823, 0.0068, 0.0974, 0.2551, 0.0153, 0.1704, 0.2551, 0.0153, 0.1704, 0.1823, 0.0068, 0.0974, 0.1718, 0.0068, 0.1148, 0.3557, 0.027, 0.1901, 0.2705, 0.0153, 0.1447, 0.3352, 0.027, 0.224, 0.3352, 0.027, 0.224, 0.2705, 0.0153, 0.1447, 0.2551, 0.0153, 0.1704, 0.4365, 0.0418, 0.2333, 0.3557, 0.027, 0.1901, 0.4114, 0.0418, 0.2749, 0.4114, 0.0418, 0.2749, 0.3557, 0.027, 0.1901, 0.3352, 0.027, 0.224, 0.5117, 0.0597, 0.2737, 0.4365, 0.0418, 0.2333, 0.4827, 0.0597, 0.3225, 0.4827, 0.0597, 0.3225, 0.4365, 0.0418, 0.2333, 0.4114, 0.0418, 0.2749, 0.5815, 0.0803, 0.3108, 0.5117, 0.0597, 0.2737, 0.5483, 0.0803, 0.3662, 0.5483, 0.0803, 0.3662, 0.5117, 0.0597, 0.2737, 0.4827, 0.0597, 0.3225, 0.644, 0.1036, 0.3442, 0.5815, 0.0803, 0.3108, 0.6074, 0.1036, 0.4058, 0.6074, 0.1036, 0.4058, 0.5815, 0.0803, 0.3108, 0.5483, 0.0803, 0.3662, 0.6992, 0.1295, 0.3738, 0.644, 0.1036, 0.3442, 0.6592, 0.1295, 0.4407, 0.6592, 0.1295, 0.4407, 0.644, 0.1036, 0.3442, 0.6074, 0.1036, 0.4058, 0.7466, 0.158, 0.3992, 0.6992, 0.1295, 0.3738, 0.7041, 0.158, 0.4705, 0.7041, 0.158, 0.4705, 0.6992, 0.1295, 0.3738, 0.6592, 0.1295, 0.4407, 0.7856, 0.1895, 0.4202, 0.7466, 0.158, 0.3992, 0.7407, 0.1895, 0.4951, 0.7407, 0.1895, 0.4951, 0.7466, 0.158, 0.3992, 0.7041, 0.158, 0.4705, 0.8164, 0.2247, 0.4363, 0.7856, 0.1895, 0.4202, 0.7695, 0.2247, 0.5142, 0.7695, 0.2247, 0.5142, 0.7856, 0.1895, 0.4202, 0.7407, 0.1895, 0.4951, 0.8364, 0.2646, 0.447, 0.8164, 0.2247, 0.4363, 0.7886, 0.2646, 0.5269, 0.7886, 0.2646, 0.5269, 0.8164, 0.2247, 0.4363, 0.7695, 0.2247, 0.5142, 0.8433, 0.3049, 0.4509, 0.8364, 0.2646, 0.447, 0.7954, 0.3049, 0.5313, 0.7954, 0.3049, 0.5313, 0.8364, 0.2646, 0.447, 0.7886, 0.2646, 0.5269, 0.9565, 0.3464, 0, 0.9521, 0.3464, -0.0938, 0.9565, 0.3049, 0, 0.9565, 0.3049, 0, 0.9521, 0.3464, -0.0938, 0.9517, 0.3049, -0.0938, 0.5313, 0.3464, -0.7954, 0.4509, 0.3464, -0.8438, 0.5313, 0.3049, -0.7954, 0.5313, 0.3049, -0.7954, 0.4509, 0.3464, -0.8438, 0.4509, 0.3049, -0.8433, 0.8438, 0.3955, 0.4509, 0.8438, 0.3464, 0.4509, 0.7954, 0.3955, 0.5313, 0.7954, 0.3955, 0.5313, 0.8438, 0.3464, 0.4509, 0.7954, 0.3464, 0.5313, 0.0864, 0.0017, 0.0578, 0, 0, 0, 0.0803, 0.0017, 0.0659, 0.1718, 0.0068, 0.1148, 0.0864, 0.0017, 0.0578, 0.1597, 0.0068, 0.1311, 0.1597, 0.0068, 0.1311, 0.0864, 0.0017, 0.0578, 0.0803, 0.0017, 0.0659, 0.2551, 0.0153, 0.1704, 0.1718, 0.0068, 0.1148, 0.2372, 0.0153, 0.1946, 0.2372, 0.0153, 0.1946, 0.1718, 0.0068, 0.1148, 0.1597, 0.0068, 0.1311, 0.3352, 0.027, 0.224, 0.2551, 0.0153, 0.1704, 0.3118, 0.027, 0.2559, 0.3118, 0.027, 0.2559, 0.2551, 0.0153, 0.1704, 0.2372, 0.0153, 0.1946, 0.4114, 0.0418, 0.2749, 0.3352, 0.027, 0.224, 0.3826, 0.0418, 0.314, 0.3826, 0.0418, 0.314, 0.3352, 0.027, 0.224, 0.3118, 0.027, 0.2559, 0.4827, 0.0597, 0.3225, 0.4114, 0.0418, 0.2749, 0.4487, 0.0597, 0.3684, 0.4487, 0.0597, 0.3684, 0.4114, 0.0418, 0.2749, 0.3826, 0.0418, 0.314, 0.5483, 0.0803, 0.3662, 0.4827, 0.0597, 0.3225, 0.5098, 0.0803, 0.4182, 0.5098, 0.0803, 0.4182, 0.4827, 0.0597, 0.3225, 0.4487, 0.0597, 0.3684, 0.6074, 0.1036, 0.4058, 0.5483, 0.0803, 0.3662, 0.5645, 0.1036, 0.4634, 0.5645, 0.1036, 0.4634, 0.5483, 0.0803, 0.3662, 0.5098, 0.0803, 0.4182, 0.6592, 0.1295, 0.4407, 0.6074, 0.1036, 0.4058, 0.6128, 0.1295, 0.5029, 0.6128, 0.1295, 0.5029, 0.6074, 0.1036, 0.4058, 0.5645, 0.1036, 0.4634, 0.7041, 0.158, 0.4705, 0.6592, 0.1295, 0.4407, 0.6543, 0.158, 0.5371, 0.6543, 0.158, 0.5371, 0.6592, 0.1295, 0.4407, 0.6128, 0.1295, 0.5029, 0.7407, 0.1895, 0.4951, 0.7041, 0.158, 0.4705, 0.689, 0.1895, 0.5654, 0.689, 0.1895, 0.5654, 0.7041, 0.158, 0.4705, 0.6543, 0.158, 0.5371, 0.7695, 0.2247, 0.5142, 0.7407, 0.1895, 0.4951, 0.7153, 0.2247, 0.5869, 0.7153, 0.2247, 0.5869, 0.7407, 0.1895, 0.4951, 0.689, 0.1895, 0.5654, 0.7886, 0.2646, 0.5269, 0.7695, 0.2247, 0.5142, 0.7329, 0.2646, 0.6016, 0.7329, 0.2646, 0.6016, 0.7695, 0.2247, 0.5142, 0.7153, 0.2247, 0.5869, 0.7954, 0.3049, 0.5313, 0.7886, 0.2646, 0.5269, 0.7393, 0.3049, 0.6064, 0.7393, 0.3049, 0.6064, 0.7886, 0.2646, 0.5269, 0.7329, 0.2646, 0.6016, 0.7393, 0.3049, 0.6064, 0.7393, 0.3464, 0.6069, 0.7954, 0.3049, 0.5313, 0.7954, 0.3049, 0.5313, 0.7393, 0.3464, 0.6069, 0.7954, 0.3464, 0.5313, 0.7954, 0.3955, 0.5313, 0.7954, 0.3464, 0.5313, 0.7393, 0.3955, 0.6069, 0.7393, 0.3955, 0.6069, 0.7954, 0.3464, 0.5313, 0.7393, 0.3464, 0.6069, 0.0803, 0.0017, 0.0659, 0, 0, 0, 0.0735, 0.0017, 0.0735, 0.1597, 0.0068, 0.1311, 0.0803, 0.0017, 0.0659, 0.1461, 0.0068, 0.1461, 0.1461, 0.0068, 0.1461, 0.0803, 0.0017, 0.0659, 0.0735, 0.0017, 0.0735, 0.2372, 0.0153, 0.1946, 0.1597, 0.0068, 0.1311, 0.2169, 0.0153, 0.2169, 0.2169, 0.0153, 0.2169, 0.1597, 0.0068, 0.1311, 0.1461, 0.0068, 0.1461, 0.3118, 0.027, 0.2559, 0.2372, 0.0153, 0.1946, 0.2852, 0.027, 0.2852, 0.2852, 0.027, 0.2852, 0.2372, 0.0153, 0.1946, 0.2169, 0.0153, 0.2169, 0.3826, 0.0418, 0.314, 0.3118, 0.027, 0.2559, 0.3499, 0.0418, 0.3499, 0.3499, 0.0418, 0.3499, 0.3118, 0.027, 0.2559, 0.2852, 0.027, 0.2852, 0.4487, 0.0597, 0.3684, 0.3826, 0.0418, 0.314, 0.4106, 0.0597, 0.4106, 0.4106, 0.0597, 0.4106, 0.3826, 0.0418, 0.314, 0.3499, 0.0418, 0.3499, 0.5098, 0.0803, 0.4182, 0.4487, 0.0597, 0.3684, 0.4663, 0.0803, 0.4663, 0.4663, 0.0803, 0.4663, 0.4487, 0.0597, 0.3684, 0.4106, 0.0597, 0.4106, 0.5645, 0.1036, 0.4634, 0.5098, 0.0803, 0.4182, 0.5166, 0.1036, 0.5166, 0.5166, 0.1036, 0.5166, 0.5098, 0.0803, 0.4182, 0.4663, 0.0803, 0.4663, 0.6128, 0.1295, 0.5029, 0.5645, 0.1036, 0.4634, 0.5605, 0.1295, 0.5605, 0.5605, 0.1295, 0.5605, 0.5645, 0.1036, 0.4634, 0.5166, 0.1036, 0.5166, 0.6543, 0.158, 0.5371, 0.6128, 0.1295, 0.5029, 0.5986, 0.158, 0.5986, 0.5986, 0.158, 0.5986, 0.6128, 0.1295, 0.5029, 0.5605, 0.1295, 0.5605, 0.689, 0.1895, 0.5654, 0.6543, 0.158, 0.5371, 0.6299, 0.1895, 0.6299, 0.6299, 0.1895, 0.6299, 0.6543, 0.158, 0.5371, 0.5986, 0.158, 0.5986, 0.7153, 0.2247, 0.5869, 0.689, 0.1895, 0.5654, 0.6543, 0.2247, 0.6543, 0.6543, 0.2247, 0.6543, 0.689, 0.1895, 0.5654, 0.6299, 0.1895, 0.6299, 0.7329, 0.2646, 0.6016, 0.7153, 0.2247, 0.5869, 0.6704, 0.2646, 0.6704, 0.6704, 0.2646, 0.6704, 0.7153, 0.2247, 0.5869, 0.6543, 0.2247, 0.6543, 0.7393, 0.3049, 0.6064, 0.7329, 0.2646, 0.6016, 0.6763, 0.3049, 0.6763, 0.6763, 0.3049, 0.6763, 0.7329, 0.2646, 0.6016, 0.6704, 0.2646, 0.6704, 0.2776, 0.3464, 0.9155, 0.366, 0.3464, 0.8838, 0.2776, 0.3049, 0.915, 0.2776, 0.3049, 0.915, 0.366, 0.3464, 0.8838, 0.366, 0.3049, 0.8838, 0.7393, 0.3955, 0.6069, 0.7393, 0.3464, 0.6069, 0.6763, 0.3955, 0.6763, 0.6763, 0.3955, 0.6763, 0.7393, 0.3464, 0.6069, 0.6763, 0.3464, 0.6763, 0.0735, 0.0017, 0.0735, 0, 0, 0, 0.0659, 0.0017, 0.0803, 0.1461, 0.0068, 0.1461, 0.0735, 0.0017, 0.0735, 0.1311, 0.0068, 0.1597, 0.1311, 0.0068, 0.1597, 0.0735, 0.0017, 0.0735, 0.0659, 0.0017, 0.0803, 0.2169, 0.0153, 0.2169, 0.1461, 0.0068, 0.1461, 0.1946, 0.0153, 0.2372, 0.1946, 0.0153, 0.2372, 0.1461, 0.0068, 0.1461, 0.1311, 0.0068, 0.1597, 0.2852, 0.027, 0.2852, 0.2169, 0.0153, 0.2169, 0.2559, 0.027, 0.3118, 0.2559, 0.027, 0.3118, 0.2169, 0.0153, 0.2169, 0.1946, 0.0153, 0.2372, 0.3499, 0.0418, 0.3499, 0.2852, 0.027, 0.2852, 0.314, 0.0418, 0.3826, 0.314, 0.0418, 0.3826, 0.2852, 0.027, 0.2852, 0.2559, 0.027, 0.3118, 0.4106, 0.0597, 0.4106, 0.3499, 0.0418, 0.3499, 0.3684, 0.0597, 0.4487, 0.3684, 0.0597, 0.4487, 0.3499, 0.0418, 0.3499, 0.314, 0.0418, 0.3826, 0.4663, 0.0803, 0.4663, 0.4106, 0.0597, 0.4106, 0.4182, 0.0803, 0.5098, 0.4182, 0.0803, 0.5098, 0.4106, 0.0597, 0.4106, 0.3684, 0.0597, 0.4487, 0.5166, 0.1036, 0.5166, 0.4663, 0.0803, 0.4663, 0.4634, 0.1036, 0.5645, 0.4634, 0.1036, 0.5645, 0.4663, 0.0803, 0.4663, 0.4182, 0.0803, 0.5098, 0.5605, 0.1295, 0.5605, 0.5166, 0.1036, 0.5166, 0.5029, 0.1295, 0.6128, 0.5029, 0.1295, 0.6128, 0.5166, 0.1036, 0.5166, 0.4634, 0.1036, 0.5645, 0.5986, 0.158, 0.5986, 0.5605, 0.1295, 0.5605, 0.5371, 0.158, 0.6543, 0.5371, 0.158, 0.6543, 0.5605, 0.1295, 0.5605, 0.5029, 0.1295, 0.6128, 0.6299, 0.1895, 0.6299, 0.5986, 0.158, 0.5986, 0.5654, 0.1895, 0.689, 0.5654, 0.1895, 0.689, 0.5986, 0.158, 0.5986, 0.5371, 0.158, 0.6543, 0.6543, 0.2247, 0.6543, 0.6299, 0.1895, 0.6299, 0.5869, 0.2247, 0.7153, 0.5869, 0.2247, 0.7153, 0.6299, 0.1895, 0.6299, 0.5654, 0.1895, 0.689, 0.6704, 0.2646, 0.6704, 0.6543, 0.2247, 0.6543, 0.6016, 0.2646, 0.7329, 0.6016, 0.2646, 0.7329, 0.6543, 0.2247, 0.6543, 0.5869, 0.2247, 0.7153, 0.6763, 0.3049, 0.6763, 0.6704, 0.2646, 0.6704, 0.6064, 0.3049, 0.7393, 0.6064, 0.3049, 0.7393, 0.6704, 0.2646, 0.6704, 0.6016, 0.2646, 0.7329, 0.9385, 0.3464, -0.1866, 0.938, 0.3049, -0.1865, 0.9521, 0.3464, -0.0938, 0.9521, 0.3464, -0.0938, 0.938, 0.3049, -0.1865, 0.9517, 0.3049, -0.0938, 0.7393, 0.3049, 0.6064, 0.6763, 0.3049, 0.6763, 0.7393, 0.3464, 0.6069, 0.7393, 0.3464, 0.6069, 0.6763, 0.3049, 0.6763, 0.6763, 0.3464, 0.6763, 0.6763, 0.3955, 0.6763, 0.6763, 0.3464, 0.6763, 0.6069, 0.3955, 0.7393, 0.6069, 0.3955, 0.7393, 0.6763, 0.3464, 0.6763, 0.6069, 0.3464, 0.7393, 0.0659, 0.0017, 0.0803, 0, 0, 0, 0.0578, 0.0017, 0.0864, 0.1311, 0.0068, 0.1597, 0.0659, 0.0017, 0.0803, 0.1148, 0.0068, 0.1718, 0.1148, 0.0068, 0.1718, 0.0659, 0.0017, 0.0803, 0.0578, 0.0017, 0.0864, 0.1946, 0.0153, 0.2372, 0.1311, 0.0068, 0.1597, 0.1704, 0.0153, 0.2551, 0.1704, 0.0153, 0.2551, 0.1311, 0.0068, 0.1597, 0.1148, 0.0068, 0.1718, 0.2559, 0.027, 0.3118, 0.1946, 0.0153, 0.2372, 0.224, 0.027, 0.3352, 0.224, 0.027, 0.3352, 0.1946, 0.0153, 0.2372, 0.1704, 0.0153, 0.2551, 0.314, 0.0418, 0.3826, 0.2559, 0.027, 0.3118, 0.2749, 0.0418, 0.4114, 0.2749, 0.0418, 0.4114, 0.2559, 0.027, 0.3118, 0.224, 0.027, 0.3352, 0.3684, 0.0597, 0.4487, 0.314, 0.0418, 0.3826, 0.3225, 0.0597, 0.4827, 0.3225, 0.0597, 0.4827, 0.314, 0.0418, 0.3826, 0.2749, 0.0418, 0.4114, 0.4182, 0.0803, 0.5098, 0.3684, 0.0597, 0.4487, 0.3662, 0.0803, 0.5483, 0.3662, 0.0803, 0.5483, 0.3684, 0.0597, 0.4487, 0.3225, 0.0597, 0.4827, 0.4634, 0.1036, 0.5645, 0.4182, 0.0803, 0.5098, 0.4058, 0.1036, 0.6074, 0.4058, 0.1036, 0.6074, 0.4182, 0.0803, 0.5098, 0.3662, 0.0803, 0.5483, 0.5029, 0.1295, 0.6128, 0.4634, 0.1036, 0.5645, 0.4407, 0.1295, 0.6592, 0.4407, 0.1295, 0.6592, 0.4634, 0.1036, 0.5645, 0.4058, 0.1036, 0.6074, 0.5371, 0.158, 0.6543, 0.5029, 0.1295, 0.6128, 0.4705, 0.158, 0.7041, 0.4705, 0.158, 0.7041, 0.5029, 0.1295, 0.6128, 0.4407, 0.1295, 0.6592, 0.5654, 0.1895, 0.689, 0.5371, 0.158, 0.6543, 0.4951, 0.1895, 0.7407, 0.4951, 0.1895, 0.7407, 0.5371, 0.158, 0.6543, 0.4705, 0.158, 0.7041, 0.5869, 0.2247, 0.7153, 0.5654, 0.1895, 0.689, 0.5142, 0.2247, 0.7695, 0.5142, 0.2247, 0.7695, 0.5654, 0.1895, 0.689, 0.4951, 0.1895, 0.7407, 0.6016, 0.2646, 0.7329, 0.5869, 0.2247, 0.7153, 0.5269, 0.2646, 0.7886, 0.5269, 0.2646, 0.7886, 0.5869, 0.2247, 0.7153, 0.5142, 0.2247, 0.7695, 0.6064, 0.3049, 0.7393, 0.6016, 0.2646, 0.7329, 0.5313, 0.3049, 0.7954, 0.5313, 0.3049, 0.7954, 0.6016, 0.2646, 0.7329, 0.5269, 0.2646, 0.7886, 0.5313, 0.3464, 0.7954, 0.5313, 0.3049, 0.7954, 0.4509, 0.3464, 0.8438, 0.4509, 0.3464, 0.8438, 0.5313, 0.3049, 0.7954, 0.4509, 0.3049, 0.8433, 0.6069, 0.3955, 0.7393, 0.5381, 0.3877, 0.7905, 0.6069, 0.4724, 0.7393, 0.6069, 0.4724, 0.7393, 0.5381, 0.3877, 0.7905, 0.5391, 0.4724, 0.7896, 0.0578, 0.0017, 0.0864, 0, 0, 0, 0.049, 0.0017, 0.0917, 0.1148, 0.0068, 0.1718, 0.0578, 0.0017, 0.0864, 0.0974, 0.0068, 0.1823, 0.0974, 0.0068, 0.1823, 0.0578, 0.0017, 0.0864, 0.049, 0.0017, 0.0917, 0.1704, 0.0153, 0.2551, 0.1148, 0.0068, 0.1718, 0.1447, 0.0153, 0.2705, 0.1447, 0.0153, 0.2705, 0.1148, 0.0068, 0.1718, 0.0974, 0.0068, 0.1823, 0.224, 0.027, 0.3352, 0.1704, 0.0153, 0.2551, 0.1901, 0.027, 0.3557, 0.1901, 0.027, 0.3557, 0.1704, 0.0153, 0.2551, 0.1447, 0.0153, 0.2705, 0.2749, 0.0418, 0.4114, 0.224, 0.027, 0.3352, 0.2333, 0.0418, 0.4365, 0.2333, 0.0418, 0.4365, 0.224, 0.027, 0.3352, 0.1901, 0.027, 0.3557, 0.3225, 0.0597, 0.4827, 0.2749, 0.0418, 0.4114, 0.2737, 0.0597, 0.5117, 0.2737, 0.0597, 0.5117, 0.2749, 0.0418, 0.4114, 0.2333, 0.0418, 0.4365, 0.3662, 0.0803, 0.5483, 0.3225, 0.0597, 0.4827, 0.3108, 0.0803, 0.5815, 0.3108, 0.0803, 0.5815, 0.3225, 0.0597, 0.4827, 0.2737, 0.0597, 0.5117, 0.4058, 0.1036, 0.6074, 0.3662, 0.0803, 0.5483, 0.3442, 0.1036, 0.644, 0.3442, 0.1036, 0.644, 0.3662, 0.0803, 0.5483, 0.3108, 0.0803, 0.5815, 0.4407, 0.1295, 0.6592, 0.4058, 0.1036, 0.6074, 0.3738, 0.1295, 0.6992, 0.3738, 0.1295, 0.6992, 0.4058, 0.1036, 0.6074, 0.3442, 0.1036, 0.644, 0.4705, 0.158, 0.7041, 0.4407, 0.1295, 0.6592, 0.3992, 0.158, 0.7466, 0.3992, 0.158, 0.7466, 0.4407, 0.1295, 0.6592, 0.3738, 0.1295, 0.6992, 0.4951, 0.1895, 0.7407, 0.4705, 0.158, 0.7041, 0.4202, 0.1895, 0.7856, 0.4202, 0.1895, 0.7856, 0.4705, 0.158, 0.7041, 0.3992, 0.158, 0.7466, 0.5142, 0.2247, 0.7695, 0.4951, 0.1895, 0.7407, 0.4363, 0.2247, 0.8164, 0.4363, 0.2247, 0.8164, 0.4951, 0.1895, 0.7407, 0.4202, 0.1895, 0.7856, 0.5269, 0.2646, 0.7886, 0.5142, 0.2247, 0.7695, 0.447, 0.2646, 0.8364, 0.447, 0.2646, 0.8364, 0.5142, 0.2247, 0.7695, 0.4363, 0.2247, 0.8164, 0.5313, 0.3049, 0.7954, 0.5269, 0.2646, 0.7886, 0.4509, 0.3049, 0.8433, 0.4509, 0.3049, 0.8433, 0.5269, 0.2646, 0.7886, 0.447, 0.2646, 0.8364, 0.2776, 0.3464, -0.9155, 0.2776, 0.3049, -0.915, 0.366, 0.3464, -0.8838, 0.366, 0.3464, -0.8838, 0.2776, 0.3049, -0.915, 0.366, 0.3049, -0.8838, 0.1866, 0.3464, -0.9385, 0.1865, 0.3049, -0.938, 0.2776, 0.3464, -0.9155, 0.2776, 0.3464, -0.9155, 0.1865, 0.3049, -0.938, 0.2776, 0.3049, -0.915, 0.5283, 0.4724, 0.7881, 0.5273, 0.4036, 0.7886, 0.4692, 0.4724, 0.7085, 0.4692, 0.4724, 0.7085, 0.5273, 0.4036, 0.7886, 0.4709, 0.4036, 0.707, 0.049, 0.0017, 0.0917, 0, 0, 0, 0.0398, 0.0017, 0.096, 0.0974, 0.0068, 0.1823, 0.049, 0.0017, 0.0917, 0.079, 0.0068, 0.1909, 0.079, 0.0068, 0.1909, 0.049, 0.0017, 0.0917, 0.0398, 0.0017, 0.096, 0.1447, 0.0153, 0.2705, 0.0974, 0.0068, 0.1823, 0.1174, 0.0153, 0.2834, 0.1174, 0.0153, 0.2834, 0.0974, 0.0068, 0.1823, 0.079, 0.0068, 0.1909, 0.1901, 0.027, 0.3557, 0.1447, 0.0153, 0.2705, 0.1543, 0.027, 0.3726, 0.1543, 0.027, 0.3726, 0.1447, 0.0153, 0.2705, 0.1174, 0.0153, 0.2834, 0.2333, 0.0418, 0.4365, 0.1901, 0.027, 0.3557, 0.1893, 0.0418, 0.4573, 0.1893, 0.0418, 0.4573, 0.1901, 0.027, 0.3557, 0.1543, 0.027, 0.3726, 0.2737, 0.0597, 0.5117, 0.2333, 0.0418, 0.4365, 0.2222, 0.0597, 0.5361, 0.2222, 0.0597, 0.5361, 0.2333, 0.0418, 0.4365, 0.1893, 0.0418, 0.4573, 0.3108, 0.0803, 0.5815, 0.2737, 0.0597, 0.5117, 0.2522, 0.0803, 0.6089, 0.2522, 0.0803, 0.6089, 0.2737, 0.0597, 0.5117, 0.2222, 0.0597, 0.5361, 0.3442, 0.1036, 0.644, 0.3108, 0.0803, 0.5815, 0.2795, 0.1036, 0.6748, 0.2795, 0.1036, 0.6748, 0.3108, 0.0803, 0.5815, 0.2522, 0.0803, 0.6089, 0.3738, 0.1295, 0.6992, 0.3442, 0.1036, 0.644, 0.3035, 0.1295, 0.7329, 0.3035, 0.1295, 0.7329, 0.3442, 0.1036, 0.644, 0.2795, 0.1036, 0.6748, 0.3992, 0.158, 0.7466, 0.3738, 0.1295, 0.6992, 0.324, 0.158, 0.7822, 0.324, 0.158, 0.7822, 0.3738, 0.1295, 0.6992, 0.3035, 0.1295, 0.7329, 0.4202, 0.1895, 0.7856, 0.3992, 0.158, 0.7466, 0.3411, 0.1895, 0.8232, 0.3411, 0.1895, 0.8232, 0.3992, 0.158, 0.7466, 0.324, 0.158, 0.7822, 0.4363, 0.2247, 0.8164, 0.4202, 0.1895, 0.7856, 0.3542, 0.2247, 0.855, 0.3542, 0.2247, 0.855, 0.4202, 0.1895, 0.7856, 0.3411, 0.1895, 0.8232, 0.447, 0.2646, 0.8364, 0.4363, 0.2247, 0.8164, 0.3628, 0.2646, 0.876, 0.3628, 0.2646, 0.876, 0.4363, 0.2247, 0.8164, 0.3542, 0.2247, 0.855, 0.4509, 0.3049, 0.8433, 0.447, 0.2646, 0.8364, 0.366, 0.3049, 0.8838, 0.366, 0.3049, 0.8838, 0.447, 0.2646, 0.8364, 0.3628, 0.2646, 0.876, 0.9565, 0.3049, 0, 0.9517, 0.3049, 0.0938, 0.9565, 0.3464, 0, 0.9565, 0.3464, 0, 0.9517, 0.3049, 0.0938, 0.9521, 0.3464, 0.0938, 0.4473, 0.3955, 0.8369, 0.363, 0.3955, 0.8765, 0.4004, 0.3955, 0.749, 0.4004, 0.3955, 0.749, 0.363, 0.3955, 0.8765, 0.3252, 0.3955, 0.7847, 0.0398, 0.0017, 0.096, 0, 0, 0, 0.0302, 0.0017, 0.0995, 0.079, 0.0068, 0.1909, 0.0398, 0.0017, 0.096, 0.06, 0.0068, 0.1978, 0.06, 0.0068, 0.1978, 0.0398, 0.0017, 0.096, 0.0302, 0.0017, 0.0995, 0.1174, 0.0153, 0.2834, 0.079, 0.0068, 0.1909, 0.0891, 0.0153, 0.2935, 0.0891, 0.0153, 0.2935, 0.079, 0.0068, 0.1909, 0.06, 0.0068, 0.1978, 0.1543, 0.027, 0.3726, 0.1174, 0.0153, 0.2834, 0.1171, 0.027, 0.386, 0.1171, 0.027, 0.386, 0.1174, 0.0153, 0.2834, 0.0891, 0.0153, 0.2935, 0.1893, 0.0418, 0.4573, 0.1543, 0.027, 0.3726, 0.1437, 0.0418, 0.4736, 0.1437, 0.0418, 0.4736, 0.1543, 0.027, 0.3726, 0.1171, 0.027, 0.386, 0.2222, 0.0597, 0.5361, 0.1893, 0.0418, 0.4573, 0.1686, 0.0597, 0.5557, 0.1686, 0.0597, 0.5557, 0.1893, 0.0418, 0.4573, 0.1437, 0.0418, 0.4736, 0.2522, 0.0803, 0.6089, 0.2222, 0.0597, 0.5361, 0.1914, 0.0803, 0.6309, 0.1914, 0.0803, 0.6309, 0.2222, 0.0597, 0.5361, 0.1686, 0.0597, 0.5557, 0.2795, 0.1036, 0.6748, 0.2522, 0.0803, 0.6089, 0.212, 0.1036, 0.6987, 0.212, 0.1036, 0.6987, 0.2522, 0.0803, 0.6089, 0.1914, 0.0803, 0.6309, 0.3035, 0.1295, 0.7329, 0.2795, 0.1036, 0.6748, 0.2302, 0.1295, 0.7588, 0.2302, 0.1295, 0.7588, 0.2795, 0.1036, 0.6748, 0.212, 0.1036, 0.6987, 0.324, 0.158, 0.7822, 0.3035, 0.1295, 0.7329, 0.2458, 0.158, 0.8101, 0.2458, 0.158, 0.8101, 0.3035, 0.1295, 0.7329, 0.2302, 0.1295, 0.7588, 0.3411, 0.1895, 0.8232, 0.324, 0.158, 0.7822, 0.2585, 0.1895, 0.8525, 0.2585, 0.1895, 0.8525, 0.324, 0.158, 0.7822, 0.2458, 0.158, 0.8101, 0.3542, 0.2247, 0.855, 0.3411, 0.1895, 0.8232, 0.2686, 0.2247, 0.8857, 0.2686, 0.2247, 0.8857, 0.3411, 0.1895, 0.8232, 0.2585, 0.1895, 0.8525, 0.3628, 0.2646, 0.876, 0.3542, 0.2247, 0.855, 0.2751, 0.2646, 0.9077, 0.2751, 0.2646, 0.9077, 0.3542, 0.2247, 0.855, 0.2686, 0.2247, 0.8857, 0.366, 0.3049, 0.8838, 0.3628, 0.2646, 0.876, 0.2776, 0.3049, 0.915, 0.2776, 0.3049, 0.915, 0.3628, 0.2646, 0.876, 0.2751, 0.2646, 0.9077, 0.363, 0.3955, 0.8765, 0.2754, 0.3955, 0.9077, 0.3252, 0.3955, 0.7847, 0.3252, 0.3955, 0.7847, 0.2754, 0.3955, 0.9077, 0.2466, 0.3955, 0.813, 0.0302, 0.0017, 0.0995, 0, 0, 0, 0.0203, 0.0017, 0.1019, 0.06, 0.0068, 0.1978, 0.0302, 0.0017, 0.0995, 0.0403, 0.0068, 0.2026, 0.0403, 0.0068, 0.2026, 0.0302, 0.0017, 0.0995, 0.0203, 0.0017, 0.1019, 0.0891, 0.0153, 0.2935, 0.06, 0.0068, 0.1978, 0.0598, 0.0153, 0.3008, 0.0598, 0.0153, 0.3008, 0.06, 0.0068, 0.1978, 0.0403, 0.0068, 0.2026, 0.1171, 0.027, 0.386, 0.0891, 0.0153, 0.2935, 0.0787, 0.027, 0.3955, 0.0787, 0.027, 0.3955, 0.0891, 0.0153, 0.2935, 0.0598, 0.0153, 0.3008, 0.1437, 0.0418, 0.4736, 0.1171, 0.027, 0.386, 0.0966, 0.0418, 0.4854, 0.0966, 0.0418, 0.4854, 0.1171, 0.027, 0.386, 0.0787, 0.027, 0.3955, 0.1686, 0.0597, 0.5557, 0.1437, 0.0418, 0.4736, 0.1133, 0.0597, 0.5693, 0.1133, 0.0597, 0.5693, 0.1437, 0.0418, 0.4736, 0.0966, 0.0418, 0.4854, 0.1914, 0.0803, 0.6309, 0.1686, 0.0597, 0.5557, 0.1287, 0.0803, 0.6465, 0.1287, 0.0803, 0.6465, 0.1686, 0.0597, 0.5557, 0.1133, 0.0597, 0.5693, 0.212, 0.1036, 0.6987, 0.1914, 0.0803, 0.6309, 0.1425, 0.1036, 0.7163, 0.1425, 0.1036, 0.7163, 0.1914, 0.0803, 0.6309, 0.1287, 0.0803, 0.6465, 0.2302, 0.1295, 0.7588, 0.212, 0.1036, 0.6987, 0.1547, 0.1295, 0.7778, 0.1547, 0.1295, 0.7778, 0.212, 0.1036, 0.6987, 0.1425, 0.1036, 0.7163, 0.2458, 0.158, 0.8101, 0.2302, 0.1295, 0.7588, 0.1652, 0.158, 0.8306, 0.1652, 0.158, 0.8306, 0.2302, 0.1295, 0.7588, 0.1547, 0.1295, 0.7778, 0.2585, 0.1895, 0.8525, 0.2458, 0.158, 0.8101, 0.1738, 0.1895, 0.874, 0.1738, 0.1895, 0.874, 0.2458, 0.158, 0.8101, 0.1652, 0.158, 0.8306, 0.2686, 0.2247, 0.8857, 0.2585, 0.1895, 0.8525, 0.1805, 0.2247, 0.9077, 0.1805, 0.2247, 0.9077, 0.2585, 0.1895, 0.8525, 0.1738, 0.1895, 0.874, 0.2751, 0.2646, 0.9077, 0.2686, 0.2247, 0.8857, 0.1851, 0.2646, 0.9302, 0.1851, 0.2646, 0.9302, 0.2686, 0.2247, 0.8857, 0.1805, 0.2247, 0.9077, 0.2776, 0.3049, 0.915, 0.2751, 0.2646, 0.9077, 0.1865, 0.3049, 0.938, 0.1865, 0.3049, 0.938, 0.2751, 0.2646, 0.9077, 0.1851, 0.2646, 0.9302, 0.6069, 0.3464, -0.7393, 0.5313, 0.3464, -0.7954, 0.6064, 0.3049, -0.7393, 0.6064, 0.3049, -0.7393, 0.5313, 0.3464, -0.7954, 0.5313, 0.3049, -0.7954, 0.9385, 0.3464, -0.1866, 0.9155, 0.3464, -0.2776, 0.938, 0.3049, -0.1865, 0.938, 0.3049, -0.1865, 0.9155, 0.3464, -0.2776, 0.915, 0.3049, -0.2776, 0.2754, 0.3955, 0.9077, 0.1923, 0.3955, 0.9287, 0.2466, 0.3955, 0.813, 0.2466, 0.3955, 0.813, 0.1923, 0.3955, 0.9287, 0.1744, 0.3955, 0.8311, 0.0203, 0.0017, 0.1019, 0, 0, 0, 0.0102, 0.0017, 0.1035, 0.0403, 0.0068, 0.2026, 0.0203, 0.0017, 0.1019, 0.0202, 0.0068, 0.2057, 0.0202, 0.0068, 0.2057, 0.0203, 0.0017, 0.1019, 0.0102, 0.0017, 0.1035, 0.0598, 0.0153, 0.3008, 0.0403, 0.0068, 0.2026, 0.0301, 0.0153, 0.3052, 0.0301, 0.0153, 0.3052, 0.0403, 0.0068, 0.2026, 0.0202, 0.0068, 0.2057, 0.0787, 0.027, 0.3955, 0.0598, 0.0153, 0.3008, 0.0395, 0.027, 0.4014, 0.0395, 0.027, 0.4014, 0.0598, 0.0153, 0.3008, 0.0301, 0.0153, 0.3052, 0.0966, 0.0418, 0.4854, 0.0787, 0.027, 0.3955, 0.0485, 0.0418, 0.4924, 0.0485, 0.0418, 0.4924, 0.0787, 0.027, 0.3955, 0.0395, 0.027, 0.4014, 0.1133, 0.0597, 0.5693, 0.0966, 0.0418, 0.4854, 0.0569, 0.0597, 0.5776, 0.0569, 0.0597, 0.5776, 0.0966, 0.0418, 0.4854, 0.0485, 0.0418, 0.4924, 0.1287, 0.0803, 0.6465, 0.1133, 0.0597, 0.5693, 0.0646, 0.0803, 0.6563, 0.0646, 0.0803, 0.6563, 0.1133, 0.0597, 0.5693, 0.0569, 0.0597, 0.5776, 0.1425, 0.1036, 0.7163, 0.1287, 0.0803, 0.6465, 0.0716, 0.1036, 0.7271, 0.0716, 0.1036, 0.7271, 0.1287, 0.0803, 0.6465, 0.0646, 0.0803, 0.6563, 0.1547, 0.1295, 0.7778, 0.1425, 0.1036, 0.7163, 0.0777, 0.1295, 0.7891, 0.0777, 0.1295, 0.7891, 0.1425, 0.1036, 0.7163, 0.0716, 0.1036, 0.7271, 0.1652, 0.158, 0.8306, 0.1547, 0.1295, 0.7778, 0.083, 0.158, 0.8428, 0.083, 0.158, 0.8428, 0.1547, 0.1295, 0.7778, 0.0777, 0.1295, 0.7891, 0.1738, 0.1895, 0.874, 0.1652, 0.158, 0.8306, 0.0873, 0.1895, 0.8867, 0.0873, 0.1895, 0.8867, 0.1652, 0.158, 0.8306, 0.083, 0.158, 0.8428, 0.1805, 0.2247, 0.9077, 0.1738, 0.1895, 0.874, 0.0907, 0.2247, 0.9209, 0.0907, 0.2247, 0.9209, 0.1738, 0.1895, 0.874, 0.0873, 0.1895, 0.8867, 0.1851, 0.2646, 0.9302, 0.1805, 0.2247, 0.9077, 0.093, 0.2646, 0.9438, 0.093, 0.2646, 0.9438, 0.1805, 0.2247, 0.9077, 0.0907, 0.2247, 0.9209, 0.1865, 0.3049, 0.938, 0.1851, 0.2646, 0.9302, 0.0938, 0.3049, 0.9517, 0.0938, 0.3049, 0.9517, 0.1851, 0.2646, 0.9302, 0.093, 0.2646, 0.9438, 0.1783, 0.3877, 0.9395, 0.0938, 0.3955, 0.9521, 0.1769, 0.4724, 0.9399, 0.1769, 0.4724, 0.9399, 0.0938, 0.3955, 0.9521, 0.0938, 0.4724, 0.9521, 0.0102, 0.0017, 0.1035, 0, 0, 0, 0, 0.0017, 0.1039, 0.0202, 0.0068, 0.2057, 0.0102, 0.0017, 0.1035, 0, 0.0068, 0.2067, 0, 0.0068, 0.2067, 0.0102, 0.0017, 0.1035, 0, 0.0017, 0.1039, 0.0301, 0.0153, 0.3052, 0.0202, 0.0068, 0.2057, 0, 0.0153, 0.3069, 0, 0.0153, 0.3069, 0.0202, 0.0068, 0.2057, 0, 0.0068, 0.2067, 0.0395, 0.027, 0.4014, 0.0301, 0.0153, 0.3052, 0, 0.027, 0.4033, 0, 0.027, 0.4033, 0.0301, 0.0153, 0.3052, 0, 0.0153, 0.3069, 0.0485, 0.0418, 0.4924, 0.0395, 0.027, 0.4014, 0, 0.0418, 0.4949, 0, 0.0418, 0.4949, 0.0395, 0.027, 0.4014, 0, 0.027, 0.4033, 0.0569, 0.0597, 0.5776, 0.0485, 0.0418, 0.4924, 0, 0.0597, 0.5806, 0, 0.0597, 0.5806, 0.0485, 0.0418, 0.4924, 0, 0.0418, 0.4949, 0.0646, 0.0803, 0.6563, 0.0569, 0.0597, 0.5776, 0, 0.0803, 0.6592, 0, 0.0803, 0.6592, 0.0569, 0.0597, 0.5776, 0, 0.0597, 0.5806, 0.0716, 0.1036, 0.7271, 0.0646, 0.0803, 0.6563, 0, 0.1036, 0.7305, 0, 0.1036, 0.7305, 0.0646, 0.0803, 0.6563, 0, 0.0803, 0.6592, 0.0777, 0.1295, 0.7891, 0.0716, 0.1036, 0.7271, 0, 0.1295, 0.793, 0, 0.1295, 0.793, 0.0716, 0.1036, 0.7271, 0, 0.1036, 0.7305, 0.083, 0.158, 0.8428, 0.0777, 0.1295, 0.7891, 0, 0.158, 0.8467, 0, 0.158, 0.8467, 0.0777, 0.1295, 0.7891, 0, 0.1295, 0.793, 0.0873, 0.1895, 0.8867, 0.083, 0.158, 0.8428, 0, 0.1895, 0.8911, 0, 0.1895, 0.8911, 0.083, 0.158, 0.8428, 0, 0.158, 0.8467, 0.0907, 0.2247, 0.9209, 0.0873, 0.1895, 0.8867, 0, 0.2247, 0.9253, 0, 0.2247, 0.9253, 0.0873, 0.1895, 0.8867, 0, 0.1895, 0.8911, 0.093, 0.2646, 0.9438, 0.0907, 0.2247, 0.9209, 0, 0.2646, 0.9482, 0, 0.2646, 0.9482, 0.0907, 0.2247, 0.9209, 0, 0.2247, 0.9253, 0.0938, 0.3049, 0.9517, 0.093, 0.2646, 0.9438, 0, 0.3049, 0.9565, 0, 0.3049, 0.9565, 0.093, 0.2646, 0.9438, 0, 0.2646, 0.9482, 0.0938, 0.3955, 0.9521, 0.0938, 0.3464, 0.9521, 0, 0.3955, 0.9565, 0, 0.3955, 0.9565, 0.0938, 0.3464, 0.9521, 0, 0.3464, 0.9565, 0, 0.0017, -0.1039, 0, 0, 0, 0.0102, 0.0017, -0.1035, 0, 0.0068, -0.2067, 0, 0.0017, -0.1039, 0.0202, 0.0068, -0.2057, 0.0202, 0.0068, -0.2057, 0, 0.0017, -0.1039, 0.0102, 0.0017, -0.1035, 0, 0.0153, -0.3069, 0, 0.0068, -0.2067, 0.0301, 0.0153, -0.3052, 0.0301, 0.0153, -0.3052, 0, 0.0068, -0.2067, 0.0202, 0.0068, -0.2057, 0, 0.027, -0.4033, 0, 0.0153, -0.3069, 0.0395, 0.027, -0.4014, 0.0395, 0.027, -0.4014, 0, 0.0153, -0.3069, 0.0301, 0.0153, -0.3052, 0, 0.0418, -0.4949, 0, 0.027, -0.4033, 0.0485, 0.0418, -0.4924, 0.0485, 0.0418, -0.4924, 0, 0.027, -0.4033, 0.0395, 0.027, -0.4014, 0, 0.0597, -0.5806, 0, 0.0418, -0.4949, 0.0569, 0.0597, -0.5776, 0.0569, 0.0597, -0.5776, 0, 0.0418, -0.4949, 0.0485, 0.0418, -0.4924, 0, 0.0803, -0.6592, 0, 0.0597, -0.5806, 0.0646, 0.0803, -0.6563, 0.0646, 0.0803, -0.6563, 0, 0.0597, -0.5806, 0.0569, 0.0597, -0.5776, 0, 0.1036, -0.7305, 0, 0.0803, -0.6592, 0.0716, 0.1036, -0.7271, 0.0716, 0.1036, -0.7271, 0, 0.0803, -0.6592, 0.0646, 0.0803, -0.6563, 0, 0.1295, -0.793, 0, 0.1036, -0.7305, 0.0777, 0.1295, -0.7891, 0.0777, 0.1295, -0.7891, 0, 0.1036, -0.7305, 0.0716, 0.1036, -0.7271, 0, 0.158, -0.8467, 0, 0.1295, -0.793, 0.083, 0.158, -0.8428, 0.083, 0.158, -0.8428, 0, 0.1295, -0.793, 0.0777, 0.1295, -0.7891, 0, 0.1895, -0.8911, 0, 0.158, -0.8467, 0.0873, 0.1895, -0.8867, 0.0873, 0.1895, -0.8867, 0, 0.158, -0.8467, 0.083, 0.158, -0.8428, 0, 0.2247, -0.9253, 0, 0.1895, -0.8911, 0.0907, 0.2247, -0.9209, 0.0907, 0.2247, -0.9209, 0, 0.1895, -0.8911, 0.0873, 0.1895, -0.8867, 0, 0.2646, -0.9482, 0, 0.2247, -0.9253, 0.093, 0.2646, -0.9438, 0.093, 0.2646, -0.9438, 0, 0.2247, -0.9253, 0.0907, 0.2247, -0.9209, 0, 0.3049, -0.9565, 0, 0.2646, -0.9482, 0.0938, 0.3049, -0.9517, 0.0938, 0.3049, -0.9517, 0, 0.2646, -0.9482, 0.093, 0.2646, -0.9438, 0.4509, 0.3049, -0.8433, 0.4509, 0.3464, -0.8438, 0.366, 0.3049, -0.8838, 0.366, 0.3049, -0.8838, 0.4509, 0.3464, -0.8438, 0.366, 0.3464, -0.8838, 0, 0.3955, -0.9565, 0, 0.3464, -0.9565, 0.0938, 0.3955, -0.9521, 0.0938, 0.3955, -0.9521, 0, 0.3464, -0.9565, 0.0938, 0.3464, -0.9521, 0.0102, 0.0017, -0.1035, 0, 0, 0, 0.0203, 0.0017, -0.1019, 0.0202, 0.0068, -0.2057, 0.0102, 0.0017, -0.1035, 0.0403, 0.0068, -0.2026, 0.0403, 0.0068, -0.2026, 0.0102, 0.0017, -0.1035, 0.0203, 0.0017, -0.1019, 0.0301, 0.0153, -0.3052, 0.0202, 0.0068, -0.2057, 0.0598, 0.0153, -0.3008, 0.0598, 0.0153, -0.3008, 0.0202, 0.0068, -0.2057, 0.0403, 0.0068, -0.2026, 0.0395, 0.027, -0.4014, 0.0301, 0.0153, -0.3052, 0.0787, 0.027, -0.3955, 0.0787, 0.027, -0.3955, 0.0301, 0.0153, -0.3052, 0.0598, 0.0153, -0.3008, 0.0485, 0.0418, -0.4924, 0.0395, 0.027, -0.4014, 0.0966, 0.0418, -0.4854, 0.0966, 0.0418, -0.4854, 0.0395, 0.027, -0.4014, 0.0787, 0.027, -0.3955, 0.0569, 0.0597, -0.5776, 0.0485, 0.0418, -0.4924, 0.1133, 0.0597, -0.5693, 0.1133, 0.0597, -0.5693, 0.0485, 0.0418, -0.4924, 0.0966, 0.0418, -0.4854, 0.0646, 0.0803, -0.6563, 0.0569, 0.0597, -0.5776, 0.1287, 0.0803, -0.6465, 0.1287, 0.0803, -0.6465, 0.0569, 0.0597, -0.5776, 0.1133, 0.0597, -0.5693, 0.0716, 0.1036, -0.7271, 0.0646, 0.0803, -0.6563, 0.1425, 0.1036, -0.7163, 0.1425, 0.1036, -0.7163, 0.0646, 0.0803, -0.6563, 0.1287, 0.0803, -0.6465, 0.0777, 0.1295, -0.7891, 0.0716, 0.1036, -0.7271, 0.1547, 0.1295, -0.7778, 0.1547, 0.1295, -0.7778, 0.0716, 0.1036, -0.7271, 0.1425, 0.1036, -0.7163, 0.083, 0.158, -0.8428, 0.0777, 0.1295, -0.7891, 0.1652, 0.158, -0.8306, 0.1652, 0.158, -0.8306, 0.0777, 0.1295, -0.7891, 0.1547, 0.1295, -0.7778, 0.0873, 0.1895, -0.8867, 0.083, 0.158, -0.8428, 0.1738, 0.1895, -0.874, 0.1738, 0.1895, -0.874, 0.083, 0.158, -0.8428, 0.1652, 0.158, -0.8306, 0.0907, 0.2247, -0.9209, 0.0873, 0.1895, -0.8867, 0.1805, 0.2247, -0.9077, 0.1805, 0.2247, -0.9077, 0.0873, 0.1895, -0.8867, 0.1738, 0.1895, -0.874, 0.093, 0.2646, -0.9438, 0.0907, 0.2247, -0.9209, 0.1851, 0.2646, -0.9302, 0.1851, 0.2646, -0.9302, 0.0907, 0.2247, -0.9209, 0.1805, 0.2247, -0.9077, 0.0938, 0.3049, -0.9517, 0.093, 0.2646, -0.9438, 0.1865, 0.3049, -0.938, 0.1865, 0.3049, -0.938, 0.093, 0.2646, -0.9438, 0.1851, 0.2646, -0.9302, 0.5313, 0.3464, 0.7954, 0.6069, 0.3464, 0.7393, 0.5313, 0.3049, 0.7954, 0.5313, 0.3049, 0.7954, 0.6069, 0.3464, 0.7393, 0.6064, 0.3049, 0.7393, 0.0938, 0.3955, -0.9521, 0.0938, 0.3464, -0.9521, 0.1866, 0.3955, -0.9385, 0.1866, 0.3955, -0.9385, 0.0938, 0.3464, -0.9521, 0.1866, 0.3464, -0.9385, 0.0203, 0.0017, -0.1019, 0, 0, 0, 0.0302, 0.0017, -0.0995, 0.0403, 0.0068, -0.2026, 0.0203, 0.0017, -0.1019, 0.06, 0.0068, -0.1978, 0.06, 0.0068, -0.1978, 0.0203, 0.0017, -0.1019, 0.0302, 0.0017, -0.0995, 0.0598, 0.0153, -0.3008, 0.0403, 0.0068, -0.2026, 0.0891, 0.0153, -0.2935, 0.0891, 0.0153, -0.2935, 0.0403, 0.0068, -0.2026, 0.06, 0.0068, -0.1978, 0.0787, 0.027, -0.3955, 0.0598, 0.0153, -0.3008, 0.1171, 0.027, -0.386, 0.1171, 0.027, -0.386, 0.0598, 0.0153, -0.3008, 0.0891, 0.0153, -0.2935, 0.0966, 0.0418, -0.4854, 0.0787, 0.027, -0.3955, 0.1437, 0.0418, -0.4736, 0.1437, 0.0418, -0.4736, 0.0787, 0.027, -0.3955, 0.1171, 0.027, -0.386, 0.1133, 0.0597, -0.5693, 0.0966, 0.0418, -0.4854, 0.1686, 0.0597, -0.5557, 0.1686, 0.0597, -0.5557, 0.0966, 0.0418, -0.4854, 0.1437, 0.0418, -0.4736, 0.1287, 0.0803, -0.6465, 0.1133, 0.0597, -0.5693, 0.1914, 0.0803, -0.6309, 0.1914, 0.0803, -0.6309, 0.1133, 0.0597, -0.5693, 0.1686, 0.0597, -0.5557, 0.1425, 0.1036, -0.7163, 0.1287, 0.0803, -0.6465, 0.212, 0.1036, -0.6987, 0.212, 0.1036, -0.6987, 0.1287, 0.0803, -0.6465, 0.1914, 0.0803, -0.6309, 0.1547, 0.1295, -0.7778, 0.1425, 0.1036, -0.7163, 0.2302, 0.1295, -0.7588, 0.2302, 0.1295, -0.7588, 0.1425, 0.1036, -0.7163, 0.212, 0.1036, -0.6987, 0.1652, 0.158, -0.8306, 0.1547, 0.1295, -0.7778, 0.2458, 0.158, -0.8101, 0.2458, 0.158, -0.8101, 0.1547, 0.1295, -0.7778, 0.2302, 0.1295, -0.7588, 0.1738, 0.1895, -0.874, 0.1652, 0.158, -0.8306, 0.2585, 0.1895, -0.8525, 0.2585, 0.1895, -0.8525, 0.1652, 0.158, -0.8306, 0.2458, 0.158, -0.8101, 0.1805, 0.2247, -0.9077, 0.1738, 0.1895, -0.874, 0.2686, 0.2247, -0.8857, 0.2686, 0.2247, -0.8857, 0.1738, 0.1895, -0.874, 0.2585, 0.1895, -0.8525, 0.1851, 0.2646, -0.9302, 0.1805, 0.2247, -0.9077, 0.2751, 0.2646, -0.9077, 0.2751, 0.2646, -0.9077, 0.1805, 0.2247, -0.9077, 0.2686, 0.2247, -0.8857, 0.1865, 0.3049, -0.938, 0.1851, 0.2646, -0.9302, 0.2776, 0.3049, -0.915, 0.2776, 0.3049, -0.915, 0.1851, 0.2646, -0.9302, 0.2751, 0.2646, -0.9077, 0.1866, 0.3955, -0.9385, 0.1866, 0.3464, -0.9385, 0.2776, 0.3955, -0.9155, 0.2776, 0.3955, -0.9155, 0.1866, 0.3464, -0.9385, 0.2776, 0.3464, -0.9155, 0.0302, 0.0017, -0.0995, 0, 0, 0, 0.0398, 0.0017, -0.096, 0.06, 0.0068, -0.1978, 0.0302, 0.0017, -0.0995, 0.079, 0.0068, -0.1909, 0.079, 0.0068, -0.1909, 0.0302, 0.0017, -0.0995, 0.0398, 0.0017, -0.096, 0.0891, 0.0153, -0.2935, 0.06, 0.0068, -0.1978, 0.1174, 0.0153, -0.2834, 0.1174, 0.0153, -0.2834, 0.06, 0.0068, -0.1978, 0.079, 0.0068, -0.1909, 0.1171, 0.027, -0.386, 0.0891, 0.0153, -0.2935, 0.1543, 0.027, -0.3726, 0.1543, 0.027, -0.3726, 0.0891, 0.0153, -0.2935, 0.1174, 0.0153, -0.2834, 0.1437, 0.0418, -0.4736, 0.1171, 0.027, -0.386, 0.1893, 0.0418, -0.4573, 0.1893, 0.0418, -0.4573, 0.1171, 0.027, -0.386, 0.1543, 0.027, -0.3726, 0.1686, 0.0597, -0.5557, 0.1437, 0.0418, -0.4736, 0.2222, 0.0597, -0.5361, 0.2222, 0.0597, -0.5361, 0.1437, 0.0418, -0.4736, 0.1893, 0.0418, -0.4573, 0.1914, 0.0803, -0.6309, 0.1686, 0.0597, -0.5557, 0.2522, 0.0803, -0.6089, 0.2522, 0.0803, -0.6089, 0.1686, 0.0597, -0.5557, 0.2222, 0.0597, -0.5361, 0.212, 0.1036, -0.6987, 0.1914, 0.0803, -0.6309, 0.2795, 0.1036, -0.6748, 0.2795, 0.1036, -0.6748, 0.1914, 0.0803, -0.6309, 0.2522, 0.0803, -0.6089, 0.2302, 0.1295, -0.7588, 0.212, 0.1036, -0.6987, 0.3035, 0.1295, -0.7329, 0.3035, 0.1295, -0.7329, 0.212, 0.1036, -0.6987, 0.2795, 0.1036, -0.6748, 0.2458, 0.158, -0.8101, 0.2302, 0.1295, -0.7588, 0.324, 0.158, -0.7822, 0.324, 0.158, -0.7822, 0.2302, 0.1295, -0.7588, 0.3035, 0.1295, -0.7329, 0.2585, 0.1895, -0.8525, 0.2458, 0.158, -0.8101, 0.3411, 0.1895, -0.8232, 0.3411, 0.1895, -0.8232, 0.2458, 0.158, -0.8101, 0.324, 0.158, -0.7822, 0.2686, 0.2247, -0.8857, 0.2585, 0.1895, -0.8525, 0.3542, 0.2247, -0.855, 0.3542, 0.2247, -0.855, 0.2585, 0.1895, -0.8525, 0.3411, 0.1895, -0.8232, 0.2751, 0.2646, -0.9077, 0.2686, 0.2247, -0.8857, 0.3628, 0.2646, -0.876, 0.3628, 0.2646, -0.876, 0.2686, 0.2247, -0.8857, 0.3542, 0.2247, -0.855, 0.2776, 0.3049, -0.915, 0.2751, 0.2646, -0.9077, 0.366, 0.3049, -0.8838, 0.366, 0.3049, -0.8838, 0.2751, 0.2646, -0.9077, 0.3628, 0.2646, -0.876, 0.2776, 0.3955, -0.9155, 0.2776, 0.3464, -0.9155, 0.366, 0.3955, -0.8838, 0.366, 0.3955, -0.8838, 0.2776, 0.3464, -0.9155, 0.366, 0.3464, -0.8838, 0.0398, 0.0017, -0.096, 0, 0, 0, 0.049, 0.0017, -0.0917, 0.079, 0.0068, -0.1909, 0.0398, 0.0017, -0.096, 0.0974, 0.0068, -0.1823, 0.0974, 0.0068, -0.1823, 0.0398, 0.0017, -0.096, 0.049, 0.0017, -0.0917, 0.1174, 0.0153, -0.2834, 0.079, 0.0068, -0.1909, 0.1447, 0.0153, -0.2705, 0.1447, 0.0153, -0.2705, 0.079, 0.0068, -0.1909, 0.0974, 0.0068, -0.1823, 0.1543, 0.027, -0.3726, 0.1174, 0.0153, -0.2834, 0.1901, 0.027, -0.3557, 0.1901, 0.027, -0.3557, 0.1174, 0.0153, -0.2834, 0.1447, 0.0153, -0.2705, 0.1893, 0.0418, -0.4573, 0.1543, 0.027, -0.3726, 0.2333, 0.0418, -0.4365, 0.2333, 0.0418, -0.4365, 0.1543, 0.027, -0.3726, 0.1901, 0.027, -0.3557, 0.2222, 0.0597, -0.5361, 0.1893, 0.0418, -0.4573, 0.2737, 0.0597, -0.5117, 0.2737, 0.0597, -0.5117, 0.1893, 0.0418, -0.4573, 0.2333, 0.0418, -0.4365, 0.2522, 0.0803, -0.6089, 0.2222, 0.0597, -0.5361, 0.3108, 0.0803, -0.5815, 0.3108, 0.0803, -0.5815, 0.2222, 0.0597, -0.5361, 0.2737, 0.0597, -0.5117, 0.2795, 0.1036, -0.6748, 0.2522, 0.0803, -0.6089, 0.3442, 0.1036, -0.644, 0.3442, 0.1036, -0.644, 0.2522, 0.0803, -0.6089, 0.3108, 0.0803, -0.5815, 0.3035, 0.1295, -0.7329, 0.2795, 0.1036, -0.6748, 0.3738, 0.1295, -0.6992, 0.3738, 0.1295, -0.6992, 0.2795, 0.1036, -0.6748, 0.3442, 0.1036, -0.644, 0.324, 0.158, -0.7822, 0.3035, 0.1295, -0.7329, 0.3992, 0.158, -0.7466, 0.3992, 0.158, -0.7466, 0.3035, 0.1295, -0.7329, 0.3738, 0.1295, -0.6992, 0.3411, 0.1895, -0.8232, 0.324, 0.158, -0.7822, 0.4202, 0.1895, -0.7856, 0.4202, 0.1895, -0.7856, 0.324, 0.158, -0.7822, 0.3992, 0.158, -0.7466, 0.3542, 0.2247, -0.855, 0.3411, 0.1895, -0.8232, 0.4363, 0.2247, -0.8164, 0.4363, 0.2247, -0.8164, 0.3411, 0.1895, -0.8232, 0.4202, 0.1895, -0.7856, 0.3628, 0.2646, -0.876, 0.3542, 0.2247, -0.855, 0.447, 0.2646, -0.8364, 0.447, 0.2646, -0.8364, 0.3542, 0.2247, -0.855, 0.4363, 0.2247, -0.8164, 0.366, 0.3049, -0.8838, 0.3628, 0.2646, -0.876, 0.4509, 0.3049, -0.8433, 0.4509, 0.3049, -0.8433, 0.3628, 0.2646, -0.876, 0.447, 0.2646, -0.8364, 0.6069, 0.3464, -0.7393, 0.6064, 0.3049, -0.7393, 0.6763, 0.3464, -0.6763, 0.6763, 0.3464, -0.6763, 0.6064, 0.3049, -0.7393, 0.6763, 0.3049, -0.6763, 0.366, 0.3955, -0.8838, 0.366, 0.3464, -0.8838, 0.4509, 0.3955, -0.8438, 0.4509, 0.3955, -0.8438, 0.366, 0.3464, -0.8838, 0.4509, 0.3464, -0.8438, 0.049, 0.0017, -0.0917, 0, 0, 0, 0.0578, 0.0017, -0.0864, 0.0974, 0.0068, -0.1823, 0.049, 0.0017, -0.0917, 0.1148, 0.0068, -0.1718, 0.1148, 0.0068, -0.1718, 0.049, 0.0017, -0.0917, 0.0578, 0.0017, -0.0864, 0.1447, 0.0153, -0.2705, 0.0974, 0.0068, -0.1823, 0.1704, 0.0153, -0.2551, 0.1704, 0.0153, -0.2551, 0.0974, 0.0068, -0.1823, 0.1148, 0.0068, -0.1718, 0.1901, 0.027, -0.3557, 0.1447, 0.0153, -0.2705, 0.224, 0.027, -0.3352, 0.224, 0.027, -0.3352, 0.1447, 0.0153, -0.2705, 0.1704, 0.0153, -0.2551, 0.2333, 0.0418, -0.4365, 0.1901, 0.027, -0.3557, 0.2749, 0.0418, -0.4114, 0.2749, 0.0418, -0.4114, 0.1901, 0.027, -0.3557, 0.224, 0.027, -0.3352, 0.2737, 0.0597, -0.5117, 0.2333, 0.0418, -0.4365, 0.3225, 0.0597, -0.4827, 0.3225, 0.0597, -0.4827, 0.2333, 0.0418, -0.4365, 0.2749, 0.0418, -0.4114, 0.3108, 0.0803, -0.5815, 0.2737, 0.0597, -0.5117, 0.3662, 0.0803, -0.5483, 0.3662, 0.0803, -0.5483, 0.2737, 0.0597, -0.5117, 0.3225, 0.0597, -0.4827, 0.3442, 0.1036, -0.644, 0.3108, 0.0803, -0.5815, 0.4058, 0.1036, -0.6074, 0.4058, 0.1036, -0.6074, 0.3108, 0.0803, -0.5815, 0.3662, 0.0803, -0.5483, 0.3738, 0.1295, -0.6992, 0.3442, 0.1036, -0.644, 0.4407, 0.1295, -0.6592, 0.4407, 0.1295, -0.6592, 0.3442, 0.1036, -0.644, 0.4058, 0.1036, -0.6074, 0.3992, 0.158, -0.7466, 0.3738, 0.1295, -0.6992, 0.4705, 0.158, -0.7041, 0.4705, 0.158, -0.7041, 0.3738, 0.1295, -0.6992, 0.4407, 0.1295, -0.6592, 0.4202, 0.1895, -0.7856, 0.3992, 0.158, -0.7466, 0.4951, 0.1895, -0.7407, 0.4951, 0.1895, -0.7407, 0.3992, 0.158, -0.7466, 0.4705, 0.158, -0.7041, 0.4363, 0.2247, -0.8164, 0.4202, 0.1895, -0.7856, 0.5142, 0.2247, -0.7695, 0.5142, 0.2247, -0.7695, 0.4202, 0.1895, -0.7856, 0.4951, 0.1895, -0.7407, 0.447, 0.2646, -0.8364, 0.4363, 0.2247, -0.8164, 0.5269, 0.2646, -0.7886, 0.5269, 0.2646, -0.7886, 0.4363, 0.2247, -0.8164, 0.5142, 0.2247, -0.7695, 0.4509, 0.3049, -0.8433, 0.447, 0.2646, -0.8364, 0.5313, 0.3049, -0.7954, 0.5313, 0.3049, -0.7954, 0.447, 0.2646, -0.8364, 0.5269, 0.2646, -0.7886, 0, 0.3464, 0.9565, 0.0938, 0.3464, 0.9521, 0, 0.3049, 0.9565, 0, 0.3049, 0.9565, 0.0938, 0.3464, 0.9521, 0.0938, 0.3049, 0.9517, 0.4509, 0.3955, -0.8438, 0.4509, 0.3464, -0.8438, 0.5313, 0.3955, -0.7954, 0.5313, 0.3955, -0.7954, 0.4509, 0.3464, -0.8438, 0.5313, 0.3464, -0.7954, 0.0578, 0.0017, -0.0864, 0, 0, 0, 0.0659, 0.0017, -0.0803, 0.1148, 0.0068, -0.1718, 0.0578, 0.0017, -0.0864, 0.1311, 0.0068, -0.1597, 0.1311, 0.0068, -0.1597, 0.0578, 0.0017, -0.0864, 0.0659, 0.0017, -0.0803, 0.1704, 0.0153, -0.2551, 0.1148, 0.0068, -0.1718, 0.1946, 0.0153, -0.2372, 0.1946, 0.0153, -0.2372, 0.1148, 0.0068, -0.1718, 0.1311, 0.0068, -0.1597, 0.224, 0.027, -0.3352, 0.1704, 0.0153, -0.2551, 0.2559, 0.027, -0.3118, 0.2559, 0.027, -0.3118, 0.1704, 0.0153, -0.2551, 0.1946, 0.0153, -0.2372, 0.2749, 0.0418, -0.4114, 0.224, 0.027, -0.3352, 0.314, 0.0418, -0.3826, 0.314, 0.0418, -0.3826, 0.224, 0.027, -0.3352, 0.2559, 0.027, -0.3118, 0.3225, 0.0597, -0.4827, 0.2749, 0.0418, -0.4114, 0.3684, 0.0597, -0.4487, 0.3684, 0.0597, -0.4487, 0.2749, 0.0418, -0.4114, 0.314, 0.0418, -0.3826, 0.3662, 0.0803, -0.5483, 0.3225, 0.0597, -0.4827, 0.4182, 0.0803, -0.5098, 0.4182, 0.0803, -0.5098, 0.3225, 0.0597, -0.4827, 0.3684, 0.0597, -0.4487, 0.4058, 0.1036, -0.6074, 0.3662, 0.0803, -0.5483, 0.4634, 0.1036, -0.5645, 0.4634, 0.1036, -0.5645, 0.3662, 0.0803, -0.5483, 0.4182, 0.0803, -0.5098, 0.4407, 0.1295, -0.6592, 0.4058, 0.1036, -0.6074, 0.5029, 0.1295, -0.6128, 0.5029, 0.1295, -0.6128, 0.4058, 0.1036, -0.6074, 0.4634, 0.1036, -0.5645, 0.4705, 0.158, -0.7041, 0.4407, 0.1295, -0.6592, 0.5371, 0.158, -0.6543, 0.5371, 0.158, -0.6543, 0.4407, 0.1295, -0.6592, 0.5029, 0.1295, -0.6128, 0.4951, 0.1895, -0.7407, 0.4705, 0.158, -0.7041, 0.5654, 0.1895, -0.689, 0.5654, 0.1895, -0.689, 0.4705, 0.158, -0.7041, 0.5371, 0.158, -0.6543, 0.5142, 0.2247, -0.7695, 0.4951, 0.1895, -0.7407, 0.5869, 0.2247, -0.7153, 0.5869, 0.2247, -0.7153, 0.4951, 0.1895, -0.7407, 0.5654, 0.1895, -0.689, 0.5269, 0.2646, -0.7886, 0.5142, 0.2247, -0.7695, 0.6016, 0.2646, -0.7329, 0.6016, 0.2646, -0.7329, 0.5142, 0.2247, -0.7695, 0.5869, 0.2247, -0.7153, 0.5313, 0.3049, -0.7954, 0.5269, 0.2646, -0.7886, 0.6064, 0.3049, -0.7393, 0.6064, 0.3049, -0.7393, 0.5269, 0.2646, -0.7886, 0.6016, 0.2646, -0.7329, 0.5313, 0.3955, -0.7954, 0.5313, 0.3464, -0.7954, 0.6069, 0.3955, -0.7393, 0.6069, 0.3955, -0.7393, 0.5313, 0.3464, -0.7954, 0.6069, 0.3464, -0.7393, 0.0659, 0.0017, -0.0803, 0, 0, 0, 0.0735, 0.0017, -0.0735, 0.1311, 0.0068, -0.1597, 0.0659, 0.0017, -0.0803, 0.1461, 0.0068, -0.1461, 0.1461, 0.0068, -0.1461, 0.0659, 0.0017, -0.0803, 0.0735, 0.0017, -0.0735, 0.1946, 0.0153, -0.2372, 0.1311, 0.0068, -0.1597, 0.2169, 0.0153, -0.2169, 0.2169, 0.0153, -0.2169, 0.1311, 0.0068, -0.1597, 0.1461, 0.0068, -0.1461, 0.2559, 0.027, -0.3118, 0.1946, 0.0153, -0.2372, 0.2852, 0.027, -0.2852, 0.2852, 0.027, -0.2852, 0.1946, 0.0153, -0.2372, 0.2169, 0.0153, -0.2169, 0.314, 0.0418, -0.3826, 0.2559, 0.027, -0.3118, 0.3499, 0.0418, -0.3499, 0.3499, 0.0418, -0.3499, 0.2559, 0.027, -0.3118, 0.2852, 0.027, -0.2852, 0.3684, 0.0597, -0.4487, 0.314, 0.0418, -0.3826, 0.4106, 0.0597, -0.4106, 0.4106, 0.0597, -0.4106, 0.314, 0.0418, -0.3826, 0.3499, 0.0418, -0.3499, 0.4182, 0.0803, -0.5098, 0.3684, 0.0597, -0.4487, 0.4663, 0.0803, -0.4663, 0.4663, 0.0803, -0.4663, 0.3684, 0.0597, -0.4487, 0.4106, 0.0597, -0.4106, 0.4634, 0.1036, -0.5645, 0.4182, 0.0803, -0.5098, 0.5166, 0.1036, -0.5166, 0.5166, 0.1036, -0.5166, 0.4182, 0.0803, -0.5098, 0.4663, 0.0803, -0.4663, 0.5029, 0.1295, -0.6128, 0.4634, 0.1036, -0.5645, 0.5605, 0.1295, -0.5605, 0.5605, 0.1295, -0.5605, 0.4634, 0.1036, -0.5645, 0.5166, 0.1036, -0.5166, 0.5371, 0.158, -0.6543, 0.5029, 0.1295, -0.6128, 0.5986, 0.158, -0.5986, 0.5986, 0.158, -0.5986, 0.5029, 0.1295, -0.6128, 0.5605, 0.1295, -0.5605, 0.5654, 0.1895, -0.689, 0.5371, 0.158, -0.6543, 0.6299, 0.1895, -0.6299, 0.6299, 0.1895, -0.6299, 0.5371, 0.158, -0.6543, 0.5986, 0.158, -0.5986, 0.5869, 0.2247, -0.7153, 0.5654, 0.1895, -0.689, 0.6543, 0.2247, -0.6543, 0.6543, 0.2247, -0.6543, 0.5654, 0.1895, -0.689, 0.6299, 0.1895, -0.6299, 0.6016, 0.2646, -0.7329, 0.5869, 0.2247, -0.7153, 0.6704, 0.2646, -0.6704, 0.6704, 0.2646, -0.6704, 0.5869, 0.2247, -0.7153, 0.6543, 0.2247, -0.6543, 0.6064, 0.3049, -0.7393, 0.6016, 0.2646, -0.7329, 0.6763, 0.3049, -0.6763, 0.6763, 0.3049, -0.6763, 0.6016, 0.2646, -0.7329, 0.6704, 0.2646, -0.6704, 0.7954, 0.3464, -0.5313, 0.7954, 0.3049, -0.5313, 0.8438, 0.3464, -0.4509, 0.8438, 0.3464, -0.4509, 0.7954, 0.3049, -0.5313, 0.8433, 0.3049, -0.4509, 0.6763, 0.3049, -0.6763, 0.7393, 0.3049, -0.6064, 0.6763, 0.3464, -0.6763, 0.6763, 0.3464, -0.6763, 0.7393, 0.3049, -0.6064, 0.7393, 0.3464, -0.6069, 0.6069, 0.3955, -0.7393, 0.6069, 0.3464, -0.7393, 0.6763, 0.3955, -0.6763, 0.6763, 0.3955, -0.6763, 0.6069, 0.3464, -0.7393, 0.6763, 0.3464, -0.6763, 0.0735, 0.0017, -0.0735, 0, 0, 0, 0.0803, 0.0017, -0.0659, 0.1461, 0.0068, -0.1461, 0.0735, 0.0017, -0.0735, 0.1597, 0.0068, -0.1311, 0.1597, 0.0068, -0.1311, 0.0735, 0.0017, -0.0735, 0.0803, 0.0017, -0.0659, 0.2169, 0.0153, -0.2169, 0.1461, 0.0068, -0.1461, 0.2372, 0.0153, -0.1946, 0.2372, 0.0153, -0.1946, 0.1461, 0.0068, -0.1461, 0.1597, 0.0068, -0.1311, 0.2852, 0.027, -0.2852, 0.2169, 0.0153, -0.2169, 0.3118, 0.027, -0.2559, 0.3118, 0.027, -0.2559, 0.2169, 0.0153, -0.2169, 0.2372, 0.0153, -0.1946, 0.3499, 0.0418, -0.3499, 0.2852, 0.027, -0.2852, 0.3826, 0.0418, -0.314, 0.3826, 0.0418, -0.314, 0.2852, 0.027, -0.2852, 0.3118, 0.027, -0.2559, 0.4106, 0.0597, -0.4106, 0.3499, 0.0418, -0.3499, 0.4487, 0.0597, -0.3684, 0.4487, 0.0597, -0.3684, 0.3499, 0.0418, -0.3499, 0.3826, 0.0418, -0.314, 0.4663, 0.0803, -0.4663, 0.4106, 0.0597, -0.4106, 0.5098, 0.0803, -0.4182, 0.5098, 0.0803, -0.4182, 0.4106, 0.0597, -0.4106, 0.4487, 0.0597, -0.3684, 0.5166, 0.1036, -0.5166, 0.4663, 0.0803, -0.4663, 0.5645, 0.1036, -0.4634, 0.5645, 0.1036, -0.4634, 0.4663, 0.0803, -0.4663, 0.5098, 0.0803, -0.4182, 0.5605, 0.1295, -0.5605, 0.5166, 0.1036, -0.5166, 0.6128, 0.1295, -0.5029, 0.6128, 0.1295, -0.5029, 0.5166, 0.1036, -0.5166, 0.5645, 0.1036, -0.4634, 0.5986, 0.158, -0.5986, 0.5605, 0.1295, -0.5605, 0.6543, 0.158, -0.5371, 0.6543, 0.158, -0.5371, 0.5605, 0.1295, -0.5605, 0.6128, 0.1295, -0.5029, 0.6299, 0.1895, -0.6299, 0.5986, 0.158, -0.5986, 0.689, 0.1895, -0.5654, 0.689, 0.1895, -0.5654, 0.5986, 0.158, -0.5986, 0.6543, 0.158, -0.5371, 0.6543, 0.2247, -0.6543, 0.6299, 0.1895, -0.6299, 0.7153, 0.2247, -0.5869, 0.7153, 0.2247, -0.5869, 0.6299, 0.1895, -0.6299, 0.689, 0.1895, -0.5654, 0.6704, 0.2646, -0.6704, 0.6543, 0.2247, -0.6543, 0.7329, 0.2646, -0.6016, 0.7329, 0.2646, -0.6016, 0.6543, 0.2247, -0.6543, 0.7153, 0.2247, -0.5869, 0.6763, 0.3049, -0.6763, 0.6704, 0.2646, -0.6704, 0.7393, 0.3049, -0.6064, 0.7393, 0.3049, -0.6064, 0.6704, 0.2646, -0.6704, 0.7329, 0.2646, -0.6016, 0.9155, 0.3464, -0.2776, 0.8838, 0.3464, -0.366, 0.915, 0.3049, -0.2776, 0.915, 0.3049, -0.2776, 0.8838, 0.3464, -0.366, 0.8838, 0.3049, -0.366, 0.6763, 0.3955, -0.6763, 0.6763, 0.3464, -0.6763, 0.7393, 0.3955, -0.6069, 0.7393, 0.3955, -0.6069, 0.6763, 0.3464, -0.6763, 0.7393, 0.3464, -0.6069, 0.0803, 0.0017, -0.0659, 0, 0, 0, 0.0864, 0.0017, -0.0578, 0.1597, 0.0068, -0.1311, 0.0803, 0.0017, -0.0659, 0.1718, 0.0068, -0.1148, 0.1718, 0.0068, -0.1148, 0.0803, 0.0017, -0.0659, 0.0864, 0.0017, -0.0578, 0.2372, 0.0153, -0.1946, 0.1597, 0.0068, -0.1311, 0.2551, 0.0153, -0.1704, 0.2551, 0.0153, -0.1704, 0.1597, 0.0068, -0.1311, 0.1718, 0.0068, -0.1148, 0.3118, 0.027, -0.2559, 0.2372, 0.0153, -0.1946, 0.3352, 0.027, -0.224, 0.3352, 0.027, -0.224, 0.2372, 0.0153, -0.1946, 0.2551, 0.0153, -0.1704, 0.3826, 0.0418, -0.314, 0.3118, 0.027, -0.2559, 0.4114, 0.0418, -0.2749, 0.4114, 0.0418, -0.2749, 0.3118, 0.027, -0.2559, 0.3352, 0.027, -0.224, 0.4487, 0.0597, -0.3684, 0.3826, 0.0418, -0.314, 0.4827, 0.0597, -0.3225, 0.4827, 0.0597, -0.3225, 0.3826, 0.0418, -0.314, 0.4114, 0.0418, -0.2749, 0.5098, 0.0803, -0.4182, 0.4487, 0.0597, -0.3684, 0.5483, 0.0803, -0.3662, 0.5483, 0.0803, -0.3662, 0.4487, 0.0597, -0.3684, 0.4827, 0.0597, -0.3225, 0.5645, 0.1036, -0.4634, 0.5098, 0.0803, -0.4182, 0.6074, 0.1036, -0.4058, 0.6074, 0.1036, -0.4058, 0.5098, 0.0803, -0.4182, 0.5483, 0.0803, -0.3662, 0.6128, 0.1295, -0.5029, 0.5645, 0.1036, -0.4634, 0.6592, 0.1295, -0.4407, 0.6592, 0.1295, -0.4407, 0.5645, 0.1036, -0.4634, 0.6074, 0.1036, -0.4058, 0.6543, 0.158, -0.5371, 0.6128, 0.1295, -0.5029, 0.7041, 0.158, -0.4705, 0.7041, 0.158, -0.4705, 0.6128, 0.1295, -0.5029, 0.6592, 0.1295, -0.4407, 0.689, 0.1895, -0.5654, 0.6543, 0.158, -0.5371, 0.7407, 0.1895, -0.4951, 0.7407, 0.1895, -0.4951, 0.6543, 0.158, -0.5371, 0.7041, 0.158, -0.4705, 0.7153, 0.2247, -0.5869, 0.689, 0.1895, -0.5654, 0.7695, 0.2247, -0.5142, 0.7695, 0.2247, -0.5142, 0.689, 0.1895, -0.5654, 0.7407, 0.1895, -0.4951, 0.7329, 0.2646, -0.6016, 0.7153, 0.2247, -0.5869, 0.7886, 0.2646, -0.5269, 0.7886, 0.2646, -0.5269, 0.7153, 0.2247, -0.5869, 0.7695, 0.2247, -0.5142, 0.7393, 0.3049, -0.6064, 0.7329, 0.2646, -0.6016, 0.7954, 0.3049, -0.5313, 0.7954, 0.3049, -0.5313, 0.7329, 0.2646, -0.6016, 0.7886, 0.2646, -0.5269, 0.9517, 0.3049, 0.0938, 0.938, 0.3049, 0.1865, 0.9521, 0.3464, 0.0938, 0.9521, 0.3464, 0.0938, 0.938, 0.3049, 0.1865, 0.9385, 0.3464, 0.1866, 0.7393, 0.3955, -0.6069, 0.7393, 0.3464, -0.6069, 0.7954, 0.3955, -0.5313, 0.7954, 0.3955, -0.5313, 0.7393, 0.3464, -0.6069, 0.7954, 0.3464, -0.5313, 0.0864, 0.0017, -0.0578, 0, 0, 0, 0.0917, 0.0017, -0.049, 0.1718, 0.0068, -0.1148, 0.0864, 0.0017, -0.0578, 0.1823, 0.0068, -0.0974, 0.1823, 0.0068, -0.0974, 0.0864, 0.0017, -0.0578, 0.0917, 0.0017, -0.049, 0.2551, 0.0153, -0.1704, 0.1718, 0.0068, -0.1148, 0.2705, 0.0153, -0.1447, 0.2705, 0.0153, -0.1447, 0.1718, 0.0068, -0.1148, 0.1823, 0.0068, -0.0974, 0.3352, 0.027, -0.224, 0.2551, 0.0153, -0.1704, 0.3557, 0.027, -0.1901, 0.3557, 0.027, -0.1901, 0.2551, 0.0153, -0.1704, 0.2705, 0.0153, -0.1447, 0.4114, 0.0418, -0.2749, 0.3352, 0.027, -0.224, 0.4365, 0.0418, -0.2333, 0.4365, 0.0418, -0.2333, 0.3352, 0.027, -0.224, 0.3557, 0.027, -0.1901, 0.4827, 0.0597, -0.3225, 0.4114, 0.0418, -0.2749, 0.5117, 0.0597, -0.2737, 0.5117, 0.0597, -0.2737, 0.4114, 0.0418, -0.2749, 0.4365, 0.0418, -0.2333, 0.5483, 0.0803, -0.3662, 0.4827, 0.0597, -0.3225, 0.5815, 0.0803, -0.3108, 0.5815, 0.0803, -0.3108, 0.4827, 0.0597, -0.3225, 0.5117, 0.0597, -0.2737, 0.6074, 0.1036, -0.4058, 0.5483, 0.0803, -0.3662, 0.644, 0.1036, -0.3442, 0.644, 0.1036, -0.3442, 0.5483, 0.0803, -0.3662, 0.5815, 0.0803, -0.3108, 0.6592, 0.1295, -0.4407, 0.6074, 0.1036, -0.4058, 0.6992, 0.1295, -0.3738, 0.6992, 0.1295, -0.3738, 0.6074, 0.1036, -0.4058, 0.644, 0.1036, -0.3442, 0.7041, 0.158, -0.4705, 0.6592, 0.1295, -0.4407, 0.7466, 0.158, -0.3992, 0.7466, 0.158, -0.3992, 0.6592, 0.1295, -0.4407, 0.6992, 0.1295, -0.3738, 0.7407, 0.1895, -0.4951, 0.7041, 0.158, -0.4705, 0.7856, 0.1895, -0.4202, 0.7856, 0.1895, -0.4202, 0.7041, 0.158, -0.4705, 0.7466, 0.158, -0.3992, 0.7695, 0.2247, -0.5142, 0.7407, 0.1895, -0.4951, 0.8164, 0.2247, -0.4363, 0.8164, 0.2247, -0.4363, 0.7407, 0.1895, -0.4951, 0.7856, 0.1895, -0.4202, 0.7886, 0.2646, -0.5269, 0.7695, 0.2247, -0.5142, 0.8364, 0.2646, -0.447, 0.8364, 0.2646, -0.447, 0.7695, 0.2247, -0.5142, 0.8164, 0.2247, -0.4363, 0.7954, 0.3049, -0.5313, 0.7886, 0.2646, -0.5269, 0.8433, 0.3049, -0.4509, 0.8433, 0.3049, -0.4509, 0.7886, 0.2646, -0.5269, 0.8364, 0.2646, -0.447, 0.7954, 0.3955, -0.5313, 0.7954, 0.3464, -0.5313, 0.8438, 0.3955, -0.4509, 0.8438, 0.3955, -0.4509, 0.7954, 0.3464, -0.5313, 0.8438, 0.3464, -0.4509, 0.0917, 0.0017, -0.049, 0, 0, 0, 0.096, 0.0017, -0.0398, 0.1823, 0.0068, -0.0974, 0.0917, 0.0017, -0.049, 0.1909, 0.0068, -0.079, 0.1909, 0.0068, -0.079, 0.0917, 0.0017, -0.049, 0.096, 0.0017, -0.0398, 0.2705, 0.0153, -0.1447, 0.1823, 0.0068, -0.0974, 0.2834, 0.0153, -0.1174, 0.2834, 0.0153, -0.1174, 0.1823, 0.0068, -0.0974, 0.1909, 0.0068, -0.079, 0.3557, 0.027, -0.1901, 0.2705, 0.0153, -0.1447, 0.3726, 0.027, -0.1543, 0.3726, 0.027, -0.1543, 0.2705, 0.0153, -0.1447, 0.2834, 0.0153, -0.1174, 0.4365, 0.0418, -0.2333, 0.3557, 0.027, -0.1901, 0.4573, 0.0418, -0.1893, 0.4573, 0.0418, -0.1893, 0.3557, 0.027, -0.1901, 0.3726, 0.027, -0.1543, 0.5117, 0.0597, -0.2737, 0.4365, 0.0418, -0.2333, 0.5361, 0.0597, -0.2222, 0.5361, 0.0597, -0.2222, 0.4365, 0.0418, -0.2333, 0.4573, 0.0418, -0.1893, 0.5815, 0.0803, -0.3108, 0.5117, 0.0597, -0.2737, 0.6089, 0.0803, -0.2522, 0.6089, 0.0803, -0.2522, 0.5117, 0.0597, -0.2737, 0.5361, 0.0597, -0.2222, 0.644, 0.1036, -0.3442, 0.5815, 0.0803, -0.3108, 0.6748, 0.1036, -0.2795, 0.6748, 0.1036, -0.2795, 0.5815, 0.0803, -0.3108, 0.6089, 0.0803, -0.2522, 0.6992, 0.1295, -0.3738, 0.644, 0.1036, -0.3442, 0.7329, 0.1295, -0.3035, 0.7329, 0.1295, -0.3035, 0.644, 0.1036, -0.3442, 0.6748, 0.1036, -0.2795, 0.7466, 0.158, -0.3992, 0.6992, 0.1295, -0.3738, 0.7822, 0.158, -0.324, 0.7822, 0.158, -0.324, 0.6992, 0.1295, -0.3738, 0.7329, 0.1295, -0.3035, 0.7856, 0.1895, -0.4202, 0.7466, 0.158, -0.3992, 0.8232, 0.1895, -0.3411, 0.8232, 0.1895, -0.3411, 0.7466, 0.158, -0.3992, 0.7822, 0.158, -0.324, 0.8164, 0.2247, -0.4363, 0.7856, 0.1895, -0.4202, 0.855, 0.2247, -0.3542, 0.855, 0.2247, -0.3542, 0.7856, 0.1895, -0.4202, 0.8232, 0.1895, -0.3411, 0.8364, 0.2646, -0.447, 0.8164, 0.2247, -0.4363, 0.876, 0.2646, -0.3628, 0.876, 0.2646, -0.3628, 0.8164, 0.2247, -0.4363, 0.855, 0.2247, -0.3542, 0.8433, 0.3049, -0.4509, 0.8364, 0.2646, -0.447, 0.8838, 0.3049, -0.366, 0.8838, 0.3049, -0.366, 0.8364, 0.2646, -0.447, 0.876, 0.2646, -0.3628, 0.8438, 0.3464, 0.4509, 0.8433, 0.3049, 0.4509, 0.7954, 0.3464, 0.5313, 0.7954, 0.3464, 0.5313, 0.8433, 0.3049, 0.4509, 0.7954, 0.3049, 0.5313, 0.8438, 0.3955, -0.4509, 0.8438, 0.3464, -0.4509, 0.8838, 0.3955, -0.366, 0.8838, 0.3955, -0.366, 0.8438, 0.3464, -0.4509, 0.8838, 0.3464, -0.366, 0.096, 0.0017, -0.0398, 0, 0, 0, 0.0995, 0.0017, -0.0302, 0.1909, 0.0068, -0.079, 0.096, 0.0017, -0.0398, 0.1978, 0.0068, -0.06, 0.1978, 0.0068, -0.06, 0.096, 0.0017, -0.0398, 0.0995, 0.0017, -0.0302, 0.2834, 0.0153, -0.1174, 0.1909, 0.0068, -0.079, 0.2935, 0.0153, -0.0891, 0.2935, 0.0153, -0.0891, 0.1909, 0.0068, -0.079, 0.1978, 0.0068, -0.06, 0.3726, 0.027, -0.1543, 0.2834, 0.0153, -0.1174, 0.386, 0.027, -0.1171, 0.386, 0.027, -0.1171, 0.2834, 0.0153, -0.1174, 0.2935, 0.0153, -0.0891, 0.4573, 0.0418, -0.1893, 0.3726, 0.027, -0.1543, 0.4736, 0.0418, -0.1437, 0.4736, 0.0418, -0.1437, 0.3726, 0.027, -0.1543, 0.386, 0.027, -0.1171, 0.5361, 0.0597, -0.2222, 0.4573, 0.0418, -0.1893, 0.5557, 0.0597, -0.1686, 0.5557, 0.0597, -0.1686, 0.4573, 0.0418, -0.1893, 0.4736, 0.0418, -0.1437, 0.6089, 0.0803, -0.2522, 0.5361, 0.0597, -0.2222, 0.6309, 0.0803, -0.1914, 0.6309, 0.0803, -0.1914, 0.5361, 0.0597, -0.2222, 0.5557, 0.0597, -0.1686, 0.6748, 0.1036, -0.2795, 0.6089, 0.0803, -0.2522, 0.6987, 0.1036, -0.212, 0.6987, 0.1036, -0.212, 0.6089, 0.0803, -0.2522, 0.6309, 0.0803, -0.1914, 0.7329, 0.1295, -0.3035, 0.6748, 0.1036, -0.2795, 0.7588, 0.1295, -0.2302, 0.7588, 0.1295, -0.2302, 0.6748, 0.1036, -0.2795, 0.6987, 0.1036, -0.212, 0.7822, 0.158, -0.324, 0.7329, 0.1295, -0.3035, 0.8101, 0.158, -0.2458, 0.8101, 0.158, -0.2458, 0.7329, 0.1295, -0.3035, 0.7588, 0.1295, -0.2302, 0.8232, 0.1895, -0.3411, 0.7822, 0.158, -0.324, 0.8525, 0.1895, -0.2585, 0.8525, 0.1895, -0.2585, 0.7822, 0.158, -0.324, 0.8101, 0.158, -0.2458, 0.855, 0.2247, -0.3542, 0.8232, 0.1895, -0.3411, 0.8857, 0.2247, -0.2686, 0.8857, 0.2247, -0.2686, 0.8232, 0.1895, -0.3411, 0.8525, 0.1895, -0.2585, 0.876, 0.2646, -0.3628, 0.855, 0.2247, -0.3542, 0.9077, 0.2646, -0.2751, 0.9077, 0.2646, -0.2751, 0.855, 0.2247, -0.3542, 0.8857, 0.2247, -0.2686, 0.8838, 0.3049, -0.366, 0.876, 0.2646, -0.3628, 0.915, 0.3049, -0.2776, 0.915, 0.3049, -0.2776, 0.876, 0.2646, -0.3628, 0.9077, 0.2646, -0.2751, 0.8838, 0.3955, -0.366, 0.8838, 0.3464, -0.366, 0.9155, 0.3955, -0.2776, 0.9155, 0.3955, -0.2776, 0.8838, 0.3464, -0.366, 0.9155, 0.3464, -0.2776, 0.0995, 0.0017, -0.0302, 0, 0, 0, 0.1019, 0.0017, -0.0203, 0.1978, 0.0068, -0.06, 0.0995, 0.0017, -0.0302, 0.2026, 0.0068, -0.0403, 0.2026, 0.0068, -0.0403, 0.0995, 0.0017, -0.0302, 0.1019, 0.0017, -0.0203, 0.2935, 0.0153, -0.0891, 0.1978, 0.0068, -0.06, 0.3008, 0.0153, -0.0598, 0.3008, 0.0153, -0.0598, 0.1978, 0.0068, -0.06, 0.2026, 0.0068, -0.0403, 0.386, 0.027, -0.1171, 0.2935, 0.0153, -0.0891, 0.3955, 0.027, -0.0787, 0.3955, 0.027, -0.0787, 0.2935, 0.0153, -0.0891, 0.3008, 0.0153, -0.0598, 0.4736, 0.0418, -0.1437, 0.386, 0.027, -0.1171, 0.4854, 0.0418, -0.0966, 0.4854, 0.0418, -0.0966, 0.386, 0.027, -0.1171, 0.3955, 0.027, -0.0787, 0.5557, 0.0597, -0.1686, 0.4736, 0.0418, -0.1437, 0.5693, 0.0597, -0.1133, 0.5693, 0.0597, -0.1133, 0.4736, 0.0418, -0.1437, 0.4854, 0.0418, -0.0966, 0.6309, 0.0803, -0.1914, 0.5557, 0.0597, -0.1686, 0.6465, 0.0803, -0.1287, 0.6465, 0.0803, -0.1287, 0.5557, 0.0597, -0.1686, 0.5693, 0.0597, -0.1133, 0.6987, 0.1036, -0.212, 0.6309, 0.0803, -0.1914, 0.7163, 0.1036, -0.1425, 0.7163, 0.1036, -0.1425, 0.6309, 0.0803, -0.1914, 0.6465, 0.0803, -0.1287, 0.7588, 0.1295, -0.2302, 0.6987, 0.1036, -0.212, 0.7778, 0.1295, -0.1547, 0.7778, 0.1295, -0.1547, 0.6987, 0.1036, -0.212, 0.7163, 0.1036, -0.1425, 0.8101, 0.158, -0.2458, 0.7588, 0.1295, -0.2302, 0.8306, 0.158, -0.1652, 0.8306, 0.158, -0.1652, 0.7588, 0.1295, -0.2302, 0.7778, 0.1295, -0.1547, 0.8525, 0.1895, -0.2585, 0.8101, 0.158, -0.2458, 0.874, 0.1895, -0.1738, 0.874, 0.1895, -0.1738, 0.8101, 0.158, -0.2458, 0.8306, 0.158, -0.1652, 0.8857, 0.2247, -0.2686, 0.8525, 0.1895, -0.2585, 0.9077, 0.2247, -0.1805, 0.9077, 0.2247, -0.1805, 0.8525, 0.1895, -0.2585, 0.874, 0.1895, -0.1738, 0.9077, 0.2646, -0.2751, 0.8857, 0.2247, -0.2686, 0.9302, 0.2646, -0.1851, 0.9302, 0.2646, -0.1851, 0.8857, 0.2247, -0.2686, 0.9077, 0.2247, -0.1805, 0.915, 0.3049, -0.2776, 0.9077, 0.2646, -0.2751, 0.938, 0.3049, -0.1865, 0.938, 0.3049, -0.1865, 0.9077, 0.2646, -0.2751, 0.9302, 0.2646, -0.1851, 0.9155, 0.3955, -0.2776, 0.9155, 0.3464, -0.2776, 0.9385, 0.3955, -0.1866, 0.9385, 0.3955, -0.1866, 0.9155, 0.3464, -0.2776, 0.9385, 0.3464, -0.1866, 0.1019, 0.0017, -0.0203, 0, 0, 0, 0.1035, 0.0017, -0.0102, 0.2026, 0.0068, -0.0403, 0.1019, 0.0017, -0.0203, 0.2057, 0.0068, -0.0202, 0.2057, 0.0068, -0.0202, 0.1019, 0.0017, -0.0203, 0.1035, 0.0017, -0.0102, 0.3008, 0.0153, -0.0598, 0.2026, 0.0068, -0.0403, 0.3052, 0.0153, -0.0301, 0.3052, 0.0153, -0.0301, 0.2026, 0.0068, -0.0403, 0.2057, 0.0068, -0.0202, 0.3955, 0.027, -0.0787, 0.3008, 0.0153, -0.0598, 0.4014, 0.027, -0.0395, 0.4014, 0.027, -0.0395, 0.3008, 0.0153, -0.0598, 0.3052, 0.0153, -0.0301, 0.4854, 0.0418, -0.0966, 0.3955, 0.027, -0.0787, 0.4924, 0.0418, -0.0485, 0.4924, 0.0418, -0.0485, 0.3955, 0.027, -0.0787, 0.4014, 0.027, -0.0395, 0.5693, 0.0597, -0.1133, 0.4854, 0.0418, -0.0966, 0.5776, 0.0597, -0.0569, 0.5776, 0.0597, -0.0569, 0.4854, 0.0418, -0.0966, 0.4924, 0.0418, -0.0485, 0.6465, 0.0803, -0.1287, 0.5693, 0.0597, -0.1133, 0.6563, 0.0803, -0.0646, 0.6563, 0.0803, -0.0646, 0.5693, 0.0597, -0.1133, 0.5776, 0.0597, -0.0569, 0.7163, 0.1036, -0.1425, 0.6465, 0.0803, -0.1287, 0.7271, 0.1036, -0.0716, 0.7271, 0.1036, -0.0716, 0.6465, 0.0803, -0.1287, 0.6563, 0.0803, -0.0646, 0.7778, 0.1295, -0.1547, 0.7163, 0.1036, -0.1425, 0.7891, 0.1295, -0.0777, 0.7891, 0.1295, -0.0777, 0.7163, 0.1036, -0.1425, 0.7271, 0.1036, -0.0716, 0.8306, 0.158, -0.1652, 0.7778, 0.1295, -0.1547, 0.8428, 0.158, -0.083, 0.8428, 0.158, -0.083, 0.7778, 0.1295, -0.1547, 0.7891, 0.1295, -0.0777, 0.874, 0.1895, -0.1738, 0.8306, 0.158, -0.1652, 0.8867, 0.1895, -0.0873, 0.8867, 0.1895, -0.0873, 0.8306, 0.158, -0.1652, 0.8428, 0.158, -0.083, 0.9077, 0.2247, -0.1805, 0.874, 0.1895, -0.1738, 0.9209, 0.2247, -0.0907, 0.9209, 0.2247, -0.0907, 0.874, 0.1895, -0.1738, 0.8867, 0.1895, -0.0873, 0.9302, 0.2646, -0.1851, 0.9077, 0.2247, -0.1805, 0.9438, 0.2646, -0.093, 0.9438, 0.2646, -0.093, 0.9077, 0.2247, -0.1805, 0.9209, 0.2247, -0.0907, 0.938, 0.3049, -0.1865, 0.9302, 0.2646, -0.1851, 0.9517, 0.3049, -0.0938, 0.9517, 0.3049, -0.0938, 0.9302, 0.2646, -0.1851, 0.9438, 0.2646, -0.093, 0.9385, 0.3955, -0.1866, 0.9385, 0.3464, -0.1866, 0.9521, 0.3955, -0.0938, 0.9521, 0.3955, -0.0938, 0.9385, 0.3464, -0.1866, 0.9521, 0.3464, -0.0938, 0.1035, 0.0017, -0.0102, 0, 0, 0, 0.1039, 0.0017, 0, 0.2057, 0.0068, -0.0202, 0.1035, 0.0017, -0.0102, 0.2067, 0.0068, 0, 0.2067, 0.0068, 0, 0.1035, 0.0017, -0.0102, 0.1039, 0.0017, 0, 0.3052, 0.0153, -0.0301, 0.2057, 0.0068, -0.0202, 0.3069, 0.0153, 0, 0.3069, 0.0153, 0, 0.2057, 0.0068, -0.0202, 0.2067, 0.0068, 0, 0.4014, 0.027, -0.0395, 0.3052, 0.0153, -0.0301, 0.4033, 0.027, 0, 0.4033, 0.027, 0, 0.3052, 0.0153, -0.0301, 0.3069, 0.0153, 0, 0.4924, 0.0418, -0.0485, 0.4014, 0.027, -0.0395, 0.4949, 0.0418, 0, 0.4949, 0.0418, 0, 0.4014, 0.027, -0.0395, 0.4033, 0.027, 0, 0.5776, 0.0597, -0.0569, 0.4924, 0.0418, -0.0485, 0.5806, 0.0597, 0, 0.5806, 0.0597, 0, 0.4924, 0.0418, -0.0485, 0.4949, 0.0418, 0, 0.6563, 0.0803, -0.0646, 0.5776, 0.0597, -0.0569, 0.6592, 0.0803, 0, 0.6592, 0.0803, 0, 0.5776, 0.0597, -0.0569, 0.5806, 0.0597, 0, 0.7271, 0.1036, -0.0716, 0.6563, 0.0803, -0.0646, 0.7305, 0.1036, 0, 0.7305, 0.1036, 0, 0.6563, 0.0803, -0.0646, 0.6592, 0.0803, 0, 0.7891, 0.1295, -0.0777, 0.7271, 0.1036, -0.0716, 0.793, 0.1295, 0, 0.793, 0.1295, 0, 0.7271, 0.1036, -0.0716, 0.7305, 0.1036, 0, 0.8428, 0.158, -0.083, 0.7891, 0.1295, -0.0777, 0.8467, 0.158, 0, 0.8467, 0.158, 0, 0.7891, 0.1295, -0.0777, 0.793, 0.1295, 0, 0.8867, 0.1895, -0.0873, 0.8428, 0.158, -0.083, 0.8911, 0.1895, 0, 0.8911, 0.1895, 0, 0.8428, 0.158, -0.083, 0.8467, 0.158, 0, 0.9209, 0.2247, -0.0907, 0.8867, 0.1895, -0.0873, 0.9253, 0.2247, 0, 0.9253, 0.2247, 0, 0.8867, 0.1895, -0.0873, 0.8911, 0.1895, 0, 0.9438, 0.2646, -0.093, 0.9209, 0.2247, -0.0907, 0.9482, 0.2646, 0, 0.9482, 0.2646, 0, 0.9209, 0.2247, -0.0907, 0.9253, 0.2247, 0, 0.9517, 0.3049, -0.0938, 0.9438, 0.2646, -0.093, 0.9565, 0.3049, 0, 0.9565, 0.3049, 0, 0.9438, 0.2646, -0.093, 0.9482, 0.2646, 0, 0.9521, 0.3955, -0.0938, 0.9521, 0.3464, -0.0938, 0.9565, 0.3955, 0, 0.9565, 0.3955, 0, 0.9521, 0.3464, -0.0938, 0.9565, 0.3464, 0, 0.0938, 0.3049, -0.9517, 0.1865, 0.3049, -0.938, 0.0938, 0.3464, -0.9521, 0.0938, 0.3464, -0.9521, 0.1865, 0.3049, -0.938, 0.1866, 0.3464, -0.9385, -0.1035, 0.0017, 0.0102, 0, 0, 0, -0.1039, 0.0017, 0, -0.1035, 0.0017, 0.0102, -0.1039, 0.0017, 0, -0.2057, 0.0068, 0.0202, -0.2057, 0.0068, 0.0202, -0.1039, 0.0017, 0, -0.2067, 0.0068, 0, -0.2057, 0.0068, 0.0202, -0.2067, 0.0068, 0, -0.3052, 0.0153, 0.0301, -0.3052, 0.0153, 0.0301, -0.2067, 0.0068, 0, -0.3069, 0.0153, 0, -0.3052, 0.0153, 0.0301, -0.3069, 0.0153, 0, -0.4014, 0.027, 0.0395, -0.4014, 0.027, 0.0395, -0.3069, 0.0153, 0, -0.4033, 0.027, 0, -0.4014, 0.027, 0.0395, -0.4033, 0.027, 0, -0.4924, 0.0418, 0.0485, -0.4924, 0.0418, 0.0485, -0.4033, 0.027, 0, -0.4949, 0.0418, 0, -0.4924, 0.0418, 0.0485, -0.4949, 0.0418, 0, -0.5776, 0.0597, 0.0569, -0.5776, 0.0597, 0.0569, -0.4949, 0.0418, 0, -0.5806, 0.0597, 0, -0.5776, 0.0597, 0.0569, -0.5806, 0.0597, 0, -0.6563, 0.0803, 0.0646, -0.6563, 0.0803, 0.0646, -0.5806, 0.0597, 0, -0.6592, 0.0803, 0, -0.6563, 0.0803, 0.0646, -0.6592, 0.0803, 0, -0.7271, 0.1036, 0.0716, -0.7271, 0.1036, 0.0716, -0.6592, 0.0803, 0, -0.7305, 0.1036, 0, -0.7271, 0.1036, 0.0716, -0.7305, 0.1036, 0, -0.7891, 0.1295, 0.0777, -0.7891, 0.1295, 0.0777, -0.7305, 0.1036, 0, -0.793, 0.1295, 0, -0.7891, 0.1295, 0.0777, -0.793, 0.1295, 0, -0.8428, 0.158, 0.083, -0.8428, 0.158, 0.083, -0.793, 0.1295, 0, -0.8467, 0.158, 0, -0.8428, 0.158, 0.083, -0.8467, 0.158, 0, -0.8867, 0.1895, 0.0873, -0.8867, 0.1895, 0.0873, -0.8467, 0.158, 0, -0.8911, 0.1895, 0, -0.8867, 0.1895, 0.0873, -0.8911, 0.1895, 0, -0.9209, 0.2247, 0.0907, -0.9209, 0.2247, 0.0907, -0.8911, 0.1895, 0, -0.9253, 0.2247, 0, -0.9209, 0.2247, 0.0907, -0.9253, 0.2247, 0, -0.9438, 0.2646, 0.093, -0.9438, 0.2646, 0.093, -0.9253, 0.2247, 0, -0.9482, 0.2646, 0, -0.9438, 0.2646, 0.093, -0.9482, 0.2646, 0, -0.9517, 0.3049, 0.0938, -0.9517, 0.3049, 0.0938, -0.9482, 0.2646, 0, -0.9565, 0.3049, 0, -0.1865, 0.3049, 0.938, -0.2776, 0.3049, 0.915, -0.1866, 0.3464, 0.9385, -0.1866, 0.3464, 0.9385, -0.2776, 0.3049, 0.915, -0.2776, 0.3464, 0.9155, -0.8838, 0.3464, 0.366, -0.8438, 0.3464, 0.4509, -0.8838, 0.3049, 0.366, -0.8838, 0.3049, 0.366, -0.8438, 0.3464, 0.4509, -0.8433, 0.3049, 0.4509, -0.9521, 0.3464, 0.0938, -0.9565, 0.3464, 0, -0.9521, 0.3955, 0.0938, -0.9521, 0.3955, 0.0938, -0.9565, 0.3464, 0, -0.9565, 0.3955, 0, -0.1019, 0.0017, 0.0203, 0, 0, 0, -0.1035, 0.0017, 0.0102, -0.1019, 0.0017, 0.0203, -0.1035, 0.0017, 0.0102, -0.2026, 0.0068, 0.0403, -0.2026, 0.0068, 0.0403, -0.1035, 0.0017, 0.0102, -0.2057, 0.0068, 0.0202, -0.2026, 0.0068, 0.0403, -0.2057, 0.0068, 0.0202, -0.3008, 0.0153, 0.0598, -0.3008, 0.0153, 0.0598, -0.2057, 0.0068, 0.0202, -0.3052, 0.0153, 0.0301, -0.3008, 0.0153, 0.0598, -0.3052, 0.0153, 0.0301, -0.3955, 0.027, 0.0787, -0.3955, 0.027, 0.0787, -0.3052, 0.0153, 0.0301, -0.4014, 0.027, 0.0395, -0.3955, 0.027, 0.0787, -0.4014, 0.027, 0.0395, -0.4854, 0.0418, 0.0966, -0.4854, 0.0418, 0.0966, -0.4014, 0.027, 0.0395, -0.4924, 0.0418, 0.0485, -0.4854, 0.0418, 0.0966, -0.4924, 0.0418, 0.0485, -0.5693, 0.0597, 0.1133, -0.5693, 0.0597, 0.1133, -0.4924, 0.0418, 0.0485, -0.5776, 0.0597, 0.0569, -0.5693, 0.0597, 0.1133, -0.5776, 0.0597, 0.0569, -0.6465, 0.0803, 0.1287, -0.6465, 0.0803, 0.1287, -0.5776, 0.0597, 0.0569, -0.6563, 0.0803, 0.0646, -0.6465, 0.0803, 0.1287, -0.6563, 0.0803, 0.0646, -0.7163, 0.1036, 0.1425, -0.7163, 0.1036, 0.1425, -0.6563, 0.0803, 0.0646, -0.7271, 0.1036, 0.0716, -0.7163, 0.1036, 0.1425, -0.7271, 0.1036, 0.0716, -0.7778, 0.1295, 0.1547, -0.7778, 0.1295, 0.1547, -0.7271, 0.1036, 0.0716, -0.7891, 0.1295, 0.0777, -0.7778, 0.1295, 0.1547, -0.7891, 0.1295, 0.0777, -0.8306, 0.158, 0.1652, -0.8306, 0.158, 0.1652, -0.7891, 0.1295, 0.0777, -0.8428, 0.158, 0.083, -0.8306, 0.158, 0.1652, -0.8428, 0.158, 0.083, -0.874, 0.1895, 0.1738, -0.874, 0.1895, 0.1738, -0.8428, 0.158, 0.083, -0.8867, 0.1895, 0.0873, -0.874, 0.1895, 0.1738, -0.8867, 0.1895, 0.0873, -0.9077, 0.2247, 0.1805, -0.9077, 0.2247, 0.1805, -0.8867, 0.1895, 0.0873, -0.9209, 0.2247, 0.0907, -0.9077, 0.2247, 0.1805, -0.9209, 0.2247, 0.0907, -0.9302, 0.2646, 0.1851, -0.9302, 0.2646, 0.1851, -0.9209, 0.2247, 0.0907, -0.9438, 0.2646, 0.093, -0.9302, 0.2646, 0.1851, -0.9438, 0.2646, 0.093, -0.938, 0.3049, 0.1865, -0.938, 0.3049, 0.1865, -0.9438, 0.2646, 0.093, -0.9517, 0.3049, 0.0938, -0.1865, 0.3049, 0.938, -0.1866, 0.3464, 0.9385, -0.0938, 0.3049, 0.9517, -0.0938, 0.3049, 0.9517, -0.1866, 0.3464, 0.9385, -0.0938, 0.3464, 0.9521, -0.0938, 0.3049, -0.9517, 0, 0.3049, -0.9565, -0.0938, 0.3464, -0.9521, -0.0938, 0.3464, -0.9521, 0, 0.3049, -0.9565, 0, 0.3464, -0.9565, -0.9385, 0.3464, 0.1866, -0.9521, 0.3464, 0.0938, -0.9385, 0.3955, 0.1866, -0.9385, 0.3955, 0.1866, -0.9521, 0.3464, 0.0938, -0.9521, 0.3955, 0.0938, -0.0995, 0.0017, 0.0302, 0, 0, 0, -0.1019, 0.0017, 0.0203, -0.0995, 0.0017, 0.0302, -0.1019, 0.0017, 0.0203, -0.1978, 0.0068, 0.06, -0.1978, 0.0068, 0.06, -0.1019, 0.0017, 0.0203, -0.2026, 0.0068, 0.0403, -0.1978, 0.0068, 0.06, -0.2026, 0.0068, 0.0403, -0.2935, 0.0153, 0.0891, -0.2935, 0.0153, 0.0891, -0.2026, 0.0068, 0.0403, -0.3008, 0.0153, 0.0598, -0.2935, 0.0153, 0.0891, -0.3008, 0.0153, 0.0598, -0.386, 0.027, 0.1171, -0.386, 0.027, 0.1171, -0.3008, 0.0153, 0.0598, -0.3955, 0.027, 0.0787, -0.386, 0.027, 0.1171, -0.3955, 0.027, 0.0787, -0.4736, 0.0418, 0.1437, -0.4736, 0.0418, 0.1437, -0.3955, 0.027, 0.0787, -0.4854, 0.0418, 0.0966, -0.4736, 0.0418, 0.1437, -0.4854, 0.0418, 0.0966, -0.5557, 0.0597, 0.1686, -0.5557, 0.0597, 0.1686, -0.4854, 0.0418, 0.0966, -0.5693, 0.0597, 0.1133, -0.5557, 0.0597, 0.1686, -0.5693, 0.0597, 0.1133, -0.6309, 0.0803, 0.1914, -0.6309, 0.0803, 0.1914, -0.5693, 0.0597, 0.1133, -0.6465, 0.0803, 0.1287, -0.6309, 0.0803, 0.1914, -0.6465, 0.0803, 0.1287, -0.6987, 0.1036, 0.212, -0.6987, 0.1036, 0.212, -0.6465, 0.0803, 0.1287, -0.7163, 0.1036, 0.1425, -0.6987, 0.1036, 0.212, -0.7163, 0.1036, 0.1425, -0.7588, 0.1295, 0.2302, -0.7588, 0.1295, 0.2302, -0.7163, 0.1036, 0.1425, -0.7778, 0.1295, 0.1547, -0.7588, 0.1295, 0.2302, -0.7778, 0.1295, 0.1547, -0.8101, 0.158, 0.2458, -0.8101, 0.158, 0.2458, -0.7778, 0.1295, 0.1547, -0.8306, 0.158, 0.1652, -0.8101, 0.158, 0.2458, -0.8306, 0.158, 0.1652, -0.8525, 0.1895, 0.2585, -0.8525, 0.1895, 0.2585, -0.8306, 0.158, 0.1652, -0.874, 0.1895, 0.1738, -0.8525, 0.1895, 0.2585, -0.874, 0.1895, 0.1738, -0.8857, 0.2247, 0.2686, -0.8857, 0.2247, 0.2686, -0.874, 0.1895, 0.1738, -0.9077, 0.2247, 0.1805, -0.8857, 0.2247, 0.2686, -0.9077, 0.2247, 0.1805, -0.9077, 0.2646, 0.2751, -0.9077, 0.2646, 0.2751, -0.9077, 0.2247, 0.1805, -0.9302, 0.2646, 0.1851, -0.9077, 0.2646, 0.2751, -0.9302, 0.2646, 0.1851, -0.915, 0.3049, 0.2776, -0.915, 0.3049, 0.2776, -0.9302, 0.2646, 0.1851, -0.938, 0.3049, 0.1865, -0.9385, 0.3464, 0.1866, -0.9155, 0.3464, 0.2776, -0.938, 0.3049, 0.1865, -0.938, 0.3049, 0.1865, -0.9155, 0.3464, 0.2776, -0.915, 0.3049, 0.2776, -0.7954, 0.3049, -0.5313, -0.7393, 0.3049, -0.6064, -0.7954, 0.3464, -0.5313, -0.7954, 0.3464, -0.5313, -0.7393, 0.3049, -0.6064, -0.7393, 0.3464, -0.6069, -0.9155, 0.3464, 0.2776, -0.9385, 0.3464, 0.1866, -0.9155, 0.3955, 0.2776, -0.9155, 0.3955, 0.2776, -0.9385, 0.3464, 0.1866, -0.9385, 0.3955, 0.1866, -0.096, 0.0017, 0.0398, 0, 0, 0, -0.0995, 0.0017, 0.0302, -0.096, 0.0017, 0.0398, -0.0995, 0.0017, 0.0302, -0.1909, 0.0068, 0.079, -0.1909, 0.0068, 0.079, -0.0995, 0.0017, 0.0302, -0.1978, 0.0068, 0.06, -0.1909, 0.0068, 0.079, -0.1978, 0.0068, 0.06, -0.2834, 0.0153, 0.1174, -0.2834, 0.0153, 0.1174, -0.1978, 0.0068, 0.06, -0.2935, 0.0153, 0.0891, -0.2834, 0.0153, 0.1174, -0.2935, 0.0153, 0.0891, -0.3726, 0.027, 0.1543, -0.3726, 0.027, 0.1543, -0.2935, 0.0153, 0.0891, -0.386, 0.027, 0.1171, -0.3726, 0.027, 0.1543, -0.386, 0.027, 0.1171, -0.4573, 0.0418, 0.1893, -0.4573, 0.0418, 0.1893, -0.386, 0.027, 0.1171, -0.4736, 0.0418, 0.1437, -0.4573, 0.0418, 0.1893, -0.4736, 0.0418, 0.1437, -0.5361, 0.0597, 0.2222, -0.5361, 0.0597, 0.2222, -0.4736, 0.0418, 0.1437, -0.5557, 0.0597, 0.1686, -0.5361, 0.0597, 0.2222, -0.5557, 0.0597, 0.1686, -0.6089, 0.0803, 0.2522, -0.6089, 0.0803, 0.2522, -0.5557, 0.0597, 0.1686, -0.6309, 0.0803, 0.1914, -0.6089, 0.0803, 0.2522, -0.6309, 0.0803, 0.1914, -0.6748, 0.1036, 0.2795, -0.6748, 0.1036, 0.2795, -0.6309, 0.0803, 0.1914, -0.6987, 0.1036, 0.212, -0.6748, 0.1036, 0.2795, -0.6987, 0.1036, 0.212, -0.7329, 0.1295, 0.3035, -0.7329, 0.1295, 0.3035, -0.6987, 0.1036, 0.212, -0.7588, 0.1295, 0.2302, -0.7329, 0.1295, 0.3035, -0.7588, 0.1295, 0.2302, -0.7822, 0.158, 0.324, -0.7822, 0.158, 0.324, -0.7588, 0.1295, 0.2302, -0.8101, 0.158, 0.2458, -0.7822, 0.158, 0.324, -0.8101, 0.158, 0.2458, -0.8232, 0.1895, 0.3411, -0.8232, 0.1895, 0.3411, -0.8101, 0.158, 0.2458, -0.8525, 0.1895, 0.2585, -0.8232, 0.1895, 0.3411, -0.8525, 0.1895, 0.2585, -0.855, 0.2247, 0.3542, -0.855, 0.2247, 0.3542, -0.8525, 0.1895, 0.2585, -0.8857, 0.2247, 0.2686, -0.855, 0.2247, 0.3542, -0.8857, 0.2247, 0.2686, -0.876, 0.2646, 0.3628, -0.876, 0.2646, 0.3628, -0.8857, 0.2247, 0.2686, -0.9077, 0.2646, 0.2751, -0.876, 0.2646, 0.3628, -0.9077, 0.2646, 0.2751, -0.8838, 0.3049, 0.366, -0.8838, 0.3049, 0.366, -0.9077, 0.2646, 0.2751, -0.915, 0.3049, 0.2776, -0.8838, 0.3464, 0.366, -0.8838, 0.3049, 0.366, -0.9155, 0.3464, 0.2776, -0.9155, 0.3464, 0.2776, -0.8838, 0.3049, 0.366, -0.915, 0.3049, 0.2776, -0.8433, 0.3049, -0.4509, -0.8438, 0.3464, -0.4509, -0.8838, 0.3049, -0.366, -0.8838, 0.3049, -0.366, -0.8438, 0.3464, -0.4509, -0.8838, 0.3464, -0.366, -0.8838, 0.3464, 0.366, -0.9155, 0.3464, 0.2776, -0.8838, 0.3955, 0.366, -0.8838, 0.3955, 0.366, -0.9155, 0.3464, 0.2776, -0.9155, 0.3955, 0.2776, -0.0917, 0.0017, 0.049, 0, 0, 0, -0.096, 0.0017, 0.0398, -0.0917, 0.0017, 0.049, -0.096, 0.0017, 0.0398, -0.1823, 0.0068, 0.0974, -0.1823, 0.0068, 0.0974, -0.096, 0.0017, 0.0398, -0.1909, 0.0068, 0.079, -0.1823, 0.0068, 0.0974, -0.1909, 0.0068, 0.079, -0.2705, 0.0153, 0.1447, -0.2705, 0.0153, 0.1447, -0.1909, 0.0068, 0.079, -0.2834, 0.0153, 0.1174, -0.2705, 0.0153, 0.1447, -0.2834, 0.0153, 0.1174, -0.3557, 0.027, 0.1901, -0.3557, 0.027, 0.1901, -0.2834, 0.0153, 0.1174, -0.3726, 0.027, 0.1543, -0.3557, 0.027, 0.1901, -0.3726, 0.027, 0.1543, -0.4365, 0.0418, 0.2333, -0.4365, 0.0418, 0.2333, -0.3726, 0.027, 0.1543, -0.4573, 0.0418, 0.1893, -0.4365, 0.0418, 0.2333, -0.4573, 0.0418, 0.1893, -0.5117, 0.0597, 0.2737, -0.5117, 0.0597, 0.2737, -0.4573, 0.0418, 0.1893, -0.5361, 0.0597, 0.2222, -0.5117, 0.0597, 0.2737, -0.5361, 0.0597, 0.2222, -0.5815, 0.0803, 0.3108, -0.5815, 0.0803, 0.3108, -0.5361, 0.0597, 0.2222, -0.6089, 0.0803, 0.2522, -0.5815, 0.0803, 0.3108, -0.6089, 0.0803, 0.2522, -0.644, 0.1036, 0.3442, -0.644, 0.1036, 0.3442, -0.6089, 0.0803, 0.2522, -0.6748, 0.1036, 0.2795, -0.644, 0.1036, 0.3442, -0.6748, 0.1036, 0.2795, -0.6992, 0.1295, 0.3738, -0.6992, 0.1295, 0.3738, -0.6748, 0.1036, 0.2795, -0.7329, 0.1295, 0.3035, -0.6992, 0.1295, 0.3738, -0.7329, 0.1295, 0.3035, -0.7466, 0.158, 0.3992, -0.7466, 0.158, 0.3992, -0.7329, 0.1295, 0.3035, -0.7822, 0.158, 0.324, -0.7466, 0.158, 0.3992, -0.7822, 0.158, 0.324, -0.7856, 0.1895, 0.4202, -0.7856, 0.1895, 0.4202, -0.7822, 0.158, 0.324, -0.8232, 0.1895, 0.3411, -0.7856, 0.1895, 0.4202, -0.8232, 0.1895, 0.3411, -0.8164, 0.2247, 0.4363, -0.8164, 0.2247, 0.4363, -0.8232, 0.1895, 0.3411, -0.855, 0.2247, 0.3542, -0.8164, 0.2247, 0.4363, -0.855, 0.2247, 0.3542, -0.8364, 0.2646, 0.447, -0.8364, 0.2646, 0.447, -0.855, 0.2247, 0.3542, -0.876, 0.2646, 0.3628, -0.8364, 0.2646, 0.447, -0.876, 0.2646, 0.3628, -0.8433, 0.3049, 0.4509, -0.8433, 0.3049, 0.4509, -0.876, 0.2646, 0.3628, -0.8838, 0.3049, 0.366, -0.366, 0.3049, 0.8838, -0.4509, 0.3049, 0.8433, -0.366, 0.3464, 0.8838, -0.366, 0.3464, 0.8838, -0.4509, 0.3049, 0.8433, -0.4509, 0.3464, 0.8438, -0.6763, 0.3464, 0.6763, -0.6069, 0.3464, 0.7393, -0.6763, 0.3049, 0.6763, -0.6763, 0.3049, 0.6763, -0.6069, 0.3464, 0.7393, -0.6064, 0.3049, 0.7393, -0.8438, 0.3464, 0.4509, -0.8838, 0.3464, 0.366, -0.8438, 0.3955, 0.4509, -0.8438, 0.3955, 0.4509, -0.8838, 0.3464, 0.366, -0.8838, 0.3955, 0.366, -0.0864, 0.0017, 0.0578, 0, 0, 0, -0.0917, 0.0017, 0.049, -0.0864, 0.0017, 0.0578, -0.0917, 0.0017, 0.049, -0.1718, 0.0068, 0.1148, -0.1718, 0.0068, 0.1148, -0.0917, 0.0017, 0.049, -0.1823, 0.0068, 0.0974, -0.1718, 0.0068, 0.1148, -0.1823, 0.0068, 0.0974, -0.2551, 0.0153, 0.1704, -0.2551, 0.0153, 0.1704, -0.1823, 0.0068, 0.0974, -0.2705, 0.0153, 0.1447, -0.2551, 0.0153, 0.1704, -0.2705, 0.0153, 0.1447, -0.3352, 0.027, 0.224, -0.3352, 0.027, 0.224, -0.2705, 0.0153, 0.1447, -0.3557, 0.027, 0.1901, -0.3352, 0.027, 0.224, -0.3557, 0.027, 0.1901, -0.4114, 0.0418, 0.2749, -0.4114, 0.0418, 0.2749, -0.3557, 0.027, 0.1901, -0.4365, 0.0418, 0.2333, -0.4114, 0.0418, 0.2749, -0.4365, 0.0418, 0.2333, -0.4827, 0.0597, 0.3225, -0.4827, 0.0597, 0.3225, -0.4365, 0.0418, 0.2333, -0.5117, 0.0597, 0.2737, -0.4827, 0.0597, 0.3225, -0.5117, 0.0597, 0.2737, -0.5483, 0.0803, 0.3662, -0.5483, 0.0803, 0.3662, -0.5117, 0.0597, 0.2737, -0.5815, 0.0803, 0.3108, -0.5483, 0.0803, 0.3662, -0.5815, 0.0803, 0.3108, -0.6074, 0.1036, 0.4058, -0.6074, 0.1036, 0.4058, -0.5815, 0.0803, 0.3108, -0.644, 0.1036, 0.3442, -0.6074, 0.1036, 0.4058, -0.644, 0.1036, 0.3442, -0.6592, 0.1295, 0.4407, -0.6592, 0.1295, 0.4407, -0.644, 0.1036, 0.3442, -0.6992, 0.1295, 0.3738, -0.6592, 0.1295, 0.4407, -0.6992, 0.1295, 0.3738, -0.7041, 0.158, 0.4705, -0.7041, 0.158, 0.4705, -0.6992, 0.1295, 0.3738, -0.7466, 0.158, 0.3992, -0.7041, 0.158, 0.4705, -0.7466, 0.158, 0.3992, -0.7407, 0.1895, 0.4951, -0.7407, 0.1895, 0.4951, -0.7466, 0.158, 0.3992, -0.7856, 0.1895, 0.4202, -0.7407, 0.1895, 0.4951, -0.7856, 0.1895, 0.4202, -0.7695, 0.2247, 0.5142, -0.7695, 0.2247, 0.5142, -0.7856, 0.1895, 0.4202, -0.8164, 0.2247, 0.4363, -0.7695, 0.2247, 0.5142, -0.8164, 0.2247, 0.4363, -0.7886, 0.2646, 0.5269, -0.7886, 0.2646, 0.5269, -0.8164, 0.2247, 0.4363, -0.8364, 0.2646, 0.447, -0.7886, 0.2646, 0.5269, -0.8364, 0.2646, 0.447, -0.7954, 0.3049, 0.5313, -0.7954, 0.3049, 0.5313, -0.8364, 0.2646, 0.447, -0.8433, 0.3049, 0.4509, -0.9517, 0.3049, -0.0938, -0.9521, 0.3464, -0.0938, -0.9565, 0.3049, 0, -0.9565, 0.3049, 0, -0.9521, 0.3464, -0.0938, -0.9565, 0.3464, 0, -0.4509, 0.3049, -0.8433, -0.4509, 0.3464, -0.8438, -0.5313, 0.3049, -0.7954, -0.5313, 0.3049, -0.7954, -0.4509, 0.3464, -0.8438, -0.5313, 0.3464, -0.7954, -0.7954, 0.3464, 0.5313, -0.8438, 0.3464, 0.4509, -0.7954, 0.3955, 0.5313, -0.7954, 0.3955, 0.5313, -0.8438, 0.3464, 0.4509, -0.8438, 0.3955, 0.4509, -0.0803, 0.0017, 0.0659, 0, 0, 0, -0.0864, 0.0017, 0.0578, -0.0803, 0.0017, 0.0659, -0.0864, 0.0017, 0.0578, -0.1597, 0.0068, 0.1311, -0.1597, 0.0068, 0.1311, -0.0864, 0.0017, 0.0578, -0.1718, 0.0068, 0.1148, -0.1597, 0.0068, 0.1311, -0.1718, 0.0068, 0.1148, -0.2372, 0.0153, 0.1946, -0.2372, 0.0153, 0.1946, -0.1718, 0.0068, 0.1148, -0.2551, 0.0153, 0.1704, -0.2372, 0.0153, 0.1946, -0.2551, 0.0153, 0.1704, -0.3118, 0.027, 0.2559, -0.3118, 0.027, 0.2559, -0.2551, 0.0153, 0.1704, -0.3352, 0.027, 0.224, -0.3118, 0.027, 0.2559, -0.3352, 0.027, 0.224, -0.3826, 0.0418, 0.314, -0.3826, 0.0418, 0.314, -0.3352, 0.027, 0.224, -0.4114, 0.0418, 0.2749, -0.3826, 0.0418, 0.314, -0.4114, 0.0418, 0.2749, -0.4487, 0.0597, 0.3684, -0.4487, 0.0597, 0.3684, -0.4114, 0.0418, 0.2749, -0.4827, 0.0597, 0.3225, -0.4487, 0.0597, 0.3684, -0.4827, 0.0597, 0.3225, -0.5098, 0.0803, 0.4182, -0.5098, 0.0803, 0.4182, -0.4827, 0.0597, 0.3225, -0.5483, 0.0803, 0.3662, -0.5098, 0.0803, 0.4182, -0.5483, 0.0803, 0.3662, -0.5645, 0.1036, 0.4634, -0.5645, 0.1036, 0.4634, -0.5483, 0.0803, 0.3662, -0.6074, 0.1036, 0.4058, -0.5645, 0.1036, 0.4634, -0.6074, 0.1036, 0.4058, -0.6128, 0.1295, 0.5029, -0.6128, 0.1295, 0.5029, -0.6074, 0.1036, 0.4058, -0.6592, 0.1295, 0.4407, -0.6128, 0.1295, 0.5029, -0.6592, 0.1295, 0.4407, -0.6543, 0.158, 0.5371, -0.6543, 0.158, 0.5371, -0.6592, 0.1295, 0.4407, -0.7041, 0.158, 0.4705, -0.6543, 0.158, 0.5371, -0.7041, 0.158, 0.4705, -0.689, 0.1895, 0.5654, -0.689, 0.1895, 0.5654, -0.7041, 0.158, 0.4705, -0.7407, 0.1895, 0.4951, -0.689, 0.1895, 0.5654, -0.7407, 0.1895, 0.4951, -0.7153, 0.2247, 0.5869, -0.7153, 0.2247, 0.5869, -0.7407, 0.1895, 0.4951, -0.7695, 0.2247, 0.5142, -0.7153, 0.2247, 0.5869, -0.7695, 0.2247, 0.5142, -0.7329, 0.2646, 0.6016, -0.7329, 0.2646, 0.6016, -0.7695, 0.2247, 0.5142, -0.7886, 0.2646, 0.5269, -0.7329, 0.2646, 0.6016, -0.7886, 0.2646, 0.5269, -0.7393, 0.3049, 0.6064, -0.7393, 0.3049, 0.6064, -0.7886, 0.2646, 0.5269, -0.7954, 0.3049, 0.5313, -0.7954, 0.3464, 0.5313, -0.7393, 0.3464, 0.6069, -0.7954, 0.3049, 0.5313, -0.7954, 0.3049, 0.5313, -0.7393, 0.3464, 0.6069, -0.7393, 0.3049, 0.6064, -0.7393, 0.3464, 0.6069, -0.7954, 0.3464, 0.5313, -0.7393, 0.3955, 0.6069, -0.7393, 0.3955, 0.6069, -0.7954, 0.3464, 0.5313, -0.7954, 0.3955, 0.5313, -0.0735, 0.0017, 0.0735, 0, 0, 0, -0.0803, 0.0017, 0.0659, -0.0735, 0.0017, 0.0735, -0.0803, 0.0017, 0.0659, -0.1461, 0.0068, 0.1461, -0.1461, 0.0068, 0.1461, -0.0803, 0.0017, 0.0659, -0.1597, 0.0068, 0.1311, -0.1461, 0.0068, 0.1461, -0.1597, 0.0068, 0.1311, -0.2169, 0.0153, 0.2169, -0.2169, 0.0153, 0.2169, -0.1597, 0.0068, 0.1311, -0.2372, 0.0153, 0.1946, -0.2169, 0.0153, 0.2169, -0.2372, 0.0153, 0.1946, -0.2852, 0.027, 0.2852, -0.2852, 0.027, 0.2852, -0.2372, 0.0153, 0.1946, -0.3118, 0.027, 0.2559, -0.2852, 0.027, 0.2852, -0.3118, 0.027, 0.2559, -0.3499, 0.0418, 0.3499, -0.3499, 0.0418, 0.3499, -0.3118, 0.027, 0.2559, -0.3826, 0.0418, 0.314, -0.3499, 0.0418, 0.3499, -0.3826, 0.0418, 0.314, -0.4106, 0.0597, 0.4106, -0.4106, 0.0597, 0.4106, -0.3826, 0.0418, 0.314, -0.4487, 0.0597, 0.3684, -0.4106, 0.0597, 0.4106, -0.4487, 0.0597, 0.3684, -0.4663, 0.0803, 0.4663, -0.4663, 0.0803, 0.4663, -0.4487, 0.0597, 0.3684, -0.5098, 0.0803, 0.4182, -0.4663, 0.0803, 0.4663, -0.5098, 0.0803, 0.4182, -0.5166, 0.1036, 0.5166, -0.5166, 0.1036, 0.5166, -0.5098, 0.0803, 0.4182, -0.5645, 0.1036, 0.4634, -0.5166, 0.1036, 0.5166, -0.5645, 0.1036, 0.4634, -0.5605, 0.1295, 0.5605, -0.5605, 0.1295, 0.5605, -0.5645, 0.1036, 0.4634, -0.6128, 0.1295, 0.5029, -0.5605, 0.1295, 0.5605, -0.6128, 0.1295, 0.5029, -0.5986, 0.158, 0.5986, -0.5986, 0.158, 0.5986, -0.6128, 0.1295, 0.5029, -0.6543, 0.158, 0.5371, -0.5986, 0.158, 0.5986, -0.6543, 0.158, 0.5371, -0.6299, 0.1895, 0.6299, -0.6299, 0.1895, 0.6299, -0.6543, 0.158, 0.5371, -0.689, 0.1895, 0.5654, -0.6299, 0.1895, 0.6299, -0.689, 0.1895, 0.5654, -0.6543, 0.2247, 0.6543, -0.6543, 0.2247, 0.6543, -0.689, 0.1895, 0.5654, -0.7153, 0.2247, 0.5869, -0.6543, 0.2247, 0.6543, -0.7153, 0.2247, 0.5869, -0.6704, 0.2646, 0.6704, -0.6704, 0.2646, 0.6704, -0.7153, 0.2247, 0.5869, -0.7329, 0.2646, 0.6016, -0.6704, 0.2646, 0.6704, -0.7329, 0.2646, 0.6016, -0.6763, 0.3049, 0.6763, -0.6763, 0.3049, 0.6763, -0.7329, 0.2646, 0.6016, -0.7393, 0.3049, 0.6064, -0.366, 0.3049, 0.8838, -0.366, 0.3464, 0.8838, -0.2776, 0.3049, 0.915, -0.2776, 0.3049, 0.915, -0.366, 0.3464, 0.8838, -0.2776, 0.3464, 0.9155, -0.6763, 0.3464, 0.6763, -0.7393, 0.3464, 0.6069, -0.6763, 0.3955, 0.6763, -0.6763, 0.3955, 0.6763, -0.7393, 0.3464, 0.6069, -0.7393, 0.3955, 0.6069, -0.0659, 0.0017, 0.0803, 0, 0, 0, -0.0735, 0.0017, 0.0735, -0.0659, 0.0017, 0.0803, -0.0735, 0.0017, 0.0735, -0.1311, 0.0068, 0.1597, -0.1311, 0.0068, 0.1597, -0.0735, 0.0017, 0.0735, -0.1461, 0.0068, 0.1461, -0.1311, 0.0068, 0.1597, -0.1461, 0.0068, 0.1461, -0.1946, 0.0153, 0.2372, -0.1946, 0.0153, 0.2372, -0.1461, 0.0068, 0.1461, -0.2169, 0.0153, 0.2169, -0.1946, 0.0153, 0.2372, -0.2169, 0.0153, 0.2169, -0.2559, 0.027, 0.3118, -0.2559, 0.027, 0.3118, -0.2169, 0.0153, 0.2169, -0.2852, 0.027, 0.2852, -0.2559, 0.027, 0.3118, -0.2852, 0.027, 0.2852, -0.314, 0.0418, 0.3826, -0.314, 0.0418, 0.3826, -0.2852, 0.027, 0.2852, -0.3499, 0.0418, 0.3499, -0.314, 0.0418, 0.3826, -0.3499, 0.0418, 0.3499, -0.3684, 0.0597, 0.4487, -0.3684, 0.0597, 0.4487, -0.3499, 0.0418, 0.3499, -0.4106, 0.0597, 0.4106, -0.3684, 0.0597, 0.4487, -0.4106, 0.0597, 0.4106, -0.4182, 0.0803, 0.5098, -0.4182, 0.0803, 0.5098, -0.4106, 0.0597, 0.4106, -0.4663, 0.0803, 0.4663, -0.4182, 0.0803, 0.5098, -0.4663, 0.0803, 0.4663, -0.4634, 0.1036, 0.5645, -0.4634, 0.1036, 0.5645, -0.4663, 0.0803, 0.4663, -0.5166, 0.1036, 0.5166, -0.4634, 0.1036, 0.5645, -0.5166, 0.1036, 0.5166, -0.5029, 0.1295, 0.6128, -0.5029, 0.1295, 0.6128, -0.5166, 0.1036, 0.5166, -0.5605, 0.1295, 0.5605, -0.5029, 0.1295, 0.6128, -0.5605, 0.1295, 0.5605, -0.5371, 0.158, 0.6543, -0.5371, 0.158, 0.6543, -0.5605, 0.1295, 0.5605, -0.5986, 0.158, 0.5986, -0.5371, 0.158, 0.6543, -0.5986, 0.158, 0.5986, -0.5654, 0.1895, 0.689, -0.5654, 0.1895, 0.689, -0.5986, 0.158, 0.5986, -0.6299, 0.1895, 0.6299, -0.5654, 0.1895, 0.689, -0.6299, 0.1895, 0.6299, -0.5869, 0.2247, 0.7153, -0.5869, 0.2247, 0.7153, -0.6299, 0.1895, 0.6299, -0.6543, 0.2247, 0.6543, -0.5869, 0.2247, 0.7153, -0.6543, 0.2247, 0.6543, -0.6016, 0.2646, 0.7329, -0.6016, 0.2646, 0.7329, -0.6543, 0.2247, 0.6543, -0.6704, 0.2646, 0.6704, -0.6016, 0.2646, 0.7329, -0.6704, 0.2646, 0.6704, -0.6064, 0.3049, 0.7393, -0.6064, 0.3049, 0.7393, -0.6704, 0.2646, 0.6704, -0.6763, 0.3049, 0.6763, -0.9517, 0.3049, -0.0938, -0.938, 0.3049, -0.1865, -0.9521, 0.3464, -0.0938, -0.9521, 0.3464, -0.0938, -0.938, 0.3049, -0.1865, -0.9385, 0.3464, -0.1866, -0.6763, 0.3464, 0.6763, -0.6763, 0.3049, 0.6763, -0.7393, 0.3464, 0.6069, -0.7393, 0.3464, 0.6069, -0.6763, 0.3049, 0.6763, -0.7393, 0.3049, 0.6064, -0.6069, 0.3464, 0.7393, -0.6763, 0.3464, 0.6763, -0.6069, 0.3955, 0.7393, -0.6069, 0.3955, 0.7393, -0.6763, 0.3464, 0.6763, -0.6763, 0.3955, 0.6763, -0.0578, 0.0017, 0.0864, 0, 0, 0, -0.0659, 0.0017, 0.0803, -0.0578, 0.0017, 0.0864, -0.0659, 0.0017, 0.0803, -0.1148, 0.0068, 0.1718, -0.1148, 0.0068, 0.1718, -0.0659, 0.0017, 0.0803, -0.1311, 0.0068, 0.1597, -0.1148, 0.0068, 0.1718, -0.1311, 0.0068, 0.1597, -0.1704, 0.0153, 0.2551, -0.1704, 0.0153, 0.2551, -0.1311, 0.0068, 0.1597, -0.1946, 0.0153, 0.2372, -0.1704, 0.0153, 0.2551, -0.1946, 0.0153, 0.2372, -0.224, 0.027, 0.3352, -0.224, 0.027, 0.3352, -0.1946, 0.0153, 0.2372, -0.2559, 0.027, 0.3118, -0.224, 0.027, 0.3352, -0.2559, 0.027, 0.3118, -0.2749, 0.0418, 0.4114, -0.2749, 0.0418, 0.4114, -0.2559, 0.027, 0.3118, -0.314, 0.0418, 0.3826, -0.2749, 0.0418, 0.4114, -0.314, 0.0418, 0.3826, -0.3225, 0.0597, 0.4827, -0.3225, 0.0597, 0.4827, -0.314, 0.0418, 0.3826, -0.3684, 0.0597, 0.4487, -0.3225, 0.0597, 0.4827, -0.3684, 0.0597, 0.4487, -0.3662, 0.0803, 0.5483, -0.3662, 0.0803, 0.5483, -0.3684, 0.0597, 0.4487, -0.4182, 0.0803, 0.5098, -0.3662, 0.0803, 0.5483, -0.4182, 0.0803, 0.5098, -0.4058, 0.1036, 0.6074, -0.4058, 0.1036, 0.6074, -0.4182, 0.0803, 0.5098, -0.4634, 0.1036, 0.5645, -0.4058, 0.1036, 0.6074, -0.4634, 0.1036, 0.5645, -0.4407, 0.1295, 0.6592, -0.4407, 0.1295, 0.6592, -0.4634, 0.1036, 0.5645, -0.5029, 0.1295, 0.6128, -0.4407, 0.1295, 0.6592, -0.5029, 0.1295, 0.6128, -0.4705, 0.158, 0.7041, -0.4705, 0.158, 0.7041, -0.5029, 0.1295, 0.6128, -0.5371, 0.158, 0.6543, -0.4705, 0.158, 0.7041, -0.5371, 0.158, 0.6543, -0.4951, 0.1895, 0.7407, -0.4951, 0.1895, 0.7407, -0.5371, 0.158, 0.6543, -0.5654, 0.1895, 0.689, -0.4951, 0.1895, 0.7407, -0.5654, 0.1895, 0.689, -0.5142, 0.2247, 0.7695, -0.5142, 0.2247, 0.7695, -0.5654, 0.1895, 0.689, -0.5869, 0.2247, 0.7153, -0.5142, 0.2247, 0.7695, -0.5869, 0.2247, 0.7153, -0.5269, 0.2646, 0.7886, -0.5269, 0.2646, 0.7886, -0.5869, 0.2247, 0.7153, -0.6016, 0.2646, 0.7329, -0.5269, 0.2646, 0.7886, -0.6016, 0.2646, 0.7329, -0.5313, 0.3049, 0.7954, -0.5313, 0.3049, 0.7954, -0.6016, 0.2646, 0.7329, -0.6064, 0.3049, 0.7393, -0.4509, 0.3049, 0.8433, -0.5313, 0.3049, 0.7954, -0.4509, 0.3464, 0.8438, -0.4509, 0.3464, 0.8438, -0.5313, 0.3049, 0.7954, -0.5313, 0.3464, 0.7954, -0.4473, 0.3955, 0.8369, -0.5205, 0.3955, 0.7925, -0.4004, 0.3955, 0.749, -0.4004, 0.3955, 0.749, -0.5205, 0.3955, 0.7925, -0.4644, 0.3955, 0.7109, -0.049, 0.0017, 0.0917, 0, 0, 0, -0.0578, 0.0017, 0.0864, -0.049, 0.0017, 0.0917, -0.0578, 0.0017, 0.0864, -0.0974, 0.0068, 0.1823, -0.0974, 0.0068, 0.1823, -0.0578, 0.0017, 0.0864, -0.1148, 0.0068, 0.1718, -0.0974, 0.0068, 0.1823, -0.1148, 0.0068, 0.1718, -0.1447, 0.0153, 0.2705, -0.1447, 0.0153, 0.2705, -0.1148, 0.0068, 0.1718, -0.1704, 0.0153, 0.2551, -0.1447, 0.0153, 0.2705, -0.1704, 0.0153, 0.2551, -0.1901, 0.027, 0.3557, -0.1901, 0.027, 0.3557, -0.1704, 0.0153, 0.2551, -0.224, 0.027, 0.3352, -0.1901, 0.027, 0.3557, -0.224, 0.027, 0.3352, -0.2333, 0.0418, 0.4365, -0.2333, 0.0418, 0.4365, -0.224, 0.027, 0.3352, -0.2749, 0.0418, 0.4114, -0.2333, 0.0418, 0.4365, -0.2749, 0.0418, 0.4114, -0.2737, 0.0597, 0.5117, -0.2737, 0.0597, 0.5117, -0.2749, 0.0418, 0.4114, -0.3225, 0.0597, 0.4827, -0.2737, 0.0597, 0.5117, -0.3225, 0.0597, 0.4827, -0.3108, 0.0803, 0.5815, -0.3108, 0.0803, 0.5815, -0.3225, 0.0597, 0.4827, -0.3662, 0.0803, 0.5483, -0.3108, 0.0803, 0.5815, -0.3662, 0.0803, 0.5483, -0.3442, 0.1036, 0.644, -0.3442, 0.1036, 0.644, -0.3662, 0.0803, 0.5483, -0.4058, 0.1036, 0.6074, -0.3442, 0.1036, 0.644, -0.4058, 0.1036, 0.6074, -0.3738, 0.1295, 0.6992, -0.3738, 0.1295, 0.6992, -0.4058, 0.1036, 0.6074, -0.4407, 0.1295, 0.6592, -0.3738, 0.1295, 0.6992, -0.4407, 0.1295, 0.6592, -0.3992, 0.158, 0.7466, -0.3992, 0.158, 0.7466, -0.4407, 0.1295, 0.6592, -0.4705, 0.158, 0.7041, -0.3992, 0.158, 0.7466, -0.4705, 0.158, 0.7041, -0.4202, 0.1895, 0.7856, -0.4202, 0.1895, 0.7856, -0.4705, 0.158, 0.7041, -0.4951, 0.1895, 0.7407, -0.4202, 0.1895, 0.7856, -0.4951, 0.1895, 0.7407, -0.4363, 0.2247, 0.8164, -0.4363, 0.2247, 0.8164, -0.4951, 0.1895, 0.7407, -0.5142, 0.2247, 0.7695, -0.4363, 0.2247, 0.8164, -0.5142, 0.2247, 0.7695, -0.447, 0.2646, 0.8364, -0.447, 0.2646, 0.8364, -0.5142, 0.2247, 0.7695, -0.5269, 0.2646, 0.7886, -0.447, 0.2646, 0.8364, -0.5269, 0.2646, 0.7886, -0.4509, 0.3049, 0.8433, -0.4509, 0.3049, 0.8433, -0.5269, 0.2646, 0.7886, -0.5313, 0.3049, 0.7954, -0.366, 0.3049, -0.8838, -0.2776, 0.3049, -0.915, -0.366, 0.3464, -0.8838, -0.366, 0.3464, -0.8838, -0.2776, 0.3049, -0.915, -0.2776, 0.3464, -0.9155, -0.2776, 0.3049, -0.915, -0.1865, 0.3049, -0.938, -0.2776, 0.3464, -0.9155, -0.2776, 0.3464, -0.9155, -0.1865, 0.3049, -0.938, -0.1866, 0.3464, -0.9385, -0.5313, 0.3464, 0.7954, -0.6069, 0.3464, 0.7393, -0.5381, 0.3877, 0.7905, -0.5381, 0.3877, 0.7905, -0.6069, 0.3464, 0.7393, -0.6069, 0.3955, 0.7393, -0.0398, 0.0017, 0.096, 0, 0, 0, -0.049, 0.0017, 0.0917, -0.0398, 0.0017, 0.096, -0.049, 0.0017, 0.0917, -0.079, 0.0068, 0.1909, -0.079, 0.0068, 0.1909, -0.049, 0.0017, 0.0917, -0.0974, 0.0068, 0.1823, -0.079, 0.0068, 0.1909, -0.0974, 0.0068, 0.1823, -0.1174, 0.0153, 0.2834, -0.1174, 0.0153, 0.2834, -0.0974, 0.0068, 0.1823, -0.1447, 0.0153, 0.2705, -0.1174, 0.0153, 0.2834, -0.1447, 0.0153, 0.2705, -0.1543, 0.027, 0.3726, -0.1543, 0.027, 0.3726, -0.1447, 0.0153, 0.2705, -0.1901, 0.027, 0.3557, -0.1543, 0.027, 0.3726, -0.1901, 0.027, 0.3557, -0.1893, 0.0418, 0.4573, -0.1893, 0.0418, 0.4573, -0.1901, 0.027, 0.3557, -0.2333, 0.0418, 0.4365, -0.1893, 0.0418, 0.4573, -0.2333, 0.0418, 0.4365, -0.2222, 0.0597, 0.5361, -0.2222, 0.0597, 0.5361, -0.2333, 0.0418, 0.4365, -0.2737, 0.0597, 0.5117, -0.2222, 0.0597, 0.5361, -0.2737, 0.0597, 0.5117, -0.2522, 0.0803, 0.6089, -0.2522, 0.0803, 0.6089, -0.2737, 0.0597, 0.5117, -0.3108, 0.0803, 0.5815, -0.2522, 0.0803, 0.6089, -0.3108, 0.0803, 0.5815, -0.2795, 0.1036, 0.6748, -0.2795, 0.1036, 0.6748, -0.3108, 0.0803, 0.5815, -0.3442, 0.1036, 0.644, -0.2795, 0.1036, 0.6748, -0.3442, 0.1036, 0.644, -0.3035, 0.1295, 0.7329, -0.3035, 0.1295, 0.7329, -0.3442, 0.1036, 0.644, -0.3738, 0.1295, 0.6992, -0.3035, 0.1295, 0.7329, -0.3738, 0.1295, 0.6992, -0.324, 0.158, 0.7822, -0.324, 0.158, 0.7822, -0.3738, 0.1295, 0.6992, -0.3992, 0.158, 0.7466, -0.324, 0.158, 0.7822, -0.3992, 0.158, 0.7466, -0.3411, 0.1895, 0.8232, -0.3411, 0.1895, 0.8232, -0.3992, 0.158, 0.7466, -0.4202, 0.1895, 0.7856, -0.3411, 0.1895, 0.8232, -0.4202, 0.1895, 0.7856, -0.3542, 0.2247, 0.855, -0.3542, 0.2247, 0.855, -0.4202, 0.1895, 0.7856, -0.4363, 0.2247, 0.8164, -0.3542, 0.2247, 0.855, -0.4363, 0.2247, 0.8164, -0.3628, 0.2646, 0.876, -0.3628, 0.2646, 0.876, -0.4363, 0.2247, 0.8164, -0.447, 0.2646, 0.8364, -0.3628, 0.2646, 0.876, -0.447, 0.2646, 0.8364, -0.366, 0.3049, 0.8838, -0.366, 0.3049, 0.8838, -0.447, 0.2646, 0.8364, -0.4509, 0.3049, 0.8433, -0.9521, 0.3464, 0.0938, -0.9517, 0.3049, 0.0938, -0.9565, 0.3464, 0, -0.9565, 0.3464, 0, -0.9517, 0.3049, 0.0938, -0.9565, 0.3049, 0, -0.363, 0.3955, 0.8765, -0.4473, 0.3955, 0.8369, -0.3252, 0.3955, 0.7847, -0.3252, 0.3955, 0.7847, -0.4473, 0.3955, 0.8369, -0.4004, 0.3955, 0.749, -0.0302, 0.0017, 0.0995, 0, 0, 0, -0.0398, 0.0017, 0.096, -0.0302, 0.0017, 0.0995, -0.0398, 0.0017, 0.096, -0.06, 0.0068, 0.1978, -0.06, 0.0068, 0.1978, -0.0398, 0.0017, 0.096, -0.079, 0.0068, 0.1909, -0.06, 0.0068, 0.1978, -0.079, 0.0068, 0.1909, -0.0891, 0.0153, 0.2935, -0.0891, 0.0153, 0.2935, -0.079, 0.0068, 0.1909, -0.1174, 0.0153, 0.2834, -0.0891, 0.0153, 0.2935, -0.1174, 0.0153, 0.2834, -0.1171, 0.027, 0.386, -0.1171, 0.027, 0.386, -0.1174, 0.0153, 0.2834, -0.1543, 0.027, 0.3726, -0.1171, 0.027, 0.386, -0.1543, 0.027, 0.3726, -0.1437, 0.0418, 0.4736, -0.1437, 0.0418, 0.4736, -0.1543, 0.027, 0.3726, -0.1893, 0.0418, 0.4573, -0.1437, 0.0418, 0.4736, -0.1893, 0.0418, 0.4573, -0.1686, 0.0597, 0.5557, -0.1686, 0.0597, 0.5557, -0.1893, 0.0418, 0.4573, -0.2222, 0.0597, 0.5361, -0.1686, 0.0597, 0.5557, -0.2222, 0.0597, 0.5361, -0.1914, 0.0803, 0.6309, -0.1914, 0.0803, 0.6309, -0.2222, 0.0597, 0.5361, -0.2522, 0.0803, 0.6089, -0.1914, 0.0803, 0.6309, -0.2522, 0.0803, 0.6089, -0.212, 0.1036, 0.6987, -0.212, 0.1036, 0.6987, -0.2522, 0.0803, 0.6089, -0.2795, 0.1036, 0.6748, -0.212, 0.1036, 0.6987, -0.2795, 0.1036, 0.6748, -0.2302, 0.1295, 0.7588, -0.2302, 0.1295, 0.7588, -0.2795, 0.1036, 0.6748, -0.3035, 0.1295, 0.7329, -0.2302, 0.1295, 0.7588, -0.3035, 0.1295, 0.7329, -0.2458, 0.158, 0.8101, -0.2458, 0.158, 0.8101, -0.3035, 0.1295, 0.7329, -0.324, 0.158, 0.7822, -0.2458, 0.158, 0.8101, -0.324, 0.158, 0.7822, -0.2585, 0.1895, 0.8525, -0.2585, 0.1895, 0.8525, -0.324, 0.158, 0.7822, -0.3411, 0.1895, 0.8232, -0.2585, 0.1895, 0.8525, -0.3411, 0.1895, 0.8232, -0.2686, 0.2247, 0.8857, -0.2686, 0.2247, 0.8857, -0.3411, 0.1895, 0.8232, -0.3542, 0.2247, 0.855, -0.2686, 0.2247, 0.8857, -0.3542, 0.2247, 0.855, -0.2751, 0.2646, 0.9077, -0.2751, 0.2646, 0.9077, -0.3542, 0.2247, 0.855, -0.3628, 0.2646, 0.876, -0.2751, 0.2646, 0.9077, -0.3628, 0.2646, 0.876, -0.2776, 0.3049, 0.915, -0.2776, 0.3049, 0.915, -0.3628, 0.2646, 0.876, -0.366, 0.3049, 0.8838, -0.2754, 0.3955, 0.9077, -0.363, 0.3955, 0.8765, -0.2466, 0.3955, 0.813, -0.2466, 0.3955, 0.813, -0.363, 0.3955, 0.8765, -0.3252, 0.3955, 0.7847, -0.0203, 0.0017, 0.1019, 0, 0, 0, -0.0302, 0.0017, 0.0995, -0.0203, 0.0017, 0.1019, -0.0302, 0.0017, 0.0995, -0.0403, 0.0068, 0.2026, -0.0403, 0.0068, 0.2026, -0.0302, 0.0017, 0.0995, -0.06, 0.0068, 0.1978, -0.0403, 0.0068, 0.2026, -0.06, 0.0068, 0.1978, -0.0598, 0.0153, 0.3008, -0.0598, 0.0153, 0.3008, -0.06, 0.0068, 0.1978, -0.0891, 0.0153, 0.2935, -0.0598, 0.0153, 0.3008, -0.0891, 0.0153, 0.2935, -0.0787, 0.027, 0.3955, -0.0787, 0.027, 0.3955, -0.0891, 0.0153, 0.2935, -0.1171, 0.027, 0.386, -0.0787, 0.027, 0.3955, -0.1171, 0.027, 0.386, -0.0966, 0.0418, 0.4854, -0.0966, 0.0418, 0.4854, -0.1171, 0.027, 0.386, -0.1437, 0.0418, 0.4736, -0.0966, 0.0418, 0.4854, -0.1437, 0.0418, 0.4736, -0.1133, 0.0597, 0.5693, -0.1133, 0.0597, 0.5693, -0.1437, 0.0418, 0.4736, -0.1686, 0.0597, 0.5557, -0.1133, 0.0597, 0.5693, -0.1686, 0.0597, 0.5557, -0.1287, 0.0803, 0.6465, -0.1287, 0.0803, 0.6465, -0.1686, 0.0597, 0.5557, -0.1914, 0.0803, 0.6309, -0.1287, 0.0803, 0.6465, -0.1914, 0.0803, 0.6309, -0.1425, 0.1036, 0.7163, -0.1425, 0.1036, 0.7163, -0.1914, 0.0803, 0.6309, -0.212, 0.1036, 0.6987, -0.1425, 0.1036, 0.7163, -0.212, 0.1036, 0.6987, -0.1547, 0.1295, 0.7778, -0.1547, 0.1295, 0.7778, -0.212, 0.1036, 0.6987, -0.2302, 0.1295, 0.7588, -0.1547, 0.1295, 0.7778, -0.2302, 0.1295, 0.7588, -0.1652, 0.158, 0.8306, -0.1652, 0.158, 0.8306, -0.2302, 0.1295, 0.7588, -0.2458, 0.158, 0.8101, -0.1652, 0.158, 0.8306, -0.2458, 0.158, 0.8101, -0.1738, 0.1895, 0.874, -0.1738, 0.1895, 0.874, -0.2458, 0.158, 0.8101, -0.2585, 0.1895, 0.8525, -0.1738, 0.1895, 0.874, -0.2585, 0.1895, 0.8525, -0.1805, 0.2247, 0.9077, -0.1805, 0.2247, 0.9077, -0.2585, 0.1895, 0.8525, -0.2686, 0.2247, 0.8857, -0.1805, 0.2247, 0.9077, -0.2686, 0.2247, 0.8857, -0.1851, 0.2646, 0.9302, -0.1851, 0.2646, 0.9302, -0.2686, 0.2247, 0.8857, -0.2751, 0.2646, 0.9077, -0.1851, 0.2646, 0.9302, -0.2751, 0.2646, 0.9077, -0.1865, 0.3049, 0.938, -0.1865, 0.3049, 0.938, -0.2751, 0.2646, 0.9077, -0.2776, 0.3049, 0.915, -0.5313, 0.3049, -0.7954, -0.5313, 0.3464, -0.7954, -0.6064, 0.3049, -0.7393, -0.6064, 0.3049, -0.7393, -0.5313, 0.3464, -0.7954, -0.6069, 0.3464, -0.7393, -0.915, 0.3049, -0.2776, -0.9155, 0.3464, -0.2776, -0.938, 0.3049, -0.1865, -0.938, 0.3049, -0.1865, -0.9155, 0.3464, -0.2776, -0.9385, 0.3464, -0.1866, -0.1923, 0.3955, 0.9287, -0.2754, 0.3955, 0.9077, -0.1744, 0.3955, 0.8311, -0.1744, 0.3955, 0.8311, -0.2754, 0.3955, 0.9077, -0.2466, 0.3955, 0.813, -0.0102, 0.0017, 0.1035, 0, 0, 0, -0.0203, 0.0017, 0.1019, -0.0102, 0.0017, 0.1035, -0.0203, 0.0017, 0.1019, -0.0202, 0.0068, 0.2057, -0.0202, 0.0068, 0.2057, -0.0203, 0.0017, 0.1019, -0.0403, 0.0068, 0.2026, -0.0202, 0.0068, 0.2057, -0.0403, 0.0068, 0.2026, -0.0301, 0.0153, 0.3052, -0.0301, 0.0153, 0.3052, -0.0403, 0.0068, 0.2026, -0.0598, 0.0153, 0.3008, -0.0301, 0.0153, 0.3052, -0.0598, 0.0153, 0.3008, -0.0395, 0.027, 0.4014, -0.0395, 0.027, 0.4014, -0.0598, 0.0153, 0.3008, -0.0787, 0.027, 0.3955, -0.0395, 0.027, 0.4014, -0.0787, 0.027, 0.3955, -0.0485, 0.0418, 0.4924, -0.0485, 0.0418, 0.4924, -0.0787, 0.027, 0.3955, -0.0966, 0.0418, 0.4854, -0.0485, 0.0418, 0.4924, -0.0966, 0.0418, 0.4854, -0.0569, 0.0597, 0.5776, -0.0569, 0.0597, 0.5776, -0.0966, 0.0418, 0.4854, -0.1133, 0.0597, 0.5693, -0.0569, 0.0597, 0.5776, -0.1133, 0.0597, 0.5693, -0.0646, 0.0803, 0.6563, -0.0646, 0.0803, 0.6563, -0.1133, 0.0597, 0.5693, -0.1287, 0.0803, 0.6465, -0.0646, 0.0803, 0.6563, -0.1287, 0.0803, 0.6465, -0.0716, 0.1036, 0.7271, -0.0716, 0.1036, 0.7271, -0.1287, 0.0803, 0.6465, -0.1425, 0.1036, 0.7163, -0.0716, 0.1036, 0.7271, -0.1425, 0.1036, 0.7163, -0.0777, 0.1295, 0.7891, -0.0777, 0.1295, 0.7891, -0.1425, 0.1036, 0.7163, -0.1547, 0.1295, 0.7778, -0.0777, 0.1295, 0.7891, -0.1547, 0.1295, 0.7778, -0.083, 0.158, 0.8428, -0.083, 0.158, 0.8428, -0.1547, 0.1295, 0.7778, -0.1652, 0.158, 0.8306, -0.083, 0.158, 0.8428, -0.1652, 0.158, 0.8306, -0.0873, 0.1895, 0.8867, -0.0873, 0.1895, 0.8867, -0.1652, 0.158, 0.8306, -0.1738, 0.1895, 0.874, -0.0873, 0.1895, 0.8867, -0.1738, 0.1895, 0.874, -0.0907, 0.2247, 0.9209, -0.0907, 0.2247, 0.9209, -0.1738, 0.1895, 0.874, -0.1805, 0.2247, 0.9077, -0.0907, 0.2247, 0.9209, -0.1805, 0.2247, 0.9077, -0.093, 0.2646, 0.9438, -0.093, 0.2646, 0.9438, -0.1805, 0.2247, 0.9077, -0.1851, 0.2646, 0.9302, -0.093, 0.2646, 0.9438, -0.1851, 0.2646, 0.9302, -0.0938, 0.3049, 0.9517, -0.0938, 0.3049, 0.9517, -0.1851, 0.2646, 0.9302, -0.1865, 0.3049, 0.938, -0.0938, 0.3955, 0.9521, -0.1783, 0.3877, 0.9395, -0.0938, 0.4724, 0.9521, -0.0938, 0.4724, 0.9521, -0.1783, 0.3877, 0.9395, -0.1769, 0.4724, 0.9399, 0, 0.0017, 0.1039, 0, 0, 0, -0.0102, 0.0017, 0.1035, 0, 0.0017, 0.1039, -0.0102, 0.0017, 0.1035, 0, 0.0068, 0.2067, 0, 0.0068, 0.2067, -0.0102, 0.0017, 0.1035, -0.0202, 0.0068, 0.2057, 0, 0.0068, 0.2067, -0.0202, 0.0068, 0.2057, 0, 0.0153, 0.3069, 0, 0.0153, 0.3069, -0.0202, 0.0068, 0.2057, -0.0301, 0.0153, 0.3052, 0, 0.0153, 0.3069, -0.0301, 0.0153, 0.3052, 0, 0.027, 0.4033, 0, 0.027, 0.4033, -0.0301, 0.0153, 0.3052, -0.0395, 0.027, 0.4014, 0, 0.027, 0.4033, -0.0395, 0.027, 0.4014, 0, 0.0418, 0.4949, 0, 0.0418, 0.4949, -0.0395, 0.027, 0.4014, -0.0485, 0.0418, 0.4924, 0, 0.0418, 0.4949, -0.0485, 0.0418, 0.4924, 0, 0.0597, 0.5806, 0, 0.0597, 0.5806, -0.0485, 0.0418, 0.4924, -0.0569, 0.0597, 0.5776, 0, 0.0597, 0.5806, -0.0569, 0.0597, 0.5776, 0, 0.0803, 0.6592, 0, 0.0803, 0.6592, -0.0569, 0.0597, 0.5776, -0.0646, 0.0803, 0.6563, 0, 0.0803, 0.6592, -0.0646, 0.0803, 0.6563, 0, 0.1036, 0.7305, 0, 0.1036, 0.7305, -0.0646, 0.0803, 0.6563, -0.0716, 0.1036, 0.7271, 0, 0.1036, 0.7305, -0.0716, 0.1036, 0.7271, 0, 0.1295, 0.793, 0, 0.1295, 0.793, -0.0716, 0.1036, 0.7271, -0.0777, 0.1295, 0.7891, 0, 0.1295, 0.793, -0.0777, 0.1295, 0.7891, 0, 0.158, 0.8467, 0, 0.158, 0.8467, -0.0777, 0.1295, 0.7891, -0.083, 0.158, 0.8428, 0, 0.158, 0.8467, -0.083, 0.158, 0.8428, 0, 0.1895, 0.8911, 0, 0.1895, 0.8911, -0.083, 0.158, 0.8428, -0.0873, 0.1895, 0.8867, 0, 0.1895, 0.8911, -0.0873, 0.1895, 0.8867, 0, 0.2247, 0.9253, 0, 0.2247, 0.9253, -0.0873, 0.1895, 0.8867, -0.0907, 0.2247, 0.9209, 0, 0.2247, 0.9253, -0.0907, 0.2247, 0.9209, 0, 0.2646, 0.9482, 0, 0.2646, 0.9482, -0.0907, 0.2247, 0.9209, -0.093, 0.2646, 0.9438, 0, 0.2646, 0.9482, -0.093, 0.2646, 0.9438, 0, 0.3049, 0.9565, 0, 0.3049, 0.9565, -0.093, 0.2646, 0.9438, -0.0938, 0.3049, 0.9517, 0, 0.3464, 0.9565, -0.0938, 0.3464, 0.9521, 0, 0.3955, 0.9565, 0, 0.3955, 0.9565, -0.0938, 0.3464, 0.9521, -0.0938, 0.3955, 0.9521, -0.0102, 0.0017, -0.1035, 0, 0, 0, 0, 0.0017, -0.1039, -0.0102, 0.0017, -0.1035, 0, 0.0017, -0.1039, -0.0202, 0.0068, -0.2057, -0.0202, 0.0068, -0.2057, 0, 0.0017, -0.1039, 0, 0.0068, -0.2067, -0.0202, 0.0068, -0.2057, 0, 0.0068, -0.2067, -0.0301, 0.0153, -0.3052, -0.0301, 0.0153, -0.3052, 0, 0.0068, -0.2067, 0, 0.0153, -0.3069, -0.0301, 0.0153, -0.3052, 0, 0.0153, -0.3069, -0.0395, 0.027, -0.4014, -0.0395, 0.027, -0.4014, 0, 0.0153, -0.3069, 0, 0.027, -0.4033, -0.0395, 0.027, -0.4014, 0, 0.027, -0.4033, -0.0485, 0.0418, -0.4924, -0.0485, 0.0418, -0.4924, 0, 0.027, -0.4033, 0, 0.0418, -0.4949, -0.0485, 0.0418, -0.4924, 0, 0.0418, -0.4949, -0.0569, 0.0597, -0.5776, -0.0569, 0.0597, -0.5776, 0, 0.0418, -0.4949, 0, 0.0597, -0.5806, -0.0569, 0.0597, -0.5776, 0, 0.0597, -0.5806, -0.0646, 0.0803, -0.6563, -0.0646, 0.0803, -0.6563, 0, 0.0597, -0.5806, 0, 0.0803, -0.6592, -0.0646, 0.0803, -0.6563, 0, 0.0803, -0.6592, -0.0716, 0.1036, -0.7271, -0.0716, 0.1036, -0.7271, 0, 0.0803, -0.6592, 0, 0.1036, -0.7305, -0.0716, 0.1036, -0.7271, 0, 0.1036, -0.7305, -0.0777, 0.1295, -0.7891, -0.0777, 0.1295, -0.7891, 0, 0.1036, -0.7305, 0, 0.1295, -0.793, -0.0777, 0.1295, -0.7891, 0, 0.1295, -0.793, -0.083, 0.158, -0.8428, -0.083, 0.158, -0.8428, 0, 0.1295, -0.793, 0, 0.158, -0.8467, -0.083, 0.158, -0.8428, 0, 0.158, -0.8467, -0.0873, 0.1895, -0.8867, -0.0873, 0.1895, -0.8867, 0, 0.158, -0.8467, 0, 0.1895, -0.8911, -0.0873, 0.1895, -0.8867, 0, 0.1895, -0.8911, -0.0907, 0.2247, -0.9209, -0.0907, 0.2247, -0.9209, 0, 0.1895, -0.8911, 0, 0.2247, -0.9253, -0.0907, 0.2247, -0.9209, 0, 0.2247, -0.9253, -0.093, 0.2646, -0.9438, -0.093, 0.2646, -0.9438, 0, 0.2247, -0.9253, 0, 0.2646, -0.9482, -0.093, 0.2646, -0.9438, 0, 0.2646, -0.9482, -0.0938, 0.3049, -0.9517, -0.0938, 0.3049, -0.9517, 0, 0.2646, -0.9482, 0, 0.3049, -0.9565, -0.366, 0.3464, -0.8838, -0.4509, 0.3464, -0.8438, -0.366, 0.3049, -0.8838, -0.366, 0.3049, -0.8838, -0.4509, 0.3464, -0.8438, -0.4509, 0.3049, -0.8433, -0.0938, 0.3464, -0.9521, 0, 0.3464, -0.9565, -0.0938, 0.3955, -0.9521, -0.0938, 0.3955, -0.9521, 0, 0.3464, -0.9565, 0, 0.3955, -0.9565, -0.0203, 0.0017, -0.1019, 0, 0, 0, -0.0102, 0.0017, -0.1035, -0.0203, 0.0017, -0.1019, -0.0102, 0.0017, -0.1035, -0.0403, 0.0068, -0.2026, -0.0403, 0.0068, -0.2026, -0.0102, 0.0017, -0.1035, -0.0202, 0.0068, -0.2057, -0.0403, 0.0068, -0.2026, -0.0202, 0.0068, -0.2057, -0.0598, 0.0153, -0.3008, -0.0598, 0.0153, -0.3008, -0.0202, 0.0068, -0.2057, -0.0301, 0.0153, -0.3052, -0.0598, 0.0153, -0.3008, -0.0301, 0.0153, -0.3052, -0.0787, 0.027, -0.3955, -0.0787, 0.027, -0.3955, -0.0301, 0.0153, -0.3052, -0.0395, 0.027, -0.4014, -0.0787, 0.027, -0.3955, -0.0395, 0.027, -0.4014, -0.0966, 0.0418, -0.4854, -0.0966, 0.0418, -0.4854, -0.0395, 0.027, -0.4014, -0.0485, 0.0418, -0.4924, -0.0966, 0.0418, -0.4854, -0.0485, 0.0418, -0.4924, -0.1133, 0.0597, -0.5693, -0.1133, 0.0597, -0.5693, -0.0485, 0.0418, -0.4924, -0.0569, 0.0597, -0.5776, -0.1133, 0.0597, -0.5693, -0.0569, 0.0597, -0.5776, -0.1287, 0.0803, -0.6465, -0.1287, 0.0803, -0.6465, -0.0569, 0.0597, -0.5776, -0.0646, 0.0803, -0.6563, -0.1287, 0.0803, -0.6465, -0.0646, 0.0803, -0.6563, -0.1425, 0.1036, -0.7163, -0.1425, 0.1036, -0.7163, -0.0646, 0.0803, -0.6563, -0.0716, 0.1036, -0.7271, -0.1425, 0.1036, -0.7163, -0.0716, 0.1036, -0.7271, -0.1547, 0.1295, -0.7778, -0.1547, 0.1295, -0.7778, -0.0716, 0.1036, -0.7271, -0.0777, 0.1295, -0.7891, -0.1547, 0.1295, -0.7778, -0.0777, 0.1295, -0.7891, -0.1652, 0.158, -0.8306, -0.1652, 0.158, -0.8306, -0.0777, 0.1295, -0.7891, -0.083, 0.158, -0.8428, -0.1652, 0.158, -0.8306, -0.083, 0.158, -0.8428, -0.1738, 0.1895, -0.874, -0.1738, 0.1895, -0.874, -0.083, 0.158, -0.8428, -0.0873, 0.1895, -0.8867, -0.1738, 0.1895, -0.874, -0.0873, 0.1895, -0.8867, -0.1805, 0.2247, -0.9077, -0.1805, 0.2247, -0.9077, -0.0873, 0.1895, -0.8867, -0.0907, 0.2247, -0.9209, -0.1805, 0.2247, -0.9077, -0.0907, 0.2247, -0.9209, -0.1851, 0.2646, -0.9302, -0.1851, 0.2646, -0.9302, -0.0907, 0.2247, -0.9209, -0.093, 0.2646, -0.9438, -0.1851, 0.2646, -0.9302, -0.093, 0.2646, -0.9438, -0.1865, 0.3049, -0.938, -0.1865, 0.3049, -0.938, -0.093, 0.2646, -0.9438, -0.0938, 0.3049, -0.9517, -0.6064, 0.3049, 0.7393, -0.6069, 0.3464, 0.7393, -0.5313, 0.3049, 0.7954, -0.5313, 0.3049, 0.7954, -0.6069, 0.3464, 0.7393, -0.5313, 0.3464, 0.7954, -0.1866, 0.3464, -0.9385, -0.0938, 0.3464, -0.9521, -0.1866, 0.3955, -0.9385, -0.1866, 0.3955, -0.9385, -0.0938, 0.3464, -0.9521, -0.0938, 0.3955, -0.9521, -0.0302, 0.0017, -0.0995, 0, 0, 0, -0.0203, 0.0017, -0.1019, -0.0302, 0.0017, -0.0995, -0.0203, 0.0017, -0.1019, -0.06, 0.0068, -0.1978, -0.06, 0.0068, -0.1978, -0.0203, 0.0017, -0.1019, -0.0403, 0.0068, -0.2026, -0.06, 0.0068, -0.1978, -0.0403, 0.0068, -0.2026, -0.0891, 0.0153, -0.2935, -0.0891, 0.0153, -0.2935, -0.0403, 0.0068, -0.2026, -0.0598, 0.0153, -0.3008, -0.0891, 0.0153, -0.2935, -0.0598, 0.0153, -0.3008, -0.1171, 0.027, -0.386, -0.1171, 0.027, -0.386, -0.0598, 0.0153, -0.3008, -0.0787, 0.027, -0.3955, -0.1171, 0.027, -0.386, -0.0787, 0.027, -0.3955, -0.1437, 0.0418, -0.4736, -0.1437, 0.0418, -0.4736, -0.0787, 0.027, -0.3955, -0.0966, 0.0418, -0.4854, -0.1437, 0.0418, -0.4736, -0.0966, 0.0418, -0.4854, -0.1686, 0.0597, -0.5557, -0.1686, 0.0597, -0.5557, -0.0966, 0.0418, -0.4854, -0.1133, 0.0597, -0.5693, -0.1686, 0.0597, -0.5557, -0.1133, 0.0597, -0.5693, -0.1914, 0.0803, -0.6309, -0.1914, 0.0803, -0.6309, -0.1133, 0.0597, -0.5693, -0.1287, 0.0803, -0.6465, -0.1914, 0.0803, -0.6309, -0.1287, 0.0803, -0.6465, -0.212, 0.1036, -0.6987, -0.212, 0.1036, -0.6987, -0.1287, 0.0803, -0.6465, -0.1425, 0.1036, -0.7163, -0.212, 0.1036, -0.6987, -0.1425, 0.1036, -0.7163, -0.2302, 0.1295, -0.7588, -0.2302, 0.1295, -0.7588, -0.1425, 0.1036, -0.7163, -0.1547, 0.1295, -0.7778, -0.2302, 0.1295, -0.7588, -0.1547, 0.1295, -0.7778, -0.2458, 0.158, -0.8101, -0.2458, 0.158, -0.8101, -0.1547, 0.1295, -0.7778, -0.1652, 0.158, -0.8306, -0.2458, 0.158, -0.8101, -0.1652, 0.158, -0.8306, -0.2585, 0.1895, -0.8525, -0.2585, 0.1895, -0.8525, -0.1652, 0.158, -0.8306, -0.1738, 0.1895, -0.874, -0.2585, 0.1895, -0.8525, -0.1738, 0.1895, -0.874, -0.2686, 0.2247, -0.8857, -0.2686, 0.2247, -0.8857, -0.1738, 0.1895, -0.874, -0.1805, 0.2247, -0.9077, -0.2686, 0.2247, -0.8857, -0.1805, 0.2247, -0.9077, -0.2751, 0.2646, -0.9077, -0.2751, 0.2646, -0.9077, -0.1805, 0.2247, -0.9077, -0.1851, 0.2646, -0.9302, -0.2751, 0.2646, -0.9077, -0.1851, 0.2646, -0.9302, -0.2776, 0.3049, -0.915, -0.2776, 0.3049, -0.915, -0.1851, 0.2646, -0.9302, -0.1865, 0.3049, -0.938, -0.2776, 0.3464, -0.9155, -0.1866, 0.3464, -0.9385, -0.2776, 0.3955, -0.9155, -0.2776, 0.3955, -0.9155, -0.1866, 0.3464, -0.9385, -0.1866, 0.3955, -0.9385, -0.0398, 0.0017, -0.096, 0, 0, 0, -0.0302, 0.0017, -0.0995, -0.0398, 0.0017, -0.096, -0.0302, 0.0017, -0.0995, -0.079, 0.0068, -0.1909, -0.079, 0.0068, -0.1909, -0.0302, 0.0017, -0.0995, -0.06, 0.0068, -0.1978, -0.079, 0.0068, -0.1909, -0.06, 0.0068, -0.1978, -0.1174, 0.0153, -0.2834, -0.1174, 0.0153, -0.2834, -0.06, 0.0068, -0.1978, -0.0891, 0.0153, -0.2935, -0.1174, 0.0153, -0.2834, -0.0891, 0.0153, -0.2935, -0.1543, 0.027, -0.3726, -0.1543, 0.027, -0.3726, -0.0891, 0.0153, -0.2935, -0.1171, 0.027, -0.386, -0.1543, 0.027, -0.3726, -0.1171, 0.027, -0.386, -0.1893, 0.0418, -0.4573, -0.1893, 0.0418, -0.4573, -0.1171, 0.027, -0.386, -0.1437, 0.0418, -0.4736, -0.1893, 0.0418, -0.4573, -0.1437, 0.0418, -0.4736, -0.2222, 0.0597, -0.5361, -0.2222, 0.0597, -0.5361, -0.1437, 0.0418, -0.4736, -0.1686, 0.0597, -0.5557, -0.2222, 0.0597, -0.5361, -0.1686, 0.0597, -0.5557, -0.2522, 0.0803, -0.6089, -0.2522, 0.0803, -0.6089, -0.1686, 0.0597, -0.5557, -0.1914, 0.0803, -0.6309, -0.2522, 0.0803, -0.6089, -0.1914, 0.0803, -0.6309, -0.2795, 0.1036, -0.6748, -0.2795, 0.1036, -0.6748, -0.1914, 0.0803, -0.6309, -0.212, 0.1036, -0.6987, -0.2795, 0.1036, -0.6748, -0.212, 0.1036, -0.6987, -0.3035, 0.1295, -0.7329, -0.3035, 0.1295, -0.7329, -0.212, 0.1036, -0.6987, -0.2302, 0.1295, -0.7588, -0.3035, 0.1295, -0.7329, -0.2302, 0.1295, -0.7588, -0.324, 0.158, -0.7822, -0.324, 0.158, -0.7822, -0.2302, 0.1295, -0.7588, -0.2458, 0.158, -0.8101, -0.324, 0.158, -0.7822, -0.2458, 0.158, -0.8101, -0.3411, 0.1895, -0.8232, -0.3411, 0.1895, -0.8232, -0.2458, 0.158, -0.8101, -0.2585, 0.1895, -0.8525, -0.3411, 0.1895, -0.8232, -0.2585, 0.1895, -0.8525, -0.3542, 0.2247, -0.855, -0.3542, 0.2247, -0.855, -0.2585, 0.1895, -0.8525, -0.2686, 0.2247, -0.8857, -0.3542, 0.2247, -0.855, -0.2686, 0.2247, -0.8857, -0.3628, 0.2646, -0.876, -0.3628, 0.2646, -0.876, -0.2686, 0.2247, -0.8857, -0.2751, 0.2646, -0.9077, -0.3628, 0.2646, -0.876, -0.2751, 0.2646, -0.9077, -0.366, 0.3049, -0.8838, -0.366, 0.3049, -0.8838, -0.2751, 0.2646, -0.9077, -0.2776, 0.3049, -0.915, -0.366, 0.3464, -0.8838, -0.2776, 0.3464, -0.9155, -0.366, 0.3955, -0.8838, -0.366, 0.3955, -0.8838, -0.2776, 0.3464, -0.9155, -0.2776, 0.3955, -0.9155, -0.049, 0.0017, -0.0917, 0, 0, 0, -0.0398, 0.0017, -0.096, -0.049, 0.0017, -0.0917, -0.0398, 0.0017, -0.096, -0.0974, 0.0068, -0.1823, -0.0974, 0.0068, -0.1823, -0.0398, 0.0017, -0.096, -0.079, 0.0068, -0.1909, -0.0974, 0.0068, -0.1823, -0.079, 0.0068, -0.1909, -0.1447, 0.0153, -0.2705, -0.1447, 0.0153, -0.2705, -0.079, 0.0068, -0.1909, -0.1174, 0.0153, -0.2834, -0.1447, 0.0153, -0.2705, -0.1174, 0.0153, -0.2834, -0.1901, 0.027, -0.3557, -0.1901, 0.027, -0.3557, -0.1174, 0.0153, -0.2834, -0.1543, 0.027, -0.3726, -0.1901, 0.027, -0.3557, -0.1543, 0.027, -0.3726, -0.2333, 0.0418, -0.4365, -0.2333, 0.0418, -0.4365, -0.1543, 0.027, -0.3726, -0.1893, 0.0418, -0.4573, -0.2333, 0.0418, -0.4365, -0.1893, 0.0418, -0.4573, -0.2737, 0.0597, -0.5117, -0.2737, 0.0597, -0.5117, -0.1893, 0.0418, -0.4573, -0.2222, 0.0597, -0.5361, -0.2737, 0.0597, -0.5117, -0.2222, 0.0597, -0.5361, -0.3108, 0.0803, -0.5815, -0.3108, 0.0803, -0.5815, -0.2222, 0.0597, -0.5361, -0.2522, 0.0803, -0.6089, -0.3108, 0.0803, -0.5815, -0.2522, 0.0803, -0.6089, -0.3442, 0.1036, -0.644, -0.3442, 0.1036, -0.644, -0.2522, 0.0803, -0.6089, -0.2795, 0.1036, -0.6748, -0.3442, 0.1036, -0.644, -0.2795, 0.1036, -0.6748, -0.3738, 0.1295, -0.6992, -0.3738, 0.1295, -0.6992, -0.2795, 0.1036, -0.6748, -0.3035, 0.1295, -0.7329, -0.3738, 0.1295, -0.6992, -0.3035, 0.1295, -0.7329, -0.3992, 0.158, -0.7466, -0.3992, 0.158, -0.7466, -0.3035, 0.1295, -0.7329, -0.324, 0.158, -0.7822, -0.3992, 0.158, -0.7466, -0.324, 0.158, -0.7822, -0.4202, 0.1895, -0.7856, -0.4202, 0.1895, -0.7856, -0.324, 0.158, -0.7822, -0.3411, 0.1895, -0.8232, -0.4202, 0.1895, -0.7856, -0.3411, 0.1895, -0.8232, -0.4363, 0.2247, -0.8164, -0.4363, 0.2247, -0.8164, -0.3411, 0.1895, -0.8232, -0.3542, 0.2247, -0.855, -0.4363, 0.2247, -0.8164, -0.3542, 0.2247, -0.855, -0.447, 0.2646, -0.8364, -0.447, 0.2646, -0.8364, -0.3542, 0.2247, -0.855, -0.3628, 0.2646, -0.876, -0.447, 0.2646, -0.8364, -0.3628, 0.2646, -0.876, -0.4509, 0.3049, -0.8433, -0.4509, 0.3049, -0.8433, -0.3628, 0.2646, -0.876, -0.366, 0.3049, -0.8838, -0.6763, 0.3049, -0.6763, -0.6064, 0.3049, -0.7393, -0.6763, 0.3464, -0.6763, -0.6763, 0.3464, -0.6763, -0.6064, 0.3049, -0.7393, -0.6069, 0.3464, -0.7393, -0.4509, 0.3464, -0.8438, -0.366, 0.3464, -0.8838, -0.4509, 0.3955, -0.8438, -0.4509, 0.3955, -0.8438, -0.366, 0.3464, -0.8838, -0.366, 0.3955, -0.8838, -0.0578, 0.0017, -0.0864, 0, 0, 0, -0.049, 0.0017, -0.0917, -0.0578, 0.0017, -0.0864, -0.049, 0.0017, -0.0917, -0.1148, 0.0068, -0.1718, -0.1148, 0.0068, -0.1718, -0.049, 0.0017, -0.0917, -0.0974, 0.0068, -0.1823, -0.1148, 0.0068, -0.1718, -0.0974, 0.0068, -0.1823, -0.1704, 0.0153, -0.2551, -0.1704, 0.0153, -0.2551, -0.0974, 0.0068, -0.1823, -0.1447, 0.0153, -0.2705, -0.1704, 0.0153, -0.2551, -0.1447, 0.0153, -0.2705, -0.224, 0.027, -0.3352, -0.224, 0.027, -0.3352, -0.1447, 0.0153, -0.2705, -0.1901, 0.027, -0.3557, -0.224, 0.027, -0.3352, -0.1901, 0.027, -0.3557, -0.2749, 0.0418, -0.4114, -0.2749, 0.0418, -0.4114, -0.1901, 0.027, -0.3557, -0.2333, 0.0418, -0.4365, -0.2749, 0.0418, -0.4114, -0.2333, 0.0418, -0.4365, -0.3225, 0.0597, -0.4827, -0.3225, 0.0597, -0.4827, -0.2333, 0.0418, -0.4365, -0.2737, 0.0597, -0.5117, -0.3225, 0.0597, -0.4827, -0.2737, 0.0597, -0.5117, -0.3662, 0.0803, -0.5483, -0.3662, 0.0803, -0.5483, -0.2737, 0.0597, -0.5117, -0.3108, 0.0803, -0.5815, -0.3662, 0.0803, -0.5483, -0.3108, 0.0803, -0.5815, -0.4058, 0.1036, -0.6074, -0.4058, 0.1036, -0.6074, -0.3108, 0.0803, -0.5815, -0.3442, 0.1036, -0.644, -0.4058, 0.1036, -0.6074, -0.3442, 0.1036, -0.644, -0.4407, 0.1295, -0.6592, -0.4407, 0.1295, -0.6592, -0.3442, 0.1036, -0.644, -0.3738, 0.1295, -0.6992, -0.4407, 0.1295, -0.6592, -0.3738, 0.1295, -0.6992, -0.4705, 0.158, -0.7041, -0.4705, 0.158, -0.7041, -0.3738, 0.1295, -0.6992, -0.3992, 0.158, -0.7466, -0.4705, 0.158, -0.7041, -0.3992, 0.158, -0.7466, -0.4951, 0.1895, -0.7407, -0.4951, 0.1895, -0.7407, -0.3992, 0.158, -0.7466, -0.4202, 0.1895, -0.7856, -0.4951, 0.1895, -0.7407, -0.4202, 0.1895, -0.7856, -0.5142, 0.2247, -0.7695, -0.5142, 0.2247, -0.7695, -0.4202, 0.1895, -0.7856, -0.4363, 0.2247, -0.8164, -0.5142, 0.2247, -0.7695, -0.4363, 0.2247, -0.8164, -0.5269, 0.2646, -0.7886, -0.5269, 0.2646, -0.7886, -0.4363, 0.2247, -0.8164, -0.447, 0.2646, -0.8364, -0.5269, 0.2646, -0.7886, -0.447, 0.2646, -0.8364, -0.5313, 0.3049, -0.7954, -0.5313, 0.3049, -0.7954, -0.447, 0.2646, -0.8364, -0.4509, 0.3049, -0.8433, -0.0938, 0.3049, 0.9517, -0.0938, 0.3464, 0.9521, 0, 0.3049, 0.9565, 0, 0.3049, 0.9565, -0.0938, 0.3464, 0.9521, 0, 0.3464, 0.9565, -0.5313, 0.3464, -0.7954, -0.4509, 0.3464, -0.8438, -0.5313, 0.3955, -0.7954, -0.5313, 0.3955, -0.7954, -0.4509, 0.3464, -0.8438, -0.4509, 0.3955, -0.8438, -0.0659, 0.0017, -0.0803, 0, 0, 0, -0.0578, 0.0017, -0.0864, -0.0659, 0.0017, -0.0803, -0.0578, 0.0017, -0.0864, -0.1311, 0.0068, -0.1597, -0.1311, 0.0068, -0.1597, -0.0578, 0.0017, -0.0864, -0.1148, 0.0068, -0.1718, -0.1311, 0.0068, -0.1597, -0.1148, 0.0068, -0.1718, -0.1946, 0.0153, -0.2372, -0.1946, 0.0153, -0.2372, -0.1148, 0.0068, -0.1718, -0.1704, 0.0153, -0.2551, -0.1946, 0.0153, -0.2372, -0.1704, 0.0153, -0.2551, -0.2559, 0.027, -0.3118, -0.2559, 0.027, -0.3118, -0.1704, 0.0153, -0.2551, -0.224, 0.027, -0.3352, -0.2559, 0.027, -0.3118, -0.224, 0.027, -0.3352, -0.314, 0.0418, -0.3826, -0.314, 0.0418, -0.3826, -0.224, 0.027, -0.3352, -0.2749, 0.0418, -0.4114, -0.314, 0.0418, -0.3826, -0.2749, 0.0418, -0.4114, -0.3684, 0.0597, -0.4487, -0.3684, 0.0597, -0.4487, -0.2749, 0.0418, -0.4114, -0.3225, 0.0597, -0.4827, -0.3684, 0.0597, -0.4487, -0.3225, 0.0597, -0.4827, -0.4182, 0.0803, -0.5098, -0.4182, 0.0803, -0.5098, -0.3225, 0.0597, -0.4827, -0.3662, 0.0803, -0.5483, -0.4182, 0.0803, -0.5098, -0.3662, 0.0803, -0.5483, -0.4634, 0.1036, -0.5645, -0.4634, 0.1036, -0.5645, -0.3662, 0.0803, -0.5483, -0.4058, 0.1036, -0.6074, -0.4634, 0.1036, -0.5645, -0.4058, 0.1036, -0.6074, -0.5029, 0.1295, -0.6128, -0.5029, 0.1295, -0.6128, -0.4058, 0.1036, -0.6074, -0.4407, 0.1295, -0.6592, -0.5029, 0.1295, -0.6128, -0.4407, 0.1295, -0.6592, -0.5371, 0.158, -0.6543, -0.5371, 0.158, -0.6543, -0.4407, 0.1295, -0.6592, -0.4705, 0.158, -0.7041, -0.5371, 0.158, -0.6543, -0.4705, 0.158, -0.7041, -0.5654, 0.1895, -0.689, -0.5654, 0.1895, -0.689, -0.4705, 0.158, -0.7041, -0.4951, 0.1895, -0.7407, -0.5654, 0.1895, -0.689, -0.4951, 0.1895, -0.7407, -0.5869, 0.2247, -0.7153, -0.5869, 0.2247, -0.7153, -0.4951, 0.1895, -0.7407, -0.5142, 0.2247, -0.7695, -0.5869, 0.2247, -0.7153, -0.5142, 0.2247, -0.7695, -0.6016, 0.2646, -0.7329, -0.6016, 0.2646, -0.7329, -0.5142, 0.2247, -0.7695, -0.5269, 0.2646, -0.7886, -0.6016, 0.2646, -0.7329, -0.5269, 0.2646, -0.7886, -0.6064, 0.3049, -0.7393, -0.6064, 0.3049, -0.7393, -0.5269, 0.2646, -0.7886, -0.5313, 0.3049, -0.7954, -0.6069, 0.3464, -0.7393, -0.5313, 0.3464, -0.7954, -0.6069, 0.3955, -0.7393, -0.6069, 0.3955, -0.7393, -0.5313, 0.3464, -0.7954, -0.5313, 0.3955, -0.7954, -0.0735, 0.0017, -0.0735, 0, 0, 0, -0.0659, 0.0017, -0.0803, -0.0735, 0.0017, -0.0735, -0.0659, 0.0017, -0.0803, -0.1461, 0.0068, -0.1461, -0.1461, 0.0068, -0.1461, -0.0659, 0.0017, -0.0803, -0.1311, 0.0068, -0.1597, -0.1461, 0.0068, -0.1461, -0.1311, 0.0068, -0.1597, -0.2169, 0.0153, -0.2169, -0.2169, 0.0153, -0.2169, -0.1311, 0.0068, -0.1597, -0.1946, 0.0153, -0.2372, -0.2169, 0.0153, -0.2169, -0.1946, 0.0153, -0.2372, -0.2852, 0.027, -0.2852, -0.2852, 0.027, -0.2852, -0.1946, 0.0153, -0.2372, -0.2559, 0.027, -0.3118, -0.2852, 0.027, -0.2852, -0.2559, 0.027, -0.3118, -0.3499, 0.0418, -0.3499, -0.3499, 0.0418, -0.3499, -0.2559, 0.027, -0.3118, -0.314, 0.0418, -0.3826, -0.3499, 0.0418, -0.3499, -0.314, 0.0418, -0.3826, -0.4106, 0.0597, -0.4106, -0.4106, 0.0597, -0.4106, -0.314, 0.0418, -0.3826, -0.3684, 0.0597, -0.4487, -0.4106, 0.0597, -0.4106, -0.3684, 0.0597, -0.4487, -0.4663, 0.0803, -0.4663, -0.4663, 0.0803, -0.4663, -0.3684, 0.0597, -0.4487, -0.4182, 0.0803, -0.5098, -0.4663, 0.0803, -0.4663, -0.4182, 0.0803, -0.5098, -0.5166, 0.1036, -0.5166, -0.5166, 0.1036, -0.5166, -0.4182, 0.0803, -0.5098, -0.4634, 0.1036, -0.5645, -0.5166, 0.1036, -0.5166, -0.4634, 0.1036, -0.5645, -0.5605, 0.1295, -0.5605, -0.5605, 0.1295, -0.5605, -0.4634, 0.1036, -0.5645, -0.5029, 0.1295, -0.6128, -0.5605, 0.1295, -0.5605, -0.5029, 0.1295, -0.6128, -0.5986, 0.158, -0.5986, -0.5986, 0.158, -0.5986, -0.5029, 0.1295, -0.6128, -0.5371, 0.158, -0.6543, -0.5986, 0.158, -0.5986, -0.5371, 0.158, -0.6543, -0.6299, 0.1895, -0.6299, -0.6299, 0.1895, -0.6299, -0.5371, 0.158, -0.6543, -0.5654, 0.1895, -0.689, -0.6299, 0.1895, -0.6299, -0.5654, 0.1895, -0.689, -0.6543, 0.2247, -0.6543, -0.6543, 0.2247, -0.6543, -0.5654, 0.1895, -0.689, -0.5869, 0.2247, -0.7153, -0.6543, 0.2247, -0.6543, -0.5869, 0.2247, -0.7153, -0.6704, 0.2646, -0.6704, -0.6704, 0.2646, -0.6704, -0.5869, 0.2247, -0.7153, -0.6016, 0.2646, -0.7329, -0.6704, 0.2646, -0.6704, -0.6016, 0.2646, -0.7329, -0.6763, 0.3049, -0.6763, -0.6763, 0.3049, -0.6763, -0.6016, 0.2646, -0.7329, -0.6064, 0.3049, -0.7393, -0.8433, 0.3049, -0.4509, -0.7954, 0.3049, -0.5313, -0.8438, 0.3464, -0.4509, -0.8438, 0.3464, -0.4509, -0.7954, 0.3049, -0.5313, -0.7954, 0.3464, -0.5313, -0.7393, 0.3464, -0.6069, -0.7393, 0.3049, -0.6064, -0.6763, 0.3464, -0.6763, -0.6763, 0.3464, -0.6763, -0.7393, 0.3049, -0.6064, -0.6763, 0.3049, -0.6763, -0.6763, 0.3464, -0.6763, -0.6069, 0.3464, -0.7393, -0.6763, 0.3955, -0.6763, -0.6763, 0.3955, -0.6763, -0.6069, 0.3464, -0.7393, -0.6069, 0.3955, -0.7393, -0.0803, 0.0017, -0.0659, 0, 0, 0, -0.0735, 0.0017, -0.0735, -0.0803, 0.0017, -0.0659, -0.0735, 0.0017, -0.0735, -0.1597, 0.0068, -0.1311, -0.1597, 0.0068, -0.1311, -0.0735, 0.0017, -0.0735, -0.1461, 0.0068, -0.1461, -0.1597, 0.0068, -0.1311, -0.1461, 0.0068, -0.1461, -0.2372, 0.0153, -0.1946, -0.2372, 0.0153, -0.1946, -0.1461, 0.0068, -0.1461, -0.2169, 0.0153, -0.2169, -0.2372, 0.0153, -0.1946, -0.2169, 0.0153, -0.2169, -0.3118, 0.027, -0.2559, -0.3118, 0.027, -0.2559, -0.2169, 0.0153, -0.2169, -0.2852, 0.027, -0.2852, -0.3118, 0.027, -0.2559, -0.2852, 0.027, -0.2852, -0.3826, 0.0418, -0.314, -0.3826, 0.0418, -0.314, -0.2852, 0.027, -0.2852, -0.3499, 0.0418, -0.3499, -0.3826, 0.0418, -0.314, -0.3499, 0.0418, -0.3499, -0.4487, 0.0597, -0.3684, -0.4487, 0.0597, -0.3684, -0.3499, 0.0418, -0.3499, -0.4106, 0.0597, -0.4106, -0.4487, 0.0597, -0.3684, -0.4106, 0.0597, -0.4106, -0.5098, 0.0803, -0.4182, -0.5098, 0.0803, -0.4182, -0.4106, 0.0597, -0.4106, -0.4663, 0.0803, -0.4663, -0.5098, 0.0803, -0.4182, -0.4663, 0.0803, -0.4663, -0.5645, 0.1036, -0.4634, -0.5645, 0.1036, -0.4634, -0.4663, 0.0803, -0.4663, -0.5166, 0.1036, -0.5166, -0.5645, 0.1036, -0.4634, -0.5166, 0.1036, -0.5166, -0.6128, 0.1295, -0.5029, -0.6128, 0.1295, -0.5029, -0.5166, 0.1036, -0.5166, -0.5605, 0.1295, -0.5605, -0.6128, 0.1295, -0.5029, -0.5605, 0.1295, -0.5605, -0.6543, 0.158, -0.5371, -0.6543, 0.158, -0.5371, -0.5605, 0.1295, -0.5605, -0.5986, 0.158, -0.5986, -0.6543, 0.158, -0.5371, -0.5986, 0.158, -0.5986, -0.689, 0.1895, -0.5654, -0.689, 0.1895, -0.5654, -0.5986, 0.158, -0.5986, -0.6299, 0.1895, -0.6299, -0.689, 0.1895, -0.5654, -0.6299, 0.1895, -0.6299, -0.7153, 0.2247, -0.5869, -0.7153, 0.2247, -0.5869, -0.6299, 0.1895, -0.6299, -0.6543, 0.2247, -0.6543, -0.7153, 0.2247, -0.5869, -0.6543, 0.2247, -0.6543, -0.7329, 0.2646, -0.6016, -0.7329, 0.2646, -0.6016, -0.6543, 0.2247, -0.6543, -0.6704, 0.2646, -0.6704, -0.7329, 0.2646, -0.6016, -0.6704, 0.2646, -0.6704, -0.7393, 0.3049, -0.6064, -0.7393, 0.3049, -0.6064, -0.6704, 0.2646, -0.6704, -0.6763, 0.3049, -0.6763, -0.8838, 0.3049, -0.366, -0.8838, 0.3464, -0.366, -0.915, 0.3049, -0.2776, -0.915, 0.3049, -0.2776, -0.8838, 0.3464, -0.366, -0.9155, 0.3464, -0.2776, -0.7393, 0.3464, -0.6069, -0.6763, 0.3464, -0.6763, -0.7393, 0.3955, -0.6069, -0.7393, 0.3955, -0.6069, -0.6763, 0.3464, -0.6763, -0.6763, 0.3955, -0.6763, -0.0864, 0.0017, -0.0578, 0, 0, 0, -0.0803, 0.0017, -0.0659, -0.0864, 0.0017, -0.0578, -0.0803, 0.0017, -0.0659, -0.1718, 0.0068, -0.1148, -0.1718, 0.0068, -0.1148, -0.0803, 0.0017, -0.0659, -0.1597, 0.0068, -0.1311, -0.1718, 0.0068, -0.1148, -0.1597, 0.0068, -0.1311, -0.2551, 0.0153, -0.1704, -0.2551, 0.0153, -0.1704, -0.1597, 0.0068, -0.1311, -0.2372, 0.0153, -0.1946, -0.2551, 0.0153, -0.1704, -0.2372, 0.0153, -0.1946, -0.3352, 0.027, -0.224, -0.3352, 0.027, -0.224, -0.2372, 0.0153, -0.1946, -0.3118, 0.027, -0.2559, -0.3352, 0.027, -0.224, -0.3118, 0.027, -0.2559, -0.4114, 0.0418, -0.2749, -0.4114, 0.0418, -0.2749, -0.3118, 0.027, -0.2559, -0.3826, 0.0418, -0.314, -0.4114, 0.0418, -0.2749, -0.3826, 0.0418, -0.314, -0.4827, 0.0597, -0.3225, -0.4827, 0.0597, -0.3225, -0.3826, 0.0418, -0.314, -0.4487, 0.0597, -0.3684, -0.4827, 0.0597, -0.3225, -0.4487, 0.0597, -0.3684, -0.5483, 0.0803, -0.3662, -0.5483, 0.0803, -0.3662, -0.4487, 0.0597, -0.3684, -0.5098, 0.0803, -0.4182, -0.5483, 0.0803, -0.3662, -0.5098, 0.0803, -0.4182, -0.6074, 0.1036, -0.4058, -0.6074, 0.1036, -0.4058, -0.5098, 0.0803, -0.4182, -0.5645, 0.1036, -0.4634, -0.6074, 0.1036, -0.4058, -0.5645, 0.1036, -0.4634, -0.6592, 0.1295, -0.4407, -0.6592, 0.1295, -0.4407, -0.5645, 0.1036, -0.4634, -0.6128, 0.1295, -0.5029, -0.6592, 0.1295, -0.4407, -0.6128, 0.1295, -0.5029, -0.7041, 0.158, -0.4705, -0.7041, 0.158, -0.4705, -0.6128, 0.1295, -0.5029, -0.6543, 0.158, -0.5371, -0.7041, 0.158, -0.4705, -0.6543, 0.158, -0.5371, -0.7407, 0.1895, -0.4951, -0.7407, 0.1895, -0.4951, -0.6543, 0.158, -0.5371, -0.689, 0.1895, -0.5654, -0.7407, 0.1895, -0.4951, -0.689, 0.1895, -0.5654, -0.7695, 0.2247, -0.5142, -0.7695, 0.2247, -0.5142, -0.689, 0.1895, -0.5654, -0.7153, 0.2247, -0.5869, -0.7695, 0.2247, -0.5142, -0.7153, 0.2247, -0.5869, -0.7886, 0.2646, -0.5269, -0.7886, 0.2646, -0.5269, -0.7153, 0.2247, -0.5869, -0.7329, 0.2646, -0.6016, -0.7886, 0.2646, -0.5269, -0.7329, 0.2646, -0.6016, -0.7954, 0.3049, -0.5313, -0.7954, 0.3049, -0.5313, -0.7329, 0.2646, -0.6016, -0.7393, 0.3049, -0.6064, -0.9385, 0.3464, 0.1866, -0.938, 0.3049, 0.1865, -0.9521, 0.3464, 0.0938, -0.9521, 0.3464, 0.0938, -0.938, 0.3049, 0.1865, -0.9517, 0.3049, 0.0938, -0.7954, 0.3464, -0.5313, -0.7393, 0.3464, -0.6069, -0.7954, 0.3955, -0.5313, -0.7954, 0.3955, -0.5313, -0.7393, 0.3464, -0.6069, -0.7393, 0.3955, -0.6069, -0.0917, 0.0017, -0.049, 0, 0, 0, -0.0864, 0.0017, -0.0578, -0.0917, 0.0017, -0.049, -0.0864, 0.0017, -0.0578, -0.1823, 0.0068, -0.0974, -0.1823, 0.0068, -0.0974, -0.0864, 0.0017, -0.0578, -0.1718, 0.0068, -0.1148, -0.1823, 0.0068, -0.0974, -0.1718, 0.0068, -0.1148, -0.2705, 0.0153, -0.1447, -0.2705, 0.0153, -0.1447, -0.1718, 0.0068, -0.1148, -0.2551, 0.0153, -0.1704, -0.2705, 0.0153, -0.1447, -0.2551, 0.0153, -0.1704, -0.3557, 0.027, -0.1901, -0.3557, 0.027, -0.1901, -0.2551, 0.0153, -0.1704, -0.3352, 0.027, -0.224, -0.3557, 0.027, -0.1901, -0.3352, 0.027, -0.224, -0.4365, 0.0418, -0.2333, -0.4365, 0.0418, -0.2333, -0.3352, 0.027, -0.224, -0.4114, 0.0418, -0.2749, -0.4365, 0.0418, -0.2333, -0.4114, 0.0418, -0.2749, -0.5117, 0.0597, -0.2737, -0.5117, 0.0597, -0.2737, -0.4114, 0.0418, -0.2749, -0.4827, 0.0597, -0.3225, -0.5117, 0.0597, -0.2737, -0.4827, 0.0597, -0.3225, -0.5815, 0.0803, -0.3108, -0.5815, 0.0803, -0.3108, -0.4827, 0.0597, -0.3225, -0.5483, 0.0803, -0.3662, -0.5815, 0.0803, -0.3108, -0.5483, 0.0803, -0.3662, -0.644, 0.1036, -0.3442, -0.644, 0.1036, -0.3442, -0.5483, 0.0803, -0.3662, -0.6074, 0.1036, -0.4058, -0.644, 0.1036, -0.3442, -0.6074, 0.1036, -0.4058, -0.6992, 0.1295, -0.3738, -0.6992, 0.1295, -0.3738, -0.6074, 0.1036, -0.4058, -0.6592, 0.1295, -0.4407, -0.6992, 0.1295, -0.3738, -0.6592, 0.1295, -0.4407, -0.7466, 0.158, -0.3992, -0.7466, 0.158, -0.3992, -0.6592, 0.1295, -0.4407, -0.7041, 0.158, -0.4705, -0.7466, 0.158, -0.3992, -0.7041, 0.158, -0.4705, -0.7856, 0.1895, -0.4202, -0.7856, 0.1895, -0.4202, -0.7041, 0.158, -0.4705, -0.7407, 0.1895, -0.4951, -0.7856, 0.1895, -0.4202, -0.7407, 0.1895, -0.4951, -0.8164, 0.2247, -0.4363, -0.8164, 0.2247, -0.4363, -0.7407, 0.1895, -0.4951, -0.7695, 0.2247, -0.5142, -0.8164, 0.2247, -0.4363, -0.7695, 0.2247, -0.5142, -0.8364, 0.2646, -0.447, -0.8364, 0.2646, -0.447, -0.7695, 0.2247, -0.5142, -0.7886, 0.2646, -0.5269, -0.8364, 0.2646, -0.447, -0.7886, 0.2646, -0.5269, -0.8433, 0.3049, -0.4509, -0.8433, 0.3049, -0.4509, -0.7886, 0.2646, -0.5269, -0.7954, 0.3049, -0.5313, -0.8438, 0.3464, -0.4509, -0.7954, 0.3464, -0.5313, -0.8438, 0.3955, -0.4509, -0.8438, 0.3955, -0.4509, -0.7954, 0.3464, -0.5313, -0.7954, 0.3955, -0.5313, -0.096, 0.0017, -0.0398, 0, 0, 0, -0.0917, 0.0017, -0.049, -0.096, 0.0017, -0.0398, -0.0917, 0.0017, -0.049, -0.1909, 0.0068, -0.079, -0.1909, 0.0068, -0.079, -0.0917, 0.0017, -0.049, -0.1823, 0.0068, -0.0974, -0.1909, 0.0068, -0.079, -0.1823, 0.0068, -0.0974, -0.2834, 0.0153, -0.1174, -0.2834, 0.0153, -0.1174, -0.1823, 0.0068, -0.0974, -0.2705, 0.0153, -0.1447, -0.2834, 0.0153, -0.1174, -0.2705, 0.0153, -0.1447, -0.3726, 0.027, -0.1543, -0.3726, 0.027, -0.1543, -0.2705, 0.0153, -0.1447, -0.3557, 0.027, -0.1901, -0.3726, 0.027, -0.1543, -0.3557, 0.027, -0.1901, -0.4573, 0.0418, -0.1893, -0.4573, 0.0418, -0.1893, -0.3557, 0.027, -0.1901, -0.4365, 0.0418, -0.2333, -0.4573, 0.0418, -0.1893, -0.4365, 0.0418, -0.2333, -0.5361, 0.0597, -0.2222, -0.5361, 0.0597, -0.2222, -0.4365, 0.0418, -0.2333, -0.5117, 0.0597, -0.2737, -0.5361, 0.0597, -0.2222, -0.5117, 0.0597, -0.2737, -0.6089, 0.0803, -0.2522, -0.6089, 0.0803, -0.2522, -0.5117, 0.0597, -0.2737, -0.5815, 0.0803, -0.3108, -0.6089, 0.0803, -0.2522, -0.5815, 0.0803, -0.3108, -0.6748, 0.1036, -0.2795, -0.6748, 0.1036, -0.2795, -0.5815, 0.0803, -0.3108, -0.644, 0.1036, -0.3442, -0.6748, 0.1036, -0.2795, -0.644, 0.1036, -0.3442, -0.7329, 0.1295, -0.3035, -0.7329, 0.1295, -0.3035, -0.644, 0.1036, -0.3442, -0.6992, 0.1295, -0.3738, -0.7329, 0.1295, -0.3035, -0.6992, 0.1295, -0.3738, -0.7822, 0.158, -0.324, -0.7822, 0.158, -0.324, -0.6992, 0.1295, -0.3738, -0.7466, 0.158, -0.3992, -0.7822, 0.158, -0.324, -0.7466, 0.158, -0.3992, -0.8232, 0.1895, -0.3411, -0.8232, 0.1895, -0.3411, -0.7466, 0.158, -0.3992, -0.7856, 0.1895, -0.4202, -0.8232, 0.1895, -0.3411, -0.7856, 0.1895, -0.4202, -0.855, 0.2247, -0.3542, -0.855, 0.2247, -0.3542, -0.7856, 0.1895, -0.4202, -0.8164, 0.2247, -0.4363, -0.855, 0.2247, -0.3542, -0.8164, 0.2247, -0.4363, -0.876, 0.2646, -0.3628, -0.876, 0.2646, -0.3628, -0.8164, 0.2247, -0.4363, -0.8364, 0.2646, -0.447, -0.876, 0.2646, -0.3628, -0.8364, 0.2646, -0.447, -0.8838, 0.3049, -0.366, -0.8838, 0.3049, -0.366, -0.8364, 0.2646, -0.447, -0.8433, 0.3049, -0.4509, -0.7954, 0.3049, 0.5313, -0.8433, 0.3049, 0.4509, -0.7954, 0.3464, 0.5313, -0.7954, 0.3464, 0.5313, -0.8433, 0.3049, 0.4509, -0.8438, 0.3464, 0.4509, -0.8838, 0.3464, -0.366, -0.8438, 0.3464, -0.4509, -0.8838, 0.3955, -0.366, -0.8838, 0.3955, -0.366, -0.8438, 0.3464, -0.4509, -0.8438, 0.3955, -0.4509, -0.0995, 0.0017, -0.0302, 0, 0, 0, -0.096, 0.0017, -0.0398, -0.0995, 0.0017, -0.0302, -0.096, 0.0017, -0.0398, -0.1978, 0.0068, -0.06, -0.1978, 0.0068, -0.06, -0.096, 0.0017, -0.0398, -0.1909, 0.0068, -0.079, -0.1978, 0.0068, -0.06, -0.1909, 0.0068, -0.079, -0.2935, 0.0153, -0.0891, -0.2935, 0.0153, -0.0891, -0.1909, 0.0068, -0.079, -0.2834, 0.0153, -0.1174, -0.2935, 0.0153, -0.0891, -0.2834, 0.0153, -0.1174, -0.386, 0.027, -0.1171, -0.386, 0.027, -0.1171, -0.2834, 0.0153, -0.1174, -0.3726, 0.027, -0.1543, -0.386, 0.027, -0.1171, -0.3726, 0.027, -0.1543, -0.4736, 0.0418, -0.1437, -0.4736, 0.0418, -0.1437, -0.3726, 0.027, -0.1543, -0.4573, 0.0418, -0.1893, -0.4736, 0.0418, -0.1437, -0.4573, 0.0418, -0.1893, -0.5557, 0.0597, -0.1686, -0.5557, 0.0597, -0.1686, -0.4573, 0.0418, -0.1893, -0.5361, 0.0597, -0.2222, -0.5557, 0.0597, -0.1686, -0.5361, 0.0597, -0.2222, -0.6309, 0.0803, -0.1914, -0.6309, 0.0803, -0.1914, -0.5361, 0.0597, -0.2222, -0.6089, 0.0803, -0.2522, -0.6309, 0.0803, -0.1914, -0.6089, 0.0803, -0.2522, -0.6987, 0.1036, -0.212, -0.6987, 0.1036, -0.212, -0.6089, 0.0803, -0.2522, -0.6748, 0.1036, -0.2795, -0.6987, 0.1036, -0.212, -0.6748, 0.1036, -0.2795, -0.7588, 0.1295, -0.2302, -0.7588, 0.1295, -0.2302, -0.6748, 0.1036, -0.2795, -0.7329, 0.1295, -0.3035, -0.7588, 0.1295, -0.2302, -0.7329, 0.1295, -0.3035, -0.8101, 0.158, -0.2458, -0.8101, 0.158, -0.2458, -0.7329, 0.1295, -0.3035, -0.7822, 0.158, -0.324, -0.8101, 0.158, -0.2458, -0.7822, 0.158, -0.324, -0.8525, 0.1895, -0.2585, -0.8525, 0.1895, -0.2585, -0.7822, 0.158, -0.324, -0.8232, 0.1895, -0.3411, -0.8525, 0.1895, -0.2585, -0.8232, 0.1895, -0.3411, -0.8857, 0.2247, -0.2686, -0.8857, 0.2247, -0.2686, -0.8232, 0.1895, -0.3411, -0.855, 0.2247, -0.3542, -0.8857, 0.2247, -0.2686, -0.855, 0.2247, -0.3542, -0.9077, 0.2646, -0.2751, -0.9077, 0.2646, -0.2751, -0.855, 0.2247, -0.3542, -0.876, 0.2646, -0.3628, -0.9077, 0.2646, -0.2751, -0.876, 0.2646, -0.3628, -0.915, 0.3049, -0.2776, -0.915, 0.3049, -0.2776, -0.876, 0.2646, -0.3628, -0.8838, 0.3049, -0.366, -0.9155, 0.3464, -0.2776, -0.8838, 0.3464, -0.366, -0.9155, 0.3955, -0.2776, -0.9155, 0.3955, -0.2776, -0.8838, 0.3464, -0.366, -0.8838, 0.3955, -0.366, -0.1019, 0.0017, -0.0203, 0, 0, 0, -0.0995, 0.0017, -0.0302, -0.1019, 0.0017, -0.0203, -0.0995, 0.0017, -0.0302, -0.2026, 0.0068, -0.0403, -0.2026, 0.0068, -0.0403, -0.0995, 0.0017, -0.0302, -0.1978, 0.0068, -0.06, -0.2026, 0.0068, -0.0403, -0.1978, 0.0068, -0.06, -0.3008, 0.0153, -0.0598, -0.3008, 0.0153, -0.0598, -0.1978, 0.0068, -0.06, -0.2935, 0.0153, -0.0891, -0.3008, 0.0153, -0.0598, -0.2935, 0.0153, -0.0891, -0.3955, 0.027, -0.0787, -0.3955, 0.027, -0.0787, -0.2935, 0.0153, -0.0891, -0.386, 0.027, -0.1171, -0.3955, 0.027, -0.0787, -0.386, 0.027, -0.1171, -0.4854, 0.0418, -0.0966, -0.4854, 0.0418, -0.0966, -0.386, 0.027, -0.1171, -0.4736, 0.0418, -0.1437, -0.4854, 0.0418, -0.0966, -0.4736, 0.0418, -0.1437, -0.5693, 0.0597, -0.1133, -0.5693, 0.0597, -0.1133, -0.4736, 0.0418, -0.1437, -0.5557, 0.0597, -0.1686, -0.5693, 0.0597, -0.1133, -0.5557, 0.0597, -0.1686, -0.6465, 0.0803, -0.1287, -0.6465, 0.0803, -0.1287, -0.5557, 0.0597, -0.1686, -0.6309, 0.0803, -0.1914, -0.6465, 0.0803, -0.1287, -0.6309, 0.0803, -0.1914, -0.7163, 0.1036, -0.1425, -0.7163, 0.1036, -0.1425, -0.6309, 0.0803, -0.1914, -0.6987, 0.1036, -0.212, -0.7163, 0.1036, -0.1425, -0.6987, 0.1036, -0.212, -0.7778, 0.1295, -0.1547, -0.7778, 0.1295, -0.1547, -0.6987, 0.1036, -0.212, -0.7588, 0.1295, -0.2302, -0.7778, 0.1295, -0.1547, -0.7588, 0.1295, -0.2302, -0.8306, 0.158, -0.1652, -0.8306, 0.158, -0.1652, -0.7588, 0.1295, -0.2302, -0.8101, 0.158, -0.2458, -0.8306, 0.158, -0.1652, -0.8101, 0.158, -0.2458, -0.874, 0.1895, -0.1738, -0.874, 0.1895, -0.1738, -0.8101, 0.158, -0.2458, -0.8525, 0.1895, -0.2585, -0.874, 0.1895, -0.1738, -0.8525, 0.1895, -0.2585, -0.9077, 0.2247, -0.1805, -0.9077, 0.2247, -0.1805, -0.8525, 0.1895, -0.2585, -0.8857, 0.2247, -0.2686, -0.9077, 0.2247, -0.1805, -0.8857, 0.2247, -0.2686, -0.9302, 0.2646, -0.1851, -0.9302, 0.2646, -0.1851, -0.8857, 0.2247, -0.2686, -0.9077, 0.2646, -0.2751, -0.9302, 0.2646, -0.1851, -0.9077, 0.2646, -0.2751, -0.938, 0.3049, -0.1865, -0.938, 0.3049, -0.1865, -0.9077, 0.2646, -0.2751, -0.915, 0.3049, -0.2776, -0.9385, 0.3464, -0.1866, -0.9155, 0.3464, -0.2776, -0.9385, 0.3955, -0.1866, -0.9385, 0.3955, -0.1866, -0.9155, 0.3464, -0.2776, -0.9155, 0.3955, -0.2776, -0.1035, 0.0017, -0.0102, 0, 0, 0, -0.1019, 0.0017, -0.0203, -0.1035, 0.0017, -0.0102, -0.1019, 0.0017, -0.0203, -0.2057, 0.0068, -0.0202, -0.2057, 0.0068, -0.0202, -0.1019, 0.0017, -0.0203, -0.2026, 0.0068, -0.0403, -0.2057, 0.0068, -0.0202, -0.2026, 0.0068, -0.0403, -0.3052, 0.0153, -0.0301, -0.3052, 0.0153, -0.0301, -0.2026, 0.0068, -0.0403, -0.3008, 0.0153, -0.0598, -0.3052, 0.0153, -0.0301, -0.3008, 0.0153, -0.0598, -0.4014, 0.027, -0.0395, -0.4014, 0.027, -0.0395, -0.3008, 0.0153, -0.0598, -0.3955, 0.027, -0.0787, -0.4014, 0.027, -0.0395, -0.3955, 0.027, -0.0787, -0.4924, 0.0418, -0.0485, -0.4924, 0.0418, -0.0485, -0.3955, 0.027, -0.0787, -0.4854, 0.0418, -0.0966, -0.4924, 0.0418, -0.0485, -0.4854, 0.0418, -0.0966, -0.5776, 0.0597, -0.0569, -0.5776, 0.0597, -0.0569, -0.4854, 0.0418, -0.0966, -0.5693, 0.0597, -0.1133, -0.5776, 0.0597, -0.0569, -0.5693, 0.0597, -0.1133, -0.6563, 0.0803, -0.0646, -0.6563, 0.0803, -0.0646, -0.5693, 0.0597, -0.1133, -0.6465, 0.0803, -0.1287, -0.6563, 0.0803, -0.0646, -0.6465, 0.0803, -0.1287, -0.7271, 0.1036, -0.0716, -0.7271, 0.1036, -0.0716, -0.6465, 0.0803, -0.1287, -0.7163, 0.1036, -0.1425, -0.7271, 0.1036, -0.0716, -0.7163, 0.1036, -0.1425, -0.7891, 0.1295, -0.0777, -0.7891, 0.1295, -0.0777, -0.7163, 0.1036, -0.1425, -0.7778, 0.1295, -0.1547, -0.7891, 0.1295, -0.0777, -0.7778, 0.1295, -0.1547, -0.8428, 0.158, -0.083, -0.8428, 0.158, -0.083, -0.7778, 0.1295, -0.1547, -0.8306, 0.158, -0.1652, -0.8428, 0.158, -0.083, -0.8306, 0.158, -0.1652, -0.8867, 0.1895, -0.0873, -0.8867, 0.1895, -0.0873, -0.8306, 0.158, -0.1652, -0.874, 0.1895, -0.1738, -0.8867, 0.1895, -0.0873, -0.874, 0.1895, -0.1738, -0.9209, 0.2247, -0.0907, -0.9209, 0.2247, -0.0907, -0.874, 0.1895, -0.1738, -0.9077, 0.2247, -0.1805, -0.9209, 0.2247, -0.0907, -0.9077, 0.2247, -0.1805, -0.9438, 0.2646, -0.093, -0.9438, 0.2646, -0.093, -0.9077, 0.2247, -0.1805, -0.9302, 0.2646, -0.1851, -0.9438, 0.2646, -0.093, -0.9302, 0.2646, -0.1851, -0.9517, 0.3049, -0.0938, -0.9517, 0.3049, -0.0938, -0.9302, 0.2646, -0.1851, -0.938, 0.3049, -0.1865, -0.9521, 0.3464, -0.0938, -0.9385, 0.3464, -0.1866, -0.9521, 0.3955, -0.0938, -0.9521, 0.3955, -0.0938, -0.9385, 0.3464, -0.1866, -0.9385, 0.3955, -0.1866, -0.1039, 0.0017, 0, 0, 0, 0, -0.1035, 0.0017, -0.0102, -0.1039, 0.0017, 0, -0.1035, 0.0017, -0.0102, -0.2067, 0.0068, 0, -0.2067, 0.0068, 0, -0.1035, 0.0017, -0.0102, -0.2057, 0.0068, -0.0202, -0.2067, 0.0068, 0, -0.2057, 0.0068, -0.0202, -0.3069, 0.0153, 0, -0.3069, 0.0153, 0, -0.2057, 0.0068, -0.0202, -0.3052, 0.0153, -0.0301, -0.3069, 0.0153, 0, -0.3052, 0.0153, -0.0301, -0.4033, 0.027, 0, -0.4033, 0.027, 0, -0.3052, 0.0153, -0.0301, -0.4014, 0.027, -0.0395, -0.4033, 0.027, 0, -0.4014, 0.027, -0.0395, -0.4949, 0.0418, 0, -0.4949, 0.0418, 0, -0.4014, 0.027, -0.0395, -0.4924, 0.0418, -0.0485, -0.4949, 0.0418, 0, -0.4924, 0.0418, -0.0485, -0.5806, 0.0597, 0, -0.5806, 0.0597, 0, -0.4924, 0.0418, -0.0485, -0.5776, 0.0597, -0.0569, -0.5806, 0.0597, 0, -0.5776, 0.0597, -0.0569, -0.6592, 0.0803, 0, -0.6592, 0.0803, 0, -0.5776, 0.0597, -0.0569, -0.6563, 0.0803, -0.0646, -0.6592, 0.0803, 0, -0.6563, 0.0803, -0.0646, -0.7305, 0.1036, 0, -0.7305, 0.1036, 0, -0.6563, 0.0803, -0.0646, -0.7271, 0.1036, -0.0716, -0.7305, 0.1036, 0, -0.7271, 0.1036, -0.0716, -0.793, 0.1295, 0, -0.793, 0.1295, 0, -0.7271, 0.1036, -0.0716, -0.7891, 0.1295, -0.0777, -0.793, 0.1295, 0, -0.7891, 0.1295, -0.0777, -0.8467, 0.158, 0, -0.8467, 0.158, 0, -0.7891, 0.1295, -0.0777, -0.8428, 0.158, -0.083, -0.8467, 0.158, 0, -0.8428, 0.158, -0.083, -0.8911, 0.1895, 0, -0.8911, 0.1895, 0, -0.8428, 0.158, -0.083, -0.8867, 0.1895, -0.0873, -0.8911, 0.1895, 0, -0.8867, 0.1895, -0.0873, -0.9253, 0.2247, 0, -0.9253, 0.2247, 0, -0.8867, 0.1895, -0.0873, -0.9209, 0.2247, -0.0907, -0.9253, 0.2247, 0, -0.9209, 0.2247, -0.0907, -0.9482, 0.2646, 0, -0.9482, 0.2646, 0, -0.9209, 0.2247, -0.0907, -0.9438, 0.2646, -0.093, -0.9482, 0.2646, 0, -0.9438, 0.2646, -0.093, -0.9565, 0.3049, 0, -0.9565, 0.3049, 0, -0.9438, 0.2646, -0.093, -0.9517, 0.3049, -0.0938, -0.9565, 0.3464, 0, -0.9521, 0.3464, -0.0938, -0.9565, 0.3955, 0, -0.9565, 0.3955, 0, -0.9521, 0.3464, -0.0938, -0.9521, 0.3955, -0.0938, -0.1866, 0.3464, -0.9385, -0.1865, 0.3049, -0.938, -0.0938, 0.3464, -0.9521, -0.0938, 0.3464, -0.9521, -0.1865, 0.3049, -0.938, -0.0938, 0.3049, -0.9517, 0.8838, 0.3955, -0.366, 0.9155, 0.3955, -0.2776, 0.8838, 0.4724, -0.366, 0.8838, 0.4724, -0.366, 0.9155, 0.3955, -0.2776, 0.9155, 0.4724, -0.2776, 0.1844, 0.4036, 0.9307, 0.1835, 0.4724, 0.9307, 0.1671, 0.4036, 0.833, 0.1671, 0.4036, 0.833, 0.1835, 0.4724, 0.9307, 0.1689, 0.4724, 0.8325, -0.6069, 0.3955, 0.7393, -0.6763, 0.3955, 0.6763, -0.6069, 0.4724, 0.7393, -0.6069, 0.4724, 0.7393, -0.6763, 0.3955, 0.6763, -0.6763, 0.4724, 0.6763, -0.1866, 0.3955, -0.9385, -0.0938, 0.3955, -0.9521, -0.1866, 0.4724, -0.9385, -0.1866, 0.4724, -0.9385, -0.0938, 0.3955, -0.9521, -0.0938, 0.4724, -0.9521, 0.6763, 0.3955, 0.6763, 0.6069, 0.3955, 0.7393, 0.6763, 0.4724, 0.6763, 0.6763, 0.4724, 0.6763, 0.6069, 0.3955, 0.7393, 0.6069, 0.4724, 0.7393, -0.8438, 0.3955, 0.4509, -0.8838, 0.3955, 0.366, -0.8438, 0.4724, 0.4509, -0.8438, 0.4724, 0.4509, -0.8838, 0.3955, 0.366, -0.8838, 0.4724, 0.366, -0.7954, 0.3955, -0.5313, -0.7393, 0.3955, -0.6069, -0.7954, 0.4724, -0.5313, -0.7954, 0.4724, -0.5313, -0.7393, 0.3955, -0.6069, -0.7393, 0.4724, -0.6069, -0.5273, 0.4036, 0.7886, -0.5283, 0.4724, 0.7881, -0.4709, 0.4036, 0.707, -0.4709, 0.4036, 0.707, -0.5283, 0.4724, 0.7881, -0.4692, 0.4724, 0.7085, -0.7954, 0.3955, 0.5313, -0.8438, 0.3955, 0.4509, -0.7954, 0.4724, 0.5313, -0.7954, 0.4724, 0.5313, -0.8438, 0.3955, 0.4509, -0.8438, 0.4724, 0.4509, 0.7954, 0.3955, -0.5313, 0.8438, 0.3955, -0.4509, 0.7954, 0.4724, -0.5313, 0.7954, 0.4724, -0.5313, 0.8438, 0.3955, -0.4509, 0.8438, 0.4724, -0.4509, -0.366, 0.3955, -0.8838, -0.2776, 0.3955, -0.9155, -0.366, 0.4724, -0.8838, -0.366, 0.4724, -0.8838, -0.2776, 0.3955, -0.9155, -0.2776, 0.4724, -0.9155, 0.6069, 0.3955, -0.7393, 0.6763, 0.3955, -0.6763, 0.6069, 0.4724, -0.7393, 0.6069, 0.4724, -0.7393, 0.6763, 0.3955, -0.6763, 0.6763, 0.4724, -0.6763, 0.9155, 0.3955, -0.2776, 0.9385, 0.3955, -0.1866, 0.9155, 0.4724, -0.2776, 0.9155, 0.4724, -0.2776, 0.9385, 0.3955, -0.1866, 0.9385, 0.4724, -0.1866, 0.9385, 0.3955, -0.1866, 0.9521, 0.3955, -0.0938, 0.9385, 0.4724, -0.1866, 0.9385, 0.4724, -0.1866, 0.9521, 0.3955, -0.0938, 0.9521, 0.4724, -0.0938, 0.9385, 0.3955, 0.1866, 0.9155, 0.3955, 0.2776, 0.9385, 0.4724, 0.1866, 0.9385, 0.4724, 0.1866, 0.9155, 0.3955, 0.2776, 0.9155, 0.4724, 0.2776, 0.366, 0.3955, -0.8838, 0.4509, 0.3955, -0.8438, 0.366, 0.4724, -0.8838, 0.366, 0.4724, -0.8838, 0.4509, 0.3955, -0.8438, 0.4509, 0.4724, -0.8438, 0.9565, 0.3955, 0, 0.9521, 0.3955, 0.0938, 0.9565, 0.4724, 0, 0.9565, 0.4724, 0, 0.9521, 0.3955, 0.0938, 0.9521, 0.4724, 0.0938, -0.1835, 0.4724, 0.9307, -0.1844, 0.4036, 0.9307, -0.1689, 0.4724, 0.8325, -0.1689, 0.4724, 0.8325, -0.1844, 0.4036, 0.9307, -0.1671, 0.4036, 0.833, 0.9521, 0.3955, -0.0938, 0.9565, 0.3955, 0, 0.9521, 0.4724, -0.0938, 0.9521, 0.4724, -0.0938, 0.9565, 0.3955, 0, 0.9565, 0.4724, 0, -0.6069, 0.3955, -0.7393, -0.5313, 0.3955, -0.7954, -0.6069, 0.4724, -0.7393, -0.6069, 0.4724, -0.7393, -0.5313, 0.3955, -0.7954, -0.5313, 0.4724, -0.7954, -0.8438, 0.3955, -0.4509, -0.7954, 0.3955, -0.5313, -0.8438, 0.4724, -0.4509, -0.8438, 0.4724, -0.4509, -0.7954, 0.3955, -0.5313, -0.7954, 0.4724, -0.5313, -0.9385, 0.3955, -0.1866, -0.9155, 0.3955, -0.2776, -0.9385, 0.4724, -0.1866, -0.9385, 0.4724, -0.1866, -0.9155, 0.3955, -0.2776, -0.9155, 0.4724, -0.2776, -0.7393, 0.3955, -0.6069, -0.6763, 0.3955, -0.6763, -0.7393, 0.4724, -0.6069, -0.7393, 0.4724, -0.6069, -0.6763, 0.3955, -0.6763, -0.6763, 0.4724, -0.6763, 0.7393, 0.3955, 0.6069, 0.6763, 0.3955, 0.6763, 0.7393, 0.4724, 0.6069, 0.7393, 0.4724, 0.6069, 0.6763, 0.3955, 0.6763, 0.6763, 0.4724, 0.6763, -0.6763, 0.3955, -0.6763, -0.6069, 0.3955, -0.7393, -0.6763, 0.4724, -0.6763, -0.6763, 0.4724, -0.6763, -0.6069, 0.3955, -0.7393, -0.6069, 0.4724, -0.7393, -0.9521, 0.3955, 0.0938, -0.9565, 0.3955, 0, -0.9521, 0.4724, 0.0938, -0.9521, 0.4724, 0.0938, -0.9565, 0.3955, 0, -0.9565, 0.4724, 0, 0.2776, 0.3955, -0.9155, 0.366, 0.3955, -0.8838, 0.2776, 0.4724, -0.9155, 0.2776, 0.4724, -0.9155, 0.366, 0.3955, -0.8838, 0.366, 0.4724, -0.8838, -0.7393, 0.3955, 0.6069, -0.7954, 0.3955, 0.5313, -0.7393, 0.4724, 0.6069, -0.7393, 0.4724, 0.6069, -0.7954, 0.3955, 0.5313, -0.7954, 0.4724, 0.5313, 0.0938, 0.3955, -0.9521, 0.1866, 0.3955, -0.9385, 0.0938, 0.4724, -0.9521, 0.0938, 0.4724, -0.9521, 0.1866, 0.3955, -0.9385, 0.1866, 0.4724, -0.9385, 0.0938, 0.3955, 0.9521, 0, 0.3955, 0.9565, 0.0938, 0.4724, 0.9521, 0.0938, 0.4724, 0.9521, 0, 0.3955, 0.9565, 0, 0.4724, 0.9565, -0.9565, 0.3955, 0, -0.9521, 0.3955, -0.0938, -0.9565, 0.4724, 0, -0.9565, 0.4724, 0, -0.9521, 0.3955, -0.0938, -0.9521, 0.4724, -0.0938, 0.9521, 0.3955, 0.0938, 0.9385, 0.3955, 0.1866, 0.9521, 0.4724, 0.0938, 0.9521, 0.4724, 0.0938, 0.9385, 0.3955, 0.1866, 0.9385, 0.4724, 0.1866, 0.8438, 0.3955, -0.4509, 0.8838, 0.3955, -0.366, 0.8438, 0.4724, -0.4509, 0.8438, 0.4724, -0.4509, 0.8838, 0.3955, -0.366, 0.8838, 0.4724, -0.366, -0.9521, 0.3955, -0.0938, -0.9385, 0.3955, -0.1866, -0.9521, 0.4724, -0.0938, -0.9521, 0.4724, -0.0938, -0.9385, 0.3955, -0.1866, -0.9385, 0.4724, -0.1866, -0.5313, 0.3955, -0.7954, -0.4509, 0.3955, -0.8438, -0.5313, 0.4724, -0.7954, -0.5313, 0.4724, -0.7954, -0.4509, 0.3955, -0.8438, -0.4509, 0.4724, -0.8438, 0.7393, 0.3955, -0.6069, 0.7954, 0.3955, -0.5313, 0.7393, 0.4724, -0.6069, 0.7393, 0.4724, -0.6069, 0.7954, 0.3955, -0.5313, 0.7954, 0.4724, -0.5313, -0.2776, 0.3955, -0.9155, -0.1866, 0.3955, -0.9385, -0.2776, 0.4724, -0.9155, -0.2776, 0.4724, -0.9155, -0.1866, 0.3955, -0.9385, -0.1866, 0.4724, -0.9385, 0, 0.3955, -0.9565, 0.0938, 0.3955, -0.9521, 0, 0.4724, -0.9565, 0, 0.4724, -0.9565, 0.0938, 0.3955, -0.9521, 0.0938, 0.4724, -0.9521, -0.8838, 0.3955, 0.366, -0.9155, 0.3955, 0.2776, -0.8838, 0.4724, 0.366, -0.8838, 0.4724, 0.366, -0.9155, 0.3955, 0.2776, -0.9155, 0.4724, 0.2776, 0.5313, 0.3955, -0.7954, 0.6069, 0.3955, -0.7393, 0.5313, 0.4724, -0.7954, 0.5313, 0.4724, -0.7954, 0.6069, 0.3955, -0.7393, 0.6069, 0.4724, -0.7393, -0.9155, 0.3955, -0.2776, -0.8838, 0.3955, -0.366, -0.9155, 0.4724, -0.2776, -0.9155, 0.4724, -0.2776, -0.8838, 0.3955, -0.366, -0.8838, 0.4724, -0.366, 0, 0.3955, 0.9565, -0.0938, 0.3955, 0.9521, 0, 0.4724, 0.9565, 0, 0.4724, 0.9565, -0.0938, 0.3955, 0.9521, -0.0938, 0.4724, 0.9521, -0.6763, 0.3955, 0.6763, -0.7393, 0.3955, 0.6069, -0.6763, 0.4724, 0.6763, -0.6763, 0.4724, 0.6763, -0.7393, 0.3955, 0.6069, -0.7393, 0.4724, 0.6069, 0.6763, 0.3955, -0.6763, 0.7393, 0.3955, -0.6069, 0.6763, 0.4724, -0.6763, 0.6763, 0.4724, -0.6763, 0.7393, 0.3955, -0.6069, 0.7393, 0.4724, -0.6069, -0.8838, 0.3955, -0.366, -0.8438, 0.3955, -0.4509, -0.8838, 0.4724, -0.366, -0.8838, 0.4724, -0.366, -0.8438, 0.3955, -0.4509, -0.8438, 0.4724, -0.4509, 0.8838, 0.3955, 0.366, 0.8438, 0.3955, 0.4509, 0.8838, 0.4724, 0.366, 0.8838, 0.4724, 0.366, 0.8438, 0.3955, 0.4509, 0.8438, 0.4724, 0.4509, 0.7954, 0.3955, 0.5313, 0.7393, 0.3955, 0.6069, 0.7954, 0.4724, 0.5313, 0.7954, 0.4724, 0.5313, 0.7393, 0.3955, 0.6069, 0.7393, 0.4724, 0.6069, -0.9385, 0.3955, 0.1866, -0.9521, 0.3955, 0.0938, -0.9385, 0.4724, 0.1866, -0.9385, 0.4724, 0.1866, -0.9521, 0.3955, 0.0938, -0.9521, 0.4724, 0.0938, 0.4509, 0.3955, -0.8438, 0.5313, 0.3955, -0.7954, 0.4509, 0.4724, -0.8438, 0.4509, 0.4724, -0.8438, 0.5313, 0.3955, -0.7954, 0.5313, 0.4724, -0.7954, -0.9155, 0.3955, 0.2776, -0.9385, 0.3955, 0.1866, -0.9155, 0.4724, 0.2776, -0.9155, 0.4724, 0.2776, -0.9385, 0.3955, 0.1866, -0.9385, 0.4724, 0.1866, -0.0938, 0.3955, -0.9521, 0, 0.3955, -0.9565, -0.0938, 0.4724, -0.9521, -0.0938, 0.4724, -0.9521, 0, 0.3955, -0.9565, 0, 0.4724, -0.9565, 0.5381, 0.3877, 0.7905, 0.5313, 0.3464, 0.7954, 0.4509, 0.3877, 0.8438, 0.4509, 0.3877, 0.8438, 0.5313, 0.3464, 0.7954, 0.4509, 0.3464, 0.8438, 0.8438, 0.3955, 0.4509, 0.7954, 0.3955, 0.5313, 0.8438, 0.4724, 0.4509, 0.8438, 0.4724, 0.4509, 0.7954, 0.3955, 0.5313, 0.7954, 0.4724, 0.5313, 0.9155, 0.3955, 0.2776, 0.8838, 0.3955, 0.366, 0.9155, 0.4724, 0.2776, 0.9155, 0.4724, 0.2776, 0.8838, 0.3955, 0.366, 0.8838, 0.4724, 0.366, -0.4509, 0.3955, -0.8438, -0.366, 0.3955, -0.8838, -0.4509, 0.4724, -0.8438, -0.4509, 0.4724, -0.8438, -0.366, 0.3955, -0.8838, -0.366, 0.4724, -0.8838, 0.1866, 0.3955, -0.9385, 0.2776, 0.3955, -0.9155, 0.1866, 0.4724, -0.9385, 0.1866, 0.4724, -0.9385, 0.2776, 0.3955, -0.9155, 0.2776, 0.4724, -0.9155, -0.7334, 0.5498, -0.6016, -0.6709, 0.5498, -0.6709, -0.6567, 0.5498, -0.5391, -0.6567, 0.5498, -0.5391, -0.6709, 0.5498, -0.6709, -0.6006, 0.5498, -0.6006, -0.9077, 0.5498, 0.2754, -0.9307, 0.5498, 0.1851, -0.813, 0.5498, 0.2466, -0.813, 0.5498, 0.2466, -0.9307, 0.5498, 0.1851, -0.8335, 0.5498, 0.1658, 0.093, 0.5498, 0.9443, 0, 0.5498, 0.9487, 0.0833, 0.5498, 0.8457, 0.0833, 0.5498, 0.8457, 0, 0.5498, 0.9487, 0, 0.5498, 0.8496, -0.1851, 0.5498, -0.9307, -0.093, 0.5498, -0.9443, -0.1658, 0.5498, -0.8335, -0.1658, 0.5498, -0.8335, -0.093, 0.5498, -0.9443, -0.0833, 0.5498, -0.8457, 0.8369, 0.5498, -0.4473, 0.8765, 0.5498, -0.363, 0.749, 0.5498, -0.4004, 0.749, 0.5498, -0.4004, 0.8765, 0.5498, -0.363, 0.7847, 0.5498, -0.3252, 0.5269, 0.5498, -0.7886, 0.6016, 0.5498, -0.7334, 0.4719, 0.5498, -0.7065, 0.4719, 0.5498, -0.7065, 0.6016, 0.5498, -0.7334, 0.5391, 0.5498, -0.6567, 0.7886, 0.5498, -0.5269, 0.8369, 0.5498, -0.4473, 0.7065, 0.5498, -0.4719, 0.7065, 0.5498, -0.4719, 0.8369, 0.5498, -0.4473, 0.749, 0.5498, -0.4004, 0.7886, 0.5498, 0.5269, 0.7334, 0.5498, 0.6016, 0.7065, 0.5498, 0.4719, 0.7065, 0.5498, 0.4719, 0.7334, 0.5498, 0.6016, 0.6567, 0.5498, 0.5391, -0.7334, 0.5498, 0.6016, -0.7886, 0.5498, 0.5269, -0.6567, 0.5498, 0.5391, -0.6567, 0.5498, 0.5391, -0.7886, 0.5498, 0.5269, -0.7065, 0.5498, 0.4719, 0.9487, 0.5498, 0, 0.9443, 0.5498, 0.093, 0.8496, 0.5498, 0, 0.8496, 0.5498, 0, 0.9443, 0.5498, 0.093, 0.8457, 0.5498, 0.0833, 0.6709, 0.5498, -0.6709, 0.7334, 0.5498, -0.6016, 0.6006, 0.5498, -0.6006, 0.6006, 0.5498, -0.6006, 0.7334, 0.5498, -0.6016, 0.6567, 0.5498, -0.5391, -0.5283, 0.4724, 0.7881, -0.5283, 0.542, 0.7881, -0.4692, 0.4724, 0.7085, -0.4692, 0.4724, 0.7085, -0.5283, 0.542, 0.7881, -0.4692, 0.542, 0.7085, 0.9521, 0.4724, -0.0938, 0.9565, 0.4724, 0, 0.9521, 0.542, -0.0938, 0.9521, 0.542, -0.0938, 0.9565, 0.4724, 0, 0.9565, 0.542, 0, 0.9077, 0.5498, 0.2754, 0.8765, 0.5498, 0.363, 0.813, 0.5498, 0.2466, 0.813, 0.5498, 0.2466, 0.8765, 0.5498, 0.363, 0.7847, 0.5498, 0.3252, 0.9077, 0.5498, -0.2754, 0.9307, 0.5498, -0.1851, 0.813, 0.5498, -0.2466, 0.813, 0.5498, -0.2466, 0.9307, 0.5498, -0.1851, 0.8335, 0.5498, -0.1658, 0.2754, 0.5498, -0.9077, 0.363, 0.5498, -0.8765, 0.2466, 0.5498, -0.813, 0.2466, 0.5498, -0.813, 0.363, 0.5498, -0.8765, 0.3252, 0.5498, -0.7847, -0.093, 0.5498, -0.9443, 0, 0.5498, -0.9487, -0.0833, 0.5498, -0.8457, -0.0833, 0.5498, -0.8457, 0, 0.5498, -0.9487, 0, 0.5498, -0.8496, 0.363, 0.5498, -0.8765, 0.4473, 0.5498, -0.8369, 0.3252, 0.5498, -0.7847, 0.3252, 0.5498, -0.7847, 0.4473, 0.5498, -0.8369, 0.4004, 0.5498, -0.749, -0.9077, 0.5498, -0.2754, -0.8765, 0.5498, -0.363, -0.813, 0.5498, -0.2466, -0.813, 0.5498, -0.2466, -0.8765, 0.5498, -0.363, -0.7847, 0.5498, -0.3252, -0.6709, 0.5498, -0.6709, -0.6016, 0.5498, -0.7334, -0.6006, 0.5498, -0.6006, -0.6006, 0.5498, -0.6006, -0.6016, 0.5498, -0.7334, -0.5391, 0.5498, -0.6567, 0.4473, 0.5498, -0.8369, 0.5269, 0.5498, -0.7886, 0.4004, 0.5498, -0.749, 0.4004, 0.5498, -0.749, 0.5269, 0.5498, -0.7886, 0.4719, 0.5498, -0.7065, -0.8765, 0.5498, -0.363, -0.8369, 0.5498, -0.4473, -0.7847, 0.5498, -0.3252, -0.7847, 0.5498, -0.3252, -0.8369, 0.5498, -0.4473, -0.749, 0.5498, -0.4004, -0.6709, 0.5498, 0.6709, -0.7334, 0.5498, 0.6016, -0.6006, 0.5498, 0.6006, -0.6006, 0.5498, 0.6006, -0.7334, 0.5498, 0.6016, -0.6567, 0.5498, 0.5391, 0.9307, 0.5498, 0.1851, 0.9077, 0.5498, 0.2754, 0.8335, 0.5498, 0.1658, 0.8335, 0.5498, 0.1658, 0.9077, 0.5498, 0.2754, 0.813, 0.5498, 0.2466, -0.9443, 0.5498, 0.093, -0.9487, 0.5498, 0, -0.8457, 0.5498, 0.0833, -0.8457, 0.5498, 0.0833, -0.9487, 0.5498, 0, -0.8496, 0.5498, 0, -0.7886, 0.5498, -0.5269, -0.7334, 0.5498, -0.6016, -0.7065, 0.5498, -0.4719, -0.7065, 0.5498, -0.4719, -0.7334, 0.5498, -0.6016, -0.6567, 0.5498, -0.5391, 0.1851, 0.5498, -0.9307, 0.2754, 0.5498, -0.9077, 0.1658, 0.5498, -0.8335, 0.1658, 0.5498, -0.8335, 0.2754, 0.5498, -0.9077, 0.2466, 0.5498, -0.813, -0.9487, 0.5498, 0, -0.9443, 0.5498, -0.093, -0.8496, 0.5498, 0, -0.8496, 0.5498, 0, -0.9443, 0.5498, -0.093, -0.8457, 0.5498, -0.0833, -0.8369, 0.5498, 0.4473, -0.8765, 0.5498, 0.363, -0.749, 0.5498, 0.4004, -0.749, 0.5498, 0.4004, -0.8765, 0.5498, 0.363, -0.7847, 0.5498, 0.3252, 0, 0.5498, -0.9487, 0.093, 0.5498, -0.9443, 0, 0.5498, -0.8496, 0, 0.5498, -0.8496, 0.093, 0.5498, -0.9443, 0.0833, 0.5498, -0.8457, -0.9443, 0.5498, -0.093, -0.9307, 0.5498, -0.1851, -0.8457, 0.5498, -0.0833, -0.8457, 0.5498, -0.0833, -0.9307, 0.5498, -0.1851, -0.8335, 0.5498, -0.1658, -0.4473, 0.5498, -0.8369, -0.363, 0.5498, -0.8765, -0.4004, 0.5498, -0.749, -0.4004, 0.5498, -0.749, -0.363, 0.5498, -0.8765, -0.3252, 0.5498, -0.7847, 0.8765, 0.5498, -0.363, 0.9077, 0.5498, -0.2754, 0.7847, 0.5498, -0.3252, 0.7847, 0.5498, -0.3252, 0.9077, 0.5498, -0.2754, 0.813, 0.5498, -0.2466, -0.5269, 0.5498, -0.7886, -0.4473, 0.5498, -0.8369, -0.4719, 0.5498, -0.7065, -0.4719, 0.5498, -0.7065, -0.4473, 0.5498, -0.8369, -0.4004, 0.5498, -0.749, 0.7334, 0.5498, -0.6016, 0.7886, 0.5498, -0.5269, 0.6567, 0.5498, -0.5391, 0.6567, 0.5498, -0.5391, 0.7886, 0.5498, -0.5269, 0.7065, 0.5498, -0.4719, -0.6016, 0.5498, -0.7334, -0.5269, 0.5498, -0.7886, -0.5391, 0.5498, -0.6567, -0.5391, 0.5498, -0.6567, -0.5269, 0.5498, -0.7886, -0.4719, 0.5498, -0.7065, 0.6709, 0.5498, 0.6709, 0.6016, 0.5498, 0.7334, 0.6006, 0.5498, 0.6006, 0.6006, 0.5498, 0.6006, 0.6016, 0.5498, 0.7334, 0.5391, 0.5498, 0.6567, -0.8765, 0.5498, 0.363, -0.9077, 0.5498, 0.2754, -0.7847, 0.5498, 0.3252, -0.7847, 0.5498, 0.3252, -0.9077, 0.5498, 0.2754, -0.813, 0.5498, 0.2466, -0.363, 0.5498, -0.8765, -0.2754, 0.5498, -0.9077, -0.3252, 0.5498, -0.7847, -0.3252, 0.5498, -0.7847, -0.2754, 0.5498, -0.9077, -0.2466, 0.5498, -0.813, 0.8765, 0.5498, 0.363, 0.8369, 0.5498, 0.4473, 0.7847, 0.5498, 0.3252, 0.7847, 0.5498, 0.3252, 0.8369, 0.5498, 0.4473, 0.749, 0.5498, 0.4004, -0.2754, 0.5498, -0.9077, -0.1851, 0.5498, -0.9307, -0.2466, 0.5498, -0.813, -0.2466, 0.5498, -0.813, -0.1851, 0.5498, -0.9307, -0.1658, 0.5498, -0.8335, 0.9307, 0.5498, -0.1851, 0.9443, 0.5498, -0.093, 0.8335, 0.5498, -0.1658, 0.8335, 0.5498, -0.1658, 0.9443, 0.5498, -0.093, 0.8457, 0.5498, -0.0833, -0.9307, 0.5498, -0.1851, -0.9077, 0.5498, -0.2754, -0.8335, 0.5498, -0.1658, -0.8335, 0.5498, -0.1658, -0.9077, 0.5498, -0.2754, -0.813, 0.5498, -0.2466, 0.1835, 0.4724, 0.9307, 0.1835, 0.542, 0.9307, 0.1689, 0.4724, 0.8325, 0.1689, 0.4724, 0.8325, 0.1835, 0.542, 0.9307, 0.1689, 0.542, 0.8325, -0.8369, 0.5498, -0.4473, -0.7886, 0.5498, -0.5269, -0.749, 0.5498, -0.4004, -0.749, 0.5498, -0.4004, -0.7886, 0.5498, -0.5269, -0.7065, 0.5498, -0.4719, 0.7334, 0.5498, 0.6016, 0.6709, 0.5498, 0.6709, 0.6567, 0.5498, 0.5391, 0.6567, 0.5498, 0.5391, 0.6709, 0.5498, 0.6709, 0.6006, 0.5498, 0.6006, -0.5347, 0.5498, 0.7832, -0.6016, 0.5498, 0.7334, -0.4756, 0.5498, 0.7036, -0.4756, 0.5498, 0.7036, -0.6016, 0.5498, 0.7334, -0.5391, 0.5498, 0.6567, 0.6016, 0.5498, -0.7334, 0.6709, 0.5498, -0.6709, 0.5391, 0.5498, -0.6567, 0.5391, 0.5498, -0.6567, 0.6709, 0.5498, -0.6709, 0.6006, 0.5498, -0.6006, 0.9443, 0.5498, 0.093, 0.9307, 0.5498, 0.1851, 0.8457, 0.5498, 0.0833, 0.8457, 0.5498, 0.0833, 0.9307, 0.5498, 0.1851, 0.8335, 0.5498, 0.1658, -0.7886, 0.5498, 0.5269, -0.8369, 0.5498, 0.4473, -0.7065, 0.5498, 0.4719, -0.7065, 0.5498, 0.4719, -0.8369, 0.5498, 0.4473, -0.749, 0.5498, 0.4004, 0.093, 0.5498, -0.9443, 0.1851, 0.5498, -0.9307, 0.0833, 0.5498, -0.8457, 0.0833, 0.5498, -0.8457, 0.1851, 0.5498, -0.9307, 0.1658, 0.5498, -0.8335, -0.1835, 0.542, 0.9307, -0.1835, 0.4724, 0.9307, -0.1689, 0.542, 0.8325, -0.1689, 0.542, 0.8325, -0.1835, 0.4724, 0.9307, -0.1689, 0.4724, 0.8325, 0.8369, 0.5498, 0.4473, 0.7886, 0.5498, 0.5269, 0.749, 0.5498, 0.4004, 0.749, 0.5498, 0.4004, 0.7886, 0.5498, 0.5269, 0.7065, 0.5498, 0.4719, -0.6016, 0.5498, 0.7334, -0.6709, 0.5498, 0.6709, -0.5391, 0.5498, 0.6567, -0.5391, 0.5498, 0.6567, -0.6709, 0.5498, 0.6709, -0.6006, 0.5498, 0.6006, 0.5283, 0.542, 0.7881, 0.5283, 0.4724, 0.7881, 0.4692, 0.542, 0.7085, 0.4692, 0.542, 0.7085, 0.5283, 0.4724, 0.7881, 0.4692, 0.4724, 0.7085, 0.366, 0.3877, 0.8838, 0.366, 0.3464, 0.8838, 0.2776, 0.3877, 0.9155, 0.2776, 0.3877, 0.9155, 0.366, 0.3464, 0.8838, 0.2776, 0.3464, 0.9155, 0.2776, 0.3877, 0.9155, 0.2776, 0.3464, 0.9155, 0.1783, 0.3877, 0.9395, 0.1783, 0.3877, 0.9395, 0.2776, 0.3464, 0.9155, 0.1866, 0.3464, 0.9385, 0.4509, 0.3877, 0.8438, 0.4509, 0.3464, 0.8438, 0.366, 0.3877, 0.8838, 0.366, 0.3877, 0.8838, 0.4509, 0.3464, 0.8438, 0.366, 0.3464, 0.8838, 0.1783, 0.3877, 0.9395, 0.1866, 0.3464, 0.9385, 0.0938, 0.3955, 0.9521, 0.0938, 0.3955, 0.9521, 0.1866, 0.3464, 0.9385, 0.0938, 0.3464, 0.9521, -0.2776, 0.3464, 0.9155, -0.366, 0.3464, 0.8838, -0.2776, 0.3877, 0.9155, -0.2776, 0.3877, 0.9155, -0.366, 0.3464, 0.8838, -0.366, 0.3877, 0.8838, -0.1866, 0.3464, 0.9385, -0.2776, 0.3464, 0.9155, -0.1783, 0.3877, 0.9395, -0.1783, 0.3877, 0.9395, -0.2776, 0.3464, 0.9155, -0.2776, 0.3877, 0.9155, -0.5381, 0.3877, 0.7905, -0.6069, 0.3955, 0.7393, -0.5391, 0.4724, 0.7896, -0.5391, 0.4724, 0.7896, -0.6069, 0.3955, 0.7393, -0.6069, 0.4724, 0.7393, -0.0938, 0.3464, 0.9521, -0.1866, 0.3464, 0.9385, -0.0938, 0.3955, 0.9521, -0.0938, 0.3955, 0.9521, -0.1866, 0.3464, 0.9385, -0.1783, 0.3877, 0.9395, -0.4509, 0.3464, 0.8438, -0.5313, 0.3464, 0.7954, -0.4509, 0.3877, 0.8438, -0.4509, 0.3877, 0.8438, -0.5313, 0.3464, 0.7954, -0.5381, 0.3877, 0.7905, -0.366, 0.3464, 0.8838, -0.4509, 0.3464, 0.8438, -0.366, 0.3877, 0.8838, -0.366, 0.3877, 0.8838, -0.4509, 0.3464, 0.8438, -0.4509, 0.3877, 0.8438, 0.6069, 0.4724, 0.7393, 0.5391, 0.4724, 0.7896, 0.6069, 0.542, 0.7393, 0.6069, 0.542, 0.7393, 0.5391, 0.4724, 0.7896, 0.5391, 0.542, 0.7896, 0.5205, 0.3955, 0.7925, 0.4473, 0.3955, 0.8369, 0.4644, 0.3955, 0.7109, 0.4644, 0.3955, 0.7109, 0.4473, 0.3955, 0.8369, 0.4004, 0.3955, 0.749, 0.6069, 0.4724, -0.7393, 0.6763, 0.4724, -0.6763, 0.6069, 0.542, -0.7393, 0.6069, 0.542, -0.7393, 0.6763, 0.4724, -0.6763, 0.6763, 0.542, -0.6763, 0.7393, 0.4724, 0.6069, 0.6763, 0.4724, 0.6763, 0.7393, 0.542, 0.6069, 0.7393, 0.542, 0.6069, 0.6763, 0.4724, 0.6763, 0.6763, 0.542, 0.6763, 0.7393, 0.4724, -0.6069, 0.7954, 0.4724, -0.5313, 0.7393, 0.542, -0.6069, 0.7393, 0.542, -0.6069, 0.7954, 0.4724, -0.5313, 0.7954, 0.542, -0.5313, 0.8838, 0.4724, 0.366, 0.8438, 0.4724, 0.4509, 0.8838, 0.542, 0.366, 0.8838, 0.542, 0.366, 0.8438, 0.4724, 0.4509, 0.8438, 0.542, 0.4509, 0.366, 0.4724, -0.8838, 0.4509, 0.4724, -0.8438, 0.366, 0.542, -0.8838, 0.366, 0.542, -0.8838, 0.4509, 0.4724, -0.8438, 0.4509, 0.542, -0.8438, 0.4509, 0.4724, -0.8438, 0.5313, 0.4724, -0.7954, 0.4509, 0.542, -0.8438, 0.4509, 0.542, -0.8438, 0.5313, 0.4724, -0.7954, 0.5313, 0.542, -0.7954, 0.5313, 0.4724, -0.7954, 0.6069, 0.4724, -0.7393, 0.5313, 0.542, -0.7954, 0.5313, 0.542, -0.7954, 0.6069, 0.4724, -0.7393, 0.6069, 0.542, -0.7393, 0.9155, 0.4724, 0.2776, 0.8838, 0.4724, 0.366, 0.9155, 0.542, 0.2776, 0.9155, 0.542, 0.2776, 0.8838, 0.4724, 0.366, 0.8838, 0.542, 0.366, 0.2776, 0.4724, -0.9155, 0.366, 0.4724, -0.8838, 0.2776, 0.542, -0.9155, 0.2776, 0.542, -0.9155, 0.366, 0.4724, -0.8838, 0.366, 0.542, -0.8838, 0.1866, 0.4724, -0.9385, 0.2776, 0.4724, -0.9155, 0.1866, 0.542, -0.9385, 0.1866, 0.542, -0.9385, 0.2776, 0.4724, -0.9155, 0.2776, 0.542, -0.9155, 0.9155, 0.4724, -0.2776, 0.9385, 0.4724, -0.1866, 0.9155, 0.542, -0.2776, 0.9155, 0.542, -0.2776, 0.9385, 0.4724, -0.1866, 0.9385, 0.542, -0.1866, 0.7954, 0.4724, -0.5313, 0.8438, 0.4724, -0.4509, 0.7954, 0.542, -0.5313, 0.7954, 0.542, -0.5313, 0.8438, 0.4724, -0.4509, 0.8438, 0.542, -0.4509, 0.6016, 0.5498, 0.7334, 0.5347, 0.5498, 0.7832, 0.5391, 0.5498, 0.6567, 0.5391, 0.5498, 0.6567, 0.5347, 0.5498, 0.7832, 0.4756, 0.5498, 0.7036, 0.8438, 0.4724, 0.4509, 0.7954, 0.4724, 0.5313, 0.8438, 0.542, 0.4509, 0.8438, 0.542, 0.4509, 0.7954, 0.4724, 0.5313, 0.7954, 0.542, 0.5313, -0.9565, 0.4724, 0, -0.9521, 0.4724, -0.0938, -0.9565, 0.542, 0, -0.9565, 0.542, 0, -0.9521, 0.4724, -0.0938, -0.9521, 0.542, -0.0938, 0.0938, 0.4724, 0.9521, 0, 0.4724, 0.9565, 0.0938, 0.542, 0.9521, 0.0938, 0.542, 0.9521, 0, 0.4724, 0.9565, 0, 0.542, 0.9565, 0.6763, 0.4724, 0.6763, 0.6069, 0.4724, 0.7393, 0.6763, 0.542, 0.6763, 0.6763, 0.542, 0.6763, 0.6069, 0.4724, 0.7393, 0.6069, 0.542, 0.7393, 0.6763, 0.4724, -0.6763, 0.7393, 0.4724, -0.6069, 0.6763, 0.542, -0.6763, 0.6763, 0.542, -0.6763, 0.7393, 0.4724, -0.6069, 0.7393, 0.542, -0.6069, 0.9385, 0.4724, 0.1866, 0.9155, 0.4724, 0.2776, 0.9385, 0.542, 0.1866, 0.9385, 0.542, 0.1866, 0.9155, 0.4724, 0.2776, 0.9155, 0.542, 0.2776, 0, 0.4724, -0.9565, 0.0938, 0.4724, -0.9521, 0, 0.542, -0.9565, 0, 0.542, -0.9565, 0.0938, 0.4724, -0.9521, 0.0938, 0.542, -0.9521, 0.7954, 0.4724, 0.5313, 0.7393, 0.4724, 0.6069, 0.7954, 0.542, 0.5313, 0.7954, 0.542, 0.5313, 0.7393, 0.4724, 0.6069, 0.7393, 0.542, 0.6069, 0.1757, 0.5498, 0.9321, 0.093, 0.5498, 0.9443, 0.1611, 0.5498, 0.834, 0.1611, 0.5498, 0.834, 0.093, 0.5498, 0.9443, 0.0833, 0.5498, 0.8457, 0.0938, 0.4724, -0.9521, 0.1866, 0.4724, -0.9385, 0.0938, 0.542, -0.9521, 0.0938, 0.542, -0.9521, 0.1866, 0.4724, -0.9385, 0.1866, 0.542, -0.9385, 0.8838, 0.4724, -0.366, 0.9155, 0.4724, -0.2776, 0.8838, 0.542, -0.366, 0.8838, 0.542, -0.366, 0.9155, 0.4724, -0.2776, 0.9155, 0.542, -0.2776, 0.8438, 0.4724, -0.4509, 0.8838, 0.4724, -0.366, 0.8438, 0.542, -0.4509, 0.8438, 0.542, -0.4509, 0.8838, 0.4724, -0.366, 0.8838, 0.542, -0.366, 0.9565, 0.4724, 0, 0.9521, 0.4724, 0.0938, 0.9565, 0.542, 0, 0.9565, 0.542, 0, 0.9521, 0.4724, 0.0938, 0.9521, 0.542, 0.0938, 0.9521, 0.4724, 0.0938, 0.9385, 0.4724, 0.1866, 0.9521, 0.542, 0.0938, 0.9521, 0.542, 0.0938, 0.9385, 0.4724, 0.1866, 0.9385, 0.542, 0.1866, 0.9385, 0.4724, -0.1866, 0.9521, 0.4724, -0.0938, 0.9385, 0.542, -0.1866, 0.9385, 0.542, -0.1866, 0.9521, 0.4724, -0.0938, 0.9521, 0.542, -0.0938, -0.6069, 0.4724, -0.7393, -0.5313, 0.4724, -0.7954, -0.6069, 0.542, -0.7393, -0.6069, 0.542, -0.7393, -0.5313, 0.4724, -0.7954, -0.5313, 0.542, -0.7954, -0.7393, 0.4724, 0.6069, -0.7954, 0.4724, 0.5313, -0.7393, 0.542, 0.6069, -0.7393, 0.542, 0.6069, -0.7954, 0.4724, 0.5313, -0.7954, 0.542, 0.5313, -0.7393, 0.4724, -0.6069, -0.6763, 0.4724, -0.6763, -0.7393, 0.542, -0.6069, -0.7393, 0.542, -0.6069, -0.6763, 0.4724, -0.6763, -0.6763, 0.542, -0.6763, -0.8838, 0.4724, 0.366, -0.9155, 0.4724, 0.2776, -0.8838, 0.542, 0.366, -0.8838, 0.542, 0.366, -0.9155, 0.4724, 0.2776, -0.9155, 0.542, 0.2776, -0.366, 0.4724, -0.8838, -0.2776, 0.4724, -0.9155, -0.366, 0.542, -0.8838, -0.366, 0.542, -0.8838, -0.2776, 0.4724, -0.9155, -0.2776, 0.542, -0.9155, -0.4509, 0.4724, -0.8438, -0.366, 0.4724, -0.8838, -0.4509, 0.542, -0.8438, -0.4509, 0.542, -0.8438, -0.366, 0.4724, -0.8838, -0.366, 0.542, -0.8838, -0.5313, 0.4724, -0.7954, -0.4509, 0.4724, -0.8438, -0.5313, 0.542, -0.7954, -0.5313, 0.542, -0.7954, -0.4509, 0.4724, -0.8438, -0.4509, 0.542, -0.8438, -0.9155, 0.4724, 0.2776, -0.9385, 0.4724, 0.1866, -0.9155, 0.542, 0.2776, -0.9155, 0.542, 0.2776, -0.9385, 0.4724, 0.1866, -0.9385, 0.542, 0.1866, -0.2776, 0.4724, -0.9155, -0.1866, 0.4724, -0.9385, -0.2776, 0.542, -0.9155, -0.2776, 0.542, -0.9155, -0.1866, 0.4724, -0.9385, -0.1866, 0.542, -0.9385, -0.1866, 0.4724, -0.9385, -0.0938, 0.4724, -0.9521, -0.1866, 0.542, -0.9385, -0.1866, 0.542, -0.9385, -0.0938, 0.4724, -0.9521, -0.0938, 0.542, -0.9521, -0.9155, 0.4724, -0.2776, -0.8838, 0.4724, -0.366, -0.9155, 0.542, -0.2776, -0.9155, 0.542, -0.2776, -0.8838, 0.4724, -0.366, -0.8838, 0.542, -0.366, -0.7954, 0.4724, -0.5313, -0.7393, 0.4724, -0.6069, -0.7954, 0.542, -0.5313, -0.7954, 0.542, -0.5313, -0.7393, 0.4724, -0.6069, -0.7393, 0.542, -0.6069, -0.6069, 0.4724, 0.7393, -0.6763, 0.4724, 0.6763, -0.6069, 0.542, 0.7393, -0.6069, 0.542, 0.7393, -0.6763, 0.4724, 0.6763, -0.6763, 0.542, 0.6763, -0.8438, 0.4724, 0.4509, -0.8838, 0.4724, 0.366, -0.8438, 0.542, 0.4509, -0.8438, 0.542, 0.4509, -0.8838, 0.4724, 0.366, -0.8838, 0.542, 0.366, -0.9521, 0.4724, -0.0938, -0.9385, 0.4724, -0.1866, -0.9521, 0.542, -0.0938, -0.9521, 0.542, -0.0938, -0.9385, 0.4724, -0.1866, -0.9385, 0.542, -0.1866, 0, 0.5498, 0.9487, -0.093, 0.5498, 0.9443, 0, 0.5498, 0.8496, 0, 0.5498, 0.8496, -0.093, 0.5498, 0.9443, -0.0833, 0.5498, 0.8457, -0.6763, 0.4724, 0.6763, -0.7393, 0.4724, 0.6069, -0.6763, 0.542, 0.6763, -0.6763, 0.542, 0.6763, -0.7393, 0.4724, 0.6069, -0.7393, 0.542, 0.6069, -0.6763, 0.4724, -0.6763, -0.6069, 0.4724, -0.7393, -0.6763, 0.542, -0.6763, -0.6763, 0.542, -0.6763, -0.6069, 0.4724, -0.7393, -0.6069, 0.542, -0.7393, -0.9385, 0.4724, 0.1866, -0.9521, 0.4724, 0.0938, -0.9385, 0.542, 0.1866, -0.9385, 0.542, 0.1866, -0.9521, 0.4724, 0.0938, -0.9521, 0.542, 0.0938, -0.0938, 0.4724, -0.9521, 0, 0.4724, -0.9565, -0.0938, 0.542, -0.9521, -0.0938, 0.542, -0.9521, 0, 0.4724, -0.9565, 0, 0.542, -0.9565, -0.7954, 0.4724, 0.5313, -0.8438, 0.4724, 0.4509, -0.7954, 0.542, 0.5313, -0.7954, 0.542, 0.5313, -0.8438, 0.4724, 0.4509, -0.8438, 0.542, 0.4509, -0.093, 0.5498, 0.9443, -0.1757, 0.5498, 0.9321, -0.0833, 0.5498, 0.8457, -0.0833, 0.5498, 0.8457, -0.1757, 0.5498, 0.9321, -0.1611, 0.5498, 0.834, 0, 0.4724, 0.9565, -0.0938, 0.4724, 0.9521, 0, 0.542, 0.9565, 0, 0.542, 0.9565, -0.0938, 0.4724, 0.9521, -0.0938, 0.542, 0.9521, -0.8838, 0.4724, -0.366, -0.8438, 0.4724, -0.4509, -0.8838, 0.542, -0.366, -0.8838, 0.542, -0.366, -0.8438, 0.4724, -0.4509, -0.8438, 0.542, -0.4509, -0.8438, 0.4724, -0.4509, -0.7954, 0.4724, -0.5313, -0.8438, 0.542, -0.4509, -0.8438, 0.542, -0.4509, -0.7954, 0.4724, -0.5313, -0.7954, 0.542, -0.5313, -0.9307, 0.5498, 0.1851, -0.9443, 0.5498, 0.093, -0.8335, 0.5498, 0.1658, -0.8335, 0.5498, 0.1658, -0.9443, 0.5498, 0.093, -0.8457, 0.5498, 0.0833, -0.9521, 0.4724, 0.0938, -0.9565, 0.4724, 0, -0.9521, 0.542, 0.0938, -0.9521, 0.542, 0.0938, -0.9565, 0.4724, 0, -0.9565, 0.542, 0, -0.9385, 0.4724, -0.1866, -0.9155, 0.4724, -0.2776, -0.9385, 0.542, -0.1866, -0.9385, 0.542, -0.1866, -0.9155, 0.4724, -0.2776, -0.9155, 0.542, -0.2776, 0.1769, 0.4724, 0.9399, 0.0938, 0.4724, 0.9521, 0.1769, 0.542, 0.9399, 0.1769, 0.542, 0.9399, 0.0938, 0.4724, 0.9521, 0.0938, 0.542, 0.9521, -0.0938, 0.4724, 0.9521, -0.1769, 0.4724, 0.9399, -0.0938, 0.542, 0.9521, -0.0938, 0.542, 0.9521, -0.1769, 0.4724, 0.9399, -0.1769, 0.542, 0.9399, -0.5391, 0.4724, 0.7896, -0.6069, 0.4724, 0.7393, -0.5391, 0.542, 0.7896, -0.5391, 0.542, 0.7896, -0.6069, 0.4724, 0.7393, -0.6069, 0.542, 0.7393, 0.9443, 0.5498, -0.093, 0.9487, 0.5498, 0, 0.8457, 0.5498, -0.0833, 0.8457, 0.5498, -0.0833, 0.9487, 0.5498, 0, 0.8496, 0.5498, 0, 0.5381, 0.3877, 0.7905, 0.5205, 0.3955, 0.7925, 0.5273, 0.4036, 0.7886, 0.1844, 0.4036, 0.9307, 0.1923, 0.3955, 0.9287, 0.1783, 0.3877, 0.9395, -0.5273, 0.4036, 0.7886, -0.5205, 0.3955, 0.7925, -0.5381, 0.3877, 0.7905, -0.1783, 0.3877, 0.9395, -0.1923, 0.3955, 0.9287, -0.1844, 0.4036, 0.9307, 0.5283, 0.542, 0.7881, 0.5347, 0.5498, 0.7832, 0.5391, 0.542, 0.7896, 0.1769, 0.542, 0.9399, 0.1757, 0.5498, 0.9321, 0.1835, 0.542, 0.9307, -0.5391, 0.542, 0.7896, -0.5347, 0.5498, 0.7832, -0.5283, 0.542, 0.7881, -0.1835, 0.542, 0.9307, -0.1757, 0.5498, 0.9321, -0.1769, 0.542, 0.9399, 0.363, 0.3955, 0.8765, 0.4473, 0.3955, 0.8369, 0.366, 0.3877, 0.8838, 0.366, 0.3877, 0.8838, 0.4473, 0.3955, 0.8369, 0.4509, 0.3877, 0.8438, 0.2754, 0.3955, 0.9077, 0.363, 0.3955, 0.8765, 0.2776, 0.3877, 0.9155, 0.2776, 0.3877, 0.9155, 0.363, 0.3955, 0.8765, 0.366, 0.3877, 0.8838, 0.4473, 0.3955, 0.8369, 0.5205, 0.3955, 0.7925, 0.4509, 0.3877, 0.8438, 0.4509, 0.3877, 0.8438, 0.5205, 0.3955, 0.7925, 0.5381, 0.3877, 0.7905, 0.1923, 0.3955, 0.9287, 0.2754, 0.3955, 0.9077, 0.1783, 0.3877, 0.9395, 0.1783, 0.3877, 0.9395, 0.2754, 0.3955, 0.9077, 0.2776, 0.3877, 0.9155, -0.366, 0.3877, 0.8838, -0.4509, 0.3877, 0.8438, -0.363, 0.3955, 0.8765, -0.363, 0.3955, 0.8765, -0.4509, 0.3877, 0.8438, -0.4473, 0.3955, 0.8369, -0.2776, 0.3877, 0.9155, -0.366, 0.3877, 0.8838, -0.2754, 0.3955, 0.9077, -0.2754, 0.3955, 0.9077, -0.366, 0.3877, 0.8838, -0.363, 0.3955, 0.8765, -0.4509, 0.3877, 0.8438, -0.5381, 0.3877, 0.7905, -0.4473, 0.3955, 0.8369, -0.4473, 0.3955, 0.8369, -0.5381, 0.3877, 0.7905, -0.5205, 0.3955, 0.7925, -0.1783, 0.3877, 0.9395, -0.2776, 0.3877, 0.9155, -0.1923, 0.3955, 0.9287, -0.1923, 0.3955, 0.9287, -0.2776, 0.3877, 0.9155, -0.2754, 0.3955, 0.9077, 0.1835, 0.4724, 0.9307, 0.1844, 0.4036, 0.9307, 0.1769, 0.4724, 0.9399, 0.1769, 0.4724, 0.9399, 0.1844, 0.4036, 0.9307, 0.1783, 0.3877, 0.9395, -0.5283, 0.4724, 0.7881, -0.5273, 0.4036, 0.7886, -0.5391, 0.4724, 0.7896, -0.5391, 0.4724, 0.7896, -0.5273, 0.4036, 0.7886, -0.5381, 0.3877, 0.7905, -0.1844, 0.4036, 0.9307, -0.1835, 0.4724, 0.9307, -0.1783, 0.3877, 0.9395, -0.1783, 0.3877, 0.9395, -0.1835, 0.4724, 0.9307, -0.1769, 0.4724, 0.9399, 0.5391, 0.4724, 0.7896, 0.5381, 0.3877, 0.7905, 0.5283, 0.4724, 0.7881, 0.5283, 0.4724, 0.7881, 0.5381, 0.3877, 0.7905, 0.5273, 0.4036, 0.7886, 0.6016, 0.5498, -0.7334, 0.5269, 0.5498, -0.7886, 0.6069, 0.542, -0.7393, 0.6069, 0.542, -0.7393, 0.5269, 0.5498, -0.7886, 0.5313, 0.542, -0.7954, 0.7334, 0.5498, 0.6016, 0.7886, 0.5498, 0.5269, 0.7393, 0.542, 0.6069, 0.7393, 0.542, 0.6069, 0.7886, 0.5498, 0.5269, 0.7954, 0.542, 0.5313, 0.7334, 0.5498, -0.6016, 0.6709, 0.5498, -0.6709, 0.7393, 0.542, -0.6069, 0.7393, 0.542, -0.6069, 0.6709, 0.5498, -0.6709, 0.6763, 0.542, -0.6763, 0.8765, 0.5498, 0.363, 0.9077, 0.5498, 0.2754, 0.8838, 0.542, 0.366, 0.8838, 0.542, 0.366, 0.9077, 0.5498, 0.2754, 0.9155, 0.542, 0.2776, 0.363, 0.5498, -0.8765, 0.2754, 0.5498, -0.9077, 0.366, 0.542, -0.8838, 0.366, 0.542, -0.8838, 0.2754, 0.5498, -0.9077, 0.2776, 0.542, -0.9155, 0.4473, 0.5498, -0.8369, 0.363, 0.5498, -0.8765, 0.4509, 0.542, -0.8438, 0.4509, 0.542, -0.8438, 0.363, 0.5498, -0.8765, 0.366, 0.542, -0.8838, 0.5269, 0.5498, -0.7886, 0.4473, 0.5498, -0.8369, 0.5313, 0.542, -0.7954, 0.5313, 0.542, -0.7954, 0.4473, 0.5498, -0.8369, 0.4509, 0.542, -0.8438, 0.9077, 0.5498, 0.2754, 0.9307, 0.5498, 0.1851, 0.9155, 0.542, 0.2776, 0.9155, 0.542, 0.2776, 0.9307, 0.5498, 0.1851, 0.9385, 0.542, 0.1866, 0.2754, 0.5498, -0.9077, 0.1851, 0.5498, -0.9307, 0.2776, 0.542, -0.9155, 0.2776, 0.542, -0.9155, 0.1851, 0.5498, -0.9307, 0.1866, 0.542, -0.9385, 0.1851, 0.5498, -0.9307, 0.093, 0.5498, -0.9443, 0.1866, 0.542, -0.9385, 0.1866, 0.542, -0.9385, 0.093, 0.5498, -0.9443, 0.0938, 0.542, -0.9521, 0.9077, 0.5498, -0.2754, 0.8765, 0.5498, -0.363, 0.9155, 0.542, -0.2776, 0.9155, 0.542, -0.2776, 0.8765, 0.5498, -0.363, 0.8838, 0.542, -0.366, 0.7886, 0.5498, -0.5269, 0.7334, 0.5498, -0.6016, 0.7954, 0.542, -0.5313, 0.7954, 0.542, -0.5313, 0.7334, 0.5498, -0.6016, 0.7393, 0.542, -0.6069, 0.6016, 0.5498, 0.7334, 0.6709, 0.5498, 0.6709, 0.6069, 0.542, 0.7393, 0.6069, 0.542, 0.7393, 0.6709, 0.5498, 0.6709, 0.6763, 0.542, 0.6763, 0.8369, 0.5498, 0.4473, 0.8765, 0.5498, 0.363, 0.8438, 0.542, 0.4509, 0.8438, 0.542, 0.4509, 0.8765, 0.5498, 0.363, 0.8838, 0.542, 0.366, 0.9443, 0.5498, -0.093, 0.9307, 0.5498, -0.1851, 0.9521, 0.542, -0.0938, 0.9521, 0.542, -0.0938, 0.9307, 0.5498, -0.1851, 0.9385, 0.542, -0.1866, 0.093, 0.5498, 0.9443, 0.1757, 0.5498, 0.9321, 0.0938, 0.542, 0.9521, 0.0938, 0.542, 0.9521, 0.1757, 0.5498, 0.9321, 0.1769, 0.542, 0.9399, 0.6709, 0.5498, 0.6709, 0.7334, 0.5498, 0.6016, 0.6763, 0.542, 0.6763, 0.6763, 0.542, 0.6763, 0.7334, 0.5498, 0.6016, 0.7393, 0.542, 0.6069, 0.6709, 0.5498, -0.6709, 0.6016, 0.5498, -0.7334, 0.6763, 0.542, -0.6763, 0.6763, 0.542, -0.6763, 0.6016, 0.5498, -0.7334, 0.6069, 0.542, -0.7393, 0.9307, 0.5498, 0.1851, 0.9443, 0.5498, 0.093, 0.9385, 0.542, 0.1866, 0.9385, 0.542, 0.1866, 0.9443, 0.5498, 0.093, 0.9521, 0.542, 0.0938, 0.093, 0.5498, -0.9443, 0, 0.5498, -0.9487, 0.0938, 0.542, -0.9521, 0.0938, 0.542, -0.9521, 0, 0.5498, -0.9487, 0, 0.542, -0.9565, 0.7886, 0.5498, 0.5269, 0.8369, 0.5498, 0.4473, 0.7954, 0.542, 0.5313, 0.7954, 0.542, 0.5313, 0.8369, 0.5498, 0.4473, 0.8438, 0.542, 0.4509, 0.5347, 0.5498, 0.7832, 0.6016, 0.5498, 0.7334, 0.5391, 0.542, 0.7896, 0.5391, 0.542, 0.7896, 0.6016, 0.5498, 0.7334, 0.6069, 0.542, 0.7393, 0, 0.5498, 0.9487, 0.093, 0.5498, 0.9443, 0, 0.542, 0.9565, 0, 0.542, 0.9565, 0.093, 0.5498, 0.9443, 0.0938, 0.542, 0.9521, 0.8765, 0.5498, -0.363, 0.8369, 0.5498, -0.4473, 0.8838, 0.542, -0.366, 0.8838, 0.542, -0.366, 0.8369, 0.5498, -0.4473, 0.8438, 0.542, -0.4509, 0.8369, 0.5498, -0.4473, 0.7886, 0.5498, -0.5269, 0.8438, 0.542, -0.4509, 0.8438, 0.542, -0.4509, 0.7886, 0.5498, -0.5269, 0.7954, 0.542, -0.5313, 0.9521, 0.542, -0.0938, 0.9565, 0.542, 0, 0.9443, 0.5498, -0.093, 0.9443, 0.5498, -0.093, 0.9565, 0.542, 0, 0.9487, 0.5498, 0, 0.9443, 0.5498, 0.093, 0.9487, 0.5498, 0, 0.9521, 0.542, 0.0938, 0.9521, 0.542, 0.0938, 0.9487, 0.5498, 0, 0.9565, 0.542, 0, 0.9307, 0.5498, -0.1851, 0.9077, 0.5498, -0.2754, 0.9385, 0.542, -0.1866, 0.9385, 0.542, -0.1866, 0.9077, 0.5498, -0.2754, 0.9155, 0.542, -0.2776, -0.6069, 0.542, -0.7393, -0.5313, 0.542, -0.7954, -0.6016, 0.5498, -0.7334, -0.6016, 0.5498, -0.7334, -0.5313, 0.542, -0.7954, -0.5269, 0.5498, -0.7886, -0.7393, 0.542, 0.6069, -0.7954, 0.542, 0.5313, -0.7334, 0.5498, 0.6016, -0.7334, 0.5498, 0.6016, -0.7954, 0.542, 0.5313, -0.7886, 0.5498, 0.5269, -0.7393, 0.542, -0.6069, -0.6763, 0.542, -0.6763, -0.7334, 0.5498, -0.6016, -0.7334, 0.5498, -0.6016, -0.6763, 0.542, -0.6763, -0.6709, 0.5498, -0.6709, -0.8838, 0.542, 0.366, -0.9155, 0.542, 0.2776, -0.8765, 0.5498, 0.363, -0.8765, 0.5498, 0.363, -0.9155, 0.542, 0.2776, -0.9077, 0.5498, 0.2754, -0.366, 0.542, -0.8838, -0.2776, 0.542, -0.9155, -0.363, 0.5498, -0.8765, -0.363, 0.5498, -0.8765, -0.2776, 0.542, -0.9155, -0.2754, 0.5498, -0.9077, -0.4509, 0.542, -0.8438, -0.366, 0.542, -0.8838, -0.4473, 0.5498, -0.8369, -0.4473, 0.5498, -0.8369, -0.366, 0.542, -0.8838, -0.363, 0.5498, -0.8765, -0.5313, 0.542, -0.7954, -0.4509, 0.542, -0.8438, -0.5269, 0.5498, -0.7886, -0.5269, 0.5498, -0.7886, -0.4509, 0.542, -0.8438, -0.4473, 0.5498, -0.8369, -0.9155, 0.542, 0.2776, -0.9385, 0.542, 0.1866, -0.9077, 0.5498, 0.2754, -0.9077, 0.5498, 0.2754, -0.9385, 0.542, 0.1866, -0.9307, 0.5498, 0.1851, -0.2776, 0.542, -0.9155, -0.1866, 0.542, -0.9385, -0.2754, 0.5498, -0.9077, -0.2754, 0.5498, -0.9077, -0.1866, 0.542, -0.9385, -0.1851, 0.5498, -0.9307, -0.1866, 0.542, -0.9385, -0.0938, 0.542, -0.9521, -0.1851, 0.5498, -0.9307, -0.1851, 0.5498, -0.9307, -0.0938, 0.542, -0.9521, -0.093, 0.5498, -0.9443, -0.9155, 0.542, -0.2776, -0.8838, 0.542, -0.366, -0.9077, 0.5498, -0.2754, -0.9077, 0.5498, -0.2754, -0.8838, 0.542, -0.366, -0.8765, 0.5498, -0.363, -0.7954, 0.542, -0.5313, -0.7393, 0.542, -0.6069, -0.7886, 0.5498, -0.5269, -0.7886, 0.5498, -0.5269, -0.7393, 0.542, -0.6069, -0.7334, 0.5498, -0.6016, -0.6069, 0.542, 0.7393, -0.6763, 0.542, 0.6763, -0.6016, 0.5498, 0.7334, -0.6016, 0.5498, 0.7334, -0.6763, 0.542, 0.6763, -0.6709, 0.5498, 0.6709, -0.8438, 0.542, 0.4509, -0.8838, 0.542, 0.366, -0.8369, 0.5498, 0.4473, -0.8369, 0.5498, 0.4473, -0.8838, 0.542, 0.366, -0.8765, 0.5498, 0.363, -0.9521, 0.542, -0.0938, -0.9385, 0.542, -0.1866, -0.9443, 0.5498, -0.093, -0.9443, 0.5498, -0.093, -0.9385, 0.542, -0.1866, -0.9307, 0.5498, -0.1851, -0.0938, 0.542, 0.9521, -0.1769, 0.542, 0.9399, -0.093, 0.5498, 0.9443, -0.093, 0.5498, 0.9443, -0.1769, 0.542, 0.9399, -0.1757, 0.5498, 0.9321, -0.6763, 0.542, 0.6763, -0.7393, 0.542, 0.6069, -0.6709, 0.5498, 0.6709, -0.6709, 0.5498, 0.6709, -0.7393, 0.542, 0.6069, -0.7334, 0.5498, 0.6016, -0.6763, 0.542, -0.6763, -0.6069, 0.542, -0.7393, -0.6709, 0.5498, -0.6709, -0.6709, 0.5498, -0.6709, -0.6069, 0.542, -0.7393, -0.6016, 0.5498, -0.7334, -0.9385, 0.542, 0.1866, -0.9521, 0.542, 0.0938, -0.9307, 0.5498, 0.1851, -0.9307, 0.5498, 0.1851, -0.9521, 0.542, 0.0938, -0.9443, 0.5498, 0.093, -0.0938, 0.542, -0.9521, 0, 0.542, -0.9565, -0.093, 0.5498, -0.9443, -0.093, 0.5498, -0.9443, 0, 0.542, -0.9565, 0, 0.5498, -0.9487, -0.7954, 0.542, 0.5313, -0.8438, 0.542, 0.4509, -0.7886, 0.5498, 0.5269, -0.7886, 0.5498, 0.5269, -0.8438, 0.542, 0.4509, -0.8369, 0.5498, 0.4473, -0.5391, 0.542, 0.7896, -0.6069, 0.542, 0.7393, -0.5347, 0.5498, 0.7832, -0.5347, 0.5498, 0.7832, -0.6069, 0.542, 0.7393, -0.6016, 0.5498, 0.7334, 0, 0.542, 0.9565, -0.0938, 0.542, 0.9521, 0, 0.5498, 0.9487, 0, 0.5498, 0.9487, -0.0938, 0.542, 0.9521, -0.093, 0.5498, 0.9443, -0.8838, 0.542, -0.366, -0.8438, 0.542, -0.4509, -0.8765, 0.5498, -0.363, -0.8765, 0.5498, -0.363, -0.8438, 0.542, -0.4509, -0.8369, 0.5498, -0.4473, -0.8438, 0.542, -0.4509, -0.7954, 0.542, -0.5313, -0.8369, 0.5498, -0.4473, -0.8369, 0.5498, -0.4473, -0.7954, 0.542, -0.5313, -0.7886, 0.5498, -0.5269, -0.9443, 0.5498, -0.093, -0.9487, 0.5498, 0, -0.9521, 0.542, -0.0938, -0.9521, 0.542, -0.0938, -0.9487, 0.5498, 0, -0.9565, 0.542, 0, -0.9521, 0.542, 0.0938, -0.9565, 0.542, 0, -0.9443, 0.5498, 0.093, -0.9443, 0.5498, 0.093, -0.9565, 0.542, 0, -0.9487, 0.5498, 0, -0.9385, 0.542, -0.1866, -0.9155, 0.542, -0.2776, -0.9307, 0.5498, -0.1851, -0.9307, 0.5498, -0.1851, -0.9155, 0.542, -0.2776, -0.9077, 0.5498, -0.2754, 0.5391, 0.542, 0.7896, 0.5391, 0.4724, 0.7896, 0.5283, 0.542, 0.7881, 0.5283, 0.542, 0.7881, 0.5391, 0.4724, 0.7896, 0.5283, 0.4724, 0.7881, -0.5283, 0.542, 0.7881, -0.5283, 0.4724, 0.7881, -0.5391, 0.542, 0.7896, -0.5391, 0.542, 0.7896, -0.5283, 0.4724, 0.7881, -0.5391, 0.4724, 0.7896, 0.1769, 0.4724, 0.9399, 0.1769, 0.542, 0.9399, 0.1835, 0.4724, 0.9307, 0.1835, 0.4724, 0.9307, 0.1769, 0.542, 0.9399, 0.1835, 0.542, 0.9307, -0.1769, 0.542, 0.9399, -0.1769, 0.4724, 0.9399, -0.1835, 0.542, 0.9307, -0.1835, 0.542, 0.9307, -0.1769, 0.4724, 0.9399, -0.1835, 0.4724, 0.9307, 0.4709, 0.4036, 0.707, 0.5273, 0.4036, 0.7886, 0.4644, 0.3955, 0.7109, 0.4644, 0.3955, 0.7109, 0.5273, 0.4036, 0.7886, 0.5205, 0.3955, 0.7925, 0.1744, 0.3955, 0.8311, 0.1923, 0.3955, 0.9287, 0.1671, 0.4036, 0.833, 0.1671, 0.4036, 0.833, 0.1923, 0.3955, 0.9287, 0.1844, 0.4036, 0.9307, -0.4644, 0.3955, 0.7109, -0.5205, 0.3955, 0.7925, -0.4709, 0.4036, 0.707, -0.4709, 0.4036, 0.707, -0.5205, 0.3955, 0.7925, -0.5273, 0.4036, 0.7886, -0.1671, 0.4036, 0.833, -0.1844, 0.4036, 0.9307, -0.1744, 0.3955, 0.8311, -0.1744, 0.3955, 0.8311, -0.1844, 0.4036, 0.9307, -0.1923, 0.3955, 0.9287, 0.4756, 0.5498, 0.7036, 0.5347, 0.5498, 0.7832, 0.4692, 0.542, 0.7085, 0.4692, 0.542, 0.7085, 0.5347, 0.5498, 0.7832, 0.5283, 0.542, 0.7881, 0.1689, 0.542, 0.8325, 0.1835, 0.542, 0.9307, 0.1611, 0.5498, 0.834, 0.1611, 0.5498, 0.834, 0.1835, 0.542, 0.9307, 0.1757, 0.5498, 0.9321, -0.4692, 0.542, 0.7085, -0.5283, 0.542, 0.7881, -0.4756, 0.5498, 0.7036, -0.4756, 0.5498, 0.7036, -0.5283, 0.542, 0.7881, -0.5347, 0.5498, 0.7832, -0.1611, 0.5498, 0.834, -0.1757, 0.5498, 0.9321, -0.1689, 0.542, 0.8325, -0.1689, 0.542, 0.8325, -0.1757, 0.5498, 0.9321, -0.1835, 0.542, 0.9307, 0.6069, 0.3955, 0.7393, 0.6069, 0.3464, 0.7393, 0.5381, 0.3877, 0.7905, 0.5381, 0.3877, 0.7905, 0.6069, 0.3464, 0.7393, 0.5313, 0.3464, 0.7954, -0.9731, 1.4805, 0.0346, -0.9194, 1.4453, 0.0391, -1.0098, 1.416, 0.0349, -1.0098, 1.416, 0.0349, -0.9194, 1.4453, 0.0391, -0.9609, 1.375, 0.0394, -0.6694, 1.5352, -0.0445, -0.6782, 1.5283, -0.0544, -0.645, 1.5557, -0.0635, -1.043, 1.3604, 0, -1.042, 1.3613, -0.0285, -1.0156, 1.4199, 0, -1.0156, 1.4199, 0, -1.042, 1.3613, -0.0285, -1.0156, 1.4199, -0.0276, -1.042, 1.3613, 0.0285, -1.043, 1.3604, 0, -1.0156, 1.4199, 0.0276, -1.0156, 1.4199, 0.0276, -1.043, 1.3604, 0, -1.0156, 1.4199, 0, -1.0156, 1.4199, 0, -1.0156, 1.4199, -0.0276, -0.9795, 1.4834, 0, -0.9795, 1.4834, 0, -1.0156, 1.4199, -0.0276, -0.979, 1.4834, -0.0274, -0.979, 1.4834, 0.0274, -0.9795, 1.4834, 0, -0.9365, 1.5449, 0.0282, -0.9365, 1.5449, 0.0282, -0.9795, 1.4834, 0, -0.937, 1.5449, 0, -0.9795, 1.4834, 0, -0.979, 1.4834, -0.0274, -0.937, 1.5449, 0, -0.937, 1.5449, 0, -0.979, 1.4834, -0.0274, -0.9365, 1.5449, -0.0282, -0.9194, 1.4453, -0.037, -0.8711, 1.5137, -0.0395, -0.9731, 1.4805, -0.0344, -0.9731, 1.4805, -0.0344, -0.8711, 1.5137, -0.0395, -0.9302, 1.542, -0.0354, -1.0156, 1.4199, 0.0276, -1.0156, 1.4199, 0, -0.979, 1.4834, 0.0274, -0.979, 1.4834, 0.0274, -1.0156, 1.4199, 0, -0.9795, 1.4834, 0, -0.9951, 1.3008, 0.0327, -0.9961, 1.2998, 0, -1.04, 1.3496, 0.0289, -1.04, 1.3496, 0.0289, -0.9961, 1.2998, 0, -1.041, 1.3486, 0, -0.937, 1.5449, 0, -0.9365, 1.5449, -0.0282, -0.8926, 1.5967, 0, -0.8926, 1.5967, 0, -0.9365, 1.5449, -0.0282, -0.8926, 1.5977, -0.0315, -0.9302, 1.542, 0.0354, -0.8711, 1.5137, 0.0395, -0.9731, 1.4805, 0.0346, -0.9731, 1.4805, 0.0346, -0.8711, 1.5137, 0.0395, -0.9194, 1.4453, 0.0391, -0.8154, 1.5791, 0.0311, -0.8818, 1.6006, 0.0263, -0.8164, 1.5781, 0, -0.8164, 1.5781, 0, -0.8818, 1.6006, 0.0263, -0.8818, 1.6006, 0, -0.9917, 1.3076, -0.0392, -0.9609, 1.374, -0.037, -1.0371, 1.3564, -0.0356, -1.0371, 1.3564, -0.0356, -0.9609, 1.374, -0.037, -1.0098, 1.416, -0.0347, -1.0098, 1.416, -0.0347, -0.9609, 1.374, -0.037, -0.9731, 1.4805, -0.0344, -0.9731, 1.4805, -0.0344, -0.9609, 1.374, -0.037, -0.9194, 1.4453, -0.037, -0.9961, 1.2998, 0, -0.9951, 1.3008, -0.0327, -1.041, 1.3486, 0, -1.041, 1.3486, 0, -0.9951, 1.3008, -0.0327, -1.04, 1.3496, -0.0289, -0.8711, 1.5137, -0.0395, -0.8198, 1.5742, -0.0416, -0.9302, 1.542, -0.0354, -0.9302, 1.542, -0.0354, -0.8198, 1.5742, -0.0416, -0.8857, 1.5947, -0.0385, -0.8154, 1.5791, -0.035, -0.8164, 1.5781, 0, -0.8818, 1.6006, -0.032, -0.8818, 1.6006, -0.032, -0.8164, 1.5781, 0, -0.8818, 1.6006, 0, -0.8711, 1.5137, 0.0395, -0.9302, 1.542, 0.0354, -0.8198, 1.5742, 0.038, -0.8198, 1.5742, 0.038, -0.9302, 1.542, 0.0354, -0.8857, 1.5947, 0.0333, -1.0098, 1.416, 0.0349, -0.9609, 1.375, 0.0394, -1.0371, 1.3564, 0.0356, -1.0371, 1.3564, 0.0356, -0.9609, 1.375, 0.0394, -0.9917, 1.3076, 0.0395, -0.9609, 1.375, 0.0394, -0.9063, 1.3291, 0.0444, -0.9917, 1.3076, 0.0395, -0.9917, 1.3076, 0.0395, -0.9063, 1.3291, 0.0444, -0.9414, 1.2539, 0.0437, -0.8711, 1.5137, 0.0395, -0.8057, 1.4834, 0.0439, -0.9194, 1.4453, 0.0391, -0.9194, 1.4453, 0.0391, -0.8057, 1.4834, 0.0439, -0.8599, 1.4072, 0.044, -0.7422, 1.5566, -0.0383, -0.7446, 1.5547, 0, -0.8154, 1.5791, -0.035, -0.8154, 1.5791, -0.035, -0.7446, 1.5547, 0, -0.8164, 1.5781, 0, -0.9194, 1.4453, 0.0391, -0.8599, 1.4072, 0.044, -0.9609, 1.375, 0.0394, -0.9609, 1.375, 0.0394, -0.8599, 1.4072, 0.044, -0.9063, 1.3291, 0.0444, -0.9365, 1.5449, 0.0282, -0.937, 1.5449, 0, -0.8926, 1.5977, 0.0261, -0.8926, 1.5977, 0.0261, -0.937, 1.5449, 0, -0.8926, 1.5967, 0, -0.7422, 1.5566, 0.0363, -0.8154, 1.5791, 0.0311, -0.7446, 1.5547, 0, -0.7446, 1.5547, 0, -0.8154, 1.5791, 0.0311, -0.8164, 1.5781, 0, -0.9609, 1.374, -0.037, -0.9067, 1.3281, -0.0397, -0.9194, 1.4453, -0.037, -0.9194, 1.4453, -0.037, -0.9067, 1.3281, -0.0397, -0.8604, 1.4072, -0.0398, -0.9448, 1.2471, 0.0369, -0.9463, 1.2461, 0, -0.9951, 1.3008, 0.0327, -0.9951, 1.3008, 0.0327, -0.9463, 1.2461, 0, -0.9961, 1.2998, 0, -0.8604, 1.4072, -0.0398, -0.8057, 1.4834, -0.0439, -0.9194, 1.4453, -0.037, -0.9194, 1.4453, -0.037, -0.8057, 1.4834, -0.0439, -0.8711, 1.5137, -0.0395, -0.9463, 1.2461, 0, -0.9448, 1.2471, -0.0369, -0.9961, 1.2998, 0, -0.9961, 1.2998, 0, -0.9448, 1.2471, -0.0369, -0.9951, 1.3008, -0.0327, -0.8057, 1.4834, 0.0439, -0.8711, 1.5137, 0.0395, -0.7466, 1.5508, 0.0432, -0.7466, 1.5508, 0.0432, -0.8711, 1.5137, 0.0395, -0.8198, 1.5742, 0.038, -0.9414, 1.2539, -0.0433, -0.9067, 1.3281, -0.0397, -0.9917, 1.3076, -0.0392, -0.9917, 1.3076, -0.0392, -0.9067, 1.3281, -0.0397, -0.9609, 1.374, -0.037, -0.8057, 1.4834, -0.0439, -0.7466, 1.5508, -0.045, -0.8711, 1.5137, -0.0395, -0.8711, 1.5137, -0.0395, -0.7466, 1.5508, -0.045, -0.8198, 1.5742, -0.0416, -0.645, 1.5557, 0.0635, -0.7129, 1.498, 0.0702, -0.6782, 1.5283, 0.0542, -1.042, 1.3613, 0.0285, -1.0371, 1.3564, 0.0356, -1.04, 1.3496, 0.0289, -1.04, 1.3496, -0.0289, -1.0371, 1.3564, -0.0356, -1.042, 1.3613, -0.0285, -0.8857, 1.5947, -0.0385, -0.8818, 1.6006, -0.032, -0.8926, 1.5977, -0.0315, -0.8818, 1.6006, 0.0263, -0.8857, 1.5947, 0.0333, -0.8926, 1.5977, 0.0261, -0.9009, 1.2041, -0.0396, -0.8989, 1.2119, -0.0459, -0.9448, 1.2471, -0.0369, -0.9448, 1.2471, -0.0369, -0.8989, 1.2119, -0.0459, -0.9414, 1.2539, -0.0433, -0.8198, 1.5742, -0.0416, -0.8154, 1.5791, -0.035, -0.8857, 1.5947, -0.0385, -0.8857, 1.5947, -0.0385, -0.8154, 1.5791, -0.035, -0.8818, 1.6006, -0.032, -1.0371, 1.3564, 0.0356, -1.042, 1.3613, 0.0285, -1.0098, 1.416, 0.0349, -1.0098, 1.416, 0.0349, -1.042, 1.3613, 0.0285, -1.0156, 1.4199, 0.0276, -1.042, 1.3613, -0.0285, -1.0371, 1.3564, -0.0356, -1.0156, 1.4199, -0.0276, -1.0156, 1.4199, -0.0276, -1.0371, 1.3564, -0.0356, -1.0098, 1.416, -0.0347, -1.041, 1.3486, 0, -1.043, 1.3604, 0, -1.04, 1.3496, 0.0289, -1.04, 1.3496, 0.0289, -1.043, 1.3604, 0, -1.042, 1.3613, 0.0285, -1.0156, 1.4199, -0.0276, -1.0098, 1.416, -0.0347, -0.979, 1.4834, -0.0274, -0.979, 1.4834, -0.0274, -1.0098, 1.416, -0.0347, -0.9731, 1.4805, -0.0344, -0.979, 1.4834, -0.0274, -0.9731, 1.4805, -0.0344, -0.9365, 1.5449, -0.0282, -0.9365, 1.5449, -0.0282, -0.9731, 1.4805, -0.0344, -0.9302, 1.542, -0.0354, -0.9365, 1.5449, -0.0282, -0.9302, 1.542, -0.0354, -0.8926, 1.5977, -0.0315, -0.8926, 1.5977, -0.0315, -0.9302, 1.542, -0.0354, -0.8857, 1.5947, -0.0385, -1.0098, 1.416, 0.0349, -1.0156, 1.4199, 0.0276, -0.9731, 1.4805, 0.0346, -0.9731, 1.4805, 0.0346, -1.0156, 1.4199, 0.0276, -0.979, 1.4834, 0.0274, -1.043, 1.3604, 0, -1.041, 1.3486, 0, -1.042, 1.3613, -0.0285, -1.042, 1.3613, -0.0285, -1.041, 1.3486, 0, -1.04, 1.3496, -0.0289, -0.9731, 1.4805, 0.0346, -0.979, 1.4834, 0.0274, -0.9302, 1.542, 0.0354, -0.9302, 1.542, 0.0354, -0.979, 1.4834, 0.0274, -0.9365, 1.5449, 0.0282, -0.9302, 1.542, 0.0354, -0.9365, 1.5449, 0.0282, -0.8857, 1.5947, 0.0333, -0.8857, 1.5947, 0.0333, -0.9365, 1.5449, 0.0282, -0.8926, 1.5977, 0.0261, -0.8926, 1.5967, 0, -0.8818, 1.6006, 0, -0.8926, 1.5977, 0.0261, -0.8926, 1.5977, 0.0261, -0.8818, 1.6006, 0, -0.8818, 1.6006, 0.0263, -0.8818, 1.6006, 0, -0.8926, 1.5967, 0, -0.8818, 1.6006, -0.032, -0.8818, 1.6006, -0.032, -0.8926, 1.5967, 0, -0.8926, 1.5977, -0.0315, -0.9951, 1.3008, -0.0327, -0.9917, 1.3076, -0.0392, -1.04, 1.3496, -0.0289, -1.04, 1.3496, -0.0289, -0.9917, 1.3076, -0.0392, -1.0371, 1.3564, -0.0356, -0.6479, 1.5557, 0, -0.645, 1.5557, 0.0635, -0.6719, 1.5352, 0, -0.6719, 1.5352, 0, -0.645, 1.5557, 0.0635, -0.6694, 1.5352, 0.0443, -1.04, 1.3496, 0.0289, -1.0371, 1.3564, 0.0356, -0.9951, 1.3008, 0.0327, -0.9951, 1.3008, 0.0327, -1.0371, 1.3564, 0.0356, -0.9917, 1.3076, 0.0395, -0.9951, 1.3008, 0.0327, -0.9917, 1.3076, 0.0395, -0.9448, 1.2471, 0.0369, -0.9448, 1.2471, 0.0369, -0.9917, 1.3076, 0.0395, -0.9414, 1.2539, 0.0437, -0.7466, 1.5508, -0.045, -0.7422, 1.5566, -0.0383, -0.8198, 1.5742, -0.0416, -0.8198, 1.5742, -0.0416, -0.7422, 1.5566, -0.0383, -0.8154, 1.5791, -0.035, -0.9448, 1.2471, -0.0369, -0.9414, 1.2539, -0.0433, -0.9951, 1.3008, -0.0327, -0.9951, 1.3008, -0.0327, -0.9414, 1.2539, -0.0433, -0.9917, 1.3076, -0.0392, -0.8857, 1.5947, 0.0333, -0.8818, 1.6006, 0.0263, -0.8198, 1.5742, 0.038, -0.8198, 1.5742, 0.038, -0.8818, 1.6006, 0.0263, -0.8154, 1.5791, 0.0311, -0.8198, 1.5742, 0.038, -0.8154, 1.5791, 0.0311, -0.7466, 1.5508, 0.0432, -0.7466, 1.5508, 0.0432, -0.8154, 1.5791, 0.0311, -0.7422, 1.5566, 0.0363, -0.8765, 1.2188, 0.1743, -0.8931, 1.1416, 0.1776, -0.8892, 1.2188, 0.0876, -0.8892, 1.2188, 0.0876, -0.8931, 1.1416, 0.1776, -0.9063, 1.1416, 0.0892, -0.8481, 1.293, 0.1687, -0.8765, 1.2188, 0.1743, -0.8608, 1.293, 0.0848, -0.8608, 1.293, 0.0848, -0.8765, 1.2188, 0.1743, -0.8892, 1.2188, 0.0876, -0.8096, 1.3652, 0.161, -0.8481, 1.293, 0.1687, -0.8218, 1.3652, 0.0809, -0.8218, 1.3652, 0.0809, -0.8481, 1.293, 0.1687, -0.8608, 1.293, 0.0848, -0.7612, 1.4336, 0.1514, -0.8096, 1.3652, 0.161, -0.772, 1.4336, 0.076, -0.772, 1.4336, 0.076, -0.8096, 1.3652, 0.161, -0.8218, 1.3652, 0.0809, -0.7026, 1.498, 0.1398, -0.7612, 1.4336, 0.1514, -0.7129, 1.498, 0.0702, -0.7129, 1.498, 0.0702, -0.7612, 1.4336, 0.1514, -0.772, 1.4336, 0.076, -0.6353, 1.5557, 0.1263, -0.7026, 1.498, 0.1398, -0.645, 1.5557, 0.0635, -0.645, 1.5557, 0.0635, -0.7026, 1.498, 0.1398, -0.7129, 1.498, 0.0702, -0.8989, 1.2119, -0.0459, -0.8687, 1.2969, -0.0411, -0.9414, 1.2539, -0.0433, -0.9414, 1.2539, -0.0433, -0.8687, 1.2969, -0.0411, -0.9067, 1.3281, -0.0397, -0.6816, 1.5342, 0.0401, -0.7422, 1.5566, 0.0363, -0.6841, 1.5342, 0, -0.6841, 1.5342, 0, -0.7422, 1.5566, 0.0363, -0.7446, 1.5547, 0, -0.6782, 1.5283, 0.0542, -0.7129, 1.498, 0.0702, -0.7573, 1.4512, 0.0539, -0.7573, 1.4512, 0.0539, -0.7129, 1.498, 0.0702, -0.772, 1.4336, 0.076, -0.8892, 1.2188, -0.0876, -0.9063, 1.1416, -0.0892, -0.8765, 1.2188, -0.1743, -0.8765, 1.2188, -0.1743, -0.9063, 1.1416, -0.0892, -0.8931, 1.1416, -0.1776, -0.8608, 1.293, -0.0848, -0.8892, 1.2188, -0.0876, -0.8481, 1.293, -0.1687, -0.8481, 1.293, -0.1687, -0.8892, 1.2188, -0.0876, -0.8765, 1.2188, -0.1743, -0.8218, 1.3652, -0.0809, -0.8608, 1.293, -0.0848, -0.8096, 1.3652, -0.161, -0.8096, 1.3652, -0.161, -0.8608, 1.293, -0.0848, -0.8481, 1.293, -0.1687, -0.772, 1.4336, -0.076, -0.8218, 1.3652, -0.0809, -0.7612, 1.4336, -0.1514, -0.7612, 1.4336, -0.1514, -0.8218, 1.3652, -0.0809, -0.8096, 1.3652, -0.161, -0.7129, 1.498, -0.0702, -0.772, 1.4336, -0.076, -0.7026, 1.498, -0.1398, -0.7026, 1.498, -0.1398, -0.772, 1.4336, -0.076, -0.7612, 1.4336, -0.1514, -0.645, 1.5557, -0.0635, -0.7129, 1.498, -0.0702, -0.6353, 1.5557, -0.1263, -0.6353, 1.5557, -0.1263, -0.7129, 1.498, -0.0702, -0.7026, 1.498, -0.1398, -0.1769, 1.041, 0.6147, -0.2053, 1.0576, 0.604, -0.2064, 1.084, 0.5991, -0.2064, 1.084, 0.5991, -0.2053, 1.0576, 0.604, -0.2368, 1.1064, 0.5845, 0, 0.7759, 0.8354, 0, 0.7324, 0.8354, -0.0554, 0.7759, 0.8325, -0.0554, 0.7759, 0.8325, 0, 0.7324, 0.8354, -0.0472, 0.7578, 0.833, -0.0472, 0.7578, 0.833, 0, 0.7324, 0.8354, -0.0348, 0.7437, 0.8335, -0.0348, 0.7437, 0.8335, 0, 0.7324, 0.8354, -0.0159, 0.7334, 0.835, -0.9121, 0.6279, 0.0898, -0.9165, 0.6279, 0, -0.9121, 0.7153, 0.0898, -0.9121, 0.7153, 0.0898, -0.9165, 0.6279, 0, -0.9165, 0.7153, 0, -0.9121, 0.7153, 0.0898, -0.9165, 0.7153, 0, -0.9121, 0.8022, 0.0898, -0.9121, 0.8022, 0.0898, -0.9165, 0.7153, 0, -0.9165, 0.8022, 0, -0.9121, 0.8022, 0.0898, -0.9165, 0.8022, 0, -0.9121, 0.8892, 0.0898, -0.9121, 0.8892, 0.0898, -0.9165, 0.8022, 0, -0.9165, 0.8892, 0, -0.9121, 0.8892, 0.0898, -0.9165, 0.8892, 0, -0.9121, 0.9766, 0.0898, -0.9121, 0.9766, 0.0898, -0.9165, 0.8892, 0, -0.9165, 0.9766, 0, -0.9121, 0.9766, 0.0898, -0.9165, 0.9766, 0, -0.9121, 1.0635, 0.0898, -0.9121, 1.0635, 0.0898, -0.9165, 0.9766, 0, -0.9165, 1.0635, 0, -0.9121, 1.0635, 0.0898, -0.9165, 1.0635, 0, -0.9063, 1.1416, 0.0892, -0.9063, 1.1416, 0.0892, -0.9165, 1.0635, 0, -0.9106, 1.1416, 0, -0.645, 1.5557, 0.0635, -0.6479, 1.5557, 0, -0.5684, 1.6084, 0.056, -0.5684, 1.6084, 0.056, -0.6479, 1.5557, 0, -0.5713, 1.6084, 0, -0.4878, 1.6602, 0, -0.4856, 1.6602, -0.0406, -0.4888, 1.7266, 0, -0.4888, 1.7266, 0, -0.4856, 1.6602, -0.0406, -0.4871, 1.7266, -0.0369, -0.3523, 1.9189, 0.0346, -0.3354, 1.8574, 0.0391, -0.4226, 1.8955, 0.0349, -0.4226, 1.8955, 0.0349, -0.3354, 1.8574, 0.0391, -0.4138, 1.832, 0.0394, -0.8989, 0.6279, 0.1787, -0.9121, 0.6279, 0.0898, -0.8989, 0.7153, 0.1787, -0.8989, 0.7153, 0.1787, -0.9121, 0.6279, 0.0898, -0.9121, 0.7153, 0.0898, -0.8989, 0.7153, 0.1787, -0.9121, 0.7153, 0.0898, -0.8989, 0.8022, 0.1787, -0.8989, 0.8022, 0.1787, -0.9121, 0.7153, 0.0898, -0.9121, 0.8022, 0.0898, -0.8989, 0.8022, 0.1787, -0.9121, 0.8022, 0.0898, -0.8989, 0.8892, 0.1787, -0.8989, 0.8892, 0.1787, -0.9121, 0.8022, 0.0898, -0.9121, 0.8892, 0.0898, -0.8989, 0.8892, 0.1787, -0.9121, 0.8892, 0.0898, -0.8989, 0.9766, 0.1787, -0.8989, 0.9766, 0.1787, -0.9121, 0.8892, 0.0898, -0.9121, 0.9766, 0.0898, -0.8989, 0.9766, 0.1787, -0.9121, 0.9766, 0.0898, -0.8989, 1.0635, 0.1787, -0.8989, 1.0635, 0.1787, -0.9121, 0.9766, 0.0898, -0.9121, 1.0635, 0.0898, -0.8989, 1.0635, 0.1787, -0.9121, 1.0635, 0.0898, -0.8931, 1.1416, 0.1776, -0.8931, 1.1416, 0.1776, -0.9121, 1.0635, 0.0898, -0.9063, 1.1416, 0.0892, -0.5713, 1.6084, 0, -0.5684, 1.6084, -0.056, -0.4934, 1.6504, 0, -0.4934, 1.6504, 0, -0.5684, 1.6084, -0.056, -0.4907, 1.6494, -0.0549, -0.6353, 1.5557, 0.1263, -0.645, 1.5557, 0.0635, -0.5601, 1.6084, 0.1115, -0.5601, 1.6084, 0.1115, -0.645, 1.5557, 0.0635, -0.5684, 1.6084, 0.056, -0.4041, 1.7617, 0.0444, -0.395, 1.6982, 0.0489, -0.48, 1.7295, 0.0437, -0.48, 1.7295, 0.0437, -0.395, 1.6982, 0.0489, -0.4788, 1.6631, 0.0475, -0.5601, 1.6084, 0.1115, -0.5684, 1.6084, 0.056, -0.4783, 1.6533, 0.0951, -0.4783, 1.6533, 0.0951, -0.5684, 1.6084, 0.056, -0.4907, 1.6494, 0.0544, -0.3169, 1.7891, 0.044, -0.3, 1.7275, 0.0485, -0.4041, 1.7617, 0.0444, -0.4041, 1.7617, 0.0444, -0.3, 1.7275, 0.0485, -0.395, 1.6982, 0.0489, -0.0841, 1.7559, 0, -0.0793, 1.7559, 0.0651, -0.0859, 1.7559, 0.0551, -0.877, 0.6279, 0.2659, -0.8989, 0.6279, 0.1787, -0.877, 0.7153, 0.2659, -0.877, 0.7153, 0.2659, -0.8989, 0.6279, 0.1787, -0.8989, 0.7153, 0.1787, -0.877, 0.7153, 0.2659, -0.8989, 0.7153, 0.1787, -0.877, 0.8022, 0.2659, -0.877, 0.8022, 0.2659, -0.8989, 0.7153, 0.1787, -0.8989, 0.8022, 0.1787, -0.877, 0.8022, 0.2659, -0.8989, 0.8022, 0.1787, -0.877, 0.8892, 0.2659, -0.877, 0.8892, 0.2659, -0.8989, 0.8022, 0.1787, -0.8989, 0.8892, 0.1787, -0.877, 0.8892, 0.2659, -0.8989, 0.8892, 0.1787, -0.877, 0.9766, 0.2659, -0.877, 0.9766, 0.2659, -0.8989, 0.8892, 0.1787, -0.8989, 0.9766, 0.1787, -0.877, 0.9766, 0.2659, -0.8989, 0.9766, 0.1787, -0.877, 1.0635, 0.2659, -0.877, 1.0635, 0.2659, -0.8989, 0.9766, 0.1787, -0.8989, 1.0635, 0.1787, -0.877, 1.0635, 0.2659, -0.8989, 1.0635, 0.1787, -0.8716, 1.1416, 0.2644, -0.8716, 1.1416, 0.2644, -0.8989, 1.0635, 0.1787, -0.8931, 1.1416, 0.1776, -0.8716, 1.1416, 0.2644, -0.8931, 1.1416, 0.1776, -0.855, 1.2188, 0.2593, -0.855, 1.2188, 0.2593, -0.8931, 1.1416, 0.1776, -0.8765, 1.2188, 0.1743, -0.855, 1.2188, 0.2593, -0.8765, 1.2188, 0.1743, -0.8276, 1.293, 0.251, -0.8276, 1.293, 0.251, -0.8765, 1.2188, 0.1743, -0.8481, 1.293, 0.1687, -0.8276, 1.293, 0.251, -0.8481, 1.293, 0.1687, -0.79, 1.3652, 0.2396, -0.79, 1.3652, 0.2396, -0.8481, 1.293, 0.1687, -0.8096, 1.3652, 0.161, -0.79, 1.3652, 0.2396, -0.8096, 1.3652, 0.161, -0.7427, 1.4336, 0.2252, -0.7427, 1.4336, 0.2252, -0.8096, 1.3652, 0.161, -0.7612, 1.4336, 0.1514, -0.7427, 1.4336, 0.2252, -0.7612, 1.4336, 0.1514, -0.6855, 1.498, 0.208, -0.6855, 1.498, 0.208, -0.7612, 1.4336, 0.1514, -0.7026, 1.498, 0.1398, -0.6855, 1.498, 0.208, -0.7026, 1.498, 0.1398, -0.6201, 1.5557, 0.1881, -0.6201, 1.5557, 0.1881, -0.7026, 1.498, 0.1398, -0.6353, 1.5557, 0.1263, -0.6201, 1.5557, 0.1881, -0.6353, 1.5557, 0.1263, -0.5469, 1.6084, 0.1659, -0.5469, 1.6084, 0.1659, -0.6353, 1.5557, 0.1263, -0.5601, 1.6084, 0.1115, -0.5469, 1.6084, 0.1659, -0.5601, 1.6084, 0.1115, -0.4666, 1.6533, 0.1415, -0.4666, 1.6533, 0.1415, -0.5601, 1.6084, 0.1115, -0.4783, 1.6533, 0.0951, -0.4666, 1.6533, 0.1415, -0.4783, 1.6533, 0.0951, -0.3804, 1.6914, 0.1154, -0.3804, 1.6914, 0.1154, -0.4783, 1.6533, 0.0951, -0.3899, 1.6914, 0.0776, -0.3804, 1.6914, 0.1154, -0.3899, 1.6914, 0.0776, -0.2896, 1.7207, 0.0878, -0.2896, 1.7207, 0.0878, -0.3899, 1.6914, 0.0776, -0.2969, 1.7207, 0.0591, -0.2006, 1.749, 0.0479, -0.2258, 1.8096, 0.0439, -0.1016, 1.7607, 0.0479, -0.1016, 1.7607, 0.0479, -0.2258, 1.8096, 0.0439, -0.1367, 1.8203, 0.0432, -0.2896, 1.7207, 0.0878, -0.2969, 1.7207, 0.0591, -0.1952, 1.7422, 0.0592, -0.1952, 1.7422, 0.0592, -0.2969, 1.7207, 0.0591, -0.1976, 1.7422, 0.0551, -0.8467, 0.6279, 0.3506, -0.877, 0.6279, 0.2659, -0.8467, 0.7153, 0.3506, -0.8467, 0.7153, 0.3506, -0.877, 0.6279, 0.2659, -0.877, 0.7153, 0.2659, -0.8467, 0.7153, 0.3506, -0.877, 0.7153, 0.2659, -0.8467, 0.8022, 0.3506, -0.8467, 0.8022, 0.3506, -0.877, 0.7153, 0.2659, -0.877, 0.8022, 0.2659, -0.8467, 0.8022, 0.3506, -0.877, 0.8022, 0.2659, -0.8467, 0.8892, 0.3506, -0.8467, 0.8892, 0.3506, -0.877, 0.8022, 0.2659, -0.877, 0.8892, 0.2659, -0.8467, 0.8892, 0.3506, -0.877, 0.8892, 0.2659, -0.8467, 0.9766, 0.3506, -0.8467, 0.9766, 0.3506, -0.877, 0.8892, 0.2659, -0.877, 0.9766, 0.2659, -0.8467, 0.9766, 0.3506, -0.877, 0.9766, 0.2659, -0.8467, 1.0635, 0.3506, -0.8467, 1.0635, 0.3506, -0.877, 0.9766, 0.2659, -0.877, 1.0635, 0.2659, -0.8467, 1.0635, 0.3506, -0.877, 1.0635, 0.2659, -0.8413, 1.1416, 0.3484, -0.8413, 1.1416, 0.3484, -0.877, 1.0635, 0.2659, -0.8716, 1.1416, 0.2644, -0.8413, 1.1416, 0.3484, -0.8716, 1.1416, 0.2644, -0.8252, 1.2188, 0.3418, -0.8252, 1.2188, 0.3418, -0.8716, 1.1416, 0.2644, -0.855, 1.2188, 0.2593, -0.8252, 1.2188, 0.3418, -0.855, 1.2188, 0.2593, -0.7993, 1.293, 0.3311, -0.7993, 1.293, 0.3311, -0.855, 1.2188, 0.2593, -0.8276, 1.293, 0.251, -0.7993, 1.293, 0.3311, -0.8276, 1.293, 0.251, -0.7627, 1.3652, 0.3159, -0.7627, 1.3652, 0.3159, -0.8276, 1.293, 0.251, -0.79, 1.3652, 0.2396, -0.7627, 1.3652, 0.3159, -0.79, 1.3652, 0.2396, -0.7168, 1.4336, 0.2969, -0.7168, 1.4336, 0.2969, -0.79, 1.3652, 0.2396, -0.7427, 1.4336, 0.2252, -0.7168, 1.4336, 0.2969, -0.7427, 1.4336, 0.2252, -0.6621, 1.498, 0.2742, -0.6621, 1.498, 0.2742, -0.7427, 1.4336, 0.2252, -0.6855, 1.498, 0.208, -0.6621, 1.498, 0.2742, -0.6855, 1.498, 0.208, -0.5986, 1.5557, 0.2479, -0.5986, 1.5557, 0.2479, -0.6855, 1.498, 0.208, -0.6201, 1.5557, 0.1881, -0.5986, 1.5557, 0.2479, -0.6201, 1.5557, 0.1881, -0.5278, 1.6084, 0.2186, -0.5278, 1.6084, 0.2186, -0.6201, 1.5557, 0.1881, -0.5469, 1.6084, 0.1659, -0.5278, 1.6084, 0.2186, -0.5469, 1.6084, 0.1659, -0.4504, 1.6533, 0.1865, -0.4504, 1.6533, 0.1865, -0.5469, 1.6084, 0.1659, -0.4666, 1.6533, 0.1415, -0.4504, 1.6533, 0.1865, -0.4666, 1.6533, 0.1415, -0.3674, 1.6914, 0.1521, -0.3674, 1.6914, 0.1521, -0.4666, 1.6533, 0.1415, -0.3804, 1.6914, 0.1154, -0.3674, 1.6914, 0.1521, -0.3804, 1.6914, 0.1154, -0.2795, 1.7207, 0.1158, -0.2795, 1.7207, 0.1158, -0.3804, 1.6914, 0.1154, -0.2896, 1.7207, 0.0878, -0.2795, 1.7207, 0.1158, -0.2896, 1.7207, 0.0878, -0.1884, 1.7422, 0.078, -0.1884, 1.7422, 0.078, -0.2896, 1.7207, 0.0878, -0.1952, 1.7422, 0.0592, -0.1696, 1.7422, 0.1133, -0.1798, 1.7422, 0.0961, -0.0859, 1.7559, 0.0551, -0.8081, 0.6279, 0.4319, -0.8467, 0.6279, 0.3506, -0.8081, 0.7153, 0.4319, -0.8081, 0.7153, 0.4319, -0.8467, 0.6279, 0.3506, -0.8467, 0.7153, 0.3506, -0.8081, 0.7153, 0.4319, -0.8467, 0.7153, 0.3506, -0.8081, 0.8022, 0.4319, -0.8081, 0.8022, 0.4319, -0.8467, 0.7153, 0.3506, -0.8467, 0.8022, 0.3506, -0.8081, 0.8022, 0.4319, -0.8467, 0.8022, 0.3506, -0.8081, 0.8892, 0.4319, -0.8081, 0.8892, 0.4319, -0.8467, 0.8022, 0.3506, -0.8467, 0.8892, 0.3506, -0.8081, 0.8892, 0.4319, -0.8467, 0.8892, 0.3506, -0.8081, 0.9766, 0.4319, -0.8081, 0.9766, 0.4319, -0.8467, 0.8892, 0.3506, -0.8467, 0.9766, 0.3506, -0.8081, 0.9766, 0.4319, -0.8467, 0.9766, 0.3506, -0.8081, 1.0635, 0.4319, -0.8081, 1.0635, 0.4319, -0.8467, 0.9766, 0.3506, -0.8467, 1.0635, 0.3506, -0.8081, 1.0635, 0.4319, -0.8467, 1.0635, 0.3506, -0.8032, 1.1416, 0.4292, -0.8032, 1.1416, 0.4292, -0.8467, 1.0635, 0.3506, -0.8413, 1.1416, 0.3484, -0.8032, 1.1416, 0.4292, -0.8413, 1.1416, 0.3484, -0.7881, 1.2188, 0.4211, -0.7881, 1.2188, 0.4211, -0.8413, 1.1416, 0.3484, -0.8252, 1.2188, 0.3418, -0.7881, 1.2188, 0.4211, -0.8252, 1.2188, 0.3418, -0.7627, 1.293, 0.4077, -0.7627, 1.293, 0.4077, -0.8252, 1.2188, 0.3418, -0.7993, 1.293, 0.3311, -0.7627, 1.293, 0.4077, -0.7993, 1.293, 0.3311, -0.728, 1.3652, 0.3892, -0.728, 1.3652, 0.3892, -0.7993, 1.293, 0.3311, -0.7627, 1.3652, 0.3159, -0.728, 1.3652, 0.3892, -0.7627, 1.3652, 0.3159, -0.6841, 1.4336, 0.3657, -0.6841, 1.4336, 0.3657, -0.7627, 1.3652, 0.3159, -0.7168, 1.4336, 0.2969, -0.6841, 1.4336, 0.3657, -0.7168, 1.4336, 0.2969, -0.6318, 1.498, 0.3376, -0.6318, 1.498, 0.3376, -0.7168, 1.4336, 0.2969, -0.6621, 1.498, 0.2742, -0.6318, 1.498, 0.3376, -0.6621, 1.498, 0.2742, -0.5713, 1.5557, 0.3054, -0.5713, 1.5557, 0.3054, -0.6621, 1.498, 0.2742, -0.5986, 1.5557, 0.2479, -0.5713, 1.5557, 0.3054, -0.5986, 1.5557, 0.2479, -0.5039, 1.6084, 0.2693, -0.5039, 1.6084, 0.2693, -0.5986, 1.5557, 0.2479, -0.5278, 1.6084, 0.2186, -0.5039, 1.6084, 0.2693, -0.5278, 1.6084, 0.2186, -0.4299, 1.6533, 0.2299, -0.4299, 1.6533, 0.2299, -0.5278, 1.6084, 0.2186, -0.4504, 1.6533, 0.1865, -0.4299, 1.6533, 0.2299, -0.4504, 1.6533, 0.1865, -0.3506, 1.6914, 0.1874, -0.3506, 1.6914, 0.1874, -0.4504, 1.6533, 0.1865, -0.3674, 1.6914, 0.1521, -0.3506, 1.6914, 0.1874, -0.3674, 1.6914, 0.1521, -0.2668, 1.7207, 0.1427, -0.2668, 1.7207, 0.1427, -0.3674, 1.6914, 0.1521, -0.2795, 1.7207, 0.1158, -0.2668, 1.7207, 0.1427, -0.2795, 1.7207, 0.1158, -0.1798, 1.7422, 0.0961, -0.1798, 1.7422, 0.0961, -0.2795, 1.7207, 0.1158, -0.1884, 1.7422, 0.078, -0.1884, 1.7422, 0.078, -0.1952, 1.7422, 0.0592, -0.0859, 1.7559, 0.0551, -0.7617, 0.6279, 0.5088, -0.8081, 0.6279, 0.4319, -0.7617, 0.7153, 0.5088, -0.7617, 0.7153, 0.5088, -0.8081, 0.6279, 0.4319, -0.8081, 0.7153, 0.4319, -0.7617, 0.7153, 0.5088, -0.8081, 0.7153, 0.4319, -0.7617, 0.8022, 0.5088, -0.7617, 0.8022, 0.5088, -0.8081, 0.7153, 0.4319, -0.8081, 0.8022, 0.4319, -0.7617, 0.8022, 0.5088, -0.8081, 0.8022, 0.4319, -0.7617, 0.8892, 0.5088, -0.7617, 0.8892, 0.5088, -0.8081, 0.8022, 0.4319, -0.8081, 0.8892, 0.4319, -0.7617, 0.8892, 0.5088, -0.8081, 0.8892, 0.4319, -0.7617, 0.9766, 0.5088, -0.7617, 0.9766, 0.5088, -0.8081, 0.8892, 0.4319, -0.8081, 0.9766, 0.4319, -0.7617, 0.9766, 0.5088, -0.8081, 0.9766, 0.4319, -0.7617, 1.0635, 0.5088, -0.7617, 1.0635, 0.5088, -0.8081, 0.9766, 0.4319, -0.8081, 1.0635, 0.4319, -0.7617, 1.0635, 0.5088, -0.8081, 1.0635, 0.4319, -0.7573, 1.1416, 0.5059, -0.7573, 1.1416, 0.5059, -0.8081, 1.0635, 0.4319, -0.8032, 1.1416, 0.4292, -0.7573, 1.1416, 0.5059, -0.8032, 1.1416, 0.4292, -0.7427, 1.2188, 0.4963, -0.7427, 1.2188, 0.4963, -0.8032, 1.1416, 0.4292, -0.7881, 1.2188, 0.4211, -0.7427, 1.2188, 0.4963, -0.7881, 1.2188, 0.4211, -0.7192, 1.293, 0.4805, -0.7192, 1.293, 0.4805, -0.7881, 1.2188, 0.4211, -0.7627, 1.293, 0.4077, -0.7192, 1.293, 0.4805, -0.7627, 1.293, 0.4077, -0.6865, 1.3652, 0.4587, -0.6865, 1.3652, 0.4587, -0.7627, 1.293, 0.4077, -0.728, 1.3652, 0.3892, -0.6865, 1.3652, 0.4587, -0.728, 1.3652, 0.3892, -0.645, 1.4336, 0.4312, -0.645, 1.4336, 0.4312, -0.728, 1.3652, 0.3892, -0.6841, 1.4336, 0.3657, -0.645, 1.4336, 0.4312, -0.6841, 1.4336, 0.3657, -0.5957, 1.498, 0.3979, -0.5957, 1.498, 0.3979, -0.6841, 1.4336, 0.3657, -0.6318, 1.498, 0.3376, -0.5957, 1.498, 0.3979, -0.6318, 1.498, 0.3376, -0.5386, 1.5557, 0.3599, -0.5386, 1.5557, 0.3599, -0.6318, 1.498, 0.3376, -0.5713, 1.5557, 0.3054, -0.5386, 1.5557, 0.3599, -0.5713, 1.5557, 0.3054, -0.4751, 1.6084, 0.3174, -0.4751, 1.6084, 0.3174, -0.5713, 1.5557, 0.3054, -0.5039, 1.6084, 0.2693, -0.4751, 1.6084, 0.3174, -0.5039, 1.6084, 0.2693, -0.4053, 1.6533, 0.2708, -0.4053, 1.6533, 0.2708, -0.5039, 1.6084, 0.2693, -0.4299, 1.6533, 0.2299, -0.4053, 1.6533, 0.2708, -0.4299, 1.6533, 0.2299, -0.3306, 1.6914, 0.2209, -0.3306, 1.6914, 0.2209, -0.4299, 1.6533, 0.2299, -0.3506, 1.6914, 0.1874, -0.3306, 1.6914, 0.2209, -0.3506, 1.6914, 0.1874, -0.2517, 1.7207, 0.1681, -0.2517, 1.7207, 0.1681, -0.3506, 1.6914, 0.1874, -0.2668, 1.7207, 0.1427, -0.2517, 1.7207, 0.1681, -0.2668, 1.7207, 0.1427, -0.1696, 1.7422, 0.1133, -0.1696, 1.7422, 0.1133, -0.2668, 1.7207, 0.1427, -0.1798, 1.7422, 0.0961, -0.1576, 1.7422, 0.1294, -0.1696, 1.7422, 0.1133, -0.0793, 1.7559, 0.0651, -0.0793, 1.7559, 0.0651, -0.1696, 1.7422, 0.1133, -0.0859, 1.7559, 0.0551, -0.7085, 0.6279, 0.5811, -0.7617, 0.6279, 0.5088, -0.7085, 0.7153, 0.5811, -0.7085, 0.7153, 0.5811, -0.7617, 0.6279, 0.5088, -0.7617, 0.7153, 0.5088, -0.7085, 0.7153, 0.5811, -0.7617, 0.7153, 0.5088, -0.7085, 0.8022, 0.5811, -0.7085, 0.8022, 0.5811, -0.7617, 0.7153, 0.5088, -0.7617, 0.8022, 0.5088, -0.7085, 0.8022, 0.5811, -0.7617, 0.8022, 0.5088, -0.7085, 0.8892, 0.5811, -0.7085, 0.8892, 0.5811, -0.7617, 0.8022, 0.5088, -0.7617, 0.8892, 0.5088, -0.7085, 0.8892, 0.5811, -0.7617, 0.8892, 0.5088, -0.7085, 0.9766, 0.5811, -0.7085, 0.9766, 0.5811, -0.7617, 0.8892, 0.5088, -0.7617, 0.9766, 0.5088, -0.7085, 0.9766, 0.5811, -0.7617, 0.9766, 0.5088, -0.7085, 1.0635, 0.5811, -0.7085, 1.0635, 0.5811, -0.7617, 0.9766, 0.5088, -0.7617, 1.0635, 0.5088, -0.7085, 1.0635, 0.5811, -0.7617, 1.0635, 0.5088, -0.7041, 1.1416, 0.5776, -0.7041, 1.1416, 0.5776, -0.7617, 1.0635, 0.5088, -0.7573, 1.1416, 0.5059, -0.7041, 1.1416, 0.5776, -0.7573, 1.1416, 0.5059, -0.6904, 1.2188, 0.5669, -0.6904, 1.2188, 0.5669, -0.7573, 1.1416, 0.5059, -0.7427, 1.2188, 0.4963, -0.6904, 1.2188, 0.5669, -0.7427, 1.2188, 0.4963, -0.6685, 1.293, 0.5488, -0.6685, 1.293, 0.5488, -0.7427, 1.2188, 0.4963, -0.7192, 1.293, 0.4805, -0.6685, 1.293, 0.5488, -0.7192, 1.293, 0.4805, -0.6382, 1.3652, 0.5239, -0.6382, 1.3652, 0.5239, -0.7192, 1.293, 0.4805, -0.6865, 1.3652, 0.4587, -0.6382, 1.3652, 0.5239, -0.6865, 1.3652, 0.4587, -0.5996, 1.4336, 0.4922, -0.5996, 1.4336, 0.4922, -0.6865, 1.3652, 0.4587, -0.645, 1.4336, 0.4312, -0.5996, 1.4336, 0.4922, -0.645, 1.4336, 0.4312, -0.5537, 1.498, 0.4546, -0.5537, 1.498, 0.4546, -0.645, 1.4336, 0.4312, -0.5957, 1.498, 0.3979, -0.5537, 1.498, 0.4546, -0.5957, 1.498, 0.3979, -0.501, 1.5557, 0.4111, -0.501, 1.5557, 0.4111, -0.5957, 1.498, 0.3979, -0.5386, 1.5557, 0.3599, -0.501, 1.5557, 0.4111, -0.5386, 1.5557, 0.3599, -0.4417, 1.6084, 0.3625, -0.4417, 1.6084, 0.3625, -0.5386, 1.5557, 0.3599, -0.4751, 1.6084, 0.3174, -0.4417, 1.6084, 0.3625, -0.4751, 1.6084, 0.3174, -0.377, 1.6533, 0.3093, -0.377, 1.6533, 0.3093, -0.4751, 1.6084, 0.3174, -0.4053, 1.6533, 0.2708, -0.377, 1.6533, 0.3093, -0.4053, 1.6533, 0.2708, -0.3074, 1.6914, 0.2522, -0.3074, 1.6914, 0.2522, -0.4053, 1.6533, 0.2708, -0.3306, 1.6914, 0.2209, -0.3074, 1.6914, 0.2522, -0.3306, 1.6914, 0.2209, -0.234, 1.7207, 0.192, -0.234, 1.7207, 0.192, -0.3306, 1.6914, 0.2209, -0.2517, 1.7207, 0.1681, -0.234, 1.7207, 0.192, -0.2517, 1.7207, 0.1681, -0.1576, 1.7422, 0.1294, -0.1576, 1.7422, 0.1294, -0.2517, 1.7207, 0.1681, -0.1696, 1.7422, 0.1133, -0.1696, 1.7422, -0.1133, -0.1576, 1.7422, -0.1294, -0.0853, 1.7559, -0.0562, -0.0853, 1.7559, -0.0562, -0.1576, 1.7422, -0.1294, -0.0793, 1.7559, -0.0651, -0.6479, 0.6279, 0.6479, -0.7085, 0.6279, 0.5811, -0.6079, 0.7432, 0.6841, -0.6079, 0.7432, 0.6841, -0.7085, 0.6279, 0.5811, -0.7085, 0.7153, 0.5811, -0.6079, 0.7432, 0.6841, -0.7085, 0.7153, 0.5811, -0.644, 0.8047, 0.6514, -0.644, 0.8047, 0.6514, -0.7085, 0.7153, 0.5811, -0.7085, 0.8022, 0.5811, -0.644, 0.8047, 0.6514, -0.7085, 0.8022, 0.5811, -0.6621, 0.8784, 0.6323, -0.6621, 0.8784, 0.6323, -0.7085, 0.8022, 0.5811, -0.7085, 0.8892, 0.5811, -0.6621, 0.8784, 0.6323, -0.7085, 0.8892, 0.5811, -0.665, 0.957, 0.6294, -0.665, 0.957, 0.6294, -0.7085, 0.8892, 0.5811, -0.7085, 0.9766, 0.5811, -0.665, 0.957, 0.6294, -0.7085, 0.9766, 0.5811, -0.6519, 1.0332, 0.6436, -0.6519, 1.0332, 0.6436, -0.7085, 0.9766, 0.5811, -0.7085, 1.0635, 0.5811, -0.6519, 1.0332, 0.6436, -0.7085, 1.0635, 0.5811, -0.6196, 1.0996, 0.6699, -0.6196, 1.0996, 0.6699, -0.7085, 1.0635, 0.5811, -0.7041, 1.1416, 0.5776, -0.6196, 1.0996, 0.6699, -0.7041, 1.1416, 0.5776, -0.6318, 1.2188, 0.6318, -0.6318, 1.2188, 0.6318, -0.7041, 1.1416, 0.5776, -0.6904, 1.2188, 0.5669, -0.6318, 1.2188, 0.6318, -0.6904, 1.2188, 0.5669, -0.6113, 1.293, 0.6113, -0.6113, 1.293, 0.6113, -0.6904, 1.2188, 0.5669, -0.6685, 1.293, 0.5488, -0.6113, 1.293, 0.6113, -0.6685, 1.293, 0.5488, -0.5835, 1.3652, 0.5835, -0.5835, 1.3652, 0.5835, -0.6685, 1.293, 0.5488, -0.6382, 1.3652, 0.5239, -0.5835, 1.3652, 0.5835, -0.6382, 1.3652, 0.5239, -0.5483, 1.4336, 0.5483, -0.5483, 1.4336, 0.5483, -0.6382, 1.3652, 0.5239, -0.5996, 1.4336, 0.4922, -0.5483, 1.4336, 0.5483, -0.5996, 1.4336, 0.4922, -0.5063, 1.498, 0.5063, -0.5063, 1.498, 0.5063, -0.5996, 1.4336, 0.4922, -0.5537, 1.498, 0.4546, -0.5063, 1.498, 0.5063, -0.5537, 1.498, 0.4546, -0.4583, 1.5557, 0.4583, -0.4583, 1.5557, 0.4583, -0.5537, 1.498, 0.4546, -0.501, 1.5557, 0.4111, -0.4583, 1.5557, 0.4583, -0.501, 1.5557, 0.4111, -0.4041, 1.6084, 0.4041, -0.4041, 1.6084, 0.4041, -0.501, 1.5557, 0.4111, -0.4417, 1.6084, 0.3625, -0.4041, 1.6084, 0.4041, -0.4417, 1.6084, 0.3625, -0.3447, 1.6533, 0.3447, -0.3447, 1.6533, 0.3447, -0.4417, 1.6084, 0.3625, -0.377, 1.6533, 0.3093, -0.3447, 1.6533, 0.3447, -0.377, 1.6533, 0.3093, -0.281, 1.6914, 0.281, -0.281, 1.6914, 0.281, -0.377, 1.6533, 0.3093, -0.3074, 1.6914, 0.2522, -0.281, 1.6914, 0.281, -0.3074, 1.6914, 0.2522, -0.214, 1.7207, 0.214, -0.214, 1.7207, 0.214, -0.3074, 1.6914, 0.2522, -0.234, 1.7207, 0.192, -0.214, 1.7207, 0.214, -0.234, 1.7207, 0.192, -0.1442, 1.7422, 0.1442, -0.1442, 1.7422, 0.1442, -0.234, 1.7207, 0.192, -0.1576, 1.7422, 0.1294, -0.1442, 1.7422, 0.1442, -0.1576, 1.7422, 0.1294, -0.0726, 1.7559, 0.0726, -0.0726, 1.7559, 0.0726, -0.1576, 1.7422, 0.1294, -0.0793, 1.7559, 0.0651, -0.5811, 0.6279, 0.7085, -0.6479, 0.6279, 0.6479, -0.5571, 0.6997, 0.7266, -0.5571, 0.6997, 0.7266, -0.6479, 0.6279, 0.6479, -0.6079, 0.7432, 0.6841, -0.5708, 1.1504, 0.7065, -0.6196, 1.0996, 0.6699, -0.5669, 1.2188, 0.6904, -0.5669, 1.2188, 0.6904, -0.6196, 1.0996, 0.6699, -0.6318, 1.2188, 0.6318, -0.5669, 1.2188, 0.6904, -0.6318, 1.2188, 0.6318, -0.5488, 1.293, 0.6685, -0.5488, 1.293, 0.6685, -0.6318, 1.2188, 0.6318, -0.6113, 1.293, 0.6113, -0.5488, 1.293, 0.6685, -0.6113, 1.293, 0.6113, -0.5239, 1.3652, 0.6382, -0.5239, 1.3652, 0.6382, -0.6113, 1.293, 0.6113, -0.5835, 1.3652, 0.5835, -0.5239, 1.3652, 0.6382, -0.5835, 1.3652, 0.5835, -0.4922, 1.4336, 0.5996, -0.4922, 1.4336, 0.5996, -0.5835, 1.3652, 0.5835, -0.5483, 1.4336, 0.5483, -0.4922, 1.4336, 0.5996, -0.5483, 1.4336, 0.5483, -0.4546, 1.498, 0.5537, -0.4546, 1.498, 0.5537, -0.5483, 1.4336, 0.5483, -0.5063, 1.498, 0.5063, -0.4546, 1.498, 0.5537, -0.5063, 1.498, 0.5063, -0.4111, 1.5557, 0.501, -0.4111, 1.5557, 0.501, -0.5063, 1.498, 0.5063, -0.4583, 1.5557, 0.4583, -0.4111, 1.5557, 0.501, -0.4583, 1.5557, 0.4583, -0.3625, 1.6084, 0.4417, -0.3625, 1.6084, 0.4417, -0.4583, 1.5557, 0.4583, -0.4041, 1.6084, 0.4041, -0.3625, 1.6084, 0.4417, -0.4041, 1.6084, 0.4041, -0.3093, 1.6533, 0.377, -0.3093, 1.6533, 0.377, -0.4041, 1.6084, 0.4041, -0.3447, 1.6533, 0.3447, -0.3093, 1.6533, 0.377, -0.3447, 1.6533, 0.3447, -0.2522, 1.6914, 0.3074, -0.2522, 1.6914, 0.3074, -0.3447, 1.6533, 0.3447, -0.281, 1.6914, 0.281, -0.2522, 1.6914, 0.3074, -0.281, 1.6914, 0.281, -0.192, 1.7207, 0.234, -0.192, 1.7207, 0.234, -0.281, 1.6914, 0.281, -0.214, 1.7207, 0.214, -0.192, 1.7207, 0.234, -0.214, 1.7207, 0.214, -0.1294, 1.7422, 0.1576, -0.1294, 1.7422, 0.1576, -0.214, 1.7207, 0.214, -0.1442, 1.7422, 0.1442, -0.1294, 1.7422, 0.1576, -0.1442, 1.7422, 0.1442, -0.0651, 1.7559, 0.0793, -0.0651, 1.7559, 0.0793, -0.1442, 1.7422, 0.1442, -0.0726, 1.7559, 0.0726, -0.5088, 0.6279, 0.7617, -0.5811, 0.6279, 0.7085, -0.4937, 0.6792, 0.771, -0.4937, 0.6792, 0.771, -0.5811, 0.6279, 0.7085, -0.5571, 0.6997, 0.7266, -0.5708, 1.1504, 0.7065, -0.5659, 1.1387, 0.7119, -0.6196, 1.0996, 0.6699, -0.6196, 1.0996, 0.6699, -0.5659, 1.1387, 0.7119, -0.6128, 1.0908, 0.6772, -0.4937, 0.6792, 0.771, -0.4927, 0.6924, 0.772, -0.4243, 0.6831, 0.812, -0.4243, 0.6831, 0.812, -0.4927, 0.6924, 0.772, -0.4268, 0.6958, 0.8105, -0.6079, 0.7432, 0.6841, -0.6011, 0.7529, 0.6904, -0.5571, 0.6997, 0.7266, -0.5571, 0.6997, 0.7266, -0.6011, 0.7529, 0.6904, -0.5527, 0.7119, 0.73, -0.4089, 0.749, 0.4873, -0.4326, 0.77, 0.4668, -0.436, 0.7969, 0.4661, -0.436, 0.7969, 0.4661, -0.4326, 0.77, 0.4668, -0.4565, 0.8091, 0.4473, -0.5078, 1.1787, 0.7451, -0.5063, 1.166, 0.748, -0.5708, 1.1504, 0.7065, -0.5708, 1.1504, 0.7065, -0.5063, 1.166, 0.748, -0.5659, 1.1387, 0.7119, -0.5078, 1.1787, 0.7451, -0.5708, 1.1504, 0.7065, -0.4963, 1.2188, 0.7427, -0.4963, 1.2188, 0.7427, -0.5708, 1.1504, 0.7065, -0.5669, 1.2188, 0.6904, -0.4963, 1.2188, 0.7427, -0.5669, 1.2188, 0.6904, -0.4805, 1.293, 0.7192, -0.4805, 1.293, 0.7192, -0.5669, 1.2188, 0.6904, -0.5488, 1.293, 0.6685, -0.4805, 1.293, 0.7192, -0.5488, 1.293, 0.6685, -0.4587, 1.3652, 0.6865, -0.4587, 1.3652, 0.6865, -0.5488, 1.293, 0.6685, -0.5239, 1.3652, 0.6382, -0.4587, 1.3652, 0.6865, -0.5239, 1.3652, 0.6382, -0.4312, 1.4336, 0.645, -0.4312, 1.4336, 0.645, -0.5239, 1.3652, 0.6382, -0.4922, 1.4336, 0.5996, -0.4312, 1.4336, 0.645, -0.4922, 1.4336, 0.5996, -0.3979, 1.498, 0.5957, -0.3979, 1.498, 0.5957, -0.4922, 1.4336, 0.5996, -0.4546, 1.498, 0.5537, -0.3979, 1.498, 0.5957, -0.4546, 1.498, 0.5537, -0.3599, 1.5557, 0.5386, -0.3599, 1.5557, 0.5386, -0.4546, 1.498, 0.5537, -0.4111, 1.5557, 0.501, -0.3599, 1.5557, 0.5386, -0.4111, 1.5557, 0.501, -0.3174, 1.6084, 0.4751, -0.3174, 1.6084, 0.4751, -0.4111, 1.5557, 0.501, -0.3625, 1.6084, 0.4417, -0.3174, 1.6084, 0.4751, -0.3625, 1.6084, 0.4417, -0.2708, 1.6533, 0.4053, -0.2708, 1.6533, 0.4053, -0.3625, 1.6084, 0.4417, -0.3093, 1.6533, 0.377, -0.2708, 1.6533, 0.4053, -0.3093, 1.6533, 0.377, -0.2209, 1.6914, 0.3306, -0.2209, 1.6914, 0.3306, -0.3093, 1.6533, 0.377, -0.2522, 1.6914, 0.3074, -0.2209, 1.6914, 0.3306, -0.2522, 1.6914, 0.3074, -0.1681, 1.7207, 0.2517, -0.1681, 1.7207, 0.2517, -0.2522, 1.6914, 0.3074, -0.192, 1.7207, 0.234, -0.1681, 1.7207, 0.2517, -0.192, 1.7207, 0.234, -0.1133, 1.7422, 0.1696, -0.1133, 1.7422, 0.1696, -0.192, 1.7207, 0.234, -0.1294, 1.7422, 0.1576, -0.1133, 1.7422, 0.1696, -0.1294, 1.7422, 0.1576, -0.057, 1.7559, 0.0853, -0.057, 1.7559, 0.0853, -0.1294, 1.7422, 0.1576, -0.0651, 1.7559, 0.0793, -0.4319, 0.6279, 0.8081, -0.5088, 0.6279, 0.7617, -0.4243, 0.6831, 0.812, -0.4243, 0.6831, 0.812, -0.5088, 0.6279, 0.7617, -0.4937, 0.6792, 0.771, -0.2451, 0.9819, 0.8823, -0.2573, 0.9795, 0.8779, -0.2705, 1.0557, 0.8755, -0.2705, 1.0557, 0.8755, -0.2573, 0.9795, 0.8779, -0.2815, 1.0488, 0.8716, -0.3147, 1.1172, 0.8555, -0.3235, 1.1074, 0.853, -0.373, 1.1621, 0.8247, -0.373, 1.1621, 0.8247, -0.3235, 1.1074, 0.853, -0.3789, 1.1494, 0.8237, -0.6196, 1.0996, 0.6699, -0.6128, 1.0908, 0.6772, -0.6519, 1.0332, 0.6436, -0.6519, 1.0332, 0.6436, -0.6128, 1.0908, 0.6772, -0.6431, 1.0283, 0.6523, -0.436, 0.9712, 0.4661, -0.4775, 0.9531, 0.4265, -0.436, 1.0576, 0.4661, -0.436, 1.0576, 0.4661, -0.4775, 0.9531, 0.4265, -0.4646, 1.0273, 0.4404, -0.373, 1.1621, 0.8247, -0.3789, 1.1494, 0.8237, -0.4397, 1.1826, 0.7861, -0.4397, 1.1826, 0.7861, -0.3789, 1.1494, 0.8237, -0.4419, 1.1699, 0.7866, -0.4397, 1.1826, 0.7861, -0.5078, 1.1787, 0.7451, -0.4211, 1.2188, 0.7881, -0.4211, 1.2188, 0.7881, -0.5078, 1.1787, 0.7451, -0.4963, 1.2188, 0.7427, -0.4211, 1.2188, 0.7881, -0.4963, 1.2188, 0.7427, -0.4077, 1.293, 0.7627, -0.4077, 1.293, 0.7627, -0.4963, 1.2188, 0.7427, -0.4805, 1.293, 0.7192, -0.4077, 1.293, 0.7627, -0.4805, 1.293, 0.7192, -0.3892, 1.3652, 0.728, -0.3892, 1.3652, 0.728, -0.4805, 1.293, 0.7192, -0.4587, 1.3652, 0.6865, -0.3892, 1.3652, 0.728, -0.4587, 1.3652, 0.6865, -0.3657, 1.4336, 0.6841, -0.3657, 1.4336, 0.6841, -0.4587, 1.3652, 0.6865, -0.4312, 1.4336, 0.645, -0.3657, 1.4336, 0.6841, -0.4312, 1.4336, 0.645, -0.3376, 1.498, 0.6318, -0.3376, 1.498, 0.6318, -0.4312, 1.4336, 0.645, -0.3979, 1.498, 0.5957, -0.3376, 1.498, 0.6318, -0.3979, 1.498, 0.5957, -0.3054, 1.5557, 0.5713, -0.3054, 1.5557, 0.5713, -0.3979, 1.498, 0.5957, -0.3599, 1.5557, 0.5386, -0.3054, 1.5557, 0.5713, -0.3599, 1.5557, 0.5386, -0.2693, 1.6084, 0.5039, -0.2693, 1.6084, 0.5039, -0.3599, 1.5557, 0.5386, -0.3174, 1.6084, 0.4751, -0.2693, 1.6084, 0.5039, -0.3174, 1.6084, 0.4751, -0.2299, 1.6533, 0.4299, -0.2299, 1.6533, 0.4299, -0.3174, 1.6084, 0.4751, -0.2708, 1.6533, 0.4053, -0.2299, 1.6533, 0.4299, -0.2708, 1.6533, 0.4053, -0.1874, 1.6914, 0.3506, -0.1874, 1.6914, 0.3506, -0.2708, 1.6533, 0.4053, -0.2209, 1.6914, 0.3306, -0.1874, 1.6914, 0.3506, -0.2209, 1.6914, 0.3306, -0.1427, 1.7207, 0.2668, -0.1427, 1.7207, 0.2668, -0.2209, 1.6914, 0.3306, -0.1681, 1.7207, 0.2517, -0.1427, 1.7207, 0.2668, -0.1681, 1.7207, 0.2517, -0.0961, 1.7422, 0.1798, -0.0961, 1.7422, 0.1798, -0.1681, 1.7207, 0.2517, -0.1133, 1.7422, 0.1696, -0.0961, 1.7422, 0.1798, -0.1133, 1.7422, 0.1696, -0.0484, 1.7559, 0.0905, -0.0484, 1.7559, 0.0905, -0.1133, 1.7422, 0.1696, -0.057, 1.7559, 0.0853, -0.3506, 0.6279, 0.8467, -0.4319, 0.6279, 0.8081, -0.3579, 0.7114, 0.8433, -0.3579, 0.7114, 0.8433, -0.4319, 0.6279, 0.8081, -0.4243, 0.6831, 0.812, -0.665, 0.957, 0.6294, -0.6553, 0.9561, 0.6382, -0.6621, 0.8784, 0.6323, -0.6621, 0.8784, 0.6323, -0.6553, 0.9561, 0.6382, -0.6528, 0.8809, 0.6411, -0.4243, 0.6831, 0.812, -0.4268, 0.6958, 0.8105, -0.3579, 0.7114, 0.8433, -0.3579, 0.7114, 0.8433, -0.4268, 0.6958, 0.8105, -0.364, 0.7227, 0.8408, -0.2705, 1.0557, 0.8755, -0.2815, 1.0488, 0.8716, -0.3147, 1.1172, 0.8555, -0.3147, 1.1172, 0.8555, -0.2815, 1.0488, 0.8716, -0.3235, 1.1074, 0.853, -0.3003, 0.7607, 0.8647, -0.3098, 0.7695, 0.8613, -0.2612, 0.8267, 0.8779, -0.2612, 0.8267, 0.8779, -0.3098, 0.7695, 0.8613, -0.2727, 0.832, 0.874, -0.3579, 0.7114, 0.8433, -0.364, 0.7227, 0.8408, -0.3003, 0.7607, 0.8647, -0.3003, 0.7607, 0.8647, -0.364, 0.7227, 0.8408, -0.3098, 0.7695, 0.8613, -0.373, 1.1621, 0.8247, -0.4397, 1.1826, 0.7861, -0.3418, 1.2188, 0.8252, -0.3418, 1.2188, 0.8252, -0.4397, 1.1826, 0.7861, -0.4211, 1.2188, 0.7881, -0.3418, 1.2188, 0.8252, -0.4211, 1.2188, 0.7881, -0.3311, 1.293, 0.7993, -0.3311, 1.293, 0.7993, -0.4211, 1.2188, 0.7881, -0.4077, 1.293, 0.7627, -0.3311, 1.293, 0.7993, -0.4077, 1.293, 0.7627, -0.3159, 1.3652, 0.7627, -0.3159, 1.3652, 0.7627, -0.4077, 1.293, 0.7627, -0.3892, 1.3652, 0.728, -0.3159, 1.3652, 0.7627, -0.3892, 1.3652, 0.728, -0.2969, 1.4336, 0.7168, -0.2969, 1.4336, 0.7168, -0.3892, 1.3652, 0.728, -0.3657, 1.4336, 0.6841, -0.2969, 1.4336, 0.7168, -0.3657, 1.4336, 0.6841, -0.2742, 1.498, 0.6621, -0.2742, 1.498, 0.6621, -0.3657, 1.4336, 0.6841, -0.3376, 1.498, 0.6318, -0.2742, 1.498, 0.6621, -0.3376, 1.498, 0.6318, -0.2479, 1.5557, 0.5986, -0.2479, 1.5557, 0.5986, -0.3376, 1.498, 0.6318, -0.3054, 1.5557, 0.5713, -0.2479, 1.5557, 0.5986, -0.3054, 1.5557, 0.5713, -0.2186, 1.6084, 0.5278, -0.2186, 1.6084, 0.5278, -0.3054, 1.5557, 0.5713, -0.2693, 1.6084, 0.5039, -0.2186, 1.6084, 0.5278, -0.2693, 1.6084, 0.5039, -0.1865, 1.6533, 0.4504, -0.1865, 1.6533, 0.4504, -0.2693, 1.6084, 0.5039, -0.2299, 1.6533, 0.4299, -0.1865, 1.6533, 0.4504, -0.2299, 1.6533, 0.4299, -0.1521, 1.6914, 0.3674, -0.1521, 1.6914, 0.3674, -0.2299, 1.6533, 0.4299, -0.1874, 1.6914, 0.3506, -0.1521, 1.6914, 0.3674, -0.1874, 1.6914, 0.3506, -0.1158, 1.7207, 0.2795, -0.1158, 1.7207, 0.2795, -0.1874, 1.6914, 0.3506, -0.1427, 1.7207, 0.2668, -0.1158, 1.7207, 0.2795, -0.1427, 1.7207, 0.2668, -0.078, 1.7422, 0.1884, -0.078, 1.7422, 0.1884, -0.1427, 1.7207, 0.2668, -0.0961, 1.7422, 0.1798, -0.078, 1.7422, 0.1884, -0.0961, 1.7422, 0.1798, -0.0392, 1.7559, 0.0948, -0.0392, 1.7559, 0.0948, -0.0961, 1.7422, 0.1798, -0.0484, 1.7559, 0.0905, -0.2659, 0.6279, 0.877, -0.3506, 0.6279, 0.8467, -0.3003, 0.7607, 0.8647, -0.3003, 0.7607, 0.8647, -0.3506, 0.6279, 0.8467, -0.3579, 0.7114, 0.8433, -0.2612, 0.8267, 0.8779, -0.2727, 0.832, 0.874, -0.2418, 0.9033, 0.8828, -0.2418, 0.9033, 0.8828, -0.2727, 0.832, 0.874, -0.2542, 0.9048, 0.8789, -0.6519, 1.0332, 0.6436, -0.6431, 1.0283, 0.6523, -0.665, 0.957, 0.6294, -0.665, 0.957, 0.6294, -0.6431, 1.0283, 0.6523, -0.6553, 0.9561, 0.6382, -0.5571, 0.6997, 0.7266, -0.5527, 0.7119, 0.73, -0.4937, 0.6792, 0.771, -0.4937, 0.6792, 0.771, -0.5527, 0.7119, 0.73, -0.4927, 0.6924, 0.772, -0.2418, 0.9033, 0.8828, -0.2542, 0.9048, 0.8789, -0.2451, 0.9819, 0.8823, -0.2451, 0.9819, 0.8823, -0.2542, 0.9048, 0.8789, -0.2573, 0.9795, 0.8779, -0.6621, 0.8784, 0.6323, -0.6528, 0.8809, 0.6411, -0.644, 0.8047, 0.6514, -0.644, 0.8047, 0.6514, -0.6528, 0.8809, 0.6411, -0.6353, 0.811, 0.6592, -0.3147, 1.1172, 0.8555, -0.373, 1.1621, 0.8247, -0.2593, 1.2188, 0.855, -0.2593, 1.2188, 0.855, -0.373, 1.1621, 0.8247, -0.3418, 1.2188, 0.8252, -0.2593, 1.2188, 0.855, -0.3418, 1.2188, 0.8252, -0.251, 1.293, 0.8276, -0.251, 1.293, 0.8276, -0.3418, 1.2188, 0.8252, -0.3311, 1.293, 0.7993, -0.251, 1.293, 0.8276, -0.3311, 1.293, 0.7993, -0.2396, 1.3652, 0.79, -0.2396, 1.3652, 0.79, -0.3311, 1.293, 0.7993, -0.3159, 1.3652, 0.7627, -0.2396, 1.3652, 0.79, -0.3159, 1.3652, 0.7627, -0.2252, 1.4336, 0.7427, -0.2252, 1.4336, 0.7427, -0.3159, 1.3652, 0.7627, -0.2969, 1.4336, 0.7168, -0.2252, 1.4336, 0.7427, -0.2969, 1.4336, 0.7168, -0.208, 1.498, 0.6855, -0.208, 1.498, 0.6855, -0.2969, 1.4336, 0.7168, -0.2742, 1.498, 0.6621, -0.208, 1.498, 0.6855, -0.2742, 1.498, 0.6621, -0.1881, 1.5557, 0.6201, -0.1881, 1.5557, 0.6201, -0.2742, 1.498, 0.6621, -0.2479, 1.5557, 0.5986, -0.1881, 1.5557, 0.6201, -0.2479, 1.5557, 0.5986, -0.1659, 1.6084, 0.5469, -0.1659, 1.6084, 0.5469, -0.2479, 1.5557, 0.5986, -0.2186, 1.6084, 0.5278, -0.1659, 1.6084, 0.5469, -0.2186, 1.6084, 0.5278, -0.1415, 1.6533, 0.4666, -0.1415, 1.6533, 0.4666, -0.2186, 1.6084, 0.5278, -0.1865, 1.6533, 0.4504, -0.1415, 1.6533, 0.4666, -0.1865, 1.6533, 0.4504, -0.1154, 1.6914, 0.3804, -0.1154, 1.6914, 0.3804, -0.1865, 1.6533, 0.4504, -0.1521, 1.6914, 0.3674, -0.1154, 1.6914, 0.3804, -0.1521, 1.6914, 0.3674, -0.0878, 1.7207, 0.2896, -0.0878, 1.7207, 0.2896, -0.1521, 1.6914, 0.3674, -0.1158, 1.7207, 0.2795, -0.0878, 1.7207, 0.2896, -0.1158, 1.7207, 0.2795, -0.0592, 1.7422, 0.1952, -0.0592, 1.7422, 0.1952, -0.1158, 1.7207, 0.2795, -0.078, 1.7422, 0.1884, -0.0592, 1.7422, 0.1952, -0.078, 1.7422, 0.1884, -0.0298, 1.7559, 0.0982, -0.0298, 1.7559, 0.0982, -0.078, 1.7422, 0.1884, -0.0392, 1.7559, 0.0948, -0.1787, 0.6279, 0.8989, -0.2659, 0.6279, 0.877, -0.1787, 0.7153, 0.8989, -0.1787, 0.7153, 0.8989, -0.2659, 0.6279, 0.877, -0.3003, 0.7607, 0.8647, -0.1787, 0.7153, 0.8989, -0.3003, 0.7607, 0.8647, -0.1787, 0.8022, 0.8989, -0.1787, 0.8022, 0.8989, -0.3003, 0.7607, 0.8647, -0.2612, 0.8267, 0.8779, -0.1787, 0.8022, 0.8989, -0.2612, 0.8267, 0.8779, -0.1787, 0.8892, 0.8989, -0.1787, 0.8892, 0.8989, -0.2612, 0.8267, 0.8779, -0.2418, 0.9033, 0.8828, -0.1787, 0.8892, 0.8989, -0.2418, 0.9033, 0.8828, -0.1787, 0.9766, 0.8989, -0.1787, 0.9766, 0.8989, -0.2418, 0.9033, 0.8828, -0.2451, 0.9819, 0.8823, -0.1787, 0.9766, 0.8989, -0.2451, 0.9819, 0.8823, -0.1787, 1.0635, 0.8989, -0.1787, 1.0635, 0.8989, -0.2451, 0.9819, 0.8823, -0.2705, 1.0557, 0.8755, -0.1787, 1.0635, 0.8989, -0.2705, 1.0557, 0.8755, -0.1776, 1.1416, 0.8931, -0.1776, 1.1416, 0.8931, -0.2705, 1.0557, 0.8755, -0.3147, 1.1172, 0.8555, -0.1776, 1.1416, 0.8931, -0.3147, 1.1172, 0.8555, -0.1743, 1.2188, 0.8765, -0.1743, 1.2188, 0.8765, -0.3147, 1.1172, 0.8555, -0.2593, 1.2188, 0.855, -0.1743, 1.2188, 0.8765, -0.2593, 1.2188, 0.855, -0.1687, 1.293, 0.8481, -0.1687, 1.293, 0.8481, -0.2593, 1.2188, 0.855, -0.251, 1.293, 0.8276, -0.1687, 1.293, 0.8481, -0.251, 1.293, 0.8276, -0.161, 1.3652, 0.8096, -0.161, 1.3652, 0.8096, -0.251, 1.293, 0.8276, -0.2396, 1.3652, 0.79, -0.161, 1.3652, 0.8096, -0.2396, 1.3652, 0.79, -0.1514, 1.4336, 0.7612, -0.1514, 1.4336, 0.7612, -0.2396, 1.3652, 0.79, -0.2252, 1.4336, 0.7427, -0.1514, 1.4336, 0.7612, -0.2252, 1.4336, 0.7427, -0.1398, 1.498, 0.7026, -0.1398, 1.498, 0.7026, -0.2252, 1.4336, 0.7427, -0.208, 1.498, 0.6855, -0.1398, 1.498, 0.7026, -0.208, 1.498, 0.6855, -0.1263, 1.5557, 0.6353, -0.1263, 1.5557, 0.6353, -0.208, 1.498, 0.6855, -0.1881, 1.5557, 0.6201, -0.1263, 1.5557, 0.6353, -0.1881, 1.5557, 0.6201, -0.1115, 1.6084, 0.5601, -0.1115, 1.6084, 0.5601, -0.1881, 1.5557, 0.6201, -0.1659, 1.6084, 0.5469, -0.1115, 1.6084, 0.5601, -0.1659, 1.6084, 0.5469, -0.0951, 1.6533, 0.4783, -0.0951, 1.6533, 0.4783, -0.1659, 1.6084, 0.5469, -0.1415, 1.6533, 0.4666, -0.0951, 1.6533, 0.4783, -0.1415, 1.6533, 0.4666, -0.0776, 1.6914, 0.3899, -0.0776, 1.6914, 0.3899, -0.1415, 1.6533, 0.4666, -0.1154, 1.6914, 0.3804, -0.0776, 1.6914, 0.3899, -0.1154, 1.6914, 0.3804, -0.0591, 1.7207, 0.2969, -0.0591, 1.7207, 0.2969, -0.1154, 1.6914, 0.3804, -0.0878, 1.7207, 0.2896, -0.0591, 1.7207, 0.2969, -0.0878, 1.7207, 0.2896, -0.0398, 1.7422, 0.2, -0.0398, 1.7422, 0.2, -0.0878, 1.7207, 0.2896, -0.0592, 1.7422, 0.1952, -0.0398, 1.7422, 0.2, -0.0592, 1.7422, 0.1952, -0.02, 1.7559, 0.1006, -0.02, 1.7559, 0.1006, -0.0592, 1.7422, 0.1952, -0.0298, 1.7559, 0.0982, -0.0898, 0.6279, 0.9121, -0.1787, 0.6279, 0.8989, -0.0898, 0.6885, 0.9121, -0.0898, 0.6885, 0.9121, -0.1787, 0.6279, 0.8989, -0.1787, 0.7153, 0.8989, -0.0898, 0.7759, 0.9121, -0.1787, 0.8022, 0.8989, -0.0898, 0.8892, 0.9121, -0.0898, 0.8892, 0.9121, -0.1787, 0.8022, 0.8989, -0.1787, 0.8892, 0.8989, -0.0898, 1.0635, 0.9121, -0.1787, 1.0635, 0.8989, -0.0892, 1.1416, 0.9063, -0.0892, 1.1416, 0.9063, -0.1787, 1.0635, 0.8989, -0.1776, 1.1416, 0.8931, -0.0892, 1.1416, 0.9063, -0.1776, 1.1416, 0.8931, -0.0876, 1.2188, 0.8892, -0.0876, 1.2188, 0.8892, -0.1776, 1.1416, 0.8931, -0.1743, 1.2188, 0.8765, -0.0876, 1.2188, 0.8892, -0.1743, 1.2188, 0.8765, -0.0848, 1.293, 0.8608, -0.0848, 1.293, 0.8608, -0.1743, 1.2188, 0.8765, -0.1687, 1.293, 0.8481, -0.0848, 1.293, 0.8608, -0.1687, 1.293, 0.8481, -0.0809, 1.3652, 0.8218, -0.0809, 1.3652, 0.8218, -0.1687, 1.293, 0.8481, -0.161, 1.3652, 0.8096, -0.0809, 1.3652, 0.8218, -0.161, 1.3652, 0.8096, -0.076, 1.4336, 0.772, -0.076, 1.4336, 0.772, -0.161, 1.3652, 0.8096, -0.1514, 1.4336, 0.7612, -0.076, 1.4336, 0.772, -0.1514, 1.4336, 0.7612, -0.0702, 1.498, 0.7129, -0.0702, 1.498, 0.7129, -0.1514, 1.4336, 0.7612, -0.1398, 1.498, 0.7026, -0.0702, 1.498, 0.7129, -0.1398, 1.498, 0.7026, -0.0635, 1.5557, 0.645, -0.0635, 1.5557, 0.645, -0.1398, 1.498, 0.7026, -0.1263, 1.5557, 0.6353, -0.0635, 1.5557, 0.645, -0.1263, 1.5557, 0.6353, -0.056, 1.6084, 0.5684, -0.056, 1.6084, 0.5684, -0.1263, 1.5557, 0.6353, -0.1115, 1.6084, 0.5601, -0.056, 1.6084, 0.5684, -0.1115, 1.6084, 0.5601, -0.0478, 1.6533, 0.4851, -0.0478, 1.6533, 0.4851, -0.1115, 1.6084, 0.5601, -0.0951, 1.6533, 0.4783, -0.0478, 1.6533, 0.4851, -0.0951, 1.6533, 0.4783, -0.039, 1.6914, 0.3958, -0.039, 1.6914, 0.3958, -0.0951, 1.6533, 0.4783, -0.0776, 1.6914, 0.3899, -0.039, 1.6914, 0.3958, -0.0776, 1.6914, 0.3899, -0.0297, 1.7207, 0.3013, -0.0297, 1.7207, 0.3013, -0.0776, 1.6914, 0.3899, -0.0591, 1.7207, 0.2969, -0.0297, 1.7207, 0.3013, -0.0591, 1.7207, 0.2969, -0.02, 1.7422, 0.2029, -0.02, 1.7422, 0.2029, -0.0591, 1.7207, 0.2969, -0.0398, 1.7422, 0.2, -0.02, 1.7422, 0.2029, -0.0398, 1.7422, 0.2, -0.0101, 1.7559, 0.1021, -0.0101, 1.7559, 0.1021, -0.0398, 1.7422, 0.2, -0.02, 1.7559, 0.1006, -0.0701, 1.002, 0.9131, -0.0898, 1.0078, 0.9121, -0.0498, 1.0244, 0.9141, -0.0498, 1.0244, 0.9141, -0.0898, 1.0078, 0.9121, -0.0898, 1.0635, 0.9121, -0.0186, 0.7256, 0.8428, -0.0217, 0.7256, 0.9067, -0.0404, 0.7368, 0.8418, -0.0404, 0.7368, 0.8418, -0.0217, 0.7256, 0.9067, -0.0435, 0.7368, 0.9058, -0.0404, 0.7368, 0.8418, -0.0435, 0.7368, 0.9058, -0.0546, 0.7534, 0.8408, -0.0546, 0.7534, 0.8408, -0.0435, 0.7368, 0.9058, -0.0578, 0.7534, 0.9053, 0, 1.1416, 0.9106, -0.0892, 1.1416, 0.9063, 0, 1.2188, 0.8936, 0, 1.2188, 0.8936, -0.0892, 1.1416, 0.9063, -0.0876, 1.2188, 0.8892, 0, 1.2188, 0.8936, -0.0876, 1.2188, 0.8892, 0, 1.293, 0.8647, 0, 1.293, 0.8647, -0.0876, 1.2188, 0.8892, -0.0848, 1.293, 0.8608, 0, 1.293, 0.8647, -0.0848, 1.293, 0.8608, 0, 1.3652, 0.8257, 0, 1.3652, 0.8257, -0.0848, 1.293, 0.8608, -0.0809, 1.3652, 0.8218, 0, 1.3652, 0.8257, -0.0809, 1.3652, 0.8218, 0, 1.4336, 0.7759, 0, 1.4336, 0.7759, -0.0809, 1.3652, 0.8218, -0.076, 1.4336, 0.772, 0, 1.4336, 0.7759, -0.076, 1.4336, 0.772, 0, 1.498, 0.7163, 0, 1.498, 0.7163, -0.076, 1.4336, 0.772, -0.0702, 1.498, 0.7129, 0, 1.498, 0.7163, -0.0702, 1.498, 0.7129, 0, 1.5557, 0.6479, 0, 1.5557, 0.6479, -0.0702, 1.498, 0.7129, -0.0635, 1.5557, 0.645, 0, 1.5557, 0.6479, -0.0635, 1.5557, 0.645, 0, 1.6084, 0.5713, 0, 1.6084, 0.5713, -0.0635, 1.5557, 0.645, -0.056, 1.6084, 0.5684, 0, 1.6084, 0.5713, -0.056, 1.6084, 0.5684, 0, 1.6533, 0.4875, 0, 1.6533, 0.4875, -0.056, 1.6084, 0.5684, -0.0478, 1.6533, 0.4851, 0, 1.6533, 0.4875, -0.0478, 1.6533, 0.4851, 0, 1.6914, 0.3977, 0, 1.6914, 0.3977, -0.0478, 1.6533, 0.4851, -0.039, 1.6914, 0.3958, 0, 1.6914, 0.3977, -0.039, 1.6914, 0.3958, 0, 1.7207, 0.3027, 0, 1.7207, 0.3027, -0.039, 1.6914, 0.3958, -0.0297, 1.7207, 0.3013, 0, 1.7207, 0.3027, -0.0297, 1.7207, 0.3013, 0, 1.7422, 0.2039, 0, 1.7422, 0.2039, -0.0297, 1.7207, 0.3013, -0.02, 1.7422, 0.2029, 0, 1.7422, 0.2039, -0.02, 1.7422, 0.2029, 0, 1.7559, 0.1026, 0, 1.7559, 0.1026, -0.02, 1.7422, 0.2029, -0.0101, 1.7559, 0.1021, -0.0898, 0.6279, -0.9121, 0, 0.6279, -0.9165, -0.0898, 0.7153, -0.9121, -0.0898, 0.7153, -0.9121, 0, 0.6279, -0.9165, 0, 0.7153, -0.9165, -0.0898, 0.7153, -0.9121, 0, 0.7153, -0.9165, -0.0898, 0.8022, -0.9121, -0.0898, 0.8022, -0.9121, 0, 0.7153, -0.9165, 0, 0.8022, -0.9165, -0.0898, 0.8022, -0.9121, 0, 0.8022, -0.9165, -0.0898, 0.8892, -0.9121, -0.0898, 0.8892, -0.9121, 0, 0.8022, -0.9165, 0, 0.8892, -0.9165, -0.0898, 0.8892, -0.9121, 0, 0.8892, -0.9165, -0.0898, 0.9766, -0.9121, -0.0898, 0.9766, -0.9121, 0, 0.8892, -0.9165, 0, 0.9766, -0.9165, -0.0898, 0.9766, -0.9121, 0, 0.9766, -0.9165, -0.0898, 1.0635, -0.9121, -0.0898, 1.0635, -0.9121, 0, 0.9766, -0.9165, 0, 1.0635, -0.9165, -0.0898, 1.0635, -0.9121, 0, 1.0635, -0.9165, -0.0892, 1.1416, -0.9063, -0.0892, 1.1416, -0.9063, 0, 1.0635, -0.9165, 0, 1.1416, -0.9106, -0.0892, 1.1416, -0.9063, 0, 1.1416, -0.9106, -0.0876, 1.2188, -0.8892, -0.0876, 1.2188, -0.8892, 0, 1.1416, -0.9106, 0, 1.2188, -0.8936, -0.0876, 1.2188, -0.8892, 0, 1.2188, -0.8936, -0.0848, 1.293, -0.8608, -0.0848, 1.293, -0.8608, 0, 1.2188, -0.8936, 0, 1.293, -0.8647, -0.0848, 1.293, -0.8608, 0, 1.293, -0.8647, -0.0809, 1.3652, -0.8218, -0.0809, 1.3652, -0.8218, 0, 1.293, -0.8647, 0, 1.3652, -0.8257, -0.0809, 1.3652, -0.8218, 0, 1.3652, -0.8257, -0.076, 1.4336, -0.772, -0.076, 1.4336, -0.772, 0, 1.3652, -0.8257, 0, 1.4336, -0.7759, -0.076, 1.4336, -0.772, 0, 1.4336, -0.7759, -0.0702, 1.498, -0.7129, -0.0702, 1.498, -0.7129, 0, 1.4336, -0.7759, 0, 1.498, -0.7163, -0.0702, 1.498, -0.7129, 0, 1.498, -0.7163, -0.0635, 1.5557, -0.645, -0.0635, 1.5557, -0.645, 0, 1.498, -0.7163, 0, 1.5557, -0.6479, -0.0635, 1.5557, -0.645, 0, 1.5557, -0.6479, -0.056, 1.6084, -0.5684, -0.056, 1.6084, -0.5684, 0, 1.5557, -0.6479, 0, 1.6084, -0.5713, -0.056, 1.6084, -0.5684, 0, 1.6084, -0.5713, -0.0478, 1.6533, -0.4851, -0.0478, 1.6533, -0.4851, 0, 1.6084, -0.5713, 0, 1.6533, -0.4875, -0.0478, 1.6533, -0.4851, 0, 1.6533, -0.4875, -0.039, 1.6914, -0.3958, -0.039, 1.6914, -0.3958, 0, 1.6533, -0.4875, 0, 1.6914, -0.3977, -0.039, 1.6914, -0.3958, 0, 1.6914, -0.3977, -0.0297, 1.7207, -0.3013, -0.0297, 1.7207, -0.3013, 0, 1.6914, -0.3977, 0, 1.7207, -0.3027, -0.0297, 1.7207, -0.3013, 0, 1.7207, -0.3027, -0.02, 1.7422, -0.2029, -0.02, 1.7422, -0.2029, 0, 1.7207, -0.3027, 0, 1.7422, -0.2039, -0.02, 1.7422, -0.2029, 0, 1.7422, -0.2039, -0.0101, 1.7559, -0.1021, -0.0101, 1.7559, -0.1021, 0, 1.7422, -0.2039, 0, 1.7559, -0.1026, -0.1787, 0.6279, -0.8989, -0.0898, 0.6279, -0.9121, -0.1787, 0.7153, -0.8989, -0.1787, 0.7153, -0.8989, -0.0898, 0.6279, -0.9121, -0.0898, 0.7153, -0.9121, -0.1787, 0.7153, -0.8989, -0.0898, 0.7153, -0.9121, -0.1787, 0.8022, -0.8989, -0.1787, 0.8022, -0.8989, -0.0898, 0.7153, -0.9121, -0.0898, 0.8022, -0.9121, -0.1787, 0.8022, -0.8989, -0.0898, 0.8022, -0.9121, -0.1787, 0.8892, -0.8989, -0.1787, 0.8892, -0.8989, -0.0898, 0.8022, -0.9121, -0.0898, 0.8892, -0.9121, -0.1787, 0.8892, -0.8989, -0.0898, 0.8892, -0.9121, -0.1787, 0.9766, -0.8989, -0.1787, 0.9766, -0.8989, -0.0898, 0.8892, -0.9121, -0.0898, 0.9766, -0.9121, -0.1787, 0.9766, -0.8989, -0.0898, 0.9766, -0.9121, -0.1787, 1.0635, -0.8989, -0.1787, 1.0635, -0.8989, -0.0898, 0.9766, -0.9121, -0.0898, 1.0635, -0.9121, -0.1787, 1.0635, -0.8989, -0.0898, 1.0635, -0.9121, -0.1776, 1.1416, -0.8931, -0.1776, 1.1416, -0.8931, -0.0898, 1.0635, -0.9121, -0.0892, 1.1416, -0.9063, -0.1776, 1.1416, -0.8931, -0.0892, 1.1416, -0.9063, -0.1743, 1.2188, -0.8765, -0.1743, 1.2188, -0.8765, -0.0892, 1.1416, -0.9063, -0.0876, 1.2188, -0.8892, -0.1743, 1.2188, -0.8765, -0.0876, 1.2188, -0.8892, -0.1687, 1.293, -0.8481, -0.1687, 1.293, -0.8481, -0.0876, 1.2188, -0.8892, -0.0848, 1.293, -0.8608, -0.1687, 1.293, -0.8481, -0.0848, 1.293, -0.8608, -0.161, 1.3652, -0.8096, -0.161, 1.3652, -0.8096, -0.0848, 1.293, -0.8608, -0.0809, 1.3652, -0.8218, -0.161, 1.3652, -0.8096, -0.0809, 1.3652, -0.8218, -0.1514, 1.4336, -0.7612, -0.1514, 1.4336, -0.7612, -0.0809, 1.3652, -0.8218, -0.076, 1.4336, -0.772, -0.1514, 1.4336, -0.7612, -0.076, 1.4336, -0.772, -0.1398, 1.498, -0.7026, -0.1398, 1.498, -0.7026, -0.076, 1.4336, -0.772, -0.0702, 1.498, -0.7129, -0.1398, 1.498, -0.7026, -0.0702, 1.498, -0.7129, -0.1263, 1.5557, -0.6353, -0.1263, 1.5557, -0.6353, -0.0702, 1.498, -0.7129, -0.0635, 1.5557, -0.645, -0.1263, 1.5557, -0.6353, -0.0635, 1.5557, -0.645, -0.1115, 1.6084, -0.5601, -0.1115, 1.6084, -0.5601, -0.0635, 1.5557, -0.645, -0.056, 1.6084, -0.5684, -0.1115, 1.6084, -0.5601, -0.056, 1.6084, -0.5684, -0.0951, 1.6533, -0.4783, -0.0951, 1.6533, -0.4783, -0.056, 1.6084, -0.5684, -0.0478, 1.6533, -0.4851, -0.0951, 1.6533, -0.4783, -0.0478, 1.6533, -0.4851, -0.0776, 1.6914, -0.3899, -0.0776, 1.6914, -0.3899, -0.0478, 1.6533, -0.4851, -0.039, 1.6914, -0.3958, -0.0776, 1.6914, -0.3899, -0.039, 1.6914, -0.3958, -0.0591, 1.7207, -0.2969, -0.0591, 1.7207, -0.2969, -0.039, 1.6914, -0.3958, -0.0297, 1.7207, -0.3013, -0.0591, 1.7207, -0.2969, -0.0297, 1.7207, -0.3013, -0.0398, 1.7422, -0.2, -0.0398, 1.7422, -0.2, -0.0297, 1.7207, -0.3013, -0.02, 1.7422, -0.2029, -0.0398, 1.7422, -0.2, -0.02, 1.7422, -0.2029, -0.02, 1.7559, -0.1006, -0.02, 1.7559, -0.1006, -0.02, 1.7422, -0.2029, -0.0101, 1.7559, -0.1021, -0.2659, 0.6279, -0.877, -0.1787, 0.6279, -0.8989, -0.2659, 0.7153, -0.877, -0.2659, 0.7153, -0.877, -0.1787, 0.6279, -0.8989, -0.1787, 0.7153, -0.8989, -0.2659, 0.7153, -0.877, -0.1787, 0.7153, -0.8989, -0.2659, 0.8022, -0.877, -0.2659, 0.8022, -0.877, -0.1787, 0.7153, -0.8989, -0.1787, 0.8022, -0.8989, -0.2659, 0.8022, -0.877, -0.1787, 0.8022, -0.8989, -0.2659, 0.8892, -0.877, -0.2659, 0.8892, -0.877, -0.1787, 0.8022, -0.8989, -0.1787, 0.8892, -0.8989, -0.2659, 0.8892, -0.877, -0.1787, 0.8892, -0.8989, -0.2659, 0.9766, -0.877, -0.2659, 0.9766, -0.877, -0.1787, 0.8892, -0.8989, -0.1787, 0.9766, -0.8989, -0.2659, 0.9766, -0.877, -0.1787, 0.9766, -0.8989, -0.2659, 1.0635, -0.877, -0.2659, 1.0635, -0.877, -0.1787, 0.9766, -0.8989, -0.1787, 1.0635, -0.8989, -0.2659, 1.0635, -0.877, -0.1787, 1.0635, -0.8989, -0.2644, 1.1416, -0.8716, -0.2644, 1.1416, -0.8716, -0.1787, 1.0635, -0.8989, -0.1776, 1.1416, -0.8931, -0.2644, 1.1416, -0.8716, -0.1776, 1.1416, -0.8931, -0.2593, 1.2188, -0.855, -0.2593, 1.2188, -0.855, -0.1776, 1.1416, -0.8931, -0.1743, 1.2188, -0.8765, -0.2593, 1.2188, -0.855, -0.1743, 1.2188, -0.8765, -0.251, 1.293, -0.8276, -0.251, 1.293, -0.8276, -0.1743, 1.2188, -0.8765, -0.1687, 1.293, -0.8481, -0.251, 1.293, -0.8276, -0.1687, 1.293, -0.8481, -0.2396, 1.3652, -0.79, -0.2396, 1.3652, -0.79, -0.1687, 1.293, -0.8481, -0.161, 1.3652, -0.8096, -0.2396, 1.3652, -0.79, -0.161, 1.3652, -0.8096, -0.2252, 1.4336, -0.7427, -0.2252, 1.4336, -0.7427, -0.161, 1.3652, -0.8096, -0.1514, 1.4336, -0.7612, -0.2252, 1.4336, -0.7427, -0.1514, 1.4336, -0.7612, -0.208, 1.498, -0.6855, -0.208, 1.498, -0.6855, -0.1514, 1.4336, -0.7612, -0.1398, 1.498, -0.7026, -0.208, 1.498, -0.6855, -0.1398, 1.498, -0.7026, -0.1881, 1.5557, -0.6201, -0.1881, 1.5557, -0.6201, -0.1398, 1.498, -0.7026, -0.1263, 1.5557, -0.6353, -0.1881, 1.5557, -0.6201, -0.1263, 1.5557, -0.6353, -0.1659, 1.6084, -0.5469, -0.1659, 1.6084, -0.5469, -0.1263, 1.5557, -0.6353, -0.1115, 1.6084, -0.5601, -0.1659, 1.6084, -0.5469, -0.1115, 1.6084, -0.5601, -0.1415, 1.6533, -0.4666, -0.1415, 1.6533, -0.4666, -0.1115, 1.6084, -0.5601, -0.0951, 1.6533, -0.4783, -0.1415, 1.6533, -0.4666, -0.0951, 1.6533, -0.4783, -0.1154, 1.6914, -0.3804, -0.1154, 1.6914, -0.3804, -0.0951, 1.6533, -0.4783, -0.0776, 1.6914, -0.3899, -0.1154, 1.6914, -0.3804, -0.0776, 1.6914, -0.3899, -0.0878, 1.7207, -0.2896, -0.0878, 1.7207, -0.2896, -0.0776, 1.6914, -0.3899, -0.0591, 1.7207, -0.2969, -0.0878, 1.7207, -0.2896, -0.0591, 1.7207, -0.2969, -0.0592, 1.7422, -0.1952, -0.0592, 1.7422, -0.1952, -0.0591, 1.7207, -0.2969, -0.0398, 1.7422, -0.2, -0.0592, 1.7422, -0.1952, -0.0398, 1.7422, -0.2, -0.0298, 1.7559, -0.0982, -0.0298, 1.7559, -0.0982, -0.0398, 1.7422, -0.2, -0.02, 1.7559, -0.1006, -0.3506, 0.6279, -0.8467, -0.2659, 0.6279, -0.877, -0.3506, 0.7153, -0.8467, -0.3506, 0.7153, -0.8467, -0.2659, 0.6279, -0.877, -0.2659, 0.7153, -0.877, -0.3506, 0.7153, -0.8467, -0.2659, 0.7153, -0.877, -0.3506, 0.8022, -0.8467, -0.3506, 0.8022, -0.8467, -0.2659, 0.7153, -0.877, -0.2659, 0.8022, -0.877, -0.3506, 0.8022, -0.8467, -0.2659, 0.8022, -0.877, -0.3506, 0.8892, -0.8467, -0.3506, 0.8892, -0.8467, -0.2659, 0.8022, -0.877, -0.2659, 0.8892, -0.877, -0.3506, 0.8892, -0.8467, -0.2659, 0.8892, -0.877, -0.3506, 0.9766, -0.8467, -0.3506, 0.9766, -0.8467, -0.2659, 0.8892, -0.877, -0.2659, 0.9766, -0.877, -0.3506, 0.9766, -0.8467, -0.2659, 0.9766, -0.877, -0.3506, 1.0635, -0.8467, -0.3506, 1.0635, -0.8467, -0.2659, 0.9766, -0.877, -0.2659, 1.0635, -0.877, -0.3506, 1.0635, -0.8467, -0.2659, 1.0635, -0.877, -0.3484, 1.1416, -0.8413, -0.3484, 1.1416, -0.8413, -0.2659, 1.0635, -0.877, -0.2644, 1.1416, -0.8716, -0.3484, 1.1416, -0.8413, -0.2644, 1.1416, -0.8716, -0.3418, 1.2188, -0.8252, -0.3418, 1.2188, -0.8252, -0.2644, 1.1416, -0.8716, -0.2593, 1.2188, -0.855, -0.3418, 1.2188, -0.8252, -0.2593, 1.2188, -0.855, -0.3311, 1.293, -0.7993, -0.3311, 1.293, -0.7993, -0.2593, 1.2188, -0.855, -0.251, 1.293, -0.8276, -0.3311, 1.293, -0.7993, -0.251, 1.293, -0.8276, -0.3159, 1.3652, -0.7627, -0.3159, 1.3652, -0.7627, -0.251, 1.293, -0.8276, -0.2396, 1.3652, -0.79, -0.3159, 1.3652, -0.7627, -0.2396, 1.3652, -0.79, -0.2969, 1.4336, -0.7168, -0.2969, 1.4336, -0.7168, -0.2396, 1.3652, -0.79, -0.2252, 1.4336, -0.7427, -0.2969, 1.4336, -0.7168, -0.2252, 1.4336, -0.7427, -0.2742, 1.498, -0.6621, -0.2742, 1.498, -0.6621, -0.2252, 1.4336, -0.7427, -0.208, 1.498, -0.6855, -0.2742, 1.498, -0.6621, -0.208, 1.498, -0.6855, -0.2479, 1.5557, -0.5986, -0.2479, 1.5557, -0.5986, -0.208, 1.498, -0.6855, -0.1881, 1.5557, -0.6201, -0.2479, 1.5557, -0.5986, -0.1881, 1.5557, -0.6201, -0.2186, 1.6084, -0.5278, -0.2186, 1.6084, -0.5278, -0.1881, 1.5557, -0.6201, -0.1659, 1.6084, -0.5469, -0.2186, 1.6084, -0.5278, -0.1659, 1.6084, -0.5469, -0.1865, 1.6533, -0.4504, -0.1865, 1.6533, -0.4504, -0.1659, 1.6084, -0.5469, -0.1415, 1.6533, -0.4666, -0.1865, 1.6533, -0.4504, -0.1415, 1.6533, -0.4666, -0.1521, 1.6914, -0.3674, -0.1521, 1.6914, -0.3674, -0.1415, 1.6533, -0.4666, -0.1154, 1.6914, -0.3804, -0.1521, 1.6914, -0.3674, -0.1154, 1.6914, -0.3804, -0.1158, 1.7207, -0.2795, -0.1158, 1.7207, -0.2795, -0.1154, 1.6914, -0.3804, -0.0878, 1.7207, -0.2896, -0.1158, 1.7207, -0.2795, -0.0878, 1.7207, -0.2896, -0.078, 1.7422, -0.1884, -0.078, 1.7422, -0.1884, -0.0878, 1.7207, -0.2896, -0.0592, 1.7422, -0.1952, -0.078, 1.7422, -0.1884, -0.0592, 1.7422, -0.1952, -0.0392, 1.7559, -0.0948, -0.0392, 1.7559, -0.0948, -0.0592, 1.7422, -0.1952, -0.0298, 1.7559, -0.0982, -0.4319, 0.6279, -0.8081, -0.3506, 0.6279, -0.8467, -0.4319, 0.7153, -0.8081, -0.4319, 0.7153, -0.8081, -0.3506, 0.6279, -0.8467, -0.3506, 0.7153, -0.8467, -0.4319, 0.7153, -0.8081, -0.3506, 0.7153, -0.8467, -0.4319, 0.8022, -0.8081, -0.4319, 0.8022, -0.8081, -0.3506, 0.7153, -0.8467, -0.3506, 0.8022, -0.8467, -0.4319, 0.8022, -0.8081, -0.3506, 0.8022, -0.8467, -0.4319, 0.8892, -0.8081, -0.4319, 0.8892, -0.8081, -0.3506, 0.8022, -0.8467, -0.3506, 0.8892, -0.8467, -0.4319, 0.8892, -0.8081, -0.3506, 0.8892, -0.8467, -0.4319, 0.9766, -0.8081, -0.4319, 0.9766, -0.8081, -0.3506, 0.8892, -0.8467, -0.3506, 0.9766, -0.8467, -0.4319, 0.9766, -0.8081, -0.3506, 0.9766, -0.8467, -0.4319, 1.0635, -0.8081, -0.4319, 1.0635, -0.8081, -0.3506, 0.9766, -0.8467, -0.3506, 1.0635, -0.8467, -0.4319, 1.0635, -0.8081, -0.3506, 1.0635, -0.8467, -0.4292, 1.1416, -0.8032, -0.4292, 1.1416, -0.8032, -0.3506, 1.0635, -0.8467, -0.3484, 1.1416, -0.8413, -0.4292, 1.1416, -0.8032, -0.3484, 1.1416, -0.8413, -0.4211, 1.2188, -0.7881, -0.4211, 1.2188, -0.7881, -0.3484, 1.1416, -0.8413, -0.3418, 1.2188, -0.8252, -0.4211, 1.2188, -0.7881, -0.3418, 1.2188, -0.8252, -0.4077, 1.293, -0.7627, -0.4077, 1.293, -0.7627, -0.3418, 1.2188, -0.8252, -0.3311, 1.293, -0.7993, -0.4077, 1.293, -0.7627, -0.3311, 1.293, -0.7993, -0.3892, 1.3652, -0.728, -0.3892, 1.3652, -0.728, -0.3311, 1.293, -0.7993, -0.3159, 1.3652, -0.7627, -0.3892, 1.3652, -0.728, -0.3159, 1.3652, -0.7627, -0.3657, 1.4336, -0.6841, -0.3657, 1.4336, -0.6841, -0.3159, 1.3652, -0.7627, -0.2969, 1.4336, -0.7168, -0.3657, 1.4336, -0.6841, -0.2969, 1.4336, -0.7168, -0.3376, 1.498, -0.6318, -0.3376, 1.498, -0.6318, -0.2969, 1.4336, -0.7168, -0.2742, 1.498, -0.6621, -0.3376, 1.498, -0.6318, -0.2742, 1.498, -0.6621, -0.3054, 1.5557, -0.5713, -0.3054, 1.5557, -0.5713, -0.2742, 1.498, -0.6621, -0.2479, 1.5557, -0.5986, -0.3054, 1.5557, -0.5713, -0.2479, 1.5557, -0.5986, -0.2693, 1.6084, -0.5039, -0.2693, 1.6084, -0.5039, -0.2479, 1.5557, -0.5986, -0.2186, 1.6084, -0.5278, -0.2693, 1.6084, -0.5039, -0.2186, 1.6084, -0.5278, -0.2299, 1.6533, -0.4299, -0.2299, 1.6533, -0.4299, -0.2186, 1.6084, -0.5278, -0.1865, 1.6533, -0.4504, -0.2299, 1.6533, -0.4299, -0.1865, 1.6533, -0.4504, -0.1874, 1.6914, -0.3506, -0.1874, 1.6914, -0.3506, -0.1865, 1.6533, -0.4504, -0.1521, 1.6914, -0.3674, -0.1874, 1.6914, -0.3506, -0.1521, 1.6914, -0.3674, -0.1427, 1.7207, -0.2668, -0.1427, 1.7207, -0.2668, -0.1521, 1.6914, -0.3674, -0.1158, 1.7207, -0.2795, -0.1427, 1.7207, -0.2668, -0.1158, 1.7207, -0.2795, -0.0961, 1.7422, -0.1798, -0.0961, 1.7422, -0.1798, -0.1158, 1.7207, -0.2795, -0.078, 1.7422, -0.1884, -0.0961, 1.7422, -0.1798, -0.078, 1.7422, -0.1884, -0.0484, 1.7559, -0.0905, -0.0484, 1.7559, -0.0905, -0.078, 1.7422, -0.1884, -0.0392, 1.7559, -0.0948, -0.5088, 0.6279, -0.7617, -0.4319, 0.6279, -0.8081, -0.5088, 0.7153, -0.7617, -0.5088, 0.7153, -0.7617, -0.4319, 0.6279, -0.8081, -0.4319, 0.7153, -0.8081, -0.5088, 0.7153, -0.7617, -0.4319, 0.7153, -0.8081, -0.5088, 0.8022, -0.7617, -0.5088, 0.8022, -0.7617, -0.4319, 0.7153, -0.8081, -0.4319, 0.8022, -0.8081, -0.5088, 0.8022, -0.7617, -0.4319, 0.8022, -0.8081, -0.5088, 0.8892, -0.7617, -0.5088, 0.8892, -0.7617, -0.4319, 0.8022, -0.8081, -0.4319, 0.8892, -0.8081, -0.5088, 0.8892, -0.7617, -0.4319, 0.8892, -0.8081, -0.5088, 0.9766, -0.7617, -0.5088, 0.9766, -0.7617, -0.4319, 0.8892, -0.8081, -0.4319, 0.9766, -0.8081, -0.5088, 0.9766, -0.7617, -0.4319, 0.9766, -0.8081, -0.5088, 1.0635, -0.7617, -0.5088, 1.0635, -0.7617, -0.4319, 0.9766, -0.8081, -0.4319, 1.0635, -0.8081, -0.5088, 1.0635, -0.7617, -0.4319, 1.0635, -0.8081, -0.5059, 1.1416, -0.7573, -0.5059, 1.1416, -0.7573, -0.4319, 1.0635, -0.8081, -0.4292, 1.1416, -0.8032, -0.5059, 1.1416, -0.7573, -0.4292, 1.1416, -0.8032, -0.4963, 1.2188, -0.7427, -0.4963, 1.2188, -0.7427, -0.4292, 1.1416, -0.8032, -0.4211, 1.2188, -0.7881, -0.4963, 1.2188, -0.7427, -0.4211, 1.2188, -0.7881, -0.4805, 1.293, -0.7192, -0.4805, 1.293, -0.7192, -0.4211, 1.2188, -0.7881, -0.4077, 1.293, -0.7627, -0.4805, 1.293, -0.7192, -0.4077, 1.293, -0.7627, -0.4587, 1.3652, -0.6865, -0.4587, 1.3652, -0.6865, -0.4077, 1.293, -0.7627, -0.3892, 1.3652, -0.728, -0.4587, 1.3652, -0.6865, -0.3892, 1.3652, -0.728, -0.4312, 1.4336, -0.645, -0.4312, 1.4336, -0.645, -0.3892, 1.3652, -0.728, -0.3657, 1.4336, -0.6841, -0.4312, 1.4336, -0.645, -0.3657, 1.4336, -0.6841, -0.3979, 1.498, -0.5957, -0.3979, 1.498, -0.5957, -0.3657, 1.4336, -0.6841, -0.3376, 1.498, -0.6318, -0.3979, 1.498, -0.5957, -0.3376, 1.498, -0.6318, -0.3599, 1.5557, -0.5386, -0.3599, 1.5557, -0.5386, -0.3376, 1.498, -0.6318, -0.3054, 1.5557, -0.5713, -0.3599, 1.5557, -0.5386, -0.3054, 1.5557, -0.5713, -0.3174, 1.6084, -0.4751, -0.3174, 1.6084, -0.4751, -0.3054, 1.5557, -0.5713, -0.2693, 1.6084, -0.5039, -0.3174, 1.6084, -0.4751, -0.2693, 1.6084, -0.5039, -0.2708, 1.6533, -0.4053, -0.2708, 1.6533, -0.4053, -0.2693, 1.6084, -0.5039, -0.2299, 1.6533, -0.4299, -0.2708, 1.6533, -0.4053, -0.2299, 1.6533, -0.4299, -0.2209, 1.6914, -0.3306, -0.2209, 1.6914, -0.3306, -0.2299, 1.6533, -0.4299, -0.1874, 1.6914, -0.3506, -0.2209, 1.6914, -0.3306, -0.1874, 1.6914, -0.3506, -0.1681, 1.7207, -0.2517, -0.1681, 1.7207, -0.2517, -0.1874, 1.6914, -0.3506, -0.1427, 1.7207, -0.2668, -0.1681, 1.7207, -0.2517, -0.1427, 1.7207, -0.2668, -0.1133, 1.7422, -0.1696, -0.1133, 1.7422, -0.1696, -0.1427, 1.7207, -0.2668, -0.0961, 1.7422, -0.1798, -0.1133, 1.7422, -0.1696, -0.0961, 1.7422, -0.1798, -0.057, 1.7559, -0.0853, -0.057, 1.7559, -0.0853, -0.0961, 1.7422, -0.1798, -0.0484, 1.7559, -0.0905, -0.5811, 0.6279, -0.7085, -0.5088, 0.6279, -0.7617, -0.5811, 0.7153, -0.7085, -0.5811, 0.7153, -0.7085, -0.5088, 0.6279, -0.7617, -0.5088, 0.7153, -0.7617, -0.5811, 0.7153, -0.7085, -0.5088, 0.7153, -0.7617, -0.5811, 0.8022, -0.7085, -0.5811, 0.8022, -0.7085, -0.5088, 0.7153, -0.7617, -0.5088, 0.8022, -0.7617, -0.5811, 0.8022, -0.7085, -0.5088, 0.8022, -0.7617, -0.5811, 0.8892, -0.7085, -0.5811, 0.8892, -0.7085, -0.5088, 0.8022, -0.7617, -0.5088, 0.8892, -0.7617, -0.5811, 0.8892, -0.7085, -0.5088, 0.8892, -0.7617, -0.5811, 0.9766, -0.7085, -0.5811, 0.9766, -0.7085, -0.5088, 0.8892, -0.7617, -0.5088, 0.9766, -0.7617, -0.5811, 0.9766, -0.7085, -0.5088, 0.9766, -0.7617, -0.5811, 1.0635, -0.7085, -0.5811, 1.0635, -0.7085, -0.5088, 0.9766, -0.7617, -0.5088, 1.0635, -0.7617, -0.5811, 1.0635, -0.7085, -0.5088, 1.0635, -0.7617, -0.5776, 1.1416, -0.7041, -0.5776, 1.1416, -0.7041, -0.5088, 1.0635, -0.7617, -0.5059, 1.1416, -0.7573, -0.5776, 1.1416, -0.7041, -0.5059, 1.1416, -0.7573, -0.5669, 1.2188, -0.6904, -0.5669, 1.2188, -0.6904, -0.5059, 1.1416, -0.7573, -0.4963, 1.2188, -0.7427, -0.5669, 1.2188, -0.6904, -0.4963, 1.2188, -0.7427, -0.5488, 1.293, -0.6685, -0.5488, 1.293, -0.6685, -0.4963, 1.2188, -0.7427, -0.4805, 1.293, -0.7192, -0.5488, 1.293, -0.6685, -0.4805, 1.293, -0.7192, -0.5239, 1.3652, -0.6382, -0.5239, 1.3652, -0.6382, -0.4805, 1.293, -0.7192, -0.4587, 1.3652, -0.6865, -0.5239, 1.3652, -0.6382, -0.4587, 1.3652, -0.6865, -0.4922, 1.4336, -0.5996, -0.4922, 1.4336, -0.5996, -0.4587, 1.3652, -0.6865, -0.4312, 1.4336, -0.645, -0.4922, 1.4336, -0.5996, -0.4312, 1.4336, -0.645, -0.4546, 1.498, -0.5537, -0.4546, 1.498, -0.5537, -0.4312, 1.4336, -0.645, -0.3979, 1.498, -0.5957, -0.4546, 1.498, -0.5537, -0.3979, 1.498, -0.5957, -0.4111, 1.5557, -0.501, -0.4111, 1.5557, -0.501, -0.3979, 1.498, -0.5957, -0.3599, 1.5557, -0.5386, -0.4111, 1.5557, -0.501, -0.3599, 1.5557, -0.5386, -0.3625, 1.6084, -0.4417, -0.3625, 1.6084, -0.4417, -0.3599, 1.5557, -0.5386, -0.3174, 1.6084, -0.4751, -0.3625, 1.6084, -0.4417, -0.3174, 1.6084, -0.4751, -0.3093, 1.6533, -0.377, -0.3093, 1.6533, -0.377, -0.3174, 1.6084, -0.4751, -0.2708, 1.6533, -0.4053, -0.3093, 1.6533, -0.377, -0.2708, 1.6533, -0.4053, -0.2522, 1.6914, -0.3074, -0.2522, 1.6914, -0.3074, -0.2708, 1.6533, -0.4053, -0.2209, 1.6914, -0.3306, -0.2522, 1.6914, -0.3074, -0.2209, 1.6914, -0.3306, -0.192, 1.7207, -0.234, -0.192, 1.7207, -0.234, -0.2209, 1.6914, -0.3306, -0.1681, 1.7207, -0.2517, -0.192, 1.7207, -0.234, -0.1681, 1.7207, -0.2517, -0.1294, 1.7422, -0.1576, -0.1294, 1.7422, -0.1576, -0.1681, 1.7207, -0.2517, -0.1133, 1.7422, -0.1696, -0.1294, 1.7422, -0.1576, -0.1133, 1.7422, -0.1696, -0.0651, 1.7559, -0.0793, -0.0651, 1.7559, -0.0793, -0.1133, 1.7422, -0.1696, -0.057, 1.7559, -0.0853, -0.6479, 0.6279, -0.6479, -0.5811, 0.6279, -0.7085, -0.6479, 0.7153, -0.6479, -0.6479, 0.7153, -0.6479, -0.5811, 0.6279, -0.7085, -0.5811, 0.7153, -0.7085, -0.6479, 0.7153, -0.6479, -0.5811, 0.7153, -0.7085, -0.6479, 0.8022, -0.6479, -0.6479, 0.8022, -0.6479, -0.5811, 0.7153, -0.7085, -0.5811, 0.8022, -0.7085, -0.6479, 0.8022, -0.6479, -0.5811, 0.8022, -0.7085, -0.6479, 0.8892, -0.6479, -0.6479, 0.8892, -0.6479, -0.5811, 0.8022, -0.7085, -0.5811, 0.8892, -0.7085, -0.6479, 0.8892, -0.6479, -0.5811, 0.8892, -0.7085, -0.6479, 0.9766, -0.6479, -0.6479, 0.9766, -0.6479, -0.5811, 0.8892, -0.7085, -0.5811, 0.9766, -0.7085, -0.6479, 0.9766, -0.6479, -0.5811, 0.9766, -0.7085, -0.6479, 1.0635, -0.6479, -0.6479, 1.0635, -0.6479, -0.5811, 0.9766, -0.7085, -0.5811, 1.0635, -0.7085, -0.6479, 1.0635, -0.6479, -0.5811, 1.0635, -0.7085, -0.644, 1.1416, -0.644, -0.644, 1.1416, -0.644, -0.5811, 1.0635, -0.7085, -0.5776, 1.1416, -0.7041, -0.644, 1.1416, -0.644, -0.5776, 1.1416, -0.7041, -0.6318, 1.2188, -0.6318, -0.6318, 1.2188, -0.6318, -0.5776, 1.1416, -0.7041, -0.5669, 1.2188, -0.6904, -0.6318, 1.2188, -0.6318, -0.5669, 1.2188, -0.6904, -0.6113, 1.293, -0.6113, -0.6113, 1.293, -0.6113, -0.5669, 1.2188, -0.6904, -0.5488, 1.293, -0.6685, -0.6113, 1.293, -0.6113, -0.5488, 1.293, -0.6685, -0.5835, 1.3652, -0.5835, -0.5835, 1.3652, -0.5835, -0.5488, 1.293, -0.6685, -0.5239, 1.3652, -0.6382, -0.5835, 1.3652, -0.5835, -0.5239, 1.3652, -0.6382, -0.5483, 1.4336, -0.5483, -0.5483, 1.4336, -0.5483, -0.5239, 1.3652, -0.6382, -0.4922, 1.4336, -0.5996, -0.5483, 1.4336, -0.5483, -0.4922, 1.4336, -0.5996, -0.5063, 1.498, -0.5063, -0.5063, 1.498, -0.5063, -0.4922, 1.4336, -0.5996, -0.4546, 1.498, -0.5537, -0.5063, 1.498, -0.5063, -0.4546, 1.498, -0.5537, -0.4583, 1.5557, -0.4583, -0.4583, 1.5557, -0.4583, -0.4546, 1.498, -0.5537, -0.4111, 1.5557, -0.501, -0.4583, 1.5557, -0.4583, -0.4111, 1.5557, -0.501, -0.4041, 1.6084, -0.4041, -0.4041, 1.6084, -0.4041, -0.4111, 1.5557, -0.501, -0.3625, 1.6084, -0.4417, -0.4041, 1.6084, -0.4041, -0.3625, 1.6084, -0.4417, -0.3447, 1.6533, -0.3447, -0.3447, 1.6533, -0.3447, -0.3625, 1.6084, -0.4417, -0.3093, 1.6533, -0.377, -0.3447, 1.6533, -0.3447, -0.3093, 1.6533, -0.377, -0.281, 1.6914, -0.281, -0.281, 1.6914, -0.281, -0.3093, 1.6533, -0.377, -0.2522, 1.6914, -0.3074, -0.281, 1.6914, -0.281, -0.2522, 1.6914, -0.3074, -0.214, 1.7207, -0.214, -0.214, 1.7207, -0.214, -0.2522, 1.6914, -0.3074, -0.192, 1.7207, -0.234, -0.214, 1.7207, -0.214, -0.192, 1.7207, -0.234, -0.1442, 1.7422, -0.1442, -0.1442, 1.7422, -0.1442, -0.192, 1.7207, -0.234, -0.1294, 1.7422, -0.1576, -0.1442, 1.7422, -0.1442, -0.1294, 1.7422, -0.1576, -0.0726, 1.7559, -0.0726, -0.0726, 1.7559, -0.0726, -0.1294, 1.7422, -0.1576, -0.0651, 1.7559, -0.0793, -0.0726, 1.7559, 0.0726, -0.0793, 1.7559, 0.0651, -0.0726, 1.7559, -0.0726, -0.0726, 1.7559, -0.0726, -0.0793, 1.7559, 0.0651, -0.0793, 1.7559, -0.0651, -0.7085, 0.6279, -0.5811, -0.6479, 0.6279, -0.6479, -0.7085, 0.7153, -0.5811, -0.7085, 0.7153, -0.5811, -0.6479, 0.6279, -0.6479, -0.6479, 0.7153, -0.6479, -0.7085, 0.7153, -0.5811, -0.6479, 0.7153, -0.6479, -0.7085, 0.8022, -0.5811, -0.7085, 0.8022, -0.5811, -0.6479, 0.7153, -0.6479, -0.6479, 0.8022, -0.6479, -0.7085, 0.8022, -0.5811, -0.6479, 0.8022, -0.6479, -0.7085, 0.8892, -0.5811, -0.7085, 0.8892, -0.5811, -0.6479, 0.8022, -0.6479, -0.6479, 0.8892, -0.6479, -0.7085, 0.8892, -0.5811, -0.6479, 0.8892, -0.6479, -0.7085, 0.9766, -0.5811, -0.7085, 0.9766, -0.5811, -0.6479, 0.8892, -0.6479, -0.6479, 0.9766, -0.6479, -0.7085, 0.9766, -0.5811, -0.6479, 0.9766, -0.6479, -0.7085, 1.0635, -0.5811, -0.7085, 1.0635, -0.5811, -0.6479, 0.9766, -0.6479, -0.6479, 1.0635, -0.6479, -0.7085, 1.0635, -0.5811, -0.6479, 1.0635, -0.6479, -0.7041, 1.1416, -0.5776, -0.7041, 1.1416, -0.5776, -0.6479, 1.0635, -0.6479, -0.644, 1.1416, -0.644, -0.7041, 1.1416, -0.5776, -0.644, 1.1416, -0.644, -0.6904, 1.2188, -0.5669, -0.6904, 1.2188, -0.5669, -0.644, 1.1416, -0.644, -0.6318, 1.2188, -0.6318, -0.6904, 1.2188, -0.5669, -0.6318, 1.2188, -0.6318, -0.6685, 1.293, -0.5488, -0.6685, 1.293, -0.5488, -0.6318, 1.2188, -0.6318, -0.6113, 1.293, -0.6113, -0.6685, 1.293, -0.5488, -0.6113, 1.293, -0.6113, -0.6382, 1.3652, -0.5239, -0.6382, 1.3652, -0.5239, -0.6113, 1.293, -0.6113, -0.5835, 1.3652, -0.5835, -0.6382, 1.3652, -0.5239, -0.5835, 1.3652, -0.5835, -0.5996, 1.4336, -0.4922, -0.5996, 1.4336, -0.4922, -0.5835, 1.3652, -0.5835, -0.5483, 1.4336, -0.5483, -0.5996, 1.4336, -0.4922, -0.5483, 1.4336, -0.5483, -0.5537, 1.498, -0.4546, -0.5537, 1.498, -0.4546, -0.5483, 1.4336, -0.5483, -0.5063, 1.498, -0.5063, -0.5537, 1.498, -0.4546, -0.5063, 1.498, -0.5063, -0.501, 1.5557, -0.4111, -0.501, 1.5557, -0.4111, -0.5063, 1.498, -0.5063, -0.4583, 1.5557, -0.4583, -0.501, 1.5557, -0.4111, -0.4583, 1.5557, -0.4583, -0.4417, 1.6084, -0.3625, -0.4417, 1.6084, -0.3625, -0.4583, 1.5557, -0.4583, -0.4041, 1.6084, -0.4041, -0.4417, 1.6084, -0.3625, -0.4041, 1.6084, -0.4041, -0.377, 1.6533, -0.3093, -0.377, 1.6533, -0.3093, -0.4041, 1.6084, -0.4041, -0.3447, 1.6533, -0.3447, -0.377, 1.6533, -0.3093, -0.3447, 1.6533, -0.3447, -0.3074, 1.6914, -0.2522, -0.3074, 1.6914, -0.2522, -0.3447, 1.6533, -0.3447, -0.281, 1.6914, -0.281, -0.3074, 1.6914, -0.2522, -0.281, 1.6914, -0.281, -0.234, 1.7207, -0.192, -0.234, 1.7207, -0.192, -0.281, 1.6914, -0.281, -0.214, 1.7207, -0.214, -0.234, 1.7207, -0.192, -0.214, 1.7207, -0.214, -0.1576, 1.7422, -0.1294, -0.1576, 1.7422, -0.1294, -0.214, 1.7207, -0.214, -0.1442, 1.7422, -0.1442, -0.1576, 1.7422, -0.1294, -0.1442, 1.7422, -0.1442, -0.0793, 1.7559, -0.0651, -0.0793, 1.7559, -0.0651, -0.1442, 1.7422, -0.1442, -0.0726, 1.7559, -0.0726, -0.0726, 1.7559, -0.0726, -0.0651, 1.7559, -0.0793, -0.0726, 1.7559, 0.0726, -0.0726, 1.7559, 0.0726, -0.0651, 1.7559, -0.0793, -0.0651, 1.7559, 0.0793, -0.7617, 0.6279, -0.5088, -0.7085, 0.6279, -0.5811, -0.7617, 0.7153, -0.5088, -0.7617, 0.7153, -0.5088, -0.7085, 0.6279, -0.5811, -0.7085, 0.7153, -0.5811, -0.7617, 0.7153, -0.5088, -0.7085, 0.7153, -0.5811, -0.7617, 0.8022, -0.5088, -0.7617, 0.8022, -0.5088, -0.7085, 0.7153, -0.5811, -0.7085, 0.8022, -0.5811, -0.7617, 0.8022, -0.5088, -0.7085, 0.8022, -0.5811, -0.7617, 0.8892, -0.5088, -0.7617, 0.8892, -0.5088, -0.7085, 0.8022, -0.5811, -0.7085, 0.8892, -0.5811, -0.7617, 0.8892, -0.5088, -0.7085, 0.8892, -0.5811, -0.7617, 0.9766, -0.5088, -0.7617, 0.9766, -0.5088, -0.7085, 0.8892, -0.5811, -0.7085, 0.9766, -0.5811, -0.7617, 0.9766, -0.5088, -0.7085, 0.9766, -0.5811, -0.7617, 1.0635, -0.5088, -0.7617, 1.0635, -0.5088, -0.7085, 0.9766, -0.5811, -0.7085, 1.0635, -0.5811, -0.7617, 1.0635, -0.5088, -0.7085, 1.0635, -0.5811, -0.7573, 1.1416, -0.5059, -0.7573, 1.1416, -0.5059, -0.7085, 1.0635, -0.5811, -0.7041, 1.1416, -0.5776, -0.7573, 1.1416, -0.5059, -0.7041, 1.1416, -0.5776, -0.7427, 1.2188, -0.4963, -0.7427, 1.2188, -0.4963, -0.7041, 1.1416, -0.5776, -0.6904, 1.2188, -0.5669, -0.7427, 1.2188, -0.4963, -0.6904, 1.2188, -0.5669, -0.7192, 1.293, -0.4805, -0.7192, 1.293, -0.4805, -0.6904, 1.2188, -0.5669, -0.6685, 1.293, -0.5488, -0.7192, 1.293, -0.4805, -0.6685, 1.293, -0.5488, -0.6865, 1.3652, -0.4587, -0.6865, 1.3652, -0.4587, -0.6685, 1.293, -0.5488, -0.6382, 1.3652, -0.5239, -0.6865, 1.3652, -0.4587, -0.6382, 1.3652, -0.5239, -0.645, 1.4336, -0.4312, -0.645, 1.4336, -0.4312, -0.6382, 1.3652, -0.5239, -0.5996, 1.4336, -0.4922, -0.645, 1.4336, -0.4312, -0.5996, 1.4336, -0.4922, -0.5957, 1.498, -0.3979, -0.5957, 1.498, -0.3979, -0.5996, 1.4336, -0.4922, -0.5537, 1.498, -0.4546, -0.5957, 1.498, -0.3979, -0.5537, 1.498, -0.4546, -0.5386, 1.5557, -0.3599, -0.5386, 1.5557, -0.3599, -0.5537, 1.498, -0.4546, -0.501, 1.5557, -0.4111, -0.5386, 1.5557, -0.3599, -0.501, 1.5557, -0.4111, -0.4751, 1.6084, -0.3174, -0.4751, 1.6084, -0.3174, -0.501, 1.5557, -0.4111, -0.4417, 1.6084, -0.3625, -0.4751, 1.6084, -0.3174, -0.4417, 1.6084, -0.3625, -0.4053, 1.6533, -0.2708, -0.4053, 1.6533, -0.2708, -0.4417, 1.6084, -0.3625, -0.377, 1.6533, -0.3093, -0.4053, 1.6533, -0.2708, -0.377, 1.6533, -0.3093, -0.3306, 1.6914, -0.2209, -0.3306, 1.6914, -0.2209, -0.377, 1.6533, -0.3093, -0.3074, 1.6914, -0.2522, -0.3306, 1.6914, -0.2209, -0.3074, 1.6914, -0.2522, -0.2517, 1.7207, -0.1681, -0.2517, 1.7207, -0.1681, -0.3074, 1.6914, -0.2522, -0.234, 1.7207, -0.192, -0.2517, 1.7207, -0.1681, -0.234, 1.7207, -0.192, -0.1696, 1.7422, -0.1133, -0.1696, 1.7422, -0.1133, -0.234, 1.7207, -0.192, -0.1576, 1.7422, -0.1294, -0.1798, 1.7422, -0.0961, -0.1696, 1.7422, -0.1133, -0.0853, 1.7559, -0.0562, -0.0651, 1.7559, -0.0793, -0.057, 1.7559, -0.0853, -0.0651, 1.7559, 0.0793, -0.0651, 1.7559, 0.0793, -0.057, 1.7559, -0.0853, -0.057, 1.7559, 0.0853, -0.8081, 0.6279, -0.4319, -0.7617, 0.6279, -0.5088, -0.8081, 0.7153, -0.4319, -0.8081, 0.7153, -0.4319, -0.7617, 0.6279, -0.5088, -0.7617, 0.7153, -0.5088, -0.8081, 0.7153, -0.4319, -0.7617, 0.7153, -0.5088, -0.8081, 0.8022, -0.4319, -0.8081, 0.8022, -0.4319, -0.7617, 0.7153, -0.5088, -0.7617, 0.8022, -0.5088, -0.8081, 0.8022, -0.4319, -0.7617, 0.8022, -0.5088, -0.8081, 0.8892, -0.4319, -0.8081, 0.8892, -0.4319, -0.7617, 0.8022, -0.5088, -0.7617, 0.8892, -0.5088, -0.8081, 0.8892, -0.4319, -0.7617, 0.8892, -0.5088, -0.8081, 0.9766, -0.4319, -0.8081, 0.9766, -0.4319, -0.7617, 0.8892, -0.5088, -0.7617, 0.9766, -0.5088, -0.8081, 0.9766, -0.4319, -0.7617, 0.9766, -0.5088, -0.8081, 1.0635, -0.4319, -0.8081, 1.0635, -0.4319, -0.7617, 0.9766, -0.5088, -0.7617, 1.0635, -0.5088, -0.8081, 1.0635, -0.4319, -0.7617, 1.0635, -0.5088, -0.8032, 1.1416, -0.4292, -0.8032, 1.1416, -0.4292, -0.7617, 1.0635, -0.5088, -0.7573, 1.1416, -0.5059, -0.8032, 1.1416, -0.4292, -0.7573, 1.1416, -0.5059, -0.7881, 1.2188, -0.4211, -0.7881, 1.2188, -0.4211, -0.7573, 1.1416, -0.5059, -0.7427, 1.2188, -0.4963, -0.7881, 1.2188, -0.4211, -0.7427, 1.2188, -0.4963, -0.7627, 1.293, -0.4077, -0.7627, 1.293, -0.4077, -0.7427, 1.2188, -0.4963, -0.7192, 1.293, -0.4805, -0.7627, 1.293, -0.4077, -0.7192, 1.293, -0.4805, -0.728, 1.3652, -0.3892, -0.728, 1.3652, -0.3892, -0.7192, 1.293, -0.4805, -0.6865, 1.3652, -0.4587, -0.728, 1.3652, -0.3892, -0.6865, 1.3652, -0.4587, -0.6841, 1.4336, -0.3657, -0.6841, 1.4336, -0.3657, -0.6865, 1.3652, -0.4587, -0.645, 1.4336, -0.4312, -0.6841, 1.4336, -0.3657, -0.645, 1.4336, -0.4312, -0.6318, 1.498, -0.3376, -0.6318, 1.498, -0.3376, -0.645, 1.4336, -0.4312, -0.5957, 1.498, -0.3979, -0.6318, 1.498, -0.3376, -0.5957, 1.498, -0.3979, -0.5713, 1.5557, -0.3054, -0.5713, 1.5557, -0.3054, -0.5957, 1.498, -0.3979, -0.5386, 1.5557, -0.3599, -0.5713, 1.5557, -0.3054, -0.5386, 1.5557, -0.3599, -0.5039, 1.6084, -0.2693, -0.5039, 1.6084, -0.2693, -0.5386, 1.5557, -0.3599, -0.4751, 1.6084, -0.3174, -0.5039, 1.6084, -0.2693, -0.4751, 1.6084, -0.3174, -0.4299, 1.6533, -0.2299, -0.4299, 1.6533, -0.2299, -0.4751, 1.6084, -0.3174, -0.4053, 1.6533, -0.2708, -0.4299, 1.6533, -0.2299, -0.4053, 1.6533, -0.2708, -0.3506, 1.6914, -0.1874, -0.3506, 1.6914, -0.1874, -0.4053, 1.6533, -0.2708, -0.3306, 1.6914, -0.2209, -0.3506, 1.6914, -0.1874, -0.3306, 1.6914, -0.2209, -0.2668, 1.7207, -0.1427, -0.2668, 1.7207, -0.1427, -0.3306, 1.6914, -0.2209, -0.2517, 1.7207, -0.1681, -0.2668, 1.7207, -0.1427, -0.2517, 1.7207, -0.1681, -0.1798, 1.7422, -0.0961, -0.1798, 1.7422, -0.0961, -0.2517, 1.7207, -0.1681, -0.1696, 1.7422, -0.1133, -0.1952, 1.7422, -0.0592, -0.1884, 1.7422, -0.078, -0.0853, 1.7559, -0.0562, -0.057, 1.7559, -0.0853, -0.0484, 1.7559, -0.0905, -0.057, 1.7559, 0.0853, -0.057, 1.7559, 0.0853, -0.0484, 1.7559, -0.0905, -0.0484, 1.7559, 0.0905, -0.8467, 0.6279, -0.3506, -0.8081, 0.6279, -0.4319, -0.8467, 0.7153, -0.3506, -0.8467, 0.7153, -0.3506, -0.8081, 0.6279, -0.4319, -0.8081, 0.7153, -0.4319, -0.8467, 0.7153, -0.3506, -0.8081, 0.7153, -0.4319, -0.8467, 0.8022, -0.3506, -0.8467, 0.8022, -0.3506, -0.8081, 0.7153, -0.4319, -0.8081, 0.8022, -0.4319, -0.8467, 0.8022, -0.3506, -0.8081, 0.8022, -0.4319, -0.8467, 0.8892, -0.3506, -0.8467, 0.8892, -0.3506, -0.8081, 0.8022, -0.4319, -0.8081, 0.8892, -0.4319, -0.8467, 0.8892, -0.3506, -0.8081, 0.8892, -0.4319, -0.8467, 0.9766, -0.3506, -0.8467, 0.9766, -0.3506, -0.8081, 0.8892, -0.4319, -0.8081, 0.9766, -0.4319, -0.8467, 0.9766, -0.3506, -0.8081, 0.9766, -0.4319, -0.8467, 1.0635, -0.3506, -0.8467, 1.0635, -0.3506, -0.8081, 0.9766, -0.4319, -0.8081, 1.0635, -0.4319, -0.8467, 1.0635, -0.3506, -0.8081, 1.0635, -0.4319, -0.8413, 1.1416, -0.3484, -0.8413, 1.1416, -0.3484, -0.8081, 1.0635, -0.4319, -0.8032, 1.1416, -0.4292, -0.8413, 1.1416, -0.3484, -0.8032, 1.1416, -0.4292, -0.8252, 1.2188, -0.3418, -0.8252, 1.2188, -0.3418, -0.8032, 1.1416, -0.4292, -0.7881, 1.2188, -0.4211, -0.8252, 1.2188, -0.3418, -0.7881, 1.2188, -0.4211, -0.7993, 1.293, -0.3311, -0.7993, 1.293, -0.3311, -0.7881, 1.2188, -0.4211, -0.7627, 1.293, -0.4077, -0.7993, 1.293, -0.3311, -0.7627, 1.293, -0.4077, -0.7627, 1.3652, -0.3159, -0.7627, 1.3652, -0.3159, -0.7627, 1.293, -0.4077, -0.728, 1.3652, -0.3892, -0.7627, 1.3652, -0.3159, -0.728, 1.3652, -0.3892, -0.7168, 1.4336, -0.2969, -0.7168, 1.4336, -0.2969, -0.728, 1.3652, -0.3892, -0.6841, 1.4336, -0.3657, -0.7168, 1.4336, -0.2969, -0.6841, 1.4336, -0.3657, -0.6621, 1.498, -0.2742, -0.6621, 1.498, -0.2742, -0.6841, 1.4336, -0.3657, -0.6318, 1.498, -0.3376, -0.6621, 1.498, -0.2742, -0.6318, 1.498, -0.3376, -0.5986, 1.5557, -0.2479, -0.5986, 1.5557, -0.2479, -0.6318, 1.498, -0.3376, -0.5713, 1.5557, -0.3054, -0.5986, 1.5557, -0.2479, -0.5713, 1.5557, -0.3054, -0.5278, 1.6084, -0.2186, -0.5278, 1.6084, -0.2186, -0.5713, 1.5557, -0.3054, -0.5039, 1.6084, -0.2693, -0.5278, 1.6084, -0.2186, -0.5039, 1.6084, -0.2693, -0.4504, 1.6533, -0.1865, -0.4504, 1.6533, -0.1865, -0.5039, 1.6084, -0.2693, -0.4299, 1.6533, -0.2299, -0.4504, 1.6533, -0.1865, -0.4299, 1.6533, -0.2299, -0.3674, 1.6914, -0.1521, -0.3674, 1.6914, -0.1521, -0.4299, 1.6533, -0.2299, -0.3506, 1.6914, -0.1874, -0.3674, 1.6914, -0.1521, -0.3506, 1.6914, -0.1874, -0.2795, 1.7207, -0.1158, -0.2795, 1.7207, -0.1158, -0.3506, 1.6914, -0.1874, -0.2668, 1.7207, -0.1427, -0.2795, 1.7207, -0.1158, -0.2668, 1.7207, -0.1427, -0.1884, 1.7422, -0.078, -0.1884, 1.7422, -0.078, -0.2668, 1.7207, -0.1427, -0.1798, 1.7422, -0.0961, -0.2006, 1.749, -0.0479, -0.1016, 1.7607, -0.0481, -0.2258, 1.8096, -0.0439, -0.2258, 1.8096, -0.0439, -0.1016, 1.7607, -0.0481, -0.1367, 1.8203, -0.045, -0.0392, 1.7559, 0.0948, -0.0484, 1.7559, 0.0905, -0.0392, 1.7559, -0.0948, -0.0392, 1.7559, -0.0948, -0.0484, 1.7559, 0.0905, -0.0484, 1.7559, -0.0905, -0.877, 0.6279, -0.2659, -0.8467, 0.6279, -0.3506, -0.877, 0.7153, -0.2659, -0.877, 0.7153, -0.2659, -0.8467, 0.6279, -0.3506, -0.8467, 0.7153, -0.3506, -0.877, 0.7153, -0.2659, -0.8467, 0.7153, -0.3506, -0.877, 0.8022, -0.2659, -0.877, 0.8022, -0.2659, -0.8467, 0.7153, -0.3506, -0.8467, 0.8022, -0.3506, -0.877, 0.8022, -0.2659, -0.8467, 0.8022, -0.3506, -0.877, 0.8892, -0.2659, -0.877, 0.8892, -0.2659, -0.8467, 0.8022, -0.3506, -0.8467, 0.8892, -0.3506, -0.877, 0.8892, -0.2659, -0.8467, 0.8892, -0.3506, -0.877, 0.9766, -0.2659, -0.877, 0.9766, -0.2659, -0.8467, 0.8892, -0.3506, -0.8467, 0.9766, -0.3506, -0.877, 0.9766, -0.2659, -0.8467, 0.9766, -0.3506, -0.877, 1.0635, -0.2659, -0.877, 1.0635, -0.2659, -0.8467, 0.9766, -0.3506, -0.8467, 1.0635, -0.3506, -0.877, 1.0635, -0.2659, -0.8467, 1.0635, -0.3506, -0.8716, 1.1416, -0.2644, -0.8716, 1.1416, -0.2644, -0.8467, 1.0635, -0.3506, -0.8413, 1.1416, -0.3484, -0.8716, 1.1416, -0.2644, -0.8413, 1.1416, -0.3484, -0.855, 1.2188, -0.2593, -0.855, 1.2188, -0.2593, -0.8413, 1.1416, -0.3484, -0.8252, 1.2188, -0.3418, -0.855, 1.2188, -0.2593, -0.8252, 1.2188, -0.3418, -0.8276, 1.293, -0.251, -0.8276, 1.293, -0.251, -0.8252, 1.2188, -0.3418, -0.7993, 1.293, -0.3311, -0.8276, 1.293, -0.251, -0.7993, 1.293, -0.3311, -0.79, 1.3652, -0.2396, -0.79, 1.3652, -0.2396, -0.7993, 1.293, -0.3311, -0.7627, 1.3652, -0.3159, -0.79, 1.3652, -0.2396, -0.7627, 1.3652, -0.3159, -0.7427, 1.4336, -0.2252, -0.7427, 1.4336, -0.2252, -0.7627, 1.3652, -0.3159, -0.7168, 1.4336, -0.2969, -0.7427, 1.4336, -0.2252, -0.7168, 1.4336, -0.2969, -0.6855, 1.498, -0.208, -0.6855, 1.498, -0.208, -0.7168, 1.4336, -0.2969, -0.6621, 1.498, -0.2742, -0.6855, 1.498, -0.208, -0.6621, 1.498, -0.2742, -0.6201, 1.5557, -0.1881, -0.6201, 1.5557, -0.1881, -0.6621, 1.498, -0.2742, -0.5986, 1.5557, -0.2479, -0.6201, 1.5557, -0.1881, -0.5986, 1.5557, -0.2479, -0.5469, 1.6084, -0.1659, -0.5469, 1.6084, -0.1659, -0.5986, 1.5557, -0.2479, -0.5278, 1.6084, -0.2186, -0.5469, 1.6084, -0.1659, -0.5278, 1.6084, -0.2186, -0.4666, 1.6533, -0.1415, -0.4666, 1.6533, -0.1415, -0.5278, 1.6084, -0.2186, -0.4504, 1.6533, -0.1865, -0.4666, 1.6533, -0.1415, -0.4504, 1.6533, -0.1865, -0.3804, 1.6914, -0.1154, -0.3804, 1.6914, -0.1154, -0.4504, 1.6533, -0.1865, -0.3674, 1.6914, -0.1521, -0.3804, 1.6914, -0.1154, -0.3674, 1.6914, -0.1521, -0.2896, 1.7207, -0.0878, -0.2896, 1.7207, -0.0878, -0.3674, 1.6914, -0.1521, -0.2795, 1.7207, -0.1158, -0.2896, 1.7207, -0.0878, -0.2795, 1.7207, -0.1158, -0.1952, 1.7422, -0.0592, -0.1952, 1.7422, -0.0592, -0.2795, 1.7207, -0.1158, -0.1884, 1.7422, -0.078, -0.1974, 1.7422, -0.0551, -0.1952, 1.7422, -0.0592, -0.0853, 1.7559, -0.0562, -0.0392, 1.7559, -0.0948, -0.0298, 1.7559, -0.0982, -0.0392, 1.7559, 0.0948, -0.0392, 1.7559, 0.0948, -0.0298, 1.7559, -0.0982, -0.0298, 1.7559, 0.0982, -0.8989, 0.6279, -0.1787, -0.877, 0.6279, -0.2659, -0.8989, 0.7153, -0.1787, -0.8989, 0.7153, -0.1787, -0.877, 0.6279, -0.2659, -0.877, 0.7153, -0.2659, -0.8989, 0.7153, -0.1787, -0.877, 0.7153, -0.2659, -0.8989, 0.8022, -0.1787, -0.8989, 0.8022, -0.1787, -0.877, 0.7153, -0.2659, -0.877, 0.8022, -0.2659, -0.8989, 0.8022, -0.1787, -0.877, 0.8022, -0.2659, -0.8989, 0.8892, -0.1787, -0.8989, 0.8892, -0.1787, -0.877, 0.8022, -0.2659, -0.877, 0.8892, -0.2659, -0.8989, 0.8892, -0.1787, -0.877, 0.8892, -0.2659, -0.8989, 0.9766, -0.1787, -0.8989, 0.9766, -0.1787, -0.877, 0.8892, -0.2659, -0.877, 0.9766, -0.2659, -0.8989, 0.9766, -0.1787, -0.877, 0.9766, -0.2659, -0.8989, 1.0635, -0.1787, -0.8989, 1.0635, -0.1787, -0.877, 0.9766, -0.2659, -0.877, 1.0635, -0.2659, -0.8989, 1.0635, -0.1787, -0.877, 1.0635, -0.2659, -0.8931, 1.1416, -0.1776, -0.8931, 1.1416, -0.1776, -0.877, 1.0635, -0.2659, -0.8716, 1.1416, -0.2644, -0.8931, 1.1416, -0.1776, -0.8716, 1.1416, -0.2644, -0.8765, 1.2188, -0.1743, -0.8765, 1.2188, -0.1743, -0.8716, 1.1416, -0.2644, -0.855, 1.2188, -0.2593, -0.8765, 1.2188, -0.1743, -0.855, 1.2188, -0.2593, -0.8481, 1.293, -0.1687, -0.8481, 1.293, -0.1687, -0.855, 1.2188, -0.2593, -0.8276, 1.293, -0.251, -0.8481, 1.293, -0.1687, -0.8276, 1.293, -0.251, -0.8096, 1.3652, -0.161, -0.8096, 1.3652, -0.161, -0.8276, 1.293, -0.251, -0.79, 1.3652, -0.2396, -0.8096, 1.3652, -0.161, -0.79, 1.3652, -0.2396, -0.7612, 1.4336, -0.1514, -0.7612, 1.4336, -0.1514, -0.79, 1.3652, -0.2396, -0.7427, 1.4336, -0.2252, -0.7612, 1.4336, -0.1514, -0.7427, 1.4336, -0.2252, -0.7026, 1.498, -0.1398, -0.7026, 1.498, -0.1398, -0.7427, 1.4336, -0.2252, -0.6855, 1.498, -0.208, -0.7026, 1.498, -0.1398, -0.6855, 1.498, -0.208, -0.6353, 1.5557, -0.1263, -0.6353, 1.5557, -0.1263, -0.6855, 1.498, -0.208, -0.6201, 1.5557, -0.1881, -0.6353, 1.5557, -0.1263, -0.6201, 1.5557, -0.1881, -0.5601, 1.6084, -0.1115, -0.5601, 1.6084, -0.1115, -0.6201, 1.5557, -0.1881, -0.5469, 1.6084, -0.1659, -0.5601, 1.6084, -0.1115, -0.5469, 1.6084, -0.1659, -0.4783, 1.6533, -0.0951, -0.4783, 1.6533, -0.0951, -0.5469, 1.6084, -0.1659, -0.4666, 1.6533, -0.1415, -0.4783, 1.6533, -0.0951, -0.4666, 1.6533, -0.1415, -0.3899, 1.6914, -0.0776, -0.3899, 1.6914, -0.0776, -0.4666, 1.6533, -0.1415, -0.3804, 1.6914, -0.1154, -0.3899, 1.6914, -0.0776, -0.3804, 1.6914, -0.1154, -0.2969, 1.7207, -0.0591, -0.2969, 1.7207, -0.0591, -0.3804, 1.6914, -0.1154, -0.2896, 1.7207, -0.0878, -0.2983, 1.7207, -0.0493, -0.2969, 1.7207, -0.0591, -0.1974, 1.7422, -0.0551, -0.1884, 1.7422, -0.078, -0.1798, 1.7422, -0.0961, -0.0853, 1.7559, -0.0562, -0.0298, 1.7559, -0.0982, -0.02, 1.7559, -0.1006, -0.0298, 1.7559, 0.0982, -0.0298, 1.7559, 0.0982, -0.02, 1.7559, -0.1006, -0.02, 1.7559, 0.1006, -0.9121, 0.6279, -0.0898, -0.8989, 0.6279, -0.1787, -0.9121, 0.7153, -0.0898, -0.9121, 0.7153, -0.0898, -0.8989, 0.6279, -0.1787, -0.8989, 0.7153, -0.1787, -0.9121, 0.7153, -0.0898, -0.8989, 0.7153, -0.1787, -0.9121, 0.8022, -0.0898, -0.9121, 0.8022, -0.0898, -0.8989, 0.7153, -0.1787, -0.8989, 0.8022, -0.1787, -0.9121, 0.8022, -0.0898, -0.8989, 0.8022, -0.1787, -0.9121, 0.8892, -0.0898, -0.9121, 0.8892, -0.0898, -0.8989, 0.8022, -0.1787, -0.8989, 0.8892, -0.1787, -0.9121, 0.8892, -0.0898, -0.8989, 0.8892, -0.1787, -0.9121, 0.9766, -0.0898, -0.9121, 0.9766, -0.0898, -0.8989, 0.8892, -0.1787, -0.8989, 0.9766, -0.1787, -0.9121, 0.9766, -0.0898, -0.8989, 0.9766, -0.1787, -0.9121, 1.0635, -0.0898, -0.9121, 1.0635, -0.0898, -0.8989, 0.9766, -0.1787, -0.8989, 1.0635, -0.1787, -0.9121, 1.0635, -0.0898, -0.8989, 1.0635, -0.1787, -0.9063, 1.1416, -0.0892, -0.9063, 1.1416, -0.0892, -0.8989, 1.0635, -0.1787, -0.8931, 1.1416, -0.1776, -0.4907, 1.6494, -0.0549, -0.4783, 1.6533, -0.0951, -0.3943, 1.6914, -0.0491, -0.3943, 1.6914, -0.0491, -0.4783, 1.6533, -0.0951, -0.3899, 1.6914, -0.0776, -0.645, 1.5557, -0.0635, -0.6353, 1.5557, -0.1263, -0.5684, 1.6084, -0.056, -0.5684, 1.6084, -0.056, -0.6353, 1.5557, -0.1263, -0.5601, 1.6084, -0.1115, -0.4048, 1.7617, -0.0397, -0.396, 1.6982, -0.0421, -0.3176, 1.7891, -0.0398, -0.3176, 1.7891, -0.0398, -0.396, 1.6982, -0.0421, -0.301, 1.7275, -0.0423, -0.4788, 1.6631, -0.047, -0.396, 1.6982, -0.0421, -0.48, 1.7295, -0.0433, -0.48, 1.7295, -0.0433, -0.396, 1.6982, -0.0421, -0.4048, 1.7617, -0.0397, -0.301, 1.7275, -0.0423, -0.2006, 1.749, -0.0479, -0.3176, 1.7891, -0.0398, -0.3176, 1.7891, -0.0398, -0.2006, 1.749, -0.0479, -0.2258, 1.8096, -0.0439, -0.02, 1.7559, -0.1006, -0.0101, 1.7559, -0.1021, -0.02, 1.7559, 0.1006, -0.02, 1.7559, 0.1006, -0.0101, 1.7559, -0.1021, -0.0101, 1.7559, 0.1021, -0.9165, 0.6279, 0, -0.9121, 0.6279, -0.0898, -0.9165, 0.7153, 0, -0.9165, 0.7153, 0, -0.9121, 0.6279, -0.0898, -0.9121, 0.7153, -0.0898, -0.9165, 0.7153, 0, -0.9121, 0.7153, -0.0898, -0.9165, 0.8022, 0, -0.9165, 0.8022, 0, -0.9121, 0.7153, -0.0898, -0.9121, 0.8022, -0.0898, -0.9165, 0.8022, 0, -0.9121, 0.8022, -0.0898, -0.9165, 0.8892, 0, -0.9165, 0.8892, 0, -0.9121, 0.8022, -0.0898, -0.9121, 0.8892, -0.0898, -0.9165, 0.8892, 0, -0.9121, 0.8892, -0.0898, -0.9165, 0.9766, 0, -0.9165, 0.9766, 0, -0.9121, 0.8892, -0.0898, -0.9121, 0.9766, -0.0898, -0.9165, 0.9766, 0, -0.9121, 0.9766, -0.0898, -0.9165, 1.0635, 0, -0.9165, 1.0635, 0, -0.9121, 0.9766, -0.0898, -0.9121, 1.0635, -0.0898, -0.9165, 1.0635, 0, -0.9121, 1.0635, -0.0898, -0.9106, 1.1416, 0, -0.9106, 1.1416, 0, -0.9121, 1.0635, -0.0898, -0.9063, 1.1416, -0.0892, -0.6479, 1.5557, 0, -0.645, 1.5557, -0.0635, -0.5713, 1.6084, 0, -0.5713, 1.6084, 0, -0.645, 1.5557, -0.0635, -0.5684, 1.6084, -0.056, -0.5684, 1.6084, 0.056, -0.5713, 1.6084, 0, -0.4907, 1.6494, 0.0544, -0.4907, 1.6494, 0.0544, -0.5713, 1.6084, 0, -0.4934, 1.6504, 0, -0.0101, 1.7559, -0.1021, 0, 1.7559, -0.1026, -0.0101, 1.7559, 0.1021, -0.0101, 1.7559, 0.1021, 0, 1.7559, -0.1026, 0, 1.7559, 0.1026, -0.2866, 1.0576, 0.5659, -0.3638, 1.0576, 0.5195, -0.2988, 1.126, 0.5488, -0.2988, 1.126, 0.5488, -0.3638, 1.0576, 0.5195, -0.3591, 1.1221, 0.5127, -0.436, 1.0576, 0.4661, -0.4646, 1.0273, 0.4404, -0.4182, 1.0957, 0.4761, -0.4182, 1.0957, 0.4761, -0.4646, 1.0273, 0.4404, -0.4441, 1.0674, 0.4553, -0.2007, 1.082, 0.6123, -0.3276, 1.0869, 0.8242, -0.1635, 1.0303, 0.6289, -0.1635, 1.0303, 0.6289, -0.3276, 1.0869, 0.8242, -0.2903, 1.0352, 0.8408, -0.1523, 0.9692, 0.6221, -0.2053, 0.9712, 0.604, -0.1769, 1.041, 0.6147, -0.1769, 1.041, 0.6147, -0.2053, 0.9712, 0.604, -0.2053, 1.0576, 0.604, -0.3052, 1.1367, 0.5532, -0.4321, 1.1416, 0.7651, -0.2496, 1.1191, 0.5864, -0.2496, 1.1191, 0.5864, -0.4321, 1.1416, 0.7651, -0.3765, 1.124, 0.7979, -0.2866, 0.7324, 0.5659, -0.3484, 0.729, 0.5293, -0.2866, 0.7969, 0.5659, -0.2866, 0.7969, 0.5659, -0.3484, 0.729, 0.5293, -0.3638, 0.7969, 0.5195, -0.4836, 1.0117, 0.4346, -0.6104, 1.0166, 0.646, -0.4573, 1.0674, 0.457, -0.4573, 1.0674, 0.457, -0.6104, 1.0166, 0.646, -0.584, 1.0723, 0.6685, -0.4465, 0.7676, 0.4675, -0.5732, 0.7725, 0.6792, -0.4766, 0.8188, 0.4404, -0.4766, 0.8188, 0.4404, -0.5732, 0.7725, 0.6792, -0.6035, 0.8237, 0.6519, -0.1892, 0.7886, 0.6094, -0.2229, 0.7593, 0.5967, -0.1677, 0.8252, 0.6177, -0.1677, 0.8252, 0.6177, -0.2229, 0.7593, 0.5967, -0.2053, 0.7969, 0.604, -0.1882, 0.7827, 0.6191, -0.3152, 0.7871, 0.8311, -0.2358, 0.7412, 0.6006, -0.2358, 0.7412, 0.6006, -0.3152, 0.7871, 0.8311, -0.3628, 0.7461, 0.812, -0.1493, 0.8984, 0.6226, -0.2053, 0.8838, 0.604, -0.1523, 0.9692, 0.6221, -0.1523, 0.9692, 0.6221, -0.2053, 0.8838, 0.604, -0.2053, 0.9712, 0.604, -0.436, 0.8838, 0.4661, -0.4749, 0.8813, 0.4292, -0.436, 0.9712, 0.4661, -0.436, 0.9712, 0.4661, -0.4749, 0.8813, 0.4292, -0.4775, 0.9531, 0.4265, -0.644, 0.8047, 0.6514, -0.6353, 0.811, 0.6592, -0.6079, 0.7432, 0.6841, -0.6079, 0.7432, 0.6841, -0.6353, 0.811, 0.6592, -0.6011, 0.7529, 0.6904, -0.4397, 1.1826, 0.7861, -0.4419, 1.1699, 0.7866, -0.5078, 1.1787, 0.7451, -0.5078, 1.1787, 0.7451, -0.4419, 1.1699, 0.7866, -0.5063, 1.166, 0.748, -0.436, 0.7969, 0.4661, -0.4565, 0.8091, 0.4473, -0.436, 0.8838, 0.4661, -0.436, 0.8838, 0.4661, -0.4565, 0.8091, 0.4473, -0.4749, 0.8813, 0.4292, -0.2229, 0.7593, 0.5967, -0.2866, 0.7324, 0.5659, -0.2053, 0.7969, 0.604, -0.2053, 0.7969, 0.604, -0.2866, 0.7324, 0.5659, -0.2866, 0.7969, 0.5659, -0.1392, 0.9023, 0.6348, -0.2661, 0.9067, 0.8462, -0.1555, 0.8379, 0.6304, -0.1555, 0.8379, 0.6304, -0.2661, 0.9067, 0.8462, -0.2825, 0.8428, 0.8423, -0.3638, 1.0576, 0.5195, -0.436, 1.0576, 0.4661, -0.3591, 1.1221, 0.5127, -0.3591, 1.1221, 0.5127, -0.436, 1.0576, 0.4661, -0.4182, 1.0957, 0.4761, -0.4033, 0.7319, 0.502, -0.5303, 0.7363, 0.7139, -0.4465, 0.7676, 0.4675, -0.4465, 0.7676, 0.4675, -0.5303, 0.7363, 0.7139, -0.5732, 0.7725, 0.6792, -0.4766, 0.8188, 0.4404, -0.6035, 0.8237, 0.6519, -0.4919, 0.8809, 0.4246, -0.4919, 0.8809, 0.4246, -0.6035, 0.8237, 0.6519, -0.6187, 0.8857, 0.6362, -0.4919, 0.8809, 0.4246, -0.6187, 0.8857, 0.6362, -0.4944, 0.9478, 0.4219, -0.4944, 0.9478, 0.4219, -0.6187, 0.8857, 0.6362, -0.6211, 0.9526, 0.6333, -0.4944, 0.9478, 0.4219, -0.6211, 0.9526, 0.6333, -0.4836, 1.0117, 0.4346, -0.4836, 1.0117, 0.4346, -0.6211, 0.9526, 0.6333, -0.6104, 1.0166, 0.646, -0.4573, 1.0674, 0.457, -0.584, 1.0723, 0.6685, -0.4158, 1.1104, 0.4873, -0.4158, 1.1104, 0.4873, -0.584, 1.0723, 0.6685, -0.5425, 1.1152, 0.6987, -0.3494, 0.7144, 0.5386, -0.4763, 0.7192, 0.7505, -0.4033, 0.7319, 0.502, -0.4033, 0.7319, 0.502, -0.4763, 0.7192, 0.7505, -0.5303, 0.7363, 0.7139, -0.3638, 0.7969, 0.5195, -0.436, 0.7969, 0.4661, -0.3638, 0.8838, 0.5195, -0.3638, 0.8838, 0.5195, -0.436, 0.7969, 0.4661, -0.436, 0.8838, 0.4661, -0.3638, 0.8838, 0.5195, -0.436, 0.8838, 0.4661, -0.3638, 0.9712, 0.5195, -0.3638, 0.9712, 0.5195, -0.436, 0.8838, 0.4661, -0.436, 0.9712, 0.4661, -0.3638, 0.9712, 0.5195, -0.436, 0.9712, 0.4661, -0.3638, 1.0576, 0.5195, -0.3638, 1.0576, 0.5195, -0.436, 0.9712, 0.4661, -0.436, 1.0576, 0.4661, -0.4158, 1.1104, 0.4873, -0.5425, 1.1152, 0.6987, -0.3625, 1.1338, 0.519, -0.3625, 1.1338, 0.519, -0.5425, 1.1152, 0.6987, -0.4895, 1.1387, 0.7305, -0.2908, 0.7178, 0.5728, -0.4177, 0.7227, 0.7847, -0.3494, 0.7144, 0.5386, -0.3494, 0.7144, 0.5386, -0.4177, 0.7227, 0.7847, -0.4763, 0.7192, 0.7505, -0.2866, 0.7969, 0.5659, -0.3638, 0.7969, 0.5195, -0.2866, 0.8838, 0.5659, -0.2866, 0.8838, 0.5659, -0.3638, 0.7969, 0.5195, -0.3638, 0.8838, 0.5195, -0.2866, 0.8838, 0.5659, -0.3638, 0.8838, 0.5195, -0.2866, 0.9712, 0.5659, -0.2866, 0.9712, 0.5659, -0.3638, 0.8838, 0.5195, -0.3638, 0.9712, 0.5195, -0.2866, 0.9712, 0.5659, -0.3638, 0.9712, 0.5195, -0.2866, 1.0576, 0.5659, -0.2866, 1.0576, 0.5659, -0.3638, 0.9712, 0.5195, -0.3638, 1.0576, 0.5195, -0.3625, 1.1338, 0.519, -0.4895, 1.1387, 0.7305, -0.3052, 1.1367, 0.5532, -0.3052, 1.1367, 0.5532, -0.4895, 1.1387, 0.7305, -0.4321, 1.1416, 0.7651, -0.2358, 0.7412, 0.6006, -0.3628, 0.7461, 0.812, -0.2908, 0.7178, 0.5728, -0.2908, 0.7178, 0.5728, -0.3628, 0.7461, 0.812, -0.4177, 0.7227, 0.7847, -0.2053, 0.7969, 0.604, -0.2866, 0.7969, 0.5659, -0.2053, 0.8838, 0.604, -0.2053, 0.8838, 0.604, -0.2866, 0.7969, 0.5659, -0.2866, 0.8838, 0.5659, -0.2053, 0.8838, 0.604, -0.2866, 0.8838, 0.5659, -0.2053, 0.9712, 0.604, -0.2053, 0.9712, 0.604, -0.2866, 0.8838, 0.5659, -0.2866, 0.9712, 0.5659, -0.2053, 0.9712, 0.604, -0.2866, 0.9712, 0.5659, -0.2053, 1.0576, 0.604, -0.2053, 1.0576, 0.604, -0.2866, 0.9712, 0.5659, -0.2866, 1.0576, 0.5659, -0.2496, 1.1191, 0.5864, -0.3765, 1.124, 0.7979, -0.2007, 1.082, 0.6123, -0.2007, 1.082, 0.6123, -0.3765, 1.124, 0.7979, -0.3276, 1.0869, 0.8242, -0.1677, 0.8252, 0.6177, -0.2053, 0.7969, 0.604, -0.1493, 0.8984, 0.6226, -0.1493, 0.8984, 0.6226, -0.2053, 0.7969, 0.604, -0.2053, 0.8838, 0.604, -0.1555, 0.8379, 0.6304, -0.2825, 0.8428, 0.8423, -0.1882, 0.7827, 0.6191, -0.1882, 0.7827, 0.6191, -0.2825, 0.8428, 0.8423, -0.3152, 0.7871, 0.8311, -0.142, 0.9688, 0.6338, -0.2688, 0.9736, 0.8457, -0.1392, 0.9023, 0.6348, -0.1392, 0.9023, 0.6348, -0.2688, 0.9736, 0.8457, -0.2661, 0.9067, 0.8462, -0.1635, 1.0303, 0.6289, -0.2903, 1.0352, 0.8408, -0.142, 0.9688, 0.6338, -0.142, 0.9688, 0.6338, -0.2903, 1.0352, 0.8408, -0.2688, 0.9736, 0.8457, -0.2053, 1.0576, 0.604, -0.2866, 1.0576, 0.5659, -0.2368, 1.1064, 0.5845, -0.2368, 1.1064, 0.5845, -0.2866, 1.0576, 0.5659, -0.2988, 1.126, 0.5488, -0.5029, 1.1523, 0.748, -0.5063, 1.166, 0.748, -0.4421, 1.1563, 0.7847, -0.4421, 1.1563, 0.7847, -0.5063, 1.166, 0.748, -0.4419, 1.1699, 0.7866, -0.4968, 1.1426, 0.7412, -0.5029, 1.1523, 0.748, -0.4385, 1.1455, 0.7764, -0.4385, 1.1455, 0.7764, -0.5029, 1.1523, 0.748, -0.4421, 1.1563, 0.7847, -0.4895, 1.1387, 0.7305, -0.4968, 1.1426, 0.7412, -0.4321, 1.1416, 0.7651, -0.4321, 1.1416, 0.7651, -0.4968, 1.1426, 0.7412, -0.4385, 1.1455, 0.7764, -0.4836, 0.7158, 0.7617, -0.4763, 0.7192, 0.7505, -0.4241, 0.7192, 0.7969, -0.4241, 0.7192, 0.7969, -0.4763, 0.7192, 0.7505, -0.4177, 0.7227, 0.7847, -0.4897, 0.7061, 0.77, -0.4836, 0.7158, 0.7617, -0.4275, 0.7095, 0.8062, -0.4275, 0.7095, 0.8062, -0.4836, 0.7158, 0.7617, -0.4241, 0.7192, 0.7969, -0.4927, 0.6924, 0.772, -0.4897, 0.7061, 0.77, -0.4268, 0.6958, 0.8105, -0.4268, 0.6958, 0.8105, -0.4897, 0.7061, 0.77, -0.4275, 0.7095, 0.8062, -0.2695, 0.9067, 0.8594, -0.2661, 0.9067, 0.8462, -0.2725, 0.9746, 0.8584, -0.2725, 0.9746, 0.8584, -0.2661, 0.9067, 0.8462, -0.2688, 0.9736, 0.8457, -0.2651, 0.9058, 0.8711, -0.2695, 0.9067, 0.8594, -0.2683, 0.9771, 0.8706, -0.2683, 0.9771, 0.8706, -0.2695, 0.9067, 0.8594, -0.2725, 0.9746, 0.8584, -0.2542, 0.9048, 0.8789, -0.2651, 0.9058, 0.8711, -0.2573, 0.9795, 0.8779, -0.2573, 0.9795, 0.8779, -0.2651, 0.9058, 0.8711, -0.2683, 0.9771, 0.8706, -0.2861, 0.8413, 0.855, -0.2825, 0.8428, 0.8423, -0.2695, 0.9067, 0.8594, -0.2695, 0.9067, 0.8594, -0.2825, 0.8428, 0.8423, -0.2661, 0.9067, 0.8462, -0.2827, 0.8374, 0.8667, -0.2861, 0.8413, 0.855, -0.2651, 0.9058, 0.8711, -0.2651, 0.9058, 0.8711, -0.2861, 0.8413, 0.855, -0.2695, 0.9067, 0.8594, -0.2727, 0.832, 0.874, -0.2827, 0.8374, 0.8667, -0.2542, 0.9048, 0.8789, -0.2542, 0.9048, 0.8789, -0.2827, 0.8374, 0.8667, -0.2651, 0.9058, 0.8711, -0.2942, 1.0371, 0.8535, -0.2903, 1.0352, 0.8408, -0.3323, 1.0898, 0.8364, -0.3323, 1.0898, 0.8364, -0.2903, 1.0352, 0.8408, -0.3276, 1.0869, 0.8242, -0.291, 1.043, 0.8647, -0.2942, 1.0371, 0.8535, -0.3306, 1.0977, 0.8472, -0.3306, 1.0977, 0.8472, -0.2942, 1.0371, 0.8535, -0.3323, 1.0898, 0.8364, -0.2815, 1.0488, 0.8716, -0.291, 1.043, 0.8647, -0.3235, 1.1074, 0.853, -0.3235, 1.1074, 0.853, -0.291, 1.043, 0.8647, -0.3306, 1.0977, 0.8472, -0.4421, 1.1563, 0.7847, -0.4419, 1.1699, 0.7866, -0.3828, 1.1377, 0.8193, -0.3828, 1.1377, 0.8193, -0.4419, 1.1699, 0.7866, -0.3789, 1.1494, 0.8237, -0.4385, 1.1455, 0.7764, -0.4421, 1.1563, 0.7847, -0.3821, 1.1279, 0.8101, -0.3821, 1.1279, 0.8101, -0.4421, 1.1563, 0.7847, -0.3828, 1.1377, 0.8193, -0.4321, 1.1416, 0.7651, -0.4385, 1.1455, 0.7764, -0.3765, 1.124, 0.7979, -0.3765, 1.124, 0.7979, -0.4385, 1.1455, 0.7764, -0.3821, 1.1279, 0.8101, -0.6318, 1.0225, 0.6577, -0.6431, 1.0283, 0.6523, -0.6035, 1.082, 0.6816, -0.6035, 1.082, 0.6816, -0.6431, 1.0283, 0.6523, -0.6128, 1.0908, 0.6772, -0.6201, 1.0186, 0.6558, -0.6318, 1.0225, 0.6577, -0.5933, 1.0752, 0.6782, -0.5933, 1.0752, 0.6782, -0.6318, 1.0225, 0.6577, -0.6035, 1.082, 0.6816, -0.6104, 1.0166, 0.646, -0.6201, 1.0186, 0.6558, -0.584, 1.0723, 0.6685, -0.584, 1.0723, 0.6685, -0.6201, 1.0186, 0.6558, -0.5933, 1.0752, 0.6782, -0.2725, 0.9746, 0.8584, -0.2688, 0.9736, 0.8457, -0.2942, 1.0371, 0.8535, -0.2942, 1.0371, 0.8535, -0.2688, 0.9736, 0.8457, -0.2903, 1.0352, 0.8408, -0.2683, 0.9771, 0.8706, -0.2725, 0.9746, 0.8584, -0.291, 1.043, 0.8647, -0.291, 1.043, 0.8647, -0.2725, 0.9746, 0.8584, -0.2942, 1.0371, 0.8535, -0.2573, 0.9795, 0.8779, -0.2683, 0.9771, 0.8706, -0.2815, 1.0488, 0.8716, -0.2815, 1.0488, 0.8716, -0.2683, 0.9771, 0.8706, -0.291, 1.043, 0.8647, -0.5923, 0.7627, 0.6934, -0.6011, 0.7529, 0.6904, -0.6245, 0.8174, 0.6641, -0.6245, 0.8174, 0.6641, -0.6011, 0.7529, 0.6904, -0.6353, 0.811, 0.6592, -0.582, 0.77, 0.6895, -0.5923, 0.7627, 0.6934, -0.6128, 0.8223, 0.6616, -0.6128, 0.8223, 0.6616, -0.5923, 0.7627, 0.6934, -0.6245, 0.8174, 0.6641, -0.5732, 0.7725, 0.6792, -0.582, 0.77, 0.6895, -0.6035, 0.8237, 0.6519, -0.6035, 0.8237, 0.6519, -0.582, 0.77, 0.6895, -0.6128, 0.8223, 0.6616, -0.6245, 0.8174, 0.6641, -0.6353, 0.811, 0.6592, -0.6411, 0.8833, 0.647, -0.6411, 0.8833, 0.647, -0.6353, 0.811, 0.6592, -0.6528, 0.8809, 0.6411, -0.6128, 0.8223, 0.6616, -0.6245, 0.8174, 0.6641, -0.6284, 0.8853, 0.6455, -0.6284, 0.8853, 0.6455, -0.6245, 0.8174, 0.6641, -0.6411, 0.8833, 0.647, -0.6035, 0.8237, 0.6519, -0.6128, 0.8223, 0.6616, -0.6187, 0.8857, 0.6362, -0.6187, 0.8857, 0.6362, -0.6128, 0.8223, 0.6616, -0.6284, 0.8853, 0.6455, -0.6436, 0.9546, 0.6445, -0.6553, 0.9561, 0.6382, -0.6318, 1.0225, 0.6577, -0.6318, 1.0225, 0.6577, -0.6553, 0.9561, 0.6382, -0.6431, 1.0283, 0.6523, -0.6309, 0.9531, 0.6426, -0.6436, 0.9546, 0.6445, -0.6201, 1.0186, 0.6558, -0.6201, 1.0186, 0.6558, -0.6436, 0.9546, 0.6445, -0.6318, 1.0225, 0.6577, -0.6211, 0.9526, 0.6333, -0.6309, 0.9531, 0.6426, -0.6104, 1.0166, 0.646, -0.6104, 1.0166, 0.646, -0.6309, 0.9531, 0.6426, -0.6201, 1.0186, 0.6558, -0.3196, 0.7852, 0.8438, -0.3152, 0.7871, 0.8311, -0.2861, 0.8413, 0.855, -0.2861, 0.8413, 0.855, -0.3152, 0.7871, 0.8311, -0.2825, 0.8428, 0.8423, -0.3176, 0.7788, 0.8545, -0.3196, 0.7852, 0.8438, -0.2827, 0.8374, 0.8667, -0.2827, 0.8374, 0.8667, -0.3196, 0.7852, 0.8438, -0.2861, 0.8413, 0.855, -0.3098, 0.7695, 0.8613, -0.3176, 0.7788, 0.8545, -0.2727, 0.832, 0.874, -0.2727, 0.832, 0.874, -0.3176, 0.7788, 0.8545, -0.2827, 0.8374, 0.8667, -0.6411, 0.8833, 0.647, -0.6528, 0.8809, 0.6411, -0.6436, 0.9546, 0.6445, -0.6436, 0.9546, 0.6445, -0.6528, 0.8809, 0.6411, -0.6553, 0.9561, 0.6382, -0.6284, 0.8853, 0.6455, -0.6411, 0.8833, 0.647, -0.6309, 0.9531, 0.6426, -0.6309, 0.9531, 0.6426, -0.6411, 0.8833, 0.647, -0.6436, 0.9546, 0.6445, -0.6187, 0.8857, 0.6362, -0.6284, 0.8853, 0.6455, -0.6211, 0.9526, 0.6333, -0.6211, 0.9526, 0.6333, -0.6284, 0.8853, 0.6455, -0.6309, 0.9531, 0.6426, -0.582, 0.77, 0.6895, -0.5732, 0.7725, 0.6792, -0.5386, 0.7334, 0.7246, -0.5386, 0.7334, 0.7246, -0.5732, 0.7725, 0.6792, -0.5303, 0.7363, 0.7139, -0.5923, 0.7627, 0.6934, -0.582, 0.77, 0.6895, -0.5469, 0.7246, 0.7305, -0.5469, 0.7246, 0.7305, -0.582, 0.77, 0.6895, -0.5386, 0.7334, 0.7246, -0.6011, 0.7529, 0.6904, -0.5923, 0.7627, 0.6934, -0.5527, 0.7119, 0.73, -0.5527, 0.7119, 0.73, -0.5923, 0.7627, 0.6934, -0.5469, 0.7246, 0.7305, -0.3828, 1.1377, 0.8193, -0.3789, 1.1494, 0.8237, -0.3306, 1.0977, 0.8472, -0.3306, 1.0977, 0.8472, -0.3789, 1.1494, 0.8237, -0.3235, 1.1074, 0.853, -0.3821, 1.1279, 0.8101, -0.3828, 1.1377, 0.8193, -0.3323, 1.0898, 0.8364, -0.3323, 1.0898, 0.8364, -0.3828, 1.1377, 0.8193, -0.3306, 1.0977, 0.8472, -0.3765, 1.124, 0.7979, -0.3821, 1.1279, 0.8101, -0.3276, 1.0869, 0.8242, -0.3276, 1.0869, 0.8242, -0.3821, 1.1279, 0.8101, -0.3323, 1.0898, 0.8364, -0.5596, 1.127, 0.7139, -0.5659, 1.1387, 0.7119, -0.5029, 1.1523, 0.748, -0.5029, 1.1523, 0.748, -0.5659, 1.1387, 0.7119, -0.5063, 1.166, 0.748, -0.5508, 1.1182, 0.709, -0.5596, 1.127, 0.7139, -0.4968, 1.1426, 0.7412, -0.4968, 1.1426, 0.7412, -0.5596, 1.127, 0.7139, -0.5029, 1.1523, 0.748, -0.5425, 1.1152, 0.6987, -0.5508, 1.1182, 0.709, -0.4895, 1.1387, 0.7305, -0.4895, 1.1387, 0.7305, -0.5508, 1.1182, 0.709, -0.4968, 1.1426, 0.7412, -0.6035, 1.082, 0.6816, -0.6128, 1.0908, 0.6772, -0.5596, 1.127, 0.7139, -0.5596, 1.127, 0.7139, -0.6128, 1.0908, 0.6772, -0.5659, 1.1387, 0.7119, -0.5933, 1.0752, 0.6782, -0.6035, 1.082, 0.6816, -0.5508, 1.1182, 0.709, -0.5508, 1.1182, 0.709, -0.6035, 1.082, 0.6816, -0.5596, 1.127, 0.7139, -0.584, 1.0723, 0.6685, -0.5933, 1.0752, 0.6782, -0.5425, 1.1152, 0.6987, -0.5425, 1.1152, 0.6987, -0.5933, 1.0752, 0.6782, -0.5508, 1.1182, 0.709, -0.5386, 0.7334, 0.7246, -0.5303, 0.7363, 0.7139, -0.4836, 0.7158, 0.7617, -0.4836, 0.7158, 0.7617, -0.5303, 0.7363, 0.7139, -0.4763, 0.7192, 0.7505, -0.5469, 0.7246, 0.7305, -0.5386, 0.7334, 0.7246, -0.4897, 0.7061, 0.77, -0.4897, 0.7061, 0.77, -0.5386, 0.7334, 0.7246, -0.4836, 0.7158, 0.7617, -0.5527, 0.7119, 0.73, -0.5469, 0.7246, 0.7305, -0.4927, 0.6924, 0.772, -0.4927, 0.6924, 0.772, -0.5469, 0.7246, 0.7305, -0.4897, 0.7061, 0.77, -0.3679, 0.7432, 0.8247, -0.3628, 0.7461, 0.812, -0.3196, 0.7852, 0.8438, -0.3196, 0.7852, 0.8438, -0.3628, 0.7461, 0.812, -0.3152, 0.7871, 0.8311, -0.3684, 0.7344, 0.835, -0.3679, 0.7432, 0.8247, -0.3176, 0.7788, 0.8545, -0.3176, 0.7788, 0.8545, -0.3679, 0.7432, 0.8247, -0.3196, 0.7852, 0.8438, -0.364, 0.7227, 0.8408, -0.3684, 0.7344, 0.835, -0.3098, 0.7695, 0.8613, -0.3098, 0.7695, 0.8613, -0.3684, 0.7344, 0.835, -0.3176, 0.7788, 0.8545, -0.4241, 0.7192, 0.7969, -0.4177, 0.7227, 0.7847, -0.3679, 0.7432, 0.8247, -0.3679, 0.7432, 0.8247, -0.4177, 0.7227, 0.7847, -0.3628, 0.7461, 0.812, -0.4275, 0.7095, 0.8062, -0.4241, 0.7192, 0.7969, -0.3684, 0.7344, 0.835, -0.3684, 0.7344, 0.835, -0.4241, 0.7192, 0.7969, -0.3679, 0.7432, 0.8247, -0.4268, 0.6958, 0.8105, -0.4275, 0.7095, 0.8062, -0.364, 0.7227, 0.8408, -0.364, 0.7227, 0.8408, -0.4275, 0.7095, 0.8062, -0.3684, 0.7344, 0.835, -0.3484, 0.729, 0.5293, -0.4089, 0.749, 0.4873, -0.3638, 0.7969, 0.5195, -0.3638, 0.7969, 0.5195, -0.4089, 0.749, 0.4873, -0.436, 0.7969, 0.4661, -0.4851, 1.877, 0, -0.4836, 1.877, -0.0285, -0.425, 1.9023, 0, -0.425, 1.9023, 0, -0.4836, 1.877, -0.0285, -0.4241, 1.9023, -0.0276, -0.4836, 1.877, 0.0285, -0.4851, 1.877, 0, -0.4241, 1.9023, 0.0276, -0.4241, 1.9023, 0.0276, -0.4851, 1.877, 0, -0.425, 1.9023, 0, -0.425, 1.9023, 0, -0.4241, 1.9023, -0.0276, -0.3552, 1.9258, 0, -0.3552, 1.9258, 0, -0.4241, 1.9023, -0.0276, -0.3542, 1.9258, -0.0274, -0.3542, 1.9258, 0.0274, -0.3552, 1.9258, 0, -0.2817, 1.9424, 0.0282, -0.2817, 1.9424, 0.0282, -0.3552, 1.9258, 0, -0.2825, 1.9424, 0, -0.3552, 1.9258, 0, -0.3542, 1.9258, -0.0274, -0.2825, 1.9424, 0, -0.2825, 1.9424, 0, -0.3542, 1.9258, -0.0274, -0.2817, 1.9424, -0.0282, -0.094, 1.7617, -0.0413, -0.0945, 1.7617, 0, -0.1299, 1.8213, -0.0383, -0.1299, 1.8213, -0.0383, -0.0945, 1.7617, 0, -0.1328, 1.8213, 0, -0.3359, 1.8574, -0.037, -0.2537, 1.876, -0.0395, -0.3523, 1.9189, -0.0344, -0.3523, 1.9189, -0.0344, -0.2537, 1.876, -0.0395, -0.2791, 1.9365, -0.0354, -0.1798, 1.7422, 0.0961, -0.1884, 1.7422, 0.078, -0.0859, 1.7559, 0.0551, -0.4241, 1.9023, 0.0276, -0.425, 1.9023, 0, -0.3542, 1.9258, 0.0274, -0.3542, 1.9258, 0.0274, -0.425, 1.9023, 0, -0.3552, 1.9258, 0, -0.4883, 1.8008, 0.0327, -0.49, 1.8008, 0, -0.4897, 1.8672, 0.0289, -0.4897, 1.8672, 0.0289, -0.49, 1.8008, 0, -0.4912, 1.8672, 0, -0.2825, 1.9424, 0, -0.2817, 1.9424, -0.0282, -0.2145, 1.9521, 0, -0.2145, 1.9521, 0, -0.2817, 1.9424, -0.0282, -0.2141, 1.9521, -0.0315, -0.2791, 1.9365, 0.0354, -0.2537, 1.876, 0.0395, -0.3523, 1.9189, 0.0346, -0.3523, 1.9189, 0.0346, -0.2537, 1.876, 0.0395, -0.3354, 1.8574, 0.0391, -0.1687, 1.8877, 0.0311, -0.204, 1.9473, 0.0263, -0.1703, 1.8877, 0, -0.1703, 1.8877, 0, -0.204, 1.9473, 0.0263, -0.2045, 1.9473, 0, -0.4814, 1.8037, -0.0392, -0.4141, 1.832, -0.037, -0.4827, 1.8701, -0.0356, -0.4827, 1.8701, -0.0356, -0.4141, 1.832, -0.037, -0.4229, 1.8955, -0.0347, -0.4229, 1.8955, -0.0347, -0.4141, 1.832, -0.037, -0.3523, 1.9189, -0.0344, -0.3523, 1.9189, -0.0344, -0.4141, 1.832, -0.037, -0.3359, 1.8574, -0.037, -0.49, 1.8008, 0, -0.4883, 1.8008, -0.0327, -0.4912, 1.8672, 0, -0.4912, 1.8672, 0, -0.4883, 1.8008, -0.0327, -0.4897, 1.8672, -0.0289, -0.2537, 1.876, -0.0395, -0.1757, 1.8867, -0.0416, -0.2791, 1.9365, -0.0354, -0.2791, 1.9365, -0.0354, -0.1757, 1.8867, -0.0416, -0.2109, 1.9463, -0.0385, -0.1687, 1.8877, -0.035, -0.1703, 1.8877, 0, -0.204, 1.9473, -0.032, -0.204, 1.9473, -0.032, -0.1703, 1.8877, 0, -0.2045, 1.9473, 0, -0.2537, 1.876, 0.0395, -0.2791, 1.9365, 0.0354, -0.1757, 1.8867, 0.038, -0.1757, 1.8867, 0.038, -0.2791, 1.9365, 0.0354, -0.2109, 1.9463, 0.0333, -0.4226, 1.8955, 0.0349, -0.4138, 1.832, 0.0394, -0.4827, 1.8701, 0.0356, -0.4827, 1.8701, 0.0356, -0.4138, 1.832, 0.0394, -0.4814, 1.8037, 0.0395, -0.0898, 0.8892, 0.9121, -0.1787, 0.8892, 0.8989, -0.0898, 0.9766, 0.9121, -0.0898, 0.9766, 0.9121, -0.1787, 0.8892, 0.8989, -0.1787, 0.9766, 0.8989, -0.0209, 1.0283, 0.8428, -0.024, 1.0283, 0.9067, 0, 1.0293, 0.8438, 0, 1.0293, 0.8438, -0.024, 1.0283, 0.9067, 0, 1.0293, 0.9082, -0.0546, 0.7534, 0.8408, -0.0578, 0.7534, 0.9053, -0.0649, 0.7759, 0.8403, -0.0649, 0.7759, 0.8403, -0.0578, 0.7534, 0.9053, -0.068, 0.7759, 0.9048, 0, 0.7759, 0.8354, -0.0554, 0.7759, 0.8325, 0, 0.8892, 0.8354, 0, 0.8892, 0.8354, -0.0554, 0.7759, 0.8325, -0.0554, 0.8892, 0.8325, -0.0407, 1.0195, 0.8418, -0.0439, 1.0195, 0.9058, -0.0209, 1.0283, 0.8428, -0.0209, 1.0283, 0.8428, -0.0439, 1.0195, 0.9058, -0.024, 1.0283, 0.9067, -0.0659, 0.751, 0.9131, -0.0898, 0.7432, 0.9121, -0.0772, 0.7759, 0.9126, -0.0772, 0.7759, 0.9126, -0.0898, 0.7432, 0.9121, -0.0898, 0.7759, 0.9121, 0, 0.8892, 0.8354, -0.0554, 0.8892, 0.8325, 0, 0.9766, 0.8354, 0, 0.9766, 0.8354, -0.0554, 0.8892, 0.8325, -0.0554, 0.9766, 0.8325, -0.0491, 0.7314, 0.9141, -0.0898, 0.6885, 0.9121, -0.0659, 0.751, 0.9131, -0.0659, 0.751, 0.9131, -0.0898, 0.6885, 0.9121, -0.0898, 0.7432, 0.9121, 0, 0.7241, 0.8438, 0, 0.7241, 0.9082, -0.0186, 0.7256, 0.8428, -0.0186, 0.7256, 0.8428, 0, 0.7241, 0.9082, -0.0217, 0.7256, 0.9067, -0.0649, 0.7759, 0.8403, -0.068, 0.7759, 0.9048, -0.0649, 0.8892, 0.8403, -0.0649, 0.8892, 0.8403, -0.068, 0.7759, 0.9048, -0.068, 0.8892, 0.9048, -0.0649, 0.8892, 0.8403, -0.068, 0.8892, 0.9048, -0.0649, 0.9766, 0.8403, -0.0649, 0.9766, 0.8403, -0.068, 0.8892, 0.9048, -0.068, 0.9766, 0.9048, -0.0649, 0.9766, 0.8403, -0.068, 0.9766, 0.9048, -0.0584, 0.9995, 0.8408, -0.0584, 0.9995, 0.8408, -0.068, 0.9766, 0.9048, -0.0616, 0.9995, 0.9048, -0.0772, 0.7759, 0.9126, -0.0898, 0.7759, 0.9121, -0.0772, 0.8892, 0.9126, -0.0772, 0.8892, 0.9126, -0.0898, 0.7759, 0.9121, -0.0898, 0.8892, 0.9121, -0.0772, 0.8892, 0.9126, -0.0898, 0.8892, 0.9121, -0.0772, 0.9766, 0.9126, -0.0772, 0.9766, 0.9126, -0.0898, 0.8892, 0.9121, -0.0898, 0.9766, 0.9121, 0, 0.9766, 0.8354, -0.0554, 0.9766, 0.8325, 0, 1.0205, 0.8354, 0, 1.0205, 0.8354, -0.0554, 0.9766, 0.8325, -0.0185, 1.0195, 0.835, -0.0185, 1.0195, 0.835, -0.0554, 0.9766, 0.8325, -0.0353, 1.0127, 0.8335, -0.0353, 1.0127, 0.8335, -0.0554, 0.9766, 0.8325, -0.0498, 0.9961, 0.833, -0.0772, 0.9766, 0.9126, -0.0898, 0.9766, 0.9121, -0.0701, 1.002, 0.9131, -0.0701, 1.002, 0.9131, -0.0898, 0.9766, 0.9121, -0.0898, 1.0078, 0.9121, -0.0242, 0.7183, 0.915, 0, 0.7168, 0.9165, 0, 0.6885, 0.9165, -0.0701, 1.002, 0.9131, -0.0616, 0.9995, 0.9048, -0.0772, 0.9766, 0.9126, -0.0772, 0.9766, 0.9126, -0.0616, 0.9995, 0.9048, -0.068, 0.9766, 0.9048, -0.0772, 0.9766, 0.9126, -0.068, 0.9766, 0.9048, -0.0772, 0.8892, 0.9126, -0.0772, 0.8892, 0.9126, -0.068, 0.9766, 0.9048, -0.068, 0.8892, 0.9048, -0.0772, 0.8892, 0.9126, -0.068, 0.8892, 0.9048, -0.0772, 0.7759, 0.9126, -0.0772, 0.7759, 0.9126, -0.068, 0.8892, 0.9048, -0.068, 0.7759, 0.9048, -0.0242, 0.7183, 0.915, -0.0217, 0.7256, 0.9067, 0, 0.7168, 0.9165, 0, 0.7168, 0.9165, -0.0217, 0.7256, 0.9067, 0, 0.7241, 0.9082, -0.0255, 1.0352, 0.915, -0.024, 1.0283, 0.9067, -0.0498, 1.0244, 0.9141, -0.0498, 1.0244, 0.9141, -0.024, 1.0283, 0.9067, -0.0439, 1.0195, 0.9058, -0.0659, 0.751, 0.9131, -0.0578, 0.7534, 0.9053, -0.0491, 0.7314, 0.9141, -0.0491, 0.7314, 0.9141, -0.0578, 0.7534, 0.9053, -0.0435, 0.7368, 0.9058, 0, 1.0361, 0.9165, 0, 1.0293, 0.9082, -0.0255, 1.0352, 0.915, -0.0255, 1.0352, 0.915, 0, 1.0293, 0.9082, -0.024, 1.0283, 0.9067, -0.0498, 1.0244, 0.9141, -0.0439, 1.0195, 0.9058, -0.0701, 1.002, 0.9131, -0.0701, 1.002, 0.9131, -0.0439, 1.0195, 0.9058, -0.0616, 0.9995, 0.9048, -0.0772, 0.7759, 0.9126, -0.068, 0.7759, 0.9048, -0.0659, 0.751, 0.9131, -0.0659, 0.751, 0.9131, -0.068, 0.7759, 0.9048, -0.0578, 0.7534, 0.9053, -0.0491, 0.7314, 0.9141, -0.0435, 0.7368, 0.9058, -0.0242, 0.7183, 0.915, -0.0242, 0.7183, 0.915, -0.0435, 0.7368, 0.9058, -0.0217, 0.7256, 0.9067, -0.0584, 0.9995, 0.8408, -0.0616, 0.9995, 0.9048, -0.0407, 1.0195, 0.8418, -0.0407, 1.0195, 0.8418, -0.0616, 0.9995, 0.9048, -0.0439, 1.0195, 0.9058, 0, 0.6279, 0.9165, -0.0898, 0.6279, 0.9121, 0, 0.6885, 0.9165, 0, 0.6885, 0.9165, -0.0898, 0.6279, 0.9121, -0.0898, 0.6885, 0.9121, -0.0242, 0.7183, 0.915, 0, 0.6885, 0.9165, -0.0491, 0.7314, 0.9141, -0.0491, 0.7314, 0.9141, 0, 0.6885, 0.9165, -0.0898, 0.6885, 0.9121, -0.0898, 1.0635, 0.9121, -0.0892, 1.1416, 0.9063, 0, 1.0635, 0.9165, 0, 1.0635, 0.9165, -0.0892, 1.1416, 0.9063, 0, 1.1416, 0.9106, -0.0255, 1.0352, 0.915, 0, 1.0635, 0.9165, 0, 1.0361, 0.9165, -0.1787, 0.9766, 0.8989, -0.1787, 1.0635, 0.8989, -0.0898, 0.9766, 0.9121, -0.0898, 0.9766, 0.9121, -0.1787, 1.0635, 0.8989, -0.0898, 1.0078, 0.9121, -0.0898, 0.6885, 0.9121, -0.1787, 0.7153, 0.8989, -0.0898, 0.7432, 0.9121, -0.4319, 0.6279, 0.8081, -0.3506, 0.6279, 0.8467, -0.4319, 0.5498, 0.8081, -0.4319, 0.5498, 0.8081, -0.3506, 0.6279, 0.8467, -0.3506, 0.5498, 0.8467, -0.5024, 0.5576, 0.7661, -0.4319, 0.5498, 0.8081, -0.5024, 0.4668, 0.7661, -0.5024, 0.4668, 0.7661, -0.4319, 0.5498, 0.8081, -0.4319, 0.4668, 0.8081, -0.2659, 0.5498, 0.877, -0.1864, 0.5576, 0.897, -0.2659, 0.4668, 0.877, -0.2659, 0.4668, 0.877, -0.1864, 0.5576, 0.897, -0.1864, 0.4668, 0.897, -0.9121, 0.6279, -0.0898, -0.9165, 0.6279, 0, -0.9121, 0.5576, -0.0898, -0.9121, 0.5576, -0.0898, -0.9165, 0.6279, 0, -0.9165, 0.5576, 0, -0.3506, 0.6279, 0.8467, -0.2659, 0.6279, 0.877, -0.3506, 0.5498, 0.8467, -0.3506, 0.5498, 0.8467, -0.2659, 0.6279, 0.877, -0.2659, 0.5498, 0.877, -0.4783, 1.6533, 0.0951, -0.4907, 1.6494, 0.0544, -0.3899, 1.6914, 0.0776, -0.3899, 1.6914, 0.0776, -0.4907, 1.6494, 0.0544, -0.3931, 1.6914, 0.0562, -0.4138, 1.832, 0.0394, -0.4041, 1.7617, 0.0444, -0.4814, 1.8037, 0.0395, -0.4814, 1.8037, 0.0395, -0.4041, 1.7617, 0.0444, -0.48, 1.7295, 0.0437, -0.2969, 1.7207, 0.0591, -0.2974, 1.7207, 0.0558, -0.1976, 1.7422, 0.0551, -0.2537, 1.876, 0.0395, -0.2258, 1.8096, 0.0439, -0.3354, 1.8574, 0.0391, -0.3354, 1.8574, 0.0391, -0.2258, 1.8096, 0.0439, -0.3169, 1.7891, 0.044, -0.2969, 1.7207, -0.0591, -0.2896, 1.7207, -0.0878, -0.1974, 1.7422, -0.0551, -0.1974, 1.7422, -0.0551, -0.2896, 1.7207, -0.0878, -0.1952, 1.7422, -0.0592, -0.1299, 1.8213, -0.0383, -0.1328, 1.8213, 0, -0.1687, 1.8877, -0.035, -0.1687, 1.8877, -0.035, -0.1328, 1.8213, 0, -0.1703, 1.8877, 0, -0.2258, 1.8096, 0.0439, -0.2006, 1.749, 0.0479, -0.3169, 1.7891, 0.044, -0.3169, 1.7891, 0.044, -0.2006, 1.749, 0.0479, -0.3, 1.7275, 0.0485, -0.3354, 1.8574, 0.0391, -0.3169, 1.7891, 0.044, -0.4138, 1.832, 0.0394, -0.4138, 1.832, 0.0394, -0.3169, 1.7891, 0.044, -0.4041, 1.7617, 0.0444, -0.2817, 1.9424, 0.0282, -0.2825, 1.9424, 0, -0.2141, 1.9521, 0.0261, -0.2141, 1.9521, 0.0261, -0.2825, 1.9424, 0, -0.2145, 1.9521, 0, -0.13, 1.8213, 0.0363, -0.1687, 1.8877, 0.0311, -0.1328, 1.8213, 0, -0.1328, 1.8213, 0, -0.1687, 1.8877, 0.0311, -0.1703, 1.8877, 0, -0.3943, 1.6914, -0.0491, -0.3899, 1.6914, -0.0776, -0.2983, 1.7207, -0.0493, -0.2983, 1.7207, -0.0493, -0.3899, 1.6914, -0.0776, -0.2969, 1.7207, -0.0591, -0.4141, 1.832, -0.037, -0.4048, 1.7617, -0.0397, -0.3359, 1.8574, -0.037, -0.3359, 1.8574, -0.037, -0.4048, 1.7617, -0.0397, -0.3176, 1.7891, -0.0398, -0.4871, 1.7266, 0.0369, -0.4888, 1.7266, 0, -0.4883, 1.8008, 0.0327, -0.4883, 1.8008, 0.0327, -0.4888, 1.7266, 0, -0.49, 1.8008, 0, -0.3176, 1.7891, -0.0398, -0.2258, 1.8096, -0.0439, -0.3359, 1.8574, -0.037, -0.3359, 1.8574, -0.037, -0.2258, 1.8096, -0.0439, -0.2537, 1.876, -0.0395, -0.1952, 1.7422, 0.0592, -0.1976, 1.7422, 0.0551, -0.0859, 1.7559, 0.0551, -0.4888, 1.7266, 0, -0.4871, 1.7266, -0.0369, -0.49, 1.8008, 0, -0.49, 1.8008, 0, -0.4871, 1.7266, -0.0369, -0.4883, 1.8008, -0.0327, -0.5684, 1.6084, -0.056, -0.5601, 1.6084, -0.1115, -0.4907, 1.6494, -0.0549, -0.4907, 1.6494, -0.0549, -0.5601, 1.6084, -0.1115, -0.4783, 1.6533, -0.0951, -0.2258, 1.8096, 0.0439, -0.2537, 1.876, 0.0395, -0.1367, 1.8203, 0.0432, -0.1367, 1.8203, 0.0432, -0.2537, 1.876, 0.0395, -0.1757, 1.8867, 0.038, -0.4856, 1.6602, 0.0406, -0.4878, 1.6602, 0, -0.4871, 1.7266, 0.0369, -0.4871, 1.7266, 0.0369, -0.4878, 1.6602, 0, -0.4888, 1.7266, 0, -0.48, 1.7295, -0.0433, -0.4048, 1.7617, -0.0397, -0.4814, 1.8037, -0.0392, -0.4814, 1.8037, -0.0392, -0.4048, 1.7617, -0.0397, -0.4141, 1.832, -0.037, -0.3899, 1.6914, 0.0776, -0.3931, 1.6914, 0.0562, -0.2969, 1.7207, 0.0591, -0.2969, 1.7207, 0.0591, -0.3931, 1.6914, 0.0562, -0.2974, 1.7207, 0.0558, -0.2258, 1.8096, -0.0439, -0.1367, 1.8203, -0.045, -0.2537, 1.876, -0.0395, -0.2537, 1.876, -0.0395, -0.1367, 1.8203, -0.045, -0.1757, 1.8867, -0.0416, -0.094, 1.7617, 0.0411, -0.13, 1.8213, 0.0363, -0.0945, 1.7617, 0, -0.0945, 1.7617, 0, -0.13, 1.8213, 0.0363, -0.1328, 1.8213, 0, -0.4856, 1.6602, 0.0406, -0.4788, 1.6631, 0.0475, -0.4907, 1.6494, 0.0544, -0.0859, 1.7559, 0.0551, -0.1016, 1.7607, 0.0479, -0.094, 1.7617, 0.0411, -0.094, 1.7617, -0.0413, -0.1016, 1.7607, -0.0481, -0.0853, 1.7559, -0.0562, -0.4907, 1.6494, -0.0549, -0.4788, 1.6631, -0.047, -0.4856, 1.6602, -0.0406, -0.4836, 1.877, 0.0285, -0.4827, 1.8701, 0.0356, -0.4897, 1.8672, 0.0289, -0.4897, 1.8672, -0.0289, -0.4827, 1.8701, -0.0356, -0.4836, 1.877, -0.0285, -0.2109, 1.9463, -0.0385, -0.204, 1.9473, -0.032, -0.2141, 1.9521, -0.0315, -0.204, 1.9473, 0.0263, -0.2109, 1.9463, 0.0333, -0.2141, 1.9521, 0.0261, -0.4907, 1.6494, 0.0544, -0.4788, 1.6631, 0.0475, -0.3931, 1.6914, 0.0562, -0.3931, 1.6914, 0.0562, -0.4788, 1.6631, 0.0475, -0.395, 1.6982, 0.0489, -0.4788, 1.6631, -0.047, -0.4907, 1.6494, -0.0549, -0.396, 1.6982, -0.0421, -0.396, 1.6982, -0.0421, -0.4907, 1.6494, -0.0549, -0.3943, 1.6914, -0.0491, -0.4934, 1.6504, 0, -0.4878, 1.6602, 0, -0.4907, 1.6494, 0.0544, -0.4907, 1.6494, 0.0544, -0.4878, 1.6602, 0, -0.4856, 1.6602, 0.0406, -0.1976, 1.7422, 0.0551, -0.2006, 1.749, 0.0479, -0.0859, 1.7559, 0.0551, -0.0859, 1.7559, 0.0551, -0.2006, 1.749, 0.0479, -0.1016, 1.7607, 0.0479, -0.396, 1.6982, -0.0421, -0.3943, 1.6914, -0.0491, -0.301, 1.7275, -0.0423, -0.301, 1.7275, -0.0423, -0.3943, 1.6914, -0.0491, -0.2983, 1.7207, -0.0493, -0.3931, 1.6914, 0.0562, -0.395, 1.6982, 0.0489, -0.2974, 1.7207, 0.0558, -0.2974, 1.7207, 0.0558, -0.395, 1.6982, 0.0489, -0.3, 1.7275, 0.0485, -0.2006, 1.749, -0.0479, -0.1974, 1.7422, -0.0551, -0.1016, 1.7607, -0.0481, -0.1016, 1.7607, -0.0481, -0.1974, 1.7422, -0.0551, -0.0853, 1.7559, -0.0562, -0.4878, 1.6602, 0, -0.4934, 1.6504, 0, -0.4856, 1.6602, -0.0406, -0.4856, 1.6602, -0.0406, -0.4934, 1.6504, 0, -0.4907, 1.6494, -0.0549, -0.0841, 1.7559, 0, -0.0945, 1.7617, 0, -0.0853, 1.7559, -0.0562, -0.0853, 1.7559, -0.0562, -0.0945, 1.7617, 0, -0.094, 1.7617, -0.0413, -0.301, 1.7275, -0.0423, -0.2983, 1.7207, -0.0493, -0.2006, 1.749, -0.0479, -0.2006, 1.749, -0.0479, -0.2983, 1.7207, -0.0493, -0.1974, 1.7422, -0.0551, -0.0945, 1.7617, 0, -0.0841, 1.7559, 0, -0.094, 1.7617, 0.0411, -0.094, 1.7617, 0.0411, -0.0841, 1.7559, 0, -0.0859, 1.7559, 0.0551, -0.4871, 1.7266, 0.0369, -0.48, 1.7295, 0.0437, -0.4856, 1.6602, 0.0406, -0.4856, 1.6602, 0.0406, -0.48, 1.7295, 0.0437, -0.4788, 1.6631, 0.0475, -0.1757, 1.8867, -0.0416, -0.1687, 1.8877, -0.035, -0.2109, 1.9463, -0.0385, -0.2109, 1.9463, -0.0385, -0.1687, 1.8877, -0.035, -0.204, 1.9473, -0.032, -0.4827, 1.8701, 0.0356, -0.4836, 1.877, 0.0285, -0.4226, 1.8955, 0.0349, -0.4226, 1.8955, 0.0349, -0.4836, 1.877, 0.0285, -0.4241, 1.9023, 0.0276, -0.4836, 1.877, -0.0285, -0.4827, 1.8701, -0.0356, -0.4241, 1.9023, -0.0276, -0.4241, 1.9023, -0.0276, -0.4827, 1.8701, -0.0356, -0.4229, 1.8955, -0.0347, -0.4912, 1.8672, 0, -0.4851, 1.877, 0, -0.4897, 1.8672, 0.0289, -0.4897, 1.8672, 0.0289, -0.4851, 1.877, 0, -0.4836, 1.877, 0.0285, -0.4241, 1.9023, -0.0276, -0.4229, 1.8955, -0.0347, -0.3542, 1.9258, -0.0274, -0.3542, 1.9258, -0.0274, -0.4229, 1.8955, -0.0347, -0.3523, 1.9189, -0.0344, -0.3542, 1.9258, -0.0274, -0.3523, 1.9189, -0.0344, -0.2817, 1.9424, -0.0282, -0.2817, 1.9424, -0.0282, -0.3523, 1.9189, -0.0344, -0.2791, 1.9365, -0.0354, -0.2817, 1.9424, -0.0282, -0.2791, 1.9365, -0.0354, -0.2141, 1.9521, -0.0315, -0.2141, 1.9521, -0.0315, -0.2791, 1.9365, -0.0354, -0.2109, 1.9463, -0.0385, -0.4226, 1.8955, 0.0349, -0.4241, 1.9023, 0.0276, -0.3523, 1.9189, 0.0346, -0.3523, 1.9189, 0.0346, -0.4241, 1.9023, 0.0276, -0.3542, 1.9258, 0.0274, -0.4851, 1.877, 0, -0.4912, 1.8672, 0, -0.4836, 1.877, -0.0285, -0.4836, 1.877, -0.0285, -0.4912, 1.8672, 0, -0.4897, 1.8672, -0.0289, -0.3523, 1.9189, 0.0346, -0.3542, 1.9258, 0.0274, -0.2791, 1.9365, 0.0354, -0.2791, 1.9365, 0.0354, -0.3542, 1.9258, 0.0274, -0.2817, 1.9424, 0.0282, -0.2791, 1.9365, 0.0354, -0.2817, 1.9424, 0.0282, -0.2109, 1.9463, 0.0333, -0.2109, 1.9463, 0.0333, -0.2817, 1.9424, 0.0282, -0.2141, 1.9521, 0.0261, -0.2145, 1.9521, 0, -0.2045, 1.9473, 0, -0.2141, 1.9521, 0.0261, -0.2141, 1.9521, 0.0261, -0.2045, 1.9473, 0, -0.204, 1.9473, 0.0263, -0.2045, 1.9473, 0, -0.2145, 1.9521, 0, -0.204, 1.9473, -0.032, -0.204, 1.9473, -0.032, -0.2145, 1.9521, 0, -0.2141, 1.9521, -0.0315, -0.4883, 1.8008, -0.0327, -0.4814, 1.8037, -0.0392, -0.4897, 1.8672, -0.0289, -0.4897, 1.8672, -0.0289, -0.4814, 1.8037, -0.0392, -0.4827, 1.8701, -0.0356, -0.1367, 1.8203, 0.0432, -0.13, 1.8213, 0.0363, -0.1016, 1.7607, 0.0479, -0.1016, 1.7607, 0.0479, -0.13, 1.8213, 0.0363, -0.094, 1.7617, 0.0411, -0.2974, 1.7207, 0.0558, -0.3, 1.7275, 0.0485, -0.1976, 1.7422, 0.0551, -0.1976, 1.7422, 0.0551, -0.3, 1.7275, 0.0485, -0.2006, 1.749, 0.0479, -0.4897, 1.8672, 0.0289, -0.4827, 1.8701, 0.0356, -0.4883, 1.8008, 0.0327, -0.4883, 1.8008, 0.0327, -0.4827, 1.8701, 0.0356, -0.4814, 1.8037, 0.0395, -0.4883, 1.8008, 0.0327, -0.4814, 1.8037, 0.0395, -0.4871, 1.7266, 0.0369, -0.4871, 1.7266, 0.0369, -0.4814, 1.8037, 0.0395, -0.48, 1.7295, 0.0437, -0.1016, 1.7607, -0.0481, -0.094, 1.7617, -0.0413, -0.1367, 1.8203, -0.045, -0.1367, 1.8203, -0.045, -0.094, 1.7617, -0.0413, -0.1299, 1.8213, -0.0383, -0.1367, 1.8203, -0.045, -0.1299, 1.8213, -0.0383, -0.1757, 1.8867, -0.0416, -0.1757, 1.8867, -0.0416, -0.1299, 1.8213, -0.0383, -0.1687, 1.8877, -0.035, -0.4856, 1.6602, -0.0406, -0.4788, 1.6631, -0.047, -0.4871, 1.7266, -0.0369, -0.4871, 1.7266, -0.0369, -0.4788, 1.6631, -0.047, -0.48, 1.7295, -0.0433, -0.4871, 1.7266, -0.0369, -0.48, 1.7295, -0.0433, -0.4883, 1.8008, -0.0327, -0.4883, 1.8008, -0.0327, -0.48, 1.7295, -0.0433, -0.4814, 1.8037, -0.0392, -0.2109, 1.9463, 0.0333, -0.204, 1.9473, 0.0263, -0.1757, 1.8867, 0.038, -0.1757, 1.8867, 0.038, -0.204, 1.9473, 0.0263, -0.1687, 1.8877, 0.0311, -0.1757, 1.8867, 0.038, -0.1687, 1.8877, 0.0311, -0.1367, 1.8203, 0.0432, -0.1367, 1.8203, 0.0432, -0.1687, 1.8877, 0.0311, -0.13, 1.8213, 0.0363, -0.0841, 1.7559, 0, -0.0793, 1.7559, -0.0651, -0.0793, 1.7559, 0.0651, -0.0841, 1.7559, 0, -0.0853, 1.7559, -0.0562, -0.0793, 1.7559, -0.0651, -0.0498, 1.0244, 0.9141, -0.0898, 1.0635, 0.9121, -0.0255, 1.0352, 0.915, -0.0255, 1.0352, 0.915, -0.0898, 1.0635, 0.9121, 0, 1.0635, 0.9165, -0.0649, 0.9766, 0.8403, -0.0584, 0.9995, 0.8408, -0.0554, 0.9766, 0.8325, -0.0554, 0.9766, 0.8325, -0.0584, 0.9995, 0.8408, -0.0498, 0.9961, 0.833, -0.0649, 0.8892, 0.8403, -0.0649, 0.9766, 0.8403, -0.0554, 0.8892, 0.8325, -0.0554, 0.8892, 0.8325, -0.0649, 0.9766, 0.8403, -0.0554, 0.9766, 0.8325, -0.0649, 0.7759, 0.8403, -0.0649, 0.8892, 0.8403, -0.0554, 0.7759, 0.8325, -0.0554, 0.7759, 0.8325, -0.0649, 0.8892, 0.8403, -0.0554, 0.8892, 0.8325, 0, 0.7241, 0.8438, -0.0186, 0.7256, 0.8428, 0, 0.7324, 0.8354, 0, 0.7324, 0.8354, -0.0186, 0.7256, 0.8428, -0.0159, 0.7334, 0.835, -0.0407, 1.0195, 0.8418, -0.0209, 1.0283, 0.8428, -0.0353, 1.0127, 0.8335, -0.0353, 1.0127, 0.8335, -0.0209, 1.0283, 0.8428, -0.0185, 1.0195, 0.835, -0.0404, 0.7368, 0.8418, -0.0546, 0.7534, 0.8408, -0.0348, 0.7437, 0.8335, -0.0348, 0.7437, 0.8335, -0.0546, 0.7534, 0.8408, -0.0472, 0.7578, 0.833, -0.0209, 1.0283, 0.8428, 0, 1.0293, 0.8438, -0.0185, 1.0195, 0.835, -0.0185, 1.0195, 0.835, 0, 1.0293, 0.8438, 0, 1.0205, 0.8354, -0.0584, 0.9995, 0.8408, -0.0407, 1.0195, 0.8418, -0.0498, 0.9961, 0.833, -0.0498, 0.9961, 0.833, -0.0407, 1.0195, 0.8418, -0.0353, 1.0127, 0.8335, -0.0546, 0.7534, 0.8408, -0.0649, 0.7759, 0.8403, -0.0472, 0.7578, 0.833, -0.0472, 0.7578, 0.833, -0.0649, 0.7759, 0.8403, -0.0554, 0.7759, 0.8325, -0.0186, 0.7256, 0.8428, -0.0404, 0.7368, 0.8418, -0.0159, 0.7334, 0.835, -0.0159, 0.7334, 0.835, -0.0404, 0.7368, 0.8418, -0.0348, 0.7437, 0.8335, -0.1787, 1.0635, 0.8989, -0.0898, 1.0635, 0.9121, -0.0898, 1.0078, 0.9121, -0.1787, 0.7153, 0.8989, -0.1787, 0.8022, 0.8989, -0.0898, 0.7432, 0.9121, -0.0898, 0.7432, 0.9121, -0.1787, 0.8022, 0.8989, -0.0898, 0.7759, 0.9121, -0.2988, 1.126, 0.5488, -0.3591, 1.1221, 0.5127, -0.3052, 1.1367, 0.5532, -0.3052, 1.1367, 0.5532, -0.3591, 1.1221, 0.5127, -0.3625, 1.1338, 0.519, -0.2908, 0.7178, 0.5728, -0.3494, 0.7144, 0.5386, -0.2866, 0.7324, 0.5659, -0.2866, 0.7324, 0.5659, -0.3494, 0.7144, 0.5386, -0.3484, 0.729, 0.5293, -0.142, 0.9688, 0.6338, -0.1392, 0.9023, 0.6348, -0.1523, 0.9692, 0.6221, -0.1523, 0.9692, 0.6221, -0.1392, 0.9023, 0.6348, -0.1493, 0.8984, 0.6226, -0.1392, 0.9023, 0.6348, -0.1555, 0.8379, 0.6304, -0.1493, 0.8984, 0.6226, -0.1493, 0.8984, 0.6226, -0.1555, 0.8379, 0.6304, -0.1677, 0.8252, 0.6177, -0.2007, 1.082, 0.6123, -0.1635, 1.0303, 0.6289, -0.2064, 1.084, 0.5991, -0.2064, 1.084, 0.5991, -0.1635, 1.0303, 0.6289, -0.1769, 1.041, 0.6147, -0.2368, 1.1064, 0.5845, -0.2988, 1.126, 0.5488, -0.2496, 1.1191, 0.5864, -0.2496, 1.1191, 0.5864, -0.2988, 1.126, 0.5488, -0.3052, 1.1367, 0.5532, -0.4441, 1.0674, 0.4553, -0.4646, 1.0273, 0.4404, -0.4573, 1.0674, 0.457, -0.4573, 1.0674, 0.457, -0.4646, 1.0273, 0.4404, -0.4836, 1.0117, 0.4346, -0.1635, 1.0303, 0.6289, -0.142, 0.9688, 0.6338, -0.1769, 1.041, 0.6147, -0.1769, 1.041, 0.6147, -0.142, 0.9688, 0.6338, -0.1523, 0.9692, 0.6221, -0.4565, 0.8091, 0.4473, -0.4326, 0.77, 0.4668, -0.4766, 0.8188, 0.4404, -0.4766, 0.8188, 0.4404, -0.4326, 0.77, 0.4668, -0.4465, 0.7676, 0.4675, -0.4749, 0.8813, 0.4292, -0.4565, 0.8091, 0.4473, -0.4919, 0.8809, 0.4246, -0.4919, 0.8809, 0.4246, -0.4565, 0.8091, 0.4473, -0.4766, 0.8188, 0.4404, -0.4646, 1.0273, 0.4404, -0.4775, 0.9531, 0.4265, -0.4836, 1.0117, 0.4346, -0.4836, 1.0117, 0.4346, -0.4775, 0.9531, 0.4265, -0.4944, 0.9478, 0.4219, -0.1555, 0.8379, 0.6304, -0.1882, 0.7827, 0.6191, -0.1677, 0.8252, 0.6177, -0.1677, 0.8252, 0.6177, -0.1882, 0.7827, 0.6191, -0.1892, 0.7886, 0.6094, -0.4775, 0.9531, 0.4265, -0.4749, 0.8813, 0.4292, -0.4944, 0.9478, 0.4219, -0.4944, 0.9478, 0.4219, -0.4749, 0.8813, 0.4292, -0.4919, 0.8809, 0.4246, -0.4033, 0.7319, 0.502, -0.4465, 0.7676, 0.4675, -0.4089, 0.749, 0.4873, -0.4089, 0.749, 0.4873, -0.4465, 0.7676, 0.4675, -0.4326, 0.77, 0.4668, -0.2064, 1.084, 0.5991, -0.2368, 1.1064, 0.5845, -0.2007, 1.082, 0.6123, -0.2007, 1.082, 0.6123, -0.2368, 1.1064, 0.5845, -0.2496, 1.1191, 0.5864, -0.3591, 1.1221, 0.5127, -0.4182, 1.0957, 0.4761, -0.3625, 1.1338, 0.519, -0.3625, 1.1338, 0.519, -0.4182, 1.0957, 0.4761, -0.4158, 1.1104, 0.4873, -0.4182, 1.0957, 0.4761, -0.4441, 1.0674, 0.4553, -0.4158, 1.1104, 0.4873, -0.4158, 1.1104, 0.4873, -0.4441, 1.0674, 0.4553, -0.4573, 1.0674, 0.457, -0.3494, 0.7144, 0.5386, -0.4033, 0.7319, 0.502, -0.3484, 0.729, 0.5293, -0.3484, 0.729, 0.5293, -0.4033, 0.7319, 0.502, -0.4089, 0.749, 0.4873, -0.1882, 0.7827, 0.6191, -0.2358, 0.7412, 0.6006, -0.1892, 0.7886, 0.6094, -0.1892, 0.7886, 0.6094, -0.2358, 0.7412, 0.6006, -0.2229, 0.7593, 0.5967, -0.2358, 0.7412, 0.6006, -0.2908, 0.7178, 0.5728, -0.2229, 0.7593, 0.5967, -0.2229, 0.7593, 0.5967, -0.2908, 0.7178, 0.5728, -0.2866, 0.7324, 0.5659, -0.4319, 0.5498, 0.8081, -0.3506, 0.5498, 0.8467, -0.4319, 0.4668, 0.8081, -0.4319, 0.4668, 0.8081, -0.3506, 0.5498, 0.8467, -0.3506, 0.4668, 0.8467, -0.3506, 0.5498, 0.8467, -0.2659, 0.5498, 0.877, -0.3506, 0.4668, 0.8467, -0.3506, 0.4668, 0.8467, -0.2659, 0.5498, 0.877, -0.2659, 0.4668, 0.877, -0.0898, 0.6279, 0.9121, 0, 0.6279, 0.9165, -0.0898, 0.5576, 0.9121, -0.0898, 0.5576, 0.9121, 0, 0.6279, 0.9165, 0, 0.5576, 0.9165, -0.5811, 0.6279, -0.7085, -0.6479, 0.6279, -0.6479, -0.5811, 0.5576, -0.7085, -0.5811, 0.5576, -0.7085, -0.6479, 0.6279, -0.6479, -0.6479, 0.5576, -0.6479, -0.7085, 0.6279, 0.5811, -0.6479, 0.6279, 0.6479, -0.7085, 0.5576, 0.5811, -0.7085, 0.5576, 0.5811, -0.6479, 0.6279, 0.6479, -0.6479, 0.5576, 0.6479, -0.5088, 0.6279, 0.7617, -0.4319, 0.6279, 0.8081, -0.5024, 0.5576, 0.7661, -0.5024, 0.5576, 0.7661, -0.4319, 0.6279, 0.8081, -0.4319, 0.5498, 0.8081, -0.5088, 0.6279, -0.7617, -0.5811, 0.6279, -0.7085, -0.5088, 0.5576, -0.7617, -0.5088, 0.5576, -0.7617, -0.5811, 0.6279, -0.7085, -0.5811, 0.5576, -0.7085, -0.7617, 0.6279, 0.5088, -0.7085, 0.6279, 0.5811, -0.7617, 0.5576, 0.5088, -0.7617, 0.5576, 0.5088, -0.7085, 0.6279, 0.5811, -0.7085, 0.5576, 0.5811, -0.7085, 0.6279, -0.5811, -0.7617, 0.6279, -0.5088, -0.7085, 0.5576, -0.5811, -0.7085, 0.5576, -0.5811, -0.7617, 0.6279, -0.5088, -0.7617, 0.5576, -0.5088, -0.2659, 0.6279, -0.877, -0.3506, 0.6279, -0.8467, -0.2659, 0.5576, -0.877, -0.2659, 0.5576, -0.877, -0.3506, 0.6279, -0.8467, -0.3506, 0.5576, -0.8467, -0.1787, 0.6279, 0.8989, -0.0898, 0.6279, 0.9121, -0.1864, 0.5576, 0.897, -0.1864, 0.5576, 0.897, -0.0898, 0.6279, 0.9121, -0.0898, 0.5576, 0.9121, -0.877, 0.6279, 0.2659, -0.8467, 0.6279, 0.3506, -0.877, 0.5576, 0.2659, -0.877, 0.5576, 0.2659, -0.8467, 0.6279, 0.3506, -0.8467, 0.5576, 0.3506, -0.8467, 0.6279, 0.3506, -0.8081, 0.6279, 0.4319, -0.8467, 0.5576, 0.3506, -0.8467, 0.5576, 0.3506, -0.8081, 0.6279, 0.4319, -0.8081, 0.5576, 0.4319, -0.8081, 0.6279, 0.4319, -0.7617, 0.6279, 0.5088, -0.8081, 0.5576, 0.4319, -0.8081, 0.5576, 0.4319, -0.7617, 0.6279, 0.5088, -0.7617, 0.5576, 0.5088, -0.7617, 0.6279, -0.5088, -0.8081, 0.6279, -0.4319, -0.7617, 0.5576, -0.5088, -0.7617, 0.5576, -0.5088, -0.8081, 0.6279, -0.4319, -0.8081, 0.5576, -0.4319, -0.2659, 0.4668, 0.877, -0.1864, 0.4668, 0.897, -0.2659, 0.4031, 0.877, -0.2659, 0.4031, 0.877, -0.1864, 0.4668, 0.897, -0.1864, 0.4031, 0.897, -0.5811, 0.6279, 0.7085, -0.5088, 0.6279, 0.7617, -0.5811, 0.5576, 0.7085, -0.5811, 0.5576, 0.7085, -0.5088, 0.6279, 0.7617, -0.5024, 0.5576, 0.7661, -0.9121, 0.6279, 0.0898, -0.8989, 0.6279, 0.1787, -0.9121, 0.5576, 0.0898, -0.9121, 0.5576, 0.0898, -0.8989, 0.6279, 0.1787, -0.8989, 0.5576, 0.1787, -0.877, 0.6279, -0.2659, -0.8989, 0.6279, -0.1787, -0.877, 0.5576, -0.2659, -0.877, 0.5576, -0.2659, -0.8989, 0.6279, -0.1787, -0.8989, 0.5576, -0.1787, -0.2659, 0.6279, 0.877, -0.1787, 0.6279, 0.8989, -0.2659, 0.5498, 0.877, -0.2659, 0.5498, 0.877, -0.1787, 0.6279, 0.8989, -0.1864, 0.5576, 0.897, -0.6479, 0.6279, -0.6479, -0.7085, 0.6279, -0.5811, -0.6479, 0.5576, -0.6479, -0.6479, 0.5576, -0.6479, -0.7085, 0.6279, -0.5811, -0.7085, 0.5576, -0.5811, -0.6479, 0.6279, 0.6479, -0.5811, 0.6279, 0.7085, -0.6479, 0.5576, 0.6479, -0.6479, 0.5576, 0.6479, -0.5811, 0.6279, 0.7085, -0.5811, 0.5576, 0.7085, -0.4319, 0.6279, -0.8081, -0.5088, 0.6279, -0.7617, -0.4319, 0.5576, -0.8081, -0.4319, 0.5576, -0.8081, -0.5088, 0.6279, -0.7617, -0.5088, 0.5576, -0.7617, -0.8081, 0.6279, -0.4319, -0.8467, 0.6279, -0.3506, -0.8081, 0.5576, -0.4319, -0.8081, 0.5576, -0.4319, -0.8467, 0.6279, -0.3506, -0.8467, 0.5576, -0.3506, -0.3506, 0.6279, -0.8467, -0.4319, 0.6279, -0.8081, -0.3506, 0.5576, -0.8467, -0.3506, 0.5576, -0.8467, -0.4319, 0.6279, -0.8081, -0.4319, 0.5576, -0.8081, -0.8467, 0.6279, -0.3506, -0.877, 0.6279, -0.2659, -0.8467, 0.5576, -0.3506, -0.8467, 0.5576, -0.3506, -0.877, 0.6279, -0.2659, -0.877, 0.5576, -0.2659, -0.4319, 0.4668, 0.8081, -0.3506, 0.4668, 0.8467, -0.4319, 0.4031, 0.8081, -0.4319, 0.4031, 0.8081, -0.3506, 0.4668, 0.8467, -0.3506, 0.4031, 0.8467, -0.0898, 0.6279, -0.9121, -0.1787, 0.6279, -0.8989, -0.0898, 0.5576, -0.9121, -0.0898, 0.5576, -0.9121, -0.1787, 0.6279, -0.8989, -0.1787, 0.5576, -0.8989, -0.3506, 0.4668, 0.8467, -0.2659, 0.4668, 0.877, -0.3506, 0.4031, 0.8467, -0.3506, 0.4031, 0.8467, -0.2659, 0.4668, 0.877, -0.2659, 0.4031, 0.877, -0.9165, 0.6279, 0, -0.9121, 0.6279, 0.0898, -0.9165, 0.5576, 0, -0.9165, 0.5576, 0, -0.9121, 0.6279, 0.0898, -0.9121, 0.5576, 0.0898, -0.1787, 0.6279, -0.8989, -0.2659, 0.6279, -0.877, -0.1787, 0.5576, -0.8989, -0.1787, 0.5576, -0.8989, -0.2659, 0.6279, -0.877, -0.2659, 0.5576, -0.877, -0.8989, 0.6279, 0.1787, -0.877, 0.6279, 0.2659, -0.8989, 0.5576, 0.1787, -0.8989, 0.5576, 0.1787, -0.877, 0.6279, 0.2659, -0.877, 0.5576, 0.2659, 0, 0.6279, -0.9165, -0.0898, 0.6279, -0.9121, 0, 0.5576, -0.9165, 0, 0.5576, -0.9165, -0.0898, 0.6279, -0.9121, -0.0898, 0.5576, -0.9121, -0.5024, 0.4668, 0.7661, -0.4319, 0.4668, 0.8081, -0.5024, 0.4031, 0.7661, -0.5024, 0.4031, 0.7661, -0.4319, 0.4668, 0.8081, -0.4319, 0.4031, 0.8081, -0.1864, 0.5576, 0.897, -0.1694, 0.5498, 0.8921, -0.1772, 0.542, 0.8911, -0.5049, 0.542, 0.7554, -0.5107, 0.5498, 0.7505, -0.5024, 0.5576, 0.7661, -0.1769, 0.4031, 0.8911, -0.1844, 0.395, 0.8892, -0.1864, 0.4031, 0.897, -0.5024, 0.4031, 0.7661, -0.4983, 0.395, 0.7593, -0.5049, 0.4031, 0.7554, -0.7021, 0.5498, -0.5762, -0.6426, 0.5498, -0.6426, -0.7085, 0.5576, -0.5811, -0.7085, 0.5576, -0.5811, -0.6426, 0.5498, -0.6426, -0.6479, 0.5576, -0.6479, -0.5762, 0.5498, 0.7021, -0.6426, 0.5498, 0.6426, -0.5811, 0.5576, 0.7085, -0.5811, 0.5576, 0.7085, -0.6426, 0.5498, 0.6426, -0.6479, 0.5576, 0.6479, -0.5107, 0.5498, 0.7505, -0.5762, 0.5498, 0.7021, -0.5024, 0.5576, 0.7661, -0.5024, 0.5576, 0.7661, -0.5762, 0.5498, 0.7021, -0.5811, 0.5576, 0.7085, -0.6426, 0.5498, -0.6426, -0.5762, 0.5498, -0.7021, -0.6479, 0.5576, -0.6479, -0.6479, 0.5576, -0.6479, -0.5762, 0.5498, -0.7021, -0.5811, 0.5576, -0.7085, -0.6426, 0.5498, 0.6426, -0.7021, 0.5498, 0.5762, -0.6479, 0.5576, 0.6479, -0.6479, 0.5576, 0.6479, -0.7021, 0.5498, 0.5762, -0.7085, 0.5576, 0.5811, -0.8013, 0.5498, -0.4282, -0.7554, 0.5498, -0.5044, -0.8081, 0.5576, -0.4319, -0.8081, 0.5576, -0.4319, -0.7554, 0.5498, -0.5044, -0.7617, 0.5576, -0.5088, -0.4282, 0.5498, -0.8013, -0.3477, 0.5498, -0.8394, -0.4319, 0.5576, -0.8081, -0.4319, 0.5576, -0.8081, -0.3477, 0.5498, -0.8394, -0.3506, 0.5576, -0.8467, -0.8013, 0.5498, 0.4282, -0.8394, 0.5498, 0.3477, -0.8081, 0.5576, 0.4319, -0.8081, 0.5576, 0.4319, -0.8394, 0.5498, 0.3477, -0.8467, 0.5576, 0.3506, -0.7554, 0.5498, 0.5044, -0.8013, 0.5498, 0.4282, -0.7617, 0.5576, 0.5088, -0.7617, 0.5576, 0.5088, -0.8013, 0.5498, 0.4282, -0.8081, 0.5576, 0.4319, -0.7021, 0.5498, 0.5762, -0.7554, 0.5498, 0.5044, -0.7085, 0.5576, 0.5811, -0.7085, 0.5576, 0.5811, -0.7554, 0.5498, 0.5044, -0.7617, 0.5576, 0.5088, -0.8394, 0.5498, -0.3477, -0.8013, 0.5498, -0.4282, -0.8467, 0.5576, -0.3506, -0.8467, 0.5576, -0.3506, -0.8013, 0.5498, -0.4282, -0.8081, 0.5576, -0.4319, -0.0891, 0.5498, -0.9043, 0, 0.5498, -0.9087, -0.0898, 0.5576, -0.9121, -0.0898, 0.5576, -0.9121, 0, 0.5498, -0.9087, 0, 0.5576, -0.9165, -0.8691, 0.5498, 0.2637, -0.8911, 0.5498, 0.1772, -0.877, 0.5576, 0.2659, -0.877, 0.5576, 0.2659, -0.8911, 0.5498, 0.1772, -0.8989, 0.5576, 0.1787, -0.9121, 0.5576, -0.0898, -0.9165, 0.5576, 0, -0.9043, 0.5498, -0.0891, -0.9043, 0.5498, -0.0891, -0.9165, 0.5576, 0, -0.9087, 0.5498, 0, -0.9043, 0.5498, -0.0891, -0.8911, 0.5498, -0.1772, -0.9121, 0.5576, -0.0898, -0.9121, 0.5576, -0.0898, -0.8911, 0.5498, -0.1772, -0.8989, 0.5576, -0.1787, -0.0891, 0.5498, 0.9043, -0.1694, 0.5498, 0.8921, -0.0898, 0.5576, 0.9121, -0.0898, 0.5576, 0.9121, -0.1694, 0.5498, 0.8921, -0.1864, 0.5576, 0.897, -0.7554, 0.5498, -0.5044, -0.7021, 0.5498, -0.5762, -0.7617, 0.5576, -0.5088, -0.7617, 0.5576, -0.5088, -0.7021, 0.5498, -0.5762, -0.7085, 0.5576, -0.5811, 0, 0.5498, 0.9087, -0.0891, 0.5498, 0.9043, 0, 0.5576, 0.9165, 0, 0.5576, 0.9165, -0.0891, 0.5498, 0.9043, -0.0898, 0.5576, 0.9121, -0.5762, 0.5498, -0.7021, -0.5044, 0.5498, -0.7554, -0.5811, 0.5576, -0.7085, -0.5811, 0.5576, -0.7085, -0.5044, 0.5498, -0.7554, -0.5088, 0.5576, -0.7617, -0.8691, 0.5498, -0.2637, -0.8394, 0.5498, -0.3477, -0.877, 0.5576, -0.2659, -0.877, 0.5576, -0.2659, -0.8394, 0.5498, -0.3477, -0.8467, 0.5576, -0.3506, -0.5044, 0.5498, -0.7554, -0.4282, 0.5498, -0.8013, -0.5088, 0.5576, -0.7617, -0.5088, 0.5576, -0.7617, -0.4282, 0.5498, -0.8013, -0.4319, 0.5576, -0.8081, -0.8911, 0.5498, -0.1772, -0.8691, 0.5498, -0.2637, -0.8989, 0.5576, -0.1787, -0.8989, 0.5576, -0.1787, -0.8691, 0.5498, -0.2637, -0.877, 0.5576, -0.2659, -0.9043, 0.5498, 0.0891, -0.9087, 0.5498, 0, -0.9121, 0.5576, 0.0898, -0.9121, 0.5576, 0.0898, -0.9087, 0.5498, 0, -0.9165, 0.5576, 0, -0.2637, 0.5498, -0.8691, -0.1772, 0.5498, -0.8911, -0.2659, 0.5576, -0.877, -0.2659, 0.5576, -0.877, -0.1772, 0.5498, -0.8911, -0.1787, 0.5576, -0.8989, -0.8911, 0.5498, 0.1772, -0.9043, 0.5498, 0.0891, -0.8989, 0.5576, 0.1787, -0.8989, 0.5576, 0.1787, -0.9043, 0.5498, 0.0891, -0.9121, 0.5576, 0.0898, -0.3477, 0.5498, -0.8394, -0.2637, 0.5498, -0.8691, -0.3506, 0.5576, -0.8467, -0.3506, 0.5576, -0.8467, -0.2637, 0.5498, -0.8691, -0.2659, 0.5576, -0.877, -0.8394, 0.5498, 0.3477, -0.8691, 0.5498, 0.2637, -0.8467, 0.5576, 0.3506, -0.8467, 0.5576, 0.3506, -0.8691, 0.5498, 0.2637, -0.877, 0.5576, 0.2659, -0.1772, 0.5498, -0.8911, -0.0891, 0.5498, -0.9043, -0.1787, 0.5576, -0.8989, -0.1787, 0.5576, -0.8989, -0.0891, 0.5498, -0.9043, -0.0898, 0.5576, -0.9121, -0.1864, 0.4668, 0.897, -0.1864, 0.5576, 0.897, -0.1769, 0.4668, 0.8911, -0.1769, 0.4668, 0.8911, -0.1864, 0.5576, 0.897, -0.1772, 0.542, 0.8911, -0.5024, 0.5576, 0.7661, -0.5024, 0.4668, 0.7661, -0.5049, 0.542, 0.7554, -0.5049, 0.542, 0.7554, -0.5024, 0.4668, 0.7661, -0.5049, 0.4668, 0.7554, -0.1844, 0.395, 0.8892, -0.2637, 0.395, 0.8691, -0.1864, 0.4031, 0.897, -0.1864, 0.4031, 0.897, -0.2637, 0.395, 0.8691, -0.2659, 0.4031, 0.877, -0.4282, 0.395, 0.8013, -0.4983, 0.395, 0.7593, -0.4319, 0.4031, 0.8081, -0.4319, 0.4031, 0.8081, -0.4983, 0.395, 0.7593, -0.5024, 0.4031, 0.7661, -0.3477, 0.395, 0.8394, -0.4282, 0.395, 0.8013, -0.3506, 0.4031, 0.8467, -0.3506, 0.4031, 0.8467, -0.4282, 0.395, 0.8013, -0.4319, 0.4031, 0.8081, -0.2637, 0.395, 0.8691, -0.3477, 0.395, 0.8394, -0.2659, 0.4031, 0.877, -0.2659, 0.4031, 0.877, -0.3477, 0.395, 0.8394, -0.3506, 0.4031, 0.8467, -0.1864, 0.4031, 0.897, -0.1864, 0.4668, 0.897, -0.1769, 0.4031, 0.8911, -0.1769, 0.4031, 0.8911, -0.1864, 0.4668, 0.897, -0.1769, 0.4668, 0.8911, -0.5024, 0.4668, 0.7661, -0.5024, 0.4031, 0.7661, -0.5049, 0.4668, 0.7554, -0.5049, 0.4668, 0.7554, -0.5024, 0.4031, 0.7661, -0.5049, 0.4031, 0.7554, -0.8989, 0.6279, -0.1787, -0.9121, 0.6279, -0.0898, -0.8989, 0.5576, -0.1787, -0.8989, 0.5576, -0.1787, -0.9121, 0.6279, -0.0898, -0.9121, 0.5576, -0.0898, -0.6782, 1.5283, -0.0544, -0.7734, 1.4336, -0.0522, -0.7129, 1.498, -0.0702, -0.7129, 1.498, -0.0702, -0.7734, 1.4336, -0.0522, -0.772, 1.4336, -0.076, -0.9448, 1.2471, 0.0369, -0.9414, 1.2539, 0.0437, -0.9009, 1.2041, 0.0398, -0.9009, 1.2041, 0.0398, -0.9414, 1.2539, 0.0437, -0.8989, 1.2119, 0.0466, -0.7593, 1.46, 0.0466, -0.8208, 1.3818, 0.0468, -0.8057, 1.4834, 0.0439, -0.8057, 1.4834, 0.0439, -0.8208, 1.3818, 0.0468, -0.8599, 1.4072, 0.044, -0.7593, 1.46, 0.0466, -0.8057, 1.4834, 0.0439, -0.6875, 1.5293, 0.0468, -0.6875, 1.5293, 0.0468, -0.8057, 1.4834, 0.0439, -0.7466, 1.5508, 0.0432, -0.8608, 1.293, -0.0848, -0.8628, 1.293, -0.0481, -0.8892, 1.2188, -0.0876, -0.8892, 1.2188, -0.0876, -0.8628, 1.293, -0.0481, -0.8931, 1.209, -0.0529, -0.8931, 1.209, -0.0529, -0.9063, 1.1416, -0.0892, -0.8892, 1.2188, -0.0876, -0.8208, 1.3809, -0.0412, -0.7778, 1.4404, -0.0451, -0.8604, 1.4072, -0.0398, -0.8604, 1.4072, -0.0398, -0.7778, 1.4404, -0.0451, -0.8057, 1.4834, -0.0439, -0.772, 1.4336, 0.076, -0.8218, 1.3652, 0.0809, -0.7573, 1.4512, 0.0539, -0.7573, 1.4512, 0.0539, -0.8218, 1.3652, 0.0809, -0.8159, 1.375, 0.0541, -0.8159, 1.375, 0.0541, -0.8218, 1.3652, 0.0809, -0.8623, 1.293, 0.0547, -0.8623, 1.293, 0.0547, -0.8218, 1.3652, 0.0809, -0.8608, 1.293, 0.0848, -0.8892, 1.2188, 0.0876, -0.9063, 1.1416, 0.0892, -0.8931, 1.209, 0.0541, -0.8965, 1.1963, -0.0427, -0.9063, 1.1416, -0.0892, -0.8931, 1.209, -0.0529, -0.9009, 1.2041, 0.0398, -0.9028, 1.2031, 0, -0.9448, 1.2471, 0.0369, -0.9448, 1.2471, 0.0369, -0.9028, 1.2031, 0, -0.9463, 1.2461, 0, -0.9028, 1.2031, 0, -0.9009, 1.2041, -0.0396, -0.9463, 1.2461, 0, -0.9463, 1.2461, 0, -0.9009, 1.2041, -0.0396, -0.9448, 1.2471, -0.0369, -0.6694, 1.5352, 0.0443, -0.645, 1.5557, 0.0635, -0.6782, 1.5283, 0.0542, -0.6875, 1.5293, -0.0472, -0.6816, 1.5342, -0.0405, -0.7466, 1.5508, -0.045, -0.7466, 1.5508, -0.045, -0.6816, 1.5342, -0.0405, -0.7422, 1.5566, -0.0383, -0.6694, 1.5352, -0.0445, -0.645, 1.5557, -0.0635, -0.6719, 1.5352, 0, -0.6719, 1.5352, 0, -0.645, 1.5557, -0.0635, -0.6479, 1.5557, 0, -0.645, 1.5557, -0.0635, -0.6782, 1.5283, -0.0544, -0.7129, 1.498, -0.0702, -0.9063, 1.1416, 0.0892, -0.9106, 1.1416, 0, -0.8965, 1.1963, 0.0429, -0.8965, 1.1963, 0.0429, -0.9106, 1.1416, 0, -0.8984, 1.1953, 0, -0.7466, 1.5508, 0.0432, -0.7422, 1.5566, 0.0363, -0.6875, 1.5293, 0.0468, -0.6875, 1.5293, 0.0468, -0.7422, 1.5566, 0.0363, -0.6816, 1.5342, 0.0401, -0.6816, 1.5342, -0.0405, -0.6841, 1.5342, 0, -0.7422, 1.5566, -0.0383, -0.7422, 1.5566, -0.0383, -0.6841, 1.5342, 0, -0.7446, 1.5547, 0, -0.8057, 1.4834, -0.0439, -0.7778, 1.4404, -0.0451, -0.7466, 1.5508, -0.045, -0.7466, 1.5508, -0.045, -0.7778, 1.4404, -0.0451, -0.6875, 1.5293, -0.0472, -0.8218, 1.3652, -0.0809, -0.8164, 1.375, -0.0482, -0.8608, 1.293, -0.0848, -0.8608, 1.293, -0.0848, -0.8164, 1.375, -0.0482, -0.8628, 1.293, -0.0481, -0.8984, 1.1953, 0, -0.9106, 1.1416, 0, -0.8965, 1.1963, -0.0427, -0.8965, 1.1963, -0.0427, -0.9106, 1.1416, 0, -0.9063, 1.1416, -0.0892, -0.8608, 1.293, 0.0848, -0.8892, 1.2188, 0.0876, -0.8623, 1.293, 0.0547, -0.8623, 1.293, 0.0547, -0.8892, 1.2188, 0.0876, -0.8931, 1.209, 0.0541, -0.9063, 1.1416, 0.0892, -0.8965, 1.1963, 0.0429, -0.8931, 1.209, 0.0541, -0.8682, 1.2979, 0.0473, -0.8989, 1.2119, 0.0466, -0.9063, 1.3291, 0.0444, -0.9063, 1.3291, 0.0444, -0.8989, 1.2119, 0.0466, -0.9414, 1.2539, 0.0437, -0.8208, 1.3818, 0.0468, -0.8682, 1.2979, 0.0473, -0.8599, 1.4072, 0.044, -0.8599, 1.4072, 0.044, -0.8682, 1.2979, 0.0473, -0.9063, 1.3291, 0.0444, -0.8687, 1.2969, -0.0411, -0.8208, 1.3809, -0.0412, -0.9067, 1.3281, -0.0397, -0.9067, 1.3281, -0.0397, -0.8208, 1.3809, -0.0412, -0.8604, 1.4072, -0.0398, -0.7778, 1.4404, -0.0451, -0.8208, 1.3809, -0.0412, -0.7734, 1.4336, -0.0522, -0.7734, 1.4336, -0.0522, -0.8208, 1.3809, -0.0412, -0.8164, 1.375, -0.0482, -0.8208, 1.3818, 0.0468, -0.7593, 1.46, 0.0466, -0.8159, 1.375, 0.0541, -0.8159, 1.375, 0.0541, -0.7593, 1.46, 0.0466, -0.7573, 1.4512, 0.0539, -0.8989, 1.2119, 0.0466, -0.8682, 1.2979, 0.0473, -0.8931, 1.209, 0.0541, -0.8931, 1.209, 0.0541, -0.8682, 1.2979, 0.0473, -0.8623, 1.293, 0.0547, -0.8687, 1.2969, -0.0411, -0.8989, 1.2119, -0.0459, -0.8628, 1.293, -0.0481, -0.8628, 1.293, -0.0481, -0.8989, 1.2119, -0.0459, -0.8931, 1.209, -0.0529, -0.8989, 1.2119, -0.0459, -0.9009, 1.2041, -0.0396, -0.8931, 1.209, -0.0529, -0.8931, 1.209, -0.0529, -0.9009, 1.2041, -0.0396, -0.8965, 1.1963, -0.0427, -0.8931, 1.209, 0.0541, -0.8965, 1.1963, 0.0429, -0.8989, 1.2119, 0.0466, -0.8989, 1.2119, 0.0466, -0.8965, 1.1963, 0.0429, -0.9009, 1.2041, 0.0398, -0.9009, 1.2041, -0.0396, -0.9028, 1.2031, 0, -0.8965, 1.1963, -0.0427, -0.8965, 1.1963, -0.0427, -0.9028, 1.2031, 0, -0.8984, 1.1953, 0, -0.6694, 1.5352, 0.0443, -0.6782, 1.5283, 0.0542, -0.6816, 1.5342, 0.0401, -0.6816, 1.5342, 0.0401, -0.6782, 1.5283, 0.0542, -0.6875, 1.5293, 0.0468, -0.7593, 1.46, 0.0466, -0.6875, 1.5293, 0.0468, -0.7573, 1.4512, 0.0539, -0.7573, 1.4512, 0.0539, -0.6875, 1.5293, 0.0468, -0.6782, 1.5283, 0.0542, -0.6875, 1.5293, -0.0472, -0.7778, 1.4404, -0.0451, -0.6782, 1.5283, -0.0544, -0.6782, 1.5283, -0.0544, -0.7778, 1.4404, -0.0451, -0.7734, 1.4336, -0.0522, -0.6816, 1.5342, -0.0405, -0.6875, 1.5293, -0.0472, -0.6694, 1.5352, -0.0445, -0.6694, 1.5352, -0.0445, -0.6875, 1.5293, -0.0472, -0.6782, 1.5283, -0.0544, -0.6841, 1.5342, 0, -0.6816, 1.5342, -0.0405, -0.6719, 1.5352, 0, -0.6719, 1.5352, 0, -0.6816, 1.5342, -0.0405, -0.6694, 1.5352, -0.0445, -0.8628, 1.293, -0.0481, -0.8164, 1.375, -0.0482, -0.8687, 1.2969, -0.0411, -0.8687, 1.2969, -0.0411, -0.8164, 1.375, -0.0482, -0.8208, 1.3809, -0.0412, -0.8159, 1.375, 0.0541, -0.8623, 1.293, 0.0547, -0.8208, 1.3818, 0.0468, -0.8208, 1.3818, 0.0468, -0.8623, 1.293, 0.0547, -0.8682, 1.2979, 0.0473, -0.9028, 1.2031, 0, -0.9009, 1.2041, 0.0398, -0.8984, 1.1953, 0, -0.8984, 1.1953, 0, -0.9009, 1.2041, 0.0398, -0.8965, 1.1963, 0.0429, -0.6719, 1.5352, 0, -0.6694, 1.5352, 0.0443, -0.6841, 1.5342, 0, -0.6841, 1.5342, 0, -0.6694, 1.5352, 0.0443, -0.6816, 1.5342, 0.0401, -0.7734, 1.4336, -0.0522, -0.8164, 1.375, -0.0482, -0.772, 1.4336, -0.076, -0.772, 1.4336, -0.076, -0.8164, 1.375, -0.0482, -0.8218, 1.3652, -0.0809, 0.9609, 1.375, 0.0394, 0.9194, 1.4453, 0.0391, 1.0098, 1.416, 0.0349, 1.0098, 1.416, 0.0349, 0.9194, 1.4453, 0.0391, 0.9731, 1.4805, 0.0346, 0.645, 1.5557, -0.0635, 0.6782, 1.5283, -0.0544, 0.6694, 1.5352, -0.0445, 1.0156, 1.4199, -0.0276, 1.042, 1.3613, -0.0285, 1.0156, 1.4199, 0, 1.0156, 1.4199, 0, 1.042, 1.3613, -0.0285, 1.043, 1.3604, 0, 1.0156, 1.4199, 0, 1.043, 1.3604, 0, 1.0156, 1.4199, 0.0276, 1.0156, 1.4199, 0.0276, 1.043, 1.3604, 0, 1.042, 1.3613, 0.0285, 0.979, 1.4834, -0.0274, 1.0156, 1.4199, -0.0276, 0.9795, 1.4834, 0, 0.9795, 1.4834, 0, 1.0156, 1.4199, -0.0276, 1.0156, 1.4199, 0, 0.937, 1.5449, 0, 0.9795, 1.4834, 0, 0.9365, 1.5449, 0.0282, 0.9365, 1.5449, 0.0282, 0.9795, 1.4834, 0, 0.979, 1.4834, 0.0274, 0.9365, 1.5449, -0.0282, 0.979, 1.4834, -0.0274, 0.937, 1.5449, 0, 0.937, 1.5449, 0, 0.979, 1.4834, -0.0274, 0.9795, 1.4834, 0, 0.9302, 1.542, -0.0354, 0.8711, 1.5137, -0.0395, 0.9731, 1.4805, -0.0344, 0.9731, 1.4805, -0.0344, 0.8711, 1.5137, -0.0395, 0.9194, 1.4453, -0.037, 0.9795, 1.4834, 0, 1.0156, 1.4199, 0, 0.979, 1.4834, 0.0274, 0.979, 1.4834, 0.0274, 1.0156, 1.4199, 0, 1.0156, 1.4199, 0.0276, 1.041, 1.3486, 0, 0.9961, 1.2998, 0, 1.04, 1.3496, 0.0289, 1.04, 1.3496, 0.0289, 0.9961, 1.2998, 0, 0.9951, 1.3008, 0.0327, 0.8926, 1.5977, -0.0315, 0.9365, 1.5449, -0.0282, 0.8926, 1.5967, 0, 0.8926, 1.5967, 0, 0.9365, 1.5449, -0.0282, 0.937, 1.5449, 0, 0.9194, 1.4453, 0.0391, 0.8711, 1.5137, 0.0395, 0.9731, 1.4805, 0.0346, 0.9731, 1.4805, 0.0346, 0.8711, 1.5137, 0.0395, 0.9302, 1.542, 0.0354, 0.8818, 1.6006, 0, 0.8818, 1.6006, 0.0263, 0.8164, 1.5781, 0, 0.8164, 1.5781, 0, 0.8818, 1.6006, 0.0263, 0.8154, 1.5791, 0.0311, 1.0098, 1.416, -0.0347, 0.9609, 1.374, -0.037, 1.0371, 1.3564, -0.0356, 1.0371, 1.3564, -0.0356, 0.9609, 1.374, -0.037, 0.9917, 1.3076, -0.0392, 0.9194, 1.4453, -0.037, 0.9609, 1.374, -0.037, 0.9731, 1.4805, -0.0344, 0.9731, 1.4805, -0.0344, 0.9609, 1.374, -0.037, 1.0098, 1.416, -0.0347, 1.04, 1.3496, -0.0289, 0.9951, 1.3008, -0.0327, 1.041, 1.3486, 0, 1.041, 1.3486, 0, 0.9951, 1.3008, -0.0327, 0.9961, 1.2998, 0, 0.8857, 1.5947, -0.0385, 0.8198, 1.5742, -0.0416, 0.9302, 1.542, -0.0354, 0.9302, 1.542, -0.0354, 0.8198, 1.5742, -0.0416, 0.8711, 1.5137, -0.0395, 0.8818, 1.6006, 0, 0.8164, 1.5781, 0, 0.8818, 1.6006, -0.032, 0.8818, 1.6006, -0.032, 0.8164, 1.5781, 0, 0.8154, 1.5791, -0.035, 0.8857, 1.5947, 0.0333, 0.9302, 1.542, 0.0354, 0.8198, 1.5742, 0.038, 0.8198, 1.5742, 0.038, 0.9302, 1.542, 0.0354, 0.8711, 1.5137, 0.0395, 0.9917, 1.3076, 0.0395, 0.9609, 1.375, 0.0394, 1.0371, 1.3564, 0.0356, 1.0371, 1.3564, 0.0356, 0.9609, 1.375, 0.0394, 1.0098, 1.416, 0.0349, 0.9414, 1.2539, 0.0437, 0.9063, 1.3291, 0.0444, 0.9917, 1.3076, 0.0395, 0.9917, 1.3076, 0.0395, 0.9063, 1.3291, 0.0444, 0.9609, 1.375, 0.0394, 0.8599, 1.4072, 0.044, 0.8057, 1.4834, 0.0439, 0.9194, 1.4453, 0.0391, 0.9194, 1.4453, 0.0391, 0.8057, 1.4834, 0.0439, 0.8711, 1.5137, 0.0395, 0.8164, 1.5781, 0, 0.7446, 1.5547, 0, 0.8154, 1.5791, -0.035, 0.8154, 1.5791, -0.035, 0.7446, 1.5547, 0, 0.7422, 1.5566, -0.0383, 0.9063, 1.3291, 0.0444, 0.8599, 1.4072, 0.044, 0.9609, 1.375, 0.0394, 0.9609, 1.375, 0.0394, 0.8599, 1.4072, 0.044, 0.9194, 1.4453, 0.0391, 0.8926, 1.5967, 0, 0.937, 1.5449, 0, 0.8926, 1.5977, 0.0261, 0.8926, 1.5977, 0.0261, 0.937, 1.5449, 0, 0.9365, 1.5449, 0.0282, 0.8164, 1.5781, 0, 0.8154, 1.5791, 0.0311, 0.7446, 1.5547, 0, 0.7446, 1.5547, 0, 0.8154, 1.5791, 0.0311, 0.7422, 1.5566, 0.0363, 0.8604, 1.4072, -0.0398, 0.9067, 1.3281, -0.0397, 0.9194, 1.4453, -0.037, 0.9194, 1.4453, -0.037, 0.9067, 1.3281, -0.0397, 0.9609, 1.374, -0.037, 0.9961, 1.2998, 0, 0.9463, 1.2461, 0, 0.9951, 1.3008, 0.0327, 0.9951, 1.3008, 0.0327, 0.9463, 1.2461, 0, 0.9448, 1.2471, 0.0369, 0.8711, 1.5137, -0.0395, 0.8057, 1.4834, -0.0439, 0.9194, 1.4453, -0.037, 0.9194, 1.4453, -0.037, 0.8057, 1.4834, -0.0439, 0.8604, 1.4072, -0.0398, 0.9951, 1.3008, -0.0327, 0.9448, 1.2471, -0.0369, 0.9961, 1.2998, 0, 0.9961, 1.2998, 0, 0.9448, 1.2471, -0.0369, 0.9463, 1.2461, 0, 0.8198, 1.5742, 0.038, 0.8711, 1.5137, 0.0395, 0.7466, 1.5508, 0.0432, 0.7466, 1.5508, 0.0432, 0.8711, 1.5137, 0.0395, 0.8057, 1.4834, 0.0439, 0.9609, 1.374, -0.037, 0.9067, 1.3281, -0.0397, 0.9917, 1.3076, -0.0392, 0.9917, 1.3076, -0.0392, 0.9067, 1.3281, -0.0397, 0.9414, 1.2539, -0.0433, 0.8198, 1.5742, -0.0416, 0.7466, 1.5508, -0.045, 0.8711, 1.5137, -0.0395, 0.8711, 1.5137, -0.0395, 0.7466, 1.5508, -0.045, 0.8057, 1.4834, -0.0439, 0.6782, 1.5283, 0.0542, 0.7129, 1.498, 0.0702, 0.645, 1.5557, 0.0635, 1.04, 1.3496, 0.0289, 1.0371, 1.3564, 0.0356, 1.042, 1.3613, 0.0285, 1.042, 1.3613, -0.0285, 1.0371, 1.3564, -0.0356, 1.04, 1.3496, -0.0289, 0.8926, 1.5977, -0.0315, 0.8818, 1.6006, -0.032, 0.8857, 1.5947, -0.0385, 0.8926, 1.5977, 0.0261, 0.8857, 1.5947, 0.0333, 0.8818, 1.6006, 0.0263, 0.9414, 1.2539, -0.0433, 0.8989, 1.2119, -0.0459, 0.9448, 1.2471, -0.0369, 0.9448, 1.2471, -0.0369, 0.8989, 1.2119, -0.0459, 0.9009, 1.2041, -0.0396, 0.8818, 1.6006, -0.032, 0.8154, 1.5791, -0.035, 0.8857, 1.5947, -0.0385, 0.8857, 1.5947, -0.0385, 0.8154, 1.5791, -0.035, 0.8198, 1.5742, -0.0416, 1.0156, 1.4199, 0.0276, 1.042, 1.3613, 0.0285, 1.0098, 1.416, 0.0349, 1.0098, 1.416, 0.0349, 1.042, 1.3613, 0.0285, 1.0371, 1.3564, 0.0356, 1.0098, 1.416, -0.0347, 1.0371, 1.3564, -0.0356, 1.0156, 1.4199, -0.0276, 1.0156, 1.4199, -0.0276, 1.0371, 1.3564, -0.0356, 1.042, 1.3613, -0.0285, 1.042, 1.3613, 0.0285, 1.043, 1.3604, 0, 1.04, 1.3496, 0.0289, 1.04, 1.3496, 0.0289, 1.043, 1.3604, 0, 1.041, 1.3486, 0, 0.9731, 1.4805, -0.0344, 1.0098, 1.416, -0.0347, 0.979, 1.4834, -0.0274, 0.979, 1.4834, -0.0274, 1.0098, 1.416, -0.0347, 1.0156, 1.4199, -0.0276, 0.9302, 1.542, -0.0354, 0.9731, 1.4805, -0.0344, 0.9365, 1.5449, -0.0282, 0.9365, 1.5449, -0.0282, 0.9731, 1.4805, -0.0344, 0.979, 1.4834, -0.0274, 0.8857, 1.5947, -0.0385, 0.9302, 1.542, -0.0354, 0.8926, 1.5977, -0.0315, 0.8926, 1.5977, -0.0315, 0.9302, 1.542, -0.0354, 0.9365, 1.5449, -0.0282, 0.979, 1.4834, 0.0274, 1.0156, 1.4199, 0.0276, 0.9731, 1.4805, 0.0346, 0.9731, 1.4805, 0.0346, 1.0156, 1.4199, 0.0276, 1.0098, 1.416, 0.0349, 1.04, 1.3496, -0.0289, 1.041, 1.3486, 0, 1.042, 1.3613, -0.0285, 1.042, 1.3613, -0.0285, 1.041, 1.3486, 0, 1.043, 1.3604, 0, 0.9365, 1.5449, 0.0282, 0.979, 1.4834, 0.0274, 0.9302, 1.542, 0.0354, 0.9302, 1.542, 0.0354, 0.979, 1.4834, 0.0274, 0.9731, 1.4805, 0.0346, 0.8926, 1.5977, 0.0261, 0.9365, 1.5449, 0.0282, 0.8857, 1.5947, 0.0333, 0.8857, 1.5947, 0.0333, 0.9365, 1.5449, 0.0282, 0.9302, 1.542, 0.0354, 0.8818, 1.6006, 0.0263, 0.8818, 1.6006, 0, 0.8926, 1.5977, 0.0261, 0.8926, 1.5977, 0.0261, 0.8818, 1.6006, 0, 0.8926, 1.5967, 0, 0.8926, 1.5977, -0.0315, 0.8926, 1.5967, 0, 0.8818, 1.6006, -0.032, 0.8818, 1.6006, -0.032, 0.8926, 1.5967, 0, 0.8818, 1.6006, 0, 1.0371, 1.3564, -0.0356, 0.9917, 1.3076, -0.0392, 1.04, 1.3496, -0.0289, 1.04, 1.3496, -0.0289, 0.9917, 1.3076, -0.0392, 0.9951, 1.3008, -0.0327, 0.6694, 1.5352, 0.0443, 0.645, 1.5557, 0.0635, 0.6719, 1.5352, 0, 0.6719, 1.5352, 0, 0.645, 1.5557, 0.0635, 0.6479, 1.5557, 0, 0.9917, 1.3076, 0.0395, 1.0371, 1.3564, 0.0356, 0.9951, 1.3008, 0.0327, 0.9951, 1.3008, 0.0327, 1.0371, 1.3564, 0.0356, 1.04, 1.3496, 0.0289, 0.9414, 1.2539, 0.0437, 0.9917, 1.3076, 0.0395, 0.9448, 1.2471, 0.0369, 0.9448, 1.2471, 0.0369, 0.9917, 1.3076, 0.0395, 0.9951, 1.3008, 0.0327, 0.8154, 1.5791, -0.035, 0.7422, 1.5566, -0.0383, 0.8198, 1.5742, -0.0416, 0.8198, 1.5742, -0.0416, 0.7422, 1.5566, -0.0383, 0.7466, 1.5508, -0.045, 0.9917, 1.3076, -0.0392, 0.9414, 1.2539, -0.0433, 0.9951, 1.3008, -0.0327, 0.9951, 1.3008, -0.0327, 0.9414, 1.2539, -0.0433, 0.9448, 1.2471, -0.0369, 0.8154, 1.5791, 0.0311, 0.8818, 1.6006, 0.0263, 0.8198, 1.5742, 0.038, 0.8198, 1.5742, 0.038, 0.8818, 1.6006, 0.0263, 0.8857, 1.5947, 0.0333, 0.7422, 1.5566, 0.0363, 0.8154, 1.5791, 0.0311, 0.7466, 1.5508, 0.0432, 0.7466, 1.5508, 0.0432, 0.8154, 1.5791, 0.0311, 0.8198, 1.5742, 0.038, 0.9063, 1.1416, 0.0892, 0.8931, 1.1416, 0.1776, 0.8892, 1.2188, 0.0876, 0.8892, 1.2188, 0.0876, 0.8931, 1.1416, 0.1776, 0.8765, 1.2188, 0.1743, 0.8892, 1.2188, 0.0876, 0.8765, 1.2188, 0.1743, 0.8608, 1.293, 0.0848, 0.8608, 1.293, 0.0848, 0.8765, 1.2188, 0.1743, 0.8481, 1.293, 0.1687, 0.8608, 1.293, 0.0848, 0.8481, 1.293, 0.1687, 0.8218, 1.3652, 0.0809, 0.8218, 1.3652, 0.0809, 0.8481, 1.293, 0.1687, 0.8096, 1.3652, 0.161, 0.8218, 1.3652, 0.0809, 0.8096, 1.3652, 0.161, 0.772, 1.4336, 0.076, 0.772, 1.4336, 0.076, 0.8096, 1.3652, 0.161, 0.7612, 1.4336, 0.1514, 0.772, 1.4336, 0.076, 0.7612, 1.4336, 0.1514, 0.7129, 1.498, 0.0702, 0.7129, 1.498, 0.0702, 0.7612, 1.4336, 0.1514, 0.7026, 1.498, 0.1398, 0.7129, 1.498, 0.0702, 0.7026, 1.498, 0.1398, 0.645, 1.5557, 0.0635, 0.645, 1.5557, 0.0635, 0.7026, 1.498, 0.1398, 0.6353, 1.5557, 0.1263, 0.9067, 1.3281, -0.0397, 0.8687, 1.2969, -0.0411, 0.9414, 1.2539, -0.0433, 0.9414, 1.2539, -0.0433, 0.8687, 1.2969, -0.0411, 0.8989, 1.2119, -0.0459, 0.7446, 1.5547, 0, 0.7422, 1.5566, 0.0363, 0.6841, 1.5342, 0, 0.6841, 1.5342, 0, 0.7422, 1.5566, 0.0363, 0.6816, 1.5342, 0.0401, 0.772, 1.4336, 0.076, 0.7129, 1.498, 0.0702, 0.7573, 1.4512, 0.0539, 0.7573, 1.4512, 0.0539, 0.7129, 1.498, 0.0702, 0.6782, 1.5283, 0.0542, 0.8931, 1.1416, -0.1776, 0.9063, 1.1416, -0.0892, 0.8765, 1.2188, -0.1743, 0.8765, 1.2188, -0.1743, 0.9063, 1.1416, -0.0892, 0.8892, 1.2188, -0.0876, 0.8765, 1.2188, -0.1743, 0.8892, 1.2188, -0.0876, 0.8481, 1.293, -0.1687, 0.8481, 1.293, -0.1687, 0.8892, 1.2188, -0.0876, 0.8608, 1.293, -0.0848, 0.8481, 1.293, -0.1687, 0.8608, 1.293, -0.0848, 0.8096, 1.3652, -0.161, 0.8096, 1.3652, -0.161, 0.8608, 1.293, -0.0848, 0.8218, 1.3652, -0.0809, 0.8096, 1.3652, -0.161, 0.8218, 1.3652, -0.0809, 0.7612, 1.4336, -0.1514, 0.7612, 1.4336, -0.1514, 0.8218, 1.3652, -0.0809, 0.772, 1.4336, -0.076, 0.7612, 1.4336, -0.1514, 0.772, 1.4336, -0.076, 0.7026, 1.498, -0.1398, 0.7026, 1.498, -0.1398, 0.772, 1.4336, -0.076, 0.7129, 1.498, -0.0702, 0.7026, 1.498, -0.1398, 0.7129, 1.498, -0.0702, 0.6353, 1.5557, -0.1263, 0.6353, 1.5557, -0.1263, 0.7129, 1.498, -0.0702, 0.645, 1.5557, -0.0635, 0.2368, 1.1064, 0.5845, 0.2053, 1.0576, 0.604, 0.2064, 1.084, 0.5991, 0.2064, 1.084, 0.5991, 0.2053, 1.0576, 0.604, 0.1769, 1.041, 0.6147, 0.0159, 0.7334, 0.835, 0, 0.7324, 0.8354, 0.0348, 0.7437, 0.8335, 0.0348, 0.7437, 0.8335, 0, 0.7324, 0.8354, 0.0472, 0.7578, 0.833, 0.0472, 0.7578, 0.833, 0, 0.7324, 0.8354, 0.0554, 0.7759, 0.8325, 0.0554, 0.7759, 0.8325, 0, 0.7324, 0.8354, 0, 0.7759, 0.8354, 0.9165, 0.7153, 0, 0.9165, 0.6279, 0, 0.9121, 0.7153, 0.0898, 0.9121, 0.7153, 0.0898, 0.9165, 0.6279, 0, 0.9121, 0.6279, 0.0898, 0.9165, 0.8022, 0, 0.9165, 0.7153, 0, 0.9121, 0.8022, 0.0898, 0.9121, 0.8022, 0.0898, 0.9165, 0.7153, 0, 0.9121, 0.7153, 0.0898, 0.9165, 0.8892, 0, 0.9165, 0.8022, 0, 0.9121, 0.8892, 0.0898, 0.9121, 0.8892, 0.0898, 0.9165, 0.8022, 0, 0.9121, 0.8022, 0.0898, 0.9165, 0.9766, 0, 0.9165, 0.8892, 0, 0.9121, 0.9766, 0.0898, 0.9121, 0.9766, 0.0898, 0.9165, 0.8892, 0, 0.9121, 0.8892, 0.0898, 0.9165, 1.0635, 0, 0.9165, 0.9766, 0, 0.9121, 1.0635, 0.0898, 0.9121, 1.0635, 0.0898, 0.9165, 0.9766, 0, 0.9121, 0.9766, 0.0898, 0.9106, 1.1416, 0, 0.9165, 1.0635, 0, 0.9063, 1.1416, 0.0892, 0.9063, 1.1416, 0.0892, 0.9165, 1.0635, 0, 0.9121, 1.0635, 0.0898, 0.5713, 1.6084, 0, 0.6479, 1.5557, 0, 0.5684, 1.6084, 0.056, 0.5684, 1.6084, 0.056, 0.6479, 1.5557, 0, 0.645, 1.5557, 0.0635, 0.4871, 1.7266, -0.0369, 0.4856, 1.6602, -0.0406, 0.4888, 1.7266, 0, 0.4888, 1.7266, 0, 0.4856, 1.6602, -0.0406, 0.4878, 1.6602, 0, 0.4138, 1.832, 0.0394, 0.3354, 1.8574, 0.0391, 0.4226, 1.8955, 0.0349, 0.4226, 1.8955, 0.0349, 0.3354, 1.8574, 0.0391, 0.3523, 1.9189, 0.0346, 0.9121, 0.7153, 0.0898, 0.9121, 0.6279, 0.0898, 0.8989, 0.7153, 0.1787, 0.8989, 0.7153, 0.1787, 0.9121, 0.6279, 0.0898, 0.8989, 0.6279, 0.1787, 0.9121, 0.8022, 0.0898, 0.9121, 0.7153, 0.0898, 0.8989, 0.8022, 0.1787, 0.8989, 0.8022, 0.1787, 0.9121, 0.7153, 0.0898, 0.8989, 0.7153, 0.1787, 0.9121, 0.8892, 0.0898, 0.9121, 0.8022, 0.0898, 0.8989, 0.8892, 0.1787, 0.8989, 0.8892, 0.1787, 0.9121, 0.8022, 0.0898, 0.8989, 0.8022, 0.1787, 0.9121, 0.9766, 0.0898, 0.9121, 0.8892, 0.0898, 0.8989, 0.9766, 0.1787, 0.8989, 0.9766, 0.1787, 0.9121, 0.8892, 0.0898, 0.8989, 0.8892, 0.1787, 0.9121, 1.0635, 0.0898, 0.9121, 0.9766, 0.0898, 0.8989, 1.0635, 0.1787, 0.8989, 1.0635, 0.1787, 0.9121, 0.9766, 0.0898, 0.8989, 0.9766, 0.1787, 0.9063, 1.1416, 0.0892, 0.9121, 1.0635, 0.0898, 0.8931, 1.1416, 0.1776, 0.8931, 1.1416, 0.1776, 0.9121, 1.0635, 0.0898, 0.8989, 1.0635, 0.1787, 0.4907, 1.6494, -0.0549, 0.5684, 1.6084, -0.056, 0.4934, 1.6504, 0, 0.4934, 1.6504, 0, 0.5684, 1.6084, -0.056, 0.5713, 1.6084, 0, 0.5684, 1.6084, 0.056, 0.645, 1.5557, 0.0635, 0.5601, 1.6084, 0.1115, 0.5601, 1.6084, 0.1115, 0.645, 1.5557, 0.0635, 0.6353, 1.5557, 0.1263, 0.4788, 1.6631, 0.0475, 0.395, 1.6982, 0.0489, 0.48, 1.7295, 0.0437, 0.48, 1.7295, 0.0437, 0.395, 1.6982, 0.0489, 0.4041, 1.7617, 0.0444, 0.4907, 1.6494, 0.0544, 0.5684, 1.6084, 0.056, 0.4783, 1.6533, 0.0951, 0.4783, 1.6533, 0.0951, 0.5684, 1.6084, 0.056, 0.5601, 1.6084, 0.1115, 0.395, 1.6982, 0.0489, 0.3, 1.7275, 0.0485, 0.4041, 1.7617, 0.0444, 0.4041, 1.7617, 0.0444, 0.3, 1.7275, 0.0485, 0.3169, 1.7891, 0.044, 0.0859, 1.7559, 0.0551, 0.0793, 1.7559, 0.0651, 0.0841, 1.7559, 0, 0.8989, 0.7153, 0.1787, 0.8989, 0.6279, 0.1787, 0.877, 0.7153, 0.2659, 0.877, 0.7153, 0.2659, 0.8989, 0.6279, 0.1787, 0.877, 0.6279, 0.2659, 0.8989, 0.8022, 0.1787, 0.8989, 0.7153, 0.1787, 0.877, 0.8022, 0.2659, 0.877, 0.8022, 0.2659, 0.8989, 0.7153, 0.1787, 0.877, 0.7153, 0.2659, 0.8989, 0.8892, 0.1787, 0.8989, 0.8022, 0.1787, 0.877, 0.8892, 0.2659, 0.877, 0.8892, 0.2659, 0.8989, 0.8022, 0.1787, 0.877, 0.8022, 0.2659, 0.8989, 0.9766, 0.1787, 0.8989, 0.8892, 0.1787, 0.877, 0.9766, 0.2659, 0.877, 0.9766, 0.2659, 0.8989, 0.8892, 0.1787, 0.877, 0.8892, 0.2659, 0.8989, 1.0635, 0.1787, 0.8989, 0.9766, 0.1787, 0.877, 1.0635, 0.2659, 0.877, 1.0635, 0.2659, 0.8989, 0.9766, 0.1787, 0.877, 0.9766, 0.2659, 0.8931, 1.1416, 0.1776, 0.8989, 1.0635, 0.1787, 0.8716, 1.1416, 0.2644, 0.8716, 1.1416, 0.2644, 0.8989, 1.0635, 0.1787, 0.877, 1.0635, 0.2659, 0.8765, 1.2188, 0.1743, 0.8931, 1.1416, 0.1776, 0.855, 1.2188, 0.2593, 0.855, 1.2188, 0.2593, 0.8931, 1.1416, 0.1776, 0.8716, 1.1416, 0.2644, 0.8481, 1.293, 0.1687, 0.8765, 1.2188, 0.1743, 0.8276, 1.293, 0.251, 0.8276, 1.293, 0.251, 0.8765, 1.2188, 0.1743, 0.855, 1.2188, 0.2593, 0.8096, 1.3652, 0.161, 0.8481, 1.293, 0.1687, 0.79, 1.3652, 0.2396, 0.79, 1.3652, 0.2396, 0.8481, 1.293, 0.1687, 0.8276, 1.293, 0.251, 0.7612, 1.4336, 0.1514, 0.8096, 1.3652, 0.161, 0.7427, 1.4336, 0.2252, 0.7427, 1.4336, 0.2252, 0.8096, 1.3652, 0.161, 0.79, 1.3652, 0.2396, 0.7026, 1.498, 0.1398, 0.7612, 1.4336, 0.1514, 0.6855, 1.498, 0.208, 0.6855, 1.498, 0.208, 0.7612, 1.4336, 0.1514, 0.7427, 1.4336, 0.2252, 0.6353, 1.5557, 0.1263, 0.7026, 1.498, 0.1398, 0.6201, 1.5557, 0.1881, 0.6201, 1.5557, 0.1881, 0.7026, 1.498, 0.1398, 0.6855, 1.498, 0.208, 0.5601, 1.6084, 0.1115, 0.6353, 1.5557, 0.1263, 0.5469, 1.6084, 0.1659, 0.5469, 1.6084, 0.1659, 0.6353, 1.5557, 0.1263, 0.6201, 1.5557, 0.1881, 0.4783, 1.6533, 0.0951, 0.5601, 1.6084, 0.1115, 0.4666, 1.6533, 0.1415, 0.4666, 1.6533, 0.1415, 0.5601, 1.6084, 0.1115, 0.5469, 1.6084, 0.1659, 0.3899, 1.6914, 0.0776, 0.4783, 1.6533, 0.0951, 0.3804, 1.6914, 0.1154, 0.3804, 1.6914, 0.1154, 0.4783, 1.6533, 0.0951, 0.4666, 1.6533, 0.1415, 0.2969, 1.7207, 0.0591, 0.3899, 1.6914, 0.0776, 0.2896, 1.7207, 0.0878, 0.2896, 1.7207, 0.0878, 0.3899, 1.6914, 0.0776, 0.3804, 1.6914, 0.1154, 0.1367, 1.8203, 0.0432, 0.2258, 1.8096, 0.0439, 0.1016, 1.7607, 0.0479, 0.1016, 1.7607, 0.0479, 0.2258, 1.8096, 0.0439, 0.2006, 1.749, 0.0479, 0.1976, 1.7422, 0.0551, 0.2969, 1.7207, 0.0591, 0.1952, 1.7422, 0.0592, 0.1952, 1.7422, 0.0592, 0.2969, 1.7207, 0.0591, 0.2896, 1.7207, 0.0878, 0.877, 0.7153, 0.2659, 0.877, 0.6279, 0.2659, 0.8467, 0.7153, 0.3506, 0.8467, 0.7153, 0.3506, 0.877, 0.6279, 0.2659, 0.8467, 0.6279, 0.3506, 0.877, 0.8022, 0.2659, 0.877, 0.7153, 0.2659, 0.8467, 0.8022, 0.3506, 0.8467, 0.8022, 0.3506, 0.877, 0.7153, 0.2659, 0.8467, 0.7153, 0.3506, 0.877, 0.8892, 0.2659, 0.877, 0.8022, 0.2659, 0.8467, 0.8892, 0.3506, 0.8467, 0.8892, 0.3506, 0.877, 0.8022, 0.2659, 0.8467, 0.8022, 0.3506, 0.877, 0.9766, 0.2659, 0.877, 0.8892, 0.2659, 0.8467, 0.9766, 0.3506, 0.8467, 0.9766, 0.3506, 0.877, 0.8892, 0.2659, 0.8467, 0.8892, 0.3506, 0.877, 1.0635, 0.2659, 0.877, 0.9766, 0.2659, 0.8467, 1.0635, 0.3506, 0.8467, 1.0635, 0.3506, 0.877, 0.9766, 0.2659, 0.8467, 0.9766, 0.3506, 0.8716, 1.1416, 0.2644, 0.877, 1.0635, 0.2659, 0.8413, 1.1416, 0.3484, 0.8413, 1.1416, 0.3484, 0.877, 1.0635, 0.2659, 0.8467, 1.0635, 0.3506, 0.855, 1.2188, 0.2593, 0.8716, 1.1416, 0.2644, 0.8252, 1.2188, 0.3418, 0.8252, 1.2188, 0.3418, 0.8716, 1.1416, 0.2644, 0.8413, 1.1416, 0.3484, 0.8276, 1.293, 0.251, 0.855, 1.2188, 0.2593, 0.7993, 1.293, 0.3311, 0.7993, 1.293, 0.3311, 0.855, 1.2188, 0.2593, 0.8252, 1.2188, 0.3418, 0.79, 1.3652, 0.2396, 0.8276, 1.293, 0.251, 0.7627, 1.3652, 0.3159, 0.7627, 1.3652, 0.3159, 0.8276, 1.293, 0.251, 0.7993, 1.293, 0.3311, 0.7427, 1.4336, 0.2252, 0.79, 1.3652, 0.2396, 0.7168, 1.4336, 0.2969, 0.7168, 1.4336, 0.2969, 0.79, 1.3652, 0.2396, 0.7627, 1.3652, 0.3159, 0.6855, 1.498, 0.208, 0.7427, 1.4336, 0.2252, 0.6621, 1.498, 0.2742, 0.6621, 1.498, 0.2742, 0.7427, 1.4336, 0.2252, 0.7168, 1.4336, 0.2969, 0.6201, 1.5557, 0.1881, 0.6855, 1.498, 0.208, 0.5986, 1.5557, 0.2479, 0.5986, 1.5557, 0.2479, 0.6855, 1.498, 0.208, 0.6621, 1.498, 0.2742, 0.5469, 1.6084, 0.1659, 0.6201, 1.5557, 0.1881, 0.5278, 1.6084, 0.2186, 0.5278, 1.6084, 0.2186, 0.6201, 1.5557, 0.1881, 0.5986, 1.5557, 0.2479, 0.4666, 1.6533, 0.1415, 0.5469, 1.6084, 0.1659, 0.4504, 1.6533, 0.1865, 0.4504, 1.6533, 0.1865, 0.5469, 1.6084, 0.1659, 0.5278, 1.6084, 0.2186, 0.3804, 1.6914, 0.1154, 0.4666, 1.6533, 0.1415, 0.3674, 1.6914, 0.1521, 0.3674, 1.6914, 0.1521, 0.4666, 1.6533, 0.1415, 0.4504, 1.6533, 0.1865, 0.2896, 1.7207, 0.0878, 0.3804, 1.6914, 0.1154, 0.2795, 1.7207, 0.1158, 0.2795, 1.7207, 0.1158, 0.3804, 1.6914, 0.1154, 0.3674, 1.6914, 0.1521, 0.1952, 1.7422, 0.0592, 0.2896, 1.7207, 0.0878, 0.1884, 1.7422, 0.078, 0.1884, 1.7422, 0.078, 0.2896, 1.7207, 0.0878, 0.2795, 1.7207, 0.1158, 0.0859, 1.7559, 0.0551, 0.1798, 1.7422, 0.0961, 0.1696, 1.7422, 0.1133, 0.8467, 0.7153, 0.3506, 0.8467, 0.6279, 0.3506, 0.8081, 0.7153, 0.4319, 0.8081, 0.7153, 0.4319, 0.8467, 0.6279, 0.3506, 0.8081, 0.6279, 0.4319, 0.8467, 0.8022, 0.3506, 0.8467, 0.7153, 0.3506, 0.8081, 0.8022, 0.4319, 0.8081, 0.8022, 0.4319, 0.8467, 0.7153, 0.3506, 0.8081, 0.7153, 0.4319, 0.8467, 0.8892, 0.3506, 0.8467, 0.8022, 0.3506, 0.8081, 0.8892, 0.4319, 0.8081, 0.8892, 0.4319, 0.8467, 0.8022, 0.3506, 0.8081, 0.8022, 0.4319, 0.8467, 0.9766, 0.3506, 0.8467, 0.8892, 0.3506, 0.8081, 0.9766, 0.4319, 0.8081, 0.9766, 0.4319, 0.8467, 0.8892, 0.3506, 0.8081, 0.8892, 0.4319, 0.8467, 1.0635, 0.3506, 0.8467, 0.9766, 0.3506, 0.8081, 1.0635, 0.4319, 0.8081, 1.0635, 0.4319, 0.8467, 0.9766, 0.3506, 0.8081, 0.9766, 0.4319, 0.8413, 1.1416, 0.3484, 0.8467, 1.0635, 0.3506, 0.8032, 1.1416, 0.4292, 0.8032, 1.1416, 0.4292, 0.8467, 1.0635, 0.3506, 0.8081, 1.0635, 0.4319, 0.8252, 1.2188, 0.3418, 0.8413, 1.1416, 0.3484, 0.7881, 1.2188, 0.4211, 0.7881, 1.2188, 0.4211, 0.8413, 1.1416, 0.3484, 0.8032, 1.1416, 0.4292, 0.7993, 1.293, 0.3311, 0.8252, 1.2188, 0.3418, 0.7627, 1.293, 0.4077, 0.7627, 1.293, 0.4077, 0.8252, 1.2188, 0.3418, 0.7881, 1.2188, 0.4211, 0.7627, 1.3652, 0.3159, 0.7993, 1.293, 0.3311, 0.728, 1.3652, 0.3892, 0.728, 1.3652, 0.3892, 0.7993, 1.293, 0.3311, 0.7627, 1.293, 0.4077, 0.7168, 1.4336, 0.2969, 0.7627, 1.3652, 0.3159, 0.6841, 1.4336, 0.3657, 0.6841, 1.4336, 0.3657, 0.7627, 1.3652, 0.3159, 0.728, 1.3652, 0.3892, 0.6621, 1.498, 0.2742, 0.7168, 1.4336, 0.2969, 0.6318, 1.498, 0.3376, 0.6318, 1.498, 0.3376, 0.7168, 1.4336, 0.2969, 0.6841, 1.4336, 0.3657, 0.5986, 1.5557, 0.2479, 0.6621, 1.498, 0.2742, 0.5713, 1.5557, 0.3054, 0.5713, 1.5557, 0.3054, 0.6621, 1.498, 0.2742, 0.6318, 1.498, 0.3376, 0.5278, 1.6084, 0.2186, 0.5986, 1.5557, 0.2479, 0.5039, 1.6084, 0.2693, 0.5039, 1.6084, 0.2693, 0.5986, 1.5557, 0.2479, 0.5713, 1.5557, 0.3054, 0.4504, 1.6533, 0.1865, 0.5278, 1.6084, 0.2186, 0.4299, 1.6533, 0.2299, 0.4299, 1.6533, 0.2299, 0.5278, 1.6084, 0.2186, 0.5039, 1.6084, 0.2693, 0.3674, 1.6914, 0.1521, 0.4504, 1.6533, 0.1865, 0.3506, 1.6914, 0.1874, 0.3506, 1.6914, 0.1874, 0.4504, 1.6533, 0.1865, 0.4299, 1.6533, 0.2299, 0.2795, 1.7207, 0.1158, 0.3674, 1.6914, 0.1521, 0.2668, 1.7207, 0.1427, 0.2668, 1.7207, 0.1427, 0.3674, 1.6914, 0.1521, 0.3506, 1.6914, 0.1874, 0.1884, 1.7422, 0.078, 0.2795, 1.7207, 0.1158, 0.1798, 1.7422, 0.0961, 0.1798, 1.7422, 0.0961, 0.2795, 1.7207, 0.1158, 0.2668, 1.7207, 0.1427, 0.0859, 1.7559, 0.0551, 0.1952, 1.7422, 0.0592, 0.1884, 1.7422, 0.078, 0.8081, 0.7153, 0.4319, 0.8081, 0.6279, 0.4319, 0.7617, 0.7153, 0.5088, 0.7617, 0.7153, 0.5088, 0.8081, 0.6279, 0.4319, 0.7617, 0.6279, 0.5088, 0.8081, 0.8022, 0.4319, 0.8081, 0.7153, 0.4319, 0.7617, 0.8022, 0.5088, 0.7617, 0.8022, 0.5088, 0.8081, 0.7153, 0.4319, 0.7617, 0.7153, 0.5088, 0.8081, 0.8892, 0.4319, 0.8081, 0.8022, 0.4319, 0.7617, 0.8892, 0.5088, 0.7617, 0.8892, 0.5088, 0.8081, 0.8022, 0.4319, 0.7617, 0.8022, 0.5088, 0.8081, 0.9766, 0.4319, 0.8081, 0.8892, 0.4319, 0.7617, 0.9766, 0.5088, 0.7617, 0.9766, 0.5088, 0.8081, 0.8892, 0.4319, 0.7617, 0.8892, 0.5088, 0.8081, 1.0635, 0.4319, 0.8081, 0.9766, 0.4319, 0.7617, 1.0635, 0.5088, 0.7617, 1.0635, 0.5088, 0.8081, 0.9766, 0.4319, 0.7617, 0.9766, 0.5088, 0.8032, 1.1416, 0.4292, 0.8081, 1.0635, 0.4319, 0.7573, 1.1416, 0.5059, 0.7573, 1.1416, 0.5059, 0.8081, 1.0635, 0.4319, 0.7617, 1.0635, 0.5088, 0.7881, 1.2188, 0.4211, 0.8032, 1.1416, 0.4292, 0.7427, 1.2188, 0.4963, 0.7427, 1.2188, 0.4963, 0.8032, 1.1416, 0.4292, 0.7573, 1.1416, 0.5059, 0.7627, 1.293, 0.4077, 0.7881, 1.2188, 0.4211, 0.7192, 1.293, 0.4805, 0.7192, 1.293, 0.4805, 0.7881, 1.2188, 0.4211, 0.7427, 1.2188, 0.4963, 0.728, 1.3652, 0.3892, 0.7627, 1.293, 0.4077, 0.6865, 1.3652, 0.4587, 0.6865, 1.3652, 0.4587, 0.7627, 1.293, 0.4077, 0.7192, 1.293, 0.4805, 0.6841, 1.4336, 0.3657, 0.728, 1.3652, 0.3892, 0.645, 1.4336, 0.4312, 0.645, 1.4336, 0.4312, 0.728, 1.3652, 0.3892, 0.6865, 1.3652, 0.4587, 0.6318, 1.498, 0.3376, 0.6841, 1.4336, 0.3657, 0.5957, 1.498, 0.3979, 0.5957, 1.498, 0.3979, 0.6841, 1.4336, 0.3657, 0.645, 1.4336, 0.4312, 0.5713, 1.5557, 0.3054, 0.6318, 1.498, 0.3376, 0.5386, 1.5557, 0.3599, 0.5386, 1.5557, 0.3599, 0.6318, 1.498, 0.3376, 0.5957, 1.498, 0.3979, 0.5039, 1.6084, 0.2693, 0.5713, 1.5557, 0.3054, 0.4751, 1.6084, 0.3174, 0.4751, 1.6084, 0.3174, 0.5713, 1.5557, 0.3054, 0.5386, 1.5557, 0.3599, 0.4299, 1.6533, 0.2299, 0.5039, 1.6084, 0.2693, 0.4053, 1.6533, 0.2708, 0.4053, 1.6533, 0.2708, 0.5039, 1.6084, 0.2693, 0.4751, 1.6084, 0.3174, 0.3506, 1.6914, 0.1874, 0.4299, 1.6533, 0.2299, 0.3306, 1.6914, 0.2209, 0.3306, 1.6914, 0.2209, 0.4299, 1.6533, 0.2299, 0.4053, 1.6533, 0.2708, 0.2668, 1.7207, 0.1427, 0.3506, 1.6914, 0.1874, 0.2517, 1.7207, 0.1681, 0.2517, 1.7207, 0.1681, 0.3506, 1.6914, 0.1874, 0.3306, 1.6914, 0.2209, 0.1798, 1.7422, 0.0961, 0.2668, 1.7207, 0.1427, 0.1696, 1.7422, 0.1133, 0.1696, 1.7422, 0.1133, 0.2668, 1.7207, 0.1427, 0.2517, 1.7207, 0.1681, 0.0859, 1.7559, 0.0551, 0.1696, 1.7422, 0.1133, 0.0793, 1.7559, 0.0651, 0.0793, 1.7559, 0.0651, 0.1696, 1.7422, 0.1133, 0.1576, 1.7422, 0.1294, 0.7617, 0.7153, 0.5088, 0.7617, 0.6279, 0.5088, 0.7085, 0.7153, 0.5811, 0.7085, 0.7153, 0.5811, 0.7617, 0.6279, 0.5088, 0.7085, 0.6279, 0.5811, 0.7617, 0.8022, 0.5088, 0.7617, 0.7153, 0.5088, 0.7085, 0.8022, 0.5811, 0.7085, 0.8022, 0.5811, 0.7617, 0.7153, 0.5088, 0.7085, 0.7153, 0.5811, 0.7617, 0.8892, 0.5088, 0.7617, 0.8022, 0.5088, 0.7085, 0.8892, 0.5811, 0.7085, 0.8892, 0.5811, 0.7617, 0.8022, 0.5088, 0.7085, 0.8022, 0.5811, 0.7617, 0.9766, 0.5088, 0.7617, 0.8892, 0.5088, 0.7085, 0.9766, 0.5811, 0.7085, 0.9766, 0.5811, 0.7617, 0.8892, 0.5088, 0.7085, 0.8892, 0.5811, 0.7617, 1.0635, 0.5088, 0.7617, 0.9766, 0.5088, 0.7085, 1.0635, 0.5811, 0.7085, 1.0635, 0.5811, 0.7617, 0.9766, 0.5088, 0.7085, 0.9766, 0.5811, 0.7573, 1.1416, 0.5059, 0.7617, 1.0635, 0.5088, 0.7041, 1.1416, 0.5776, 0.7041, 1.1416, 0.5776, 0.7617, 1.0635, 0.5088, 0.7085, 1.0635, 0.5811, 0.7427, 1.2188, 0.4963, 0.7573, 1.1416, 0.5059, 0.6904, 1.2188, 0.5669, 0.6904, 1.2188, 0.5669, 0.7573, 1.1416, 0.5059, 0.7041, 1.1416, 0.5776, 0.7192, 1.293, 0.4805, 0.7427, 1.2188, 0.4963, 0.6685, 1.293, 0.5488, 0.6685, 1.293, 0.5488, 0.7427, 1.2188, 0.4963, 0.6904, 1.2188, 0.5669, 0.6865, 1.3652, 0.4587, 0.7192, 1.293, 0.4805, 0.6382, 1.3652, 0.5239, 0.6382, 1.3652, 0.5239, 0.7192, 1.293, 0.4805, 0.6685, 1.293, 0.5488, 0.645, 1.4336, 0.4312, 0.6865, 1.3652, 0.4587, 0.5996, 1.4336, 0.4922, 0.5996, 1.4336, 0.4922, 0.6865, 1.3652, 0.4587, 0.6382, 1.3652, 0.5239, 0.5957, 1.498, 0.3979, 0.645, 1.4336, 0.4312, 0.5537, 1.498, 0.4546, 0.5537, 1.498, 0.4546, 0.645, 1.4336, 0.4312, 0.5996, 1.4336, 0.4922, 0.5386, 1.5557, 0.3599, 0.5957, 1.498, 0.3979, 0.501, 1.5557, 0.4111, 0.501, 1.5557, 0.4111, 0.5957, 1.498, 0.3979, 0.5537, 1.498, 0.4546, 0.4751, 1.6084, 0.3174, 0.5386, 1.5557, 0.3599, 0.4417, 1.6084, 0.3625, 0.4417, 1.6084, 0.3625, 0.5386, 1.5557, 0.3599, 0.501, 1.5557, 0.4111, 0.4053, 1.6533, 0.2708, 0.4751, 1.6084, 0.3174, 0.377, 1.6533, 0.3093, 0.377, 1.6533, 0.3093, 0.4751, 1.6084, 0.3174, 0.4417, 1.6084, 0.3625, 0.3306, 1.6914, 0.2209, 0.4053, 1.6533, 0.2708, 0.3074, 1.6914, 0.2522, 0.3074, 1.6914, 0.2522, 0.4053, 1.6533, 0.2708, 0.377, 1.6533, 0.3093, 0.2517, 1.7207, 0.1681, 0.3306, 1.6914, 0.2209, 0.234, 1.7207, 0.192, 0.234, 1.7207, 0.192, 0.3306, 1.6914, 0.2209, 0.3074, 1.6914, 0.2522, 0.1696, 1.7422, 0.1133, 0.2517, 1.7207, 0.1681, 0.1576, 1.7422, 0.1294, 0.1576, 1.7422, 0.1294, 0.2517, 1.7207, 0.1681, 0.234, 1.7207, 0.192, 0.0793, 1.7559, -0.0651, 0.1576, 1.7422, -0.1294, 0.0853, 1.7559, -0.0562, 0.0853, 1.7559, -0.0562, 0.1576, 1.7422, -0.1294, 0.1696, 1.7422, -0.1133, 0.7085, 0.7153, 0.5811, 0.7085, 0.6279, 0.5811, 0.6079, 0.7432, 0.6841, 0.6079, 0.7432, 0.6841, 0.7085, 0.6279, 0.5811, 0.6479, 0.6279, 0.6479, 0.7085, 0.8022, 0.5811, 0.7085, 0.7153, 0.5811, 0.644, 0.8047, 0.6514, 0.644, 0.8047, 0.6514, 0.7085, 0.7153, 0.5811, 0.6079, 0.7432, 0.6841, 0.7085, 0.8892, 0.5811, 0.7085, 0.8022, 0.5811, 0.6621, 0.8784, 0.6323, 0.6621, 0.8784, 0.6323, 0.7085, 0.8022, 0.5811, 0.644, 0.8047, 0.6514, 0.7085, 0.9766, 0.5811, 0.7085, 0.8892, 0.5811, 0.665, 0.957, 0.6294, 0.665, 0.957, 0.6294, 0.7085, 0.8892, 0.5811, 0.6621, 0.8784, 0.6323, 0.7085, 1.0635, 0.5811, 0.7085, 0.9766, 0.5811, 0.6519, 1.0332, 0.6436, 0.6519, 1.0332, 0.6436, 0.7085, 0.9766, 0.5811, 0.665, 0.957, 0.6294, 0.7041, 1.1416, 0.5776, 0.7085, 1.0635, 0.5811, 0.6196, 1.0996, 0.6699, 0.6196, 1.0996, 0.6699, 0.7085, 1.0635, 0.5811, 0.6519, 1.0332, 0.6436, 0.6904, 1.2188, 0.5669, 0.7041, 1.1416, 0.5776, 0.6318, 1.2188, 0.6318, 0.6318, 1.2188, 0.6318, 0.7041, 1.1416, 0.5776, 0.6196, 1.0996, 0.6699, 0.6685, 1.293, 0.5488, 0.6904, 1.2188, 0.5669, 0.6113, 1.293, 0.6113, 0.6113, 1.293, 0.6113, 0.6904, 1.2188, 0.5669, 0.6318, 1.2188, 0.6318, 0.6382, 1.3652, 0.5239, 0.6685, 1.293, 0.5488, 0.5835, 1.3652, 0.5835, 0.5835, 1.3652, 0.5835, 0.6685, 1.293, 0.5488, 0.6113, 1.293, 0.6113, 0.5996, 1.4336, 0.4922, 0.6382, 1.3652, 0.5239, 0.5483, 1.4336, 0.5483, 0.5483, 1.4336, 0.5483, 0.6382, 1.3652, 0.5239, 0.5835, 1.3652, 0.5835, 0.5537, 1.498, 0.4546, 0.5996, 1.4336, 0.4922, 0.5063, 1.498, 0.5063, 0.5063, 1.498, 0.5063, 0.5996, 1.4336, 0.4922, 0.5483, 1.4336, 0.5483, 0.501, 1.5557, 0.4111, 0.5537, 1.498, 0.4546, 0.4583, 1.5557, 0.4583, 0.4583, 1.5557, 0.4583, 0.5537, 1.498, 0.4546, 0.5063, 1.498, 0.5063, 0.4417, 1.6084, 0.3625, 0.501, 1.5557, 0.4111, 0.4041, 1.6084, 0.4041, 0.4041, 1.6084, 0.4041, 0.501, 1.5557, 0.4111, 0.4583, 1.5557, 0.4583, 0.377, 1.6533, 0.3093, 0.4417, 1.6084, 0.3625, 0.3447, 1.6533, 0.3447, 0.3447, 1.6533, 0.3447, 0.4417, 1.6084, 0.3625, 0.4041, 1.6084, 0.4041, 0.3074, 1.6914, 0.2522, 0.377, 1.6533, 0.3093, 0.281, 1.6914, 0.281, 0.281, 1.6914, 0.281, 0.377, 1.6533, 0.3093, 0.3447, 1.6533, 0.3447, 0.234, 1.7207, 0.192, 0.3074, 1.6914, 0.2522, 0.214, 1.7207, 0.214, 0.214, 1.7207, 0.214, 0.3074, 1.6914, 0.2522, 0.281, 1.6914, 0.281, 0.1576, 1.7422, 0.1294, 0.234, 1.7207, 0.192, 0.1442, 1.7422, 0.1442, 0.1442, 1.7422, 0.1442, 0.234, 1.7207, 0.192, 0.214, 1.7207, 0.214, 0.0793, 1.7559, 0.0651, 0.1576, 1.7422, 0.1294, 0.0726, 1.7559, 0.0726, 0.0726, 1.7559, 0.0726, 0.1576, 1.7422, 0.1294, 0.1442, 1.7422, 0.1442, 0.6079, 0.7432, 0.6841, 0.6479, 0.6279, 0.6479, 0.5571, 0.6997, 0.7266, 0.5571, 0.6997, 0.7266, 0.6479, 0.6279, 0.6479, 0.5811, 0.6279, 0.7085, 0.6318, 1.2188, 0.6318, 0.6196, 1.0996, 0.6699, 0.5669, 1.2188, 0.6904, 0.5669, 1.2188, 0.6904, 0.6196, 1.0996, 0.6699, 0.5708, 1.1504, 0.7065, 0.6113, 1.293, 0.6113, 0.6318, 1.2188, 0.6318, 0.5488, 1.293, 0.6685, 0.5488, 1.293, 0.6685, 0.6318, 1.2188, 0.6318, 0.5669, 1.2188, 0.6904, 0.5835, 1.3652, 0.5835, 0.6113, 1.293, 0.6113, 0.5239, 1.3652, 0.6382, 0.5239, 1.3652, 0.6382, 0.6113, 1.293, 0.6113, 0.5488, 1.293, 0.6685, 0.5483, 1.4336, 0.5483, 0.5835, 1.3652, 0.5835, 0.4922, 1.4336, 0.5996, 0.4922, 1.4336, 0.5996, 0.5835, 1.3652, 0.5835, 0.5239, 1.3652, 0.6382, 0.5063, 1.498, 0.5063, 0.5483, 1.4336, 0.5483, 0.4546, 1.498, 0.5537, 0.4546, 1.498, 0.5537, 0.5483, 1.4336, 0.5483, 0.4922, 1.4336, 0.5996, 0.4583, 1.5557, 0.4583, 0.5063, 1.498, 0.5063, 0.4111, 1.5557, 0.501, 0.4111, 1.5557, 0.501, 0.5063, 1.498, 0.5063, 0.4546, 1.498, 0.5537, 0.4041, 1.6084, 0.4041, 0.4583, 1.5557, 0.4583, 0.3625, 1.6084, 0.4417, 0.3625, 1.6084, 0.4417, 0.4583, 1.5557, 0.4583, 0.4111, 1.5557, 0.501, 0.3447, 1.6533, 0.3447, 0.4041, 1.6084, 0.4041, 0.3093, 1.6533, 0.377, 0.3093, 1.6533, 0.377, 0.4041, 1.6084, 0.4041, 0.3625, 1.6084, 0.4417, 0.281, 1.6914, 0.281, 0.3447, 1.6533, 0.3447, 0.2522, 1.6914, 0.3074, 0.2522, 1.6914, 0.3074, 0.3447, 1.6533, 0.3447, 0.3093, 1.6533, 0.377, 0.214, 1.7207, 0.214, 0.281, 1.6914, 0.281, 0.192, 1.7207, 0.234, 0.192, 1.7207, 0.234, 0.281, 1.6914, 0.281, 0.2522, 1.6914, 0.3074, 0.1442, 1.7422, 0.1442, 0.214, 1.7207, 0.214, 0.1294, 1.7422, 0.1576, 0.1294, 1.7422, 0.1576, 0.214, 1.7207, 0.214, 0.192, 1.7207, 0.234, 0.0726, 1.7559, 0.0726, 0.1442, 1.7422, 0.1442, 0.0651, 1.7559, 0.0793, 0.0651, 1.7559, 0.0793, 0.1442, 1.7422, 0.1442, 0.1294, 1.7422, 0.1576, 0.5571, 0.6997, 0.7266, 0.5811, 0.6279, 0.7085, 0.4937, 0.6792, 0.771, 0.4937, 0.6792, 0.771, 0.5811, 0.6279, 0.7085, 0.5088, 0.6279, 0.7617, 0.6128, 1.0908, 0.6772, 0.5659, 1.1387, 0.7119, 0.6196, 1.0996, 0.6699, 0.6196, 1.0996, 0.6699, 0.5659, 1.1387, 0.7119, 0.5708, 1.1504, 0.7065, 0.4268, 0.6958, 0.8105, 0.4927, 0.6924, 0.772, 0.4243, 0.6831, 0.812, 0.4243, 0.6831, 0.812, 0.4927, 0.6924, 0.772, 0.4937, 0.6792, 0.771, 0.5527, 0.7119, 0.73, 0.6011, 0.7529, 0.6904, 0.5571, 0.6997, 0.7266, 0.5571, 0.6997, 0.7266, 0.6011, 0.7529, 0.6904, 0.6079, 0.7432, 0.6841, 0.4565, 0.8091, 0.4473, 0.4326, 0.77, 0.4668, 0.436, 0.7969, 0.4661, 0.436, 0.7969, 0.4661, 0.4326, 0.77, 0.4668, 0.4089, 0.749, 0.4873, 0.5659, 1.1387, 0.7119, 0.5063, 1.166, 0.748, 0.5708, 1.1504, 0.7065, 0.5708, 1.1504, 0.7065, 0.5063, 1.166, 0.748, 0.5078, 1.1787, 0.7451, 0.5669, 1.2188, 0.6904, 0.5708, 1.1504, 0.7065, 0.4963, 1.2188, 0.7427, 0.4963, 1.2188, 0.7427, 0.5708, 1.1504, 0.7065, 0.5078, 1.1787, 0.7451, 0.5488, 1.293, 0.6685, 0.5669, 1.2188, 0.6904, 0.4805, 1.293, 0.7192, 0.4805, 1.293, 0.7192, 0.5669, 1.2188, 0.6904, 0.4963, 1.2188, 0.7427, 0.5239, 1.3652, 0.6382, 0.5488, 1.293, 0.6685, 0.4587, 1.3652, 0.6865, 0.4587, 1.3652, 0.6865, 0.5488, 1.293, 0.6685, 0.4805, 1.293, 0.7192, 0.4922, 1.4336, 0.5996, 0.5239, 1.3652, 0.6382, 0.4312, 1.4336, 0.645, 0.4312, 1.4336, 0.645, 0.5239, 1.3652, 0.6382, 0.4587, 1.3652, 0.6865, 0.4546, 1.498, 0.5537, 0.4922, 1.4336, 0.5996, 0.3979, 1.498, 0.5957, 0.3979, 1.498, 0.5957, 0.4922, 1.4336, 0.5996, 0.4312, 1.4336, 0.645, 0.4111, 1.5557, 0.501, 0.4546, 1.498, 0.5537, 0.3599, 1.5557, 0.5386, 0.3599, 1.5557, 0.5386, 0.4546, 1.498, 0.5537, 0.3979, 1.498, 0.5957, 0.3625, 1.6084, 0.4417, 0.4111, 1.5557, 0.501, 0.3174, 1.6084, 0.4751, 0.3174, 1.6084, 0.4751, 0.4111, 1.5557, 0.501, 0.3599, 1.5557, 0.5386, 0.3093, 1.6533, 0.377, 0.3625, 1.6084, 0.4417, 0.2708, 1.6533, 0.4053, 0.2708, 1.6533, 0.4053, 0.3625, 1.6084, 0.4417, 0.3174, 1.6084, 0.4751, 0.2522, 1.6914, 0.3074, 0.3093, 1.6533, 0.377, 0.2209, 1.6914, 0.3306, 0.2209, 1.6914, 0.3306, 0.3093, 1.6533, 0.377, 0.2708, 1.6533, 0.4053, 0.192, 1.7207, 0.234, 0.2522, 1.6914, 0.3074, 0.1681, 1.7207, 0.2517, 0.1681, 1.7207, 0.2517, 0.2522, 1.6914, 0.3074, 0.2209, 1.6914, 0.3306, 0.1294, 1.7422, 0.1576, 0.192, 1.7207, 0.234, 0.1133, 1.7422, 0.1696, 0.1133, 1.7422, 0.1696, 0.192, 1.7207, 0.234, 0.1681, 1.7207, 0.2517, 0.0651, 1.7559, 0.0793, 0.1294, 1.7422, 0.1576, 0.057, 1.7559, 0.0853, 0.057, 1.7559, 0.0853, 0.1294, 1.7422, 0.1576, 0.1133, 1.7422, 0.1696, 0.4937, 0.6792, 0.771, 0.5088, 0.6279, 0.7617, 0.4243, 0.6831, 0.812, 0.4243, 0.6831, 0.812, 0.5088, 0.6279, 0.7617, 0.4319, 0.6279, 0.8081, 0.2815, 1.0488, 0.8716, 0.2573, 0.9795, 0.8779, 0.2705, 1.0557, 0.8755, 0.2705, 1.0557, 0.8755, 0.2573, 0.9795, 0.8779, 0.2451, 0.9819, 0.8823, 0.3789, 1.1494, 0.8237, 0.3235, 1.1074, 0.853, 0.373, 1.1621, 0.8247, 0.373, 1.1621, 0.8247, 0.3235, 1.1074, 0.853, 0.3147, 1.1172, 0.8555, 0.6431, 1.0283, 0.6523, 0.6128, 1.0908, 0.6772, 0.6519, 1.0332, 0.6436, 0.6519, 1.0332, 0.6436, 0.6128, 1.0908, 0.6772, 0.6196, 1.0996, 0.6699, 0.4646, 1.0273, 0.4404, 0.4775, 0.9531, 0.4265, 0.436, 1.0576, 0.4661, 0.436, 1.0576, 0.4661, 0.4775, 0.9531, 0.4265, 0.436, 0.9712, 0.4661, 0.4419, 1.1699, 0.7866, 0.3789, 1.1494, 0.8237, 0.4397, 1.1826, 0.7861, 0.4397, 1.1826, 0.7861, 0.3789, 1.1494, 0.8237, 0.373, 1.1621, 0.8247, 0.4963, 1.2188, 0.7427, 0.5078, 1.1787, 0.7451, 0.4211, 1.2188, 0.7881, 0.4211, 1.2188, 0.7881, 0.5078, 1.1787, 0.7451, 0.4397, 1.1826, 0.7861, 0.4805, 1.293, 0.7192, 0.4963, 1.2188, 0.7427, 0.4077, 1.293, 0.7627, 0.4077, 1.293, 0.7627, 0.4963, 1.2188, 0.7427, 0.4211, 1.2188, 0.7881, 0.4587, 1.3652, 0.6865, 0.4805, 1.293, 0.7192, 0.3892, 1.3652, 0.728, 0.3892, 1.3652, 0.728, 0.4805, 1.293, 0.7192, 0.4077, 1.293, 0.7627, 0.4312, 1.4336, 0.645, 0.4587, 1.3652, 0.6865, 0.3657, 1.4336, 0.6841, 0.3657, 1.4336, 0.6841, 0.4587, 1.3652, 0.6865, 0.3892, 1.3652, 0.728, 0.3979, 1.498, 0.5957, 0.4312, 1.4336, 0.645, 0.3376, 1.498, 0.6318, 0.3376, 1.498, 0.6318, 0.4312, 1.4336, 0.645, 0.3657, 1.4336, 0.6841, 0.3599, 1.5557, 0.5386, 0.3979, 1.498, 0.5957, 0.3054, 1.5557, 0.5713, 0.3054, 1.5557, 0.5713, 0.3979, 1.498, 0.5957, 0.3376, 1.498, 0.6318, 0.3174, 1.6084, 0.4751, 0.3599, 1.5557, 0.5386, 0.2693, 1.6084, 0.5039, 0.2693, 1.6084, 0.5039, 0.3599, 1.5557, 0.5386, 0.3054, 1.5557, 0.5713, 0.2708, 1.6533, 0.4053, 0.3174, 1.6084, 0.4751, 0.2299, 1.6533, 0.4299, 0.2299, 1.6533, 0.4299, 0.3174, 1.6084, 0.4751, 0.2693, 1.6084, 0.5039, 0.2209, 1.6914, 0.3306, 0.2708, 1.6533, 0.4053, 0.1874, 1.6914, 0.3506, 0.1874, 1.6914, 0.3506, 0.2708, 1.6533, 0.4053, 0.2299, 1.6533, 0.4299, 0.1681, 1.7207, 0.2517, 0.2209, 1.6914, 0.3306, 0.1427, 1.7207, 0.2668, 0.1427, 1.7207, 0.2668, 0.2209, 1.6914, 0.3306, 0.1874, 1.6914, 0.3506, 0.1133, 1.7422, 0.1696, 0.1681, 1.7207, 0.2517, 0.0961, 1.7422, 0.1798, 0.0961, 1.7422, 0.1798, 0.1681, 1.7207, 0.2517, 0.1427, 1.7207, 0.2668, 0.057, 1.7559, 0.0853, 0.1133, 1.7422, 0.1696, 0.0484, 1.7559, 0.0905, 0.0484, 1.7559, 0.0905, 0.1133, 1.7422, 0.1696, 0.0961, 1.7422, 0.1798, 0.4243, 0.6831, 0.812, 0.4319, 0.6279, 0.8081, 0.3579, 0.7114, 0.8433, 0.3579, 0.7114, 0.8433, 0.4319, 0.6279, 0.8081, 0.3506, 0.6279, 0.8467, 0.6528, 0.8809, 0.6411, 0.6553, 0.9561, 0.6382, 0.6621, 0.8784, 0.6323, 0.6621, 0.8784, 0.6323, 0.6553, 0.9561, 0.6382, 0.665, 0.957, 0.6294, 0.364, 0.7227, 0.8408, 0.4268, 0.6958, 0.8105, 0.3579, 0.7114, 0.8433, 0.3579, 0.7114, 0.8433, 0.4268, 0.6958, 0.8105, 0.4243, 0.6831, 0.812, 0.3235, 1.1074, 0.853, 0.2815, 1.0488, 0.8716, 0.3147, 1.1172, 0.8555, 0.3147, 1.1172, 0.8555, 0.2815, 1.0488, 0.8716, 0.2705, 1.0557, 0.8755, 0.2727, 0.832, 0.874, 0.3098, 0.7695, 0.8613, 0.2612, 0.8267, 0.8779, 0.2612, 0.8267, 0.8779, 0.3098, 0.7695, 0.8613, 0.3003, 0.7607, 0.8647, 0.3098, 0.7695, 0.8613, 0.364, 0.7227, 0.8408, 0.3003, 0.7607, 0.8647, 0.3003, 0.7607, 0.8647, 0.364, 0.7227, 0.8408, 0.3579, 0.7114, 0.8433, 0.4211, 1.2188, 0.7881, 0.4397, 1.1826, 0.7861, 0.3418, 1.2188, 0.8252, 0.3418, 1.2188, 0.8252, 0.4397, 1.1826, 0.7861, 0.373, 1.1621, 0.8247, 0.4077, 1.293, 0.7627, 0.4211, 1.2188, 0.7881, 0.3311, 1.293, 0.7993, 0.3311, 1.293, 0.7993, 0.4211, 1.2188, 0.7881, 0.3418, 1.2188, 0.8252, 0.3892, 1.3652, 0.728, 0.4077, 1.293, 0.7627, 0.3159, 1.3652, 0.7627, 0.3159, 1.3652, 0.7627, 0.4077, 1.293, 0.7627, 0.3311, 1.293, 0.7993, 0.3657, 1.4336, 0.6841, 0.3892, 1.3652, 0.728, 0.2969, 1.4336, 0.7168, 0.2969, 1.4336, 0.7168, 0.3892, 1.3652, 0.728, 0.3159, 1.3652, 0.7627, 0.3376, 1.498, 0.6318, 0.3657, 1.4336, 0.6841, 0.2742, 1.498, 0.6621, 0.2742, 1.498, 0.6621, 0.3657, 1.4336, 0.6841, 0.2969, 1.4336, 0.7168, 0.3054, 1.5557, 0.5713, 0.3376, 1.498, 0.6318, 0.2479, 1.5557, 0.5986, 0.2479, 1.5557, 0.5986, 0.3376, 1.498, 0.6318, 0.2742, 1.498, 0.6621, 0.2693, 1.6084, 0.5039, 0.3054, 1.5557, 0.5713, 0.2186, 1.6084, 0.5278, 0.2186, 1.6084, 0.5278, 0.3054, 1.5557, 0.5713, 0.2479, 1.5557, 0.5986, 0.2299, 1.6533, 0.4299, 0.2693, 1.6084, 0.5039, 0.1865, 1.6533, 0.4504, 0.1865, 1.6533, 0.4504, 0.2693, 1.6084, 0.5039, 0.2186, 1.6084, 0.5278, 0.1874, 1.6914, 0.3506, 0.2299, 1.6533, 0.4299, 0.1521, 1.6914, 0.3674, 0.1521, 1.6914, 0.3674, 0.2299, 1.6533, 0.4299, 0.1865, 1.6533, 0.4504, 0.1427, 1.7207, 0.2668, 0.1874, 1.6914, 0.3506, 0.1158, 1.7207, 0.2795, 0.1158, 1.7207, 0.2795, 0.1874, 1.6914, 0.3506, 0.1521, 1.6914, 0.3674, 0.0961, 1.7422, 0.1798, 0.1427, 1.7207, 0.2668, 0.078, 1.7422, 0.1884, 0.078, 1.7422, 0.1884, 0.1427, 1.7207, 0.2668, 0.1158, 1.7207, 0.2795, 0.0484, 1.7559, 0.0905, 0.0961, 1.7422, 0.1798, 0.0392, 1.7559, 0.0948, 0.0392, 1.7559, 0.0948, 0.0961, 1.7422, 0.1798, 0.078, 1.7422, 0.1884, 0.3579, 0.7114, 0.8433, 0.3506, 0.6279, 0.8467, 0.3003, 0.7607, 0.8647, 0.3003, 0.7607, 0.8647, 0.3506, 0.6279, 0.8467, 0.2659, 0.6279, 0.877, 0.2542, 0.9048, 0.8789, 0.2727, 0.832, 0.874, 0.2418, 0.9033, 0.8828, 0.2418, 0.9033, 0.8828, 0.2727, 0.832, 0.874, 0.2612, 0.8267, 0.8779, 0.6553, 0.9561, 0.6382, 0.6431, 1.0283, 0.6523, 0.665, 0.957, 0.6294, 0.665, 0.957, 0.6294, 0.6431, 1.0283, 0.6523, 0.6519, 1.0332, 0.6436, 0.4927, 0.6924, 0.772, 0.5527, 0.7119, 0.73, 0.4937, 0.6792, 0.771, 0.4937, 0.6792, 0.771, 0.5527, 0.7119, 0.73, 0.5571, 0.6997, 0.7266, 0.2573, 0.9795, 0.8779, 0.2542, 0.9048, 0.8789, 0.2451, 0.9819, 0.8823, 0.2451, 0.9819, 0.8823, 0.2542, 0.9048, 0.8789, 0.2418, 0.9033, 0.8828, 0.6353, 0.811, 0.6592, 0.6528, 0.8809, 0.6411, 0.644, 0.8047, 0.6514, 0.644, 0.8047, 0.6514, 0.6528, 0.8809, 0.6411, 0.6621, 0.8784, 0.6323, 0.3418, 1.2188, 0.8252, 0.373, 1.1621, 0.8247, 0.2593, 1.2188, 0.855, 0.2593, 1.2188, 0.855, 0.373, 1.1621, 0.8247, 0.3147, 1.1172, 0.8555, 0.3311, 1.293, 0.7993, 0.3418, 1.2188, 0.8252, 0.251, 1.293, 0.8276, 0.251, 1.293, 0.8276, 0.3418, 1.2188, 0.8252, 0.2593, 1.2188, 0.855, 0.3159, 1.3652, 0.7627, 0.3311, 1.293, 0.7993, 0.2396, 1.3652, 0.79, 0.2396, 1.3652, 0.79, 0.3311, 1.293, 0.7993, 0.251, 1.293, 0.8276, 0.2969, 1.4336, 0.7168, 0.3159, 1.3652, 0.7627, 0.2252, 1.4336, 0.7427, 0.2252, 1.4336, 0.7427, 0.3159, 1.3652, 0.7627, 0.2396, 1.3652, 0.79, 0.2742, 1.498, 0.6621, 0.2969, 1.4336, 0.7168, 0.208, 1.498, 0.6855, 0.208, 1.498, 0.6855, 0.2969, 1.4336, 0.7168, 0.2252, 1.4336, 0.7427, 0.2479, 1.5557, 0.5986, 0.2742, 1.498, 0.6621, 0.1881, 1.5557, 0.6201, 0.1881, 1.5557, 0.6201, 0.2742, 1.498, 0.6621, 0.208, 1.498, 0.6855, 0.2186, 1.6084, 0.5278, 0.2479, 1.5557, 0.5986, 0.1659, 1.6084, 0.5469, 0.1659, 1.6084, 0.5469, 0.2479, 1.5557, 0.5986, 0.1881, 1.5557, 0.6201, 0.1865, 1.6533, 0.4504, 0.2186, 1.6084, 0.5278, 0.1415, 1.6533, 0.4666, 0.1415, 1.6533, 0.4666, 0.2186, 1.6084, 0.5278, 0.1659, 1.6084, 0.5469, 0.1521, 1.6914, 0.3674, 0.1865, 1.6533, 0.4504, 0.1154, 1.6914, 0.3804, 0.1154, 1.6914, 0.3804, 0.1865, 1.6533, 0.4504, 0.1415, 1.6533, 0.4666, 0.1158, 1.7207, 0.2795, 0.1521, 1.6914, 0.3674, 0.0878, 1.7207, 0.2896, 0.0878, 1.7207, 0.2896, 0.1521, 1.6914, 0.3674, 0.1154, 1.6914, 0.3804, 0.078, 1.7422, 0.1884, 0.1158, 1.7207, 0.2795, 0.0592, 1.7422, 0.1952, 0.0592, 1.7422, 0.1952, 0.1158, 1.7207, 0.2795, 0.0878, 1.7207, 0.2896, 0.0392, 1.7559, 0.0948, 0.078, 1.7422, 0.1884, 0.0298, 1.7559, 0.0982, 0.0298, 1.7559, 0.0982, 0.078, 1.7422, 0.1884, 0.0592, 1.7422, 0.1952, 0.3003, 0.7607, 0.8647, 0.2659, 0.6279, 0.877, 0.1787, 0.7153, 0.8989, 0.1787, 0.7153, 0.8989, 0.2659, 0.6279, 0.877, 0.1787, 0.6279, 0.8989, 0.2612, 0.8267, 0.8779, 0.3003, 0.7607, 0.8647, 0.1787, 0.8022, 0.8989, 0.1787, 0.8022, 0.8989, 0.3003, 0.7607, 0.8647, 0.1787, 0.7153, 0.8989, 0.2418, 0.9033, 0.8828, 0.2612, 0.8267, 0.8779, 0.1787, 0.8892, 0.8989, 0.1787, 0.8892, 0.8989, 0.2612, 0.8267, 0.8779, 0.1787, 0.8022, 0.8989, 0.2451, 0.9819, 0.8823, 0.2418, 0.9033, 0.8828, 0.1787, 0.9766, 0.8989, 0.1787, 0.9766, 0.8989, 0.2418, 0.9033, 0.8828, 0.1787, 0.8892, 0.8989, 0.2705, 1.0557, 0.8755, 0.2451, 0.9819, 0.8823, 0.1787, 1.0635, 0.8989, 0.1787, 1.0635, 0.8989, 0.2451, 0.9819, 0.8823, 0.1787, 0.9766, 0.8989, 0.3147, 1.1172, 0.8555, 0.2705, 1.0557, 0.8755, 0.1776, 1.1416, 0.8931, 0.1776, 1.1416, 0.8931, 0.2705, 1.0557, 0.8755, 0.1787, 1.0635, 0.8989, 0.2593, 1.2188, 0.855, 0.3147, 1.1172, 0.8555, 0.1743, 1.2188, 0.8765, 0.1743, 1.2188, 0.8765, 0.3147, 1.1172, 0.8555, 0.1776, 1.1416, 0.8931, 0.251, 1.293, 0.8276, 0.2593, 1.2188, 0.855, 0.1687, 1.293, 0.8481, 0.1687, 1.293, 0.8481, 0.2593, 1.2188, 0.855, 0.1743, 1.2188, 0.8765, 0.2396, 1.3652, 0.79, 0.251, 1.293, 0.8276, 0.161, 1.3652, 0.8096, 0.161, 1.3652, 0.8096, 0.251, 1.293, 0.8276, 0.1687, 1.293, 0.8481, 0.2252, 1.4336, 0.7427, 0.2396, 1.3652, 0.79, 0.1514, 1.4336, 0.7612, 0.1514, 1.4336, 0.7612, 0.2396, 1.3652, 0.79, 0.161, 1.3652, 0.8096, 0.208, 1.498, 0.6855, 0.2252, 1.4336, 0.7427, 0.1398, 1.498, 0.7026, 0.1398, 1.498, 0.7026, 0.2252, 1.4336, 0.7427, 0.1514, 1.4336, 0.7612, 0.1881, 1.5557, 0.6201, 0.208, 1.498, 0.6855, 0.1263, 1.5557, 0.6353, 0.1263, 1.5557, 0.6353, 0.208, 1.498, 0.6855, 0.1398, 1.498, 0.7026, 0.1659, 1.6084, 0.5469, 0.1881, 1.5557, 0.6201, 0.1115, 1.6084, 0.5601, 0.1115, 1.6084, 0.5601, 0.1881, 1.5557, 0.6201, 0.1263, 1.5557, 0.6353, 0.1415, 1.6533, 0.4666, 0.1659, 1.6084, 0.5469, 0.0951, 1.6533, 0.4783, 0.0951, 1.6533, 0.4783, 0.1659, 1.6084, 0.5469, 0.1115, 1.6084, 0.5601, 0.1154, 1.6914, 0.3804, 0.1415, 1.6533, 0.4666, 0.0776, 1.6914, 0.3899, 0.0776, 1.6914, 0.3899, 0.1415, 1.6533, 0.4666, 0.0951, 1.6533, 0.4783, 0.0878, 1.7207, 0.2896, 0.1154, 1.6914, 0.3804, 0.0591, 1.7207, 0.2969, 0.0591, 1.7207, 0.2969, 0.1154, 1.6914, 0.3804, 0.0776, 1.6914, 0.3899, 0.0592, 1.7422, 0.1952, 0.0878, 1.7207, 0.2896, 0.0398, 1.7422, 0.2, 0.0398, 1.7422, 0.2, 0.0878, 1.7207, 0.2896, 0.0591, 1.7207, 0.2969, 0.0298, 1.7559, 0.0982, 0.0592, 1.7422, 0.1952, 0.02, 1.7559, 0.1006, 0.02, 1.7559, 0.1006, 0.0592, 1.7422, 0.1952, 0.0398, 1.7422, 0.2, 0.1787, 0.7153, 0.8989, 0.1787, 0.6279, 0.8989, 0.0898, 0.6885, 0.9121, 0.0898, 0.6885, 0.9121, 0.1787, 0.6279, 0.8989, 0.0898, 0.6279, 0.9121, 0.1787, 0.8892, 0.8989, 0.1787, 0.8022, 0.8989, 0.0898, 0.8892, 0.9121, 0.0898, 0.8892, 0.9121, 0.1787, 0.8022, 0.8989, 0.0898, 0.7759, 0.9121, 0.1776, 1.1416, 0.8931, 0.1787, 1.0635, 0.8989, 0.0892, 1.1416, 0.9063, 0.0892, 1.1416, 0.9063, 0.1787, 1.0635, 0.8989, 0.0898, 1.0635, 0.9121, 0.1743, 1.2188, 0.8765, 0.1776, 1.1416, 0.8931, 0.0876, 1.2188, 0.8892, 0.0876, 1.2188, 0.8892, 0.1776, 1.1416, 0.8931, 0.0892, 1.1416, 0.9063, 0.1687, 1.293, 0.8481, 0.1743, 1.2188, 0.8765, 0.0848, 1.293, 0.8608, 0.0848, 1.293, 0.8608, 0.1743, 1.2188, 0.8765, 0.0876, 1.2188, 0.8892, 0.161, 1.3652, 0.8096, 0.1687, 1.293, 0.8481, 0.0809, 1.3652, 0.8218, 0.0809, 1.3652, 0.8218, 0.1687, 1.293, 0.8481, 0.0848, 1.293, 0.8608, 0.1514, 1.4336, 0.7612, 0.161, 1.3652, 0.8096, 0.076, 1.4336, 0.772, 0.076, 1.4336, 0.772, 0.161, 1.3652, 0.8096, 0.0809, 1.3652, 0.8218, 0.1398, 1.498, 0.7026, 0.1514, 1.4336, 0.7612, 0.0702, 1.498, 0.7129, 0.0702, 1.498, 0.7129, 0.1514, 1.4336, 0.7612, 0.076, 1.4336, 0.772, 0.1263, 1.5557, 0.6353, 0.1398, 1.498, 0.7026, 0.0635, 1.5557, 0.645, 0.0635, 1.5557, 0.645, 0.1398, 1.498, 0.7026, 0.0702, 1.498, 0.7129, 0.1115, 1.6084, 0.5601, 0.1263, 1.5557, 0.6353, 0.056, 1.6084, 0.5684, 0.056, 1.6084, 0.5684, 0.1263, 1.5557, 0.6353, 0.0635, 1.5557, 0.645, 0.0951, 1.6533, 0.4783, 0.1115, 1.6084, 0.5601, 0.0478, 1.6533, 0.4851, 0.0478, 1.6533, 0.4851, 0.1115, 1.6084, 0.5601, 0.056, 1.6084, 0.5684, 0.0776, 1.6914, 0.3899, 0.0951, 1.6533, 0.4783, 0.039, 1.6914, 0.3958, 0.039, 1.6914, 0.3958, 0.0951, 1.6533, 0.4783, 0.0478, 1.6533, 0.4851, 0.0591, 1.7207, 0.2969, 0.0776, 1.6914, 0.3899, 0.0297, 1.7207, 0.3013, 0.0297, 1.7207, 0.3013, 0.0776, 1.6914, 0.3899, 0.039, 1.6914, 0.3958, 0.0398, 1.7422, 0.2, 0.0591, 1.7207, 0.2969, 0.02, 1.7422, 0.2029, 0.02, 1.7422, 0.2029, 0.0591, 1.7207, 0.2969, 0.0297, 1.7207, 0.3013, 0.02, 1.7559, 0.1006, 0.0398, 1.7422, 0.2, 0.0101, 1.7559, 0.1021, 0.0101, 1.7559, 0.1021, 0.0398, 1.7422, 0.2, 0.02, 1.7422, 0.2029, 0.0898, 1.0635, 0.9121, 0.0898, 1.0078, 0.9121, 0.0498, 1.0244, 0.9141, 0.0498, 1.0244, 0.9141, 0.0898, 1.0078, 0.9121, 0.0701, 1.002, 0.9131, 0.0435, 0.7368, 0.9058, 0.0217, 0.7256, 0.9067, 0.0404, 0.7368, 0.8418, 0.0404, 0.7368, 0.8418, 0.0217, 0.7256, 0.9067, 0.0186, 0.7256, 0.8428, 0.0578, 0.7534, 0.9053, 0.0435, 0.7368, 0.9058, 0.0546, 0.7534, 0.8408, 0.0546, 0.7534, 0.8408, 0.0435, 0.7368, 0.9058, 0.0404, 0.7368, 0.8418, 0.0876, 1.2188, 0.8892, 0.0892, 1.1416, 0.9063, 0, 1.2188, 0.8936, 0, 1.2188, 0.8936, 0.0892, 1.1416, 0.9063, 0, 1.1416, 0.9106, 0.0848, 1.293, 0.8608, 0.0876, 1.2188, 0.8892, 0, 1.293, 0.8647, 0, 1.293, 0.8647, 0.0876, 1.2188, 0.8892, 0, 1.2188, 0.8936, 0.0809, 1.3652, 0.8218, 0.0848, 1.293, 0.8608, 0, 1.3652, 0.8257, 0, 1.3652, 0.8257, 0.0848, 1.293, 0.8608, 0, 1.293, 0.8647, 0.076, 1.4336, 0.772, 0.0809, 1.3652, 0.8218, 0, 1.4336, 0.7759, 0, 1.4336, 0.7759, 0.0809, 1.3652, 0.8218, 0, 1.3652, 0.8257, 0.0702, 1.498, 0.7129, 0.076, 1.4336, 0.772, 0, 1.498, 0.7163, 0, 1.498, 0.7163, 0.076, 1.4336, 0.772, 0, 1.4336, 0.7759, 0.0635, 1.5557, 0.645, 0.0702, 1.498, 0.7129, 0, 1.5557, 0.6479, 0, 1.5557, 0.6479, 0.0702, 1.498, 0.7129, 0, 1.498, 0.7163, 0.056, 1.6084, 0.5684, 0.0635, 1.5557, 0.645, 0, 1.6084, 0.5713, 0, 1.6084, 0.5713, 0.0635, 1.5557, 0.645, 0, 1.5557, 0.6479, 0.0478, 1.6533, 0.4851, 0.056, 1.6084, 0.5684, 0, 1.6533, 0.4875, 0, 1.6533, 0.4875, 0.056, 1.6084, 0.5684, 0, 1.6084, 0.5713, 0.039, 1.6914, 0.3958, 0.0478, 1.6533, 0.4851, 0, 1.6914, 0.3977, 0, 1.6914, 0.3977, 0.0478, 1.6533, 0.4851, 0, 1.6533, 0.4875, 0.0297, 1.7207, 0.3013, 0.039, 1.6914, 0.3958, 0, 1.7207, 0.3027, 0, 1.7207, 0.3027, 0.039, 1.6914, 0.3958, 0, 1.6914, 0.3977, 0.02, 1.7422, 0.2029, 0.0297, 1.7207, 0.3013, 0, 1.7422, 0.2039, 0, 1.7422, 0.2039, 0.0297, 1.7207, 0.3013, 0, 1.7207, 0.3027, 0.0101, 1.7559, 0.1021, 0.02, 1.7422, 0.2029, 0, 1.7559, 0.1026, 0, 1.7559, 0.1026, 0.02, 1.7422, 0.2029, 0, 1.7422, 0.2039, 0, 0.7153, -0.9165, 0, 0.6279, -0.9165, 0.0898, 0.7153, -0.9121, 0.0898, 0.7153, -0.9121, 0, 0.6279, -0.9165, 0.0898, 0.6279, -0.9121, 0, 0.8022, -0.9165, 0, 0.7153, -0.9165, 0.0898, 0.8022, -0.9121, 0.0898, 0.8022, -0.9121, 0, 0.7153, -0.9165, 0.0898, 0.7153, -0.9121, 0, 0.8892, -0.9165, 0, 0.8022, -0.9165, 0.0898, 0.8892, -0.9121, 0.0898, 0.8892, -0.9121, 0, 0.8022, -0.9165, 0.0898, 0.8022, -0.9121, 0, 0.9766, -0.9165, 0, 0.8892, -0.9165, 0.0898, 0.9766, -0.9121, 0.0898, 0.9766, -0.9121, 0, 0.8892, -0.9165, 0.0898, 0.8892, -0.9121, 0, 1.0635, -0.9165, 0, 0.9766, -0.9165, 0.0898, 1.0635, -0.9121, 0.0898, 1.0635, -0.9121, 0, 0.9766, -0.9165, 0.0898, 0.9766, -0.9121, 0, 1.1416, -0.9106, 0, 1.0635, -0.9165, 0.0892, 1.1416, -0.9063, 0.0892, 1.1416, -0.9063, 0, 1.0635, -0.9165, 0.0898, 1.0635, -0.9121, 0, 1.2188, -0.8936, 0, 1.1416, -0.9106, 0.0876, 1.2188, -0.8892, 0.0876, 1.2188, -0.8892, 0, 1.1416, -0.9106, 0.0892, 1.1416, -0.9063, 0, 1.293, -0.8647, 0, 1.2188, -0.8936, 0.0848, 1.293, -0.8608, 0.0848, 1.293, -0.8608, 0, 1.2188, -0.8936, 0.0876, 1.2188, -0.8892, 0, 1.3652, -0.8257, 0, 1.293, -0.8647, 0.0809, 1.3652, -0.8218, 0.0809, 1.3652, -0.8218, 0, 1.293, -0.8647, 0.0848, 1.293, -0.8608, 0, 1.4336, -0.7759, 0, 1.3652, -0.8257, 0.076, 1.4336, -0.772, 0.076, 1.4336, -0.772, 0, 1.3652, -0.8257, 0.0809, 1.3652, -0.8218, 0, 1.498, -0.7163, 0, 1.4336, -0.7759, 0.0702, 1.498, -0.7129, 0.0702, 1.498, -0.7129, 0, 1.4336, -0.7759, 0.076, 1.4336, -0.772, 0, 1.5557, -0.6479, 0, 1.498, -0.7163, 0.0635, 1.5557, -0.645, 0.0635, 1.5557, -0.645, 0, 1.498, -0.7163, 0.0702, 1.498, -0.7129, 0, 1.6084, -0.5713, 0, 1.5557, -0.6479, 0.056, 1.6084, -0.5684, 0.056, 1.6084, -0.5684, 0, 1.5557, -0.6479, 0.0635, 1.5557, -0.645, 0, 1.6533, -0.4875, 0, 1.6084, -0.5713, 0.0478, 1.6533, -0.4851, 0.0478, 1.6533, -0.4851, 0, 1.6084, -0.5713, 0.056, 1.6084, -0.5684, 0, 1.6914, -0.3977, 0, 1.6533, -0.4875, 0.039, 1.6914, -0.3958, 0.039, 1.6914, -0.3958, 0, 1.6533, -0.4875, 0.0478, 1.6533, -0.4851, 0, 1.7207, -0.3027, 0, 1.6914, -0.3977, 0.0297, 1.7207, -0.3013, 0.0297, 1.7207, -0.3013, 0, 1.6914, -0.3977, 0.039, 1.6914, -0.3958, 0, 1.7422, -0.2039, 0, 1.7207, -0.3027, 0.02, 1.7422, -0.2029, 0.02, 1.7422, -0.2029, 0, 1.7207, -0.3027, 0.0297, 1.7207, -0.3013, 0, 1.7559, -0.1026, 0, 1.7422, -0.2039, 0.0101, 1.7559, -0.1021, 0.0101, 1.7559, -0.1021, 0, 1.7422, -0.2039, 0.02, 1.7422, -0.2029, 0.0898, 0.7153, -0.9121, 0.0898, 0.6279, -0.9121, 0.1787, 0.7153, -0.8989, 0.1787, 0.7153, -0.8989, 0.0898, 0.6279, -0.9121, 0.1787, 0.6279, -0.8989, 0.0898, 0.8022, -0.9121, 0.0898, 0.7153, -0.9121, 0.1787, 0.8022, -0.8989, 0.1787, 0.8022, -0.8989, 0.0898, 0.7153, -0.9121, 0.1787, 0.7153, -0.8989, 0.0898, 0.8892, -0.9121, 0.0898, 0.8022, -0.9121, 0.1787, 0.8892, -0.8989, 0.1787, 0.8892, -0.8989, 0.0898, 0.8022, -0.9121, 0.1787, 0.8022, -0.8989, 0.0898, 0.9766, -0.9121, 0.0898, 0.8892, -0.9121, 0.1787, 0.9766, -0.8989, 0.1787, 0.9766, -0.8989, 0.0898, 0.8892, -0.9121, 0.1787, 0.8892, -0.8989, 0.0898, 1.0635, -0.9121, 0.0898, 0.9766, -0.9121, 0.1787, 1.0635, -0.8989, 0.1787, 1.0635, -0.8989, 0.0898, 0.9766, -0.9121, 0.1787, 0.9766, -0.8989, 0.0892, 1.1416, -0.9063, 0.0898, 1.0635, -0.9121, 0.1776, 1.1416, -0.8931, 0.1776, 1.1416, -0.8931, 0.0898, 1.0635, -0.9121, 0.1787, 1.0635, -0.8989, 0.0876, 1.2188, -0.8892, 0.0892, 1.1416, -0.9063, 0.1743, 1.2188, -0.8765, 0.1743, 1.2188, -0.8765, 0.0892, 1.1416, -0.9063, 0.1776, 1.1416, -0.8931, 0.0848, 1.293, -0.8608, 0.0876, 1.2188, -0.8892, 0.1687, 1.293, -0.8481, 0.1687, 1.293, -0.8481, 0.0876, 1.2188, -0.8892, 0.1743, 1.2188, -0.8765, 0.0809, 1.3652, -0.8218, 0.0848, 1.293, -0.8608, 0.161, 1.3652, -0.8096, 0.161, 1.3652, -0.8096, 0.0848, 1.293, -0.8608, 0.1687, 1.293, -0.8481, 0.076, 1.4336, -0.772, 0.0809, 1.3652, -0.8218, 0.1514, 1.4336, -0.7612, 0.1514, 1.4336, -0.7612, 0.0809, 1.3652, -0.8218, 0.161, 1.3652, -0.8096, 0.0702, 1.498, -0.7129, 0.076, 1.4336, -0.772, 0.1398, 1.498, -0.7026, 0.1398, 1.498, -0.7026, 0.076, 1.4336, -0.772, 0.1514, 1.4336, -0.7612, 0.0635, 1.5557, -0.645, 0.0702, 1.498, -0.7129, 0.1263, 1.5557, -0.6353, 0.1263, 1.5557, -0.6353, 0.0702, 1.498, -0.7129, 0.1398, 1.498, -0.7026, 0.056, 1.6084, -0.5684, 0.0635, 1.5557, -0.645, 0.1115, 1.6084, -0.5601, 0.1115, 1.6084, -0.5601, 0.0635, 1.5557, -0.645, 0.1263, 1.5557, -0.6353, 0.0478, 1.6533, -0.4851, 0.056, 1.6084, -0.5684, 0.0951, 1.6533, -0.4783, 0.0951, 1.6533, -0.4783, 0.056, 1.6084, -0.5684, 0.1115, 1.6084, -0.5601, 0.039, 1.6914, -0.3958, 0.0478, 1.6533, -0.4851, 0.0776, 1.6914, -0.3899, 0.0776, 1.6914, -0.3899, 0.0478, 1.6533, -0.4851, 0.0951, 1.6533, -0.4783, 0.0297, 1.7207, -0.3013, 0.039, 1.6914, -0.3958, 0.0591, 1.7207, -0.2969, 0.0591, 1.7207, -0.2969, 0.039, 1.6914, -0.3958, 0.0776, 1.6914, -0.3899, 0.02, 1.7422, -0.2029, 0.0297, 1.7207, -0.3013, 0.0398, 1.7422, -0.2, 0.0398, 1.7422, -0.2, 0.0297, 1.7207, -0.3013, 0.0591, 1.7207, -0.2969, 0.0101, 1.7559, -0.1021, 0.02, 1.7422, -0.2029, 0.02, 1.7559, -0.1006, 0.02, 1.7559, -0.1006, 0.02, 1.7422, -0.2029, 0.0398, 1.7422, -0.2, 0.1787, 0.7153, -0.8989, 0.1787, 0.6279, -0.8989, 0.2659, 0.7153, -0.877, 0.2659, 0.7153, -0.877, 0.1787, 0.6279, -0.8989, 0.2659, 0.6279, -0.877, 0.1787, 0.8022, -0.8989, 0.1787, 0.7153, -0.8989, 0.2659, 0.8022, -0.877, 0.2659, 0.8022, -0.877, 0.1787, 0.7153, -0.8989, 0.2659, 0.7153, -0.877, 0.1787, 0.8892, -0.8989, 0.1787, 0.8022, -0.8989, 0.2659, 0.8892, -0.877, 0.2659, 0.8892, -0.877, 0.1787, 0.8022, -0.8989, 0.2659, 0.8022, -0.877, 0.1787, 0.9766, -0.8989, 0.1787, 0.8892, -0.8989, 0.2659, 0.9766, -0.877, 0.2659, 0.9766, -0.877, 0.1787, 0.8892, -0.8989, 0.2659, 0.8892, -0.877, 0.1787, 1.0635, -0.8989, 0.1787, 0.9766, -0.8989, 0.2659, 1.0635, -0.877, 0.2659, 1.0635, -0.877, 0.1787, 0.9766, -0.8989, 0.2659, 0.9766, -0.877, 0.1776, 1.1416, -0.8931, 0.1787, 1.0635, -0.8989, 0.2644, 1.1416, -0.8716, 0.2644, 1.1416, -0.8716, 0.1787, 1.0635, -0.8989, 0.2659, 1.0635, -0.877, 0.1743, 1.2188, -0.8765, 0.1776, 1.1416, -0.8931, 0.2593, 1.2188, -0.855, 0.2593, 1.2188, -0.855, 0.1776, 1.1416, -0.8931, 0.2644, 1.1416, -0.8716, 0.1687, 1.293, -0.8481, 0.1743, 1.2188, -0.8765, 0.251, 1.293, -0.8276, 0.251, 1.293, -0.8276, 0.1743, 1.2188, -0.8765, 0.2593, 1.2188, -0.855, 0.161, 1.3652, -0.8096, 0.1687, 1.293, -0.8481, 0.2396, 1.3652, -0.79, 0.2396, 1.3652, -0.79, 0.1687, 1.293, -0.8481, 0.251, 1.293, -0.8276, 0.1514, 1.4336, -0.7612, 0.161, 1.3652, -0.8096, 0.2252, 1.4336, -0.7427, 0.2252, 1.4336, -0.7427, 0.161, 1.3652, -0.8096, 0.2396, 1.3652, -0.79, 0.1398, 1.498, -0.7026, 0.1514, 1.4336, -0.7612, 0.208, 1.498, -0.6855, 0.208, 1.498, -0.6855, 0.1514, 1.4336, -0.7612, 0.2252, 1.4336, -0.7427, 0.1263, 1.5557, -0.6353, 0.1398, 1.498, -0.7026, 0.1881, 1.5557, -0.6201, 0.1881, 1.5557, -0.6201, 0.1398, 1.498, -0.7026, 0.208, 1.498, -0.6855, 0.1115, 1.6084, -0.5601, 0.1263, 1.5557, -0.6353, 0.1659, 1.6084, -0.5469, 0.1659, 1.6084, -0.5469, 0.1263, 1.5557, -0.6353, 0.1881, 1.5557, -0.6201, 0.0951, 1.6533, -0.4783, 0.1115, 1.6084, -0.5601, 0.1415, 1.6533, -0.4666, 0.1415, 1.6533, -0.4666, 0.1115, 1.6084, -0.5601, 0.1659, 1.6084, -0.5469, 0.0776, 1.6914, -0.3899, 0.0951, 1.6533, -0.4783, 0.1154, 1.6914, -0.3804, 0.1154, 1.6914, -0.3804, 0.0951, 1.6533, -0.4783, 0.1415, 1.6533, -0.4666, 0.0591, 1.7207, -0.2969, 0.0776, 1.6914, -0.3899, 0.0878, 1.7207, -0.2896, 0.0878, 1.7207, -0.2896, 0.0776, 1.6914, -0.3899, 0.1154, 1.6914, -0.3804, 0.0398, 1.7422, -0.2, 0.0591, 1.7207, -0.2969, 0.0592, 1.7422, -0.1952, 0.0592, 1.7422, -0.1952, 0.0591, 1.7207, -0.2969, 0.0878, 1.7207, -0.2896, 0.02, 1.7559, -0.1006, 0.0398, 1.7422, -0.2, 0.0298, 1.7559, -0.0982, 0.0298, 1.7559, -0.0982, 0.0398, 1.7422, -0.2, 0.0592, 1.7422, -0.1952, 0.2659, 0.7153, -0.877, 0.2659, 0.6279, -0.877, 0.3506, 0.7153, -0.8467, 0.3506, 0.7153, -0.8467, 0.2659, 0.6279, -0.877, 0.3506, 0.6279, -0.8467, 0.2659, 0.8022, -0.877, 0.2659, 0.7153, -0.877, 0.3506, 0.8022, -0.8467, 0.3506, 0.8022, -0.8467, 0.2659, 0.7153, -0.877, 0.3506, 0.7153, -0.8467, 0.2659, 0.8892, -0.877, 0.2659, 0.8022, -0.877, 0.3506, 0.8892, -0.8467, 0.3506, 0.8892, -0.8467, 0.2659, 0.8022, -0.877, 0.3506, 0.8022, -0.8467, 0.2659, 0.9766, -0.877, 0.2659, 0.8892, -0.877, 0.3506, 0.9766, -0.8467, 0.3506, 0.9766, -0.8467, 0.2659, 0.8892, -0.877, 0.3506, 0.8892, -0.8467, 0.2659, 1.0635, -0.877, 0.2659, 0.9766, -0.877, 0.3506, 1.0635, -0.8467, 0.3506, 1.0635, -0.8467, 0.2659, 0.9766, -0.877, 0.3506, 0.9766, -0.8467, 0.2644, 1.1416, -0.8716, 0.2659, 1.0635, -0.877, 0.3484, 1.1416, -0.8413, 0.3484, 1.1416, -0.8413, 0.2659, 1.0635, -0.877, 0.3506, 1.0635, -0.8467, 0.2593, 1.2188, -0.855, 0.2644, 1.1416, -0.8716, 0.3418, 1.2188, -0.8252, 0.3418, 1.2188, -0.8252, 0.2644, 1.1416, -0.8716, 0.3484, 1.1416, -0.8413, 0.251, 1.293, -0.8276, 0.2593, 1.2188, -0.855, 0.3311, 1.293, -0.7993, 0.3311, 1.293, -0.7993, 0.2593, 1.2188, -0.855, 0.3418, 1.2188, -0.8252, 0.2396, 1.3652, -0.79, 0.251, 1.293, -0.8276, 0.3159, 1.3652, -0.7627, 0.3159, 1.3652, -0.7627, 0.251, 1.293, -0.8276, 0.3311, 1.293, -0.7993, 0.2252, 1.4336, -0.7427, 0.2396, 1.3652, -0.79, 0.2969, 1.4336, -0.7168, 0.2969, 1.4336, -0.7168, 0.2396, 1.3652, -0.79, 0.3159, 1.3652, -0.7627, 0.208, 1.498, -0.6855, 0.2252, 1.4336, -0.7427, 0.2742, 1.498, -0.6621, 0.2742, 1.498, -0.6621, 0.2252, 1.4336, -0.7427, 0.2969, 1.4336, -0.7168, 0.1881, 1.5557, -0.6201, 0.208, 1.498, -0.6855, 0.2479, 1.5557, -0.5986, 0.2479, 1.5557, -0.5986, 0.208, 1.498, -0.6855, 0.2742, 1.498, -0.6621, 0.1659, 1.6084, -0.5469, 0.1881, 1.5557, -0.6201, 0.2186, 1.6084, -0.5278, 0.2186, 1.6084, -0.5278, 0.1881, 1.5557, -0.6201, 0.2479, 1.5557, -0.5986, 0.1415, 1.6533, -0.4666, 0.1659, 1.6084, -0.5469, 0.1865, 1.6533, -0.4504, 0.1865, 1.6533, -0.4504, 0.1659, 1.6084, -0.5469, 0.2186, 1.6084, -0.5278, 0.1154, 1.6914, -0.3804, 0.1415, 1.6533, -0.4666, 0.1521, 1.6914, -0.3674, 0.1521, 1.6914, -0.3674, 0.1415, 1.6533, -0.4666, 0.1865, 1.6533, -0.4504, 0.0878, 1.7207, -0.2896, 0.1154, 1.6914, -0.3804, 0.1158, 1.7207, -0.2795, 0.1158, 1.7207, -0.2795, 0.1154, 1.6914, -0.3804, 0.1521, 1.6914, -0.3674, 0.0592, 1.7422, -0.1952, 0.0878, 1.7207, -0.2896, 0.078, 1.7422, -0.1884, 0.078, 1.7422, -0.1884, 0.0878, 1.7207, -0.2896, 0.1158, 1.7207, -0.2795, 0.0298, 1.7559, -0.0982, 0.0592, 1.7422, -0.1952, 0.0392, 1.7559, -0.0948, 0.0392, 1.7559, -0.0948, 0.0592, 1.7422, -0.1952, 0.078, 1.7422, -0.1884, 0.3506, 0.7153, -0.8467, 0.3506, 0.6279, -0.8467, 0.4319, 0.7153, -0.8081, 0.4319, 0.7153, -0.8081, 0.3506, 0.6279, -0.8467, 0.4319, 0.6279, -0.8081, 0.3506, 0.8022, -0.8467, 0.3506, 0.7153, -0.8467, 0.4319, 0.8022, -0.8081, 0.4319, 0.8022, -0.8081, 0.3506, 0.7153, -0.8467, 0.4319, 0.7153, -0.8081, 0.3506, 0.8892, -0.8467, 0.3506, 0.8022, -0.8467, 0.4319, 0.8892, -0.8081, 0.4319, 0.8892, -0.8081, 0.3506, 0.8022, -0.8467, 0.4319, 0.8022, -0.8081, 0.3506, 0.9766, -0.8467, 0.3506, 0.8892, -0.8467, 0.4319, 0.9766, -0.8081, 0.4319, 0.9766, -0.8081, 0.3506, 0.8892, -0.8467, 0.4319, 0.8892, -0.8081, 0.3506, 1.0635, -0.8467, 0.3506, 0.9766, -0.8467, 0.4319, 1.0635, -0.8081, 0.4319, 1.0635, -0.8081, 0.3506, 0.9766, -0.8467, 0.4319, 0.9766, -0.8081, 0.3484, 1.1416, -0.8413, 0.3506, 1.0635, -0.8467, 0.4292, 1.1416, -0.8032, 0.4292, 1.1416, -0.8032, 0.3506, 1.0635, -0.8467, 0.4319, 1.0635, -0.8081, 0.3418, 1.2188, -0.8252, 0.3484, 1.1416, -0.8413, 0.4211, 1.2188, -0.7881, 0.4211, 1.2188, -0.7881, 0.3484, 1.1416, -0.8413, 0.4292, 1.1416, -0.8032, 0.3311, 1.293, -0.7993, 0.3418, 1.2188, -0.8252, 0.4077, 1.293, -0.7627, 0.4077, 1.293, -0.7627, 0.3418, 1.2188, -0.8252, 0.4211, 1.2188, -0.7881, 0.3159, 1.3652, -0.7627, 0.3311, 1.293, -0.7993, 0.3892, 1.3652, -0.728, 0.3892, 1.3652, -0.728, 0.3311, 1.293, -0.7993, 0.4077, 1.293, -0.7627, 0.2969, 1.4336, -0.7168, 0.3159, 1.3652, -0.7627, 0.3657, 1.4336, -0.6841, 0.3657, 1.4336, -0.6841, 0.3159, 1.3652, -0.7627, 0.3892, 1.3652, -0.728, 0.2742, 1.498, -0.6621, 0.2969, 1.4336, -0.7168, 0.3376, 1.498, -0.6318, 0.3376, 1.498, -0.6318, 0.2969, 1.4336, -0.7168, 0.3657, 1.4336, -0.6841, 0.2479, 1.5557, -0.5986, 0.2742, 1.498, -0.6621, 0.3054, 1.5557, -0.5713, 0.3054, 1.5557, -0.5713, 0.2742, 1.498, -0.6621, 0.3376, 1.498, -0.6318, 0.2186, 1.6084, -0.5278, 0.2479, 1.5557, -0.5986, 0.2693, 1.6084, -0.5039, 0.2693, 1.6084, -0.5039, 0.2479, 1.5557, -0.5986, 0.3054, 1.5557, -0.5713, 0.1865, 1.6533, -0.4504, 0.2186, 1.6084, -0.5278, 0.2299, 1.6533, -0.4299, 0.2299, 1.6533, -0.4299, 0.2186, 1.6084, -0.5278, 0.2693, 1.6084, -0.5039, 0.1521, 1.6914, -0.3674, 0.1865, 1.6533, -0.4504, 0.1874, 1.6914, -0.3506, 0.1874, 1.6914, -0.3506, 0.1865, 1.6533, -0.4504, 0.2299, 1.6533, -0.4299, 0.1158, 1.7207, -0.2795, 0.1521, 1.6914, -0.3674, 0.1427, 1.7207, -0.2668, 0.1427, 1.7207, -0.2668, 0.1521, 1.6914, -0.3674, 0.1874, 1.6914, -0.3506, 0.078, 1.7422, -0.1884, 0.1158, 1.7207, -0.2795, 0.0961, 1.7422, -0.1798, 0.0961, 1.7422, -0.1798, 0.1158, 1.7207, -0.2795, 0.1427, 1.7207, -0.2668, 0.0392, 1.7559, -0.0948, 0.078, 1.7422, -0.1884, 0.0484, 1.7559, -0.0905, 0.0484, 1.7559, -0.0905, 0.078, 1.7422, -0.1884, 0.0961, 1.7422, -0.1798, 0.4319, 0.7153, -0.8081, 0.4319, 0.6279, -0.8081, 0.5088, 0.7153, -0.7617, 0.5088, 0.7153, -0.7617, 0.4319, 0.6279, -0.8081, 0.5088, 0.6279, -0.7617, 0.4319, 0.8022, -0.8081, 0.4319, 0.7153, -0.8081, 0.5088, 0.8022, -0.7617, 0.5088, 0.8022, -0.7617, 0.4319, 0.7153, -0.8081, 0.5088, 0.7153, -0.7617, 0.4319, 0.8892, -0.8081, 0.4319, 0.8022, -0.8081, 0.5088, 0.8892, -0.7617, 0.5088, 0.8892, -0.7617, 0.4319, 0.8022, -0.8081, 0.5088, 0.8022, -0.7617, 0.4319, 0.9766, -0.8081, 0.4319, 0.8892, -0.8081, 0.5088, 0.9766, -0.7617, 0.5088, 0.9766, -0.7617, 0.4319, 0.8892, -0.8081, 0.5088, 0.8892, -0.7617, 0.4319, 1.0635, -0.8081, 0.4319, 0.9766, -0.8081, 0.5088, 1.0635, -0.7617, 0.5088, 1.0635, -0.7617, 0.4319, 0.9766, -0.8081, 0.5088, 0.9766, -0.7617, 0.4292, 1.1416, -0.8032, 0.4319, 1.0635, -0.8081, 0.5059, 1.1416, -0.7573, 0.5059, 1.1416, -0.7573, 0.4319, 1.0635, -0.8081, 0.5088, 1.0635, -0.7617, 0.4211, 1.2188, -0.7881, 0.4292, 1.1416, -0.8032, 0.4963, 1.2188, -0.7427, 0.4963, 1.2188, -0.7427, 0.4292, 1.1416, -0.8032, 0.5059, 1.1416, -0.7573, 0.4077, 1.293, -0.7627, 0.4211, 1.2188, -0.7881, 0.4805, 1.293, -0.7192, 0.4805, 1.293, -0.7192, 0.4211, 1.2188, -0.7881, 0.4963, 1.2188, -0.7427, 0.3892, 1.3652, -0.728, 0.4077, 1.293, -0.7627, 0.4587, 1.3652, -0.6865, 0.4587, 1.3652, -0.6865, 0.4077, 1.293, -0.7627, 0.4805, 1.293, -0.7192, 0.3657, 1.4336, -0.6841, 0.3892, 1.3652, -0.728, 0.4312, 1.4336, -0.645, 0.4312, 1.4336, -0.645, 0.3892, 1.3652, -0.728, 0.4587, 1.3652, -0.6865, 0.3376, 1.498, -0.6318, 0.3657, 1.4336, -0.6841, 0.3979, 1.498, -0.5957, 0.3979, 1.498, -0.5957, 0.3657, 1.4336, -0.6841, 0.4312, 1.4336, -0.645, 0.3054, 1.5557, -0.5713, 0.3376, 1.498, -0.6318, 0.3599, 1.5557, -0.5386, 0.3599, 1.5557, -0.5386, 0.3376, 1.498, -0.6318, 0.3979, 1.498, -0.5957, 0.2693, 1.6084, -0.5039, 0.3054, 1.5557, -0.5713, 0.3174, 1.6084, -0.4751, 0.3174, 1.6084, -0.4751, 0.3054, 1.5557, -0.5713, 0.3599, 1.5557, -0.5386, 0.2299, 1.6533, -0.4299, 0.2693, 1.6084, -0.5039, 0.2708, 1.6533, -0.4053, 0.2708, 1.6533, -0.4053, 0.2693, 1.6084, -0.5039, 0.3174, 1.6084, -0.4751, 0.1874, 1.6914, -0.3506, 0.2299, 1.6533, -0.4299, 0.2209, 1.6914, -0.3306, 0.2209, 1.6914, -0.3306, 0.2299, 1.6533, -0.4299, 0.2708, 1.6533, -0.4053, 0.1427, 1.7207, -0.2668, 0.1874, 1.6914, -0.3506, 0.1681, 1.7207, -0.2517, 0.1681, 1.7207, -0.2517, 0.1874, 1.6914, -0.3506, 0.2209, 1.6914, -0.3306, 0.0961, 1.7422, -0.1798, 0.1427, 1.7207, -0.2668, 0.1133, 1.7422, -0.1696, 0.1133, 1.7422, -0.1696, 0.1427, 1.7207, -0.2668, 0.1681, 1.7207, -0.2517, 0.0484, 1.7559, -0.0905, 0.0961, 1.7422, -0.1798, 0.057, 1.7559, -0.0853, 0.057, 1.7559, -0.0853, 0.0961, 1.7422, -0.1798, 0.1133, 1.7422, -0.1696, 0.5088, 0.7153, -0.7617, 0.5088, 0.6279, -0.7617, 0.5811, 0.7153, -0.7085, 0.5811, 0.7153, -0.7085, 0.5088, 0.6279, -0.7617, 0.5811, 0.6279, -0.7085, 0.5088, 0.8022, -0.7617, 0.5088, 0.7153, -0.7617, 0.5811, 0.8022, -0.7085, 0.5811, 0.8022, -0.7085, 0.5088, 0.7153, -0.7617, 0.5811, 0.7153, -0.7085, 0.5088, 0.8892, -0.7617, 0.5088, 0.8022, -0.7617, 0.5811, 0.8892, -0.7085, 0.5811, 0.8892, -0.7085, 0.5088, 0.8022, -0.7617, 0.5811, 0.8022, -0.7085, 0.5088, 0.9766, -0.7617, 0.5088, 0.8892, -0.7617, 0.5811, 0.9766, -0.7085, 0.5811, 0.9766, -0.7085, 0.5088, 0.8892, -0.7617, 0.5811, 0.8892, -0.7085, 0.5088, 1.0635, -0.7617, 0.5088, 0.9766, -0.7617, 0.5811, 1.0635, -0.7085, 0.5811, 1.0635, -0.7085, 0.5088, 0.9766, -0.7617, 0.5811, 0.9766, -0.7085, 0.5059, 1.1416, -0.7573, 0.5088, 1.0635, -0.7617, 0.5776, 1.1416, -0.7041, 0.5776, 1.1416, -0.7041, 0.5088, 1.0635, -0.7617, 0.5811, 1.0635, -0.7085, 0.4963, 1.2188, -0.7427, 0.5059, 1.1416, -0.7573, 0.5669, 1.2188, -0.6904, 0.5669, 1.2188, -0.6904, 0.5059, 1.1416, -0.7573, 0.5776, 1.1416, -0.7041, 0.4805, 1.293, -0.7192, 0.4963, 1.2188, -0.7427, 0.5488, 1.293, -0.6685, 0.5488, 1.293, -0.6685, 0.4963, 1.2188, -0.7427, 0.5669, 1.2188, -0.6904, 0.4587, 1.3652, -0.6865, 0.4805, 1.293, -0.7192, 0.5239, 1.3652, -0.6382, 0.5239, 1.3652, -0.6382, 0.4805, 1.293, -0.7192, 0.5488, 1.293, -0.6685, 0.4312, 1.4336, -0.645, 0.4587, 1.3652, -0.6865, 0.4922, 1.4336, -0.5996, 0.4922, 1.4336, -0.5996, 0.4587, 1.3652, -0.6865, 0.5239, 1.3652, -0.6382, 0.3979, 1.498, -0.5957, 0.4312, 1.4336, -0.645, 0.4546, 1.498, -0.5537, 0.4546, 1.498, -0.5537, 0.4312, 1.4336, -0.645, 0.4922, 1.4336, -0.5996, 0.3599, 1.5557, -0.5386, 0.3979, 1.498, -0.5957, 0.4111, 1.5557, -0.501, 0.4111, 1.5557, -0.501, 0.3979, 1.498, -0.5957, 0.4546, 1.498, -0.5537, 0.3174, 1.6084, -0.4751, 0.3599, 1.5557, -0.5386, 0.3625, 1.6084, -0.4417, 0.3625, 1.6084, -0.4417, 0.3599, 1.5557, -0.5386, 0.4111, 1.5557, -0.501, 0.2708, 1.6533, -0.4053, 0.3174, 1.6084, -0.4751, 0.3093, 1.6533, -0.377, 0.3093, 1.6533, -0.377, 0.3174, 1.6084, -0.4751, 0.3625, 1.6084, -0.4417, 0.2209, 1.6914, -0.3306, 0.2708, 1.6533, -0.4053, 0.2522, 1.6914, -0.3074, 0.2522, 1.6914, -0.3074, 0.2708, 1.6533, -0.4053, 0.3093, 1.6533, -0.377, 0.1681, 1.7207, -0.2517, 0.2209, 1.6914, -0.3306, 0.192, 1.7207, -0.234, 0.192, 1.7207, -0.234, 0.2209, 1.6914, -0.3306, 0.2522, 1.6914, -0.3074, 0.1133, 1.7422, -0.1696, 0.1681, 1.7207, -0.2517, 0.1294, 1.7422, -0.1576, 0.1294, 1.7422, -0.1576, 0.1681, 1.7207, -0.2517, 0.192, 1.7207, -0.234, 0.057, 1.7559, -0.0853, 0.1133, 1.7422, -0.1696, 0.0651, 1.7559, -0.0793, 0.0651, 1.7559, -0.0793, 0.1133, 1.7422, -0.1696, 0.1294, 1.7422, -0.1576, 0.5811, 0.7153, -0.7085, 0.5811, 0.6279, -0.7085, 0.6479, 0.7153, -0.6479, 0.6479, 0.7153, -0.6479, 0.5811, 0.6279, -0.7085, 0.6479, 0.6279, -0.6479, 0.5811, 0.8022, -0.7085, 0.5811, 0.7153, -0.7085, 0.6479, 0.8022, -0.6479, 0.6479, 0.8022, -0.6479, 0.5811, 0.7153, -0.7085, 0.6479, 0.7153, -0.6479, 0.5811, 0.8892, -0.7085, 0.5811, 0.8022, -0.7085, 0.6479, 0.8892, -0.6479, 0.6479, 0.8892, -0.6479, 0.5811, 0.8022, -0.7085, 0.6479, 0.8022, -0.6479, 0.5811, 0.9766, -0.7085, 0.5811, 0.8892, -0.7085, 0.6479, 0.9766, -0.6479, 0.6479, 0.9766, -0.6479, 0.5811, 0.8892, -0.7085, 0.6479, 0.8892, -0.6479, 0.5811, 1.0635, -0.7085, 0.5811, 0.9766, -0.7085, 0.6479, 1.0635, -0.6479, 0.6479, 1.0635, -0.6479, 0.5811, 0.9766, -0.7085, 0.6479, 0.9766, -0.6479, 0.5776, 1.1416, -0.7041, 0.5811, 1.0635, -0.7085, 0.644, 1.1416, -0.644, 0.644, 1.1416, -0.644, 0.5811, 1.0635, -0.7085, 0.6479, 1.0635, -0.6479, 0.5669, 1.2188, -0.6904, 0.5776, 1.1416, -0.7041, 0.6318, 1.2188, -0.6318, 0.6318, 1.2188, -0.6318, 0.5776, 1.1416, -0.7041, 0.644, 1.1416, -0.644, 0.5488, 1.293, -0.6685, 0.5669, 1.2188, -0.6904, 0.6113, 1.293, -0.6113, 0.6113, 1.293, -0.6113, 0.5669, 1.2188, -0.6904, 0.6318, 1.2188, -0.6318, 0.5239, 1.3652, -0.6382, 0.5488, 1.293, -0.6685, 0.5835, 1.3652, -0.5835, 0.5835, 1.3652, -0.5835, 0.5488, 1.293, -0.6685, 0.6113, 1.293, -0.6113, 0.4922, 1.4336, -0.5996, 0.5239, 1.3652, -0.6382, 0.5483, 1.4336, -0.5483, 0.5483, 1.4336, -0.5483, 0.5239, 1.3652, -0.6382, 0.5835, 1.3652, -0.5835, 0.4546, 1.498, -0.5537, 0.4922, 1.4336, -0.5996, 0.5063, 1.498, -0.5063, 0.5063, 1.498, -0.5063, 0.4922, 1.4336, -0.5996, 0.5483, 1.4336, -0.5483, 0.4111, 1.5557, -0.501, 0.4546, 1.498, -0.5537, 0.4583, 1.5557, -0.4583, 0.4583, 1.5557, -0.4583, 0.4546, 1.498, -0.5537, 0.5063, 1.498, -0.5063, 0.3625, 1.6084, -0.4417, 0.4111, 1.5557, -0.501, 0.4041, 1.6084, -0.4041, 0.4041, 1.6084, -0.4041, 0.4111, 1.5557, -0.501, 0.4583, 1.5557, -0.4583, 0.3093, 1.6533, -0.377, 0.3625, 1.6084, -0.4417, 0.3447, 1.6533, -0.3447, 0.3447, 1.6533, -0.3447, 0.3625, 1.6084, -0.4417, 0.4041, 1.6084, -0.4041, 0.2522, 1.6914, -0.3074, 0.3093, 1.6533, -0.377, 0.281, 1.6914, -0.281, 0.281, 1.6914, -0.281, 0.3093, 1.6533, -0.377, 0.3447, 1.6533, -0.3447, 0.192, 1.7207, -0.234, 0.2522, 1.6914, -0.3074, 0.214, 1.7207, -0.214, 0.214, 1.7207, -0.214, 0.2522, 1.6914, -0.3074, 0.281, 1.6914, -0.281, 0.1294, 1.7422, -0.1576, 0.192, 1.7207, -0.234, 0.1442, 1.7422, -0.1442, 0.1442, 1.7422, -0.1442, 0.192, 1.7207, -0.234, 0.214, 1.7207, -0.214, 0.0651, 1.7559, -0.0793, 0.1294, 1.7422, -0.1576, 0.0726, 1.7559, -0.0726, 0.0726, 1.7559, -0.0726, 0.1294, 1.7422, -0.1576, 0.1442, 1.7422, -0.1442, 0.0793, 1.7559, -0.0651, 0.0793, 1.7559, 0.0651, 0.0726, 1.7559, -0.0726, 0.0726, 1.7559, -0.0726, 0.0793, 1.7559, 0.0651, 0.0726, 1.7559, 0.0726, 0.6479, 0.7153, -0.6479, 0.6479, 0.6279, -0.6479, 0.7085, 0.7153, -0.5811, 0.7085, 0.7153, -0.5811, 0.6479, 0.6279, -0.6479, 0.7085, 0.6279, -0.5811, 0.6479, 0.8022, -0.6479, 0.6479, 0.7153, -0.6479, 0.7085, 0.8022, -0.5811, 0.7085, 0.8022, -0.5811, 0.6479, 0.7153, -0.6479, 0.7085, 0.7153, -0.5811, 0.6479, 0.8892, -0.6479, 0.6479, 0.8022, -0.6479, 0.7085, 0.8892, -0.5811, 0.7085, 0.8892, -0.5811, 0.6479, 0.8022, -0.6479, 0.7085, 0.8022, -0.5811, 0.6479, 0.9766, -0.6479, 0.6479, 0.8892, -0.6479, 0.7085, 0.9766, -0.5811, 0.7085, 0.9766, -0.5811, 0.6479, 0.8892, -0.6479, 0.7085, 0.8892, -0.5811, 0.6479, 1.0635, -0.6479, 0.6479, 0.9766, -0.6479, 0.7085, 1.0635, -0.5811, 0.7085, 1.0635, -0.5811, 0.6479, 0.9766, -0.6479, 0.7085, 0.9766, -0.5811, 0.644, 1.1416, -0.644, 0.6479, 1.0635, -0.6479, 0.7041, 1.1416, -0.5776, 0.7041, 1.1416, -0.5776, 0.6479, 1.0635, -0.6479, 0.7085, 1.0635, -0.5811, 0.6318, 1.2188, -0.6318, 0.644, 1.1416, -0.644, 0.6904, 1.2188, -0.5669, 0.6904, 1.2188, -0.5669, 0.644, 1.1416, -0.644, 0.7041, 1.1416, -0.5776, 0.6113, 1.293, -0.6113, 0.6318, 1.2188, -0.6318, 0.6685, 1.293, -0.5488, 0.6685, 1.293, -0.5488, 0.6318, 1.2188, -0.6318, 0.6904, 1.2188, -0.5669, 0.5835, 1.3652, -0.5835, 0.6113, 1.293, -0.6113, 0.6382, 1.3652, -0.5239, 0.6382, 1.3652, -0.5239, 0.6113, 1.293, -0.6113, 0.6685, 1.293, -0.5488, 0.5483, 1.4336, -0.5483, 0.5835, 1.3652, -0.5835, 0.5996, 1.4336, -0.4922, 0.5996, 1.4336, -0.4922, 0.5835, 1.3652, -0.5835, 0.6382, 1.3652, -0.5239, 0.5063, 1.498, -0.5063, 0.5483, 1.4336, -0.5483, 0.5537, 1.498, -0.4546, 0.5537, 1.498, -0.4546, 0.5483, 1.4336, -0.5483, 0.5996, 1.4336, -0.4922, 0.4583, 1.5557, -0.4583, 0.5063, 1.498, -0.5063, 0.501, 1.5557, -0.4111, 0.501, 1.5557, -0.4111, 0.5063, 1.498, -0.5063, 0.5537, 1.498, -0.4546, 0.4041, 1.6084, -0.4041, 0.4583, 1.5557, -0.4583, 0.4417, 1.6084, -0.3625, 0.4417, 1.6084, -0.3625, 0.4583, 1.5557, -0.4583, 0.501, 1.5557, -0.4111, 0.3447, 1.6533, -0.3447, 0.4041, 1.6084, -0.4041, 0.377, 1.6533, -0.3093, 0.377, 1.6533, -0.3093, 0.4041, 1.6084, -0.4041, 0.4417, 1.6084, -0.3625, 0.281, 1.6914, -0.281, 0.3447, 1.6533, -0.3447, 0.3074, 1.6914, -0.2522, 0.3074, 1.6914, -0.2522, 0.3447, 1.6533, -0.3447, 0.377, 1.6533, -0.3093, 0.214, 1.7207, -0.214, 0.281, 1.6914, -0.281, 0.234, 1.7207, -0.192, 0.234, 1.7207, -0.192, 0.281, 1.6914, -0.281, 0.3074, 1.6914, -0.2522, 0.1442, 1.7422, -0.1442, 0.214, 1.7207, -0.214, 0.1576, 1.7422, -0.1294, 0.1576, 1.7422, -0.1294, 0.214, 1.7207, -0.214, 0.234, 1.7207, -0.192, 0.0726, 1.7559, -0.0726, 0.1442, 1.7422, -0.1442, 0.0793, 1.7559, -0.0651, 0.0793, 1.7559, -0.0651, 0.1442, 1.7422, -0.1442, 0.1576, 1.7422, -0.1294, 0.0651, 1.7559, 0.0793, 0.0651, 1.7559, -0.0793, 0.0726, 1.7559, 0.0726, 0.0726, 1.7559, 0.0726, 0.0651, 1.7559, -0.0793, 0.0726, 1.7559, -0.0726, 0.7085, 0.7153, -0.5811, 0.7085, 0.6279, -0.5811, 0.7617, 0.7153, -0.5088, 0.7617, 0.7153, -0.5088, 0.7085, 0.6279, -0.5811, 0.7617, 0.6279, -0.5088, 0.7085, 0.8022, -0.5811, 0.7085, 0.7153, -0.5811, 0.7617, 0.8022, -0.5088, 0.7617, 0.8022, -0.5088, 0.7085, 0.7153, -0.5811, 0.7617, 0.7153, -0.5088, 0.7085, 0.8892, -0.5811, 0.7085, 0.8022, -0.5811, 0.7617, 0.8892, -0.5088, 0.7617, 0.8892, -0.5088, 0.7085, 0.8022, -0.5811, 0.7617, 0.8022, -0.5088, 0.7085, 0.9766, -0.5811, 0.7085, 0.8892, -0.5811, 0.7617, 0.9766, -0.5088, 0.7617, 0.9766, -0.5088, 0.7085, 0.8892, -0.5811, 0.7617, 0.8892, -0.5088, 0.7085, 1.0635, -0.5811, 0.7085, 0.9766, -0.5811, 0.7617, 1.0635, -0.5088, 0.7617, 1.0635, -0.5088, 0.7085, 0.9766, -0.5811, 0.7617, 0.9766, -0.5088, 0.7041, 1.1416, -0.5776, 0.7085, 1.0635, -0.5811, 0.7573, 1.1416, -0.5059, 0.7573, 1.1416, -0.5059, 0.7085, 1.0635, -0.5811, 0.7617, 1.0635, -0.5088, 0.6904, 1.2188, -0.5669, 0.7041, 1.1416, -0.5776, 0.7427, 1.2188, -0.4963, 0.7427, 1.2188, -0.4963, 0.7041, 1.1416, -0.5776, 0.7573, 1.1416, -0.5059, 0.6685, 1.293, -0.5488, 0.6904, 1.2188, -0.5669, 0.7192, 1.293, -0.4805, 0.7192, 1.293, -0.4805, 0.6904, 1.2188, -0.5669, 0.7427, 1.2188, -0.4963, 0.6382, 1.3652, -0.5239, 0.6685, 1.293, -0.5488, 0.6865, 1.3652, -0.4587, 0.6865, 1.3652, -0.4587, 0.6685, 1.293, -0.5488, 0.7192, 1.293, -0.4805, 0.5996, 1.4336, -0.4922, 0.6382, 1.3652, -0.5239, 0.645, 1.4336, -0.4312, 0.645, 1.4336, -0.4312, 0.6382, 1.3652, -0.5239, 0.6865, 1.3652, -0.4587, 0.5537, 1.498, -0.4546, 0.5996, 1.4336, -0.4922, 0.5957, 1.498, -0.3979, 0.5957, 1.498, -0.3979, 0.5996, 1.4336, -0.4922, 0.645, 1.4336, -0.4312, 0.501, 1.5557, -0.4111, 0.5537, 1.498, -0.4546, 0.5386, 1.5557, -0.3599, 0.5386, 1.5557, -0.3599, 0.5537, 1.498, -0.4546, 0.5957, 1.498, -0.3979, 0.4417, 1.6084, -0.3625, 0.501, 1.5557, -0.4111, 0.4751, 1.6084, -0.3174, 0.4751, 1.6084, -0.3174, 0.501, 1.5557, -0.4111, 0.5386, 1.5557, -0.3599, 0.377, 1.6533, -0.3093, 0.4417, 1.6084, -0.3625, 0.4053, 1.6533, -0.2708, 0.4053, 1.6533, -0.2708, 0.4417, 1.6084, -0.3625, 0.4751, 1.6084, -0.3174, 0.3074, 1.6914, -0.2522, 0.377, 1.6533, -0.3093, 0.3306, 1.6914, -0.2209, 0.3306, 1.6914, -0.2209, 0.377, 1.6533, -0.3093, 0.4053, 1.6533, -0.2708, 0.234, 1.7207, -0.192, 0.3074, 1.6914, -0.2522, 0.2517, 1.7207, -0.1681, 0.2517, 1.7207, -0.1681, 0.3074, 1.6914, -0.2522, 0.3306, 1.6914, -0.2209, 0.1576, 1.7422, -0.1294, 0.234, 1.7207, -0.192, 0.1696, 1.7422, -0.1133, 0.1696, 1.7422, -0.1133, 0.234, 1.7207, -0.192, 0.2517, 1.7207, -0.1681, 0.0853, 1.7559, -0.0562, 0.1696, 1.7422, -0.1133, 0.1798, 1.7422, -0.0961, 0.057, 1.7559, 0.0853, 0.057, 1.7559, -0.0853, 0.0651, 1.7559, 0.0793, 0.0651, 1.7559, 0.0793, 0.057, 1.7559, -0.0853, 0.0651, 1.7559, -0.0793, 0.7617, 0.7153, -0.5088, 0.7617, 0.6279, -0.5088, 0.8081, 0.7153, -0.4319, 0.8081, 0.7153, -0.4319, 0.7617, 0.6279, -0.5088, 0.8081, 0.6279, -0.4319, 0.7617, 0.8022, -0.5088, 0.7617, 0.7153, -0.5088, 0.8081, 0.8022, -0.4319, 0.8081, 0.8022, -0.4319, 0.7617, 0.7153, -0.5088, 0.8081, 0.7153, -0.4319, 0.7617, 0.8892, -0.5088, 0.7617, 0.8022, -0.5088, 0.8081, 0.8892, -0.4319, 0.8081, 0.8892, -0.4319, 0.7617, 0.8022, -0.5088, 0.8081, 0.8022, -0.4319, 0.7617, 0.9766, -0.5088, 0.7617, 0.8892, -0.5088, 0.8081, 0.9766, -0.4319, 0.8081, 0.9766, -0.4319, 0.7617, 0.8892, -0.5088, 0.8081, 0.8892, -0.4319, 0.7617, 1.0635, -0.5088, 0.7617, 0.9766, -0.5088, 0.8081, 1.0635, -0.4319, 0.8081, 1.0635, -0.4319, 0.7617, 0.9766, -0.5088, 0.8081, 0.9766, -0.4319, 0.7573, 1.1416, -0.5059, 0.7617, 1.0635, -0.5088, 0.8032, 1.1416, -0.4292, 0.8032, 1.1416, -0.4292, 0.7617, 1.0635, -0.5088, 0.8081, 1.0635, -0.4319, 0.7427, 1.2188, -0.4963, 0.7573, 1.1416, -0.5059, 0.7881, 1.2188, -0.4211, 0.7881, 1.2188, -0.4211, 0.7573, 1.1416, -0.5059, 0.8032, 1.1416, -0.4292, 0.7192, 1.293, -0.4805, 0.7427, 1.2188, -0.4963, 0.7627, 1.293, -0.4077, 0.7627, 1.293, -0.4077, 0.7427, 1.2188, -0.4963, 0.7881, 1.2188, -0.4211, 0.6865, 1.3652, -0.4587, 0.7192, 1.293, -0.4805, 0.728, 1.3652, -0.3892, 0.728, 1.3652, -0.3892, 0.7192, 1.293, -0.4805, 0.7627, 1.293, -0.4077, 0.645, 1.4336, -0.4312, 0.6865, 1.3652, -0.4587, 0.6841, 1.4336, -0.3657, 0.6841, 1.4336, -0.3657, 0.6865, 1.3652, -0.4587, 0.728, 1.3652, -0.3892, 0.5957, 1.498, -0.3979, 0.645, 1.4336, -0.4312, 0.6318, 1.498, -0.3376, 0.6318, 1.498, -0.3376, 0.645, 1.4336, -0.4312, 0.6841, 1.4336, -0.3657, 0.5386, 1.5557, -0.3599, 0.5957, 1.498, -0.3979, 0.5713, 1.5557, -0.3054, 0.5713, 1.5557, -0.3054, 0.5957, 1.498, -0.3979, 0.6318, 1.498, -0.3376, 0.4751, 1.6084, -0.3174, 0.5386, 1.5557, -0.3599, 0.5039, 1.6084, -0.2693, 0.5039, 1.6084, -0.2693, 0.5386, 1.5557, -0.3599, 0.5713, 1.5557, -0.3054, 0.4053, 1.6533, -0.2708, 0.4751, 1.6084, -0.3174, 0.4299, 1.6533, -0.2299, 0.4299, 1.6533, -0.2299, 0.4751, 1.6084, -0.3174, 0.5039, 1.6084, -0.2693, 0.3306, 1.6914, -0.2209, 0.4053, 1.6533, -0.2708, 0.3506, 1.6914, -0.1874, 0.3506, 1.6914, -0.1874, 0.4053, 1.6533, -0.2708, 0.4299, 1.6533, -0.2299, 0.2517, 1.7207, -0.1681, 0.3306, 1.6914, -0.2209, 0.2668, 1.7207, -0.1427, 0.2668, 1.7207, -0.1427, 0.3306, 1.6914, -0.2209, 0.3506, 1.6914, -0.1874, 0.1696, 1.7422, -0.1133, 0.2517, 1.7207, -0.1681, 0.1798, 1.7422, -0.0961, 0.1798, 1.7422, -0.0961, 0.2517, 1.7207, -0.1681, 0.2668, 1.7207, -0.1427, 0.0853, 1.7559, -0.0562, 0.1884, 1.7422, -0.078, 0.1952, 1.7422, -0.0592, 0.0484, 1.7559, 0.0905, 0.0484, 1.7559, -0.0905, 0.057, 1.7559, 0.0853, 0.057, 1.7559, 0.0853, 0.0484, 1.7559, -0.0905, 0.057, 1.7559, -0.0853, 0.8081, 0.7153, -0.4319, 0.8081, 0.6279, -0.4319, 0.8467, 0.7153, -0.3506, 0.8467, 0.7153, -0.3506, 0.8081, 0.6279, -0.4319, 0.8467, 0.6279, -0.3506, 0.8081, 0.8022, -0.4319, 0.8081, 0.7153, -0.4319, 0.8467, 0.8022, -0.3506, 0.8467, 0.8022, -0.3506, 0.8081, 0.7153, -0.4319, 0.8467, 0.7153, -0.3506, 0.8081, 0.8892, -0.4319, 0.8081, 0.8022, -0.4319, 0.8467, 0.8892, -0.3506, 0.8467, 0.8892, -0.3506, 0.8081, 0.8022, -0.4319, 0.8467, 0.8022, -0.3506, 0.8081, 0.9766, -0.4319, 0.8081, 0.8892, -0.4319, 0.8467, 0.9766, -0.3506, 0.8467, 0.9766, -0.3506, 0.8081, 0.8892, -0.4319, 0.8467, 0.8892, -0.3506, 0.8081, 1.0635, -0.4319, 0.8081, 0.9766, -0.4319, 0.8467, 1.0635, -0.3506, 0.8467, 1.0635, -0.3506, 0.8081, 0.9766, -0.4319, 0.8467, 0.9766, -0.3506, 0.8032, 1.1416, -0.4292, 0.8081, 1.0635, -0.4319, 0.8413, 1.1416, -0.3484, 0.8413, 1.1416, -0.3484, 0.8081, 1.0635, -0.4319, 0.8467, 1.0635, -0.3506, 0.7881, 1.2188, -0.4211, 0.8032, 1.1416, -0.4292, 0.8252, 1.2188, -0.3418, 0.8252, 1.2188, -0.3418, 0.8032, 1.1416, -0.4292, 0.8413, 1.1416, -0.3484, 0.7627, 1.293, -0.4077, 0.7881, 1.2188, -0.4211, 0.7993, 1.293, -0.3311, 0.7993, 1.293, -0.3311, 0.7881, 1.2188, -0.4211, 0.8252, 1.2188, -0.3418, 0.728, 1.3652, -0.3892, 0.7627, 1.293, -0.4077, 0.7627, 1.3652, -0.3159, 0.7627, 1.3652, -0.3159, 0.7627, 1.293, -0.4077, 0.7993, 1.293, -0.3311, 0.6841, 1.4336, -0.3657, 0.728, 1.3652, -0.3892, 0.7168, 1.4336, -0.2969, 0.7168, 1.4336, -0.2969, 0.728, 1.3652, -0.3892, 0.7627, 1.3652, -0.3159, 0.6318, 1.498, -0.3376, 0.6841, 1.4336, -0.3657, 0.6621, 1.498, -0.2742, 0.6621, 1.498, -0.2742, 0.6841, 1.4336, -0.3657, 0.7168, 1.4336, -0.2969, 0.5713, 1.5557, -0.3054, 0.6318, 1.498, -0.3376, 0.5986, 1.5557, -0.2479, 0.5986, 1.5557, -0.2479, 0.6318, 1.498, -0.3376, 0.6621, 1.498, -0.2742, 0.5039, 1.6084, -0.2693, 0.5713, 1.5557, -0.3054, 0.5278, 1.6084, -0.2186, 0.5278, 1.6084, -0.2186, 0.5713, 1.5557, -0.3054, 0.5986, 1.5557, -0.2479, 0.4299, 1.6533, -0.2299, 0.5039, 1.6084, -0.2693, 0.4504, 1.6533, -0.1865, 0.4504, 1.6533, -0.1865, 0.5039, 1.6084, -0.2693, 0.5278, 1.6084, -0.2186, 0.3506, 1.6914, -0.1874, 0.4299, 1.6533, -0.2299, 0.3674, 1.6914, -0.1521, 0.3674, 1.6914, -0.1521, 0.4299, 1.6533, -0.2299, 0.4504, 1.6533, -0.1865, 0.2668, 1.7207, -0.1427, 0.3506, 1.6914, -0.1874, 0.2795, 1.7207, -0.1158, 0.2795, 1.7207, -0.1158, 0.3506, 1.6914, -0.1874, 0.3674, 1.6914, -0.1521, 0.1798, 1.7422, -0.0961, 0.2668, 1.7207, -0.1427, 0.1884, 1.7422, -0.078, 0.1884, 1.7422, -0.078, 0.2668, 1.7207, -0.1427, 0.2795, 1.7207, -0.1158, 0.1367, 1.8203, -0.045, 0.1016, 1.7607, -0.0481, 0.2258, 1.8096, -0.0439, 0.2258, 1.8096, -0.0439, 0.1016, 1.7607, -0.0481, 0.2006, 1.749, -0.0479, 0.0484, 1.7559, -0.0905, 0.0484, 1.7559, 0.0905, 0.0392, 1.7559, -0.0948, 0.0392, 1.7559, -0.0948, 0.0484, 1.7559, 0.0905, 0.0392, 1.7559, 0.0948, 0.8467, 0.7153, -0.3506, 0.8467, 0.6279, -0.3506, 0.877, 0.7153, -0.2659, 0.877, 0.7153, -0.2659, 0.8467, 0.6279, -0.3506, 0.877, 0.6279, -0.2659, 0.8467, 0.8022, -0.3506, 0.8467, 0.7153, -0.3506, 0.877, 0.8022, -0.2659, 0.877, 0.8022, -0.2659, 0.8467, 0.7153, -0.3506, 0.877, 0.7153, -0.2659, 0.8467, 0.8892, -0.3506, 0.8467, 0.8022, -0.3506, 0.877, 0.8892, -0.2659, 0.877, 0.8892, -0.2659, 0.8467, 0.8022, -0.3506, 0.877, 0.8022, -0.2659, 0.8467, 0.9766, -0.3506, 0.8467, 0.8892, -0.3506, 0.877, 0.9766, -0.2659, 0.877, 0.9766, -0.2659, 0.8467, 0.8892, -0.3506, 0.877, 0.8892, -0.2659, 0.8467, 1.0635, -0.3506, 0.8467, 0.9766, -0.3506, 0.877, 1.0635, -0.2659, 0.877, 1.0635, -0.2659, 0.8467, 0.9766, -0.3506, 0.877, 0.9766, -0.2659, 0.8413, 1.1416, -0.3484, 0.8467, 1.0635, -0.3506, 0.8716, 1.1416, -0.2644, 0.8716, 1.1416, -0.2644, 0.8467, 1.0635, -0.3506, 0.877, 1.0635, -0.2659, 0.8252, 1.2188, -0.3418, 0.8413, 1.1416, -0.3484, 0.855, 1.2188, -0.2593, 0.855, 1.2188, -0.2593, 0.8413, 1.1416, -0.3484, 0.8716, 1.1416, -0.2644, 0.7993, 1.293, -0.3311, 0.8252, 1.2188, -0.3418, 0.8276, 1.293, -0.251, 0.8276, 1.293, -0.251, 0.8252, 1.2188, -0.3418, 0.855, 1.2188, -0.2593, 0.7627, 1.3652, -0.3159, 0.7993, 1.293, -0.3311, 0.79, 1.3652, -0.2396, 0.79, 1.3652, -0.2396, 0.7993, 1.293, -0.3311, 0.8276, 1.293, -0.251, 0.7168, 1.4336, -0.2969, 0.7627, 1.3652, -0.3159, 0.7427, 1.4336, -0.2252, 0.7427, 1.4336, -0.2252, 0.7627, 1.3652, -0.3159, 0.79, 1.3652, -0.2396, 0.6621, 1.498, -0.2742, 0.7168, 1.4336, -0.2969, 0.6855, 1.498, -0.208, 0.6855, 1.498, -0.208, 0.7168, 1.4336, -0.2969, 0.7427, 1.4336, -0.2252, 0.5986, 1.5557, -0.2479, 0.6621, 1.498, -0.2742, 0.6201, 1.5557, -0.1881, 0.6201, 1.5557, -0.1881, 0.6621, 1.498, -0.2742, 0.6855, 1.498, -0.208, 0.5278, 1.6084, -0.2186, 0.5986, 1.5557, -0.2479, 0.5469, 1.6084, -0.1659, 0.5469, 1.6084, -0.1659, 0.5986, 1.5557, -0.2479, 0.6201, 1.5557, -0.1881, 0.4504, 1.6533, -0.1865, 0.5278, 1.6084, -0.2186, 0.4666, 1.6533, -0.1415, 0.4666, 1.6533, -0.1415, 0.5278, 1.6084, -0.2186, 0.5469, 1.6084, -0.1659, 0.3674, 1.6914, -0.1521, 0.4504, 1.6533, -0.1865, 0.3804, 1.6914, -0.1154, 0.3804, 1.6914, -0.1154, 0.4504, 1.6533, -0.1865, 0.4666, 1.6533, -0.1415, 0.2795, 1.7207, -0.1158, 0.3674, 1.6914, -0.1521, 0.2896, 1.7207, -0.0878, 0.2896, 1.7207, -0.0878, 0.3674, 1.6914, -0.1521, 0.3804, 1.6914, -0.1154, 0.1884, 1.7422, -0.078, 0.2795, 1.7207, -0.1158, 0.1952, 1.7422, -0.0592, 0.1952, 1.7422, -0.0592, 0.2795, 1.7207, -0.1158, 0.2896, 1.7207, -0.0878, 0.0853, 1.7559, -0.0562, 0.1952, 1.7422, -0.0592, 0.1974, 1.7422, -0.0551, 0.0298, 1.7559, 0.0982, 0.0298, 1.7559, -0.0982, 0.0392, 1.7559, 0.0948, 0.0392, 1.7559, 0.0948, 0.0298, 1.7559, -0.0982, 0.0392, 1.7559, -0.0948, 0.877, 0.7153, -0.2659, 0.877, 0.6279, -0.2659, 0.8989, 0.7153, -0.1787, 0.8989, 0.7153, -0.1787, 0.877, 0.6279, -0.2659, 0.8989, 0.6279, -0.1787, 0.877, 0.8022, -0.2659, 0.877, 0.7153, -0.2659, 0.8989, 0.8022, -0.1787, 0.8989, 0.8022, -0.1787, 0.877, 0.7153, -0.2659, 0.8989, 0.7153, -0.1787, 0.877, 0.8892, -0.2659, 0.877, 0.8022, -0.2659, 0.8989, 0.8892, -0.1787, 0.8989, 0.8892, -0.1787, 0.877, 0.8022, -0.2659, 0.8989, 0.8022, -0.1787, 0.877, 0.9766, -0.2659, 0.877, 0.8892, -0.2659, 0.8989, 0.9766, -0.1787, 0.8989, 0.9766, -0.1787, 0.877, 0.8892, -0.2659, 0.8989, 0.8892, -0.1787, 0.877, 1.0635, -0.2659, 0.877, 0.9766, -0.2659, 0.8989, 1.0635, -0.1787, 0.8989, 1.0635, -0.1787, 0.877, 0.9766, -0.2659, 0.8989, 0.9766, -0.1787, 0.8716, 1.1416, -0.2644, 0.877, 1.0635, -0.2659, 0.8931, 1.1416, -0.1776, 0.8931, 1.1416, -0.1776, 0.877, 1.0635, -0.2659, 0.8989, 1.0635, -0.1787, 0.855, 1.2188, -0.2593, 0.8716, 1.1416, -0.2644, 0.8765, 1.2188, -0.1743, 0.8765, 1.2188, -0.1743, 0.8716, 1.1416, -0.2644, 0.8931, 1.1416, -0.1776, 0.8276, 1.293, -0.251, 0.855, 1.2188, -0.2593, 0.8481, 1.293, -0.1687, 0.8481, 1.293, -0.1687, 0.855, 1.2188, -0.2593, 0.8765, 1.2188, -0.1743, 0.79, 1.3652, -0.2396, 0.8276, 1.293, -0.251, 0.8096, 1.3652, -0.161, 0.8096, 1.3652, -0.161, 0.8276, 1.293, -0.251, 0.8481, 1.293, -0.1687, 0.7427, 1.4336, -0.2252, 0.79, 1.3652, -0.2396, 0.7612, 1.4336, -0.1514, 0.7612, 1.4336, -0.1514, 0.79, 1.3652, -0.2396, 0.8096, 1.3652, -0.161, 0.6855, 1.498, -0.208, 0.7427, 1.4336, -0.2252, 0.7026, 1.498, -0.1398, 0.7026, 1.498, -0.1398, 0.7427, 1.4336, -0.2252, 0.7612, 1.4336, -0.1514, 0.6201, 1.5557, -0.1881, 0.6855, 1.498, -0.208, 0.6353, 1.5557, -0.1263, 0.6353, 1.5557, -0.1263, 0.6855, 1.498, -0.208, 0.7026, 1.498, -0.1398, 0.5469, 1.6084, -0.1659, 0.6201, 1.5557, -0.1881, 0.5601, 1.6084, -0.1115, 0.5601, 1.6084, -0.1115, 0.6201, 1.5557, -0.1881, 0.6353, 1.5557, -0.1263, 0.4666, 1.6533, -0.1415, 0.5469, 1.6084, -0.1659, 0.4783, 1.6533, -0.0951, 0.4783, 1.6533, -0.0951, 0.5469, 1.6084, -0.1659, 0.5601, 1.6084, -0.1115, 0.3804, 1.6914, -0.1154, 0.4666, 1.6533, -0.1415, 0.3899, 1.6914, -0.0776, 0.3899, 1.6914, -0.0776, 0.4666, 1.6533, -0.1415, 0.4783, 1.6533, -0.0951, 0.2896, 1.7207, -0.0878, 0.3804, 1.6914, -0.1154, 0.2969, 1.7207, -0.0591, 0.2969, 1.7207, -0.0591, 0.3804, 1.6914, -0.1154, 0.3899, 1.6914, -0.0776, 0.1974, 1.7422, -0.0551, 0.2969, 1.7207, -0.0591, 0.2983, 1.7207, -0.0493, 0.0853, 1.7559, -0.0562, 0.1798, 1.7422, -0.0961, 0.1884, 1.7422, -0.078, 0.02, 1.7559, 0.1006, 0.02, 1.7559, -0.1006, 0.0298, 1.7559, 0.0982, 0.0298, 1.7559, 0.0982, 0.02, 1.7559, -0.1006, 0.0298, 1.7559, -0.0982, 0.8989, 0.7153, -0.1787, 0.8989, 0.6279, -0.1787, 0.9121, 0.7153, -0.0898, 0.9121, 0.7153, -0.0898, 0.8989, 0.6279, -0.1787, 0.9121, 0.6279, -0.0898, 0.8989, 0.8022, -0.1787, 0.8989, 0.7153, -0.1787, 0.9121, 0.8022, -0.0898, 0.9121, 0.8022, -0.0898, 0.8989, 0.7153, -0.1787, 0.9121, 0.7153, -0.0898, 0.8989, 0.8892, -0.1787, 0.8989, 0.8022, -0.1787, 0.9121, 0.8892, -0.0898, 0.9121, 0.8892, -0.0898, 0.8989, 0.8022, -0.1787, 0.9121, 0.8022, -0.0898, 0.8989, 0.9766, -0.1787, 0.8989, 0.8892, -0.1787, 0.9121, 0.9766, -0.0898, 0.9121, 0.9766, -0.0898, 0.8989, 0.8892, -0.1787, 0.9121, 0.8892, -0.0898, 0.8989, 1.0635, -0.1787, 0.8989, 0.9766, -0.1787, 0.9121, 1.0635, -0.0898, 0.9121, 1.0635, -0.0898, 0.8989, 0.9766, -0.1787, 0.9121, 0.9766, -0.0898, 0.8931, 1.1416, -0.1776, 0.8989, 1.0635, -0.1787, 0.9063, 1.1416, -0.0892, 0.9063, 1.1416, -0.0892, 0.8989, 1.0635, -0.1787, 0.9121, 1.0635, -0.0898, 0.3899, 1.6914, -0.0776, 0.4783, 1.6533, -0.0951, 0.3943, 1.6914, -0.0491, 0.3943, 1.6914, -0.0491, 0.4783, 1.6533, -0.0951, 0.4907, 1.6494, -0.0549, 0.5601, 1.6084, -0.1115, 0.6353, 1.5557, -0.1263, 0.5684, 1.6084, -0.056, 0.5684, 1.6084, -0.056, 0.6353, 1.5557, -0.1263, 0.645, 1.5557, -0.0635, 0.301, 1.7275, -0.0423, 0.396, 1.6982, -0.0421, 0.3176, 1.7891, -0.0398, 0.3176, 1.7891, -0.0398, 0.396, 1.6982, -0.0421, 0.4048, 1.7617, -0.0397, 0.4048, 1.7617, -0.0397, 0.396, 1.6982, -0.0421, 0.48, 1.7295, -0.0433, 0.48, 1.7295, -0.0433, 0.396, 1.6982, -0.0421, 0.4788, 1.6631, -0.047, 0.2258, 1.8096, -0.0439, 0.2006, 1.749, -0.0479, 0.3176, 1.7891, -0.0398, 0.3176, 1.7891, -0.0398, 0.2006, 1.749, -0.0479, 0.301, 1.7275, -0.0423, 0.0101, 1.7559, 0.1021, 0.0101, 1.7559, -0.1021, 0.02, 1.7559, 0.1006, 0.02, 1.7559, 0.1006, 0.0101, 1.7559, -0.1021, 0.02, 1.7559, -0.1006, 0.9121, 0.7153, -0.0898, 0.9121, 0.6279, -0.0898, 0.9165, 0.7153, 0, 0.9165, 0.7153, 0, 0.9121, 0.6279, -0.0898, 0.9165, 0.6279, 0, 0.9121, 0.8022, -0.0898, 0.9121, 0.7153, -0.0898, 0.9165, 0.8022, 0, 0.9165, 0.8022, 0, 0.9121, 0.7153, -0.0898, 0.9165, 0.7153, 0, 0.9121, 0.8892, -0.0898, 0.9121, 0.8022, -0.0898, 0.9165, 0.8892, 0, 0.9165, 0.8892, 0, 0.9121, 0.8022, -0.0898, 0.9165, 0.8022, 0, 0.9121, 0.9766, -0.0898, 0.9121, 0.8892, -0.0898, 0.9165, 0.9766, 0, 0.9165, 0.9766, 0, 0.9121, 0.8892, -0.0898, 0.9165, 0.8892, 0, 0.9121, 1.0635, -0.0898, 0.9121, 0.9766, -0.0898, 0.9165, 1.0635, 0, 0.9165, 1.0635, 0, 0.9121, 0.9766, -0.0898, 0.9165, 0.9766, 0, 0.9063, 1.1416, -0.0892, 0.9121, 1.0635, -0.0898, 0.9106, 1.1416, 0, 0.9106, 1.1416, 0, 0.9121, 1.0635, -0.0898, 0.9165, 1.0635, 0, 0.5684, 1.6084, -0.056, 0.645, 1.5557, -0.0635, 0.5713, 1.6084, 0, 0.5713, 1.6084, 0, 0.645, 1.5557, -0.0635, 0.6479, 1.5557, 0, 0.4934, 1.6504, 0, 0.5713, 1.6084, 0, 0.4907, 1.6494, 0.0544, 0.4907, 1.6494, 0.0544, 0.5713, 1.6084, 0, 0.5684, 1.6084, 0.056, 0, 1.7559, 0.1026, 0, 1.7559, -0.1026, 0.0101, 1.7559, 0.1021, 0.0101, 1.7559, 0.1021, 0, 1.7559, -0.1026, 0.0101, 1.7559, -0.1021, 0.3591, 1.1221, 0.5127, 0.3638, 1.0576, 0.5195, 0.2988, 1.126, 0.5488, 0.2988, 1.126, 0.5488, 0.3638, 1.0576, 0.5195, 0.2866, 1.0576, 0.5659, 0.4441, 1.0674, 0.4553, 0.4646, 1.0273, 0.4404, 0.4182, 1.0957, 0.4761, 0.4182, 1.0957, 0.4761, 0.4646, 1.0273, 0.4404, 0.436, 1.0576, 0.4661, 0.2903, 1.0352, 0.8408, 0.3276, 1.0869, 0.8242, 0.1635, 1.0303, 0.6289, 0.1635, 1.0303, 0.6289, 0.3276, 1.0869, 0.8242, 0.2007, 1.082, 0.6123, 0.2053, 1.0576, 0.604, 0.2053, 0.9712, 0.604, 0.1769, 1.041, 0.6147, 0.1769, 1.041, 0.6147, 0.2053, 0.9712, 0.604, 0.1523, 0.9692, 0.6221, 0.3765, 1.124, 0.7979, 0.4321, 1.1416, 0.7651, 0.2496, 1.1191, 0.5864, 0.2496, 1.1191, 0.5864, 0.4321, 1.1416, 0.7651, 0.3052, 1.1367, 0.5532, 0.3638, 0.7969, 0.5195, 0.3484, 0.729, 0.5293, 0.2866, 0.7969, 0.5659, 0.2866, 0.7969, 0.5659, 0.3484, 0.729, 0.5293, 0.2866, 0.7324, 0.5659, 0.584, 1.0723, 0.6685, 0.6104, 1.0166, 0.646, 0.4573, 1.0674, 0.457, 0.4573, 1.0674, 0.457, 0.6104, 1.0166, 0.646, 0.4836, 1.0117, 0.4346, 0.6035, 0.8237, 0.6519, 0.5732, 0.7725, 0.6792, 0.4766, 0.8188, 0.4404, 0.4766, 0.8188, 0.4404, 0.5732, 0.7725, 0.6792, 0.4465, 0.7676, 0.4675, 0.2053, 0.7969, 0.604, 0.2229, 0.7593, 0.5967, 0.1677, 0.8252, 0.6177, 0.1677, 0.8252, 0.6177, 0.2229, 0.7593, 0.5967, 0.1892, 0.7886, 0.6094, 0.3628, 0.7461, 0.812, 0.3152, 0.7871, 0.8311, 0.2358, 0.7412, 0.6006, 0.2358, 0.7412, 0.6006, 0.3152, 0.7871, 0.8311, 0.1882, 0.7827, 0.6191, 0.2053, 0.9712, 0.604, 0.2053, 0.8838, 0.604, 0.1523, 0.9692, 0.6221, 0.1523, 0.9692, 0.6221, 0.2053, 0.8838, 0.604, 0.1493, 0.8984, 0.6226, 0.4775, 0.9531, 0.4265, 0.4749, 0.8813, 0.4292, 0.436, 0.9712, 0.4661, 0.436, 0.9712, 0.4661, 0.4749, 0.8813, 0.4292, 0.436, 0.8838, 0.4661, 0.6011, 0.7529, 0.6904, 0.6353, 0.811, 0.6592, 0.6079, 0.7432, 0.6841, 0.6079, 0.7432, 0.6841, 0.6353, 0.811, 0.6592, 0.644, 0.8047, 0.6514, 0.5063, 1.166, 0.748, 0.4419, 1.1699, 0.7866, 0.5078, 1.1787, 0.7451, 0.5078, 1.1787, 0.7451, 0.4419, 1.1699, 0.7866, 0.4397, 1.1826, 0.7861, 0.4749, 0.8813, 0.4292, 0.4565, 0.8091, 0.4473, 0.436, 0.8838, 0.4661, 0.436, 0.8838, 0.4661, 0.4565, 0.8091, 0.4473, 0.436, 0.7969, 0.4661, 0.2866, 0.7969, 0.5659, 0.2866, 0.7324, 0.5659, 0.2053, 0.7969, 0.604, 0.2053, 0.7969, 0.604, 0.2866, 0.7324, 0.5659, 0.2229, 0.7593, 0.5967, 0.2825, 0.8428, 0.8423, 0.2661, 0.9067, 0.8462, 0.1555, 0.8379, 0.6304, 0.1555, 0.8379, 0.6304, 0.2661, 0.9067, 0.8462, 0.1392, 0.9023, 0.6348, 0.4182, 1.0957, 0.4761, 0.436, 1.0576, 0.4661, 0.3591, 1.1221, 0.5127, 0.3591, 1.1221, 0.5127, 0.436, 1.0576, 0.4661, 0.3638, 1.0576, 0.5195, 0.5732, 0.7725, 0.6792, 0.5303, 0.7363, 0.7139, 0.4465, 0.7676, 0.4675, 0.4465, 0.7676, 0.4675, 0.5303, 0.7363, 0.7139, 0.4033, 0.7319, 0.502, 0.6187, 0.8857, 0.6362, 0.6035, 0.8237, 0.6519, 0.4919, 0.8809, 0.4246, 0.4919, 0.8809, 0.4246, 0.6035, 0.8237, 0.6519, 0.4766, 0.8188, 0.4404, 0.6211, 0.9526, 0.6333, 0.6187, 0.8857, 0.6362, 0.4944, 0.9478, 0.4219, 0.4944, 0.9478, 0.4219, 0.6187, 0.8857, 0.6362, 0.4919, 0.8809, 0.4246, 0.6104, 1.0166, 0.646, 0.6211, 0.9526, 0.6333, 0.4836, 1.0117, 0.4346, 0.4836, 1.0117, 0.4346, 0.6211, 0.9526, 0.6333, 0.4944, 0.9478, 0.4219, 0.5425, 1.1152, 0.6987, 0.584, 1.0723, 0.6685, 0.4158, 1.1104, 0.4873, 0.4158, 1.1104, 0.4873, 0.584, 1.0723, 0.6685, 0.4573, 1.0674, 0.457, 0.5303, 0.7363, 0.7139, 0.4763, 0.7192, 0.7505, 0.4033, 0.7319, 0.502, 0.4033, 0.7319, 0.502, 0.4763, 0.7192, 0.7505, 0.3494, 0.7144, 0.5386, 0.436, 0.8838, 0.4661, 0.436, 0.7969, 0.4661, 0.3638, 0.8838, 0.5195, 0.3638, 0.8838, 0.5195, 0.436, 0.7969, 0.4661, 0.3638, 0.7969, 0.5195, 0.436, 0.9712, 0.4661, 0.436, 0.8838, 0.4661, 0.3638, 0.9712, 0.5195, 0.3638, 0.9712, 0.5195, 0.436, 0.8838, 0.4661, 0.3638, 0.8838, 0.5195, 0.436, 1.0576, 0.4661, 0.436, 0.9712, 0.4661, 0.3638, 1.0576, 0.5195, 0.3638, 1.0576, 0.5195, 0.436, 0.9712, 0.4661, 0.3638, 0.9712, 0.5195, 0.4895, 1.1387, 0.7305, 0.5425, 1.1152, 0.6987, 0.3625, 1.1338, 0.519, 0.3625, 1.1338, 0.519, 0.5425, 1.1152, 0.6987, 0.4158, 1.1104, 0.4873, 0.4763, 0.7192, 0.7505, 0.4177, 0.7227, 0.7847, 0.3494, 0.7144, 0.5386, 0.3494, 0.7144, 0.5386, 0.4177, 0.7227, 0.7847, 0.2908, 0.7178, 0.5728, 0.3638, 0.8838, 0.5195, 0.3638, 0.7969, 0.5195, 0.2866, 0.8838, 0.5659, 0.2866, 0.8838, 0.5659, 0.3638, 0.7969, 0.5195, 0.2866, 0.7969, 0.5659, 0.3638, 0.9712, 0.5195, 0.3638, 0.8838, 0.5195, 0.2866, 0.9712, 0.5659, 0.2866, 0.9712, 0.5659, 0.3638, 0.8838, 0.5195, 0.2866, 0.8838, 0.5659, 0.3638, 1.0576, 0.5195, 0.3638, 0.9712, 0.5195, 0.2866, 1.0576, 0.5659, 0.2866, 1.0576, 0.5659, 0.3638, 0.9712, 0.5195, 0.2866, 0.9712, 0.5659, 0.4321, 1.1416, 0.7651, 0.4895, 1.1387, 0.7305, 0.3052, 1.1367, 0.5532, 0.3052, 1.1367, 0.5532, 0.4895, 1.1387, 0.7305, 0.3625, 1.1338, 0.519, 0.4177, 0.7227, 0.7847, 0.3628, 0.7461, 0.812, 0.2908, 0.7178, 0.5728, 0.2908, 0.7178, 0.5728, 0.3628, 0.7461, 0.812, 0.2358, 0.7412, 0.6006, 0.2866, 0.8838, 0.5659, 0.2866, 0.7969, 0.5659, 0.2053, 0.8838, 0.604, 0.2053, 0.8838, 0.604, 0.2866, 0.7969, 0.5659, 0.2053, 0.7969, 0.604, 0.2866, 0.9712, 0.5659, 0.2866, 0.8838, 0.5659, 0.2053, 0.9712, 0.604, 0.2053, 0.9712, 0.604, 0.2866, 0.8838, 0.5659, 0.2053, 0.8838, 0.604, 0.2866, 1.0576, 0.5659, 0.2866, 0.9712, 0.5659, 0.2053, 1.0576, 0.604, 0.2053, 1.0576, 0.604, 0.2866, 0.9712, 0.5659, 0.2053, 0.9712, 0.604, 0.3276, 1.0869, 0.8242, 0.3765, 1.124, 0.7979, 0.2007, 1.082, 0.6123, 0.2007, 1.082, 0.6123, 0.3765, 1.124, 0.7979, 0.2496, 1.1191, 0.5864, 0.2053, 0.8838, 0.604, 0.2053, 0.7969, 0.604, 0.1493, 0.8984, 0.6226, 0.1493, 0.8984, 0.6226, 0.2053, 0.7969, 0.604, 0.1677, 0.8252, 0.6177, 0.3152, 0.7871, 0.8311, 0.2825, 0.8428, 0.8423, 0.1882, 0.7827, 0.6191, 0.1882, 0.7827, 0.6191, 0.2825, 0.8428, 0.8423, 0.1555, 0.8379, 0.6304, 0.2661, 0.9067, 0.8462, 0.2688, 0.9736, 0.8457, 0.1392, 0.9023, 0.6348, 0.1392, 0.9023, 0.6348, 0.2688, 0.9736, 0.8457, 0.142, 0.9688, 0.6338, 0.2688, 0.9736, 0.8457, 0.2903, 1.0352, 0.8408, 0.142, 0.9688, 0.6338, 0.142, 0.9688, 0.6338, 0.2903, 1.0352, 0.8408, 0.1635, 1.0303, 0.6289, 0.2988, 1.126, 0.5488, 0.2866, 1.0576, 0.5659, 0.2368, 1.1064, 0.5845, 0.2368, 1.1064, 0.5845, 0.2866, 1.0576, 0.5659, 0.2053, 1.0576, 0.604, 0.4419, 1.1699, 0.7866, 0.5063, 1.166, 0.748, 0.4421, 1.1563, 0.7847, 0.4421, 1.1563, 0.7847, 0.5063, 1.166, 0.748, 0.5029, 1.1523, 0.748, 0.4421, 1.1563, 0.7847, 0.5029, 1.1523, 0.748, 0.4385, 1.1455, 0.7764, 0.4385, 1.1455, 0.7764, 0.5029, 1.1523, 0.748, 0.4968, 1.1426, 0.7412, 0.4385, 1.1455, 0.7764, 0.4968, 1.1426, 0.7412, 0.4321, 1.1416, 0.7651, 0.4321, 1.1416, 0.7651, 0.4968, 1.1426, 0.7412, 0.4895, 1.1387, 0.7305, 0.4177, 0.7227, 0.7847, 0.4763, 0.7192, 0.7505, 0.4241, 0.7192, 0.7969, 0.4241, 0.7192, 0.7969, 0.4763, 0.7192, 0.7505, 0.4836, 0.7158, 0.7617, 0.4241, 0.7192, 0.7969, 0.4836, 0.7158, 0.7617, 0.4275, 0.7095, 0.8062, 0.4275, 0.7095, 0.8062, 0.4836, 0.7158, 0.7617, 0.4897, 0.7061, 0.77, 0.4275, 0.7095, 0.8062, 0.4897, 0.7061, 0.77, 0.4268, 0.6958, 0.8105, 0.4268, 0.6958, 0.8105, 0.4897, 0.7061, 0.77, 0.4927, 0.6924, 0.772, 0.2688, 0.9736, 0.8457, 0.2661, 0.9067, 0.8462, 0.2725, 0.9746, 0.8584, 0.2725, 0.9746, 0.8584, 0.2661, 0.9067, 0.8462, 0.2695, 0.9067, 0.8594, 0.2725, 0.9746, 0.8584, 0.2695, 0.9067, 0.8594, 0.2683, 0.9771, 0.8706, 0.2683, 0.9771, 0.8706, 0.2695, 0.9067, 0.8594, 0.2651, 0.9058, 0.8711, 0.2683, 0.9771, 0.8706, 0.2651, 0.9058, 0.8711, 0.2573, 0.9795, 0.8779, 0.2573, 0.9795, 0.8779, 0.2651, 0.9058, 0.8711, 0.2542, 0.9048, 0.8789, 0.2661, 0.9067, 0.8462, 0.2825, 0.8428, 0.8423, 0.2695, 0.9067, 0.8594, 0.2695, 0.9067, 0.8594, 0.2825, 0.8428, 0.8423, 0.2861, 0.8413, 0.855, 0.2695, 0.9067, 0.8594, 0.2861, 0.8413, 0.855, 0.2651, 0.9058, 0.8711, 0.2651, 0.9058, 0.8711, 0.2861, 0.8413, 0.855, 0.2827, 0.8374, 0.8667, 0.2651, 0.9058, 0.8711, 0.2827, 0.8374, 0.8667, 0.2542, 0.9048, 0.8789, 0.2542, 0.9048, 0.8789, 0.2827, 0.8374, 0.8667, 0.2727, 0.832, 0.874, 0.3276, 1.0869, 0.8242, 0.2903, 1.0352, 0.8408, 0.3323, 1.0898, 0.8364, 0.3323, 1.0898, 0.8364, 0.2903, 1.0352, 0.8408, 0.2942, 1.0371, 0.8535, 0.3323, 1.0898, 0.8364, 0.2942, 1.0371, 0.8535, 0.3306, 1.0977, 0.8472, 0.3306, 1.0977, 0.8472, 0.2942, 1.0371, 0.8535, 0.291, 1.043, 0.8647, 0.3306, 1.0977, 0.8472, 0.291, 1.043, 0.8647, 0.3235, 1.1074, 0.853, 0.3235, 1.1074, 0.853, 0.291, 1.043, 0.8647, 0.2815, 1.0488, 0.8716, 0.3789, 1.1494, 0.8237, 0.4419, 1.1699, 0.7866, 0.3828, 1.1377, 0.8193, 0.3828, 1.1377, 0.8193, 0.4419, 1.1699, 0.7866, 0.4421, 1.1563, 0.7847, 0.3828, 1.1377, 0.8193, 0.4421, 1.1563, 0.7847, 0.3821, 1.1279, 0.8101, 0.3821, 1.1279, 0.8101, 0.4421, 1.1563, 0.7847, 0.4385, 1.1455, 0.7764, 0.3821, 1.1279, 0.8101, 0.4385, 1.1455, 0.7764, 0.3765, 1.124, 0.7979, 0.3765, 1.124, 0.7979, 0.4385, 1.1455, 0.7764, 0.4321, 1.1416, 0.7651, 0.6128, 1.0908, 0.6772, 0.6431, 1.0283, 0.6523, 0.6035, 1.082, 0.6816, 0.6035, 1.082, 0.6816, 0.6431, 1.0283, 0.6523, 0.6318, 1.0225, 0.6577, 0.6035, 1.082, 0.6816, 0.6318, 1.0225, 0.6577, 0.5933, 1.0752, 0.6782, 0.5933, 1.0752, 0.6782, 0.6318, 1.0225, 0.6577, 0.6201, 1.0186, 0.6558, 0.5933, 1.0752, 0.6782, 0.6201, 1.0186, 0.6558, 0.584, 1.0723, 0.6685, 0.584, 1.0723, 0.6685, 0.6201, 1.0186, 0.6558, 0.6104, 1.0166, 0.646, 0.2903, 1.0352, 0.8408, 0.2688, 0.9736, 0.8457, 0.2942, 1.0371, 0.8535, 0.2942, 1.0371, 0.8535, 0.2688, 0.9736, 0.8457, 0.2725, 0.9746, 0.8584, 0.2942, 1.0371, 0.8535, 0.2725, 0.9746, 0.8584, 0.291, 1.043, 0.8647, 0.291, 1.043, 0.8647, 0.2725, 0.9746, 0.8584, 0.2683, 0.9771, 0.8706, 0.291, 1.043, 0.8647, 0.2683, 0.9771, 0.8706, 0.2815, 1.0488, 0.8716, 0.2815, 1.0488, 0.8716, 0.2683, 0.9771, 0.8706, 0.2573, 0.9795, 0.8779, 0.6353, 0.811, 0.6592, 0.6011, 0.7529, 0.6904, 0.6245, 0.8174, 0.6641, 0.6245, 0.8174, 0.6641, 0.6011, 0.7529, 0.6904, 0.5923, 0.7627, 0.6934, 0.6245, 0.8174, 0.6641, 0.5923, 0.7627, 0.6934, 0.6128, 0.8223, 0.6616, 0.6128, 0.8223, 0.6616, 0.5923, 0.7627, 0.6934, 0.582, 0.77, 0.6895, 0.6128, 0.8223, 0.6616, 0.582, 0.77, 0.6895, 0.6035, 0.8237, 0.6519, 0.6035, 0.8237, 0.6519, 0.582, 0.77, 0.6895, 0.5732, 0.7725, 0.6792, 0.6528, 0.8809, 0.6411, 0.6353, 0.811, 0.6592, 0.6411, 0.8833, 0.647, 0.6411, 0.8833, 0.647, 0.6353, 0.811, 0.6592, 0.6245, 0.8174, 0.6641, 0.6411, 0.8833, 0.647, 0.6245, 0.8174, 0.6641, 0.6284, 0.8853, 0.6455, 0.6284, 0.8853, 0.6455, 0.6245, 0.8174, 0.6641, 0.6128, 0.8223, 0.6616, 0.6284, 0.8853, 0.6455, 0.6128, 0.8223, 0.6616, 0.6187, 0.8857, 0.6362, 0.6187, 0.8857, 0.6362, 0.6128, 0.8223, 0.6616, 0.6035, 0.8237, 0.6519, 0.6431, 1.0283, 0.6523, 0.6553, 0.9561, 0.6382, 0.6318, 1.0225, 0.6577, 0.6318, 1.0225, 0.6577, 0.6553, 0.9561, 0.6382, 0.6436, 0.9546, 0.6445, 0.6318, 1.0225, 0.6577, 0.6436, 0.9546, 0.6445, 0.6201, 1.0186, 0.6558, 0.6201, 1.0186, 0.6558, 0.6436, 0.9546, 0.6445, 0.6309, 0.9531, 0.6426, 0.6201, 1.0186, 0.6558, 0.6309, 0.9531, 0.6426, 0.6104, 1.0166, 0.646, 0.6104, 1.0166, 0.646, 0.6309, 0.9531, 0.6426, 0.6211, 0.9526, 0.6333, 0.2825, 0.8428, 0.8423, 0.3152, 0.7871, 0.8311, 0.2861, 0.8413, 0.855, 0.2861, 0.8413, 0.855, 0.3152, 0.7871, 0.8311, 0.3196, 0.7852, 0.8438, 0.2861, 0.8413, 0.855, 0.3196, 0.7852, 0.8438, 0.2827, 0.8374, 0.8667, 0.2827, 0.8374, 0.8667, 0.3196, 0.7852, 0.8438, 0.3176, 0.7788, 0.8545, 0.2827, 0.8374, 0.8667, 0.3176, 0.7788, 0.8545, 0.2727, 0.832, 0.874, 0.2727, 0.832, 0.874, 0.3176, 0.7788, 0.8545, 0.3098, 0.7695, 0.8613, 0.6553, 0.9561, 0.6382, 0.6528, 0.8809, 0.6411, 0.6436, 0.9546, 0.6445, 0.6436, 0.9546, 0.6445, 0.6528, 0.8809, 0.6411, 0.6411, 0.8833, 0.647, 0.6436, 0.9546, 0.6445, 0.6411, 0.8833, 0.647, 0.6309, 0.9531, 0.6426, 0.6309, 0.9531, 0.6426, 0.6411, 0.8833, 0.647, 0.6284, 0.8853, 0.6455, 0.6309, 0.9531, 0.6426, 0.6284, 0.8853, 0.6455, 0.6211, 0.9526, 0.6333, 0.6211, 0.9526, 0.6333, 0.6284, 0.8853, 0.6455, 0.6187, 0.8857, 0.6362, 0.5303, 0.7363, 0.7139, 0.5732, 0.7725, 0.6792, 0.5386, 0.7334, 0.7246, 0.5386, 0.7334, 0.7246, 0.5732, 0.7725, 0.6792, 0.582, 0.77, 0.6895, 0.5386, 0.7334, 0.7246, 0.582, 0.77, 0.6895, 0.5469, 0.7246, 0.7305, 0.5469, 0.7246, 0.7305, 0.582, 0.77, 0.6895, 0.5923, 0.7627, 0.6934, 0.5469, 0.7246, 0.7305, 0.5923, 0.7627, 0.6934, 0.5527, 0.7119, 0.73, 0.5527, 0.7119, 0.73, 0.5923, 0.7627, 0.6934, 0.6011, 0.7529, 0.6904, 0.3235, 1.1074, 0.853, 0.3789, 1.1494, 0.8237, 0.3306, 1.0977, 0.8472, 0.3306, 1.0977, 0.8472, 0.3789, 1.1494, 0.8237, 0.3828, 1.1377, 0.8193, 0.3306, 1.0977, 0.8472, 0.3828, 1.1377, 0.8193, 0.3323, 1.0898, 0.8364, 0.3323, 1.0898, 0.8364, 0.3828, 1.1377, 0.8193, 0.3821, 1.1279, 0.8101, 0.3323, 1.0898, 0.8364, 0.3821, 1.1279, 0.8101, 0.3276, 1.0869, 0.8242, 0.3276, 1.0869, 0.8242, 0.3821, 1.1279, 0.8101, 0.3765, 1.124, 0.7979, 0.5063, 1.166, 0.748, 0.5659, 1.1387, 0.7119, 0.5029, 1.1523, 0.748, 0.5029, 1.1523, 0.748, 0.5659, 1.1387, 0.7119, 0.5596, 1.127, 0.7139, 0.5029, 1.1523, 0.748, 0.5596, 1.127, 0.7139, 0.4968, 1.1426, 0.7412, 0.4968, 1.1426, 0.7412, 0.5596, 1.127, 0.7139, 0.5508, 1.1182, 0.709, 0.4968, 1.1426, 0.7412, 0.5508, 1.1182, 0.709, 0.4895, 1.1387, 0.7305, 0.4895, 1.1387, 0.7305, 0.5508, 1.1182, 0.709, 0.5425, 1.1152, 0.6987, 0.5659, 1.1387, 0.7119, 0.6128, 1.0908, 0.6772, 0.5596, 1.127, 0.7139, 0.5596, 1.127, 0.7139, 0.6128, 1.0908, 0.6772, 0.6035, 1.082, 0.6816, 0.5596, 1.127, 0.7139, 0.6035, 1.082, 0.6816, 0.5508, 1.1182, 0.709, 0.5508, 1.1182, 0.709, 0.6035, 1.082, 0.6816, 0.5933, 1.0752, 0.6782, 0.5508, 1.1182, 0.709, 0.5933, 1.0752, 0.6782, 0.5425, 1.1152, 0.6987, 0.5425, 1.1152, 0.6987, 0.5933, 1.0752, 0.6782, 0.584, 1.0723, 0.6685, 0.4763, 0.7192, 0.7505, 0.5303, 0.7363, 0.7139, 0.4836, 0.7158, 0.7617, 0.4836, 0.7158, 0.7617, 0.5303, 0.7363, 0.7139, 0.5386, 0.7334, 0.7246, 0.4836, 0.7158, 0.7617, 0.5386, 0.7334, 0.7246, 0.4897, 0.7061, 0.77, 0.4897, 0.7061, 0.77, 0.5386, 0.7334, 0.7246, 0.5469, 0.7246, 0.7305, 0.4897, 0.7061, 0.77, 0.5469, 0.7246, 0.7305, 0.4927, 0.6924, 0.772, 0.4927, 0.6924, 0.772, 0.5469, 0.7246, 0.7305, 0.5527, 0.7119, 0.73, 0.3152, 0.7871, 0.8311, 0.3628, 0.7461, 0.812, 0.3196, 0.7852, 0.8438, 0.3196, 0.7852, 0.8438, 0.3628, 0.7461, 0.812, 0.3679, 0.7432, 0.8247, 0.3196, 0.7852, 0.8438, 0.3679, 0.7432, 0.8247, 0.3176, 0.7788, 0.8545, 0.3176, 0.7788, 0.8545, 0.3679, 0.7432, 0.8247, 0.3684, 0.7344, 0.835, 0.3176, 0.7788, 0.8545, 0.3684, 0.7344, 0.835, 0.3098, 0.7695, 0.8613, 0.3098, 0.7695, 0.8613, 0.3684, 0.7344, 0.835, 0.364, 0.7227, 0.8408, 0.3628, 0.7461, 0.812, 0.4177, 0.7227, 0.7847, 0.3679, 0.7432, 0.8247, 0.3679, 0.7432, 0.8247, 0.4177, 0.7227, 0.7847, 0.4241, 0.7192, 0.7969, 0.3679, 0.7432, 0.8247, 0.4241, 0.7192, 0.7969, 0.3684, 0.7344, 0.835, 0.3684, 0.7344, 0.835, 0.4241, 0.7192, 0.7969, 0.4275, 0.7095, 0.8062, 0.3684, 0.7344, 0.835, 0.4275, 0.7095, 0.8062, 0.364, 0.7227, 0.8408, 0.364, 0.7227, 0.8408, 0.4275, 0.7095, 0.8062, 0.4268, 0.6958, 0.8105, 0.436, 0.7969, 0.4661, 0.4089, 0.749, 0.4873, 0.3638, 0.7969, 0.5195, 0.3638, 0.7969, 0.5195, 0.4089, 0.749, 0.4873, 0.3484, 0.729, 0.5293, 0.4241, 1.9023, -0.0276, 0.4836, 1.877, -0.0285, 0.425, 1.9023, 0, 0.425, 1.9023, 0, 0.4836, 1.877, -0.0285, 0.4851, 1.877, 0, 0.425, 1.9023, 0, 0.4851, 1.877, 0, 0.4241, 1.9023, 0.0276, 0.4241, 1.9023, 0.0276, 0.4851, 1.877, 0, 0.4836, 1.877, 0.0285, 0.3542, 1.9258, -0.0274, 0.4241, 1.9023, -0.0276, 0.3552, 1.9258, 0, 0.3552, 1.9258, 0, 0.4241, 1.9023, -0.0276, 0.425, 1.9023, 0, 0.2825, 1.9424, 0, 0.3552, 1.9258, 0, 0.2817, 1.9424, 0.0282, 0.2817, 1.9424, 0.0282, 0.3552, 1.9258, 0, 0.3542, 1.9258, 0.0274, 0.2817, 1.9424, -0.0282, 0.3542, 1.9258, -0.0274, 0.2825, 1.9424, 0, 0.2825, 1.9424, 0, 0.3542, 1.9258, -0.0274, 0.3552, 1.9258, 0, 0.1328, 1.8213, 0, 0.0945, 1.7617, 0, 0.1299, 1.8213, -0.0383, 0.1299, 1.8213, -0.0383, 0.0945, 1.7617, 0, 0.094, 1.7617, -0.0413, 0.2791, 1.9365, -0.0354, 0.2537, 1.876, -0.0395, 0.3523, 1.9189, -0.0344, 0.3523, 1.9189, -0.0344, 0.2537, 1.876, -0.0395, 0.3359, 1.8574, -0.037, 0.0859, 1.7559, 0.0551, 0.1884, 1.7422, 0.078, 0.1798, 1.7422, 0.0961, 0.3552, 1.9258, 0, 0.425, 1.9023, 0, 0.3542, 1.9258, 0.0274, 0.3542, 1.9258, 0.0274, 0.425, 1.9023, 0, 0.4241, 1.9023, 0.0276, 0.4912, 1.8672, 0, 0.49, 1.8008, 0, 0.4897, 1.8672, 0.0289, 0.4897, 1.8672, 0.0289, 0.49, 1.8008, 0, 0.4883, 1.8008, 0.0327, 0.2141, 1.9521, -0.0315, 0.2817, 1.9424, -0.0282, 0.2145, 1.9521, 0, 0.2145, 1.9521, 0, 0.2817, 1.9424, -0.0282, 0.2825, 1.9424, 0, 0.3354, 1.8574, 0.0391, 0.2537, 1.876, 0.0395, 0.3523, 1.9189, 0.0346, 0.3523, 1.9189, 0.0346, 0.2537, 1.876, 0.0395, 0.2791, 1.9365, 0.0354, 0.2045, 1.9473, 0, 0.204, 1.9473, 0.0263, 0.1703, 1.8877, 0, 0.1703, 1.8877, 0, 0.204, 1.9473, 0.0263, 0.1687, 1.8877, 0.0311, 0.4229, 1.8955, -0.0347, 0.4141, 1.832, -0.037, 0.4827, 1.8701, -0.0356, 0.4827, 1.8701, -0.0356, 0.4141, 1.832, -0.037, 0.4814, 1.8037, -0.0392, 0.3359, 1.8574, -0.037, 0.4141, 1.832, -0.037, 0.3523, 1.9189, -0.0344, 0.3523, 1.9189, -0.0344, 0.4141, 1.832, -0.037, 0.4229, 1.8955, -0.0347, 0.4897, 1.8672, -0.0289, 0.4883, 1.8008, -0.0327, 0.4912, 1.8672, 0, 0.4912, 1.8672, 0, 0.4883, 1.8008, -0.0327, 0.49, 1.8008, 0, 0.2109, 1.9463, -0.0385, 0.1757, 1.8867, -0.0416, 0.2791, 1.9365, -0.0354, 0.2791, 1.9365, -0.0354, 0.1757, 1.8867, -0.0416, 0.2537, 1.876, -0.0395, 0.2045, 1.9473, 0, 0.1703, 1.8877, 0, 0.204, 1.9473, -0.032, 0.204, 1.9473, -0.032, 0.1703, 1.8877, 0, 0.1687, 1.8877, -0.035, 0.2109, 1.9463, 0.0333, 0.2791, 1.9365, 0.0354, 0.1757, 1.8867, 0.038, 0.1757, 1.8867, 0.038, 0.2791, 1.9365, 0.0354, 0.2537, 1.876, 0.0395, 0.4814, 1.8037, 0.0395, 0.4138, 1.832, 0.0394, 0.4827, 1.8701, 0.0356, 0.4827, 1.8701, 0.0356, 0.4138, 1.832, 0.0394, 0.4226, 1.8955, 0.0349, 0.1787, 0.9766, 0.8989, 0.1787, 0.8892, 0.8989, 0.0898, 0.9766, 0.9121, 0.0898, 0.9766, 0.9121, 0.1787, 0.8892, 0.8989, 0.0898, 0.8892, 0.9121, 0, 1.0293, 0.9082, 0.024, 1.0283, 0.9067, 0, 1.0293, 0.8438, 0, 1.0293, 0.8438, 0.024, 1.0283, 0.9067, 0.0209, 1.0283, 0.8428, 0.068, 0.7759, 0.9048, 0.0578, 0.7534, 0.9053, 0.0649, 0.7759, 0.8403, 0.0649, 0.7759, 0.8403, 0.0578, 0.7534, 0.9053, 0.0546, 0.7534, 0.8408, 0.0554, 0.8892, 0.8325, 0.0554, 0.7759, 0.8325, 0, 0.8892, 0.8354, 0, 0.8892, 0.8354, 0.0554, 0.7759, 0.8325, 0, 0.7759, 0.8354, 0.024, 1.0283, 0.9067, 0.0439, 1.0195, 0.9058, 0.0209, 1.0283, 0.8428, 0.0209, 1.0283, 0.8428, 0.0439, 1.0195, 0.9058, 0.0407, 1.0195, 0.8418, 0.0898, 0.7759, 0.9121, 0.0898, 0.7432, 0.9121, 0.0772, 0.7759, 0.9126, 0.0772, 0.7759, 0.9126, 0.0898, 0.7432, 0.9121, 0.0659, 0.751, 0.9131, 0.0554, 0.9766, 0.8325, 0.0554, 0.8892, 0.8325, 0, 0.9766, 0.8354, 0, 0.9766, 0.8354, 0.0554, 0.8892, 0.8325, 0, 0.8892, 0.8354, 0.0898, 0.7432, 0.9121, 0.0898, 0.6885, 0.9121, 0.0659, 0.751, 0.9131, 0.0659, 0.751, 0.9131, 0.0898, 0.6885, 0.9121, 0.0491, 0.7314, 0.9141, 0.0217, 0.7256, 0.9067, 0, 0.7241, 0.9082, 0.0186, 0.7256, 0.8428, 0.0186, 0.7256, 0.8428, 0, 0.7241, 0.9082, 0, 0.7241, 0.8438, 0.068, 0.8892, 0.9048, 0.068, 0.7759, 0.9048, 0.0649, 0.8892, 0.8403, 0.0649, 0.8892, 0.8403, 0.068, 0.7759, 0.9048, 0.0649, 0.7759, 0.8403, 0.068, 0.9766, 0.9048, 0.068, 0.8892, 0.9048, 0.0649, 0.9766, 0.8403, 0.0649, 0.9766, 0.8403, 0.068, 0.8892, 0.9048, 0.0649, 0.8892, 0.8403, 0.0616, 0.9995, 0.9048, 0.068, 0.9766, 0.9048, 0.0584, 0.9995, 0.8408, 0.0584, 0.9995, 0.8408, 0.068, 0.9766, 0.9048, 0.0649, 0.9766, 0.8403, 0.0898, 0.8892, 0.9121, 0.0898, 0.7759, 0.9121, 0.0772, 0.8892, 0.9126, 0.0772, 0.8892, 0.9126, 0.0898, 0.7759, 0.9121, 0.0772, 0.7759, 0.9126, 0.0898, 0.9766, 0.9121, 0.0898, 0.8892, 0.9121, 0.0772, 0.9766, 0.9126, 0.0772, 0.9766, 0.9126, 0.0898, 0.8892, 0.9121, 0.0772, 0.8892, 0.9126, 0.0498, 0.9961, 0.833, 0.0554, 0.9766, 0.8325, 0.0353, 1.0127, 0.8335, 0.0353, 1.0127, 0.8335, 0.0554, 0.9766, 0.8325, 0.0185, 1.0195, 0.835, 0.0185, 1.0195, 0.835, 0.0554, 0.9766, 0.8325, 0, 1.0205, 0.8354, 0, 1.0205, 0.8354, 0.0554, 0.9766, 0.8325, 0, 0.9766, 0.8354, 0.0898, 1.0078, 0.9121, 0.0898, 0.9766, 0.9121, 0.0701, 1.002, 0.9131, 0.0701, 1.002, 0.9131, 0.0898, 0.9766, 0.9121, 0.0772, 0.9766, 0.9126, 0, 0.6885, 0.9165, 0, 0.7168, 0.9165, 0.0242, 0.7183, 0.915, 0.068, 0.9766, 0.9048, 0.0616, 0.9995, 0.9048, 0.0772, 0.9766, 0.9126, 0.0772, 0.9766, 0.9126, 0.0616, 0.9995, 0.9048, 0.0701, 1.002, 0.9131, 0.068, 0.8892, 0.9048, 0.068, 0.9766, 0.9048, 0.0772, 0.8892, 0.9126, 0.0772, 0.8892, 0.9126, 0.068, 0.9766, 0.9048, 0.0772, 0.9766, 0.9126, 0.068, 0.7759, 0.9048, 0.068, 0.8892, 0.9048, 0.0772, 0.7759, 0.9126, 0.0772, 0.7759, 0.9126, 0.068, 0.8892, 0.9048, 0.0772, 0.8892, 0.9126, 0, 0.7241, 0.9082, 0.0217, 0.7256, 0.9067, 0, 0.7168, 0.9165, 0, 0.7168, 0.9165, 0.0217, 0.7256, 0.9067, 0.0242, 0.7183, 0.915, 0.0439, 1.0195, 0.9058, 0.024, 1.0283, 0.9067, 0.0498, 1.0244, 0.9141, 0.0498, 1.0244, 0.9141, 0.024, 1.0283, 0.9067, 0.0255, 1.0352, 0.915, 0.0435, 0.7368, 0.9058, 0.0578, 0.7534, 0.9053, 0.0491, 0.7314, 0.9141, 0.0491, 0.7314, 0.9141, 0.0578, 0.7534, 0.9053, 0.0659, 0.751, 0.9131, 0.024, 1.0283, 0.9067, 0, 1.0293, 0.9082, 0.0255, 1.0352, 0.915, 0.0255, 1.0352, 0.915, 0, 1.0293, 0.9082, 0, 1.0361, 0.9165, 0.0616, 0.9995, 0.9048, 0.0439, 1.0195, 0.9058, 0.0701, 1.002, 0.9131, 0.0701, 1.002, 0.9131, 0.0439, 1.0195, 0.9058, 0.0498, 1.0244, 0.9141, 0.0578, 0.7534, 0.9053, 0.068, 0.7759, 0.9048, 0.0659, 0.751, 0.9131, 0.0659, 0.751, 0.9131, 0.068, 0.7759, 0.9048, 0.0772, 0.7759, 0.9126, 0.0217, 0.7256, 0.9067, 0.0435, 0.7368, 0.9058, 0.0242, 0.7183, 0.915, 0.0242, 0.7183, 0.915, 0.0435, 0.7368, 0.9058, 0.0491, 0.7314, 0.9141, 0.0439, 1.0195, 0.9058, 0.0616, 0.9995, 0.9048, 0.0407, 1.0195, 0.8418, 0.0407, 1.0195, 0.8418, 0.0616, 0.9995, 0.9048, 0.0584, 0.9995, 0.8408, 0.0898, 0.6885, 0.9121, 0.0898, 0.6279, 0.9121, 0, 0.6885, 0.9165, 0, 0.6885, 0.9165, 0.0898, 0.6279, 0.9121, 0, 0.6279, 0.9165, 0.0898, 0.6885, 0.9121, 0, 0.6885, 0.9165, 0.0491, 0.7314, 0.9141, 0.0491, 0.7314, 0.9141, 0, 0.6885, 0.9165, 0.0242, 0.7183, 0.915, 0, 1.1416, 0.9106, 0.0892, 1.1416, 0.9063, 0, 1.0635, 0.9165, 0, 1.0635, 0.9165, 0.0892, 1.1416, 0.9063, 0.0898, 1.0635, 0.9121, 0, 1.0361, 0.9165, 0, 1.0635, 0.9165, 0.0255, 1.0352, 0.915, 0.0898, 1.0078, 0.9121, 0.1787, 1.0635, 0.8989, 0.0898, 0.9766, 0.9121, 0.0898, 0.9766, 0.9121, 0.1787, 1.0635, 0.8989, 0.1787, 0.9766, 0.8989, 0.0898, 0.7432, 0.9121, 0.1787, 0.7153, 0.8989, 0.0898, 0.6885, 0.9121, 0.3506, 0.5498, 0.8467, 0.3506, 0.6279, 0.8467, 0.4319, 0.5498, 0.8081, 0.4319, 0.5498, 0.8081, 0.3506, 0.6279, 0.8467, 0.4319, 0.6279, 0.8081, 0.4319, 0.4668, 0.8081, 0.4319, 0.5498, 0.8081, 0.5024, 0.4668, 0.7661, 0.5024, 0.4668, 0.7661, 0.4319, 0.5498, 0.8081, 0.5024, 0.5576, 0.7661, 0.1864, 0.4668, 0.897, 0.1864, 0.5576, 0.897, 0.2659, 0.4668, 0.877, 0.2659, 0.4668, 0.877, 0.1864, 0.5576, 0.897, 0.2659, 0.5498, 0.877, 0.9165, 0.5576, 0, 0.9165, 0.6279, 0, 0.9121, 0.5576, -0.0898, 0.9121, 0.5576, -0.0898, 0.9165, 0.6279, 0, 0.9121, 0.6279, -0.0898, 0.2659, 0.5498, 0.877, 0.2659, 0.6279, 0.877, 0.3506, 0.5498, 0.8467, 0.3506, 0.5498, 0.8467, 0.2659, 0.6279, 0.877, 0.3506, 0.6279, 0.8467, 0.3931, 1.6914, 0.0562, 0.4907, 1.6494, 0.0544, 0.3899, 1.6914, 0.0776, 0.3899, 1.6914, 0.0776, 0.4907, 1.6494, 0.0544, 0.4783, 1.6533, 0.0951, 0.48, 1.7295, 0.0437, 0.4041, 1.7617, 0.0444, 0.4814, 1.8037, 0.0395, 0.4814, 1.8037, 0.0395, 0.4041, 1.7617, 0.0444, 0.4138, 1.832, 0.0394, 0.1976, 1.7422, 0.0551, 0.2974, 1.7207, 0.0558, 0.2969, 1.7207, 0.0591, 0.3169, 1.7891, 0.044, 0.2258, 1.8096, 0.0439, 0.3354, 1.8574, 0.0391, 0.3354, 1.8574, 0.0391, 0.2258, 1.8096, 0.0439, 0.2537, 1.876, 0.0395, 0.1952, 1.7422, -0.0592, 0.2896, 1.7207, -0.0878, 0.1974, 1.7422, -0.0551, 0.1974, 1.7422, -0.0551, 0.2896, 1.7207, -0.0878, 0.2969, 1.7207, -0.0591, 0.1703, 1.8877, 0, 0.1328, 1.8213, 0, 0.1687, 1.8877, -0.035, 0.1687, 1.8877, -0.035, 0.1328, 1.8213, 0, 0.1299, 1.8213, -0.0383, 0.3, 1.7275, 0.0485, 0.2006, 1.749, 0.0479, 0.3169, 1.7891, 0.044, 0.3169, 1.7891, 0.044, 0.2006, 1.749, 0.0479, 0.2258, 1.8096, 0.0439, 0.4041, 1.7617, 0.0444, 0.3169, 1.7891, 0.044, 0.4138, 1.832, 0.0394, 0.4138, 1.832, 0.0394, 0.3169, 1.7891, 0.044, 0.3354, 1.8574, 0.0391, 0.2145, 1.9521, 0, 0.2825, 1.9424, 0, 0.2141, 1.9521, 0.0261, 0.2141, 1.9521, 0.0261, 0.2825, 1.9424, 0, 0.2817, 1.9424, 0.0282, 0.1703, 1.8877, 0, 0.1687, 1.8877, 0.0311, 0.1328, 1.8213, 0, 0.1328, 1.8213, 0, 0.1687, 1.8877, 0.0311, 0.13, 1.8213, 0.0363, 0.2969, 1.7207, -0.0591, 0.3899, 1.6914, -0.0776, 0.2983, 1.7207, -0.0493, 0.2983, 1.7207, -0.0493, 0.3899, 1.6914, -0.0776, 0.3943, 1.6914, -0.0491, 0.3176, 1.7891, -0.0398, 0.4048, 1.7617, -0.0397, 0.3359, 1.8574, -0.037, 0.3359, 1.8574, -0.037, 0.4048, 1.7617, -0.0397, 0.4141, 1.832, -0.037, 0.49, 1.8008, 0, 0.4888, 1.7266, 0, 0.4883, 1.8008, 0.0327, 0.4883, 1.8008, 0.0327, 0.4888, 1.7266, 0, 0.4871, 1.7266, 0.0369, 0.2537, 1.876, -0.0395, 0.2258, 1.8096, -0.0439, 0.3359, 1.8574, -0.037, 0.3359, 1.8574, -0.037, 0.2258, 1.8096, -0.0439, 0.3176, 1.7891, -0.0398, 0.0859, 1.7559, 0.0551, 0.1976, 1.7422, 0.0551, 0.1952, 1.7422, 0.0592, 0.4883, 1.8008, -0.0327, 0.4871, 1.7266, -0.0369, 0.49, 1.8008, 0, 0.49, 1.8008, 0, 0.4871, 1.7266, -0.0369, 0.4888, 1.7266, 0, 0.4783, 1.6533, -0.0951, 0.5601, 1.6084, -0.1115, 0.4907, 1.6494, -0.0549, 0.4907, 1.6494, -0.0549, 0.5601, 1.6084, -0.1115, 0.5684, 1.6084, -0.056, 0.1757, 1.8867, 0.038, 0.2537, 1.876, 0.0395, 0.1367, 1.8203, 0.0432, 0.1367, 1.8203, 0.0432, 0.2537, 1.876, 0.0395, 0.2258, 1.8096, 0.0439, 0.4888, 1.7266, 0, 0.4878, 1.6602, 0, 0.4871, 1.7266, 0.0369, 0.4871, 1.7266, 0.0369, 0.4878, 1.6602, 0, 0.4856, 1.6602, 0.0406, 0.4141, 1.832, -0.037, 0.4048, 1.7617, -0.0397, 0.4814, 1.8037, -0.0392, 0.4814, 1.8037, -0.0392, 0.4048, 1.7617, -0.0397, 0.48, 1.7295, -0.0433, 0.2974, 1.7207, 0.0558, 0.3931, 1.6914, 0.0562, 0.2969, 1.7207, 0.0591, 0.2969, 1.7207, 0.0591, 0.3931, 1.6914, 0.0562, 0.3899, 1.6914, 0.0776, 0.1757, 1.8867, -0.0416, 0.1367, 1.8203, -0.045, 0.2537, 1.876, -0.0395, 0.2537, 1.876, -0.0395, 0.1367, 1.8203, -0.045, 0.2258, 1.8096, -0.0439, 0.1328, 1.8213, 0, 0.13, 1.8213, 0.0363, 0.0945, 1.7617, 0, 0.0945, 1.7617, 0, 0.13, 1.8213, 0.0363, 0.094, 1.7617, 0.0411, 0.4907, 1.6494, 0.0544, 0.4788, 1.6631, 0.0475, 0.4856, 1.6602, 0.0406, 0.094, 1.7617, 0.0411, 0.1016, 1.7607, 0.0479, 0.0859, 1.7559, 0.0551, 0.0853, 1.7559, -0.0562, 0.1016, 1.7607, -0.0481, 0.094, 1.7617, -0.0413, 0.4856, 1.6602, -0.0406, 0.4788, 1.6631, -0.047, 0.4907, 1.6494, -0.0549, 0.4897, 1.8672, 0.0289, 0.4827, 1.8701, 0.0356, 0.4836, 1.877, 0.0285, 0.4836, 1.877, -0.0285, 0.4827, 1.8701, -0.0356, 0.4897, 1.8672, -0.0289, 0.2141, 1.9521, -0.0315, 0.204, 1.9473, -0.032, 0.2109, 1.9463, -0.0385, 0.2141, 1.9521, 0.0261, 0.2109, 1.9463, 0.0333, 0.204, 1.9473, 0.0263, 0.395, 1.6982, 0.0489, 0.4788, 1.6631, 0.0475, 0.3931, 1.6914, 0.0562, 0.3931, 1.6914, 0.0562, 0.4788, 1.6631, 0.0475, 0.4907, 1.6494, 0.0544, 0.3943, 1.6914, -0.0491, 0.4907, 1.6494, -0.0549, 0.396, 1.6982, -0.0421, 0.396, 1.6982, -0.0421, 0.4907, 1.6494, -0.0549, 0.4788, 1.6631, -0.047, 0.4856, 1.6602, 0.0406, 0.4878, 1.6602, 0, 0.4907, 1.6494, 0.0544, 0.4907, 1.6494, 0.0544, 0.4878, 1.6602, 0, 0.4934, 1.6504, 0, 0.1016, 1.7607, 0.0479, 0.2006, 1.749, 0.0479, 0.0859, 1.7559, 0.0551, 0.0859, 1.7559, 0.0551, 0.2006, 1.749, 0.0479, 0.1976, 1.7422, 0.0551, 0.2983, 1.7207, -0.0493, 0.3943, 1.6914, -0.0491, 0.301, 1.7275, -0.0423, 0.301, 1.7275, -0.0423, 0.3943, 1.6914, -0.0491, 0.396, 1.6982, -0.0421, 0.3, 1.7275, 0.0485, 0.395, 1.6982, 0.0489, 0.2974, 1.7207, 0.0558, 0.2974, 1.7207, 0.0558, 0.395, 1.6982, 0.0489, 0.3931, 1.6914, 0.0562, 0.0853, 1.7559, -0.0562, 0.1974, 1.7422, -0.0551, 0.1016, 1.7607, -0.0481, 0.1016, 1.7607, -0.0481, 0.1974, 1.7422, -0.0551, 0.2006, 1.749, -0.0479, 0.4907, 1.6494, -0.0549, 0.4934, 1.6504, 0, 0.4856, 1.6602, -0.0406, 0.4856, 1.6602, -0.0406, 0.4934, 1.6504, 0, 0.4878, 1.6602, 0, 0.094, 1.7617, -0.0413, 0.0945, 1.7617, 0, 0.0853, 1.7559, -0.0562, 0.0853, 1.7559, -0.0562, 0.0945, 1.7617, 0, 0.0841, 1.7559, 0, 0.1974, 1.7422, -0.0551, 0.2983, 1.7207, -0.0493, 0.2006, 1.749, -0.0479, 0.2006, 1.749, -0.0479, 0.2983, 1.7207, -0.0493, 0.301, 1.7275, -0.0423, 0.0859, 1.7559, 0.0551, 0.0841, 1.7559, 0, 0.094, 1.7617, 0.0411, 0.094, 1.7617, 0.0411, 0.0841, 1.7559, 0, 0.0945, 1.7617, 0, 0.4788, 1.6631, 0.0475, 0.48, 1.7295, 0.0437, 0.4856, 1.6602, 0.0406, 0.4856, 1.6602, 0.0406, 0.48, 1.7295, 0.0437, 0.4871, 1.7266, 0.0369, 0.204, 1.9473, -0.032, 0.1687, 1.8877, -0.035, 0.2109, 1.9463, -0.0385, 0.2109, 1.9463, -0.0385, 0.1687, 1.8877, -0.035, 0.1757, 1.8867, -0.0416, 0.4241, 1.9023, 0.0276, 0.4836, 1.877, 0.0285, 0.4226, 1.8955, 0.0349, 0.4226, 1.8955, 0.0349, 0.4836, 1.877, 0.0285, 0.4827, 1.8701, 0.0356, 0.4229, 1.8955, -0.0347, 0.4827, 1.8701, -0.0356, 0.4241, 1.9023, -0.0276, 0.4241, 1.9023, -0.0276, 0.4827, 1.8701, -0.0356, 0.4836, 1.877, -0.0285, 0.4836, 1.877, 0.0285, 0.4851, 1.877, 0, 0.4897, 1.8672, 0.0289, 0.4897, 1.8672, 0.0289, 0.4851, 1.877, 0, 0.4912, 1.8672, 0, 0.3523, 1.9189, -0.0344, 0.4229, 1.8955, -0.0347, 0.3542, 1.9258, -0.0274, 0.3542, 1.9258, -0.0274, 0.4229, 1.8955, -0.0347, 0.4241, 1.9023, -0.0276, 0.2791, 1.9365, -0.0354, 0.3523, 1.9189, -0.0344, 0.2817, 1.9424, -0.0282, 0.2817, 1.9424, -0.0282, 0.3523, 1.9189, -0.0344, 0.3542, 1.9258, -0.0274, 0.2109, 1.9463, -0.0385, 0.2791, 1.9365, -0.0354, 0.2141, 1.9521, -0.0315, 0.2141, 1.9521, -0.0315, 0.2791, 1.9365, -0.0354, 0.2817, 1.9424, -0.0282, 0.3542, 1.9258, 0.0274, 0.4241, 1.9023, 0.0276, 0.3523, 1.9189, 0.0346, 0.3523, 1.9189, 0.0346, 0.4241, 1.9023, 0.0276, 0.4226, 1.8955, 0.0349, 0.4897, 1.8672, -0.0289, 0.4912, 1.8672, 0, 0.4836, 1.877, -0.0285, 0.4836, 1.877, -0.0285, 0.4912, 1.8672, 0, 0.4851, 1.877, 0, 0.2817, 1.9424, 0.0282, 0.3542, 1.9258, 0.0274, 0.2791, 1.9365, 0.0354, 0.2791, 1.9365, 0.0354, 0.3542, 1.9258, 0.0274, 0.3523, 1.9189, 0.0346, 0.2141, 1.9521, 0.0261, 0.2817, 1.9424, 0.0282, 0.2109, 1.9463, 0.0333, 0.2109, 1.9463, 0.0333, 0.2817, 1.9424, 0.0282, 0.2791, 1.9365, 0.0354, 0.204, 1.9473, 0.0263, 0.2045, 1.9473, 0, 0.2141, 1.9521, 0.0261, 0.2141, 1.9521, 0.0261, 0.2045, 1.9473, 0, 0.2145, 1.9521, 0, 0.2141, 1.9521, -0.0315, 0.2145, 1.9521, 0, 0.204, 1.9473, -0.032, 0.204, 1.9473, -0.032, 0.2145, 1.9521, 0, 0.2045, 1.9473, 0, 0.4827, 1.8701, -0.0356, 0.4814, 1.8037, -0.0392, 0.4897, 1.8672, -0.0289, 0.4897, 1.8672, -0.0289, 0.4814, 1.8037, -0.0392, 0.4883, 1.8008, -0.0327, 0.094, 1.7617, 0.0411, 0.13, 1.8213, 0.0363, 0.1016, 1.7607, 0.0479, 0.1016, 1.7607, 0.0479, 0.13, 1.8213, 0.0363, 0.1367, 1.8203, 0.0432, 0.2006, 1.749, 0.0479, 0.3, 1.7275, 0.0485, 0.1976, 1.7422, 0.0551, 0.1976, 1.7422, 0.0551, 0.3, 1.7275, 0.0485, 0.2974, 1.7207, 0.0558, 0.4814, 1.8037, 0.0395, 0.4827, 1.8701, 0.0356, 0.4883, 1.8008, 0.0327, 0.4883, 1.8008, 0.0327, 0.4827, 1.8701, 0.0356, 0.4897, 1.8672, 0.0289, 0.48, 1.7295, 0.0437, 0.4814, 1.8037, 0.0395, 0.4871, 1.7266, 0.0369, 0.4871, 1.7266, 0.0369, 0.4814, 1.8037, 0.0395, 0.4883, 1.8008, 0.0327, 0.1299, 1.8213, -0.0383, 0.094, 1.7617, -0.0413, 0.1367, 1.8203, -0.045, 0.1367, 1.8203, -0.045, 0.094, 1.7617, -0.0413, 0.1016, 1.7607, -0.0481, 0.1687, 1.8877, -0.035, 0.1299, 1.8213, -0.0383, 0.1757, 1.8867, -0.0416, 0.1757, 1.8867, -0.0416, 0.1299, 1.8213, -0.0383, 0.1367, 1.8203, -0.045, 0.48, 1.7295, -0.0433, 0.4788, 1.6631, -0.047, 0.4871, 1.7266, -0.0369, 0.4871, 1.7266, -0.0369, 0.4788, 1.6631, -0.047, 0.4856, 1.6602, -0.0406, 0.4814, 1.8037, -0.0392, 0.48, 1.7295, -0.0433, 0.4883, 1.8008, -0.0327, 0.4883, 1.8008, -0.0327, 0.48, 1.7295, -0.0433, 0.4871, 1.7266, -0.0369, 0.1687, 1.8877, 0.0311, 0.204, 1.9473, 0.0263, 0.1757, 1.8867, 0.038, 0.1757, 1.8867, 0.038, 0.204, 1.9473, 0.0263, 0.2109, 1.9463, 0.0333, 0.13, 1.8213, 0.0363, 0.1687, 1.8877, 0.0311, 0.1367, 1.8203, 0.0432, 0.1367, 1.8203, 0.0432, 0.1687, 1.8877, 0.0311, 0.1757, 1.8867, 0.038, 0.0793, 1.7559, 0.0651, 0.0793, 1.7559, -0.0651, 0.0841, 1.7559, 0, 0.0793, 1.7559, -0.0651, 0.0853, 1.7559, -0.0562, 0.0841, 1.7559, 0, 0, 1.0635, 0.9165, 0.0898, 1.0635, 0.9121, 0.0255, 1.0352, 0.915, 0.0255, 1.0352, 0.915, 0.0898, 1.0635, 0.9121, 0.0498, 1.0244, 0.9141, 0.0498, 0.9961, 0.833, 0.0584, 0.9995, 0.8408, 0.0554, 0.9766, 0.8325, 0.0554, 0.9766, 0.8325, 0.0584, 0.9995, 0.8408, 0.0649, 0.9766, 0.8403, 0.0554, 0.9766, 0.8325, 0.0649, 0.9766, 0.8403, 0.0554, 0.8892, 0.8325, 0.0554, 0.8892, 0.8325, 0.0649, 0.9766, 0.8403, 0.0649, 0.8892, 0.8403, 0.0554, 0.8892, 0.8325, 0.0649, 0.8892, 0.8403, 0.0554, 0.7759, 0.8325, 0.0554, 0.7759, 0.8325, 0.0649, 0.8892, 0.8403, 0.0649, 0.7759, 0.8403, 0.0159, 0.7334, 0.835, 0.0186, 0.7256, 0.8428, 0, 0.7324, 0.8354, 0, 0.7324, 0.8354, 0.0186, 0.7256, 0.8428, 0, 0.7241, 0.8438, 0.0185, 1.0195, 0.835, 0.0209, 1.0283, 0.8428, 0.0353, 1.0127, 0.8335, 0.0353, 1.0127, 0.8335, 0.0209, 1.0283, 0.8428, 0.0407, 1.0195, 0.8418, 0.0472, 0.7578, 0.833, 0.0546, 0.7534, 0.8408, 0.0348, 0.7437, 0.8335, 0.0348, 0.7437, 0.8335, 0.0546, 0.7534, 0.8408, 0.0404, 0.7368, 0.8418, 0, 1.0205, 0.8354, 0, 1.0293, 0.8438, 0.0185, 1.0195, 0.835, 0.0185, 1.0195, 0.835, 0, 1.0293, 0.8438, 0.0209, 1.0283, 0.8428, 0.0353, 1.0127, 0.8335, 0.0407, 1.0195, 0.8418, 0.0498, 0.9961, 0.833, 0.0498, 0.9961, 0.833, 0.0407, 1.0195, 0.8418, 0.0584, 0.9995, 0.8408, 0.0554, 0.7759, 0.8325, 0.0649, 0.7759, 0.8403, 0.0472, 0.7578, 0.833, 0.0472, 0.7578, 0.833, 0.0649, 0.7759, 0.8403, 0.0546, 0.7534, 0.8408, 0.0348, 0.7437, 0.8335, 0.0404, 0.7368, 0.8418, 0.0159, 0.7334, 0.835, 0.0159, 0.7334, 0.835, 0.0404, 0.7368, 0.8418, 0.0186, 0.7256, 0.8428, 0.0898, 1.0078, 0.9121, 0.0898, 1.0635, 0.9121, 0.1787, 1.0635, 0.8989, 0.0898, 0.7759, 0.9121, 0.1787, 0.8022, 0.8989, 0.0898, 0.7432, 0.9121, 0.0898, 0.7432, 0.9121, 0.1787, 0.8022, 0.8989, 0.1787, 0.7153, 0.8989, 0.3625, 1.1338, 0.519, 0.3591, 1.1221, 0.5127, 0.3052, 1.1367, 0.5532, 0.3052, 1.1367, 0.5532, 0.3591, 1.1221, 0.5127, 0.2988, 1.126, 0.5488, 0.3484, 0.729, 0.5293, 0.3494, 0.7144, 0.5386, 0.2866, 0.7324, 0.5659, 0.2866, 0.7324, 0.5659, 0.3494, 0.7144, 0.5386, 0.2908, 0.7178, 0.5728, 0.1493, 0.8984, 0.6226, 0.1392, 0.9023, 0.6348, 0.1523, 0.9692, 0.6221, 0.1523, 0.9692, 0.6221, 0.1392, 0.9023, 0.6348, 0.142, 0.9688, 0.6338, 0.1677, 0.8252, 0.6177, 0.1555, 0.8379, 0.6304, 0.1493, 0.8984, 0.6226, 0.1493, 0.8984, 0.6226, 0.1555, 0.8379, 0.6304, 0.1392, 0.9023, 0.6348, 0.1769, 1.041, 0.6147, 0.1635, 1.0303, 0.6289, 0.2064, 1.084, 0.5991, 0.2064, 1.084, 0.5991, 0.1635, 1.0303, 0.6289, 0.2007, 1.082, 0.6123, 0.3052, 1.1367, 0.5532, 0.2988, 1.126, 0.5488, 0.2496, 1.1191, 0.5864, 0.2496, 1.1191, 0.5864, 0.2988, 1.126, 0.5488, 0.2368, 1.1064, 0.5845, 0.4836, 1.0117, 0.4346, 0.4646, 1.0273, 0.4404, 0.4573, 1.0674, 0.457, 0.4573, 1.0674, 0.457, 0.4646, 1.0273, 0.4404, 0.4441, 1.0674, 0.4553, 0.1523, 0.9692, 0.6221, 0.142, 0.9688, 0.6338, 0.1769, 1.041, 0.6147, 0.1769, 1.041, 0.6147, 0.142, 0.9688, 0.6338, 0.1635, 1.0303, 0.6289, 0.4465, 0.7676, 0.4675, 0.4326, 0.77, 0.4668, 0.4766, 0.8188, 0.4404, 0.4766, 0.8188, 0.4404, 0.4326, 0.77, 0.4668, 0.4565, 0.8091, 0.4473, 0.4766, 0.8188, 0.4404, 0.4565, 0.8091, 0.4473, 0.4919, 0.8809, 0.4246, 0.4919, 0.8809, 0.4246, 0.4565, 0.8091, 0.4473, 0.4749, 0.8813, 0.4292, 0.4944, 0.9478, 0.4219, 0.4775, 0.9531, 0.4265, 0.4836, 1.0117, 0.4346, 0.4836, 1.0117, 0.4346, 0.4775, 0.9531, 0.4265, 0.4646, 1.0273, 0.4404, 0.1892, 0.7886, 0.6094, 0.1882, 0.7827, 0.6191, 0.1677, 0.8252, 0.6177, 0.1677, 0.8252, 0.6177, 0.1882, 0.7827, 0.6191, 0.1555, 0.8379, 0.6304, 0.4919, 0.8809, 0.4246, 0.4749, 0.8813, 0.4292, 0.4944, 0.9478, 0.4219, 0.4944, 0.9478, 0.4219, 0.4749, 0.8813, 0.4292, 0.4775, 0.9531, 0.4265, 0.4326, 0.77, 0.4668, 0.4465, 0.7676, 0.4675, 0.4089, 0.749, 0.4873, 0.4089, 0.749, 0.4873, 0.4465, 0.7676, 0.4675, 0.4033, 0.7319, 0.502, 0.2496, 1.1191, 0.5864, 0.2368, 1.1064, 0.5845, 0.2007, 1.082, 0.6123, 0.2007, 1.082, 0.6123, 0.2368, 1.1064, 0.5845, 0.2064, 1.084, 0.5991, 0.4158, 1.1104, 0.4873, 0.4182, 1.0957, 0.4761, 0.3625, 1.1338, 0.519, 0.3625, 1.1338, 0.519, 0.4182, 1.0957, 0.4761, 0.3591, 1.1221, 0.5127, 0.4573, 1.0674, 0.457, 0.4441, 1.0674, 0.4553, 0.4158, 1.1104, 0.4873, 0.4158, 1.1104, 0.4873, 0.4441, 1.0674, 0.4553, 0.4182, 1.0957, 0.4761, 0.4089, 0.749, 0.4873, 0.4033, 0.7319, 0.502, 0.3484, 0.729, 0.5293, 0.3484, 0.729, 0.5293, 0.4033, 0.7319, 0.502, 0.3494, 0.7144, 0.5386, 0.2229, 0.7593, 0.5967, 0.2358, 0.7412, 0.6006, 0.1892, 0.7886, 0.6094, 0.1892, 0.7886, 0.6094, 0.2358, 0.7412, 0.6006, 0.1882, 0.7827, 0.6191, 0.2866, 0.7324, 0.5659, 0.2908, 0.7178, 0.5728, 0.2229, 0.7593, 0.5967, 0.2229, 0.7593, 0.5967, 0.2908, 0.7178, 0.5728, 0.2358, 0.7412, 0.6006, 0.3506, 0.4668, 0.8467, 0.3506, 0.5498, 0.8467, 0.4319, 0.4668, 0.8081, 0.4319, 0.4668, 0.8081, 0.3506, 0.5498, 0.8467, 0.4319, 0.5498, 0.8081, 0.2659, 0.4668, 0.877, 0.2659, 0.5498, 0.877, 0.3506, 0.4668, 0.8467, 0.3506, 0.4668, 0.8467, 0.2659, 0.5498, 0.877, 0.3506, 0.5498, 0.8467, 0, 0.5576, 0.9165, 0, 0.6279, 0.9165, 0.0898, 0.5576, 0.9121, 0.0898, 0.5576, 0.9121, 0, 0.6279, 0.9165, 0.0898, 0.6279, 0.9121, 0.6479, 0.5576, -0.6479, 0.6479, 0.6279, -0.6479, 0.5811, 0.5576, -0.7085, 0.5811, 0.5576, -0.7085, 0.6479, 0.6279, -0.6479, 0.5811, 0.6279, -0.7085, 0.6479, 0.5576, 0.6479, 0.6479, 0.6279, 0.6479, 0.7085, 0.5576, 0.5811, 0.7085, 0.5576, 0.5811, 0.6479, 0.6279, 0.6479, 0.7085, 0.6279, 0.5811, 0.4319, 0.5498, 0.8081, 0.4319, 0.6279, 0.8081, 0.5024, 0.5576, 0.7661, 0.5024, 0.5576, 0.7661, 0.4319, 0.6279, 0.8081, 0.5088, 0.6279, 0.7617, 0.5811, 0.5576, -0.7085, 0.5811, 0.6279, -0.7085, 0.5088, 0.5576, -0.7617, 0.5088, 0.5576, -0.7617, 0.5811, 0.6279, -0.7085, 0.5088, 0.6279, -0.7617, 0.7085, 0.5576, 0.5811, 0.7085, 0.6279, 0.5811, 0.7617, 0.5576, 0.5088, 0.7617, 0.5576, 0.5088, 0.7085, 0.6279, 0.5811, 0.7617, 0.6279, 0.5088, 0.7617, 0.5576, -0.5088, 0.7617, 0.6279, -0.5088, 0.7085, 0.5576, -0.5811, 0.7085, 0.5576, -0.5811, 0.7617, 0.6279, -0.5088, 0.7085, 0.6279, -0.5811, 0.3506, 0.5576, -0.8467, 0.3506, 0.6279, -0.8467, 0.2659, 0.5576, -0.877, 0.2659, 0.5576, -0.877, 0.3506, 0.6279, -0.8467, 0.2659, 0.6279, -0.877, 0.0898, 0.5576, 0.9121, 0.0898, 0.6279, 0.9121, 0.1864, 0.5576, 0.897, 0.1864, 0.5576, 0.897, 0.0898, 0.6279, 0.9121, 0.1787, 0.6279, 0.8989, 0.8467, 0.5576, 0.3506, 0.8467, 0.6279, 0.3506, 0.877, 0.5576, 0.2659, 0.877, 0.5576, 0.2659, 0.8467, 0.6279, 0.3506, 0.877, 0.6279, 0.2659, 0.8081, 0.5576, 0.4319, 0.8081, 0.6279, 0.4319, 0.8467, 0.5576, 0.3506, 0.8467, 0.5576, 0.3506, 0.8081, 0.6279, 0.4319, 0.8467, 0.6279, 0.3506, 0.7617, 0.5576, 0.5088, 0.7617, 0.6279, 0.5088, 0.8081, 0.5576, 0.4319, 0.8081, 0.5576, 0.4319, 0.7617, 0.6279, 0.5088, 0.8081, 0.6279, 0.4319, 0.8081, 0.5576, -0.4319, 0.8081, 0.6279, -0.4319, 0.7617, 0.5576, -0.5088, 0.7617, 0.5576, -0.5088, 0.8081, 0.6279, -0.4319, 0.7617, 0.6279, -0.5088, 0.1864, 0.4031, 0.897, 0.1864, 0.4668, 0.897, 0.2659, 0.4031, 0.877, 0.2659, 0.4031, 0.877, 0.1864, 0.4668, 0.897, 0.2659, 0.4668, 0.877, 0.5024, 0.5576, 0.7661, 0.5088, 0.6279, 0.7617, 0.5811, 0.5576, 0.7085, 0.5811, 0.5576, 0.7085, 0.5088, 0.6279, 0.7617, 0.5811, 0.6279, 0.7085, 0.8989, 0.5576, 0.1787, 0.8989, 0.6279, 0.1787, 0.9121, 0.5576, 0.0898, 0.9121, 0.5576, 0.0898, 0.8989, 0.6279, 0.1787, 0.9121, 0.6279, 0.0898, 0.8989, 0.5576, -0.1787, 0.8989, 0.6279, -0.1787, 0.877, 0.5576, -0.2659, 0.877, 0.5576, -0.2659, 0.8989, 0.6279, -0.1787, 0.877, 0.6279, -0.2659, 0.1864, 0.5576, 0.897, 0.1787, 0.6279, 0.8989, 0.2659, 0.5498, 0.877, 0.2659, 0.5498, 0.877, 0.1787, 0.6279, 0.8989, 0.2659, 0.6279, 0.877, 0.7085, 0.5576, -0.5811, 0.7085, 0.6279, -0.5811, 0.6479, 0.5576, -0.6479, 0.6479, 0.5576, -0.6479, 0.7085, 0.6279, -0.5811, 0.6479, 0.6279, -0.6479, 0.5811, 0.5576, 0.7085, 0.5811, 0.6279, 0.7085, 0.6479, 0.5576, 0.6479, 0.6479, 0.5576, 0.6479, 0.5811, 0.6279, 0.7085, 0.6479, 0.6279, 0.6479, 0.5088, 0.5576, -0.7617, 0.5088, 0.6279, -0.7617, 0.4319, 0.5576, -0.8081, 0.4319, 0.5576, -0.8081, 0.5088, 0.6279, -0.7617, 0.4319, 0.6279, -0.8081, 0.8467, 0.5576, -0.3506, 0.8467, 0.6279, -0.3506, 0.8081, 0.5576, -0.4319, 0.8081, 0.5576, -0.4319, 0.8467, 0.6279, -0.3506, 0.8081, 0.6279, -0.4319, 0.4319, 0.5576, -0.8081, 0.4319, 0.6279, -0.8081, 0.3506, 0.5576, -0.8467, 0.3506, 0.5576, -0.8467, 0.4319, 0.6279, -0.8081, 0.3506, 0.6279, -0.8467, 0.877, 0.5576, -0.2659, 0.877, 0.6279, -0.2659, 0.8467, 0.5576, -0.3506, 0.8467, 0.5576, -0.3506, 0.877, 0.6279, -0.2659, 0.8467, 0.6279, -0.3506, 0.3506, 0.4031, 0.8467, 0.3506, 0.4668, 0.8467, 0.4319, 0.4031, 0.8081, 0.4319, 0.4031, 0.8081, 0.3506, 0.4668, 0.8467, 0.4319, 0.4668, 0.8081, 0.1787, 0.5576, -0.8989, 0.1787, 0.6279, -0.8989, 0.0898, 0.5576, -0.9121, 0.0898, 0.5576, -0.9121, 0.1787, 0.6279, -0.8989, 0.0898, 0.6279, -0.9121, 0.2659, 0.4031, 0.877, 0.2659, 0.4668, 0.877, 0.3506, 0.4031, 0.8467, 0.3506, 0.4031, 0.8467, 0.2659, 0.4668, 0.877, 0.3506, 0.4668, 0.8467, 0.9121, 0.5576, 0.0898, 0.9121, 0.6279, 0.0898, 0.9165, 0.5576, 0, 0.9165, 0.5576, 0, 0.9121, 0.6279, 0.0898, 0.9165, 0.6279, 0, 0.2659, 0.5576, -0.877, 0.2659, 0.6279, -0.877, 0.1787, 0.5576, -0.8989, 0.1787, 0.5576, -0.8989, 0.2659, 0.6279, -0.877, 0.1787, 0.6279, -0.8989, 0.877, 0.5576, 0.2659, 0.877, 0.6279, 0.2659, 0.8989, 0.5576, 0.1787, 0.8989, 0.5576, 0.1787, 0.877, 0.6279, 0.2659, 0.8989, 0.6279, 0.1787, 0.0898, 0.5576, -0.9121, 0.0898, 0.6279, -0.9121, 0, 0.5576, -0.9165, 0, 0.5576, -0.9165, 0.0898, 0.6279, -0.9121, 0, 0.6279, -0.9165, 0.4319, 0.4031, 0.8081, 0.4319, 0.4668, 0.8081, 0.5024, 0.4031, 0.7661, 0.5024, 0.4031, 0.7661, 0.4319, 0.4668, 0.8081, 0.5024, 0.4668, 0.7661, 0.1772, 0.542, 0.8911, 0.1694, 0.5498, 0.8921, 0.1864, 0.5576, 0.897, 0.5024, 0.5576, 0.7661, 0.5107, 0.5498, 0.7505, 0.5049, 0.542, 0.7554, 0.1864, 0.4031, 0.897, 0.1844, 0.395, 0.8892, 0.1769, 0.4031, 0.8911, 0.5049, 0.4031, 0.7554, 0.4983, 0.395, 0.7593, 0.5024, 0.4031, 0.7661, 0.6479, 0.5576, -0.6479, 0.6426, 0.5498, -0.6426, 0.7085, 0.5576, -0.5811, 0.7085, 0.5576, -0.5811, 0.6426, 0.5498, -0.6426, 0.7021, 0.5498, -0.5762, 0.6479, 0.5576, 0.6479, 0.6426, 0.5498, 0.6426, 0.5811, 0.5576, 0.7085, 0.5811, 0.5576, 0.7085, 0.6426, 0.5498, 0.6426, 0.5762, 0.5498, 0.7021, 0.5811, 0.5576, 0.7085, 0.5762, 0.5498, 0.7021, 0.5024, 0.5576, 0.7661, 0.5024, 0.5576, 0.7661, 0.5762, 0.5498, 0.7021, 0.5107, 0.5498, 0.7505, 0.5811, 0.5576, -0.7085, 0.5762, 0.5498, -0.7021, 0.6479, 0.5576, -0.6479, 0.6479, 0.5576, -0.6479, 0.5762, 0.5498, -0.7021, 0.6426, 0.5498, -0.6426, 0.7085, 0.5576, 0.5811, 0.7021, 0.5498, 0.5762, 0.6479, 0.5576, 0.6479, 0.6479, 0.5576, 0.6479, 0.7021, 0.5498, 0.5762, 0.6426, 0.5498, 0.6426, 0.7617, 0.5576, -0.5088, 0.7554, 0.5498, -0.5044, 0.8081, 0.5576, -0.4319, 0.8081, 0.5576, -0.4319, 0.7554, 0.5498, -0.5044, 0.8013, 0.5498, -0.4282, 0.3506, 0.5576, -0.8467, 0.3477, 0.5498, -0.8394, 0.4319, 0.5576, -0.8081, 0.4319, 0.5576, -0.8081, 0.3477, 0.5498, -0.8394, 0.4282, 0.5498, -0.8013, 0.8467, 0.5576, 0.3506, 0.8394, 0.5498, 0.3477, 0.8081, 0.5576, 0.4319, 0.8081, 0.5576, 0.4319, 0.8394, 0.5498, 0.3477, 0.8013, 0.5498, 0.4282, 0.8081, 0.5576, 0.4319, 0.8013, 0.5498, 0.4282, 0.7617, 0.5576, 0.5088, 0.7617, 0.5576, 0.5088, 0.8013, 0.5498, 0.4282, 0.7554, 0.5498, 0.5044, 0.7617, 0.5576, 0.5088, 0.7554, 0.5498, 0.5044, 0.7085, 0.5576, 0.5811, 0.7085, 0.5576, 0.5811, 0.7554, 0.5498, 0.5044, 0.7021, 0.5498, 0.5762, 0.8081, 0.5576, -0.4319, 0.8013, 0.5498, -0.4282, 0.8467, 0.5576, -0.3506, 0.8467, 0.5576, -0.3506, 0.8013, 0.5498, -0.4282, 0.8394, 0.5498, -0.3477, 0, 0.5576, -0.9165, 0, 0.5498, -0.9087, 0.0898, 0.5576, -0.9121, 0.0898, 0.5576, -0.9121, 0, 0.5498, -0.9087, 0.0891, 0.5498, -0.9043, 0.8989, 0.5576, 0.1787, 0.8911, 0.5498, 0.1772, 0.877, 0.5576, 0.2659, 0.877, 0.5576, 0.2659, 0.8911, 0.5498, 0.1772, 0.8691, 0.5498, 0.2637, 0.9087, 0.5498, 0, 0.9165, 0.5576, 0, 0.9043, 0.5498, -0.0891, 0.9043, 0.5498, -0.0891, 0.9165, 0.5576, 0, 0.9121, 0.5576, -0.0898, 0.8989, 0.5576, -0.1787, 0.8911, 0.5498, -0.1772, 0.9121, 0.5576, -0.0898, 0.9121, 0.5576, -0.0898, 0.8911, 0.5498, -0.1772, 0.9043, 0.5498, -0.0891, 0.1864, 0.5576, 0.897, 0.1694, 0.5498, 0.8921, 0.0898, 0.5576, 0.9121, 0.0898, 0.5576, 0.9121, 0.1694, 0.5498, 0.8921, 0.0891, 0.5498, 0.9043, 0.7085, 0.5576, -0.5811, 0.7021, 0.5498, -0.5762, 0.7617, 0.5576, -0.5088, 0.7617, 0.5576, -0.5088, 0.7021, 0.5498, -0.5762, 0.7554, 0.5498, -0.5044, 0.0898, 0.5576, 0.9121, 0.0891, 0.5498, 0.9043, 0, 0.5576, 0.9165, 0, 0.5576, 0.9165, 0.0891, 0.5498, 0.9043, 0, 0.5498, 0.9087, 0.5088, 0.5576, -0.7617, 0.5044, 0.5498, -0.7554, 0.5811, 0.5576, -0.7085, 0.5811, 0.5576, -0.7085, 0.5044, 0.5498, -0.7554, 0.5762, 0.5498, -0.7021, 0.8467, 0.5576, -0.3506, 0.8394, 0.5498, -0.3477, 0.877, 0.5576, -0.2659, 0.877, 0.5576, -0.2659, 0.8394, 0.5498, -0.3477, 0.8691, 0.5498, -0.2637, 0.4319, 0.5576, -0.8081, 0.4282, 0.5498, -0.8013, 0.5088, 0.5576, -0.7617, 0.5088, 0.5576, -0.7617, 0.4282, 0.5498, -0.8013, 0.5044, 0.5498, -0.7554, 0.877, 0.5576, -0.2659, 0.8691, 0.5498, -0.2637, 0.8989, 0.5576, -0.1787, 0.8989, 0.5576, -0.1787, 0.8691, 0.5498, -0.2637, 0.8911, 0.5498, -0.1772, 0.9165, 0.5576, 0, 0.9087, 0.5498, 0, 0.9121, 0.5576, 0.0898, 0.9121, 0.5576, 0.0898, 0.9087, 0.5498, 0, 0.9043, 0.5498, 0.0891, 0.1787, 0.5576, -0.8989, 0.1772, 0.5498, -0.8911, 0.2659, 0.5576, -0.877, 0.2659, 0.5576, -0.877, 0.1772, 0.5498, -0.8911, 0.2637, 0.5498, -0.8691, 0.9121, 0.5576, 0.0898, 0.9043, 0.5498, 0.0891, 0.8989, 0.5576, 0.1787, 0.8989, 0.5576, 0.1787, 0.9043, 0.5498, 0.0891, 0.8911, 0.5498, 0.1772, 0.2659, 0.5576, -0.877, 0.2637, 0.5498, -0.8691, 0.3506, 0.5576, -0.8467, 0.3506, 0.5576, -0.8467, 0.2637, 0.5498, -0.8691, 0.3477, 0.5498, -0.8394, 0.877, 0.5576, 0.2659, 0.8691, 0.5498, 0.2637, 0.8467, 0.5576, 0.3506, 0.8467, 0.5576, 0.3506, 0.8691, 0.5498, 0.2637, 0.8394, 0.5498, 0.3477, 0.0898, 0.5576, -0.9121, 0.0891, 0.5498, -0.9043, 0.1787, 0.5576, -0.8989, 0.1787, 0.5576, -0.8989, 0.0891, 0.5498, -0.9043, 0.1772, 0.5498, -0.8911, 0.1772, 0.542, 0.8911, 0.1864, 0.5576, 0.897, 0.1769, 0.4668, 0.8911, 0.1769, 0.4668, 0.8911, 0.1864, 0.5576, 0.897, 0.1864, 0.4668, 0.897, 0.5049, 0.4668, 0.7554, 0.5024, 0.4668, 0.7661, 0.5049, 0.542, 0.7554, 0.5049, 0.542, 0.7554, 0.5024, 0.4668, 0.7661, 0.5024, 0.5576, 0.7661, 0.2659, 0.4031, 0.877, 0.2637, 0.395, 0.8691, 0.1864, 0.4031, 0.897, 0.1864, 0.4031, 0.897, 0.2637, 0.395, 0.8691, 0.1844, 0.395, 0.8892, 0.5024, 0.4031, 0.7661, 0.4983, 0.395, 0.7593, 0.4319, 0.4031, 0.8081, 0.4319, 0.4031, 0.8081, 0.4983, 0.395, 0.7593, 0.4282, 0.395, 0.8013, 0.4319, 0.4031, 0.8081, 0.4282, 0.395, 0.8013, 0.3506, 0.4031, 0.8467, 0.3506, 0.4031, 0.8467, 0.4282, 0.395, 0.8013, 0.3477, 0.395, 0.8394, 0.3506, 0.4031, 0.8467, 0.3477, 0.395, 0.8394, 0.2659, 0.4031, 0.877, 0.2659, 0.4031, 0.877, 0.3477, 0.395, 0.8394, 0.2637, 0.395, 0.8691, 0.1769, 0.4668, 0.8911, 0.1864, 0.4668, 0.897, 0.1769, 0.4031, 0.8911, 0.1769, 0.4031, 0.8911, 0.1864, 0.4668, 0.897, 0.1864, 0.4031, 0.897, 0.5049, 0.4031, 0.7554, 0.5024, 0.4031, 0.7661, 0.5049, 0.4668, 0.7554, 0.5049, 0.4668, 0.7554, 0.5024, 0.4031, 0.7661, 0.5024, 0.4668, 0.7661, 0.9121, 0.5576, -0.0898, 0.9121, 0.6279, -0.0898, 0.8989, 0.5576, -0.1787, 0.8989, 0.5576, -0.1787, 0.9121, 0.6279, -0.0898, 0.8989, 0.6279, -0.1787, 0.772, 1.4336, -0.076, 0.7734, 1.4336, -0.0522, 0.7129, 1.498, -0.0702, 0.7129, 1.498, -0.0702, 0.7734, 1.4336, -0.0522, 0.6782, 1.5283, -0.0544, 0.8989, 1.2119, 0.0466, 0.9414, 1.2539, 0.0437, 0.9009, 1.2041, 0.0398, 0.9009, 1.2041, 0.0398, 0.9414, 1.2539, 0.0437, 0.9448, 1.2471, 0.0369, 0.8599, 1.4072, 0.044, 0.8208, 1.3818, 0.0468, 0.8057, 1.4834, 0.0439, 0.8057, 1.4834, 0.0439, 0.8208, 1.3818, 0.0468, 0.7593, 1.46, 0.0466, 0.7466, 1.5508, 0.0432, 0.8057, 1.4834, 0.0439, 0.6875, 1.5293, 0.0468, 0.6875, 1.5293, 0.0468, 0.8057, 1.4834, 0.0439, 0.7593, 1.46, 0.0466, 0.8931, 1.209, -0.0529, 0.8628, 1.293, -0.0481, 0.8892, 1.2188, -0.0876, 0.8892, 1.2188, -0.0876, 0.8628, 1.293, -0.0481, 0.8608, 1.293, -0.0848, 0.8892, 1.2188, -0.0876, 0.9063, 1.1416, -0.0892, 0.8931, 1.209, -0.0529, 0.8057, 1.4834, -0.0439, 0.7778, 1.4404, -0.0451, 0.8604, 1.4072, -0.0398, 0.8604, 1.4072, -0.0398, 0.7778, 1.4404, -0.0451, 0.8208, 1.3809, -0.0412, 0.8159, 1.375, 0.0541, 0.8218, 1.3652, 0.0809, 0.7573, 1.4512, 0.0539, 0.7573, 1.4512, 0.0539, 0.8218, 1.3652, 0.0809, 0.772, 1.4336, 0.076, 0.8608, 1.293, 0.0848, 0.8218, 1.3652, 0.0809, 0.8623, 1.293, 0.0547, 0.8623, 1.293, 0.0547, 0.8218, 1.3652, 0.0809, 0.8159, 1.375, 0.0541, 0.8931, 1.209, 0.0541, 0.9063, 1.1416, 0.0892, 0.8892, 1.2188, 0.0876, 0.8931, 1.209, -0.0529, 0.9063, 1.1416, -0.0892, 0.8965, 1.1963, -0.0427, 0.9463, 1.2461, 0, 0.9028, 1.2031, 0, 0.9448, 1.2471, 0.0369, 0.9448, 1.2471, 0.0369, 0.9028, 1.2031, 0, 0.9009, 1.2041, 0.0398, 0.9448, 1.2471, -0.0369, 0.9009, 1.2041, -0.0396, 0.9463, 1.2461, 0, 0.9463, 1.2461, 0, 0.9009, 1.2041, -0.0396, 0.9028, 1.2031, 0, 0.6782, 1.5283, 0.0542, 0.645, 1.5557, 0.0635, 0.6694, 1.5352, 0.0443, 0.7422, 1.5566, -0.0383, 0.6816, 1.5342, -0.0405, 0.7466, 1.5508, -0.045, 0.7466, 1.5508, -0.045, 0.6816, 1.5342, -0.0405, 0.6875, 1.5293, -0.0472, 0.6479, 1.5557, 0, 0.645, 1.5557, -0.0635, 0.6719, 1.5352, 0, 0.6719, 1.5352, 0, 0.645, 1.5557, -0.0635, 0.6694, 1.5352, -0.0445, 0.7129, 1.498, -0.0702, 0.6782, 1.5283, -0.0544, 0.645, 1.5557, -0.0635, 0.8984, 1.1953, 0, 0.9106, 1.1416, 0, 0.8965, 1.1963, 0.0429, 0.8965, 1.1963, 0.0429, 0.9106, 1.1416, 0, 0.9063, 1.1416, 0.0892, 0.6816, 1.5342, 0.0401, 0.7422, 1.5566, 0.0363, 0.6875, 1.5293, 0.0468, 0.6875, 1.5293, 0.0468, 0.7422, 1.5566, 0.0363, 0.7466, 1.5508, 0.0432, 0.7446, 1.5547, 0, 0.6841, 1.5342, 0, 0.7422, 1.5566, -0.0383, 0.7422, 1.5566, -0.0383, 0.6841, 1.5342, 0, 0.6816, 1.5342, -0.0405, 0.6875, 1.5293, -0.0472, 0.7778, 1.4404, -0.0451, 0.7466, 1.5508, -0.045, 0.7466, 1.5508, -0.045, 0.7778, 1.4404, -0.0451, 0.8057, 1.4834, -0.0439, 0.8628, 1.293, -0.0481, 0.8164, 1.375, -0.0482, 0.8608, 1.293, -0.0848, 0.8608, 1.293, -0.0848, 0.8164, 1.375, -0.0482, 0.8218, 1.3652, -0.0809, 0.9063, 1.1416, -0.0892, 0.9106, 1.1416, 0, 0.8965, 1.1963, -0.0427, 0.8965, 1.1963, -0.0427, 0.9106, 1.1416, 0, 0.8984, 1.1953, 0, 0.8931, 1.209, 0.0541, 0.8892, 1.2188, 0.0876, 0.8623, 1.293, 0.0547, 0.8623, 1.293, 0.0547, 0.8892, 1.2188, 0.0876, 0.8608, 1.293, 0.0848, 0.8931, 1.209, 0.0541, 0.8965, 1.1963, 0.0429, 0.9063, 1.1416, 0.0892, 0.9414, 1.2539, 0.0437, 0.8989, 1.2119, 0.0466, 0.9063, 1.3291, 0.0444, 0.9063, 1.3291, 0.0444, 0.8989, 1.2119, 0.0466, 0.8682, 1.2979, 0.0473, 0.9063, 1.3291, 0.0444, 0.8682, 1.2979, 0.0473, 0.8599, 1.4072, 0.044, 0.8599, 1.4072, 0.044, 0.8682, 1.2979, 0.0473, 0.8208, 1.3818, 0.0468, 0.8604, 1.4072, -0.0398, 0.8208, 1.3809, -0.0412, 0.9067, 1.3281, -0.0397, 0.9067, 1.3281, -0.0397, 0.8208, 1.3809, -0.0412, 0.8687, 1.2969, -0.0411, 0.8164, 1.375, -0.0482, 0.8208, 1.3809, -0.0412, 0.7734, 1.4336, -0.0522, 0.7734, 1.4336, -0.0522, 0.8208, 1.3809, -0.0412, 0.7778, 1.4404, -0.0451, 0.7573, 1.4512, 0.0539, 0.7593, 1.46, 0.0466, 0.8159, 1.375, 0.0541, 0.8159, 1.375, 0.0541, 0.7593, 1.46, 0.0466, 0.8208, 1.3818, 0.0468, 0.8623, 1.293, 0.0547, 0.8682, 1.2979, 0.0473, 0.8931, 1.209, 0.0541, 0.8931, 1.209, 0.0541, 0.8682, 1.2979, 0.0473, 0.8989, 1.2119, 0.0466, 0.8931, 1.209, -0.0529, 0.8989, 1.2119, -0.0459, 0.8628, 1.293, -0.0481, 0.8628, 1.293, -0.0481, 0.8989, 1.2119, -0.0459, 0.8687, 1.2969, -0.0411, 0.8965, 1.1963, -0.0427, 0.9009, 1.2041, -0.0396, 0.8931, 1.209, -0.0529, 0.8931, 1.209, -0.0529, 0.9009, 1.2041, -0.0396, 0.8989, 1.2119, -0.0459, 0.9009, 1.2041, 0.0398, 0.8965, 1.1963, 0.0429, 0.8989, 1.2119, 0.0466, 0.8989, 1.2119, 0.0466, 0.8965, 1.1963, 0.0429, 0.8931, 1.209, 0.0541, 0.8984, 1.1953, 0, 0.9028, 1.2031, 0, 0.8965, 1.1963, -0.0427, 0.8965, 1.1963, -0.0427, 0.9028, 1.2031, 0, 0.9009, 1.2041, -0.0396, 0.6875, 1.5293, 0.0468, 0.6782, 1.5283, 0.0542, 0.6816, 1.5342, 0.0401, 0.6816, 1.5342, 0.0401, 0.6782, 1.5283, 0.0542, 0.6694, 1.5352, 0.0443, 0.6782, 1.5283, 0.0542, 0.6875, 1.5293, 0.0468, 0.7573, 1.4512, 0.0539, 0.7573, 1.4512, 0.0539, 0.6875, 1.5293, 0.0468, 0.7593, 1.46, 0.0466, 0.7734, 1.4336, -0.0522, 0.7778, 1.4404, -0.0451, 0.6782, 1.5283, -0.0544, 0.6782, 1.5283, -0.0544, 0.7778, 1.4404, -0.0451, 0.6875, 1.5293, -0.0472, 0.6782, 1.5283, -0.0544, 0.6875, 1.5293, -0.0472, 0.6694, 1.5352, -0.0445, 0.6694, 1.5352, -0.0445, 0.6875, 1.5293, -0.0472, 0.6816, 1.5342, -0.0405, 0.6694, 1.5352, -0.0445, 0.6816, 1.5342, -0.0405, 0.6719, 1.5352, 0, 0.6719, 1.5352, 0, 0.6816, 1.5342, -0.0405, 0.6841, 1.5342, 0, 0.8208, 1.3809, -0.0412, 0.8164, 1.375, -0.0482, 0.8687, 1.2969, -0.0411, 0.8687, 1.2969, -0.0411, 0.8164, 1.375, -0.0482, 0.8628, 1.293, -0.0481, 0.8682, 1.2979, 0.0473, 0.8623, 1.293, 0.0547, 0.8208, 1.3818, 0.0468, 0.8208, 1.3818, 0.0468, 0.8623, 1.293, 0.0547, 0.8159, 1.375, 0.0541, 0.8965, 1.1963, 0.0429, 0.9009, 1.2041, 0.0398, 0.8984, 1.1953, 0, 0.8984, 1.1953, 0, 0.9009, 1.2041, 0.0398, 0.9028, 1.2031, 0, 0.6816, 1.5342, 0.0401, 0.6694, 1.5352, 0.0443, 0.6841, 1.5342, 0, 0.6841, 1.5342, 0, 0.6694, 1.5352, 0.0443, 0.6719, 1.5352, 0, 0.8218, 1.3652, -0.0809, 0.8164, 1.375, -0.0482, 0.772, 1.4336, -0.076, 0.772, 1.4336, -0.076, 0.8164, 1.375, -0.0482, 0.7734, 1.4336, -0.0522 ) +data = PackedVector3Array( 0.4536, 0.8618, 0.6113, 0.4756, 0.8662, 0.6201, 0.4561, 0.8857, 0.6001, 0.4561, 0.8857, 0.6001, 0.4756, 0.8662, 0.6201, 0.4797, 0.8882, 0.6113, 0.4111, 0.8584, 0.605, 0.4326, 0.8594, 0.6069, 0.4111, 0.8833, 0.5923, 0.4111, 0.8833, 0.5923, 0.4326, 0.8594, 0.6069, 0.4341, 0.8838, 0.5942, 0.3689, 0.8618, 0.6113, 0.3896, 0.8594, 0.6069, 0.3665, 0.8857, 0.6001, 0.3665, 0.8857, 0.6001, 0.3896, 0.8594, 0.6069, 0.3884, 0.8838, 0.5942, 0.3271, 0.8721, 0.6323, 0.3469, 0.8662, 0.6201, 0.3215, 0.8921, 0.6265, 0.3215, 0.8921, 0.6265, 0.3469, 0.8662, 0.6201, 0.3428, 0.8882, 0.6113, 0.4578, 0.9077, 0.5942, 0.4824, 0.9087, 0.6069, 0.458, 0.9302, 0.5923, 0.458, 0.9302, 0.5923, 0.4824, 0.9087, 0.6069, 0.4829, 0.9302, 0.605, 0.4111, 0.9067, 0.5859, 0.4348, 0.9067, 0.5884, 0.4111, 0.9302, 0.584, 0.4111, 0.9302, 0.584, 0.4348, 0.9067, 0.5884, 0.4351, 0.9302, 0.5859, 0.3647, 0.9077, 0.5942, 0.3877, 0.9067, 0.5884, 0.3645, 0.9302, 0.5923, 0.3645, 0.9302, 0.5923, 0.3877, 0.9067, 0.5884, 0.3875, 0.9302, 0.5859, 0.3186, 0.9111, 0.6235, 0.3401, 0.9087, 0.6069, 0.3176, 0.9302, 0.6226, 0.3176, 0.9302, 0.6226, 0.3401, 0.9087, 0.6069, 0.3394, 0.9302, 0.605, 0.4578, 0.9531, 0.5942, 0.4824, 0.9517, 0.6069, 0.4561, 0.9751, 0.6001, 0.4561, 0.9751, 0.6001, 0.4824, 0.9517, 0.6069, 0.4797, 0.9727, 0.6113, 0.4111, 0.9541, 0.5859, 0.4348, 0.9541, 0.5884, 0.4111, 0.9771, 0.5923, 0.4111, 0.9771, 0.5923, 0.4348, 0.9541, 0.5884, 0.4341, 0.9771, 0.5942, 0.3647, 0.9531, 0.5942, 0.3877, 0.9541, 0.5884, 0.3665, 0.9751, 0.6001, 0.3665, 0.9751, 0.6001, 0.3877, 0.9541, 0.5884, 0.3884, 0.9771, 0.5942, 0.3186, 0.9497, 0.6235, 0.3401, 0.9517, 0.6069, 0.3215, 0.9688, 0.6265, 0.3215, 0.9688, 0.6265, 0.3401, 0.9517, 0.6069, 0.3428, 0.9727, 0.6113, 0.4536, 0.999, 0.6113, 0.4756, 0.9946, 0.6201, 0.4495, 1.0195, 0.6265, 0.4495, 1.0195, 0.6265, 0.4756, 0.9946, 0.6201, 0.4692, 1.0137, 0.6323, 0.4111, 1.002, 0.605, 0.4326, 1.001, 0.6069, 0.4111, 1.0234, 0.6226, 0.4111, 1.0234, 0.6226, 0.4326, 1.001, 0.6069, 0.4307, 1.0225, 0.6235, 0.3689, 0.999, 0.6113, 0.3896, 1.001, 0.6069, 0.373, 1.0195, 0.6265, 0.373, 1.0195, 0.6265, 0.3896, 1.001, 0.6069, 0.3918, 1.0225, 0.6235, 0.3271, 0.9883, 0.6323, 0.3469, 0.9946, 0.6201, 0.3347, 1.0068, 0.6396, 0.3347, 1.0068, 0.6396, 0.3469, 0.9946, 0.6201, 0.3533, 1.0137, 0.6323, 0.3064, 0.8618, 0.6738, 0.3152, 0.8662, 0.6519, 0.2949, 0.8857, 0.6714, 0.2949, 0.8857, 0.6714, 0.3152, 0.8662, 0.6519, 0.3064, 0.8882, 0.6479, 0.3, 0.8584, 0.7163, 0.3018, 0.8594, 0.6948, 0.2874, 0.8833, 0.7163, 0.2874, 0.8833, 0.7163, 0.3018, 0.8594, 0.6948, 0.2893, 0.8838, 0.6934, 0.3064, 0.8618, 0.7588, 0.3018, 0.8594, 0.7378, 0.2949, 0.8857, 0.7612, 0.2949, 0.8857, 0.7612, 0.3018, 0.8594, 0.7378, 0.2893, 0.8838, 0.7393, 0.3271, 0.8721, 0.8003, 0.3152, 0.8662, 0.7808, 0.3215, 0.8921, 0.8057, 0.3215, 0.8921, 0.8057, 0.3152, 0.8662, 0.7808, 0.3064, 0.8882, 0.7847, 0.2893, 0.9077, 0.6699, 0.3018, 0.9087, 0.645, 0.2874, 0.9302, 0.6694, 0.2874, 0.9302, 0.6694, 0.3018, 0.9087, 0.645, 0.3, 0.9302, 0.6445, 0.281, 0.9067, 0.7163, 0.2832, 0.9067, 0.6929, 0.2788, 0.9302, 0.7163, 0.2788, 0.9302, 0.7163, 0.2832, 0.9067, 0.6929, 0.281, 0.9302, 0.6924, 0.2893, 0.9077, 0.7627, 0.2832, 0.9067, 0.7397, 0.2874, 0.9302, 0.7632, 0.2874, 0.9302, 0.7632, 0.2832, 0.9067, 0.7397, 0.281, 0.9302, 0.7402, 0.3186, 0.9111, 0.8091, 0.3018, 0.9087, 0.7876, 0.3176, 0.9302, 0.8101, 0.3176, 0.9302, 0.8101, 0.3018, 0.9087, 0.7876, 0.3, 0.9302, 0.7881, 0.2893, 0.9531, 0.6699, 0.3018, 0.9517, 0.645, 0.2949, 0.9751, 0.6714, 0.2949, 0.9751, 0.6714, 0.3018, 0.9517, 0.645, 0.3064, 0.9727, 0.6479, 0.281, 0.9541, 0.7163, 0.2832, 0.9541, 0.6929, 0.2874, 0.9771, 0.7163, 0.2874, 0.9771, 0.7163, 0.2832, 0.9541, 0.6929, 0.2893, 0.9771, 0.6934, 0.2893, 0.9531, 0.7627, 0.2832, 0.9541, 0.7397, 0.2949, 0.9751, 0.7612, 0.2949, 0.9751, 0.7612, 0.2832, 0.9541, 0.7397, 0.2893, 0.9771, 0.7393, 0.3186, 0.9497, 0.8091, 0.3018, 0.9517, 0.7876, 0.3215, 0.9688, 0.8057, 0.3215, 0.9688, 0.8057, 0.3018, 0.9517, 0.7876, 0.3064, 0.9727, 0.7847, 0.3064, 0.999, 0.6738, 0.3152, 0.9946, 0.6519, 0.3215, 1.0195, 0.6782, 0.3215, 1.0195, 0.6782, 0.3152, 0.9946, 0.6519, 0.3271, 1.0137, 0.6582, 0.3, 1.002, 0.7163, 0.3018, 1.001, 0.6948, 0.3176, 1.0234, 0.7163, 0.3176, 1.0234, 0.7163, 0.3018, 1.001, 0.6948, 0.3186, 1.0225, 0.6968, 0.3064, 0.999, 0.7588, 0.3018, 1.001, 0.7378, 0.3215, 1.0195, 0.7544, 0.3215, 1.0195, 0.7544, 0.3018, 1.001, 0.7378, 0.3186, 1.0225, 0.7358, 0.3271, 0.9883, 0.8003, 0.3152, 0.9946, 0.7808, 0.3347, 1.0068, 0.7925, 0.3347, 1.0068, 0.7925, 0.3152, 0.9946, 0.7808, 0.3271, 1.0137, 0.7744, 0.3689, 0.8618, 0.8213, 0.3469, 0.8662, 0.8125, 0.3665, 0.8857, 0.8325, 0.3665, 0.8857, 0.8325, 0.3469, 0.8662, 0.8125, 0.3428, 0.8882, 0.8213, 0.4111, 0.8584, 0.8276, 0.3896, 0.8594, 0.8257, 0.4111, 0.8833, 0.8398, 0.4111, 0.8833, 0.8398, 0.3896, 0.8594, 0.8257, 0.3884, 0.8838, 0.8379, 0.4536, 0.8618, 0.8213, 0.4326, 0.8594, 0.8257, 0.4561, 0.8857, 0.8325, 0.4561, 0.8857, 0.8325, 0.4326, 0.8594, 0.8257, 0.4341, 0.8838, 0.8379, 0.4954, 0.8721, 0.8003, 0.4756, 0.8662, 0.8125, 0.5005, 0.8921, 0.8057, 0.5005, 0.8921, 0.8057, 0.4756, 0.8662, 0.8125, 0.4797, 0.8882, 0.8213, 0.3647, 0.9077, 0.8379, 0.3401, 0.9087, 0.8257, 0.3645, 0.9302, 0.8398, 0.3645, 0.9302, 0.8398, 0.3401, 0.9087, 0.8257, 0.3394, 0.9302, 0.8276, 0.4111, 0.9067, 0.8467, 0.3877, 0.9067, 0.8442, 0.4111, 0.9302, 0.8486, 0.4111, 0.9302, 0.8486, 0.3877, 0.9067, 0.8442, 0.3875, 0.9302, 0.8467, 0.4578, 0.9077, 0.8379, 0.4348, 0.9067, 0.8442, 0.458, 0.9302, 0.8398, 0.458, 0.9302, 0.8398, 0.4348, 0.9067, 0.8442, 0.4351, 0.9302, 0.8467, 0.5039, 0.9111, 0.8091, 0.4824, 0.9087, 0.8257, 0.5049, 0.9302, 0.8101, 0.5049, 0.9302, 0.8101, 0.4824, 0.9087, 0.8257, 0.4829, 0.9302, 0.8276, 0.3647, 0.9531, 0.8379, 0.3401, 0.9517, 0.8257, 0.3665, 0.9751, 0.8325, 0.3665, 0.9751, 0.8325, 0.3401, 0.9517, 0.8257, 0.3428, 0.9727, 0.8213, 0.4111, 0.9541, 0.8467, 0.3877, 0.9541, 0.8442, 0.4111, 0.9771, 0.8398, 0.4111, 0.9771, 0.8398, 0.3877, 0.9541, 0.8442, 0.3884, 0.9771, 0.8379, 0.4578, 0.9531, 0.8379, 0.4348, 0.9541, 0.8442, 0.4561, 0.9751, 0.8325, 0.4561, 0.9751, 0.8325, 0.4348, 0.9541, 0.8442, 0.4341, 0.9771, 0.8379, 0.5039, 0.9497, 0.8091, 0.4824, 0.9517, 0.8257, 0.5005, 0.9688, 0.8057, 0.5005, 0.9688, 0.8057, 0.4824, 0.9517, 0.8257, 0.4797, 0.9727, 0.8213, 0.3689, 0.999, 0.8213, 0.3469, 0.9946, 0.8125, 0.373, 1.0195, 0.8057, 0.373, 1.0195, 0.8057, 0.3469, 0.9946, 0.8125, 0.3533, 1.0137, 0.8003, 0.4111, 1.002, 0.8276, 0.3896, 1.001, 0.8257, 0.4111, 1.0234, 0.8101, 0.4111, 1.0234, 0.8101, 0.3896, 1.001, 0.8257, 0.3918, 1.0225, 0.8091, 0.4536, 0.999, 0.8213, 0.4326, 1.001, 0.8257, 0.4495, 1.0195, 0.8057, 0.4495, 1.0195, 0.8057, 0.4326, 1.001, 0.8257, 0.4307, 1.0225, 0.8091, 0.4954, 0.9883, 0.8003, 0.4756, 0.9946, 0.8125, 0.4875, 1.0068, 0.7925, 0.4875, 1.0068, 0.7925, 0.4756, 0.9946, 0.8125, 0.4692, 1.0137, 0.8003, 0.5161, 0.8618, 0.7588, 0.5073, 0.8662, 0.7808, 0.5273, 0.8857, 0.7612, 0.5273, 0.8857, 0.7612, 0.5073, 0.8662, 0.7808, 0.5161, 0.8882, 0.7847, 0.5225, 0.8584, 0.7163, 0.5205, 0.8594, 0.7378, 0.5347, 0.8833, 0.7163, 0.5347, 0.8833, 0.7163, 0.5205, 0.8594, 0.7378, 0.5327, 0.8838, 0.7393, 0.5161, 0.8618, 0.6738, 0.5205, 0.8594, 0.6948, 0.5273, 0.8857, 0.6714, 0.5273, 0.8857, 0.6714, 0.5205, 0.8594, 0.6948, 0.5327, 0.8838, 0.6934, 0.4954, 0.8721, 0.6323, 0.5073, 0.8662, 0.6519, 0.5005, 0.8921, 0.6265, 0.5005, 0.8921, 0.6265, 0.5073, 0.8662, 0.6519, 0.5161, 0.8882, 0.6479, 0.5327, 0.9077, 0.7627, 0.5205, 0.9087, 0.7876, 0.5347, 0.9302, 0.7632, 0.5347, 0.9302, 0.7632, 0.5205, 0.9087, 0.7876, 0.5225, 0.9302, 0.7881, 0.5415, 0.9067, 0.7163, 0.5391, 0.9067, 0.7397, 0.5435, 0.9302, 0.7163, 0.5435, 0.9302, 0.7163, 0.5391, 0.9067, 0.7397, 0.5415, 0.9302, 0.7402, 0.5327, 0.9077, 0.6699, 0.5391, 0.9067, 0.6929, 0.5347, 0.9302, 0.6694, 0.5347, 0.9302, 0.6694, 0.5391, 0.9067, 0.6929, 0.5415, 0.9302, 0.6924, 0.5039, 0.9111, 0.6235, 0.5205, 0.9087, 0.645, 0.5049, 0.9302, 0.6226, 0.5049, 0.9302, 0.6226, 0.5205, 0.9087, 0.645, 0.5225, 0.9302, 0.6445, 0.5327, 0.9531, 0.7627, 0.5205, 0.9517, 0.7876, 0.5273, 0.9751, 0.7612, 0.5273, 0.9751, 0.7612, 0.5205, 0.9517, 0.7876, 0.5161, 0.9727, 0.7847, 0.5415, 0.9541, 0.7163, 0.5391, 0.9541, 0.7397, 0.5347, 0.9771, 0.7163, 0.5347, 0.9771, 0.7163, 0.5391, 0.9541, 0.7397, 0.5327, 0.9771, 0.7393, 0.5327, 0.9531, 0.6699, 0.5391, 0.9541, 0.6929, 0.5273, 0.9751, 0.6714, 0.5273, 0.9751, 0.6714, 0.5391, 0.9541, 0.6929, 0.5327, 0.9771, 0.6934, 0.5039, 0.9497, 0.6235, 0.5205, 0.9517, 0.645, 0.5005, 0.9688, 0.6265, 0.5005, 0.9688, 0.6265, 0.5205, 0.9517, 0.645, 0.5161, 0.9727, 0.6479, 0.5161, 0.999, 0.7588, 0.5073, 0.9946, 0.7808, 0.5005, 1.0195, 0.7544, 0.5005, 1.0195, 0.7544, 0.5073, 0.9946, 0.7808, 0.4954, 1.0137, 0.7744, 0.5225, 1.002, 0.7163, 0.5205, 1.001, 0.7378, 0.5049, 1.0234, 0.7163, 0.5049, 1.0234, 0.7163, 0.5205, 1.001, 0.7378, 0.5039, 1.0225, 0.7358, 0.5161, 0.999, 0.6738, 0.5205, 1.001, 0.6948, 0.5005, 1.0195, 0.6782, 0.5005, 1.0195, 0.6782, 0.5205, 1.001, 0.6948, 0.5039, 1.0225, 0.6968, 0.4954, 0.9883, 0.6323, 0.5073, 0.9946, 0.6519, 0.4875, 1.0068, 0.6396, 0.4875, 1.0068, 0.6396, 0.5073, 0.9946, 0.6519, 0.4954, 1.0137, 0.6582, 0.4536, 0.8252, 0.7847, 0.4756, 0.8345, 0.7803, 0.4561, 0.814, 0.7612, 0.4561, 0.814, 0.7612, 0.4756, 0.8345, 0.7803, 0.4797, 0.8252, 0.7588, 0.4111, 0.8193, 0.7881, 0.4326, 0.8208, 0.7876, 0.4111, 0.8066, 0.7632, 0.4111, 0.8066, 0.7632, 0.4326, 0.8208, 0.7876, 0.4341, 0.8086, 0.7627, 0.3689, 0.8252, 0.7847, 0.3896, 0.8208, 0.7876, 0.3665, 0.814, 0.7612, 0.3665, 0.814, 0.7612, 0.3896, 0.8208, 0.7876, 0.3884, 0.8086, 0.7627, 0.3271, 0.8462, 0.7744, 0.3469, 0.8345, 0.7803, 0.3215, 0.8408, 0.7544, 0.3215, 0.8408, 0.7544, 0.3469, 0.8345, 0.7803, 0.3428, 0.8252, 0.7588, 0.4578, 0.8086, 0.7393, 0.4824, 0.8208, 0.7378, 0.458, 0.8066, 0.7163, 0.458, 0.8066, 0.7163, 0.4824, 0.8208, 0.7378, 0.4829, 0.8193, 0.7163, 0.4111, 0.8003, 0.7402, 0.4348, 0.8022, 0.7397, 0.4111, 0.7979, 0.7163, 0.4111, 0.7979, 0.7163, 0.4348, 0.8022, 0.7397, 0.4351, 0.8003, 0.7163, 0.3647, 0.8086, 0.7393, 0.3877, 0.8022, 0.7397, 0.3645, 0.8066, 0.7163, 0.3645, 0.8066, 0.7163, 0.3877, 0.8022, 0.7397, 0.3875, 0.8003, 0.7163, 0.3186, 0.8379, 0.7358, 0.3401, 0.8208, 0.7378, 0.3176, 0.8369, 0.7163, 0.3176, 0.8369, 0.7163, 0.3401, 0.8208, 0.7378, 0.3394, 0.8193, 0.7163, 0.4578, 0.8086, 0.6934, 0.4824, 0.8208, 0.6948, 0.4561, 0.814, 0.6714, 0.4561, 0.814, 0.6714, 0.4824, 0.8208, 0.6948, 0.4797, 0.8252, 0.6738, 0.4111, 0.8003, 0.6924, 0.4348, 0.8022, 0.6929, 0.4111, 0.8066, 0.6694, 0.4111, 0.8066, 0.6694, 0.4348, 0.8022, 0.6929, 0.4341, 0.8086, 0.6699, 0.3647, 0.8086, 0.6934, 0.3877, 0.8022, 0.6929, 0.3665, 0.814, 0.6714, 0.3665, 0.814, 0.6714, 0.3877, 0.8022, 0.6929, 0.3884, 0.8086, 0.6699, 0.3186, 0.8379, 0.6968, 0.3401, 0.8208, 0.6948, 0.3215, 0.8408, 0.6782, 0.3215, 0.8408, 0.6782, 0.3401, 0.8208, 0.6948, 0.3428, 0.8252, 0.6738, 0.4536, 0.8252, 0.6479, 0.4756, 0.8345, 0.6519, 0.4495, 0.8408, 0.6265, 0.4495, 0.8408, 0.6265, 0.4756, 0.8345, 0.6519, 0.4692, 0.8462, 0.6323, 0.4111, 0.8193, 0.6445, 0.4326, 0.8208, 0.645, 0.4111, 0.8369, 0.6226, 0.4111, 0.8369, 0.6226, 0.4326, 0.8208, 0.645, 0.4307, 0.8379, 0.6235, 0.3689, 0.8252, 0.6479, 0.3896, 0.8208, 0.645, 0.373, 0.8408, 0.6265, 0.373, 0.8408, 0.6265, 0.3896, 0.8208, 0.645, 0.3918, 0.8379, 0.6235, 0.3271, 0.8462, 0.6582, 0.3469, 0.8345, 0.6519, 0.3347, 0.854, 0.6396, 0.3347, 0.854, 0.6396, 0.3469, 0.8345, 0.6519, 0.3533, 0.8462, 0.6323, 0.4536, 1.0352, 0.6479, 0.4756, 1.0264, 0.6519, 0.4561, 1.0459, 0.6714, 0.4561, 1.0459, 0.6714, 0.4756, 1.0264, 0.6519, 0.4797, 1.0352, 0.6738, 0.4111, 1.041, 0.6445, 0.4326, 1.04, 0.645, 0.4111, 1.0537, 0.6694, 0.4111, 1.0537, 0.6694, 0.4326, 1.04, 0.645, 0.4341, 1.0518, 0.6699, 0.3689, 1.0352, 0.6479, 0.3896, 1.04, 0.645, 0.3665, 1.0459, 0.6714, 0.3665, 1.0459, 0.6714, 0.3896, 1.04, 0.645, 0.3884, 1.0518, 0.6699, 0.3271, 1.0137, 0.6582, 0.3469, 1.0264, 0.6519, 0.3215, 1.0195, 0.6782, 0.3215, 1.0195, 0.6782, 0.3469, 1.0264, 0.6519, 0.3428, 1.0352, 0.6738, 0.4578, 1.0518, 0.6934, 0.4824, 1.04, 0.6948, 0.458, 1.0537, 0.7163, 0.458, 1.0537, 0.7163, 0.4824, 1.04, 0.6948, 0.4829, 1.041, 0.7163, 0.4111, 1.0605, 0.6924, 0.4348, 1.0586, 0.6929, 0.4111, 1.0625, 0.7163, 0.4111, 1.0625, 0.7163, 0.4348, 1.0586, 0.6929, 0.4351, 1.0605, 0.7163, 0.3647, 1.0518, 0.6934, 0.3877, 1.0586, 0.6929, 0.3645, 1.0537, 0.7163, 0.3645, 1.0537, 0.7163, 0.3877, 1.0586, 0.6929, 0.3875, 1.0605, 0.7163, 0.3186, 1.0225, 0.6968, 0.3401, 1.04, 0.6948, 0.3176, 1.0234, 0.7163, 0.3176, 1.0234, 0.7163, 0.3401, 1.04, 0.6948, 0.3394, 1.041, 0.7163, 0.4578, 1.0518, 0.7393, 0.4824, 1.04, 0.7378, 0.4561, 1.0459, 0.7612, 0.4561, 1.0459, 0.7612, 0.4824, 1.04, 0.7378, 0.4797, 1.0352, 0.7588, 0.4111, 1.0605, 0.7402, 0.4348, 1.0586, 0.7397, 0.4111, 1.0537, 0.7632, 0.4111, 1.0537, 0.7632, 0.4348, 1.0586, 0.7397, 0.4341, 1.0518, 0.7627, 0.3647, 1.0518, 0.7393, 0.3877, 1.0586, 0.7397, 0.3665, 1.0459, 0.7612, 0.3665, 1.0459, 0.7612, 0.3877, 1.0586, 0.7397, 0.3884, 1.0518, 0.7627, 0.3186, 1.0225, 0.7358, 0.3401, 1.04, 0.7378, 0.3215, 1.0195, 0.7544, 0.3215, 1.0195, 0.7544, 0.3401, 1.04, 0.7378, 0.3428, 1.0352, 0.7588, 0.4536, 1.0352, 0.7847, 0.4756, 1.0264, 0.7803, 0.4495, 1.0195, 0.8057, 0.4495, 1.0195, 0.8057, 0.4756, 1.0264, 0.7803, 0.4692, 1.0137, 0.8003, 0.4111, 1.041, 0.7881, 0.4326, 1.04, 0.7876, 0.4111, 1.0234, 0.8101, 0.4111, 1.0234, 0.8101, 0.4326, 1.04, 0.7876, 0.4307, 1.0225, 0.8091, 0.3689, 1.0352, 0.7847, 0.3896, 1.04, 0.7876, 0.373, 1.0195, 0.8057, 0.373, 1.0195, 0.8057, 0.3896, 1.04, 0.7876, 0.3918, 1.0225, 0.8091, 0.3271, 1.0137, 0.7744, 0.3469, 1.0264, 0.7803, 0.3347, 1.0068, 0.7925, 0.3347, 1.0068, 0.7925, 0.3469, 1.0264, 0.7803, 0.3533, 1.0137, 0.8003, 0.3469, 1.0264, 0.7803, 0.3689, 1.0352, 0.7847, 0.3533, 1.0137, 0.8003, 0.3533, 1.0137, 0.8003, 0.3689, 1.0352, 0.7847, 0.373, 1.0195, 0.8057, 0.3428, 1.0352, 0.7588, 0.3665, 1.0459, 0.7612, 0.3469, 1.0264, 0.7803, 0.3469, 1.0264, 0.7803, 0.3665, 1.0459, 0.7612, 0.3689, 1.0352, 0.7847, 0.3215, 1.0195, 0.7544, 0.3428, 1.0352, 0.7588, 0.3271, 1.0137, 0.7744, 0.3271, 1.0137, 0.7744, 0.3428, 1.0352, 0.7588, 0.3469, 1.0264, 0.7803, 0.3896, 1.04, 0.7876, 0.4111, 1.041, 0.7881, 0.3918, 1.0225, 0.8091, 0.3918, 1.0225, 0.8091, 0.4111, 1.041, 0.7881, 0.4111, 1.0234, 0.8101, 0.3884, 1.0518, 0.7627, 0.4111, 1.0537, 0.7632, 0.3896, 1.04, 0.7876, 0.3896, 1.04, 0.7876, 0.4111, 1.0537, 0.7632, 0.4111, 1.041, 0.7881, 0.3665, 1.0459, 0.7612, 0.3884, 1.0518, 0.7627, 0.3689, 1.0352, 0.7847, 0.3689, 1.0352, 0.7847, 0.3884, 1.0518, 0.7627, 0.3896, 1.04, 0.7876, 0.4326, 1.04, 0.7876, 0.4536, 1.0352, 0.7847, 0.4307, 1.0225, 0.8091, 0.4307, 1.0225, 0.8091, 0.4536, 1.0352, 0.7847, 0.4495, 1.0195, 0.8057, 0.4341, 1.0518, 0.7627, 0.4561, 1.0459, 0.7612, 0.4326, 1.04, 0.7876, 0.4326, 1.04, 0.7876, 0.4561, 1.0459, 0.7612, 0.4536, 1.0352, 0.7847, 0.4111, 1.0537, 0.7632, 0.4341, 1.0518, 0.7627, 0.4111, 1.041, 0.7881, 0.4111, 1.041, 0.7881, 0.4341, 1.0518, 0.7627, 0.4326, 1.04, 0.7876, 0.4756, 1.0264, 0.7803, 0.4954, 1.0137, 0.7744, 0.4692, 1.0137, 0.8003, 0.4692, 1.0137, 0.8003, 0.4954, 1.0137, 0.7744, 0.4875, 1.0068, 0.7925, 0.4797, 1.0352, 0.7588, 0.5005, 1.0195, 0.7544, 0.4756, 1.0264, 0.7803, 0.4756, 1.0264, 0.7803, 0.5005, 1.0195, 0.7544, 0.4954, 1.0137, 0.7744, 0.4561, 1.0459, 0.7612, 0.4797, 1.0352, 0.7588, 0.4536, 1.0352, 0.7847, 0.4536, 1.0352, 0.7847, 0.4797, 1.0352, 0.7588, 0.4756, 1.0264, 0.7803, 0.3401, 1.04, 0.7378, 0.3647, 1.0518, 0.7393, 0.3428, 1.0352, 0.7588, 0.3428, 1.0352, 0.7588, 0.3647, 1.0518, 0.7393, 0.3665, 1.0459, 0.7612, 0.3394, 1.041, 0.7163, 0.3645, 1.0537, 0.7163, 0.3401, 1.04, 0.7378, 0.3401, 1.04, 0.7378, 0.3645, 1.0537, 0.7163, 0.3647, 1.0518, 0.7393, 0.3176, 1.0234, 0.7163, 0.3394, 1.041, 0.7163, 0.3186, 1.0225, 0.7358, 0.3186, 1.0225, 0.7358, 0.3394, 1.041, 0.7163, 0.3401, 1.04, 0.7378, 0.3877, 1.0586, 0.7397, 0.4111, 1.0605, 0.7402, 0.3884, 1.0518, 0.7627, 0.3884, 1.0518, 0.7627, 0.4111, 1.0605, 0.7402, 0.4111, 1.0537, 0.7632, 0.3875, 1.0605, 0.7163, 0.4111, 1.0625, 0.7163, 0.3877, 1.0586, 0.7397, 0.3877, 1.0586, 0.7397, 0.4111, 1.0625, 0.7163, 0.4111, 1.0605, 0.7402, 0.3645, 1.0537, 0.7163, 0.3875, 1.0605, 0.7163, 0.3647, 1.0518, 0.7393, 0.3647, 1.0518, 0.7393, 0.3875, 1.0605, 0.7163, 0.3877, 1.0586, 0.7397, 0.4348, 1.0586, 0.7397, 0.4578, 1.0518, 0.7393, 0.4341, 1.0518, 0.7627, 0.4341, 1.0518, 0.7627, 0.4578, 1.0518, 0.7393, 0.4561, 1.0459, 0.7612, 0.4351, 1.0605, 0.7163, 0.458, 1.0537, 0.7163, 0.4348, 1.0586, 0.7397, 0.4348, 1.0586, 0.7397, 0.458, 1.0537, 0.7163, 0.4578, 1.0518, 0.7393, 0.4111, 1.0625, 0.7163, 0.4351, 1.0605, 0.7163, 0.4111, 1.0605, 0.7402, 0.4111, 1.0605, 0.7402, 0.4351, 1.0605, 0.7163, 0.4348, 1.0586, 0.7397, 0.4824, 1.04, 0.7378, 0.5039, 1.0225, 0.7358, 0.4797, 1.0352, 0.7588, 0.4797, 1.0352, 0.7588, 0.5039, 1.0225, 0.7358, 0.5005, 1.0195, 0.7544, 0.4829, 1.041, 0.7163, 0.5049, 1.0234, 0.7163, 0.4824, 1.04, 0.7378, 0.4824, 1.04, 0.7378, 0.5049, 1.0234, 0.7163, 0.5039, 1.0225, 0.7358, 0.458, 1.0537, 0.7163, 0.4829, 1.041, 0.7163, 0.4578, 1.0518, 0.7393, 0.4578, 1.0518, 0.7393, 0.4829, 1.041, 0.7163, 0.4824, 1.04, 0.7378, 0.3401, 1.04, 0.6948, 0.3647, 1.0518, 0.6934, 0.3394, 1.041, 0.7163, 0.3394, 1.041, 0.7163, 0.3647, 1.0518, 0.6934, 0.3645, 1.0537, 0.7163, 0.3428, 1.0352, 0.6738, 0.3665, 1.0459, 0.6714, 0.3401, 1.04, 0.6948, 0.3401, 1.04, 0.6948, 0.3665, 1.0459, 0.6714, 0.3647, 1.0518, 0.6934, 0.3215, 1.0195, 0.6782, 0.3428, 1.0352, 0.6738, 0.3186, 1.0225, 0.6968, 0.3186, 1.0225, 0.6968, 0.3428, 1.0352, 0.6738, 0.3401, 1.04, 0.6948, 0.3877, 1.0586, 0.6929, 0.4111, 1.0605, 0.6924, 0.3875, 1.0605, 0.7163, 0.3875, 1.0605, 0.7163, 0.4111, 1.0605, 0.6924, 0.4111, 1.0625, 0.7163, 0.3884, 1.0518, 0.6699, 0.4111, 1.0537, 0.6694, 0.3877, 1.0586, 0.6929, 0.3877, 1.0586, 0.6929, 0.4111, 1.0537, 0.6694, 0.4111, 1.0605, 0.6924, 0.3665, 1.0459, 0.6714, 0.3884, 1.0518, 0.6699, 0.3647, 1.0518, 0.6934, 0.3647, 1.0518, 0.6934, 0.3884, 1.0518, 0.6699, 0.3877, 1.0586, 0.6929, 0.4348, 1.0586, 0.6929, 0.4578, 1.0518, 0.6934, 0.4351, 1.0605, 0.7163, 0.4351, 1.0605, 0.7163, 0.4578, 1.0518, 0.6934, 0.458, 1.0537, 0.7163, 0.4341, 1.0518, 0.6699, 0.4561, 1.0459, 0.6714, 0.4348, 1.0586, 0.6929, 0.4348, 1.0586, 0.6929, 0.4561, 1.0459, 0.6714, 0.4578, 1.0518, 0.6934, 0.4111, 1.0537, 0.6694, 0.4341, 1.0518, 0.6699, 0.4111, 1.0605, 0.6924, 0.4111, 1.0605, 0.6924, 0.4341, 1.0518, 0.6699, 0.4348, 1.0586, 0.6929, 0.4824, 1.04, 0.6948, 0.5039, 1.0225, 0.6968, 0.4829, 1.041, 0.7163, 0.4829, 1.041, 0.7163, 0.5039, 1.0225, 0.6968, 0.5049, 1.0234, 0.7163, 0.4797, 1.0352, 0.6738, 0.5005, 1.0195, 0.6782, 0.4824, 1.04, 0.6948, 0.4824, 1.04, 0.6948, 0.5005, 1.0195, 0.6782, 0.5039, 1.0225, 0.6968, 0.4561, 1.0459, 0.6714, 0.4797, 1.0352, 0.6738, 0.4578, 1.0518, 0.6934, 0.4578, 1.0518, 0.6934, 0.4797, 1.0352, 0.6738, 0.4824, 1.04, 0.6948, 0.3469, 1.0264, 0.6519, 0.3689, 1.0352, 0.6479, 0.3428, 1.0352, 0.6738, 0.3428, 1.0352, 0.6738, 0.3689, 1.0352, 0.6479, 0.3665, 1.0459, 0.6714, 0.3533, 1.0137, 0.6323, 0.373, 1.0195, 0.6265, 0.3469, 1.0264, 0.6519, 0.3469, 1.0264, 0.6519, 0.373, 1.0195, 0.6265, 0.3689, 1.0352, 0.6479, 0.3347, 1.0068, 0.6396, 0.3533, 1.0137, 0.6323, 0.3271, 1.0137, 0.6582, 0.3271, 1.0137, 0.6582, 0.3533, 1.0137, 0.6323, 0.3469, 1.0264, 0.6519, 0.3896, 1.04, 0.645, 0.4111, 1.041, 0.6445, 0.3884, 1.0518, 0.6699, 0.3884, 1.0518, 0.6699, 0.4111, 1.041, 0.6445, 0.4111, 1.0537, 0.6694, 0.3918, 1.0225, 0.6235, 0.4111, 1.0234, 0.6226, 0.3896, 1.04, 0.645, 0.3896, 1.04, 0.645, 0.4111, 1.0234, 0.6226, 0.4111, 1.041, 0.6445, 0.373, 1.0195, 0.6265, 0.3918, 1.0225, 0.6235, 0.3689, 1.0352, 0.6479, 0.3689, 1.0352, 0.6479, 0.3918, 1.0225, 0.6235, 0.3896, 1.04, 0.645, 0.4326, 1.04, 0.645, 0.4536, 1.0352, 0.6479, 0.4341, 1.0518, 0.6699, 0.4341, 1.0518, 0.6699, 0.4536, 1.0352, 0.6479, 0.4561, 1.0459, 0.6714, 0.4307, 1.0225, 0.6235, 0.4495, 1.0195, 0.6265, 0.4326, 1.04, 0.645, 0.4326, 1.04, 0.645, 0.4495, 1.0195, 0.6265, 0.4536, 1.0352, 0.6479, 0.4111, 1.0234, 0.6226, 0.4307, 1.0225, 0.6235, 0.4111, 1.041, 0.6445, 0.4111, 1.041, 0.6445, 0.4307, 1.0225, 0.6235, 0.4326, 1.04, 0.645, 0.4756, 1.0264, 0.6519, 0.4954, 1.0137, 0.6582, 0.4797, 1.0352, 0.6738, 0.4797, 1.0352, 0.6738, 0.4954, 1.0137, 0.6582, 0.5005, 1.0195, 0.6782, 0.4692, 1.0137, 0.6323, 0.4875, 1.0068, 0.6396, 0.4756, 1.0264, 0.6519, 0.4756, 1.0264, 0.6519, 0.4875, 1.0068, 0.6396, 0.4954, 1.0137, 0.6582, 0.4495, 1.0195, 0.6265, 0.4692, 1.0137, 0.6323, 0.4536, 1.0352, 0.6479, 0.4536, 1.0352, 0.6479, 0.4692, 1.0137, 0.6323, 0.4756, 1.0264, 0.6519, 0.3469, 0.8345, 0.6519, 0.3689, 0.8252, 0.6479, 0.3533, 0.8462, 0.6323, 0.3533, 0.8462, 0.6323, 0.3689, 0.8252, 0.6479, 0.373, 0.8408, 0.6265, 0.3428, 0.8252, 0.6738, 0.3665, 0.814, 0.6714, 0.3469, 0.8345, 0.6519, 0.3469, 0.8345, 0.6519, 0.3665, 0.814, 0.6714, 0.3689, 0.8252, 0.6479, 0.3215, 0.8408, 0.6782, 0.3428, 0.8252, 0.6738, 0.3271, 0.8462, 0.6582, 0.3271, 0.8462, 0.6582, 0.3428, 0.8252, 0.6738, 0.3469, 0.8345, 0.6519, 0.3896, 0.8208, 0.645, 0.4111, 0.8193, 0.6445, 0.3918, 0.8379, 0.6235, 0.3918, 0.8379, 0.6235, 0.4111, 0.8193, 0.6445, 0.4111, 0.8369, 0.6226, 0.3884, 0.8086, 0.6699, 0.4111, 0.8066, 0.6694, 0.3896, 0.8208, 0.645, 0.3896, 0.8208, 0.645, 0.4111, 0.8066, 0.6694, 0.4111, 0.8193, 0.6445, 0.3665, 0.814, 0.6714, 0.3884, 0.8086, 0.6699, 0.3689, 0.8252, 0.6479, 0.3689, 0.8252, 0.6479, 0.3884, 0.8086, 0.6699, 0.3896, 0.8208, 0.645, 0.4326, 0.8208, 0.645, 0.4536, 0.8252, 0.6479, 0.4307, 0.8379, 0.6235, 0.4307, 0.8379, 0.6235, 0.4536, 0.8252, 0.6479, 0.4495, 0.8408, 0.6265, 0.4341, 0.8086, 0.6699, 0.4561, 0.814, 0.6714, 0.4326, 0.8208, 0.645, 0.4326, 0.8208, 0.645, 0.4561, 0.814, 0.6714, 0.4536, 0.8252, 0.6479, 0.4111, 0.8066, 0.6694, 0.4341, 0.8086, 0.6699, 0.4111, 0.8193, 0.6445, 0.4111, 0.8193, 0.6445, 0.4341, 0.8086, 0.6699, 0.4326, 0.8208, 0.645, 0.4756, 0.8345, 0.6519, 0.4954, 0.8462, 0.6582, 0.4692, 0.8462, 0.6323, 0.4692, 0.8462, 0.6323, 0.4954, 0.8462, 0.6582, 0.4875, 0.854, 0.6396, 0.4797, 0.8252, 0.6738, 0.5005, 0.8408, 0.6782, 0.4756, 0.8345, 0.6519, 0.4756, 0.8345, 0.6519, 0.5005, 0.8408, 0.6782, 0.4954, 0.8462, 0.6582, 0.4561, 0.814, 0.6714, 0.4797, 0.8252, 0.6738, 0.4536, 0.8252, 0.6479, 0.4536, 0.8252, 0.6479, 0.4797, 0.8252, 0.6738, 0.4756, 0.8345, 0.6519, 0.3401, 0.8208, 0.6948, 0.3647, 0.8086, 0.6934, 0.3428, 0.8252, 0.6738, 0.3428, 0.8252, 0.6738, 0.3647, 0.8086, 0.6934, 0.3665, 0.814, 0.6714, 0.3394, 0.8193, 0.7163, 0.3645, 0.8066, 0.7163, 0.3401, 0.8208, 0.6948, 0.3401, 0.8208, 0.6948, 0.3645, 0.8066, 0.7163, 0.3647, 0.8086, 0.6934, 0.3176, 0.8369, 0.7163, 0.3394, 0.8193, 0.7163, 0.3186, 0.8379, 0.6968, 0.3186, 0.8379, 0.6968, 0.3394, 0.8193, 0.7163, 0.3401, 0.8208, 0.6948, 0.3877, 0.8022, 0.6929, 0.4111, 0.8003, 0.6924, 0.3884, 0.8086, 0.6699, 0.3884, 0.8086, 0.6699, 0.4111, 0.8003, 0.6924, 0.4111, 0.8066, 0.6694, 0.3875, 0.8003, 0.7163, 0.4111, 0.7979, 0.7163, 0.3877, 0.8022, 0.6929, 0.3877, 0.8022, 0.6929, 0.4111, 0.7979, 0.7163, 0.4111, 0.8003, 0.6924, 0.3645, 0.8066, 0.7163, 0.3875, 0.8003, 0.7163, 0.3647, 0.8086, 0.6934, 0.3647, 0.8086, 0.6934, 0.3875, 0.8003, 0.7163, 0.3877, 0.8022, 0.6929, 0.4348, 0.8022, 0.6929, 0.4578, 0.8086, 0.6934, 0.4341, 0.8086, 0.6699, 0.4341, 0.8086, 0.6699, 0.4578, 0.8086, 0.6934, 0.4561, 0.814, 0.6714, 0.4351, 0.8003, 0.7163, 0.458, 0.8066, 0.7163, 0.4348, 0.8022, 0.6929, 0.4348, 0.8022, 0.6929, 0.458, 0.8066, 0.7163, 0.4578, 0.8086, 0.6934, 0.4111, 0.7979, 0.7163, 0.4351, 0.8003, 0.7163, 0.4111, 0.8003, 0.6924, 0.4111, 0.8003, 0.6924, 0.4351, 0.8003, 0.7163, 0.4348, 0.8022, 0.6929, 0.4824, 0.8208, 0.6948, 0.5039, 0.8379, 0.6968, 0.4797, 0.8252, 0.6738, 0.4797, 0.8252, 0.6738, 0.5039, 0.8379, 0.6968, 0.5005, 0.8408, 0.6782, 0.4829, 0.8193, 0.7163, 0.5049, 0.8369, 0.7163, 0.4824, 0.8208, 0.6948, 0.4824, 0.8208, 0.6948, 0.5049, 0.8369, 0.7163, 0.5039, 0.8379, 0.6968, 0.458, 0.8066, 0.7163, 0.4829, 0.8193, 0.7163, 0.4578, 0.8086, 0.6934, 0.4578, 0.8086, 0.6934, 0.4829, 0.8193, 0.7163, 0.4824, 0.8208, 0.6948, 0.3401, 0.8208, 0.7378, 0.3647, 0.8086, 0.7393, 0.3394, 0.8193, 0.7163, 0.3394, 0.8193, 0.7163, 0.3647, 0.8086, 0.7393, 0.3645, 0.8066, 0.7163, 0.3428, 0.8252, 0.7588, 0.3665, 0.814, 0.7612, 0.3401, 0.8208, 0.7378, 0.3401, 0.8208, 0.7378, 0.3665, 0.814, 0.7612, 0.3647, 0.8086, 0.7393, 0.3215, 0.8408, 0.7544, 0.3428, 0.8252, 0.7588, 0.3186, 0.8379, 0.7358, 0.3186, 0.8379, 0.7358, 0.3428, 0.8252, 0.7588, 0.3401, 0.8208, 0.7378, 0.3877, 0.8022, 0.7397, 0.4111, 0.8003, 0.7402, 0.3875, 0.8003, 0.7163, 0.3875, 0.8003, 0.7163, 0.4111, 0.8003, 0.7402, 0.4111, 0.7979, 0.7163, 0.3884, 0.8086, 0.7627, 0.4111, 0.8066, 0.7632, 0.3877, 0.8022, 0.7397, 0.3877, 0.8022, 0.7397, 0.4111, 0.8066, 0.7632, 0.4111, 0.8003, 0.7402, 0.3665, 0.814, 0.7612, 0.3884, 0.8086, 0.7627, 0.3647, 0.8086, 0.7393, 0.3647, 0.8086, 0.7393, 0.3884, 0.8086, 0.7627, 0.3877, 0.8022, 0.7397, 0.4348, 0.8022, 0.7397, 0.4578, 0.8086, 0.7393, 0.4351, 0.8003, 0.7163, 0.4351, 0.8003, 0.7163, 0.4578, 0.8086, 0.7393, 0.458, 0.8066, 0.7163, 0.4341, 0.8086, 0.7627, 0.4561, 0.814, 0.7612, 0.4348, 0.8022, 0.7397, 0.4348, 0.8022, 0.7397, 0.4561, 0.814, 0.7612, 0.4578, 0.8086, 0.7393, 0.4111, 0.8066, 0.7632, 0.4341, 0.8086, 0.7627, 0.4111, 0.8003, 0.7402, 0.4111, 0.8003, 0.7402, 0.4341, 0.8086, 0.7627, 0.4348, 0.8022, 0.7397, 0.4824, 0.8208, 0.7378, 0.5039, 0.8379, 0.7358, 0.4829, 0.8193, 0.7163, 0.4829, 0.8193, 0.7163, 0.5039, 0.8379, 0.7358, 0.5049, 0.8369, 0.7163, 0.4797, 0.8252, 0.7588, 0.5005, 0.8408, 0.7544, 0.4824, 0.8208, 0.7378, 0.4824, 0.8208, 0.7378, 0.5005, 0.8408, 0.7544, 0.5039, 0.8379, 0.7358, 0.4561, 0.814, 0.7612, 0.4797, 0.8252, 0.7588, 0.4578, 0.8086, 0.7393, 0.4578, 0.8086, 0.7393, 0.4797, 0.8252, 0.7588, 0.4824, 0.8208, 0.7378, 0.3469, 0.8345, 0.7803, 0.3689, 0.8252, 0.7847, 0.3428, 0.8252, 0.7588, 0.3428, 0.8252, 0.7588, 0.3689, 0.8252, 0.7847, 0.3665, 0.814, 0.7612, 0.3533, 0.8462, 0.8003, 0.373, 0.8408, 0.8057, 0.3469, 0.8345, 0.7803, 0.3469, 0.8345, 0.7803, 0.373, 0.8408, 0.8057, 0.3689, 0.8252, 0.7847, 0.3347, 0.854, 0.7925, 0.3533, 0.8462, 0.8003, 0.3271, 0.8462, 0.7744, 0.3271, 0.8462, 0.7744, 0.3533, 0.8462, 0.8003, 0.3469, 0.8345, 0.7803, 0.3896, 0.8208, 0.7876, 0.4111, 0.8193, 0.7881, 0.3884, 0.8086, 0.7627, 0.3884, 0.8086, 0.7627, 0.4111, 0.8193, 0.7881, 0.4111, 0.8066, 0.7632, 0.3918, 0.8379, 0.8091, 0.4111, 0.8369, 0.8101, 0.3896, 0.8208, 0.7876, 0.3896, 0.8208, 0.7876, 0.4111, 0.8369, 0.8101, 0.4111, 0.8193, 0.7881, 0.373, 0.8408, 0.8057, 0.3918, 0.8379, 0.8091, 0.3689, 0.8252, 0.7847, 0.3689, 0.8252, 0.7847, 0.3918, 0.8379, 0.8091, 0.3896, 0.8208, 0.7876, 0.4326, 0.8208, 0.7876, 0.4536, 0.8252, 0.7847, 0.4341, 0.8086, 0.7627, 0.4341, 0.8086, 0.7627, 0.4536, 0.8252, 0.7847, 0.4561, 0.814, 0.7612, 0.4307, 0.8379, 0.8091, 0.4495, 0.8408, 0.8057, 0.4326, 0.8208, 0.7876, 0.4326, 0.8208, 0.7876, 0.4495, 0.8408, 0.8057, 0.4536, 0.8252, 0.7847, 0.4111, 0.8369, 0.8101, 0.4307, 0.8379, 0.8091, 0.4111, 0.8193, 0.7881, 0.4111, 0.8193, 0.7881, 0.4307, 0.8379, 0.8091, 0.4326, 0.8208, 0.7876, 0.4756, 0.8345, 0.7803, 0.4954, 0.8462, 0.7744, 0.4797, 0.8252, 0.7588, 0.4797, 0.8252, 0.7588, 0.4954, 0.8462, 0.7744, 0.5005, 0.8408, 0.7544, 0.4692, 0.8462, 0.8003, 0.4875, 0.854, 0.7925, 0.4756, 0.8345, 0.7803, 0.4756, 0.8345, 0.7803, 0.4875, 0.854, 0.7925, 0.4954, 0.8462, 0.7744, 0.4495, 0.8408, 0.8057, 0.4692, 0.8462, 0.8003, 0.4536, 0.8252, 0.7847, 0.4536, 0.8252, 0.7847, 0.4692, 0.8462, 0.8003, 0.4756, 0.8345, 0.7803, 0.5073, 0.9946, 0.6519, 0.5161, 0.999, 0.6738, 0.4954, 1.0137, 0.6582, 0.4954, 1.0137, 0.6582, 0.5161, 0.999, 0.6738, 0.5005, 1.0195, 0.6782, 0.5161, 0.9727, 0.6479, 0.5273, 0.9751, 0.6714, 0.5073, 0.9946, 0.6519, 0.5073, 0.9946, 0.6519, 0.5273, 0.9751, 0.6714, 0.5161, 0.999, 0.6738, 0.5005, 0.9688, 0.6265, 0.5161, 0.9727, 0.6479, 0.4954, 0.9883, 0.6323, 0.4954, 0.9883, 0.6323, 0.5161, 0.9727, 0.6479, 0.5073, 0.9946, 0.6519, 0.5205, 1.001, 0.6948, 0.5225, 1.002, 0.7163, 0.5039, 1.0225, 0.6968, 0.5039, 1.0225, 0.6968, 0.5225, 1.002, 0.7163, 0.5049, 1.0234, 0.7163, 0.5327, 0.9771, 0.6934, 0.5347, 0.9771, 0.7163, 0.5205, 1.001, 0.6948, 0.5205, 1.001, 0.6948, 0.5347, 0.9771, 0.7163, 0.5225, 1.002, 0.7163, 0.5273, 0.9751, 0.6714, 0.5327, 0.9771, 0.6934, 0.5161, 0.999, 0.6738, 0.5161, 0.999, 0.6738, 0.5327, 0.9771, 0.6934, 0.5205, 1.001, 0.6948, 0.5205, 1.001, 0.7378, 0.5161, 0.999, 0.7588, 0.5039, 1.0225, 0.7358, 0.5039, 1.0225, 0.7358, 0.5161, 0.999, 0.7588, 0.5005, 1.0195, 0.7544, 0.5327, 0.9771, 0.7393, 0.5273, 0.9751, 0.7612, 0.5205, 1.001, 0.7378, 0.5205, 1.001, 0.7378, 0.5273, 0.9751, 0.7612, 0.5161, 0.999, 0.7588, 0.5347, 0.9771, 0.7163, 0.5327, 0.9771, 0.7393, 0.5225, 1.002, 0.7163, 0.5225, 1.002, 0.7163, 0.5327, 0.9771, 0.7393, 0.5205, 1.001, 0.7378, 0.5073, 0.9946, 0.7808, 0.4954, 0.9883, 0.8003, 0.4954, 1.0137, 0.7744, 0.4954, 1.0137, 0.7744, 0.4954, 0.9883, 0.8003, 0.4875, 1.0068, 0.7925, 0.5161, 0.9727, 0.7847, 0.5005, 0.9688, 0.8057, 0.5073, 0.9946, 0.7808, 0.5073, 0.9946, 0.7808, 0.5005, 0.9688, 0.8057, 0.4954, 0.9883, 0.8003, 0.5273, 0.9751, 0.7612, 0.5161, 0.9727, 0.7847, 0.5161, 0.999, 0.7588, 0.5161, 0.999, 0.7588, 0.5161, 0.9727, 0.7847, 0.5073, 0.9946, 0.7808, 0.5205, 0.9517, 0.645, 0.5327, 0.9531, 0.6699, 0.5161, 0.9727, 0.6479, 0.5161, 0.9727, 0.6479, 0.5327, 0.9531, 0.6699, 0.5273, 0.9751, 0.6714, 0.5225, 0.9302, 0.6445, 0.5347, 0.9302, 0.6694, 0.5205, 0.9517, 0.645, 0.5205, 0.9517, 0.645, 0.5347, 0.9302, 0.6694, 0.5327, 0.9531, 0.6699, 0.5049, 0.9302, 0.6226, 0.5225, 0.9302, 0.6445, 0.5039, 0.9497, 0.6235, 0.5039, 0.9497, 0.6235, 0.5225, 0.9302, 0.6445, 0.5205, 0.9517, 0.645, 0.5391, 0.9541, 0.6929, 0.5415, 0.9541, 0.7163, 0.5327, 0.9771, 0.6934, 0.5327, 0.9771, 0.6934, 0.5415, 0.9541, 0.7163, 0.5347, 0.9771, 0.7163, 0.5415, 0.9302, 0.6924, 0.5435, 0.9302, 0.7163, 0.5391, 0.9541, 0.6929, 0.5391, 0.9541, 0.6929, 0.5435, 0.9302, 0.7163, 0.5415, 0.9541, 0.7163, 0.5347, 0.9302, 0.6694, 0.5415, 0.9302, 0.6924, 0.5327, 0.9531, 0.6699, 0.5327, 0.9531, 0.6699, 0.5415, 0.9302, 0.6924, 0.5391, 0.9541, 0.6929, 0.5391, 0.9541, 0.7397, 0.5327, 0.9531, 0.7627, 0.5327, 0.9771, 0.7393, 0.5327, 0.9771, 0.7393, 0.5327, 0.9531, 0.7627, 0.5273, 0.9751, 0.7612, 0.5415, 0.9302, 0.7402, 0.5347, 0.9302, 0.7632, 0.5391, 0.9541, 0.7397, 0.5391, 0.9541, 0.7397, 0.5347, 0.9302, 0.7632, 0.5327, 0.9531, 0.7627, 0.5435, 0.9302, 0.7163, 0.5415, 0.9302, 0.7402, 0.5415, 0.9541, 0.7163, 0.5415, 0.9541, 0.7163, 0.5415, 0.9302, 0.7402, 0.5391, 0.9541, 0.7397, 0.5205, 0.9517, 0.7876, 0.5039, 0.9497, 0.8091, 0.5161, 0.9727, 0.7847, 0.5161, 0.9727, 0.7847, 0.5039, 0.9497, 0.8091, 0.5005, 0.9688, 0.8057, 0.5225, 0.9302, 0.7881, 0.5049, 0.9302, 0.8101, 0.5205, 0.9517, 0.7876, 0.5205, 0.9517, 0.7876, 0.5049, 0.9302, 0.8101, 0.5039, 0.9497, 0.8091, 0.5347, 0.9302, 0.7632, 0.5225, 0.9302, 0.7881, 0.5327, 0.9531, 0.7627, 0.5327, 0.9531, 0.7627, 0.5225, 0.9302, 0.7881, 0.5205, 0.9517, 0.7876, 0.5205, 0.9087, 0.645, 0.5327, 0.9077, 0.6699, 0.5225, 0.9302, 0.6445, 0.5225, 0.9302, 0.6445, 0.5327, 0.9077, 0.6699, 0.5347, 0.9302, 0.6694, 0.5161, 0.8882, 0.6479, 0.5273, 0.8857, 0.6714, 0.5205, 0.9087, 0.645, 0.5205, 0.9087, 0.645, 0.5273, 0.8857, 0.6714, 0.5327, 0.9077, 0.6699, 0.5005, 0.8921, 0.6265, 0.5161, 0.8882, 0.6479, 0.5039, 0.9111, 0.6235, 0.5039, 0.9111, 0.6235, 0.5161, 0.8882, 0.6479, 0.5205, 0.9087, 0.645, 0.5391, 0.9067, 0.6929, 0.5415, 0.9067, 0.7163, 0.5415, 0.9302, 0.6924, 0.5415, 0.9302, 0.6924, 0.5415, 0.9067, 0.7163, 0.5435, 0.9302, 0.7163, 0.5327, 0.8838, 0.6934, 0.5347, 0.8833, 0.7163, 0.5391, 0.9067, 0.6929, 0.5391, 0.9067, 0.6929, 0.5347, 0.8833, 0.7163, 0.5415, 0.9067, 0.7163, 0.5273, 0.8857, 0.6714, 0.5327, 0.8838, 0.6934, 0.5327, 0.9077, 0.6699, 0.5327, 0.9077, 0.6699, 0.5327, 0.8838, 0.6934, 0.5391, 0.9067, 0.6929, 0.5391, 0.9067, 0.7397, 0.5327, 0.9077, 0.7627, 0.5415, 0.9302, 0.7402, 0.5415, 0.9302, 0.7402, 0.5327, 0.9077, 0.7627, 0.5347, 0.9302, 0.7632, 0.5327, 0.8838, 0.7393, 0.5273, 0.8857, 0.7612, 0.5391, 0.9067, 0.7397, 0.5391, 0.9067, 0.7397, 0.5273, 0.8857, 0.7612, 0.5327, 0.9077, 0.7627, 0.5347, 0.8833, 0.7163, 0.5327, 0.8838, 0.7393, 0.5415, 0.9067, 0.7163, 0.5415, 0.9067, 0.7163, 0.5327, 0.8838, 0.7393, 0.5391, 0.9067, 0.7397, 0.5205, 0.9087, 0.7876, 0.5039, 0.9111, 0.8091, 0.5225, 0.9302, 0.7881, 0.5225, 0.9302, 0.7881, 0.5039, 0.9111, 0.8091, 0.5049, 0.9302, 0.8101, 0.5161, 0.8882, 0.7847, 0.5005, 0.8921, 0.8057, 0.5205, 0.9087, 0.7876, 0.5205, 0.9087, 0.7876, 0.5005, 0.8921, 0.8057, 0.5039, 0.9111, 0.8091, 0.5273, 0.8857, 0.7612, 0.5161, 0.8882, 0.7847, 0.5327, 0.9077, 0.7627, 0.5327, 0.9077, 0.7627, 0.5161, 0.8882, 0.7847, 0.5205, 0.9087, 0.7876, 0.5073, 0.8662, 0.6519, 0.5161, 0.8618, 0.6738, 0.5161, 0.8882, 0.6479, 0.5161, 0.8882, 0.6479, 0.5161, 0.8618, 0.6738, 0.5273, 0.8857, 0.6714, 0.4954, 0.8462, 0.6582, 0.5005, 0.8408, 0.6782, 0.5073, 0.8662, 0.6519, 0.5073, 0.8662, 0.6519, 0.5005, 0.8408, 0.6782, 0.5161, 0.8618, 0.6738, 0.4875, 0.854, 0.6396, 0.4954, 0.8462, 0.6582, 0.4954, 0.8721, 0.6323, 0.4954, 0.8721, 0.6323, 0.4954, 0.8462, 0.6582, 0.5073, 0.8662, 0.6519, 0.5205, 0.8594, 0.6948, 0.5225, 0.8584, 0.7163, 0.5327, 0.8838, 0.6934, 0.5327, 0.8838, 0.6934, 0.5225, 0.8584, 0.7163, 0.5347, 0.8833, 0.7163, 0.5039, 0.8379, 0.6968, 0.5049, 0.8369, 0.7163, 0.5205, 0.8594, 0.6948, 0.5205, 0.8594, 0.6948, 0.5049, 0.8369, 0.7163, 0.5225, 0.8584, 0.7163, 0.5005, 0.8408, 0.6782, 0.5039, 0.8379, 0.6968, 0.5161, 0.8618, 0.6738, 0.5161, 0.8618, 0.6738, 0.5039, 0.8379, 0.6968, 0.5205, 0.8594, 0.6948, 0.5205, 0.8594, 0.7378, 0.5161, 0.8618, 0.7588, 0.5327, 0.8838, 0.7393, 0.5327, 0.8838, 0.7393, 0.5161, 0.8618, 0.7588, 0.5273, 0.8857, 0.7612, 0.5039, 0.8379, 0.7358, 0.5005, 0.8408, 0.7544, 0.5205, 0.8594, 0.7378, 0.5205, 0.8594, 0.7378, 0.5005, 0.8408, 0.7544, 0.5161, 0.8618, 0.7588, 0.5049, 0.8369, 0.7163, 0.5039, 0.8379, 0.7358, 0.5225, 0.8584, 0.7163, 0.5225, 0.8584, 0.7163, 0.5039, 0.8379, 0.7358, 0.5205, 0.8594, 0.7378, 0.5073, 0.8662, 0.7808, 0.4954, 0.8721, 0.8003, 0.5161, 0.8882, 0.7847, 0.5161, 0.8882, 0.7847, 0.4954, 0.8721, 0.8003, 0.5005, 0.8921, 0.8057, 0.4954, 0.8462, 0.7744, 0.4875, 0.854, 0.7925, 0.5073, 0.8662, 0.7808, 0.5073, 0.8662, 0.7808, 0.4875, 0.854, 0.7925, 0.4954, 0.8721, 0.8003, 0.5005, 0.8408, 0.7544, 0.4954, 0.8462, 0.7744, 0.5161, 0.8618, 0.7588, 0.5161, 0.8618, 0.7588, 0.4954, 0.8462, 0.7744, 0.5073, 0.8662, 0.7808, 0.4756, 0.9946, 0.8125, 0.4536, 0.999, 0.8213, 0.4692, 1.0137, 0.8003, 0.4692, 1.0137, 0.8003, 0.4536, 0.999, 0.8213, 0.4495, 1.0195, 0.8057, 0.4797, 0.9727, 0.8213, 0.4561, 0.9751, 0.8325, 0.4756, 0.9946, 0.8125, 0.4756, 0.9946, 0.8125, 0.4561, 0.9751, 0.8325, 0.4536, 0.999, 0.8213, 0.5005, 0.9688, 0.8057, 0.4797, 0.9727, 0.8213, 0.4954, 0.9883, 0.8003, 0.4954, 0.9883, 0.8003, 0.4797, 0.9727, 0.8213, 0.4756, 0.9946, 0.8125, 0.4326, 1.001, 0.8257, 0.4111, 1.002, 0.8276, 0.4307, 1.0225, 0.8091, 0.4307, 1.0225, 0.8091, 0.4111, 1.002, 0.8276, 0.4111, 1.0234, 0.8101, 0.4341, 0.9771, 0.8379, 0.4111, 0.9771, 0.8398, 0.4326, 1.001, 0.8257, 0.4326, 1.001, 0.8257, 0.4111, 0.9771, 0.8398, 0.4111, 1.002, 0.8276, 0.4561, 0.9751, 0.8325, 0.4341, 0.9771, 0.8379, 0.4536, 0.999, 0.8213, 0.4536, 0.999, 0.8213, 0.4341, 0.9771, 0.8379, 0.4326, 1.001, 0.8257, 0.3896, 1.001, 0.8257, 0.3689, 0.999, 0.8213, 0.3918, 1.0225, 0.8091, 0.3918, 1.0225, 0.8091, 0.3689, 0.999, 0.8213, 0.373, 1.0195, 0.8057, 0.3884, 0.9771, 0.8379, 0.3665, 0.9751, 0.8325, 0.3896, 1.001, 0.8257, 0.3896, 1.001, 0.8257, 0.3665, 0.9751, 0.8325, 0.3689, 0.999, 0.8213, 0.4111, 0.9771, 0.8398, 0.3884, 0.9771, 0.8379, 0.4111, 1.002, 0.8276, 0.4111, 1.002, 0.8276, 0.3884, 0.9771, 0.8379, 0.3896, 1.001, 0.8257, 0.3469, 0.9946, 0.8125, 0.3271, 0.9883, 0.8003, 0.3533, 1.0137, 0.8003, 0.3533, 1.0137, 0.8003, 0.3271, 0.9883, 0.8003, 0.3347, 1.0068, 0.7925, 0.3428, 0.9727, 0.8213, 0.3215, 0.9688, 0.8057, 0.3469, 0.9946, 0.8125, 0.3469, 0.9946, 0.8125, 0.3215, 0.9688, 0.8057, 0.3271, 0.9883, 0.8003, 0.3665, 0.9751, 0.8325, 0.3428, 0.9727, 0.8213, 0.3689, 0.999, 0.8213, 0.3689, 0.999, 0.8213, 0.3428, 0.9727, 0.8213, 0.3469, 0.9946, 0.8125, 0.4824, 0.9517, 0.8257, 0.4578, 0.9531, 0.8379, 0.4797, 0.9727, 0.8213, 0.4797, 0.9727, 0.8213, 0.4578, 0.9531, 0.8379, 0.4561, 0.9751, 0.8325, 0.4829, 0.9302, 0.8276, 0.458, 0.9302, 0.8398, 0.4824, 0.9517, 0.8257, 0.4824, 0.9517, 0.8257, 0.458, 0.9302, 0.8398, 0.4578, 0.9531, 0.8379, 0.5049, 0.9302, 0.8101, 0.4829, 0.9302, 0.8276, 0.5039, 0.9497, 0.8091, 0.5039, 0.9497, 0.8091, 0.4829, 0.9302, 0.8276, 0.4824, 0.9517, 0.8257, 0.4348, 0.9541, 0.8442, 0.4111, 0.9541, 0.8467, 0.4341, 0.9771, 0.8379, 0.4341, 0.9771, 0.8379, 0.4111, 0.9541, 0.8467, 0.4111, 0.9771, 0.8398, 0.4351, 0.9302, 0.8467, 0.4111, 0.9302, 0.8486, 0.4348, 0.9541, 0.8442, 0.4348, 0.9541, 0.8442, 0.4111, 0.9302, 0.8486, 0.4111, 0.9541, 0.8467, 0.458, 0.9302, 0.8398, 0.4351, 0.9302, 0.8467, 0.4578, 0.9531, 0.8379, 0.4578, 0.9531, 0.8379, 0.4351, 0.9302, 0.8467, 0.4348, 0.9541, 0.8442, 0.3877, 0.9541, 0.8442, 0.3647, 0.9531, 0.8379, 0.3884, 0.9771, 0.8379, 0.3884, 0.9771, 0.8379, 0.3647, 0.9531, 0.8379, 0.3665, 0.9751, 0.8325, 0.3875, 0.9302, 0.8467, 0.3645, 0.9302, 0.8398, 0.3877, 0.9541, 0.8442, 0.3877, 0.9541, 0.8442, 0.3645, 0.9302, 0.8398, 0.3647, 0.9531, 0.8379, 0.4111, 0.9302, 0.8486, 0.3875, 0.9302, 0.8467, 0.4111, 0.9541, 0.8467, 0.4111, 0.9541, 0.8467, 0.3875, 0.9302, 0.8467, 0.3877, 0.9541, 0.8442, 0.3401, 0.9517, 0.8257, 0.3186, 0.9497, 0.8091, 0.3428, 0.9727, 0.8213, 0.3428, 0.9727, 0.8213, 0.3186, 0.9497, 0.8091, 0.3215, 0.9688, 0.8057, 0.3394, 0.9302, 0.8276, 0.3176, 0.9302, 0.8101, 0.3401, 0.9517, 0.8257, 0.3401, 0.9517, 0.8257, 0.3176, 0.9302, 0.8101, 0.3186, 0.9497, 0.8091, 0.3645, 0.9302, 0.8398, 0.3394, 0.9302, 0.8276, 0.3647, 0.9531, 0.8379, 0.3647, 0.9531, 0.8379, 0.3394, 0.9302, 0.8276, 0.3401, 0.9517, 0.8257, 0.4824, 0.9087, 0.8257, 0.4578, 0.9077, 0.8379, 0.4829, 0.9302, 0.8276, 0.4829, 0.9302, 0.8276, 0.4578, 0.9077, 0.8379, 0.458, 0.9302, 0.8398, 0.4797, 0.8882, 0.8213, 0.4561, 0.8857, 0.8325, 0.4824, 0.9087, 0.8257, 0.4824, 0.9087, 0.8257, 0.4561, 0.8857, 0.8325, 0.4578, 0.9077, 0.8379, 0.5005, 0.8921, 0.8057, 0.4797, 0.8882, 0.8213, 0.5039, 0.9111, 0.8091, 0.5039, 0.9111, 0.8091, 0.4797, 0.8882, 0.8213, 0.4824, 0.9087, 0.8257, 0.4348, 0.9067, 0.8442, 0.4111, 0.9067, 0.8467, 0.4351, 0.9302, 0.8467, 0.4351, 0.9302, 0.8467, 0.4111, 0.9067, 0.8467, 0.4111, 0.9302, 0.8486, 0.4341, 0.8838, 0.8379, 0.4111, 0.8833, 0.8398, 0.4348, 0.9067, 0.8442, 0.4348, 0.9067, 0.8442, 0.4111, 0.8833, 0.8398, 0.4111, 0.9067, 0.8467, 0.4561, 0.8857, 0.8325, 0.4341, 0.8838, 0.8379, 0.4578, 0.9077, 0.8379, 0.4578, 0.9077, 0.8379, 0.4341, 0.8838, 0.8379, 0.4348, 0.9067, 0.8442, 0.3877, 0.9067, 0.8442, 0.3647, 0.9077, 0.8379, 0.3875, 0.9302, 0.8467, 0.3875, 0.9302, 0.8467, 0.3647, 0.9077, 0.8379, 0.3645, 0.9302, 0.8398, 0.3884, 0.8838, 0.8379, 0.3665, 0.8857, 0.8325, 0.3877, 0.9067, 0.8442, 0.3877, 0.9067, 0.8442, 0.3665, 0.8857, 0.8325, 0.3647, 0.9077, 0.8379, 0.4111, 0.8833, 0.8398, 0.3884, 0.8838, 0.8379, 0.4111, 0.9067, 0.8467, 0.4111, 0.9067, 0.8467, 0.3884, 0.8838, 0.8379, 0.3877, 0.9067, 0.8442, 0.3401, 0.9087, 0.8257, 0.3186, 0.9111, 0.8091, 0.3394, 0.9302, 0.8276, 0.3394, 0.9302, 0.8276, 0.3186, 0.9111, 0.8091, 0.3176, 0.9302, 0.8101, 0.3428, 0.8882, 0.8213, 0.3215, 0.8921, 0.8057, 0.3401, 0.9087, 0.8257, 0.3401, 0.9087, 0.8257, 0.3215, 0.8921, 0.8057, 0.3186, 0.9111, 0.8091, 0.3665, 0.8857, 0.8325, 0.3428, 0.8882, 0.8213, 0.3647, 0.9077, 0.8379, 0.3647, 0.9077, 0.8379, 0.3428, 0.8882, 0.8213, 0.3401, 0.9087, 0.8257, 0.4756, 0.8662, 0.8125, 0.4536, 0.8618, 0.8213, 0.4797, 0.8882, 0.8213, 0.4797, 0.8882, 0.8213, 0.4536, 0.8618, 0.8213, 0.4561, 0.8857, 0.8325, 0.4692, 0.8462, 0.8003, 0.4495, 0.8408, 0.8057, 0.4756, 0.8662, 0.8125, 0.4756, 0.8662, 0.8125, 0.4495, 0.8408, 0.8057, 0.4536, 0.8618, 0.8213, 0.4875, 0.854, 0.7925, 0.4692, 0.8462, 0.8003, 0.4954, 0.8721, 0.8003, 0.4954, 0.8721, 0.8003, 0.4692, 0.8462, 0.8003, 0.4756, 0.8662, 0.8125, 0.4326, 0.8594, 0.8257, 0.4111, 0.8584, 0.8276, 0.4341, 0.8838, 0.8379, 0.4341, 0.8838, 0.8379, 0.4111, 0.8584, 0.8276, 0.4111, 0.8833, 0.8398, 0.4307, 0.8379, 0.8091, 0.4111, 0.8369, 0.8101, 0.4326, 0.8594, 0.8257, 0.4326, 0.8594, 0.8257, 0.4111, 0.8369, 0.8101, 0.4111, 0.8584, 0.8276, 0.4495, 0.8408, 0.8057, 0.4307, 0.8379, 0.8091, 0.4536, 0.8618, 0.8213, 0.4536, 0.8618, 0.8213, 0.4307, 0.8379, 0.8091, 0.4326, 0.8594, 0.8257, 0.3896, 0.8594, 0.8257, 0.3689, 0.8618, 0.8213, 0.3884, 0.8838, 0.8379, 0.3884, 0.8838, 0.8379, 0.3689, 0.8618, 0.8213, 0.3665, 0.8857, 0.8325, 0.3918, 0.8379, 0.8091, 0.373, 0.8408, 0.8057, 0.3896, 0.8594, 0.8257, 0.3896, 0.8594, 0.8257, 0.373, 0.8408, 0.8057, 0.3689, 0.8618, 0.8213, 0.4111, 0.8369, 0.8101, 0.3918, 0.8379, 0.8091, 0.4111, 0.8584, 0.8276, 0.4111, 0.8584, 0.8276, 0.3918, 0.8379, 0.8091, 0.3896, 0.8594, 0.8257, 0.3469, 0.8662, 0.8125, 0.3271, 0.8721, 0.8003, 0.3428, 0.8882, 0.8213, 0.3428, 0.8882, 0.8213, 0.3271, 0.8721, 0.8003, 0.3215, 0.8921, 0.8057, 0.3533, 0.8462, 0.8003, 0.3347, 0.854, 0.7925, 0.3469, 0.8662, 0.8125, 0.3469, 0.8662, 0.8125, 0.3347, 0.854, 0.7925, 0.3271, 0.8721, 0.8003, 0.373, 0.8408, 0.8057, 0.3533, 0.8462, 0.8003, 0.3689, 0.8618, 0.8213, 0.3689, 0.8618, 0.8213, 0.3533, 0.8462, 0.8003, 0.3469, 0.8662, 0.8125, 0.3152, 0.9946, 0.7808, 0.3064, 0.999, 0.7588, 0.3271, 1.0137, 0.7744, 0.3271, 1.0137, 0.7744, 0.3064, 0.999, 0.7588, 0.3215, 1.0195, 0.7544, 0.3064, 0.9727, 0.7847, 0.2949, 0.9751, 0.7612, 0.3152, 0.9946, 0.7808, 0.3152, 0.9946, 0.7808, 0.2949, 0.9751, 0.7612, 0.3064, 0.999, 0.7588, 0.3215, 0.9688, 0.8057, 0.3064, 0.9727, 0.7847, 0.3271, 0.9883, 0.8003, 0.3271, 0.9883, 0.8003, 0.3064, 0.9727, 0.7847, 0.3152, 0.9946, 0.7808, 0.3018, 1.001, 0.7378, 0.3, 1.002, 0.7163, 0.3186, 1.0225, 0.7358, 0.3186, 1.0225, 0.7358, 0.3, 1.002, 0.7163, 0.3176, 1.0234, 0.7163, 0.2893, 0.9771, 0.7393, 0.2874, 0.9771, 0.7163, 0.3018, 1.001, 0.7378, 0.3018, 1.001, 0.7378, 0.2874, 0.9771, 0.7163, 0.3, 1.002, 0.7163, 0.2949, 0.9751, 0.7612, 0.2893, 0.9771, 0.7393, 0.3064, 0.999, 0.7588, 0.3064, 0.999, 0.7588, 0.2893, 0.9771, 0.7393, 0.3018, 1.001, 0.7378, 0.3018, 1.001, 0.6948, 0.3064, 0.999, 0.6738, 0.3186, 1.0225, 0.6968, 0.3186, 1.0225, 0.6968, 0.3064, 0.999, 0.6738, 0.3215, 1.0195, 0.6782, 0.2893, 0.9771, 0.6934, 0.2949, 0.9751, 0.6714, 0.3018, 1.001, 0.6948, 0.3018, 1.001, 0.6948, 0.2949, 0.9751, 0.6714, 0.3064, 0.999, 0.6738, 0.2874, 0.9771, 0.7163, 0.2893, 0.9771, 0.6934, 0.3, 1.002, 0.7163, 0.3, 1.002, 0.7163, 0.2893, 0.9771, 0.6934, 0.3018, 1.001, 0.6948, 0.3152, 0.9946, 0.6519, 0.3271, 0.9883, 0.6323, 0.3271, 1.0137, 0.6582, 0.3271, 1.0137, 0.6582, 0.3271, 0.9883, 0.6323, 0.3347, 1.0068, 0.6396, 0.3064, 0.9727, 0.6479, 0.3215, 0.9688, 0.6265, 0.3152, 0.9946, 0.6519, 0.3152, 0.9946, 0.6519, 0.3215, 0.9688, 0.6265, 0.3271, 0.9883, 0.6323, 0.2949, 0.9751, 0.6714, 0.3064, 0.9727, 0.6479, 0.3064, 0.999, 0.6738, 0.3064, 0.999, 0.6738, 0.3064, 0.9727, 0.6479, 0.3152, 0.9946, 0.6519, 0.3018, 0.9517, 0.7876, 0.2893, 0.9531, 0.7627, 0.3064, 0.9727, 0.7847, 0.3064, 0.9727, 0.7847, 0.2893, 0.9531, 0.7627, 0.2949, 0.9751, 0.7612, 0.3, 0.9302, 0.7881, 0.2874, 0.9302, 0.7632, 0.3018, 0.9517, 0.7876, 0.3018, 0.9517, 0.7876, 0.2874, 0.9302, 0.7632, 0.2893, 0.9531, 0.7627, 0.3176, 0.9302, 0.8101, 0.3, 0.9302, 0.7881, 0.3186, 0.9497, 0.8091, 0.3186, 0.9497, 0.8091, 0.3, 0.9302, 0.7881, 0.3018, 0.9517, 0.7876, 0.2832, 0.9541, 0.7397, 0.281, 0.9541, 0.7163, 0.2893, 0.9771, 0.7393, 0.2893, 0.9771, 0.7393, 0.281, 0.9541, 0.7163, 0.2874, 0.9771, 0.7163, 0.281, 0.9302, 0.7402, 0.2788, 0.9302, 0.7163, 0.2832, 0.9541, 0.7397, 0.2832, 0.9541, 0.7397, 0.2788, 0.9302, 0.7163, 0.281, 0.9541, 0.7163, 0.2874, 0.9302, 0.7632, 0.281, 0.9302, 0.7402, 0.2893, 0.9531, 0.7627, 0.2893, 0.9531, 0.7627, 0.281, 0.9302, 0.7402, 0.2832, 0.9541, 0.7397, 0.2832, 0.9541, 0.6929, 0.2893, 0.9531, 0.6699, 0.2893, 0.9771, 0.6934, 0.2893, 0.9771, 0.6934, 0.2893, 0.9531, 0.6699, 0.2949, 0.9751, 0.6714, 0.281, 0.9302, 0.6924, 0.2874, 0.9302, 0.6694, 0.2832, 0.9541, 0.6929, 0.2832, 0.9541, 0.6929, 0.2874, 0.9302, 0.6694, 0.2893, 0.9531, 0.6699, 0.2788, 0.9302, 0.7163, 0.281, 0.9302, 0.6924, 0.281, 0.9541, 0.7163, 0.281, 0.9541, 0.7163, 0.281, 0.9302, 0.6924, 0.2832, 0.9541, 0.6929, 0.3018, 0.9517, 0.645, 0.3186, 0.9497, 0.6235, 0.3064, 0.9727, 0.6479, 0.3064, 0.9727, 0.6479, 0.3186, 0.9497, 0.6235, 0.3215, 0.9688, 0.6265, 0.3, 0.9302, 0.6445, 0.3176, 0.9302, 0.6226, 0.3018, 0.9517, 0.645, 0.3018, 0.9517, 0.645, 0.3176, 0.9302, 0.6226, 0.3186, 0.9497, 0.6235, 0.2874, 0.9302, 0.6694, 0.3, 0.9302, 0.6445, 0.2893, 0.9531, 0.6699, 0.2893, 0.9531, 0.6699, 0.3, 0.9302, 0.6445, 0.3018, 0.9517, 0.645, 0.3018, 0.9087, 0.7876, 0.2893, 0.9077, 0.7627, 0.3, 0.9302, 0.7881, 0.3, 0.9302, 0.7881, 0.2893, 0.9077, 0.7627, 0.2874, 0.9302, 0.7632, 0.3064, 0.8882, 0.7847, 0.2949, 0.8857, 0.7612, 0.3018, 0.9087, 0.7876, 0.3018, 0.9087, 0.7876, 0.2949, 0.8857, 0.7612, 0.2893, 0.9077, 0.7627, 0.3215, 0.8921, 0.8057, 0.3064, 0.8882, 0.7847, 0.3186, 0.9111, 0.8091, 0.3186, 0.9111, 0.8091, 0.3064, 0.8882, 0.7847, 0.3018, 0.9087, 0.7876, 0.2832, 0.9067, 0.7397, 0.281, 0.9067, 0.7163, 0.281, 0.9302, 0.7402, 0.281, 0.9302, 0.7402, 0.281, 0.9067, 0.7163, 0.2788, 0.9302, 0.7163, 0.2893, 0.8838, 0.7393, 0.2874, 0.8833, 0.7163, 0.2832, 0.9067, 0.7397, 0.2832, 0.9067, 0.7397, 0.2874, 0.8833, 0.7163, 0.281, 0.9067, 0.7163, 0.2949, 0.8857, 0.7612, 0.2893, 0.8838, 0.7393, 0.2893, 0.9077, 0.7627, 0.2893, 0.9077, 0.7627, 0.2893, 0.8838, 0.7393, 0.2832, 0.9067, 0.7397, 0.2832, 0.9067, 0.6929, 0.2893, 0.9077, 0.6699, 0.281, 0.9302, 0.6924, 0.281, 0.9302, 0.6924, 0.2893, 0.9077, 0.6699, 0.2874, 0.9302, 0.6694, 0.2893, 0.8838, 0.6934, 0.2949, 0.8857, 0.6714, 0.2832, 0.9067, 0.6929, 0.2832, 0.9067, 0.6929, 0.2949, 0.8857, 0.6714, 0.2893, 0.9077, 0.6699, 0.2874, 0.8833, 0.7163, 0.2893, 0.8838, 0.6934, 0.281, 0.9067, 0.7163, 0.281, 0.9067, 0.7163, 0.2893, 0.8838, 0.6934, 0.2832, 0.9067, 0.6929, 0.3018, 0.9087, 0.645, 0.3186, 0.9111, 0.6235, 0.3, 0.9302, 0.6445, 0.3, 0.9302, 0.6445, 0.3186, 0.9111, 0.6235, 0.3176, 0.9302, 0.6226, 0.3064, 0.8882, 0.6479, 0.3215, 0.8921, 0.6265, 0.3018, 0.9087, 0.645, 0.3018, 0.9087, 0.645, 0.3215, 0.8921, 0.6265, 0.3186, 0.9111, 0.6235, 0.2949, 0.8857, 0.6714, 0.3064, 0.8882, 0.6479, 0.2893, 0.9077, 0.6699, 0.2893, 0.9077, 0.6699, 0.3064, 0.8882, 0.6479, 0.3018, 0.9087, 0.645, 0.3152, 0.8662, 0.7808, 0.3064, 0.8618, 0.7588, 0.3064, 0.8882, 0.7847, 0.3064, 0.8882, 0.7847, 0.3064, 0.8618, 0.7588, 0.2949, 0.8857, 0.7612, 0.3271, 0.8462, 0.7744, 0.3215, 0.8408, 0.7544, 0.3152, 0.8662, 0.7808, 0.3152, 0.8662, 0.7808, 0.3215, 0.8408, 0.7544, 0.3064, 0.8618, 0.7588, 0.3347, 0.854, 0.7925, 0.3271, 0.8462, 0.7744, 0.3271, 0.8721, 0.8003, 0.3271, 0.8721, 0.8003, 0.3271, 0.8462, 0.7744, 0.3152, 0.8662, 0.7808, 0.3018, 0.8594, 0.7378, 0.3, 0.8584, 0.7163, 0.2893, 0.8838, 0.7393, 0.2893, 0.8838, 0.7393, 0.3, 0.8584, 0.7163, 0.2874, 0.8833, 0.7163, 0.3186, 0.8379, 0.7358, 0.3176, 0.8369, 0.7163, 0.3018, 0.8594, 0.7378, 0.3018, 0.8594, 0.7378, 0.3176, 0.8369, 0.7163, 0.3, 0.8584, 0.7163, 0.3215, 0.8408, 0.7544, 0.3186, 0.8379, 0.7358, 0.3064, 0.8618, 0.7588, 0.3064, 0.8618, 0.7588, 0.3186, 0.8379, 0.7358, 0.3018, 0.8594, 0.7378, 0.3018, 0.8594, 0.6948, 0.3064, 0.8618, 0.6738, 0.2893, 0.8838, 0.6934, 0.2893, 0.8838, 0.6934, 0.3064, 0.8618, 0.6738, 0.2949, 0.8857, 0.6714, 0.3186, 0.8379, 0.6968, 0.3215, 0.8408, 0.6782, 0.3018, 0.8594, 0.6948, 0.3018, 0.8594, 0.6948, 0.3215, 0.8408, 0.6782, 0.3064, 0.8618, 0.6738, 0.3176, 0.8369, 0.7163, 0.3186, 0.8379, 0.6968, 0.3, 0.8584, 0.7163, 0.3, 0.8584, 0.7163, 0.3186, 0.8379, 0.6968, 0.3018, 0.8594, 0.6948, 0.3152, 0.8662, 0.6519, 0.3271, 0.8721, 0.6323, 0.3064, 0.8882, 0.6479, 0.3064, 0.8882, 0.6479, 0.3271, 0.8721, 0.6323, 0.3215, 0.8921, 0.6265, 0.3271, 0.8462, 0.6582, 0.3347, 0.854, 0.6396, 0.3152, 0.8662, 0.6519, 0.3152, 0.8662, 0.6519, 0.3347, 0.854, 0.6396, 0.3271, 0.8721, 0.6323, 0.3215, 0.8408, 0.6782, 0.3271, 0.8462, 0.6582, 0.3064, 0.8618, 0.6738, 0.3064, 0.8618, 0.6738, 0.3271, 0.8462, 0.6582, 0.3152, 0.8662, 0.6519, 0.3469, 0.9946, 0.6201, 0.3689, 0.999, 0.6113, 0.3533, 1.0137, 0.6323, 0.3533, 1.0137, 0.6323, 0.3689, 0.999, 0.6113, 0.373, 1.0195, 0.6265, 0.3428, 0.9727, 0.6113, 0.3665, 0.9751, 0.6001, 0.3469, 0.9946, 0.6201, 0.3469, 0.9946, 0.6201, 0.3665, 0.9751, 0.6001, 0.3689, 0.999, 0.6113, 0.3215, 0.9688, 0.6265, 0.3428, 0.9727, 0.6113, 0.3271, 0.9883, 0.6323, 0.3271, 0.9883, 0.6323, 0.3428, 0.9727, 0.6113, 0.3469, 0.9946, 0.6201, 0.3896, 1.001, 0.6069, 0.4111, 1.002, 0.605, 0.3918, 1.0225, 0.6235, 0.3918, 1.0225, 0.6235, 0.4111, 1.002, 0.605, 0.4111, 1.0234, 0.6226, 0.3884, 0.9771, 0.5942, 0.4111, 0.9771, 0.5923, 0.3896, 1.001, 0.6069, 0.3896, 1.001, 0.6069, 0.4111, 0.9771, 0.5923, 0.4111, 1.002, 0.605, 0.3665, 0.9751, 0.6001, 0.3884, 0.9771, 0.5942, 0.3689, 0.999, 0.6113, 0.3689, 0.999, 0.6113, 0.3884, 0.9771, 0.5942, 0.3896, 1.001, 0.6069, 0.4326, 1.001, 0.6069, 0.4536, 0.999, 0.6113, 0.4307, 1.0225, 0.6235, 0.4307, 1.0225, 0.6235, 0.4536, 0.999, 0.6113, 0.4495, 1.0195, 0.6265, 0.4341, 0.9771, 0.5942, 0.4561, 0.9751, 0.6001, 0.4326, 1.001, 0.6069, 0.4326, 1.001, 0.6069, 0.4561, 0.9751, 0.6001, 0.4536, 0.999, 0.6113, 0.4111, 0.9771, 0.5923, 0.4341, 0.9771, 0.5942, 0.4111, 1.002, 0.605, 0.4111, 1.002, 0.605, 0.4341, 0.9771, 0.5942, 0.4326, 1.001, 0.6069, 0.4756, 0.9946, 0.6201, 0.4954, 0.9883, 0.6323, 0.4692, 1.0137, 0.6323, 0.4692, 1.0137, 0.6323, 0.4954, 0.9883, 0.6323, 0.4875, 1.0068, 0.6396, 0.4797, 0.9727, 0.6113, 0.5005, 0.9688, 0.6265, 0.4756, 0.9946, 0.6201, 0.4756, 0.9946, 0.6201, 0.5005, 0.9688, 0.6265, 0.4954, 0.9883, 0.6323, 0.4561, 0.9751, 0.6001, 0.4797, 0.9727, 0.6113, 0.4536, 0.999, 0.6113, 0.4536, 0.999, 0.6113, 0.4797, 0.9727, 0.6113, 0.4756, 0.9946, 0.6201, 0.3401, 0.9517, 0.6069, 0.3647, 0.9531, 0.5942, 0.3428, 0.9727, 0.6113, 0.3428, 0.9727, 0.6113, 0.3647, 0.9531, 0.5942, 0.3665, 0.9751, 0.6001, 0.3394, 0.9302, 0.605, 0.3645, 0.9302, 0.5923, 0.3401, 0.9517, 0.6069, 0.3401, 0.9517, 0.6069, 0.3645, 0.9302, 0.5923, 0.3647, 0.9531, 0.5942, 0.3176, 0.9302, 0.6226, 0.3394, 0.9302, 0.605, 0.3186, 0.9497, 0.6235, 0.3186, 0.9497, 0.6235, 0.3394, 0.9302, 0.605, 0.3401, 0.9517, 0.6069, 0.3877, 0.9541, 0.5884, 0.4111, 0.9541, 0.5859, 0.3884, 0.9771, 0.5942, 0.3884, 0.9771, 0.5942, 0.4111, 0.9541, 0.5859, 0.4111, 0.9771, 0.5923, 0.3875, 0.9302, 0.5859, 0.4111, 0.9302, 0.584, 0.3877, 0.9541, 0.5884, 0.3877, 0.9541, 0.5884, 0.4111, 0.9302, 0.584, 0.4111, 0.9541, 0.5859, 0.3645, 0.9302, 0.5923, 0.3875, 0.9302, 0.5859, 0.3647, 0.9531, 0.5942, 0.3647, 0.9531, 0.5942, 0.3875, 0.9302, 0.5859, 0.3877, 0.9541, 0.5884, 0.4348, 0.9541, 0.5884, 0.4578, 0.9531, 0.5942, 0.4341, 0.9771, 0.5942, 0.4341, 0.9771, 0.5942, 0.4578, 0.9531, 0.5942, 0.4561, 0.9751, 0.6001, 0.4351, 0.9302, 0.5859, 0.458, 0.9302, 0.5923, 0.4348, 0.9541, 0.5884, 0.4348, 0.9541, 0.5884, 0.458, 0.9302, 0.5923, 0.4578, 0.9531, 0.5942, 0.4111, 0.9302, 0.584, 0.4351, 0.9302, 0.5859, 0.4111, 0.9541, 0.5859, 0.4111, 0.9541, 0.5859, 0.4351, 0.9302, 0.5859, 0.4348, 0.9541, 0.5884, 0.4824, 0.9517, 0.6069, 0.5039, 0.9497, 0.6235, 0.4797, 0.9727, 0.6113, 0.4797, 0.9727, 0.6113, 0.5039, 0.9497, 0.6235, 0.5005, 0.9688, 0.6265, 0.4829, 0.9302, 0.605, 0.5049, 0.9302, 0.6226, 0.4824, 0.9517, 0.6069, 0.4824, 0.9517, 0.6069, 0.5049, 0.9302, 0.6226, 0.5039, 0.9497, 0.6235, 0.458, 0.9302, 0.5923, 0.4829, 0.9302, 0.605, 0.4578, 0.9531, 0.5942, 0.4578, 0.9531, 0.5942, 0.4829, 0.9302, 0.605, 0.4824, 0.9517, 0.6069, 0.3401, 0.9087, 0.6069, 0.3647, 0.9077, 0.5942, 0.3394, 0.9302, 0.605, 0.3394, 0.9302, 0.605, 0.3647, 0.9077, 0.5942, 0.3645, 0.9302, 0.5923, 0.3428, 0.8882, 0.6113, 0.3665, 0.8857, 0.6001, 0.3401, 0.9087, 0.6069, 0.3401, 0.9087, 0.6069, 0.3665, 0.8857, 0.6001, 0.3647, 0.9077, 0.5942, 0.3215, 0.8921, 0.6265, 0.3428, 0.8882, 0.6113, 0.3186, 0.9111, 0.6235, 0.3186, 0.9111, 0.6235, 0.3428, 0.8882, 0.6113, 0.3401, 0.9087, 0.6069, 0.3877, 0.9067, 0.5884, 0.4111, 0.9067, 0.5859, 0.3875, 0.9302, 0.5859, 0.3875, 0.9302, 0.5859, 0.4111, 0.9067, 0.5859, 0.4111, 0.9302, 0.584, 0.3884, 0.8838, 0.5942, 0.4111, 0.8833, 0.5923, 0.3877, 0.9067, 0.5884, 0.3877, 0.9067, 0.5884, 0.4111, 0.8833, 0.5923, 0.4111, 0.9067, 0.5859, 0.3665, 0.8857, 0.6001, 0.3884, 0.8838, 0.5942, 0.3647, 0.9077, 0.5942, 0.3647, 0.9077, 0.5942, 0.3884, 0.8838, 0.5942, 0.3877, 0.9067, 0.5884, 0.4348, 0.9067, 0.5884, 0.4578, 0.9077, 0.5942, 0.4351, 0.9302, 0.5859, 0.4351, 0.9302, 0.5859, 0.4578, 0.9077, 0.5942, 0.458, 0.9302, 0.5923, 0.4341, 0.8838, 0.5942, 0.4561, 0.8857, 0.6001, 0.4348, 0.9067, 0.5884, 0.4348, 0.9067, 0.5884, 0.4561, 0.8857, 0.6001, 0.4578, 0.9077, 0.5942, 0.4111, 0.8833, 0.5923, 0.4341, 0.8838, 0.5942, 0.4111, 0.9067, 0.5859, 0.4111, 0.9067, 0.5859, 0.4341, 0.8838, 0.5942, 0.4348, 0.9067, 0.5884, 0.4824, 0.9087, 0.6069, 0.5039, 0.9111, 0.6235, 0.4829, 0.9302, 0.605, 0.4829, 0.9302, 0.605, 0.5039, 0.9111, 0.6235, 0.5049, 0.9302, 0.6226, 0.4797, 0.8882, 0.6113, 0.5005, 0.8921, 0.6265, 0.4824, 0.9087, 0.6069, 0.4824, 0.9087, 0.6069, 0.5005, 0.8921, 0.6265, 0.5039, 0.9111, 0.6235, 0.4561, 0.8857, 0.6001, 0.4797, 0.8882, 0.6113, 0.4578, 0.9077, 0.5942, 0.4578, 0.9077, 0.5942, 0.4797, 0.8882, 0.6113, 0.4824, 0.9087, 0.6069, 0.3469, 0.8662, 0.6201, 0.3689, 0.8618, 0.6113, 0.3428, 0.8882, 0.6113, 0.3428, 0.8882, 0.6113, 0.3689, 0.8618, 0.6113, 0.3665, 0.8857, 0.6001, 0.3533, 0.8462, 0.6323, 0.373, 0.8408, 0.6265, 0.3469, 0.8662, 0.6201, 0.3469, 0.8662, 0.6201, 0.373, 0.8408, 0.6265, 0.3689, 0.8618, 0.6113, 0.3347, 0.854, 0.6396, 0.3533, 0.8462, 0.6323, 0.3271, 0.8721, 0.6323, 0.3271, 0.8721, 0.6323, 0.3533, 0.8462, 0.6323, 0.3469, 0.8662, 0.6201, 0.3896, 0.8594, 0.6069, 0.4111, 0.8584, 0.605, 0.3884, 0.8838, 0.5942, 0.3884, 0.8838, 0.5942, 0.4111, 0.8584, 0.605, 0.4111, 0.8833, 0.5923, 0.3918, 0.8379, 0.6235, 0.4111, 0.8369, 0.6226, 0.3896, 0.8594, 0.6069, 0.3896, 0.8594, 0.6069, 0.4111, 0.8369, 0.6226, 0.4111, 0.8584, 0.605, 0.373, 0.8408, 0.6265, 0.3918, 0.8379, 0.6235, 0.3689, 0.8618, 0.6113, 0.3689, 0.8618, 0.6113, 0.3918, 0.8379, 0.6235, 0.3896, 0.8594, 0.6069, 0.4326, 0.8594, 0.6069, 0.4536, 0.8618, 0.6113, 0.4341, 0.8838, 0.5942, 0.4341, 0.8838, 0.5942, 0.4536, 0.8618, 0.6113, 0.4561, 0.8857, 0.6001, 0.4307, 0.8379, 0.6235, 0.4495, 0.8408, 0.6265, 0.4326, 0.8594, 0.6069, 0.4326, 0.8594, 0.6069, 0.4495, 0.8408, 0.6265, 0.4536, 0.8618, 0.6113, 0.4111, 0.8369, 0.6226, 0.4307, 0.8379, 0.6235, 0.4111, 0.8584, 0.605, 0.4111, 0.8584, 0.605, 0.4307, 0.8379, 0.6235, 0.4326, 0.8594, 0.6069, 0.4756, 0.8662, 0.6201, 0.4954, 0.8721, 0.6323, 0.4797, 0.8882, 0.6113, 0.4797, 0.8882, 0.6113, 0.4954, 0.8721, 0.6323, 0.5005, 0.8921, 0.6265, 0.4692, 0.8462, 0.6323, 0.4875, 0.854, 0.6396, 0.4756, 0.8662, 0.6201, 0.4756, 0.8662, 0.6201, 0.4875, 0.854, 0.6396, 0.4954, 0.8721, 0.6323, 0.4495, 0.8408, 0.6265, 0.4692, 0.8462, 0.6323, 0.4536, 0.8618, 0.6113, 0.4536, 0.8618, 0.6113, 0.4692, 0.8462, 0.6323, 0.4756, 0.8662, 0.6201, -0.4797, 0.8882, 0.6113, -0.4756, 0.8662, 0.6201, -0.4561, 0.8857, 0.6001, -0.4561, 0.8857, 0.6001, -0.4756, 0.8662, 0.6201, -0.4536, 0.8618, 0.6113, -0.4341, 0.8838, 0.5942, -0.4326, 0.8594, 0.6069, -0.4111, 0.8833, 0.5923, -0.4111, 0.8833, 0.5923, -0.4326, 0.8594, 0.6069, -0.4111, 0.8584, 0.605, -0.3884, 0.8838, 0.5942, -0.3896, 0.8594, 0.6069, -0.3665, 0.8857, 0.6001, -0.3665, 0.8857, 0.6001, -0.3896, 0.8594, 0.6069, -0.3689, 0.8618, 0.6113, -0.3428, 0.8882, 0.6113, -0.3469, 0.8662, 0.6201, -0.3215, 0.8921, 0.6265, -0.3215, 0.8921, 0.6265, -0.3469, 0.8662, 0.6201, -0.3271, 0.8721, 0.6323, -0.4829, 0.9302, 0.605, -0.4824, 0.9087, 0.6069, -0.458, 0.9302, 0.5923, -0.458, 0.9302, 0.5923, -0.4824, 0.9087, 0.6069, -0.4578, 0.9077, 0.5942, -0.4351, 0.9302, 0.5859, -0.4348, 0.9067, 0.5884, -0.4111, 0.9302, 0.584, -0.4111, 0.9302, 0.584, -0.4348, 0.9067, 0.5884, -0.4111, 0.9067, 0.5859, -0.3875, 0.9302, 0.5859, -0.3877, 0.9067, 0.5884, -0.3645, 0.9302, 0.5923, -0.3645, 0.9302, 0.5923, -0.3877, 0.9067, 0.5884, -0.3647, 0.9077, 0.5942, -0.3394, 0.9302, 0.605, -0.3401, 0.9087, 0.6069, -0.3176, 0.9302, 0.6226, -0.3176, 0.9302, 0.6226, -0.3401, 0.9087, 0.6069, -0.3186, 0.9111, 0.6235, -0.4797, 0.9727, 0.6113, -0.4824, 0.9517, 0.6069, -0.4561, 0.9751, 0.6001, -0.4561, 0.9751, 0.6001, -0.4824, 0.9517, 0.6069, -0.4578, 0.9531, 0.5942, -0.4341, 0.9771, 0.5942, -0.4348, 0.9541, 0.5884, -0.4111, 0.9771, 0.5923, -0.4111, 0.9771, 0.5923, -0.4348, 0.9541, 0.5884, -0.4111, 0.9541, 0.5859, -0.3884, 0.9771, 0.5942, -0.3877, 0.9541, 0.5884, -0.3665, 0.9751, 0.6001, -0.3665, 0.9751, 0.6001, -0.3877, 0.9541, 0.5884, -0.3647, 0.9531, 0.5942, -0.3428, 0.9727, 0.6113, -0.3401, 0.9517, 0.6069, -0.3215, 0.9688, 0.6265, -0.3215, 0.9688, 0.6265, -0.3401, 0.9517, 0.6069, -0.3186, 0.9497, 0.6235, -0.4692, 1.0137, 0.6323, -0.4756, 0.9946, 0.6201, -0.4495, 1.0195, 0.6265, -0.4495, 1.0195, 0.6265, -0.4756, 0.9946, 0.6201, -0.4536, 0.999, 0.6113, -0.4307, 1.0225, 0.6235, -0.4326, 1.001, 0.6069, -0.4111, 1.0234, 0.6226, -0.4111, 1.0234, 0.6226, -0.4326, 1.001, 0.6069, -0.4111, 1.002, 0.605, -0.3918, 1.0225, 0.6235, -0.3896, 1.001, 0.6069, -0.373, 1.0195, 0.6265, -0.373, 1.0195, 0.6265, -0.3896, 1.001, 0.6069, -0.3689, 0.999, 0.6113, -0.3533, 1.0137, 0.6323, -0.3469, 0.9946, 0.6201, -0.3347, 1.0068, 0.6396, -0.3347, 1.0068, 0.6396, -0.3469, 0.9946, 0.6201, -0.3271, 0.9883, 0.6323, -0.3064, 0.8882, 0.6479, -0.3152, 0.8662, 0.6519, -0.2949, 0.8857, 0.6714, -0.2949, 0.8857, 0.6714, -0.3152, 0.8662, 0.6519, -0.3064, 0.8618, 0.6738, -0.2893, 0.8838, 0.6934, -0.3018, 0.8594, 0.6948, -0.2874, 0.8833, 0.7163, -0.2874, 0.8833, 0.7163, -0.3018, 0.8594, 0.6948, -0.3, 0.8584, 0.7163, -0.2893, 0.8838, 0.7393, -0.3018, 0.8594, 0.7378, -0.2949, 0.8857, 0.7612, -0.2949, 0.8857, 0.7612, -0.3018, 0.8594, 0.7378, -0.3064, 0.8618, 0.7588, -0.3064, 0.8882, 0.7847, -0.3152, 0.8662, 0.7808, -0.3215, 0.8921, 0.8057, -0.3215, 0.8921, 0.8057, -0.3152, 0.8662, 0.7808, -0.3271, 0.8721, 0.8003, -0.3, 0.9302, 0.6445, -0.3018, 0.9087, 0.645, -0.2874, 0.9302, 0.6694, -0.2874, 0.9302, 0.6694, -0.3018, 0.9087, 0.645, -0.2893, 0.9077, 0.6699, -0.281, 0.9302, 0.6924, -0.2832, 0.9067, 0.6929, -0.2788, 0.9302, 0.7163, -0.2788, 0.9302, 0.7163, -0.2832, 0.9067, 0.6929, -0.281, 0.9067, 0.7163, -0.281, 0.9302, 0.7402, -0.2832, 0.9067, 0.7397, -0.2874, 0.9302, 0.7632, -0.2874, 0.9302, 0.7632, -0.2832, 0.9067, 0.7397, -0.2893, 0.9077, 0.7627, -0.3, 0.9302, 0.7881, -0.3018, 0.9087, 0.7876, -0.3176, 0.9302, 0.8101, -0.3176, 0.9302, 0.8101, -0.3018, 0.9087, 0.7876, -0.3186, 0.9111, 0.8091, -0.3064, 0.9727, 0.6479, -0.3018, 0.9517, 0.645, -0.2949, 0.9751, 0.6714, -0.2949, 0.9751, 0.6714, -0.3018, 0.9517, 0.645, -0.2893, 0.9531, 0.6699, -0.2893, 0.9771, 0.6934, -0.2832, 0.9541, 0.6929, -0.2874, 0.9771, 0.7163, -0.2874, 0.9771, 0.7163, -0.2832, 0.9541, 0.6929, -0.281, 0.9541, 0.7163, -0.2893, 0.9771, 0.7393, -0.2832, 0.9541, 0.7397, -0.2949, 0.9751, 0.7612, -0.2949, 0.9751, 0.7612, -0.2832, 0.9541, 0.7397, -0.2893, 0.9531, 0.7627, -0.3064, 0.9727, 0.7847, -0.3018, 0.9517, 0.7876, -0.3215, 0.9688, 0.8057, -0.3215, 0.9688, 0.8057, -0.3018, 0.9517, 0.7876, -0.3186, 0.9497, 0.8091, -0.3271, 1.0137, 0.6582, -0.3152, 0.9946, 0.6519, -0.3215, 1.0195, 0.6782, -0.3215, 1.0195, 0.6782, -0.3152, 0.9946, 0.6519, -0.3064, 0.999, 0.6738, -0.3186, 1.0225, 0.6968, -0.3018, 1.001, 0.6948, -0.3176, 1.0234, 0.7163, -0.3176, 1.0234, 0.7163, -0.3018, 1.001, 0.6948, -0.3, 1.002, 0.7163, -0.3186, 1.0225, 0.7358, -0.3018, 1.001, 0.7378, -0.3215, 1.0195, 0.7544, -0.3215, 1.0195, 0.7544, -0.3018, 1.001, 0.7378, -0.3064, 0.999, 0.7588, -0.3271, 1.0137, 0.7744, -0.3152, 0.9946, 0.7808, -0.3347, 1.0068, 0.7925, -0.3347, 1.0068, 0.7925, -0.3152, 0.9946, 0.7808, -0.3271, 0.9883, 0.8003, -0.3428, 0.8882, 0.8213, -0.3469, 0.8662, 0.8125, -0.3665, 0.8857, 0.8325, -0.3665, 0.8857, 0.8325, -0.3469, 0.8662, 0.8125, -0.3689, 0.8618, 0.8213, -0.3884, 0.8838, 0.8379, -0.3896, 0.8594, 0.8257, -0.4111, 0.8833, 0.8398, -0.4111, 0.8833, 0.8398, -0.3896, 0.8594, 0.8257, -0.4111, 0.8584, 0.8276, -0.4341, 0.8838, 0.8379, -0.4326, 0.8594, 0.8257, -0.4561, 0.8857, 0.8325, -0.4561, 0.8857, 0.8325, -0.4326, 0.8594, 0.8257, -0.4536, 0.8618, 0.8213, -0.4797, 0.8882, 0.8213, -0.4756, 0.8662, 0.8125, -0.5005, 0.8921, 0.8057, -0.5005, 0.8921, 0.8057, -0.4756, 0.8662, 0.8125, -0.4954, 0.8721, 0.8003, -0.3394, 0.9302, 0.8276, -0.3401, 0.9087, 0.8257, -0.3645, 0.9302, 0.8398, -0.3645, 0.9302, 0.8398, -0.3401, 0.9087, 0.8257, -0.3647, 0.9077, 0.8379, -0.3875, 0.9302, 0.8467, -0.3877, 0.9067, 0.8442, -0.4111, 0.9302, 0.8486, -0.4111, 0.9302, 0.8486, -0.3877, 0.9067, 0.8442, -0.4111, 0.9067, 0.8467, -0.4351, 0.9302, 0.8467, -0.4348, 0.9067, 0.8442, -0.458, 0.9302, 0.8398, -0.458, 0.9302, 0.8398, -0.4348, 0.9067, 0.8442, -0.4578, 0.9077, 0.8379, -0.4829, 0.9302, 0.8276, -0.4824, 0.9087, 0.8257, -0.5049, 0.9302, 0.8101, -0.5049, 0.9302, 0.8101, -0.4824, 0.9087, 0.8257, -0.5039, 0.9111, 0.8091, -0.3428, 0.9727, 0.8213, -0.3401, 0.9517, 0.8257, -0.3665, 0.9751, 0.8325, -0.3665, 0.9751, 0.8325, -0.3401, 0.9517, 0.8257, -0.3647, 0.9531, 0.8379, -0.3884, 0.9771, 0.8379, -0.3877, 0.9541, 0.8442, -0.4111, 0.9771, 0.8398, -0.4111, 0.9771, 0.8398, -0.3877, 0.9541, 0.8442, -0.4111, 0.9541, 0.8467, -0.4341, 0.9771, 0.8379, -0.4348, 0.9541, 0.8442, -0.4561, 0.9751, 0.8325, -0.4561, 0.9751, 0.8325, -0.4348, 0.9541, 0.8442, -0.4578, 0.9531, 0.8379, -0.4797, 0.9727, 0.8213, -0.4824, 0.9517, 0.8257, -0.5005, 0.9688, 0.8057, -0.5005, 0.9688, 0.8057, -0.4824, 0.9517, 0.8257, -0.5039, 0.9497, 0.8091, -0.3533, 1.0137, 0.8003, -0.3469, 0.9946, 0.8125, -0.373, 1.0195, 0.8057, -0.373, 1.0195, 0.8057, -0.3469, 0.9946, 0.8125, -0.3689, 0.999, 0.8213, -0.3918, 1.0225, 0.8091, -0.3896, 1.001, 0.8257, -0.4111, 1.0234, 0.8101, -0.4111, 1.0234, 0.8101, -0.3896, 1.001, 0.8257, -0.4111, 1.002, 0.8276, -0.4307, 1.0225, 0.8091, -0.4326, 1.001, 0.8257, -0.4495, 1.0195, 0.8057, -0.4495, 1.0195, 0.8057, -0.4326, 1.001, 0.8257, -0.4536, 0.999, 0.8213, -0.4692, 1.0137, 0.8003, -0.4756, 0.9946, 0.8125, -0.4875, 1.0068, 0.7925, -0.4875, 1.0068, 0.7925, -0.4756, 0.9946, 0.8125, -0.4954, 0.9883, 0.8003, -0.5161, 0.8882, 0.7847, -0.5073, 0.8662, 0.7808, -0.5273, 0.8857, 0.7612, -0.5273, 0.8857, 0.7612, -0.5073, 0.8662, 0.7808, -0.5161, 0.8618, 0.7588, -0.5327, 0.8838, 0.7393, -0.5205, 0.8594, 0.7378, -0.5347, 0.8833, 0.7163, -0.5347, 0.8833, 0.7163, -0.5205, 0.8594, 0.7378, -0.5225, 0.8584, 0.7163, -0.5327, 0.8838, 0.6934, -0.5205, 0.8594, 0.6948, -0.5273, 0.8857, 0.6714, -0.5273, 0.8857, 0.6714, -0.5205, 0.8594, 0.6948, -0.5161, 0.8618, 0.6738, -0.5161, 0.8882, 0.6479, -0.5073, 0.8662, 0.6519, -0.5005, 0.8921, 0.6265, -0.5005, 0.8921, 0.6265, -0.5073, 0.8662, 0.6519, -0.4954, 0.8721, 0.6323, -0.5225, 0.9302, 0.7881, -0.5205, 0.9087, 0.7876, -0.5347, 0.9302, 0.7632, -0.5347, 0.9302, 0.7632, -0.5205, 0.9087, 0.7876, -0.5327, 0.9077, 0.7627, -0.5415, 0.9302, 0.7402, -0.5391, 0.9067, 0.7397, -0.5435, 0.9302, 0.7163, -0.5435, 0.9302, 0.7163, -0.5391, 0.9067, 0.7397, -0.5415, 0.9067, 0.7163, -0.5415, 0.9302, 0.6924, -0.5391, 0.9067, 0.6929, -0.5347, 0.9302, 0.6694, -0.5347, 0.9302, 0.6694, -0.5391, 0.9067, 0.6929, -0.5327, 0.9077, 0.6699, -0.5225, 0.9302, 0.6445, -0.5205, 0.9087, 0.645, -0.5049, 0.9302, 0.6226, -0.5049, 0.9302, 0.6226, -0.5205, 0.9087, 0.645, -0.5039, 0.9111, 0.6235, -0.5161, 0.9727, 0.7847, -0.5205, 0.9517, 0.7876, -0.5273, 0.9751, 0.7612, -0.5273, 0.9751, 0.7612, -0.5205, 0.9517, 0.7876, -0.5327, 0.9531, 0.7627, -0.5327, 0.9771, 0.7393, -0.5391, 0.9541, 0.7397, -0.5347, 0.9771, 0.7163, -0.5347, 0.9771, 0.7163, -0.5391, 0.9541, 0.7397, -0.5415, 0.9541, 0.7163, -0.5327, 0.9771, 0.6934, -0.5391, 0.9541, 0.6929, -0.5273, 0.9751, 0.6714, -0.5273, 0.9751, 0.6714, -0.5391, 0.9541, 0.6929, -0.5327, 0.9531, 0.6699, -0.5161, 0.9727, 0.6479, -0.5205, 0.9517, 0.645, -0.5005, 0.9688, 0.6265, -0.5005, 0.9688, 0.6265, -0.5205, 0.9517, 0.645, -0.5039, 0.9497, 0.6235, -0.4954, 1.0137, 0.7744, -0.5073, 0.9946, 0.7808, -0.5005, 1.0195, 0.7544, -0.5005, 1.0195, 0.7544, -0.5073, 0.9946, 0.7808, -0.5161, 0.999, 0.7588, -0.5039, 1.0225, 0.7358, -0.5205, 1.001, 0.7378, -0.5049, 1.0234, 0.7163, -0.5049, 1.0234, 0.7163, -0.5205, 1.001, 0.7378, -0.5225, 1.002, 0.7163, -0.5039, 1.0225, 0.6968, -0.5205, 1.001, 0.6948, -0.5005, 1.0195, 0.6782, -0.5005, 1.0195, 0.6782, -0.5205, 1.001, 0.6948, -0.5161, 0.999, 0.6738, -0.4954, 1.0137, 0.6582, -0.5073, 0.9946, 0.6519, -0.4875, 1.0068, 0.6396, -0.4875, 1.0068, 0.6396, -0.5073, 0.9946, 0.6519, -0.4954, 0.9883, 0.6323, -0.4797, 0.8252, 0.7588, -0.4756, 0.8345, 0.7803, -0.4561, 0.814, 0.7612, -0.4561, 0.814, 0.7612, -0.4756, 0.8345, 0.7803, -0.4536, 0.8252, 0.7847, -0.4341, 0.8086, 0.7627, -0.4326, 0.8208, 0.7876, -0.4111, 0.8066, 0.7632, -0.4111, 0.8066, 0.7632, -0.4326, 0.8208, 0.7876, -0.4111, 0.8193, 0.7881, -0.3884, 0.8086, 0.7627, -0.3896, 0.8208, 0.7876, -0.3665, 0.814, 0.7612, -0.3665, 0.814, 0.7612, -0.3896, 0.8208, 0.7876, -0.3689, 0.8252, 0.7847, -0.3428, 0.8252, 0.7588, -0.3469, 0.8345, 0.7803, -0.3215, 0.8408, 0.7544, -0.3215, 0.8408, 0.7544, -0.3469, 0.8345, 0.7803, -0.3271, 0.8462, 0.7744, -0.4829, 0.8193, 0.7163, -0.4824, 0.8208, 0.7378, -0.458, 0.8066, 0.7163, -0.458, 0.8066, 0.7163, -0.4824, 0.8208, 0.7378, -0.4578, 0.8086, 0.7393, -0.4351, 0.8003, 0.7163, -0.4348, 0.8022, 0.7397, -0.4111, 0.7979, 0.7163, -0.4111, 0.7979, 0.7163, -0.4348, 0.8022, 0.7397, -0.4111, 0.8003, 0.7402, -0.3875, 0.8003, 0.7163, -0.3877, 0.8022, 0.7397, -0.3645, 0.8066, 0.7163, -0.3645, 0.8066, 0.7163, -0.3877, 0.8022, 0.7397, -0.3647, 0.8086, 0.7393, -0.3394, 0.8193, 0.7163, -0.3401, 0.8208, 0.7378, -0.3176, 0.8369, 0.7163, -0.3176, 0.8369, 0.7163, -0.3401, 0.8208, 0.7378, -0.3186, 0.8379, 0.7358, -0.4797, 0.8252, 0.6738, -0.4824, 0.8208, 0.6948, -0.4561, 0.814, 0.6714, -0.4561, 0.814, 0.6714, -0.4824, 0.8208, 0.6948, -0.4578, 0.8086, 0.6934, -0.4341, 0.8086, 0.6699, -0.4348, 0.8022, 0.6929, -0.4111, 0.8066, 0.6694, -0.4111, 0.8066, 0.6694, -0.4348, 0.8022, 0.6929, -0.4111, 0.8003, 0.6924, -0.3884, 0.8086, 0.6699, -0.3877, 0.8022, 0.6929, -0.3665, 0.814, 0.6714, -0.3665, 0.814, 0.6714, -0.3877, 0.8022, 0.6929, -0.3647, 0.8086, 0.6934, -0.3428, 0.8252, 0.6738, -0.3401, 0.8208, 0.6948, -0.3215, 0.8408, 0.6782, -0.3215, 0.8408, 0.6782, -0.3401, 0.8208, 0.6948, -0.3186, 0.8379, 0.6968, -0.4692, 0.8462, 0.6323, -0.4756, 0.8345, 0.6519, -0.4495, 0.8408, 0.6265, -0.4495, 0.8408, 0.6265, -0.4756, 0.8345, 0.6519, -0.4536, 0.8252, 0.6479, -0.4307, 0.8379, 0.6235, -0.4326, 0.8208, 0.645, -0.4111, 0.8369, 0.6226, -0.4111, 0.8369, 0.6226, -0.4326, 0.8208, 0.645, -0.4111, 0.8193, 0.6445, -0.3918, 0.8379, 0.6235, -0.3896, 0.8208, 0.645, -0.373, 0.8408, 0.6265, -0.373, 0.8408, 0.6265, -0.3896, 0.8208, 0.645, -0.3689, 0.8252, 0.6479, -0.3533, 0.8462, 0.6323, -0.3469, 0.8345, 0.6519, -0.3347, 0.854, 0.6396, -0.3347, 0.854, 0.6396, -0.3469, 0.8345, 0.6519, -0.3271, 0.8462, 0.6582, -0.4797, 1.0352, 0.6738, -0.4756, 1.0264, 0.6519, -0.4561, 1.0459, 0.6714, -0.4561, 1.0459, 0.6714, -0.4756, 1.0264, 0.6519, -0.4536, 1.0352, 0.6479, -0.4341, 1.0518, 0.6699, -0.4326, 1.04, 0.645, -0.4111, 1.0537, 0.6694, -0.4111, 1.0537, 0.6694, -0.4326, 1.04, 0.645, -0.4111, 1.041, 0.6445, -0.3884, 1.0518, 0.6699, -0.3896, 1.04, 0.645, -0.3665, 1.0459, 0.6714, -0.3665, 1.0459, 0.6714, -0.3896, 1.04, 0.645, -0.3689, 1.0352, 0.6479, -0.3428, 1.0352, 0.6738, -0.3469, 1.0264, 0.6519, -0.3215, 1.0195, 0.6782, -0.3215, 1.0195, 0.6782, -0.3469, 1.0264, 0.6519, -0.3271, 1.0137, 0.6582, -0.4829, 1.041, 0.7163, -0.4824, 1.04, 0.6948, -0.458, 1.0537, 0.7163, -0.458, 1.0537, 0.7163, -0.4824, 1.04, 0.6948, -0.4578, 1.0518, 0.6934, -0.4351, 1.0605, 0.7163, -0.4348, 1.0586, 0.6929, -0.4111, 1.0625, 0.7163, -0.4111, 1.0625, 0.7163, -0.4348, 1.0586, 0.6929, -0.4111, 1.0605, 0.6924, -0.3875, 1.0605, 0.7163, -0.3877, 1.0586, 0.6929, -0.3645, 1.0537, 0.7163, -0.3645, 1.0537, 0.7163, -0.3877, 1.0586, 0.6929, -0.3647, 1.0518, 0.6934, -0.3394, 1.041, 0.7163, -0.3401, 1.04, 0.6948, -0.3176, 1.0234, 0.7163, -0.3176, 1.0234, 0.7163, -0.3401, 1.04, 0.6948, -0.3186, 1.0225, 0.6968, -0.4797, 1.0352, 0.7588, -0.4824, 1.04, 0.7378, -0.4561, 1.0459, 0.7612, -0.4561, 1.0459, 0.7612, -0.4824, 1.04, 0.7378, -0.4578, 1.0518, 0.7393, -0.4341, 1.0518, 0.7627, -0.4348, 1.0586, 0.7397, -0.4111, 1.0537, 0.7632, -0.4111, 1.0537, 0.7632, -0.4348, 1.0586, 0.7397, -0.4111, 1.0605, 0.7402, -0.3884, 1.0518, 0.7627, -0.3877, 1.0586, 0.7397, -0.3665, 1.0459, 0.7612, -0.3665, 1.0459, 0.7612, -0.3877, 1.0586, 0.7397, -0.3647, 1.0518, 0.7393, -0.3428, 1.0352, 0.7588, -0.3401, 1.04, 0.7378, -0.3215, 1.0195, 0.7544, -0.3215, 1.0195, 0.7544, -0.3401, 1.04, 0.7378, -0.3186, 1.0225, 0.7358, -0.4692, 1.0137, 0.8003, -0.4756, 1.0264, 0.7803, -0.4495, 1.0195, 0.8057, -0.4495, 1.0195, 0.8057, -0.4756, 1.0264, 0.7803, -0.4536, 1.0352, 0.7847, -0.4307, 1.0225, 0.8091, -0.4326, 1.04, 0.7876, -0.4111, 1.0234, 0.8101, -0.4111, 1.0234, 0.8101, -0.4326, 1.04, 0.7876, -0.4111, 1.041, 0.7881, -0.3918, 1.0225, 0.8091, -0.3896, 1.04, 0.7876, -0.373, 1.0195, 0.8057, -0.373, 1.0195, 0.8057, -0.3896, 1.04, 0.7876, -0.3689, 1.0352, 0.7847, -0.3533, 1.0137, 0.8003, -0.3469, 1.0264, 0.7803, -0.3347, 1.0068, 0.7925, -0.3347, 1.0068, 0.7925, -0.3469, 1.0264, 0.7803, -0.3271, 1.0137, 0.7744, -0.373, 1.0195, 0.8057, -0.3689, 1.0352, 0.7847, -0.3533, 1.0137, 0.8003, -0.3533, 1.0137, 0.8003, -0.3689, 1.0352, 0.7847, -0.3469, 1.0264, 0.7803, -0.3689, 1.0352, 0.7847, -0.3665, 1.0459, 0.7612, -0.3469, 1.0264, 0.7803, -0.3469, 1.0264, 0.7803, -0.3665, 1.0459, 0.7612, -0.3428, 1.0352, 0.7588, -0.3469, 1.0264, 0.7803, -0.3428, 1.0352, 0.7588, -0.3271, 1.0137, 0.7744, -0.3271, 1.0137, 0.7744, -0.3428, 1.0352, 0.7588, -0.3215, 1.0195, 0.7544, -0.4111, 1.0234, 0.8101, -0.4111, 1.041, 0.7881, -0.3918, 1.0225, 0.8091, -0.3918, 1.0225, 0.8091, -0.4111, 1.041, 0.7881, -0.3896, 1.04, 0.7876, -0.4111, 1.041, 0.7881, -0.4111, 1.0537, 0.7632, -0.3896, 1.04, 0.7876, -0.3896, 1.04, 0.7876, -0.4111, 1.0537, 0.7632, -0.3884, 1.0518, 0.7627, -0.3896, 1.04, 0.7876, -0.3884, 1.0518, 0.7627, -0.3689, 1.0352, 0.7847, -0.3689, 1.0352, 0.7847, -0.3884, 1.0518, 0.7627, -0.3665, 1.0459, 0.7612, -0.4495, 1.0195, 0.8057, -0.4536, 1.0352, 0.7847, -0.4307, 1.0225, 0.8091, -0.4307, 1.0225, 0.8091, -0.4536, 1.0352, 0.7847, -0.4326, 1.04, 0.7876, -0.4536, 1.0352, 0.7847, -0.4561, 1.0459, 0.7612, -0.4326, 1.04, 0.7876, -0.4326, 1.04, 0.7876, -0.4561, 1.0459, 0.7612, -0.4341, 1.0518, 0.7627, -0.4326, 1.04, 0.7876, -0.4341, 1.0518, 0.7627, -0.4111, 1.041, 0.7881, -0.4111, 1.041, 0.7881, -0.4341, 1.0518, 0.7627, -0.4111, 1.0537, 0.7632, -0.4875, 1.0068, 0.7925, -0.4954, 1.0137, 0.7744, -0.4692, 1.0137, 0.8003, -0.4692, 1.0137, 0.8003, -0.4954, 1.0137, 0.7744, -0.4756, 1.0264, 0.7803, -0.4954, 1.0137, 0.7744, -0.5005, 1.0195, 0.7544, -0.4756, 1.0264, 0.7803, -0.4756, 1.0264, 0.7803, -0.5005, 1.0195, 0.7544, -0.4797, 1.0352, 0.7588, -0.4756, 1.0264, 0.7803, -0.4797, 1.0352, 0.7588, -0.4536, 1.0352, 0.7847, -0.4536, 1.0352, 0.7847, -0.4797, 1.0352, 0.7588, -0.4561, 1.0459, 0.7612, -0.3665, 1.0459, 0.7612, -0.3647, 1.0518, 0.7393, -0.3428, 1.0352, 0.7588, -0.3428, 1.0352, 0.7588, -0.3647, 1.0518, 0.7393, -0.3401, 1.04, 0.7378, -0.3647, 1.0518, 0.7393, -0.3645, 1.0537, 0.7163, -0.3401, 1.04, 0.7378, -0.3401, 1.04, 0.7378, -0.3645, 1.0537, 0.7163, -0.3394, 1.041, 0.7163, -0.3401, 1.04, 0.7378, -0.3394, 1.041, 0.7163, -0.3186, 1.0225, 0.7358, -0.3186, 1.0225, 0.7358, -0.3394, 1.041, 0.7163, -0.3176, 1.0234, 0.7163, -0.4111, 1.0537, 0.7632, -0.4111, 1.0605, 0.7402, -0.3884, 1.0518, 0.7627, -0.3884, 1.0518, 0.7627, -0.4111, 1.0605, 0.7402, -0.3877, 1.0586, 0.7397, -0.4111, 1.0605, 0.7402, -0.4111, 1.0625, 0.7163, -0.3877, 1.0586, 0.7397, -0.3877, 1.0586, 0.7397, -0.4111, 1.0625, 0.7163, -0.3875, 1.0605, 0.7163, -0.3877, 1.0586, 0.7397, -0.3875, 1.0605, 0.7163, -0.3647, 1.0518, 0.7393, -0.3647, 1.0518, 0.7393, -0.3875, 1.0605, 0.7163, -0.3645, 1.0537, 0.7163, -0.4561, 1.0459, 0.7612, -0.4578, 1.0518, 0.7393, -0.4341, 1.0518, 0.7627, -0.4341, 1.0518, 0.7627, -0.4578, 1.0518, 0.7393, -0.4348, 1.0586, 0.7397, -0.4578, 1.0518, 0.7393, -0.458, 1.0537, 0.7163, -0.4348, 1.0586, 0.7397, -0.4348, 1.0586, 0.7397, -0.458, 1.0537, 0.7163, -0.4351, 1.0605, 0.7163, -0.4348, 1.0586, 0.7397, -0.4351, 1.0605, 0.7163, -0.4111, 1.0605, 0.7402, -0.4111, 1.0605, 0.7402, -0.4351, 1.0605, 0.7163, -0.4111, 1.0625, 0.7163, -0.5005, 1.0195, 0.7544, -0.5039, 1.0225, 0.7358, -0.4797, 1.0352, 0.7588, -0.4797, 1.0352, 0.7588, -0.5039, 1.0225, 0.7358, -0.4824, 1.04, 0.7378, -0.5039, 1.0225, 0.7358, -0.5049, 1.0234, 0.7163, -0.4824, 1.04, 0.7378, -0.4824, 1.04, 0.7378, -0.5049, 1.0234, 0.7163, -0.4829, 1.041, 0.7163, -0.4824, 1.04, 0.7378, -0.4829, 1.041, 0.7163, -0.4578, 1.0518, 0.7393, -0.4578, 1.0518, 0.7393, -0.4829, 1.041, 0.7163, -0.458, 1.0537, 0.7163, -0.3645, 1.0537, 0.7163, -0.3647, 1.0518, 0.6934, -0.3394, 1.041, 0.7163, -0.3394, 1.041, 0.7163, -0.3647, 1.0518, 0.6934, -0.3401, 1.04, 0.6948, -0.3647, 1.0518, 0.6934, -0.3665, 1.0459, 0.6714, -0.3401, 1.04, 0.6948, -0.3401, 1.04, 0.6948, -0.3665, 1.0459, 0.6714, -0.3428, 1.0352, 0.6738, -0.3401, 1.04, 0.6948, -0.3428, 1.0352, 0.6738, -0.3186, 1.0225, 0.6968, -0.3186, 1.0225, 0.6968, -0.3428, 1.0352, 0.6738, -0.3215, 1.0195, 0.6782, -0.4111, 1.0625, 0.7163, -0.4111, 1.0605, 0.6924, -0.3875, 1.0605, 0.7163, -0.3875, 1.0605, 0.7163, -0.4111, 1.0605, 0.6924, -0.3877, 1.0586, 0.6929, -0.4111, 1.0605, 0.6924, -0.4111, 1.0537, 0.6694, -0.3877, 1.0586, 0.6929, -0.3877, 1.0586, 0.6929, -0.4111, 1.0537, 0.6694, -0.3884, 1.0518, 0.6699, -0.3877, 1.0586, 0.6929, -0.3884, 1.0518, 0.6699, -0.3647, 1.0518, 0.6934, -0.3647, 1.0518, 0.6934, -0.3884, 1.0518, 0.6699, -0.3665, 1.0459, 0.6714, -0.458, 1.0537, 0.7163, -0.4578, 1.0518, 0.6934, -0.4351, 1.0605, 0.7163, -0.4351, 1.0605, 0.7163, -0.4578, 1.0518, 0.6934, -0.4348, 1.0586, 0.6929, -0.4578, 1.0518, 0.6934, -0.4561, 1.0459, 0.6714, -0.4348, 1.0586, 0.6929, -0.4348, 1.0586, 0.6929, -0.4561, 1.0459, 0.6714, -0.4341, 1.0518, 0.6699, -0.4348, 1.0586, 0.6929, -0.4341, 1.0518, 0.6699, -0.4111, 1.0605, 0.6924, -0.4111, 1.0605, 0.6924, -0.4341, 1.0518, 0.6699, -0.4111, 1.0537, 0.6694, -0.5049, 1.0234, 0.7163, -0.5039, 1.0225, 0.6968, -0.4829, 1.041, 0.7163, -0.4829, 1.041, 0.7163, -0.5039, 1.0225, 0.6968, -0.4824, 1.04, 0.6948, -0.5039, 1.0225, 0.6968, -0.5005, 1.0195, 0.6782, -0.4824, 1.04, 0.6948, -0.4824, 1.04, 0.6948, -0.5005, 1.0195, 0.6782, -0.4797, 1.0352, 0.6738, -0.4824, 1.04, 0.6948, -0.4797, 1.0352, 0.6738, -0.4578, 1.0518, 0.6934, -0.4578, 1.0518, 0.6934, -0.4797, 1.0352, 0.6738, -0.4561, 1.0459, 0.6714, -0.3665, 1.0459, 0.6714, -0.3689, 1.0352, 0.6479, -0.3428, 1.0352, 0.6738, -0.3428, 1.0352, 0.6738, -0.3689, 1.0352, 0.6479, -0.3469, 1.0264, 0.6519, -0.3689, 1.0352, 0.6479, -0.373, 1.0195, 0.6265, -0.3469, 1.0264, 0.6519, -0.3469, 1.0264, 0.6519, -0.373, 1.0195, 0.6265, -0.3533, 1.0137, 0.6323, -0.3469, 1.0264, 0.6519, -0.3533, 1.0137, 0.6323, -0.3271, 1.0137, 0.6582, -0.3271, 1.0137, 0.6582, -0.3533, 1.0137, 0.6323, -0.3347, 1.0068, 0.6396, -0.4111, 1.0537, 0.6694, -0.4111, 1.041, 0.6445, -0.3884, 1.0518, 0.6699, -0.3884, 1.0518, 0.6699, -0.4111, 1.041, 0.6445, -0.3896, 1.04, 0.645, -0.4111, 1.041, 0.6445, -0.4111, 1.0234, 0.6226, -0.3896, 1.04, 0.645, -0.3896, 1.04, 0.645, -0.4111, 1.0234, 0.6226, -0.3918, 1.0225, 0.6235, -0.3896, 1.04, 0.645, -0.3918, 1.0225, 0.6235, -0.3689, 1.0352, 0.6479, -0.3689, 1.0352, 0.6479, -0.3918, 1.0225, 0.6235, -0.373, 1.0195, 0.6265, -0.4561, 1.0459, 0.6714, -0.4536, 1.0352, 0.6479, -0.4341, 1.0518, 0.6699, -0.4341, 1.0518, 0.6699, -0.4536, 1.0352, 0.6479, -0.4326, 1.04, 0.645, -0.4536, 1.0352, 0.6479, -0.4495, 1.0195, 0.6265, -0.4326, 1.04, 0.645, -0.4326, 1.04, 0.645, -0.4495, 1.0195, 0.6265, -0.4307, 1.0225, 0.6235, -0.4326, 1.04, 0.645, -0.4307, 1.0225, 0.6235, -0.4111, 1.041, 0.6445, -0.4111, 1.041, 0.6445, -0.4307, 1.0225, 0.6235, -0.4111, 1.0234, 0.6226, -0.5005, 1.0195, 0.6782, -0.4954, 1.0137, 0.6582, -0.4797, 1.0352, 0.6738, -0.4797, 1.0352, 0.6738, -0.4954, 1.0137, 0.6582, -0.4756, 1.0264, 0.6519, -0.4954, 1.0137, 0.6582, -0.4875, 1.0068, 0.6396, -0.4756, 1.0264, 0.6519, -0.4756, 1.0264, 0.6519, -0.4875, 1.0068, 0.6396, -0.4692, 1.0137, 0.6323, -0.4756, 1.0264, 0.6519, -0.4692, 1.0137, 0.6323, -0.4536, 1.0352, 0.6479, -0.4536, 1.0352, 0.6479, -0.4692, 1.0137, 0.6323, -0.4495, 1.0195, 0.6265, -0.373, 0.8408, 0.6265, -0.3689, 0.8252, 0.6479, -0.3533, 0.8462, 0.6323, -0.3533, 0.8462, 0.6323, -0.3689, 0.8252, 0.6479, -0.3469, 0.8345, 0.6519, -0.3689, 0.8252, 0.6479, -0.3665, 0.814, 0.6714, -0.3469, 0.8345, 0.6519, -0.3469, 0.8345, 0.6519, -0.3665, 0.814, 0.6714, -0.3428, 0.8252, 0.6738, -0.3469, 0.8345, 0.6519, -0.3428, 0.8252, 0.6738, -0.3271, 0.8462, 0.6582, -0.3271, 0.8462, 0.6582, -0.3428, 0.8252, 0.6738, -0.3215, 0.8408, 0.6782, -0.4111, 0.8369, 0.6226, -0.4111, 0.8193, 0.6445, -0.3918, 0.8379, 0.6235, -0.3918, 0.8379, 0.6235, -0.4111, 0.8193, 0.6445, -0.3896, 0.8208, 0.645, -0.4111, 0.8193, 0.6445, -0.4111, 0.8066, 0.6694, -0.3896, 0.8208, 0.645, -0.3896, 0.8208, 0.645, -0.4111, 0.8066, 0.6694, -0.3884, 0.8086, 0.6699, -0.3896, 0.8208, 0.645, -0.3884, 0.8086, 0.6699, -0.3689, 0.8252, 0.6479, -0.3689, 0.8252, 0.6479, -0.3884, 0.8086, 0.6699, -0.3665, 0.814, 0.6714, -0.4495, 0.8408, 0.6265, -0.4536, 0.8252, 0.6479, -0.4307, 0.8379, 0.6235, -0.4307, 0.8379, 0.6235, -0.4536, 0.8252, 0.6479, -0.4326, 0.8208, 0.645, -0.4536, 0.8252, 0.6479, -0.4561, 0.814, 0.6714, -0.4326, 0.8208, 0.645, -0.4326, 0.8208, 0.645, -0.4561, 0.814, 0.6714, -0.4341, 0.8086, 0.6699, -0.4326, 0.8208, 0.645, -0.4341, 0.8086, 0.6699, -0.4111, 0.8193, 0.6445, -0.4111, 0.8193, 0.6445, -0.4341, 0.8086, 0.6699, -0.4111, 0.8066, 0.6694, -0.4875, 0.854, 0.6396, -0.4954, 0.8462, 0.6582, -0.4692, 0.8462, 0.6323, -0.4692, 0.8462, 0.6323, -0.4954, 0.8462, 0.6582, -0.4756, 0.8345, 0.6519, -0.4954, 0.8462, 0.6582, -0.5005, 0.8408, 0.6782, -0.4756, 0.8345, 0.6519, -0.4756, 0.8345, 0.6519, -0.5005, 0.8408, 0.6782, -0.4797, 0.8252, 0.6738, -0.4756, 0.8345, 0.6519, -0.4797, 0.8252, 0.6738, -0.4536, 0.8252, 0.6479, -0.4536, 0.8252, 0.6479, -0.4797, 0.8252, 0.6738, -0.4561, 0.814, 0.6714, -0.3665, 0.814, 0.6714, -0.3647, 0.8086, 0.6934, -0.3428, 0.8252, 0.6738, -0.3428, 0.8252, 0.6738, -0.3647, 0.8086, 0.6934, -0.3401, 0.8208, 0.6948, -0.3647, 0.8086, 0.6934, -0.3645, 0.8066, 0.7163, -0.3401, 0.8208, 0.6948, -0.3401, 0.8208, 0.6948, -0.3645, 0.8066, 0.7163, -0.3394, 0.8193, 0.7163, -0.3401, 0.8208, 0.6948, -0.3394, 0.8193, 0.7163, -0.3186, 0.8379, 0.6968, -0.3186, 0.8379, 0.6968, -0.3394, 0.8193, 0.7163, -0.3176, 0.8369, 0.7163, -0.4111, 0.8066, 0.6694, -0.4111, 0.8003, 0.6924, -0.3884, 0.8086, 0.6699, -0.3884, 0.8086, 0.6699, -0.4111, 0.8003, 0.6924, -0.3877, 0.8022, 0.6929, -0.4111, 0.8003, 0.6924, -0.4111, 0.7979, 0.7163, -0.3877, 0.8022, 0.6929, -0.3877, 0.8022, 0.6929, -0.4111, 0.7979, 0.7163, -0.3875, 0.8003, 0.7163, -0.3877, 0.8022, 0.6929, -0.3875, 0.8003, 0.7163, -0.3647, 0.8086, 0.6934, -0.3647, 0.8086, 0.6934, -0.3875, 0.8003, 0.7163, -0.3645, 0.8066, 0.7163, -0.4561, 0.814, 0.6714, -0.4578, 0.8086, 0.6934, -0.4341, 0.8086, 0.6699, -0.4341, 0.8086, 0.6699, -0.4578, 0.8086, 0.6934, -0.4348, 0.8022, 0.6929, -0.4578, 0.8086, 0.6934, -0.458, 0.8066, 0.7163, -0.4348, 0.8022, 0.6929, -0.4348, 0.8022, 0.6929, -0.458, 0.8066, 0.7163, -0.4351, 0.8003, 0.7163, -0.4348, 0.8022, 0.6929, -0.4351, 0.8003, 0.7163, -0.4111, 0.8003, 0.6924, -0.4111, 0.8003, 0.6924, -0.4351, 0.8003, 0.7163, -0.4111, 0.7979, 0.7163, -0.5005, 0.8408, 0.6782, -0.5039, 0.8379, 0.6968, -0.4797, 0.8252, 0.6738, -0.4797, 0.8252, 0.6738, -0.5039, 0.8379, 0.6968, -0.4824, 0.8208, 0.6948, -0.5039, 0.8379, 0.6968, -0.5049, 0.8369, 0.7163, -0.4824, 0.8208, 0.6948, -0.4824, 0.8208, 0.6948, -0.5049, 0.8369, 0.7163, -0.4829, 0.8193, 0.7163, -0.4824, 0.8208, 0.6948, -0.4829, 0.8193, 0.7163, -0.4578, 0.8086, 0.6934, -0.4578, 0.8086, 0.6934, -0.4829, 0.8193, 0.7163, -0.458, 0.8066, 0.7163, -0.3645, 0.8066, 0.7163, -0.3647, 0.8086, 0.7393, -0.3394, 0.8193, 0.7163, -0.3394, 0.8193, 0.7163, -0.3647, 0.8086, 0.7393, -0.3401, 0.8208, 0.7378, -0.3647, 0.8086, 0.7393, -0.3665, 0.814, 0.7612, -0.3401, 0.8208, 0.7378, -0.3401, 0.8208, 0.7378, -0.3665, 0.814, 0.7612, -0.3428, 0.8252, 0.7588, -0.3401, 0.8208, 0.7378, -0.3428, 0.8252, 0.7588, -0.3186, 0.8379, 0.7358, -0.3186, 0.8379, 0.7358, -0.3428, 0.8252, 0.7588, -0.3215, 0.8408, 0.7544, -0.4111, 0.7979, 0.7163, -0.4111, 0.8003, 0.7402, -0.3875, 0.8003, 0.7163, -0.3875, 0.8003, 0.7163, -0.4111, 0.8003, 0.7402, -0.3877, 0.8022, 0.7397, -0.4111, 0.8003, 0.7402, -0.4111, 0.8066, 0.7632, -0.3877, 0.8022, 0.7397, -0.3877, 0.8022, 0.7397, -0.4111, 0.8066, 0.7632, -0.3884, 0.8086, 0.7627, -0.3877, 0.8022, 0.7397, -0.3884, 0.8086, 0.7627, -0.3647, 0.8086, 0.7393, -0.3647, 0.8086, 0.7393, -0.3884, 0.8086, 0.7627, -0.3665, 0.814, 0.7612, -0.458, 0.8066, 0.7163, -0.4578, 0.8086, 0.7393, -0.4351, 0.8003, 0.7163, -0.4351, 0.8003, 0.7163, -0.4578, 0.8086, 0.7393, -0.4348, 0.8022, 0.7397, -0.4578, 0.8086, 0.7393, -0.4561, 0.814, 0.7612, -0.4348, 0.8022, 0.7397, -0.4348, 0.8022, 0.7397, -0.4561, 0.814, 0.7612, -0.4341, 0.8086, 0.7627, -0.4348, 0.8022, 0.7397, -0.4341, 0.8086, 0.7627, -0.4111, 0.8003, 0.7402, -0.4111, 0.8003, 0.7402, -0.4341, 0.8086, 0.7627, -0.4111, 0.8066, 0.7632, -0.5049, 0.8369, 0.7163, -0.5039, 0.8379, 0.7358, -0.4829, 0.8193, 0.7163, -0.4829, 0.8193, 0.7163, -0.5039, 0.8379, 0.7358, -0.4824, 0.8208, 0.7378, -0.5039, 0.8379, 0.7358, -0.5005, 0.8408, 0.7544, -0.4824, 0.8208, 0.7378, -0.4824, 0.8208, 0.7378, -0.5005, 0.8408, 0.7544, -0.4797, 0.8252, 0.7588, -0.4824, 0.8208, 0.7378, -0.4797, 0.8252, 0.7588, -0.4578, 0.8086, 0.7393, -0.4578, 0.8086, 0.7393, -0.4797, 0.8252, 0.7588, -0.4561, 0.814, 0.7612, -0.3665, 0.814, 0.7612, -0.3689, 0.8252, 0.7847, -0.3428, 0.8252, 0.7588, -0.3428, 0.8252, 0.7588, -0.3689, 0.8252, 0.7847, -0.3469, 0.8345, 0.7803, -0.3689, 0.8252, 0.7847, -0.373, 0.8408, 0.8057, -0.3469, 0.8345, 0.7803, -0.3469, 0.8345, 0.7803, -0.373, 0.8408, 0.8057, -0.3533, 0.8462, 0.8003, -0.3469, 0.8345, 0.7803, -0.3533, 0.8462, 0.8003, -0.3271, 0.8462, 0.7744, -0.3271, 0.8462, 0.7744, -0.3533, 0.8462, 0.8003, -0.3347, 0.854, 0.7925, -0.4111, 0.8066, 0.7632, -0.4111, 0.8193, 0.7881, -0.3884, 0.8086, 0.7627, -0.3884, 0.8086, 0.7627, -0.4111, 0.8193, 0.7881, -0.3896, 0.8208, 0.7876, -0.4111, 0.8193, 0.7881, -0.4111, 0.8369, 0.8101, -0.3896, 0.8208, 0.7876, -0.3896, 0.8208, 0.7876, -0.4111, 0.8369, 0.8101, -0.3918, 0.8379, 0.8091, -0.3896, 0.8208, 0.7876, -0.3918, 0.8379, 0.8091, -0.3689, 0.8252, 0.7847, -0.3689, 0.8252, 0.7847, -0.3918, 0.8379, 0.8091, -0.373, 0.8408, 0.8057, -0.4561, 0.814, 0.7612, -0.4536, 0.8252, 0.7847, -0.4341, 0.8086, 0.7627, -0.4341, 0.8086, 0.7627, -0.4536, 0.8252, 0.7847, -0.4326, 0.8208, 0.7876, -0.4536, 0.8252, 0.7847, -0.4495, 0.8408, 0.8057, -0.4326, 0.8208, 0.7876, -0.4326, 0.8208, 0.7876, -0.4495, 0.8408, 0.8057, -0.4307, 0.8379, 0.8091, -0.4326, 0.8208, 0.7876, -0.4307, 0.8379, 0.8091, -0.4111, 0.8193, 0.7881, -0.4111, 0.8193, 0.7881, -0.4307, 0.8379, 0.8091, -0.4111, 0.8369, 0.8101, -0.5005, 0.8408, 0.7544, -0.4954, 0.8462, 0.7744, -0.4797, 0.8252, 0.7588, -0.4797, 0.8252, 0.7588, -0.4954, 0.8462, 0.7744, -0.4756, 0.8345, 0.7803, -0.4954, 0.8462, 0.7744, -0.4875, 0.854, 0.7925, -0.4756, 0.8345, 0.7803, -0.4756, 0.8345, 0.7803, -0.4875, 0.854, 0.7925, -0.4692, 0.8462, 0.8003, -0.4756, 0.8345, 0.7803, -0.4692, 0.8462, 0.8003, -0.4536, 0.8252, 0.7847, -0.4536, 0.8252, 0.7847, -0.4692, 0.8462, 0.8003, -0.4495, 0.8408, 0.8057, -0.5005, 1.0195, 0.6782, -0.5161, 0.999, 0.6738, -0.4954, 1.0137, 0.6582, -0.4954, 1.0137, 0.6582, -0.5161, 0.999, 0.6738, -0.5073, 0.9946, 0.6519, -0.5161, 0.999, 0.6738, -0.5273, 0.9751, 0.6714, -0.5073, 0.9946, 0.6519, -0.5073, 0.9946, 0.6519, -0.5273, 0.9751, 0.6714, -0.5161, 0.9727, 0.6479, -0.5073, 0.9946, 0.6519, -0.5161, 0.9727, 0.6479, -0.4954, 0.9883, 0.6323, -0.4954, 0.9883, 0.6323, -0.5161, 0.9727, 0.6479, -0.5005, 0.9688, 0.6265, -0.5049, 1.0234, 0.7163, -0.5225, 1.002, 0.7163, -0.5039, 1.0225, 0.6968, -0.5039, 1.0225, 0.6968, -0.5225, 1.002, 0.7163, -0.5205, 1.001, 0.6948, -0.5225, 1.002, 0.7163, -0.5347, 0.9771, 0.7163, -0.5205, 1.001, 0.6948, -0.5205, 1.001, 0.6948, -0.5347, 0.9771, 0.7163, -0.5327, 0.9771, 0.6934, -0.5205, 1.001, 0.6948, -0.5327, 0.9771, 0.6934, -0.5161, 0.999, 0.6738, -0.5161, 0.999, 0.6738, -0.5327, 0.9771, 0.6934, -0.5273, 0.9751, 0.6714, -0.5005, 1.0195, 0.7544, -0.5161, 0.999, 0.7588, -0.5039, 1.0225, 0.7358, -0.5039, 1.0225, 0.7358, -0.5161, 0.999, 0.7588, -0.5205, 1.001, 0.7378, -0.5161, 0.999, 0.7588, -0.5273, 0.9751, 0.7612, -0.5205, 1.001, 0.7378, -0.5205, 1.001, 0.7378, -0.5273, 0.9751, 0.7612, -0.5327, 0.9771, 0.7393, -0.5205, 1.001, 0.7378, -0.5327, 0.9771, 0.7393, -0.5225, 1.002, 0.7163, -0.5225, 1.002, 0.7163, -0.5327, 0.9771, 0.7393, -0.5347, 0.9771, 0.7163, -0.4875, 1.0068, 0.7925, -0.4954, 0.9883, 0.8003, -0.4954, 1.0137, 0.7744, -0.4954, 1.0137, 0.7744, -0.4954, 0.9883, 0.8003, -0.5073, 0.9946, 0.7808, -0.4954, 0.9883, 0.8003, -0.5005, 0.9688, 0.8057, -0.5073, 0.9946, 0.7808, -0.5073, 0.9946, 0.7808, -0.5005, 0.9688, 0.8057, -0.5161, 0.9727, 0.7847, -0.5073, 0.9946, 0.7808, -0.5161, 0.9727, 0.7847, -0.5161, 0.999, 0.7588, -0.5161, 0.999, 0.7588, -0.5161, 0.9727, 0.7847, -0.5273, 0.9751, 0.7612, -0.5273, 0.9751, 0.6714, -0.5327, 0.9531, 0.6699, -0.5161, 0.9727, 0.6479, -0.5161, 0.9727, 0.6479, -0.5327, 0.9531, 0.6699, -0.5205, 0.9517, 0.645, -0.5327, 0.9531, 0.6699, -0.5347, 0.9302, 0.6694, -0.5205, 0.9517, 0.645, -0.5205, 0.9517, 0.645, -0.5347, 0.9302, 0.6694, -0.5225, 0.9302, 0.6445, -0.5205, 0.9517, 0.645, -0.5225, 0.9302, 0.6445, -0.5039, 0.9497, 0.6235, -0.5039, 0.9497, 0.6235, -0.5225, 0.9302, 0.6445, -0.5049, 0.9302, 0.6226, -0.5347, 0.9771, 0.7163, -0.5415, 0.9541, 0.7163, -0.5327, 0.9771, 0.6934, -0.5327, 0.9771, 0.6934, -0.5415, 0.9541, 0.7163, -0.5391, 0.9541, 0.6929, -0.5415, 0.9541, 0.7163, -0.5435, 0.9302, 0.7163, -0.5391, 0.9541, 0.6929, -0.5391, 0.9541, 0.6929, -0.5435, 0.9302, 0.7163, -0.5415, 0.9302, 0.6924, -0.5391, 0.9541, 0.6929, -0.5415, 0.9302, 0.6924, -0.5327, 0.9531, 0.6699, -0.5327, 0.9531, 0.6699, -0.5415, 0.9302, 0.6924, -0.5347, 0.9302, 0.6694, -0.5273, 0.9751, 0.7612, -0.5327, 0.9531, 0.7627, -0.5327, 0.9771, 0.7393, -0.5327, 0.9771, 0.7393, -0.5327, 0.9531, 0.7627, -0.5391, 0.9541, 0.7397, -0.5327, 0.9531, 0.7627, -0.5347, 0.9302, 0.7632, -0.5391, 0.9541, 0.7397, -0.5391, 0.9541, 0.7397, -0.5347, 0.9302, 0.7632, -0.5415, 0.9302, 0.7402, -0.5391, 0.9541, 0.7397, -0.5415, 0.9302, 0.7402, -0.5415, 0.9541, 0.7163, -0.5415, 0.9541, 0.7163, -0.5415, 0.9302, 0.7402, -0.5435, 0.9302, 0.7163, -0.5005, 0.9688, 0.8057, -0.5039, 0.9497, 0.8091, -0.5161, 0.9727, 0.7847, -0.5161, 0.9727, 0.7847, -0.5039, 0.9497, 0.8091, -0.5205, 0.9517, 0.7876, -0.5039, 0.9497, 0.8091, -0.5049, 0.9302, 0.8101, -0.5205, 0.9517, 0.7876, -0.5205, 0.9517, 0.7876, -0.5049, 0.9302, 0.8101, -0.5225, 0.9302, 0.7881, -0.5205, 0.9517, 0.7876, -0.5225, 0.9302, 0.7881, -0.5327, 0.9531, 0.7627, -0.5327, 0.9531, 0.7627, -0.5225, 0.9302, 0.7881, -0.5347, 0.9302, 0.7632, -0.5347, 0.9302, 0.6694, -0.5327, 0.9077, 0.6699, -0.5225, 0.9302, 0.6445, -0.5225, 0.9302, 0.6445, -0.5327, 0.9077, 0.6699, -0.5205, 0.9087, 0.645, -0.5327, 0.9077, 0.6699, -0.5273, 0.8857, 0.6714, -0.5205, 0.9087, 0.645, -0.5205, 0.9087, 0.645, -0.5273, 0.8857, 0.6714, -0.5161, 0.8882, 0.6479, -0.5205, 0.9087, 0.645, -0.5161, 0.8882, 0.6479, -0.5039, 0.9111, 0.6235, -0.5039, 0.9111, 0.6235, -0.5161, 0.8882, 0.6479, -0.5005, 0.8921, 0.6265, -0.5435, 0.9302, 0.7163, -0.5415, 0.9067, 0.7163, -0.5415, 0.9302, 0.6924, -0.5415, 0.9302, 0.6924, -0.5415, 0.9067, 0.7163, -0.5391, 0.9067, 0.6929, -0.5415, 0.9067, 0.7163, -0.5347, 0.8833, 0.7163, -0.5391, 0.9067, 0.6929, -0.5391, 0.9067, 0.6929, -0.5347, 0.8833, 0.7163, -0.5327, 0.8838, 0.6934, -0.5391, 0.9067, 0.6929, -0.5327, 0.8838, 0.6934, -0.5327, 0.9077, 0.6699, -0.5327, 0.9077, 0.6699, -0.5327, 0.8838, 0.6934, -0.5273, 0.8857, 0.6714, -0.5347, 0.9302, 0.7632, -0.5327, 0.9077, 0.7627, -0.5415, 0.9302, 0.7402, -0.5415, 0.9302, 0.7402, -0.5327, 0.9077, 0.7627, -0.5391, 0.9067, 0.7397, -0.5327, 0.9077, 0.7627, -0.5273, 0.8857, 0.7612, -0.5391, 0.9067, 0.7397, -0.5391, 0.9067, 0.7397, -0.5273, 0.8857, 0.7612, -0.5327, 0.8838, 0.7393, -0.5391, 0.9067, 0.7397, -0.5327, 0.8838, 0.7393, -0.5415, 0.9067, 0.7163, -0.5415, 0.9067, 0.7163, -0.5327, 0.8838, 0.7393, -0.5347, 0.8833, 0.7163, -0.5049, 0.9302, 0.8101, -0.5039, 0.9111, 0.8091, -0.5225, 0.9302, 0.7881, -0.5225, 0.9302, 0.7881, -0.5039, 0.9111, 0.8091, -0.5205, 0.9087, 0.7876, -0.5039, 0.9111, 0.8091, -0.5005, 0.8921, 0.8057, -0.5205, 0.9087, 0.7876, -0.5205, 0.9087, 0.7876, -0.5005, 0.8921, 0.8057, -0.5161, 0.8882, 0.7847, -0.5205, 0.9087, 0.7876, -0.5161, 0.8882, 0.7847, -0.5327, 0.9077, 0.7627, -0.5327, 0.9077, 0.7627, -0.5161, 0.8882, 0.7847, -0.5273, 0.8857, 0.7612, -0.5273, 0.8857, 0.6714, -0.5161, 0.8618, 0.6738, -0.5161, 0.8882, 0.6479, -0.5161, 0.8882, 0.6479, -0.5161, 0.8618, 0.6738, -0.5073, 0.8662, 0.6519, -0.5161, 0.8618, 0.6738, -0.5005, 0.8408, 0.6782, -0.5073, 0.8662, 0.6519, -0.5073, 0.8662, 0.6519, -0.5005, 0.8408, 0.6782, -0.4954, 0.8462, 0.6582, -0.5073, 0.8662, 0.6519, -0.4954, 0.8462, 0.6582, -0.4954, 0.8721, 0.6323, -0.4954, 0.8721, 0.6323, -0.4954, 0.8462, 0.6582, -0.4875, 0.854, 0.6396, -0.5347, 0.8833, 0.7163, -0.5225, 0.8584, 0.7163, -0.5327, 0.8838, 0.6934, -0.5327, 0.8838, 0.6934, -0.5225, 0.8584, 0.7163, -0.5205, 0.8594, 0.6948, -0.5225, 0.8584, 0.7163, -0.5049, 0.8369, 0.7163, -0.5205, 0.8594, 0.6948, -0.5205, 0.8594, 0.6948, -0.5049, 0.8369, 0.7163, -0.5039, 0.8379, 0.6968, -0.5205, 0.8594, 0.6948, -0.5039, 0.8379, 0.6968, -0.5161, 0.8618, 0.6738, -0.5161, 0.8618, 0.6738, -0.5039, 0.8379, 0.6968, -0.5005, 0.8408, 0.6782, -0.5273, 0.8857, 0.7612, -0.5161, 0.8618, 0.7588, -0.5327, 0.8838, 0.7393, -0.5327, 0.8838, 0.7393, -0.5161, 0.8618, 0.7588, -0.5205, 0.8594, 0.7378, -0.5161, 0.8618, 0.7588, -0.5005, 0.8408, 0.7544, -0.5205, 0.8594, 0.7378, -0.5205, 0.8594, 0.7378, -0.5005, 0.8408, 0.7544, -0.5039, 0.8379, 0.7358, -0.5205, 0.8594, 0.7378, -0.5039, 0.8379, 0.7358, -0.5225, 0.8584, 0.7163, -0.5225, 0.8584, 0.7163, -0.5039, 0.8379, 0.7358, -0.5049, 0.8369, 0.7163, -0.5005, 0.8921, 0.8057, -0.4954, 0.8721, 0.8003, -0.5161, 0.8882, 0.7847, -0.5161, 0.8882, 0.7847, -0.4954, 0.8721, 0.8003, -0.5073, 0.8662, 0.7808, -0.4954, 0.8721, 0.8003, -0.4875, 0.854, 0.7925, -0.5073, 0.8662, 0.7808, -0.5073, 0.8662, 0.7808, -0.4875, 0.854, 0.7925, -0.4954, 0.8462, 0.7744, -0.5073, 0.8662, 0.7808, -0.4954, 0.8462, 0.7744, -0.5161, 0.8618, 0.7588, -0.5161, 0.8618, 0.7588, -0.4954, 0.8462, 0.7744, -0.5005, 0.8408, 0.7544, -0.4495, 1.0195, 0.8057, -0.4536, 0.999, 0.8213, -0.4692, 1.0137, 0.8003, -0.4692, 1.0137, 0.8003, -0.4536, 0.999, 0.8213, -0.4756, 0.9946, 0.8125, -0.4536, 0.999, 0.8213, -0.4561, 0.9751, 0.8325, -0.4756, 0.9946, 0.8125, -0.4756, 0.9946, 0.8125, -0.4561, 0.9751, 0.8325, -0.4797, 0.9727, 0.8213, -0.4756, 0.9946, 0.8125, -0.4797, 0.9727, 0.8213, -0.4954, 0.9883, 0.8003, -0.4954, 0.9883, 0.8003, -0.4797, 0.9727, 0.8213, -0.5005, 0.9688, 0.8057, -0.4111, 1.0234, 0.8101, -0.4111, 1.002, 0.8276, -0.4307, 1.0225, 0.8091, -0.4307, 1.0225, 0.8091, -0.4111, 1.002, 0.8276, -0.4326, 1.001, 0.8257, -0.4111, 1.002, 0.8276, -0.4111, 0.9771, 0.8398, -0.4326, 1.001, 0.8257, -0.4326, 1.001, 0.8257, -0.4111, 0.9771, 0.8398, -0.4341, 0.9771, 0.8379, -0.4326, 1.001, 0.8257, -0.4341, 0.9771, 0.8379, -0.4536, 0.999, 0.8213, -0.4536, 0.999, 0.8213, -0.4341, 0.9771, 0.8379, -0.4561, 0.9751, 0.8325, -0.373, 1.0195, 0.8057, -0.3689, 0.999, 0.8213, -0.3918, 1.0225, 0.8091, -0.3918, 1.0225, 0.8091, -0.3689, 0.999, 0.8213, -0.3896, 1.001, 0.8257, -0.3689, 0.999, 0.8213, -0.3665, 0.9751, 0.8325, -0.3896, 1.001, 0.8257, -0.3896, 1.001, 0.8257, -0.3665, 0.9751, 0.8325, -0.3884, 0.9771, 0.8379, -0.3896, 1.001, 0.8257, -0.3884, 0.9771, 0.8379, -0.4111, 1.002, 0.8276, -0.4111, 1.002, 0.8276, -0.3884, 0.9771, 0.8379, -0.4111, 0.9771, 0.8398, -0.3347, 1.0068, 0.7925, -0.3271, 0.9883, 0.8003, -0.3533, 1.0137, 0.8003, -0.3533, 1.0137, 0.8003, -0.3271, 0.9883, 0.8003, -0.3469, 0.9946, 0.8125, -0.3271, 0.9883, 0.8003, -0.3215, 0.9688, 0.8057, -0.3469, 0.9946, 0.8125, -0.3469, 0.9946, 0.8125, -0.3215, 0.9688, 0.8057, -0.3428, 0.9727, 0.8213, -0.3469, 0.9946, 0.8125, -0.3428, 0.9727, 0.8213, -0.3689, 0.999, 0.8213, -0.3689, 0.999, 0.8213, -0.3428, 0.9727, 0.8213, -0.3665, 0.9751, 0.8325, -0.4561, 0.9751, 0.8325, -0.4578, 0.9531, 0.8379, -0.4797, 0.9727, 0.8213, -0.4797, 0.9727, 0.8213, -0.4578, 0.9531, 0.8379, -0.4824, 0.9517, 0.8257, -0.4578, 0.9531, 0.8379, -0.458, 0.9302, 0.8398, -0.4824, 0.9517, 0.8257, -0.4824, 0.9517, 0.8257, -0.458, 0.9302, 0.8398, -0.4829, 0.9302, 0.8276, -0.4824, 0.9517, 0.8257, -0.4829, 0.9302, 0.8276, -0.5039, 0.9497, 0.8091, -0.5039, 0.9497, 0.8091, -0.4829, 0.9302, 0.8276, -0.5049, 0.9302, 0.8101, -0.4111, 0.9771, 0.8398, -0.4111, 0.9541, 0.8467, -0.4341, 0.9771, 0.8379, -0.4341, 0.9771, 0.8379, -0.4111, 0.9541, 0.8467, -0.4348, 0.9541, 0.8442, -0.4111, 0.9541, 0.8467, -0.4111, 0.9302, 0.8486, -0.4348, 0.9541, 0.8442, -0.4348, 0.9541, 0.8442, -0.4111, 0.9302, 0.8486, -0.4351, 0.9302, 0.8467, -0.4348, 0.9541, 0.8442, -0.4351, 0.9302, 0.8467, -0.4578, 0.9531, 0.8379, -0.4578, 0.9531, 0.8379, -0.4351, 0.9302, 0.8467, -0.458, 0.9302, 0.8398, -0.3665, 0.9751, 0.8325, -0.3647, 0.9531, 0.8379, -0.3884, 0.9771, 0.8379, -0.3884, 0.9771, 0.8379, -0.3647, 0.9531, 0.8379, -0.3877, 0.9541, 0.8442, -0.3647, 0.9531, 0.8379, -0.3645, 0.9302, 0.8398, -0.3877, 0.9541, 0.8442, -0.3877, 0.9541, 0.8442, -0.3645, 0.9302, 0.8398, -0.3875, 0.9302, 0.8467, -0.3877, 0.9541, 0.8442, -0.3875, 0.9302, 0.8467, -0.4111, 0.9541, 0.8467, -0.4111, 0.9541, 0.8467, -0.3875, 0.9302, 0.8467, -0.4111, 0.9302, 0.8486, -0.3215, 0.9688, 0.8057, -0.3186, 0.9497, 0.8091, -0.3428, 0.9727, 0.8213, -0.3428, 0.9727, 0.8213, -0.3186, 0.9497, 0.8091, -0.3401, 0.9517, 0.8257, -0.3186, 0.9497, 0.8091, -0.3176, 0.9302, 0.8101, -0.3401, 0.9517, 0.8257, -0.3401, 0.9517, 0.8257, -0.3176, 0.9302, 0.8101, -0.3394, 0.9302, 0.8276, -0.3401, 0.9517, 0.8257, -0.3394, 0.9302, 0.8276, -0.3647, 0.9531, 0.8379, -0.3647, 0.9531, 0.8379, -0.3394, 0.9302, 0.8276, -0.3645, 0.9302, 0.8398, -0.458, 0.9302, 0.8398, -0.4578, 0.9077, 0.8379, -0.4829, 0.9302, 0.8276, -0.4829, 0.9302, 0.8276, -0.4578, 0.9077, 0.8379, -0.4824, 0.9087, 0.8257, -0.4578, 0.9077, 0.8379, -0.4561, 0.8857, 0.8325, -0.4824, 0.9087, 0.8257, -0.4824, 0.9087, 0.8257, -0.4561, 0.8857, 0.8325, -0.4797, 0.8882, 0.8213, -0.4824, 0.9087, 0.8257, -0.4797, 0.8882, 0.8213, -0.5039, 0.9111, 0.8091, -0.5039, 0.9111, 0.8091, -0.4797, 0.8882, 0.8213, -0.5005, 0.8921, 0.8057, -0.4111, 0.9302, 0.8486, -0.4111, 0.9067, 0.8467, -0.4351, 0.9302, 0.8467, -0.4351, 0.9302, 0.8467, -0.4111, 0.9067, 0.8467, -0.4348, 0.9067, 0.8442, -0.4111, 0.9067, 0.8467, -0.4111, 0.8833, 0.8398, -0.4348, 0.9067, 0.8442, -0.4348, 0.9067, 0.8442, -0.4111, 0.8833, 0.8398, -0.4341, 0.8838, 0.8379, -0.4348, 0.9067, 0.8442, -0.4341, 0.8838, 0.8379, -0.4578, 0.9077, 0.8379, -0.4578, 0.9077, 0.8379, -0.4341, 0.8838, 0.8379, -0.4561, 0.8857, 0.8325, -0.3645, 0.9302, 0.8398, -0.3647, 0.9077, 0.8379, -0.3875, 0.9302, 0.8467, -0.3875, 0.9302, 0.8467, -0.3647, 0.9077, 0.8379, -0.3877, 0.9067, 0.8442, -0.3647, 0.9077, 0.8379, -0.3665, 0.8857, 0.8325, -0.3877, 0.9067, 0.8442, -0.3877, 0.9067, 0.8442, -0.3665, 0.8857, 0.8325, -0.3884, 0.8838, 0.8379, -0.3877, 0.9067, 0.8442, -0.3884, 0.8838, 0.8379, -0.4111, 0.9067, 0.8467, -0.4111, 0.9067, 0.8467, -0.3884, 0.8838, 0.8379, -0.4111, 0.8833, 0.8398, -0.3176, 0.9302, 0.8101, -0.3186, 0.9111, 0.8091, -0.3394, 0.9302, 0.8276, -0.3394, 0.9302, 0.8276, -0.3186, 0.9111, 0.8091, -0.3401, 0.9087, 0.8257, -0.3186, 0.9111, 0.8091, -0.3215, 0.8921, 0.8057, -0.3401, 0.9087, 0.8257, -0.3401, 0.9087, 0.8257, -0.3215, 0.8921, 0.8057, -0.3428, 0.8882, 0.8213, -0.3401, 0.9087, 0.8257, -0.3428, 0.8882, 0.8213, -0.3647, 0.9077, 0.8379, -0.3647, 0.9077, 0.8379, -0.3428, 0.8882, 0.8213, -0.3665, 0.8857, 0.8325, -0.4561, 0.8857, 0.8325, -0.4536, 0.8618, 0.8213, -0.4797, 0.8882, 0.8213, -0.4797, 0.8882, 0.8213, -0.4536, 0.8618, 0.8213, -0.4756, 0.8662, 0.8125, -0.4536, 0.8618, 0.8213, -0.4495, 0.8408, 0.8057, -0.4756, 0.8662, 0.8125, -0.4756, 0.8662, 0.8125, -0.4495, 0.8408, 0.8057, -0.4692, 0.8462, 0.8003, -0.4756, 0.8662, 0.8125, -0.4692, 0.8462, 0.8003, -0.4954, 0.8721, 0.8003, -0.4954, 0.8721, 0.8003, -0.4692, 0.8462, 0.8003, -0.4875, 0.854, 0.7925, -0.4111, 0.8833, 0.8398, -0.4111, 0.8584, 0.8276, -0.4341, 0.8838, 0.8379, -0.4341, 0.8838, 0.8379, -0.4111, 0.8584, 0.8276, -0.4326, 0.8594, 0.8257, -0.4111, 0.8584, 0.8276, -0.4111, 0.8369, 0.8101, -0.4326, 0.8594, 0.8257, -0.4326, 0.8594, 0.8257, -0.4111, 0.8369, 0.8101, -0.4307, 0.8379, 0.8091, -0.4326, 0.8594, 0.8257, -0.4307, 0.8379, 0.8091, -0.4536, 0.8618, 0.8213, -0.4536, 0.8618, 0.8213, -0.4307, 0.8379, 0.8091, -0.4495, 0.8408, 0.8057, -0.3665, 0.8857, 0.8325, -0.3689, 0.8618, 0.8213, -0.3884, 0.8838, 0.8379, -0.3884, 0.8838, 0.8379, -0.3689, 0.8618, 0.8213, -0.3896, 0.8594, 0.8257, -0.3689, 0.8618, 0.8213, -0.373, 0.8408, 0.8057, -0.3896, 0.8594, 0.8257, -0.3896, 0.8594, 0.8257, -0.373, 0.8408, 0.8057, -0.3918, 0.8379, 0.8091, -0.3896, 0.8594, 0.8257, -0.3918, 0.8379, 0.8091, -0.4111, 0.8584, 0.8276, -0.4111, 0.8584, 0.8276, -0.3918, 0.8379, 0.8091, -0.4111, 0.8369, 0.8101, -0.3215, 0.8921, 0.8057, -0.3271, 0.8721, 0.8003, -0.3428, 0.8882, 0.8213, -0.3428, 0.8882, 0.8213, -0.3271, 0.8721, 0.8003, -0.3469, 0.8662, 0.8125, -0.3271, 0.8721, 0.8003, -0.3347, 0.854, 0.7925, -0.3469, 0.8662, 0.8125, -0.3469, 0.8662, 0.8125, -0.3347, 0.854, 0.7925, -0.3533, 0.8462, 0.8003, -0.3469, 0.8662, 0.8125, -0.3533, 0.8462, 0.8003, -0.3689, 0.8618, 0.8213, -0.3689, 0.8618, 0.8213, -0.3533, 0.8462, 0.8003, -0.373, 0.8408, 0.8057, -0.3215, 1.0195, 0.7544, -0.3064, 0.999, 0.7588, -0.3271, 1.0137, 0.7744, -0.3271, 1.0137, 0.7744, -0.3064, 0.999, 0.7588, -0.3152, 0.9946, 0.7808, -0.3064, 0.999, 0.7588, -0.2949, 0.9751, 0.7612, -0.3152, 0.9946, 0.7808, -0.3152, 0.9946, 0.7808, -0.2949, 0.9751, 0.7612, -0.3064, 0.9727, 0.7847, -0.3152, 0.9946, 0.7808, -0.3064, 0.9727, 0.7847, -0.3271, 0.9883, 0.8003, -0.3271, 0.9883, 0.8003, -0.3064, 0.9727, 0.7847, -0.3215, 0.9688, 0.8057, -0.3176, 1.0234, 0.7163, -0.3, 1.002, 0.7163, -0.3186, 1.0225, 0.7358, -0.3186, 1.0225, 0.7358, -0.3, 1.002, 0.7163, -0.3018, 1.001, 0.7378, -0.3, 1.002, 0.7163, -0.2874, 0.9771, 0.7163, -0.3018, 1.001, 0.7378, -0.3018, 1.001, 0.7378, -0.2874, 0.9771, 0.7163, -0.2893, 0.9771, 0.7393, -0.3018, 1.001, 0.7378, -0.2893, 0.9771, 0.7393, -0.3064, 0.999, 0.7588, -0.3064, 0.999, 0.7588, -0.2893, 0.9771, 0.7393, -0.2949, 0.9751, 0.7612, -0.3215, 1.0195, 0.6782, -0.3064, 0.999, 0.6738, -0.3186, 1.0225, 0.6968, -0.3186, 1.0225, 0.6968, -0.3064, 0.999, 0.6738, -0.3018, 1.001, 0.6948, -0.3064, 0.999, 0.6738, -0.2949, 0.9751, 0.6714, -0.3018, 1.001, 0.6948, -0.3018, 1.001, 0.6948, -0.2949, 0.9751, 0.6714, -0.2893, 0.9771, 0.6934, -0.3018, 1.001, 0.6948, -0.2893, 0.9771, 0.6934, -0.3, 1.002, 0.7163, -0.3, 1.002, 0.7163, -0.2893, 0.9771, 0.6934, -0.2874, 0.9771, 0.7163, -0.3347, 1.0068, 0.6396, -0.3271, 0.9883, 0.6323, -0.3271, 1.0137, 0.6582, -0.3271, 1.0137, 0.6582, -0.3271, 0.9883, 0.6323, -0.3152, 0.9946, 0.6519, -0.3271, 0.9883, 0.6323, -0.3215, 0.9688, 0.6265, -0.3152, 0.9946, 0.6519, -0.3152, 0.9946, 0.6519, -0.3215, 0.9688, 0.6265, -0.3064, 0.9727, 0.6479, -0.3152, 0.9946, 0.6519, -0.3064, 0.9727, 0.6479, -0.3064, 0.999, 0.6738, -0.3064, 0.999, 0.6738, -0.3064, 0.9727, 0.6479, -0.2949, 0.9751, 0.6714, -0.2949, 0.9751, 0.7612, -0.2893, 0.9531, 0.7627, -0.3064, 0.9727, 0.7847, -0.3064, 0.9727, 0.7847, -0.2893, 0.9531, 0.7627, -0.3018, 0.9517, 0.7876, -0.2893, 0.9531, 0.7627, -0.2874, 0.9302, 0.7632, -0.3018, 0.9517, 0.7876, -0.3018, 0.9517, 0.7876, -0.2874, 0.9302, 0.7632, -0.3, 0.9302, 0.7881, -0.3018, 0.9517, 0.7876, -0.3, 0.9302, 0.7881, -0.3186, 0.9497, 0.8091, -0.3186, 0.9497, 0.8091, -0.3, 0.9302, 0.7881, -0.3176, 0.9302, 0.8101, -0.2874, 0.9771, 0.7163, -0.281, 0.9541, 0.7163, -0.2893, 0.9771, 0.7393, -0.2893, 0.9771, 0.7393, -0.281, 0.9541, 0.7163, -0.2832, 0.9541, 0.7397, -0.281, 0.9541, 0.7163, -0.2788, 0.9302, 0.7163, -0.2832, 0.9541, 0.7397, -0.2832, 0.9541, 0.7397, -0.2788, 0.9302, 0.7163, -0.281, 0.9302, 0.7402, -0.2832, 0.9541, 0.7397, -0.281, 0.9302, 0.7402, -0.2893, 0.9531, 0.7627, -0.2893, 0.9531, 0.7627, -0.281, 0.9302, 0.7402, -0.2874, 0.9302, 0.7632, -0.2949, 0.9751, 0.6714, -0.2893, 0.9531, 0.6699, -0.2893, 0.9771, 0.6934, -0.2893, 0.9771, 0.6934, -0.2893, 0.9531, 0.6699, -0.2832, 0.9541, 0.6929, -0.2893, 0.9531, 0.6699, -0.2874, 0.9302, 0.6694, -0.2832, 0.9541, 0.6929, -0.2832, 0.9541, 0.6929, -0.2874, 0.9302, 0.6694, -0.281, 0.9302, 0.6924, -0.2832, 0.9541, 0.6929, -0.281, 0.9302, 0.6924, -0.281, 0.9541, 0.7163, -0.281, 0.9541, 0.7163, -0.281, 0.9302, 0.6924, -0.2788, 0.9302, 0.7163, -0.3215, 0.9688, 0.6265, -0.3186, 0.9497, 0.6235, -0.3064, 0.9727, 0.6479, -0.3064, 0.9727, 0.6479, -0.3186, 0.9497, 0.6235, -0.3018, 0.9517, 0.645, -0.3186, 0.9497, 0.6235, -0.3176, 0.9302, 0.6226, -0.3018, 0.9517, 0.645, -0.3018, 0.9517, 0.645, -0.3176, 0.9302, 0.6226, -0.3, 0.9302, 0.6445, -0.3018, 0.9517, 0.645, -0.3, 0.9302, 0.6445, -0.2893, 0.9531, 0.6699, -0.2893, 0.9531, 0.6699, -0.3, 0.9302, 0.6445, -0.2874, 0.9302, 0.6694, -0.2874, 0.9302, 0.7632, -0.2893, 0.9077, 0.7627, -0.3, 0.9302, 0.7881, -0.3, 0.9302, 0.7881, -0.2893, 0.9077, 0.7627, -0.3018, 0.9087, 0.7876, -0.2893, 0.9077, 0.7627, -0.2949, 0.8857, 0.7612, -0.3018, 0.9087, 0.7876, -0.3018, 0.9087, 0.7876, -0.2949, 0.8857, 0.7612, -0.3064, 0.8882, 0.7847, -0.3018, 0.9087, 0.7876, -0.3064, 0.8882, 0.7847, -0.3186, 0.9111, 0.8091, -0.3186, 0.9111, 0.8091, -0.3064, 0.8882, 0.7847, -0.3215, 0.8921, 0.8057, -0.2788, 0.9302, 0.7163, -0.281, 0.9067, 0.7163, -0.281, 0.9302, 0.7402, -0.281, 0.9302, 0.7402, -0.281, 0.9067, 0.7163, -0.2832, 0.9067, 0.7397, -0.281, 0.9067, 0.7163, -0.2874, 0.8833, 0.7163, -0.2832, 0.9067, 0.7397, -0.2832, 0.9067, 0.7397, -0.2874, 0.8833, 0.7163, -0.2893, 0.8838, 0.7393, -0.2832, 0.9067, 0.7397, -0.2893, 0.8838, 0.7393, -0.2893, 0.9077, 0.7627, -0.2893, 0.9077, 0.7627, -0.2893, 0.8838, 0.7393, -0.2949, 0.8857, 0.7612, -0.2874, 0.9302, 0.6694, -0.2893, 0.9077, 0.6699, -0.281, 0.9302, 0.6924, -0.281, 0.9302, 0.6924, -0.2893, 0.9077, 0.6699, -0.2832, 0.9067, 0.6929, -0.2893, 0.9077, 0.6699, -0.2949, 0.8857, 0.6714, -0.2832, 0.9067, 0.6929, -0.2832, 0.9067, 0.6929, -0.2949, 0.8857, 0.6714, -0.2893, 0.8838, 0.6934, -0.2832, 0.9067, 0.6929, -0.2893, 0.8838, 0.6934, -0.281, 0.9067, 0.7163, -0.281, 0.9067, 0.7163, -0.2893, 0.8838, 0.6934, -0.2874, 0.8833, 0.7163, -0.3176, 0.9302, 0.6226, -0.3186, 0.9111, 0.6235, -0.3, 0.9302, 0.6445, -0.3, 0.9302, 0.6445, -0.3186, 0.9111, 0.6235, -0.3018, 0.9087, 0.645, -0.3186, 0.9111, 0.6235, -0.3215, 0.8921, 0.6265, -0.3018, 0.9087, 0.645, -0.3018, 0.9087, 0.645, -0.3215, 0.8921, 0.6265, -0.3064, 0.8882, 0.6479, -0.3018, 0.9087, 0.645, -0.3064, 0.8882, 0.6479, -0.2893, 0.9077, 0.6699, -0.2893, 0.9077, 0.6699, -0.3064, 0.8882, 0.6479, -0.2949, 0.8857, 0.6714, -0.2949, 0.8857, 0.7612, -0.3064, 0.8618, 0.7588, -0.3064, 0.8882, 0.7847, -0.3064, 0.8882, 0.7847, -0.3064, 0.8618, 0.7588, -0.3152, 0.8662, 0.7808, -0.3064, 0.8618, 0.7588, -0.3215, 0.8408, 0.7544, -0.3152, 0.8662, 0.7808, -0.3152, 0.8662, 0.7808, -0.3215, 0.8408, 0.7544, -0.3271, 0.8462, 0.7744, -0.3152, 0.8662, 0.7808, -0.3271, 0.8462, 0.7744, -0.3271, 0.8721, 0.8003, -0.3271, 0.8721, 0.8003, -0.3271, 0.8462, 0.7744, -0.3347, 0.854, 0.7925, -0.2874, 0.8833, 0.7163, -0.3, 0.8584, 0.7163, -0.2893, 0.8838, 0.7393, -0.2893, 0.8838, 0.7393, -0.3, 0.8584, 0.7163, -0.3018, 0.8594, 0.7378, -0.3, 0.8584, 0.7163, -0.3176, 0.8369, 0.7163, -0.3018, 0.8594, 0.7378, -0.3018, 0.8594, 0.7378, -0.3176, 0.8369, 0.7163, -0.3186, 0.8379, 0.7358, -0.3018, 0.8594, 0.7378, -0.3186, 0.8379, 0.7358, -0.3064, 0.8618, 0.7588, -0.3064, 0.8618, 0.7588, -0.3186, 0.8379, 0.7358, -0.3215, 0.8408, 0.7544, -0.2949, 0.8857, 0.6714, -0.3064, 0.8618, 0.6738, -0.2893, 0.8838, 0.6934, -0.2893, 0.8838, 0.6934, -0.3064, 0.8618, 0.6738, -0.3018, 0.8594, 0.6948, -0.3064, 0.8618, 0.6738, -0.3215, 0.8408, 0.6782, -0.3018, 0.8594, 0.6948, -0.3018, 0.8594, 0.6948, -0.3215, 0.8408, 0.6782, -0.3186, 0.8379, 0.6968, -0.3018, 0.8594, 0.6948, -0.3186, 0.8379, 0.6968, -0.3, 0.8584, 0.7163, -0.3, 0.8584, 0.7163, -0.3186, 0.8379, 0.6968, -0.3176, 0.8369, 0.7163, -0.3215, 0.8921, 0.6265, -0.3271, 0.8721, 0.6323, -0.3064, 0.8882, 0.6479, -0.3064, 0.8882, 0.6479, -0.3271, 0.8721, 0.6323, -0.3152, 0.8662, 0.6519, -0.3271, 0.8721, 0.6323, -0.3347, 0.854, 0.6396, -0.3152, 0.8662, 0.6519, -0.3152, 0.8662, 0.6519, -0.3347, 0.854, 0.6396, -0.3271, 0.8462, 0.6582, -0.3152, 0.8662, 0.6519, -0.3271, 0.8462, 0.6582, -0.3064, 0.8618, 0.6738, -0.3064, 0.8618, 0.6738, -0.3271, 0.8462, 0.6582, -0.3215, 0.8408, 0.6782, -0.373, 1.0195, 0.6265, -0.3689, 0.999, 0.6113, -0.3533, 1.0137, 0.6323, -0.3533, 1.0137, 0.6323, -0.3689, 0.999, 0.6113, -0.3469, 0.9946, 0.6201, -0.3689, 0.999, 0.6113, -0.3665, 0.9751, 0.6001, -0.3469, 0.9946, 0.6201, -0.3469, 0.9946, 0.6201, -0.3665, 0.9751, 0.6001, -0.3428, 0.9727, 0.6113, -0.3469, 0.9946, 0.6201, -0.3428, 0.9727, 0.6113, -0.3271, 0.9883, 0.6323, -0.3271, 0.9883, 0.6323, -0.3428, 0.9727, 0.6113, -0.3215, 0.9688, 0.6265, -0.4111, 1.0234, 0.6226, -0.4111, 1.002, 0.605, -0.3918, 1.0225, 0.6235, -0.3918, 1.0225, 0.6235, -0.4111, 1.002, 0.605, -0.3896, 1.001, 0.6069, -0.4111, 1.002, 0.605, -0.4111, 0.9771, 0.5923, -0.3896, 1.001, 0.6069, -0.3896, 1.001, 0.6069, -0.4111, 0.9771, 0.5923, -0.3884, 0.9771, 0.5942, -0.3896, 1.001, 0.6069, -0.3884, 0.9771, 0.5942, -0.3689, 0.999, 0.6113, -0.3689, 0.999, 0.6113, -0.3884, 0.9771, 0.5942, -0.3665, 0.9751, 0.6001, -0.4495, 1.0195, 0.6265, -0.4536, 0.999, 0.6113, -0.4307, 1.0225, 0.6235, -0.4307, 1.0225, 0.6235, -0.4536, 0.999, 0.6113, -0.4326, 1.001, 0.6069, -0.4536, 0.999, 0.6113, -0.4561, 0.9751, 0.6001, -0.4326, 1.001, 0.6069, -0.4326, 1.001, 0.6069, -0.4561, 0.9751, 0.6001, -0.4341, 0.9771, 0.5942, -0.4326, 1.001, 0.6069, -0.4341, 0.9771, 0.5942, -0.4111, 1.002, 0.605, -0.4111, 1.002, 0.605, -0.4341, 0.9771, 0.5942, -0.4111, 0.9771, 0.5923, -0.4875, 1.0068, 0.6396, -0.4954, 0.9883, 0.6323, -0.4692, 1.0137, 0.6323, -0.4692, 1.0137, 0.6323, -0.4954, 0.9883, 0.6323, -0.4756, 0.9946, 0.6201, -0.4954, 0.9883, 0.6323, -0.5005, 0.9688, 0.6265, -0.4756, 0.9946, 0.6201, -0.4756, 0.9946, 0.6201, -0.5005, 0.9688, 0.6265, -0.4797, 0.9727, 0.6113, -0.4756, 0.9946, 0.6201, -0.4797, 0.9727, 0.6113, -0.4536, 0.999, 0.6113, -0.4536, 0.999, 0.6113, -0.4797, 0.9727, 0.6113, -0.4561, 0.9751, 0.6001, -0.3665, 0.9751, 0.6001, -0.3647, 0.9531, 0.5942, -0.3428, 0.9727, 0.6113, -0.3428, 0.9727, 0.6113, -0.3647, 0.9531, 0.5942, -0.3401, 0.9517, 0.6069, -0.3647, 0.9531, 0.5942, -0.3645, 0.9302, 0.5923, -0.3401, 0.9517, 0.6069, -0.3401, 0.9517, 0.6069, -0.3645, 0.9302, 0.5923, -0.3394, 0.9302, 0.605, -0.3401, 0.9517, 0.6069, -0.3394, 0.9302, 0.605, -0.3186, 0.9497, 0.6235, -0.3186, 0.9497, 0.6235, -0.3394, 0.9302, 0.605, -0.3176, 0.9302, 0.6226, -0.4111, 0.9771, 0.5923, -0.4111, 0.9541, 0.5859, -0.3884, 0.9771, 0.5942, -0.3884, 0.9771, 0.5942, -0.4111, 0.9541, 0.5859, -0.3877, 0.9541, 0.5884, -0.4111, 0.9541, 0.5859, -0.4111, 0.9302, 0.584, -0.3877, 0.9541, 0.5884, -0.3877, 0.9541, 0.5884, -0.4111, 0.9302, 0.584, -0.3875, 0.9302, 0.5859, -0.3877, 0.9541, 0.5884, -0.3875, 0.9302, 0.5859, -0.3647, 0.9531, 0.5942, -0.3647, 0.9531, 0.5942, -0.3875, 0.9302, 0.5859, -0.3645, 0.9302, 0.5923, -0.4561, 0.9751, 0.6001, -0.4578, 0.9531, 0.5942, -0.4341, 0.9771, 0.5942, -0.4341, 0.9771, 0.5942, -0.4578, 0.9531, 0.5942, -0.4348, 0.9541, 0.5884, -0.4578, 0.9531, 0.5942, -0.458, 0.9302, 0.5923, -0.4348, 0.9541, 0.5884, -0.4348, 0.9541, 0.5884, -0.458, 0.9302, 0.5923, -0.4351, 0.9302, 0.5859, -0.4348, 0.9541, 0.5884, -0.4351, 0.9302, 0.5859, -0.4111, 0.9541, 0.5859, -0.4111, 0.9541, 0.5859, -0.4351, 0.9302, 0.5859, -0.4111, 0.9302, 0.584, -0.5005, 0.9688, 0.6265, -0.5039, 0.9497, 0.6235, -0.4797, 0.9727, 0.6113, -0.4797, 0.9727, 0.6113, -0.5039, 0.9497, 0.6235, -0.4824, 0.9517, 0.6069, -0.5039, 0.9497, 0.6235, -0.5049, 0.9302, 0.6226, -0.4824, 0.9517, 0.6069, -0.4824, 0.9517, 0.6069, -0.5049, 0.9302, 0.6226, -0.4829, 0.9302, 0.605, -0.4824, 0.9517, 0.6069, -0.4829, 0.9302, 0.605, -0.4578, 0.9531, 0.5942, -0.4578, 0.9531, 0.5942, -0.4829, 0.9302, 0.605, -0.458, 0.9302, 0.5923, -0.3645, 0.9302, 0.5923, -0.3647, 0.9077, 0.5942, -0.3394, 0.9302, 0.605, -0.3394, 0.9302, 0.605, -0.3647, 0.9077, 0.5942, -0.3401, 0.9087, 0.6069, -0.3647, 0.9077, 0.5942, -0.3665, 0.8857, 0.6001, -0.3401, 0.9087, 0.6069, -0.3401, 0.9087, 0.6069, -0.3665, 0.8857, 0.6001, -0.3428, 0.8882, 0.6113, -0.3401, 0.9087, 0.6069, -0.3428, 0.8882, 0.6113, -0.3186, 0.9111, 0.6235, -0.3186, 0.9111, 0.6235, -0.3428, 0.8882, 0.6113, -0.3215, 0.8921, 0.6265, -0.4111, 0.9302, 0.584, -0.4111, 0.9067, 0.5859, -0.3875, 0.9302, 0.5859, -0.3875, 0.9302, 0.5859, -0.4111, 0.9067, 0.5859, -0.3877, 0.9067, 0.5884, -0.4111, 0.9067, 0.5859, -0.4111, 0.8833, 0.5923, -0.3877, 0.9067, 0.5884, -0.3877, 0.9067, 0.5884, -0.4111, 0.8833, 0.5923, -0.3884, 0.8838, 0.5942, -0.3877, 0.9067, 0.5884, -0.3884, 0.8838, 0.5942, -0.3647, 0.9077, 0.5942, -0.3647, 0.9077, 0.5942, -0.3884, 0.8838, 0.5942, -0.3665, 0.8857, 0.6001, -0.458, 0.9302, 0.5923, -0.4578, 0.9077, 0.5942, -0.4351, 0.9302, 0.5859, -0.4351, 0.9302, 0.5859, -0.4578, 0.9077, 0.5942, -0.4348, 0.9067, 0.5884, -0.4578, 0.9077, 0.5942, -0.4561, 0.8857, 0.6001, -0.4348, 0.9067, 0.5884, -0.4348, 0.9067, 0.5884, -0.4561, 0.8857, 0.6001, -0.4341, 0.8838, 0.5942, -0.4348, 0.9067, 0.5884, -0.4341, 0.8838, 0.5942, -0.4111, 0.9067, 0.5859, -0.4111, 0.9067, 0.5859, -0.4341, 0.8838, 0.5942, -0.4111, 0.8833, 0.5923, -0.5049, 0.9302, 0.6226, -0.5039, 0.9111, 0.6235, -0.4829, 0.9302, 0.605, -0.4829, 0.9302, 0.605, -0.5039, 0.9111, 0.6235, -0.4824, 0.9087, 0.6069, -0.5039, 0.9111, 0.6235, -0.5005, 0.8921, 0.6265, -0.4824, 0.9087, 0.6069, -0.4824, 0.9087, 0.6069, -0.5005, 0.8921, 0.6265, -0.4797, 0.8882, 0.6113, -0.4824, 0.9087, 0.6069, -0.4797, 0.8882, 0.6113, -0.4578, 0.9077, 0.5942, -0.4578, 0.9077, 0.5942, -0.4797, 0.8882, 0.6113, -0.4561, 0.8857, 0.6001, -0.3665, 0.8857, 0.6001, -0.3689, 0.8618, 0.6113, -0.3428, 0.8882, 0.6113, -0.3428, 0.8882, 0.6113, -0.3689, 0.8618, 0.6113, -0.3469, 0.8662, 0.6201, -0.3689, 0.8618, 0.6113, -0.373, 0.8408, 0.6265, -0.3469, 0.8662, 0.6201, -0.3469, 0.8662, 0.6201, -0.373, 0.8408, 0.6265, -0.3533, 0.8462, 0.6323, -0.3469, 0.8662, 0.6201, -0.3533, 0.8462, 0.6323, -0.3271, 0.8721, 0.6323, -0.3271, 0.8721, 0.6323, -0.3533, 0.8462, 0.6323, -0.3347, 0.854, 0.6396, -0.4111, 0.8833, 0.5923, -0.4111, 0.8584, 0.605, -0.3884, 0.8838, 0.5942, -0.3884, 0.8838, 0.5942, -0.4111, 0.8584, 0.605, -0.3896, 0.8594, 0.6069, -0.4111, 0.8584, 0.605, -0.4111, 0.8369, 0.6226, -0.3896, 0.8594, 0.6069, -0.3896, 0.8594, 0.6069, -0.4111, 0.8369, 0.6226, -0.3918, 0.8379, 0.6235, -0.3896, 0.8594, 0.6069, -0.3918, 0.8379, 0.6235, -0.3689, 0.8618, 0.6113, -0.3689, 0.8618, 0.6113, -0.3918, 0.8379, 0.6235, -0.373, 0.8408, 0.6265, -0.4561, 0.8857, 0.6001, -0.4536, 0.8618, 0.6113, -0.4341, 0.8838, 0.5942, -0.4341, 0.8838, 0.5942, -0.4536, 0.8618, 0.6113, -0.4326, 0.8594, 0.6069, -0.4536, 0.8618, 0.6113, -0.4495, 0.8408, 0.6265, -0.4326, 0.8594, 0.6069, -0.4326, 0.8594, 0.6069, -0.4495, 0.8408, 0.6265, -0.4307, 0.8379, 0.6235, -0.4326, 0.8594, 0.6069, -0.4307, 0.8379, 0.6235, -0.4111, 0.8584, 0.605, -0.4111, 0.8584, 0.605, -0.4307, 0.8379, 0.6235, -0.4111, 0.8369, 0.6226, -0.5005, 0.8921, 0.6265, -0.4954, 0.8721, 0.6323, -0.4797, 0.8882, 0.6113, -0.4797, 0.8882, 0.6113, -0.4954, 0.8721, 0.6323, -0.4756, 0.8662, 0.6201, -0.4954, 0.8721, 0.6323, -0.4875, 0.854, 0.6396, -0.4756, 0.8662, 0.6201, -0.4756, 0.8662, 0.6201, -0.4875, 0.854, 0.6396, -0.4692, 0.8462, 0.6323, -0.4756, 0.8662, 0.6201, -0.4692, 0.8462, 0.6323, -0.4536, 0.8618, 0.6113, -0.4536, 0.8618, 0.6113, -0.4692, 0.8462, 0.6323, -0.4495, 0.8408, 0.6265, 0.1039, 0.0017, 0, 0, 0, 0, 0.1035, 0.0017, 0.0102, 0.2067, 0.0068, 0, 0.1039, 0.0017, 0, 0.2057, 0.0068, 0.0202, 0.2057, 0.0068, 0.0202, 0.1039, 0.0017, 0, 0.1035, 0.0017, 0.0102, 0.3069, 0.0153, 0, 0.2067, 0.0068, 0, 0.3052, 0.0153, 0.0301, 0.3052, 0.0153, 0.0301, 0.2067, 0.0068, 0, 0.2057, 0.0068, 0.0202, 0.4033, 0.027, 0, 0.3069, 0.0153, 0, 0.4014, 0.027, 0.0395, 0.4014, 0.027, 0.0395, 0.3069, 0.0153, 0, 0.3052, 0.0153, 0.0301, 0.4949, 0.0418, 0, 0.4033, 0.027, 0, 0.4924, 0.0418, 0.0485, 0.4924, 0.0418, 0.0485, 0.4033, 0.027, 0, 0.4014, 0.027, 0.0395, 0.5806, 0.0597, 0, 0.4949, 0.0418, 0, 0.5776, 0.0597, 0.0569, 0.5776, 0.0597, 0.0569, 0.4949, 0.0418, 0, 0.4924, 0.0418, 0.0485, 0.6592, 0.0803, 0, 0.5806, 0.0597, 0, 0.6563, 0.0803, 0.0646, 0.6563, 0.0803, 0.0646, 0.5806, 0.0597, 0, 0.5776, 0.0597, 0.0569, 0.7305, 0.1036, 0, 0.6592, 0.0803, 0, 0.7271, 0.1036, 0.0716, 0.7271, 0.1036, 0.0716, 0.6592, 0.0803, 0, 0.6563, 0.0803, 0.0646, 0.793, 0.1295, 0, 0.7305, 0.1036, 0, 0.7891, 0.1295, 0.0777, 0.7891, 0.1295, 0.0777, 0.7305, 0.1036, 0, 0.7271, 0.1036, 0.0716, 0.8467, 0.158, 0, 0.793, 0.1295, 0, 0.8428, 0.158, 0.083, 0.8428, 0.158, 0.083, 0.793, 0.1295, 0, 0.7891, 0.1295, 0.0777, 0.8911, 0.1895, 0, 0.8467, 0.158, 0, 0.8867, 0.1895, 0.0873, 0.8867, 0.1895, 0.0873, 0.8467, 0.158, 0, 0.8428, 0.158, 0.083, 0.9253, 0.2247, 0, 0.8911, 0.1895, 0, 0.9209, 0.2247, 0.0907, 0.9209, 0.2247, 0.0907, 0.8911, 0.1895, 0, 0.8867, 0.1895, 0.0873, 0.9482, 0.2646, 0, 0.9253, 0.2247, 0, 0.9438, 0.2646, 0.093, 0.9438, 0.2646, 0.093, 0.9253, 0.2247, 0, 0.9209, 0.2247, 0.0907, 0.9565, 0.3049, 0, 0.9482, 0.2646, 0, 0.9517, 0.3049, 0.0938, 0.9517, 0.3049, 0.0938, 0.9482, 0.2646, 0, 0.9438, 0.2646, 0.093, 0.2776, 0.3464, 0.9155, 0.2776, 0.3049, 0.915, 0.1866, 0.3464, 0.9385, 0.1866, 0.3464, 0.9385, 0.2776, 0.3049, 0.915, 0.1865, 0.3049, 0.938, 0.8433, 0.3049, 0.4509, 0.8438, 0.3464, 0.4509, 0.8838, 0.3049, 0.366, 0.8838, 0.3049, 0.366, 0.8438, 0.3464, 0.4509, 0.8838, 0.3464, 0.366, 0.9565, 0.3955, 0, 0.9565, 0.3464, 0, 0.9521, 0.3955, 0.0938, 0.9521, 0.3955, 0.0938, 0.9565, 0.3464, 0, 0.9521, 0.3464, 0.0938, 0.1035, 0.0017, 0.0102, 0, 0, 0, 0.1019, 0.0017, 0.0203, 0.2057, 0.0068, 0.0202, 0.1035, 0.0017, 0.0102, 0.2026, 0.0068, 0.0403, 0.2026, 0.0068, 0.0403, 0.1035, 0.0017, 0.0102, 0.1019, 0.0017, 0.0203, 0.3052, 0.0153, 0.0301, 0.2057, 0.0068, 0.0202, 0.3008, 0.0153, 0.0598, 0.3008, 0.0153, 0.0598, 0.2057, 0.0068, 0.0202, 0.2026, 0.0068, 0.0403, 0.4014, 0.027, 0.0395, 0.3052, 0.0153, 0.0301, 0.3955, 0.027, 0.0787, 0.3955, 0.027, 0.0787, 0.3052, 0.0153, 0.0301, 0.3008, 0.0153, 0.0598, 0.4924, 0.0418, 0.0485, 0.4014, 0.027, 0.0395, 0.4854, 0.0418, 0.0966, 0.4854, 0.0418, 0.0966, 0.4014, 0.027, 0.0395, 0.3955, 0.027, 0.0787, 0.5776, 0.0597, 0.0569, 0.4924, 0.0418, 0.0485, 0.5693, 0.0597, 0.1133, 0.5693, 0.0597, 0.1133, 0.4924, 0.0418, 0.0485, 0.4854, 0.0418, 0.0966, 0.6563, 0.0803, 0.0646, 0.5776, 0.0597, 0.0569, 0.6465, 0.0803, 0.1287, 0.6465, 0.0803, 0.1287, 0.5776, 0.0597, 0.0569, 0.5693, 0.0597, 0.1133, 0.7271, 0.1036, 0.0716, 0.6563, 0.0803, 0.0646, 0.7163, 0.1036, 0.1425, 0.7163, 0.1036, 0.1425, 0.6563, 0.0803, 0.0646, 0.6465, 0.0803, 0.1287, 0.7891, 0.1295, 0.0777, 0.7271, 0.1036, 0.0716, 0.7778, 0.1295, 0.1547, 0.7778, 0.1295, 0.1547, 0.7271, 0.1036, 0.0716, 0.7163, 0.1036, 0.1425, 0.8428, 0.158, 0.083, 0.7891, 0.1295, 0.0777, 0.8306, 0.158, 0.1652, 0.8306, 0.158, 0.1652, 0.7891, 0.1295, 0.0777, 0.7778, 0.1295, 0.1547, 0.8867, 0.1895, 0.0873, 0.8428, 0.158, 0.083, 0.874, 0.1895, 0.1738, 0.874, 0.1895, 0.1738, 0.8428, 0.158, 0.083, 0.8306, 0.158, 0.1652, 0.9209, 0.2247, 0.0907, 0.8867, 0.1895, 0.0873, 0.9077, 0.2247, 0.1805, 0.9077, 0.2247, 0.1805, 0.8867, 0.1895, 0.0873, 0.874, 0.1895, 0.1738, 0.9438, 0.2646, 0.093, 0.9209, 0.2247, 0.0907, 0.9302, 0.2646, 0.1851, 0.9302, 0.2646, 0.1851, 0.9209, 0.2247, 0.0907, 0.9077, 0.2247, 0.1805, 0.9517, 0.3049, 0.0938, 0.9438, 0.2646, 0.093, 0.938, 0.3049, 0.1865, 0.938, 0.3049, 0.1865, 0.9438, 0.2646, 0.093, 0.9302, 0.2646, 0.1851, 0.0938, 0.3464, 0.9521, 0.1866, 0.3464, 0.9385, 0.0938, 0.3049, 0.9517, 0.0938, 0.3049, 0.9517, 0.1866, 0.3464, 0.9385, 0.1865, 0.3049, 0.938, 0, 0.3464, -0.9565, 0, 0.3049, -0.9565, 0.0938, 0.3464, -0.9521, 0.0938, 0.3464, -0.9521, 0, 0.3049, -0.9565, 0.0938, 0.3049, -0.9517, 0.9521, 0.3955, 0.0938, 0.9521, 0.3464, 0.0938, 0.9385, 0.3955, 0.1866, 0.9385, 0.3955, 0.1866, 0.9521, 0.3464, 0.0938, 0.9385, 0.3464, 0.1866, 0.1019, 0.0017, 0.0203, 0, 0, 0, 0.0995, 0.0017, 0.0302, 0.2026, 0.0068, 0.0403, 0.1019, 0.0017, 0.0203, 0.1978, 0.0068, 0.06, 0.1978, 0.0068, 0.06, 0.1019, 0.0017, 0.0203, 0.0995, 0.0017, 0.0302, 0.3008, 0.0153, 0.0598, 0.2026, 0.0068, 0.0403, 0.2935, 0.0153, 0.0891, 0.2935, 0.0153, 0.0891, 0.2026, 0.0068, 0.0403, 0.1978, 0.0068, 0.06, 0.3955, 0.027, 0.0787, 0.3008, 0.0153, 0.0598, 0.386, 0.027, 0.1171, 0.386, 0.027, 0.1171, 0.3008, 0.0153, 0.0598, 0.2935, 0.0153, 0.0891, 0.4854, 0.0418, 0.0966, 0.3955, 0.027, 0.0787, 0.4736, 0.0418, 0.1437, 0.4736, 0.0418, 0.1437, 0.3955, 0.027, 0.0787, 0.386, 0.027, 0.1171, 0.5693, 0.0597, 0.1133, 0.4854, 0.0418, 0.0966, 0.5557, 0.0597, 0.1686, 0.5557, 0.0597, 0.1686, 0.4854, 0.0418, 0.0966, 0.4736, 0.0418, 0.1437, 0.6465, 0.0803, 0.1287, 0.5693, 0.0597, 0.1133, 0.6309, 0.0803, 0.1914, 0.6309, 0.0803, 0.1914, 0.5693, 0.0597, 0.1133, 0.5557, 0.0597, 0.1686, 0.7163, 0.1036, 0.1425, 0.6465, 0.0803, 0.1287, 0.6987, 0.1036, 0.212, 0.6987, 0.1036, 0.212, 0.6465, 0.0803, 0.1287, 0.6309, 0.0803, 0.1914, 0.7778, 0.1295, 0.1547, 0.7163, 0.1036, 0.1425, 0.7588, 0.1295, 0.2302, 0.7588, 0.1295, 0.2302, 0.7163, 0.1036, 0.1425, 0.6987, 0.1036, 0.212, 0.8306, 0.158, 0.1652, 0.7778, 0.1295, 0.1547, 0.8101, 0.158, 0.2458, 0.8101, 0.158, 0.2458, 0.7778, 0.1295, 0.1547, 0.7588, 0.1295, 0.2302, 0.874, 0.1895, 0.1738, 0.8306, 0.158, 0.1652, 0.8525, 0.1895, 0.2585, 0.8525, 0.1895, 0.2585, 0.8306, 0.158, 0.1652, 0.8101, 0.158, 0.2458, 0.9077, 0.2247, 0.1805, 0.874, 0.1895, 0.1738, 0.8857, 0.2247, 0.2686, 0.8857, 0.2247, 0.2686, 0.874, 0.1895, 0.1738, 0.8525, 0.1895, 0.2585, 0.9302, 0.2646, 0.1851, 0.9077, 0.2247, 0.1805, 0.9077, 0.2646, 0.2751, 0.9077, 0.2646, 0.2751, 0.9077, 0.2247, 0.1805, 0.8857, 0.2247, 0.2686, 0.938, 0.3049, 0.1865, 0.9302, 0.2646, 0.1851, 0.915, 0.3049, 0.2776, 0.915, 0.3049, 0.2776, 0.9302, 0.2646, 0.1851, 0.9077, 0.2646, 0.2751, 0.915, 0.3049, 0.2776, 0.9155, 0.3464, 0.2776, 0.938, 0.3049, 0.1865, 0.938, 0.3049, 0.1865, 0.9155, 0.3464, 0.2776, 0.9385, 0.3464, 0.1866, 0.7393, 0.3464, -0.6069, 0.7393, 0.3049, -0.6064, 0.7954, 0.3464, -0.5313, 0.7954, 0.3464, -0.5313, 0.7393, 0.3049, -0.6064, 0.7954, 0.3049, -0.5313, 0.9385, 0.3955, 0.1866, 0.9385, 0.3464, 0.1866, 0.9155, 0.3955, 0.2776, 0.9155, 0.3955, 0.2776, 0.9385, 0.3464, 0.1866, 0.9155, 0.3464, 0.2776, 0.0995, 0.0017, 0.0302, 0, 0, 0, 0.096, 0.0017, 0.0398, 0.1978, 0.0068, 0.06, 0.0995, 0.0017, 0.0302, 0.1909, 0.0068, 0.079, 0.1909, 0.0068, 0.079, 0.0995, 0.0017, 0.0302, 0.096, 0.0017, 0.0398, 0.2935, 0.0153, 0.0891, 0.1978, 0.0068, 0.06, 0.2834, 0.0153, 0.1174, 0.2834, 0.0153, 0.1174, 0.1978, 0.0068, 0.06, 0.1909, 0.0068, 0.079, 0.386, 0.027, 0.1171, 0.2935, 0.0153, 0.0891, 0.3726, 0.027, 0.1543, 0.3726, 0.027, 0.1543, 0.2935, 0.0153, 0.0891, 0.2834, 0.0153, 0.1174, 0.4736, 0.0418, 0.1437, 0.386, 0.027, 0.1171, 0.4573, 0.0418, 0.1893, 0.4573, 0.0418, 0.1893, 0.386, 0.027, 0.1171, 0.3726, 0.027, 0.1543, 0.5557, 0.0597, 0.1686, 0.4736, 0.0418, 0.1437, 0.5361, 0.0597, 0.2222, 0.5361, 0.0597, 0.2222, 0.4736, 0.0418, 0.1437, 0.4573, 0.0418, 0.1893, 0.6309, 0.0803, 0.1914, 0.5557, 0.0597, 0.1686, 0.6089, 0.0803, 0.2522, 0.6089, 0.0803, 0.2522, 0.5557, 0.0597, 0.1686, 0.5361, 0.0597, 0.2222, 0.6987, 0.1036, 0.212, 0.6309, 0.0803, 0.1914, 0.6748, 0.1036, 0.2795, 0.6748, 0.1036, 0.2795, 0.6309, 0.0803, 0.1914, 0.6089, 0.0803, 0.2522, 0.7588, 0.1295, 0.2302, 0.6987, 0.1036, 0.212, 0.7329, 0.1295, 0.3035, 0.7329, 0.1295, 0.3035, 0.6987, 0.1036, 0.212, 0.6748, 0.1036, 0.2795, 0.8101, 0.158, 0.2458, 0.7588, 0.1295, 0.2302, 0.7822, 0.158, 0.324, 0.7822, 0.158, 0.324, 0.7588, 0.1295, 0.2302, 0.7329, 0.1295, 0.3035, 0.8525, 0.1895, 0.2585, 0.8101, 0.158, 0.2458, 0.8232, 0.1895, 0.3411, 0.8232, 0.1895, 0.3411, 0.8101, 0.158, 0.2458, 0.7822, 0.158, 0.324, 0.8857, 0.2247, 0.2686, 0.8525, 0.1895, 0.2585, 0.855, 0.2247, 0.3542, 0.855, 0.2247, 0.3542, 0.8525, 0.1895, 0.2585, 0.8232, 0.1895, 0.3411, 0.9077, 0.2646, 0.2751, 0.8857, 0.2247, 0.2686, 0.876, 0.2646, 0.3628, 0.876, 0.2646, 0.3628, 0.8857, 0.2247, 0.2686, 0.855, 0.2247, 0.3542, 0.915, 0.3049, 0.2776, 0.9077, 0.2646, 0.2751, 0.8838, 0.3049, 0.366, 0.8838, 0.3049, 0.366, 0.9077, 0.2646, 0.2751, 0.876, 0.2646, 0.3628, 0.915, 0.3049, 0.2776, 0.8838, 0.3049, 0.366, 0.9155, 0.3464, 0.2776, 0.9155, 0.3464, 0.2776, 0.8838, 0.3049, 0.366, 0.8838, 0.3464, 0.366, 0.8838, 0.3464, -0.366, 0.8438, 0.3464, -0.4509, 0.8838, 0.3049, -0.366, 0.8838, 0.3049, -0.366, 0.8438, 0.3464, -0.4509, 0.8433, 0.3049, -0.4509, 0.9155, 0.3955, 0.2776, 0.9155, 0.3464, 0.2776, 0.8838, 0.3955, 0.366, 0.8838, 0.3955, 0.366, 0.9155, 0.3464, 0.2776, 0.8838, 0.3464, 0.366, 0.096, 0.0017, 0.0398, 0, 0, 0, 0.0917, 0.0017, 0.049, 0.1909, 0.0068, 0.079, 0.096, 0.0017, 0.0398, 0.1823, 0.0068, 0.0974, 0.1823, 0.0068, 0.0974, 0.096, 0.0017, 0.0398, 0.0917, 0.0017, 0.049, 0.2834, 0.0153, 0.1174, 0.1909, 0.0068, 0.079, 0.2705, 0.0153, 0.1447, 0.2705, 0.0153, 0.1447, 0.1909, 0.0068, 0.079, 0.1823, 0.0068, 0.0974, 0.3726, 0.027, 0.1543, 0.2834, 0.0153, 0.1174, 0.3557, 0.027, 0.1901, 0.3557, 0.027, 0.1901, 0.2834, 0.0153, 0.1174, 0.2705, 0.0153, 0.1447, 0.4573, 0.0418, 0.1893, 0.3726, 0.027, 0.1543, 0.4365, 0.0418, 0.2333, 0.4365, 0.0418, 0.2333, 0.3726, 0.027, 0.1543, 0.3557, 0.027, 0.1901, 0.5361, 0.0597, 0.2222, 0.4573, 0.0418, 0.1893, 0.5117, 0.0597, 0.2737, 0.5117, 0.0597, 0.2737, 0.4573, 0.0418, 0.1893, 0.4365, 0.0418, 0.2333, 0.6089, 0.0803, 0.2522, 0.5361, 0.0597, 0.2222, 0.5815, 0.0803, 0.3108, 0.5815, 0.0803, 0.3108, 0.5361, 0.0597, 0.2222, 0.5117, 0.0597, 0.2737, 0.6748, 0.1036, 0.2795, 0.6089, 0.0803, 0.2522, 0.644, 0.1036, 0.3442, 0.644, 0.1036, 0.3442, 0.6089, 0.0803, 0.2522, 0.5815, 0.0803, 0.3108, 0.7329, 0.1295, 0.3035, 0.6748, 0.1036, 0.2795, 0.6992, 0.1295, 0.3738, 0.6992, 0.1295, 0.3738, 0.6748, 0.1036, 0.2795, 0.644, 0.1036, 0.3442, 0.7822, 0.158, 0.324, 0.7329, 0.1295, 0.3035, 0.7466, 0.158, 0.3992, 0.7466, 0.158, 0.3992, 0.7329, 0.1295, 0.3035, 0.6992, 0.1295, 0.3738, 0.8232, 0.1895, 0.3411, 0.7822, 0.158, 0.324, 0.7856, 0.1895, 0.4202, 0.7856, 0.1895, 0.4202, 0.7822, 0.158, 0.324, 0.7466, 0.158, 0.3992, 0.855, 0.2247, 0.3542, 0.8232, 0.1895, 0.3411, 0.8164, 0.2247, 0.4363, 0.8164, 0.2247, 0.4363, 0.8232, 0.1895, 0.3411, 0.7856, 0.1895, 0.4202, 0.876, 0.2646, 0.3628, 0.855, 0.2247, 0.3542, 0.8364, 0.2646, 0.447, 0.8364, 0.2646, 0.447, 0.855, 0.2247, 0.3542, 0.8164, 0.2247, 0.4363, 0.8838, 0.3049, 0.366, 0.876, 0.2646, 0.3628, 0.8433, 0.3049, 0.4509, 0.8433, 0.3049, 0.4509, 0.876, 0.2646, 0.3628, 0.8364, 0.2646, 0.447, 0.4509, 0.3464, 0.8438, 0.4509, 0.3049, 0.8433, 0.366, 0.3464, 0.8838, 0.366, 0.3464, 0.8838, 0.4509, 0.3049, 0.8433, 0.366, 0.3049, 0.8838, 0.6064, 0.3049, 0.7393, 0.6069, 0.3464, 0.7393, 0.6763, 0.3049, 0.6763, 0.6763, 0.3049, 0.6763, 0.6069, 0.3464, 0.7393, 0.6763, 0.3464, 0.6763, 0.8838, 0.3955, 0.366, 0.8838, 0.3464, 0.366, 0.8438, 0.3955, 0.4509, 0.8438, 0.3955, 0.4509, 0.8838, 0.3464, 0.366, 0.8438, 0.3464, 0.4509, 0.0917, 0.0017, 0.049, 0, 0, 0, 0.0864, 0.0017, 0.0578, 0.1823, 0.0068, 0.0974, 0.0917, 0.0017, 0.049, 0.1718, 0.0068, 0.1148, 0.1718, 0.0068, 0.1148, 0.0917, 0.0017, 0.049, 0.0864, 0.0017, 0.0578, 0.2705, 0.0153, 0.1447, 0.1823, 0.0068, 0.0974, 0.2551, 0.0153, 0.1704, 0.2551, 0.0153, 0.1704, 0.1823, 0.0068, 0.0974, 0.1718, 0.0068, 0.1148, 0.3557, 0.027, 0.1901, 0.2705, 0.0153, 0.1447, 0.3352, 0.027, 0.224, 0.3352, 0.027, 0.224, 0.2705, 0.0153, 0.1447, 0.2551, 0.0153, 0.1704, 0.4365, 0.0418, 0.2333, 0.3557, 0.027, 0.1901, 0.4114, 0.0418, 0.2749, 0.4114, 0.0418, 0.2749, 0.3557, 0.027, 0.1901, 0.3352, 0.027, 0.224, 0.5117, 0.0597, 0.2737, 0.4365, 0.0418, 0.2333, 0.4827, 0.0597, 0.3225, 0.4827, 0.0597, 0.3225, 0.4365, 0.0418, 0.2333, 0.4114, 0.0418, 0.2749, 0.5815, 0.0803, 0.3108, 0.5117, 0.0597, 0.2737, 0.5483, 0.0803, 0.3662, 0.5483, 0.0803, 0.3662, 0.5117, 0.0597, 0.2737, 0.4827, 0.0597, 0.3225, 0.644, 0.1036, 0.3442, 0.5815, 0.0803, 0.3108, 0.6074, 0.1036, 0.4058, 0.6074, 0.1036, 0.4058, 0.5815, 0.0803, 0.3108, 0.5483, 0.0803, 0.3662, 0.6992, 0.1295, 0.3738, 0.644, 0.1036, 0.3442, 0.6592, 0.1295, 0.4407, 0.6592, 0.1295, 0.4407, 0.644, 0.1036, 0.3442, 0.6074, 0.1036, 0.4058, 0.7466, 0.158, 0.3992, 0.6992, 0.1295, 0.3738, 0.7041, 0.158, 0.4705, 0.7041, 0.158, 0.4705, 0.6992, 0.1295, 0.3738, 0.6592, 0.1295, 0.4407, 0.7856, 0.1895, 0.4202, 0.7466, 0.158, 0.3992, 0.7407, 0.1895, 0.4951, 0.7407, 0.1895, 0.4951, 0.7466, 0.158, 0.3992, 0.7041, 0.158, 0.4705, 0.8164, 0.2247, 0.4363, 0.7856, 0.1895, 0.4202, 0.7695, 0.2247, 0.5142, 0.7695, 0.2247, 0.5142, 0.7856, 0.1895, 0.4202, 0.7407, 0.1895, 0.4951, 0.8364, 0.2646, 0.447, 0.8164, 0.2247, 0.4363, 0.7886, 0.2646, 0.5269, 0.7886, 0.2646, 0.5269, 0.8164, 0.2247, 0.4363, 0.7695, 0.2247, 0.5142, 0.8433, 0.3049, 0.4509, 0.8364, 0.2646, 0.447, 0.7954, 0.3049, 0.5313, 0.7954, 0.3049, 0.5313, 0.8364, 0.2646, 0.447, 0.7886, 0.2646, 0.5269, 0.9565, 0.3464, 0, 0.9521, 0.3464, -0.0938, 0.9565, 0.3049, 0, 0.9565, 0.3049, 0, 0.9521, 0.3464, -0.0938, 0.9517, 0.3049, -0.0938, 0.5313, 0.3464, -0.7954, 0.4509, 0.3464, -0.8438, 0.5313, 0.3049, -0.7954, 0.5313, 0.3049, -0.7954, 0.4509, 0.3464, -0.8438, 0.4509, 0.3049, -0.8433, 0.8438, 0.3955, 0.4509, 0.8438, 0.3464, 0.4509, 0.7954, 0.3955, 0.5313, 0.7954, 0.3955, 0.5313, 0.8438, 0.3464, 0.4509, 0.7954, 0.3464, 0.5313, 0.0864, 0.0017, 0.0578, 0, 0, 0, 0.0803, 0.0017, 0.0659, 0.1718, 0.0068, 0.1148, 0.0864, 0.0017, 0.0578, 0.1597, 0.0068, 0.1311, 0.1597, 0.0068, 0.1311, 0.0864, 0.0017, 0.0578, 0.0803, 0.0017, 0.0659, 0.2551, 0.0153, 0.1704, 0.1718, 0.0068, 0.1148, 0.2372, 0.0153, 0.1946, 0.2372, 0.0153, 0.1946, 0.1718, 0.0068, 0.1148, 0.1597, 0.0068, 0.1311, 0.3352, 0.027, 0.224, 0.2551, 0.0153, 0.1704, 0.3118, 0.027, 0.2559, 0.3118, 0.027, 0.2559, 0.2551, 0.0153, 0.1704, 0.2372, 0.0153, 0.1946, 0.4114, 0.0418, 0.2749, 0.3352, 0.027, 0.224, 0.3826, 0.0418, 0.314, 0.3826, 0.0418, 0.314, 0.3352, 0.027, 0.224, 0.3118, 0.027, 0.2559, 0.4827, 0.0597, 0.3225, 0.4114, 0.0418, 0.2749, 0.4487, 0.0597, 0.3684, 0.4487, 0.0597, 0.3684, 0.4114, 0.0418, 0.2749, 0.3826, 0.0418, 0.314, 0.5483, 0.0803, 0.3662, 0.4827, 0.0597, 0.3225, 0.5098, 0.0803, 0.4182, 0.5098, 0.0803, 0.4182, 0.4827, 0.0597, 0.3225, 0.4487, 0.0597, 0.3684, 0.6074, 0.1036, 0.4058, 0.5483, 0.0803, 0.3662, 0.5645, 0.1036, 0.4634, 0.5645, 0.1036, 0.4634, 0.5483, 0.0803, 0.3662, 0.5098, 0.0803, 0.4182, 0.6592, 0.1295, 0.4407, 0.6074, 0.1036, 0.4058, 0.6128, 0.1295, 0.5029, 0.6128, 0.1295, 0.5029, 0.6074, 0.1036, 0.4058, 0.5645, 0.1036, 0.4634, 0.7041, 0.158, 0.4705, 0.6592, 0.1295, 0.4407, 0.6543, 0.158, 0.5371, 0.6543, 0.158, 0.5371, 0.6592, 0.1295, 0.4407, 0.6128, 0.1295, 0.5029, 0.7407, 0.1895, 0.4951, 0.7041, 0.158, 0.4705, 0.689, 0.1895, 0.5654, 0.689, 0.1895, 0.5654, 0.7041, 0.158, 0.4705, 0.6543, 0.158, 0.5371, 0.7695, 0.2247, 0.5142, 0.7407, 0.1895, 0.4951, 0.7153, 0.2247, 0.5869, 0.7153, 0.2247, 0.5869, 0.7407, 0.1895, 0.4951, 0.689, 0.1895, 0.5654, 0.7886, 0.2646, 0.5269, 0.7695, 0.2247, 0.5142, 0.7329, 0.2646, 0.6016, 0.7329, 0.2646, 0.6016, 0.7695, 0.2247, 0.5142, 0.7153, 0.2247, 0.5869, 0.7954, 0.3049, 0.5313, 0.7886, 0.2646, 0.5269, 0.7393, 0.3049, 0.6064, 0.7393, 0.3049, 0.6064, 0.7886, 0.2646, 0.5269, 0.7329, 0.2646, 0.6016, 0.7393, 0.3049, 0.6064, 0.7393, 0.3464, 0.6069, 0.7954, 0.3049, 0.5313, 0.7954, 0.3049, 0.5313, 0.7393, 0.3464, 0.6069, 0.7954, 0.3464, 0.5313, 0.7954, 0.3955, 0.5313, 0.7954, 0.3464, 0.5313, 0.7393, 0.3955, 0.6069, 0.7393, 0.3955, 0.6069, 0.7954, 0.3464, 0.5313, 0.7393, 0.3464, 0.6069, 0.0803, 0.0017, 0.0659, 0, 0, 0, 0.0735, 0.0017, 0.0735, 0.1597, 0.0068, 0.1311, 0.0803, 0.0017, 0.0659, 0.1461, 0.0068, 0.1461, 0.1461, 0.0068, 0.1461, 0.0803, 0.0017, 0.0659, 0.0735, 0.0017, 0.0735, 0.2372, 0.0153, 0.1946, 0.1597, 0.0068, 0.1311, 0.2169, 0.0153, 0.2169, 0.2169, 0.0153, 0.2169, 0.1597, 0.0068, 0.1311, 0.1461, 0.0068, 0.1461, 0.3118, 0.027, 0.2559, 0.2372, 0.0153, 0.1946, 0.2852, 0.027, 0.2852, 0.2852, 0.027, 0.2852, 0.2372, 0.0153, 0.1946, 0.2169, 0.0153, 0.2169, 0.3826, 0.0418, 0.314, 0.3118, 0.027, 0.2559, 0.3499, 0.0418, 0.3499, 0.3499, 0.0418, 0.3499, 0.3118, 0.027, 0.2559, 0.2852, 0.027, 0.2852, 0.4487, 0.0597, 0.3684, 0.3826, 0.0418, 0.314, 0.4106, 0.0597, 0.4106, 0.4106, 0.0597, 0.4106, 0.3826, 0.0418, 0.314, 0.3499, 0.0418, 0.3499, 0.5098, 0.0803, 0.4182, 0.4487, 0.0597, 0.3684, 0.4663, 0.0803, 0.4663, 0.4663, 0.0803, 0.4663, 0.4487, 0.0597, 0.3684, 0.4106, 0.0597, 0.4106, 0.5645, 0.1036, 0.4634, 0.5098, 0.0803, 0.4182, 0.5166, 0.1036, 0.5166, 0.5166, 0.1036, 0.5166, 0.5098, 0.0803, 0.4182, 0.4663, 0.0803, 0.4663, 0.6128, 0.1295, 0.5029, 0.5645, 0.1036, 0.4634, 0.5605, 0.1295, 0.5605, 0.5605, 0.1295, 0.5605, 0.5645, 0.1036, 0.4634, 0.5166, 0.1036, 0.5166, 0.6543, 0.158, 0.5371, 0.6128, 0.1295, 0.5029, 0.5986, 0.158, 0.5986, 0.5986, 0.158, 0.5986, 0.6128, 0.1295, 0.5029, 0.5605, 0.1295, 0.5605, 0.689, 0.1895, 0.5654, 0.6543, 0.158, 0.5371, 0.6299, 0.1895, 0.6299, 0.6299, 0.1895, 0.6299, 0.6543, 0.158, 0.5371, 0.5986, 0.158, 0.5986, 0.7153, 0.2247, 0.5869, 0.689, 0.1895, 0.5654, 0.6543, 0.2247, 0.6543, 0.6543, 0.2247, 0.6543, 0.689, 0.1895, 0.5654, 0.6299, 0.1895, 0.6299, 0.7329, 0.2646, 0.6016, 0.7153, 0.2247, 0.5869, 0.6704, 0.2646, 0.6704, 0.6704, 0.2646, 0.6704, 0.7153, 0.2247, 0.5869, 0.6543, 0.2247, 0.6543, 0.7393, 0.3049, 0.6064, 0.7329, 0.2646, 0.6016, 0.6763, 0.3049, 0.6763, 0.6763, 0.3049, 0.6763, 0.7329, 0.2646, 0.6016, 0.6704, 0.2646, 0.6704, 0.2776, 0.3464, 0.9155, 0.366, 0.3464, 0.8838, 0.2776, 0.3049, 0.915, 0.2776, 0.3049, 0.915, 0.366, 0.3464, 0.8838, 0.366, 0.3049, 0.8838, 0.7393, 0.3955, 0.6069, 0.7393, 0.3464, 0.6069, 0.6763, 0.3955, 0.6763, 0.6763, 0.3955, 0.6763, 0.7393, 0.3464, 0.6069, 0.6763, 0.3464, 0.6763, 0.0735, 0.0017, 0.0735, 0, 0, 0, 0.0659, 0.0017, 0.0803, 0.1461, 0.0068, 0.1461, 0.0735, 0.0017, 0.0735, 0.1311, 0.0068, 0.1597, 0.1311, 0.0068, 0.1597, 0.0735, 0.0017, 0.0735, 0.0659, 0.0017, 0.0803, 0.2169, 0.0153, 0.2169, 0.1461, 0.0068, 0.1461, 0.1946, 0.0153, 0.2372, 0.1946, 0.0153, 0.2372, 0.1461, 0.0068, 0.1461, 0.1311, 0.0068, 0.1597, 0.2852, 0.027, 0.2852, 0.2169, 0.0153, 0.2169, 0.2559, 0.027, 0.3118, 0.2559, 0.027, 0.3118, 0.2169, 0.0153, 0.2169, 0.1946, 0.0153, 0.2372, 0.3499, 0.0418, 0.3499, 0.2852, 0.027, 0.2852, 0.314, 0.0418, 0.3826, 0.314, 0.0418, 0.3826, 0.2852, 0.027, 0.2852, 0.2559, 0.027, 0.3118, 0.4106, 0.0597, 0.4106, 0.3499, 0.0418, 0.3499, 0.3684, 0.0597, 0.4487, 0.3684, 0.0597, 0.4487, 0.3499, 0.0418, 0.3499, 0.314, 0.0418, 0.3826, 0.4663, 0.0803, 0.4663, 0.4106, 0.0597, 0.4106, 0.4182, 0.0803, 0.5098, 0.4182, 0.0803, 0.5098, 0.4106, 0.0597, 0.4106, 0.3684, 0.0597, 0.4487, 0.5166, 0.1036, 0.5166, 0.4663, 0.0803, 0.4663, 0.4634, 0.1036, 0.5645, 0.4634, 0.1036, 0.5645, 0.4663, 0.0803, 0.4663, 0.4182, 0.0803, 0.5098, 0.5605, 0.1295, 0.5605, 0.5166, 0.1036, 0.5166, 0.5029, 0.1295, 0.6128, 0.5029, 0.1295, 0.6128, 0.5166, 0.1036, 0.5166, 0.4634, 0.1036, 0.5645, 0.5986, 0.158, 0.5986, 0.5605, 0.1295, 0.5605, 0.5371, 0.158, 0.6543, 0.5371, 0.158, 0.6543, 0.5605, 0.1295, 0.5605, 0.5029, 0.1295, 0.6128, 0.6299, 0.1895, 0.6299, 0.5986, 0.158, 0.5986, 0.5654, 0.1895, 0.689, 0.5654, 0.1895, 0.689, 0.5986, 0.158, 0.5986, 0.5371, 0.158, 0.6543, 0.6543, 0.2247, 0.6543, 0.6299, 0.1895, 0.6299, 0.5869, 0.2247, 0.7153, 0.5869, 0.2247, 0.7153, 0.6299, 0.1895, 0.6299, 0.5654, 0.1895, 0.689, 0.6704, 0.2646, 0.6704, 0.6543, 0.2247, 0.6543, 0.6016, 0.2646, 0.7329, 0.6016, 0.2646, 0.7329, 0.6543, 0.2247, 0.6543, 0.5869, 0.2247, 0.7153, 0.6763, 0.3049, 0.6763, 0.6704, 0.2646, 0.6704, 0.6064, 0.3049, 0.7393, 0.6064, 0.3049, 0.7393, 0.6704, 0.2646, 0.6704, 0.6016, 0.2646, 0.7329, 0.9385, 0.3464, -0.1866, 0.938, 0.3049, -0.1865, 0.9521, 0.3464, -0.0938, 0.9521, 0.3464, -0.0938, 0.938, 0.3049, -0.1865, 0.9517, 0.3049, -0.0938, 0.7393, 0.3049, 0.6064, 0.6763, 0.3049, 0.6763, 0.7393, 0.3464, 0.6069, 0.7393, 0.3464, 0.6069, 0.6763, 0.3049, 0.6763, 0.6763, 0.3464, 0.6763, 0.6763, 0.3955, 0.6763, 0.6763, 0.3464, 0.6763, 0.6069, 0.3955, 0.7393, 0.6069, 0.3955, 0.7393, 0.6763, 0.3464, 0.6763, 0.6069, 0.3464, 0.7393, 0.0659, 0.0017, 0.0803, 0, 0, 0, 0.0578, 0.0017, 0.0864, 0.1311, 0.0068, 0.1597, 0.0659, 0.0017, 0.0803, 0.1148, 0.0068, 0.1718, 0.1148, 0.0068, 0.1718, 0.0659, 0.0017, 0.0803, 0.0578, 0.0017, 0.0864, 0.1946, 0.0153, 0.2372, 0.1311, 0.0068, 0.1597, 0.1704, 0.0153, 0.2551, 0.1704, 0.0153, 0.2551, 0.1311, 0.0068, 0.1597, 0.1148, 0.0068, 0.1718, 0.2559, 0.027, 0.3118, 0.1946, 0.0153, 0.2372, 0.224, 0.027, 0.3352, 0.224, 0.027, 0.3352, 0.1946, 0.0153, 0.2372, 0.1704, 0.0153, 0.2551, 0.314, 0.0418, 0.3826, 0.2559, 0.027, 0.3118, 0.2749, 0.0418, 0.4114, 0.2749, 0.0418, 0.4114, 0.2559, 0.027, 0.3118, 0.224, 0.027, 0.3352, 0.3684, 0.0597, 0.4487, 0.314, 0.0418, 0.3826, 0.3225, 0.0597, 0.4827, 0.3225, 0.0597, 0.4827, 0.314, 0.0418, 0.3826, 0.2749, 0.0418, 0.4114, 0.4182, 0.0803, 0.5098, 0.3684, 0.0597, 0.4487, 0.3662, 0.0803, 0.5483, 0.3662, 0.0803, 0.5483, 0.3684, 0.0597, 0.4487, 0.3225, 0.0597, 0.4827, 0.4634, 0.1036, 0.5645, 0.4182, 0.0803, 0.5098, 0.4058, 0.1036, 0.6074, 0.4058, 0.1036, 0.6074, 0.4182, 0.0803, 0.5098, 0.3662, 0.0803, 0.5483, 0.5029, 0.1295, 0.6128, 0.4634, 0.1036, 0.5645, 0.4407, 0.1295, 0.6592, 0.4407, 0.1295, 0.6592, 0.4634, 0.1036, 0.5645, 0.4058, 0.1036, 0.6074, 0.5371, 0.158, 0.6543, 0.5029, 0.1295, 0.6128, 0.4705, 0.158, 0.7041, 0.4705, 0.158, 0.7041, 0.5029, 0.1295, 0.6128, 0.4407, 0.1295, 0.6592, 0.5654, 0.1895, 0.689, 0.5371, 0.158, 0.6543, 0.4951, 0.1895, 0.7407, 0.4951, 0.1895, 0.7407, 0.5371, 0.158, 0.6543, 0.4705, 0.158, 0.7041, 0.5869, 0.2247, 0.7153, 0.5654, 0.1895, 0.689, 0.5142, 0.2247, 0.7695, 0.5142, 0.2247, 0.7695, 0.5654, 0.1895, 0.689, 0.4951, 0.1895, 0.7407, 0.6016, 0.2646, 0.7329, 0.5869, 0.2247, 0.7153, 0.5269, 0.2646, 0.7886, 0.5269, 0.2646, 0.7886, 0.5869, 0.2247, 0.7153, 0.5142, 0.2247, 0.7695, 0.6064, 0.3049, 0.7393, 0.6016, 0.2646, 0.7329, 0.5313, 0.3049, 0.7954, 0.5313, 0.3049, 0.7954, 0.6016, 0.2646, 0.7329, 0.5269, 0.2646, 0.7886, 0.5313, 0.3464, 0.7954, 0.5313, 0.3049, 0.7954, 0.4509, 0.3464, 0.8438, 0.4509, 0.3464, 0.8438, 0.5313, 0.3049, 0.7954, 0.4509, 0.3049, 0.8433, 0.6069, 0.3955, 0.7393, 0.5381, 0.3877, 0.7905, 0.6069, 0.4724, 0.7393, 0.6069, 0.4724, 0.7393, 0.5381, 0.3877, 0.7905, 0.5391, 0.4724, 0.7896, 0.0578, 0.0017, 0.0864, 0, 0, 0, 0.049, 0.0017, 0.0917, 0.1148, 0.0068, 0.1718, 0.0578, 0.0017, 0.0864, 0.0974, 0.0068, 0.1823, 0.0974, 0.0068, 0.1823, 0.0578, 0.0017, 0.0864, 0.049, 0.0017, 0.0917, 0.1704, 0.0153, 0.2551, 0.1148, 0.0068, 0.1718, 0.1447, 0.0153, 0.2705, 0.1447, 0.0153, 0.2705, 0.1148, 0.0068, 0.1718, 0.0974, 0.0068, 0.1823, 0.224, 0.027, 0.3352, 0.1704, 0.0153, 0.2551, 0.1901, 0.027, 0.3557, 0.1901, 0.027, 0.3557, 0.1704, 0.0153, 0.2551, 0.1447, 0.0153, 0.2705, 0.2749, 0.0418, 0.4114, 0.224, 0.027, 0.3352, 0.2333, 0.0418, 0.4365, 0.2333, 0.0418, 0.4365, 0.224, 0.027, 0.3352, 0.1901, 0.027, 0.3557, 0.3225, 0.0597, 0.4827, 0.2749, 0.0418, 0.4114, 0.2737, 0.0597, 0.5117, 0.2737, 0.0597, 0.5117, 0.2749, 0.0418, 0.4114, 0.2333, 0.0418, 0.4365, 0.3662, 0.0803, 0.5483, 0.3225, 0.0597, 0.4827, 0.3108, 0.0803, 0.5815, 0.3108, 0.0803, 0.5815, 0.3225, 0.0597, 0.4827, 0.2737, 0.0597, 0.5117, 0.4058, 0.1036, 0.6074, 0.3662, 0.0803, 0.5483, 0.3442, 0.1036, 0.644, 0.3442, 0.1036, 0.644, 0.3662, 0.0803, 0.5483, 0.3108, 0.0803, 0.5815, 0.4407, 0.1295, 0.6592, 0.4058, 0.1036, 0.6074, 0.3738, 0.1295, 0.6992, 0.3738, 0.1295, 0.6992, 0.4058, 0.1036, 0.6074, 0.3442, 0.1036, 0.644, 0.4705, 0.158, 0.7041, 0.4407, 0.1295, 0.6592, 0.3992, 0.158, 0.7466, 0.3992, 0.158, 0.7466, 0.4407, 0.1295, 0.6592, 0.3738, 0.1295, 0.6992, 0.4951, 0.1895, 0.7407, 0.4705, 0.158, 0.7041, 0.4202, 0.1895, 0.7856, 0.4202, 0.1895, 0.7856, 0.4705, 0.158, 0.7041, 0.3992, 0.158, 0.7466, 0.5142, 0.2247, 0.7695, 0.4951, 0.1895, 0.7407, 0.4363, 0.2247, 0.8164, 0.4363, 0.2247, 0.8164, 0.4951, 0.1895, 0.7407, 0.4202, 0.1895, 0.7856, 0.5269, 0.2646, 0.7886, 0.5142, 0.2247, 0.7695, 0.447, 0.2646, 0.8364, 0.447, 0.2646, 0.8364, 0.5142, 0.2247, 0.7695, 0.4363, 0.2247, 0.8164, 0.5313, 0.3049, 0.7954, 0.5269, 0.2646, 0.7886, 0.4509, 0.3049, 0.8433, 0.4509, 0.3049, 0.8433, 0.5269, 0.2646, 0.7886, 0.447, 0.2646, 0.8364, 0.2776, 0.3464, -0.9155, 0.2776, 0.3049, -0.915, 0.366, 0.3464, -0.8838, 0.366, 0.3464, -0.8838, 0.2776, 0.3049, -0.915, 0.366, 0.3049, -0.8838, 0.1866, 0.3464, -0.9385, 0.1865, 0.3049, -0.938, 0.2776, 0.3464, -0.9155, 0.2776, 0.3464, -0.9155, 0.1865, 0.3049, -0.938, 0.2776, 0.3049, -0.915, 0.5283, 0.4724, 0.7881, 0.5273, 0.4036, 0.7886, 0.4692, 0.4724, 0.7085, 0.4692, 0.4724, 0.7085, 0.5273, 0.4036, 0.7886, 0.4709, 0.4036, 0.707, 0.049, 0.0017, 0.0917, 0, 0, 0, 0.0398, 0.0017, 0.096, 0.0974, 0.0068, 0.1823, 0.049, 0.0017, 0.0917, 0.079, 0.0068, 0.1909, 0.079, 0.0068, 0.1909, 0.049, 0.0017, 0.0917, 0.0398, 0.0017, 0.096, 0.1447, 0.0153, 0.2705, 0.0974, 0.0068, 0.1823, 0.1174, 0.0153, 0.2834, 0.1174, 0.0153, 0.2834, 0.0974, 0.0068, 0.1823, 0.079, 0.0068, 0.1909, 0.1901, 0.027, 0.3557, 0.1447, 0.0153, 0.2705, 0.1543, 0.027, 0.3726, 0.1543, 0.027, 0.3726, 0.1447, 0.0153, 0.2705, 0.1174, 0.0153, 0.2834, 0.2333, 0.0418, 0.4365, 0.1901, 0.027, 0.3557, 0.1893, 0.0418, 0.4573, 0.1893, 0.0418, 0.4573, 0.1901, 0.027, 0.3557, 0.1543, 0.027, 0.3726, 0.2737, 0.0597, 0.5117, 0.2333, 0.0418, 0.4365, 0.2222, 0.0597, 0.5361, 0.2222, 0.0597, 0.5361, 0.2333, 0.0418, 0.4365, 0.1893, 0.0418, 0.4573, 0.3108, 0.0803, 0.5815, 0.2737, 0.0597, 0.5117, 0.2522, 0.0803, 0.6089, 0.2522, 0.0803, 0.6089, 0.2737, 0.0597, 0.5117, 0.2222, 0.0597, 0.5361, 0.3442, 0.1036, 0.644, 0.3108, 0.0803, 0.5815, 0.2795, 0.1036, 0.6748, 0.2795, 0.1036, 0.6748, 0.3108, 0.0803, 0.5815, 0.2522, 0.0803, 0.6089, 0.3738, 0.1295, 0.6992, 0.3442, 0.1036, 0.644, 0.3035, 0.1295, 0.7329, 0.3035, 0.1295, 0.7329, 0.3442, 0.1036, 0.644, 0.2795, 0.1036, 0.6748, 0.3992, 0.158, 0.7466, 0.3738, 0.1295, 0.6992, 0.324, 0.158, 0.7822, 0.324, 0.158, 0.7822, 0.3738, 0.1295, 0.6992, 0.3035, 0.1295, 0.7329, 0.4202, 0.1895, 0.7856, 0.3992, 0.158, 0.7466, 0.3411, 0.1895, 0.8232, 0.3411, 0.1895, 0.8232, 0.3992, 0.158, 0.7466, 0.324, 0.158, 0.7822, 0.4363, 0.2247, 0.8164, 0.4202, 0.1895, 0.7856, 0.3542, 0.2247, 0.855, 0.3542, 0.2247, 0.855, 0.4202, 0.1895, 0.7856, 0.3411, 0.1895, 0.8232, 0.447, 0.2646, 0.8364, 0.4363, 0.2247, 0.8164, 0.3628, 0.2646, 0.876, 0.3628, 0.2646, 0.876, 0.4363, 0.2247, 0.8164, 0.3542, 0.2247, 0.855, 0.4509, 0.3049, 0.8433, 0.447, 0.2646, 0.8364, 0.366, 0.3049, 0.8838, 0.366, 0.3049, 0.8838, 0.447, 0.2646, 0.8364, 0.3628, 0.2646, 0.876, 0.9565, 0.3049, 0, 0.9517, 0.3049, 0.0938, 0.9565, 0.3464, 0, 0.9565, 0.3464, 0, 0.9517, 0.3049, 0.0938, 0.9521, 0.3464, 0.0938, 0.4473, 0.3955, 0.8369, 0.363, 0.3955, 0.8765, 0.4004, 0.3955, 0.749, 0.4004, 0.3955, 0.749, 0.363, 0.3955, 0.8765, 0.3252, 0.3955, 0.7847, 0.0398, 0.0017, 0.096, 0, 0, 0, 0.0302, 0.0017, 0.0995, 0.079, 0.0068, 0.1909, 0.0398, 0.0017, 0.096, 0.06, 0.0068, 0.1978, 0.06, 0.0068, 0.1978, 0.0398, 0.0017, 0.096, 0.0302, 0.0017, 0.0995, 0.1174, 0.0153, 0.2834, 0.079, 0.0068, 0.1909, 0.0891, 0.0153, 0.2935, 0.0891, 0.0153, 0.2935, 0.079, 0.0068, 0.1909, 0.06, 0.0068, 0.1978, 0.1543, 0.027, 0.3726, 0.1174, 0.0153, 0.2834, 0.1171, 0.027, 0.386, 0.1171, 0.027, 0.386, 0.1174, 0.0153, 0.2834, 0.0891, 0.0153, 0.2935, 0.1893, 0.0418, 0.4573, 0.1543, 0.027, 0.3726, 0.1437, 0.0418, 0.4736, 0.1437, 0.0418, 0.4736, 0.1543, 0.027, 0.3726, 0.1171, 0.027, 0.386, 0.2222, 0.0597, 0.5361, 0.1893, 0.0418, 0.4573, 0.1686, 0.0597, 0.5557, 0.1686, 0.0597, 0.5557, 0.1893, 0.0418, 0.4573, 0.1437, 0.0418, 0.4736, 0.2522, 0.0803, 0.6089, 0.2222, 0.0597, 0.5361, 0.1914, 0.0803, 0.6309, 0.1914, 0.0803, 0.6309, 0.2222, 0.0597, 0.5361, 0.1686, 0.0597, 0.5557, 0.2795, 0.1036, 0.6748, 0.2522, 0.0803, 0.6089, 0.212, 0.1036, 0.6987, 0.212, 0.1036, 0.6987, 0.2522, 0.0803, 0.6089, 0.1914, 0.0803, 0.6309, 0.3035, 0.1295, 0.7329, 0.2795, 0.1036, 0.6748, 0.2302, 0.1295, 0.7588, 0.2302, 0.1295, 0.7588, 0.2795, 0.1036, 0.6748, 0.212, 0.1036, 0.6987, 0.324, 0.158, 0.7822, 0.3035, 0.1295, 0.7329, 0.2458, 0.158, 0.8101, 0.2458, 0.158, 0.8101, 0.3035, 0.1295, 0.7329, 0.2302, 0.1295, 0.7588, 0.3411, 0.1895, 0.8232, 0.324, 0.158, 0.7822, 0.2585, 0.1895, 0.8525, 0.2585, 0.1895, 0.8525, 0.324, 0.158, 0.7822, 0.2458, 0.158, 0.8101, 0.3542, 0.2247, 0.855, 0.3411, 0.1895, 0.8232, 0.2686, 0.2247, 0.8857, 0.2686, 0.2247, 0.8857, 0.3411, 0.1895, 0.8232, 0.2585, 0.1895, 0.8525, 0.3628, 0.2646, 0.876, 0.3542, 0.2247, 0.855, 0.2751, 0.2646, 0.9077, 0.2751, 0.2646, 0.9077, 0.3542, 0.2247, 0.855, 0.2686, 0.2247, 0.8857, 0.366, 0.3049, 0.8838, 0.3628, 0.2646, 0.876, 0.2776, 0.3049, 0.915, 0.2776, 0.3049, 0.915, 0.3628, 0.2646, 0.876, 0.2751, 0.2646, 0.9077, 0.363, 0.3955, 0.8765, 0.2754, 0.3955, 0.9077, 0.3252, 0.3955, 0.7847, 0.3252, 0.3955, 0.7847, 0.2754, 0.3955, 0.9077, 0.2466, 0.3955, 0.813, 0.0302, 0.0017, 0.0995, 0, 0, 0, 0.0203, 0.0017, 0.1019, 0.06, 0.0068, 0.1978, 0.0302, 0.0017, 0.0995, 0.0403, 0.0068, 0.2026, 0.0403, 0.0068, 0.2026, 0.0302, 0.0017, 0.0995, 0.0203, 0.0017, 0.1019, 0.0891, 0.0153, 0.2935, 0.06, 0.0068, 0.1978, 0.0598, 0.0153, 0.3008, 0.0598, 0.0153, 0.3008, 0.06, 0.0068, 0.1978, 0.0403, 0.0068, 0.2026, 0.1171, 0.027, 0.386, 0.0891, 0.0153, 0.2935, 0.0787, 0.027, 0.3955, 0.0787, 0.027, 0.3955, 0.0891, 0.0153, 0.2935, 0.0598, 0.0153, 0.3008, 0.1437, 0.0418, 0.4736, 0.1171, 0.027, 0.386, 0.0966, 0.0418, 0.4854, 0.0966, 0.0418, 0.4854, 0.1171, 0.027, 0.386, 0.0787, 0.027, 0.3955, 0.1686, 0.0597, 0.5557, 0.1437, 0.0418, 0.4736, 0.1133, 0.0597, 0.5693, 0.1133, 0.0597, 0.5693, 0.1437, 0.0418, 0.4736, 0.0966, 0.0418, 0.4854, 0.1914, 0.0803, 0.6309, 0.1686, 0.0597, 0.5557, 0.1287, 0.0803, 0.6465, 0.1287, 0.0803, 0.6465, 0.1686, 0.0597, 0.5557, 0.1133, 0.0597, 0.5693, 0.212, 0.1036, 0.6987, 0.1914, 0.0803, 0.6309, 0.1425, 0.1036, 0.7163, 0.1425, 0.1036, 0.7163, 0.1914, 0.0803, 0.6309, 0.1287, 0.0803, 0.6465, 0.2302, 0.1295, 0.7588, 0.212, 0.1036, 0.6987, 0.1547, 0.1295, 0.7778, 0.1547, 0.1295, 0.7778, 0.212, 0.1036, 0.6987, 0.1425, 0.1036, 0.7163, 0.2458, 0.158, 0.8101, 0.2302, 0.1295, 0.7588, 0.1652, 0.158, 0.8306, 0.1652, 0.158, 0.8306, 0.2302, 0.1295, 0.7588, 0.1547, 0.1295, 0.7778, 0.2585, 0.1895, 0.8525, 0.2458, 0.158, 0.8101, 0.1738, 0.1895, 0.874, 0.1738, 0.1895, 0.874, 0.2458, 0.158, 0.8101, 0.1652, 0.158, 0.8306, 0.2686, 0.2247, 0.8857, 0.2585, 0.1895, 0.8525, 0.1805, 0.2247, 0.9077, 0.1805, 0.2247, 0.9077, 0.2585, 0.1895, 0.8525, 0.1738, 0.1895, 0.874, 0.2751, 0.2646, 0.9077, 0.2686, 0.2247, 0.8857, 0.1851, 0.2646, 0.9302, 0.1851, 0.2646, 0.9302, 0.2686, 0.2247, 0.8857, 0.1805, 0.2247, 0.9077, 0.2776, 0.3049, 0.915, 0.2751, 0.2646, 0.9077, 0.1865, 0.3049, 0.938, 0.1865, 0.3049, 0.938, 0.2751, 0.2646, 0.9077, 0.1851, 0.2646, 0.9302, 0.6069, 0.3464, -0.7393, 0.5313, 0.3464, -0.7954, 0.6064, 0.3049, -0.7393, 0.6064, 0.3049, -0.7393, 0.5313, 0.3464, -0.7954, 0.5313, 0.3049, -0.7954, 0.9385, 0.3464, -0.1866, 0.9155, 0.3464, -0.2776, 0.938, 0.3049, -0.1865, 0.938, 0.3049, -0.1865, 0.9155, 0.3464, -0.2776, 0.915, 0.3049, -0.2776, 0.2754, 0.3955, 0.9077, 0.1923, 0.3955, 0.9287, 0.2466, 0.3955, 0.813, 0.2466, 0.3955, 0.813, 0.1923, 0.3955, 0.9287, 0.1744, 0.3955, 0.8311, 0.0203, 0.0017, 0.1019, 0, 0, 0, 0.0102, 0.0017, 0.1035, 0.0403, 0.0068, 0.2026, 0.0203, 0.0017, 0.1019, 0.0202, 0.0068, 0.2057, 0.0202, 0.0068, 0.2057, 0.0203, 0.0017, 0.1019, 0.0102, 0.0017, 0.1035, 0.0598, 0.0153, 0.3008, 0.0403, 0.0068, 0.2026, 0.0301, 0.0153, 0.3052, 0.0301, 0.0153, 0.3052, 0.0403, 0.0068, 0.2026, 0.0202, 0.0068, 0.2057, 0.0787, 0.027, 0.3955, 0.0598, 0.0153, 0.3008, 0.0395, 0.027, 0.4014, 0.0395, 0.027, 0.4014, 0.0598, 0.0153, 0.3008, 0.0301, 0.0153, 0.3052, 0.0966, 0.0418, 0.4854, 0.0787, 0.027, 0.3955, 0.0485, 0.0418, 0.4924, 0.0485, 0.0418, 0.4924, 0.0787, 0.027, 0.3955, 0.0395, 0.027, 0.4014, 0.1133, 0.0597, 0.5693, 0.0966, 0.0418, 0.4854, 0.0569, 0.0597, 0.5776, 0.0569, 0.0597, 0.5776, 0.0966, 0.0418, 0.4854, 0.0485, 0.0418, 0.4924, 0.1287, 0.0803, 0.6465, 0.1133, 0.0597, 0.5693, 0.0646, 0.0803, 0.6563, 0.0646, 0.0803, 0.6563, 0.1133, 0.0597, 0.5693, 0.0569, 0.0597, 0.5776, 0.1425, 0.1036, 0.7163, 0.1287, 0.0803, 0.6465, 0.0716, 0.1036, 0.7271, 0.0716, 0.1036, 0.7271, 0.1287, 0.0803, 0.6465, 0.0646, 0.0803, 0.6563, 0.1547, 0.1295, 0.7778, 0.1425, 0.1036, 0.7163, 0.0777, 0.1295, 0.7891, 0.0777, 0.1295, 0.7891, 0.1425, 0.1036, 0.7163, 0.0716, 0.1036, 0.7271, 0.1652, 0.158, 0.8306, 0.1547, 0.1295, 0.7778, 0.083, 0.158, 0.8428, 0.083, 0.158, 0.8428, 0.1547, 0.1295, 0.7778, 0.0777, 0.1295, 0.7891, 0.1738, 0.1895, 0.874, 0.1652, 0.158, 0.8306, 0.0873, 0.1895, 0.8867, 0.0873, 0.1895, 0.8867, 0.1652, 0.158, 0.8306, 0.083, 0.158, 0.8428, 0.1805, 0.2247, 0.9077, 0.1738, 0.1895, 0.874, 0.0907, 0.2247, 0.9209, 0.0907, 0.2247, 0.9209, 0.1738, 0.1895, 0.874, 0.0873, 0.1895, 0.8867, 0.1851, 0.2646, 0.9302, 0.1805, 0.2247, 0.9077, 0.093, 0.2646, 0.9438, 0.093, 0.2646, 0.9438, 0.1805, 0.2247, 0.9077, 0.0907, 0.2247, 0.9209, 0.1865, 0.3049, 0.938, 0.1851, 0.2646, 0.9302, 0.0938, 0.3049, 0.9517, 0.0938, 0.3049, 0.9517, 0.1851, 0.2646, 0.9302, 0.093, 0.2646, 0.9438, 0.1783, 0.3877, 0.9395, 0.0938, 0.3955, 0.9521, 0.1769, 0.4724, 0.9399, 0.1769, 0.4724, 0.9399, 0.0938, 0.3955, 0.9521, 0.0938, 0.4724, 0.9521, 0.0102, 0.0017, 0.1035, 0, 0, 0, 0, 0.0017, 0.1039, 0.0202, 0.0068, 0.2057, 0.0102, 0.0017, 0.1035, 0, 0.0068, 0.2067, 0, 0.0068, 0.2067, 0.0102, 0.0017, 0.1035, 0, 0.0017, 0.1039, 0.0301, 0.0153, 0.3052, 0.0202, 0.0068, 0.2057, 0, 0.0153, 0.3069, 0, 0.0153, 0.3069, 0.0202, 0.0068, 0.2057, 0, 0.0068, 0.2067, 0.0395, 0.027, 0.4014, 0.0301, 0.0153, 0.3052, 0, 0.027, 0.4033, 0, 0.027, 0.4033, 0.0301, 0.0153, 0.3052, 0, 0.0153, 0.3069, 0.0485, 0.0418, 0.4924, 0.0395, 0.027, 0.4014, 0, 0.0418, 0.4949, 0, 0.0418, 0.4949, 0.0395, 0.027, 0.4014, 0, 0.027, 0.4033, 0.0569, 0.0597, 0.5776, 0.0485, 0.0418, 0.4924, 0, 0.0597, 0.5806, 0, 0.0597, 0.5806, 0.0485, 0.0418, 0.4924, 0, 0.0418, 0.4949, 0.0646, 0.0803, 0.6563, 0.0569, 0.0597, 0.5776, 0, 0.0803, 0.6592, 0, 0.0803, 0.6592, 0.0569, 0.0597, 0.5776, 0, 0.0597, 0.5806, 0.0716, 0.1036, 0.7271, 0.0646, 0.0803, 0.6563, 0, 0.1036, 0.7305, 0, 0.1036, 0.7305, 0.0646, 0.0803, 0.6563, 0, 0.0803, 0.6592, 0.0777, 0.1295, 0.7891, 0.0716, 0.1036, 0.7271, 0, 0.1295, 0.793, 0, 0.1295, 0.793, 0.0716, 0.1036, 0.7271, 0, 0.1036, 0.7305, 0.083, 0.158, 0.8428, 0.0777, 0.1295, 0.7891, 0, 0.158, 0.8467, 0, 0.158, 0.8467, 0.0777, 0.1295, 0.7891, 0, 0.1295, 0.793, 0.0873, 0.1895, 0.8867, 0.083, 0.158, 0.8428, 0, 0.1895, 0.8911, 0, 0.1895, 0.8911, 0.083, 0.158, 0.8428, 0, 0.158, 0.8467, 0.0907, 0.2247, 0.9209, 0.0873, 0.1895, 0.8867, 0, 0.2247, 0.9253, 0, 0.2247, 0.9253, 0.0873, 0.1895, 0.8867, 0, 0.1895, 0.8911, 0.093, 0.2646, 0.9438, 0.0907, 0.2247, 0.9209, 0, 0.2646, 0.9482, 0, 0.2646, 0.9482, 0.0907, 0.2247, 0.9209, 0, 0.2247, 0.9253, 0.0938, 0.3049, 0.9517, 0.093, 0.2646, 0.9438, 0, 0.3049, 0.9565, 0, 0.3049, 0.9565, 0.093, 0.2646, 0.9438, 0, 0.2646, 0.9482, 0.0938, 0.3955, 0.9521, 0.0938, 0.3464, 0.9521, 0, 0.3955, 0.9565, 0, 0.3955, 0.9565, 0.0938, 0.3464, 0.9521, 0, 0.3464, 0.9565, 0, 0.0017, -0.1039, 0, 0, 0, 0.0102, 0.0017, -0.1035, 0, 0.0068, -0.2067, 0, 0.0017, -0.1039, 0.0202, 0.0068, -0.2057, 0.0202, 0.0068, -0.2057, 0, 0.0017, -0.1039, 0.0102, 0.0017, -0.1035, 0, 0.0153, -0.3069, 0, 0.0068, -0.2067, 0.0301, 0.0153, -0.3052, 0.0301, 0.0153, -0.3052, 0, 0.0068, -0.2067, 0.0202, 0.0068, -0.2057, 0, 0.027, -0.4033, 0, 0.0153, -0.3069, 0.0395, 0.027, -0.4014, 0.0395, 0.027, -0.4014, 0, 0.0153, -0.3069, 0.0301, 0.0153, -0.3052, 0, 0.0418, -0.4949, 0, 0.027, -0.4033, 0.0485, 0.0418, -0.4924, 0.0485, 0.0418, -0.4924, 0, 0.027, -0.4033, 0.0395, 0.027, -0.4014, 0, 0.0597, -0.5806, 0, 0.0418, -0.4949, 0.0569, 0.0597, -0.5776, 0.0569, 0.0597, -0.5776, 0, 0.0418, -0.4949, 0.0485, 0.0418, -0.4924, 0, 0.0803, -0.6592, 0, 0.0597, -0.5806, 0.0646, 0.0803, -0.6563, 0.0646, 0.0803, -0.6563, 0, 0.0597, -0.5806, 0.0569, 0.0597, -0.5776, 0, 0.1036, -0.7305, 0, 0.0803, -0.6592, 0.0716, 0.1036, -0.7271, 0.0716, 0.1036, -0.7271, 0, 0.0803, -0.6592, 0.0646, 0.0803, -0.6563, 0, 0.1295, -0.793, 0, 0.1036, -0.7305, 0.0777, 0.1295, -0.7891, 0.0777, 0.1295, -0.7891, 0, 0.1036, -0.7305, 0.0716, 0.1036, -0.7271, 0, 0.158, -0.8467, 0, 0.1295, -0.793, 0.083, 0.158, -0.8428, 0.083, 0.158, -0.8428, 0, 0.1295, -0.793, 0.0777, 0.1295, -0.7891, 0, 0.1895, -0.8911, 0, 0.158, -0.8467, 0.0873, 0.1895, -0.8867, 0.0873, 0.1895, -0.8867, 0, 0.158, -0.8467, 0.083, 0.158, -0.8428, 0, 0.2247, -0.9253, 0, 0.1895, -0.8911, 0.0907, 0.2247, -0.9209, 0.0907, 0.2247, -0.9209, 0, 0.1895, -0.8911, 0.0873, 0.1895, -0.8867, 0, 0.2646, -0.9482, 0, 0.2247, -0.9253, 0.093, 0.2646, -0.9438, 0.093, 0.2646, -0.9438, 0, 0.2247, -0.9253, 0.0907, 0.2247, -0.9209, 0, 0.3049, -0.9565, 0, 0.2646, -0.9482, 0.0938, 0.3049, -0.9517, 0.0938, 0.3049, -0.9517, 0, 0.2646, -0.9482, 0.093, 0.2646, -0.9438, 0.4509, 0.3049, -0.8433, 0.4509, 0.3464, -0.8438, 0.366, 0.3049, -0.8838, 0.366, 0.3049, -0.8838, 0.4509, 0.3464, -0.8438, 0.366, 0.3464, -0.8838, 0, 0.3955, -0.9565, 0, 0.3464, -0.9565, 0.0938, 0.3955, -0.9521, 0.0938, 0.3955, -0.9521, 0, 0.3464, -0.9565, 0.0938, 0.3464, -0.9521, 0.0102, 0.0017, -0.1035, 0, 0, 0, 0.0203, 0.0017, -0.1019, 0.0202, 0.0068, -0.2057, 0.0102, 0.0017, -0.1035, 0.0403, 0.0068, -0.2026, 0.0403, 0.0068, -0.2026, 0.0102, 0.0017, -0.1035, 0.0203, 0.0017, -0.1019, 0.0301, 0.0153, -0.3052, 0.0202, 0.0068, -0.2057, 0.0598, 0.0153, -0.3008, 0.0598, 0.0153, -0.3008, 0.0202, 0.0068, -0.2057, 0.0403, 0.0068, -0.2026, 0.0395, 0.027, -0.4014, 0.0301, 0.0153, -0.3052, 0.0787, 0.027, -0.3955, 0.0787, 0.027, -0.3955, 0.0301, 0.0153, -0.3052, 0.0598, 0.0153, -0.3008, 0.0485, 0.0418, -0.4924, 0.0395, 0.027, -0.4014, 0.0966, 0.0418, -0.4854, 0.0966, 0.0418, -0.4854, 0.0395, 0.027, -0.4014, 0.0787, 0.027, -0.3955, 0.0569, 0.0597, -0.5776, 0.0485, 0.0418, -0.4924, 0.1133, 0.0597, -0.5693, 0.1133, 0.0597, -0.5693, 0.0485, 0.0418, -0.4924, 0.0966, 0.0418, -0.4854, 0.0646, 0.0803, -0.6563, 0.0569, 0.0597, -0.5776, 0.1287, 0.0803, -0.6465, 0.1287, 0.0803, -0.6465, 0.0569, 0.0597, -0.5776, 0.1133, 0.0597, -0.5693, 0.0716, 0.1036, -0.7271, 0.0646, 0.0803, -0.6563, 0.1425, 0.1036, -0.7163, 0.1425, 0.1036, -0.7163, 0.0646, 0.0803, -0.6563, 0.1287, 0.0803, -0.6465, 0.0777, 0.1295, -0.7891, 0.0716, 0.1036, -0.7271, 0.1547, 0.1295, -0.7778, 0.1547, 0.1295, -0.7778, 0.0716, 0.1036, -0.7271, 0.1425, 0.1036, -0.7163, 0.083, 0.158, -0.8428, 0.0777, 0.1295, -0.7891, 0.1652, 0.158, -0.8306, 0.1652, 0.158, -0.8306, 0.0777, 0.1295, -0.7891, 0.1547, 0.1295, -0.7778, 0.0873, 0.1895, -0.8867, 0.083, 0.158, -0.8428, 0.1738, 0.1895, -0.874, 0.1738, 0.1895, -0.874, 0.083, 0.158, -0.8428, 0.1652, 0.158, -0.8306, 0.0907, 0.2247, -0.9209, 0.0873, 0.1895, -0.8867, 0.1805, 0.2247, -0.9077, 0.1805, 0.2247, -0.9077, 0.0873, 0.1895, -0.8867, 0.1738, 0.1895, -0.874, 0.093, 0.2646, -0.9438, 0.0907, 0.2247, -0.9209, 0.1851, 0.2646, -0.9302, 0.1851, 0.2646, -0.9302, 0.0907, 0.2247, -0.9209, 0.1805, 0.2247, -0.9077, 0.0938, 0.3049, -0.9517, 0.093, 0.2646, -0.9438, 0.1865, 0.3049, -0.938, 0.1865, 0.3049, -0.938, 0.093, 0.2646, -0.9438, 0.1851, 0.2646, -0.9302, 0.5313, 0.3464, 0.7954, 0.6069, 0.3464, 0.7393, 0.5313, 0.3049, 0.7954, 0.5313, 0.3049, 0.7954, 0.6069, 0.3464, 0.7393, 0.6064, 0.3049, 0.7393, 0.0938, 0.3955, -0.9521, 0.0938, 0.3464, -0.9521, 0.1866, 0.3955, -0.9385, 0.1866, 0.3955, -0.9385, 0.0938, 0.3464, -0.9521, 0.1866, 0.3464, -0.9385, 0.0203, 0.0017, -0.1019, 0, 0, 0, 0.0302, 0.0017, -0.0995, 0.0403, 0.0068, -0.2026, 0.0203, 0.0017, -0.1019, 0.06, 0.0068, -0.1978, 0.06, 0.0068, -0.1978, 0.0203, 0.0017, -0.1019, 0.0302, 0.0017, -0.0995, 0.0598, 0.0153, -0.3008, 0.0403, 0.0068, -0.2026, 0.0891, 0.0153, -0.2935, 0.0891, 0.0153, -0.2935, 0.0403, 0.0068, -0.2026, 0.06, 0.0068, -0.1978, 0.0787, 0.027, -0.3955, 0.0598, 0.0153, -0.3008, 0.1171, 0.027, -0.386, 0.1171, 0.027, -0.386, 0.0598, 0.0153, -0.3008, 0.0891, 0.0153, -0.2935, 0.0966, 0.0418, -0.4854, 0.0787, 0.027, -0.3955, 0.1437, 0.0418, -0.4736, 0.1437, 0.0418, -0.4736, 0.0787, 0.027, -0.3955, 0.1171, 0.027, -0.386, 0.1133, 0.0597, -0.5693, 0.0966, 0.0418, -0.4854, 0.1686, 0.0597, -0.5557, 0.1686, 0.0597, -0.5557, 0.0966, 0.0418, -0.4854, 0.1437, 0.0418, -0.4736, 0.1287, 0.0803, -0.6465, 0.1133, 0.0597, -0.5693, 0.1914, 0.0803, -0.6309, 0.1914, 0.0803, -0.6309, 0.1133, 0.0597, -0.5693, 0.1686, 0.0597, -0.5557, 0.1425, 0.1036, -0.7163, 0.1287, 0.0803, -0.6465, 0.212, 0.1036, -0.6987, 0.212, 0.1036, -0.6987, 0.1287, 0.0803, -0.6465, 0.1914, 0.0803, -0.6309, 0.1547, 0.1295, -0.7778, 0.1425, 0.1036, -0.7163, 0.2302, 0.1295, -0.7588, 0.2302, 0.1295, -0.7588, 0.1425, 0.1036, -0.7163, 0.212, 0.1036, -0.6987, 0.1652, 0.158, -0.8306, 0.1547, 0.1295, -0.7778, 0.2458, 0.158, -0.8101, 0.2458, 0.158, -0.8101, 0.1547, 0.1295, -0.7778, 0.2302, 0.1295, -0.7588, 0.1738, 0.1895, -0.874, 0.1652, 0.158, -0.8306, 0.2585, 0.1895, -0.8525, 0.2585, 0.1895, -0.8525, 0.1652, 0.158, -0.8306, 0.2458, 0.158, -0.8101, 0.1805, 0.2247, -0.9077, 0.1738, 0.1895, -0.874, 0.2686, 0.2247, -0.8857, 0.2686, 0.2247, -0.8857, 0.1738, 0.1895, -0.874, 0.2585, 0.1895, -0.8525, 0.1851, 0.2646, -0.9302, 0.1805, 0.2247, -0.9077, 0.2751, 0.2646, -0.9077, 0.2751, 0.2646, -0.9077, 0.1805, 0.2247, -0.9077, 0.2686, 0.2247, -0.8857, 0.1865, 0.3049, -0.938, 0.1851, 0.2646, -0.9302, 0.2776, 0.3049, -0.915, 0.2776, 0.3049, -0.915, 0.1851, 0.2646, -0.9302, 0.2751, 0.2646, -0.9077, 0.1866, 0.3955, -0.9385, 0.1866, 0.3464, -0.9385, 0.2776, 0.3955, -0.9155, 0.2776, 0.3955, -0.9155, 0.1866, 0.3464, -0.9385, 0.2776, 0.3464, -0.9155, 0.0302, 0.0017, -0.0995, 0, 0, 0, 0.0398, 0.0017, -0.096, 0.06, 0.0068, -0.1978, 0.0302, 0.0017, -0.0995, 0.079, 0.0068, -0.1909, 0.079, 0.0068, -0.1909, 0.0302, 0.0017, -0.0995, 0.0398, 0.0017, -0.096, 0.0891, 0.0153, -0.2935, 0.06, 0.0068, -0.1978, 0.1174, 0.0153, -0.2834, 0.1174, 0.0153, -0.2834, 0.06, 0.0068, -0.1978, 0.079, 0.0068, -0.1909, 0.1171, 0.027, -0.386, 0.0891, 0.0153, -0.2935, 0.1543, 0.027, -0.3726, 0.1543, 0.027, -0.3726, 0.0891, 0.0153, -0.2935, 0.1174, 0.0153, -0.2834, 0.1437, 0.0418, -0.4736, 0.1171, 0.027, -0.386, 0.1893, 0.0418, -0.4573, 0.1893, 0.0418, -0.4573, 0.1171, 0.027, -0.386, 0.1543, 0.027, -0.3726, 0.1686, 0.0597, -0.5557, 0.1437, 0.0418, -0.4736, 0.2222, 0.0597, -0.5361, 0.2222, 0.0597, -0.5361, 0.1437, 0.0418, -0.4736, 0.1893, 0.0418, -0.4573, 0.1914, 0.0803, -0.6309, 0.1686, 0.0597, -0.5557, 0.2522, 0.0803, -0.6089, 0.2522, 0.0803, -0.6089, 0.1686, 0.0597, -0.5557, 0.2222, 0.0597, -0.5361, 0.212, 0.1036, -0.6987, 0.1914, 0.0803, -0.6309, 0.2795, 0.1036, -0.6748, 0.2795, 0.1036, -0.6748, 0.1914, 0.0803, -0.6309, 0.2522, 0.0803, -0.6089, 0.2302, 0.1295, -0.7588, 0.212, 0.1036, -0.6987, 0.3035, 0.1295, -0.7329, 0.3035, 0.1295, -0.7329, 0.212, 0.1036, -0.6987, 0.2795, 0.1036, -0.6748, 0.2458, 0.158, -0.8101, 0.2302, 0.1295, -0.7588, 0.324, 0.158, -0.7822, 0.324, 0.158, -0.7822, 0.2302, 0.1295, -0.7588, 0.3035, 0.1295, -0.7329, 0.2585, 0.1895, -0.8525, 0.2458, 0.158, -0.8101, 0.3411, 0.1895, -0.8232, 0.3411, 0.1895, -0.8232, 0.2458, 0.158, -0.8101, 0.324, 0.158, -0.7822, 0.2686, 0.2247, -0.8857, 0.2585, 0.1895, -0.8525, 0.3542, 0.2247, -0.855, 0.3542, 0.2247, -0.855, 0.2585, 0.1895, -0.8525, 0.3411, 0.1895, -0.8232, 0.2751, 0.2646, -0.9077, 0.2686, 0.2247, -0.8857, 0.3628, 0.2646, -0.876, 0.3628, 0.2646, -0.876, 0.2686, 0.2247, -0.8857, 0.3542, 0.2247, -0.855, 0.2776, 0.3049, -0.915, 0.2751, 0.2646, -0.9077, 0.366, 0.3049, -0.8838, 0.366, 0.3049, -0.8838, 0.2751, 0.2646, -0.9077, 0.3628, 0.2646, -0.876, 0.2776, 0.3955, -0.9155, 0.2776, 0.3464, -0.9155, 0.366, 0.3955, -0.8838, 0.366, 0.3955, -0.8838, 0.2776, 0.3464, -0.9155, 0.366, 0.3464, -0.8838, 0.0398, 0.0017, -0.096, 0, 0, 0, 0.049, 0.0017, -0.0917, 0.079, 0.0068, -0.1909, 0.0398, 0.0017, -0.096, 0.0974, 0.0068, -0.1823, 0.0974, 0.0068, -0.1823, 0.0398, 0.0017, -0.096, 0.049, 0.0017, -0.0917, 0.1174, 0.0153, -0.2834, 0.079, 0.0068, -0.1909, 0.1447, 0.0153, -0.2705, 0.1447, 0.0153, -0.2705, 0.079, 0.0068, -0.1909, 0.0974, 0.0068, -0.1823, 0.1543, 0.027, -0.3726, 0.1174, 0.0153, -0.2834, 0.1901, 0.027, -0.3557, 0.1901, 0.027, -0.3557, 0.1174, 0.0153, -0.2834, 0.1447, 0.0153, -0.2705, 0.1893, 0.0418, -0.4573, 0.1543, 0.027, -0.3726, 0.2333, 0.0418, -0.4365, 0.2333, 0.0418, -0.4365, 0.1543, 0.027, -0.3726, 0.1901, 0.027, -0.3557, 0.2222, 0.0597, -0.5361, 0.1893, 0.0418, -0.4573, 0.2737, 0.0597, -0.5117, 0.2737, 0.0597, -0.5117, 0.1893, 0.0418, -0.4573, 0.2333, 0.0418, -0.4365, 0.2522, 0.0803, -0.6089, 0.2222, 0.0597, -0.5361, 0.3108, 0.0803, -0.5815, 0.3108, 0.0803, -0.5815, 0.2222, 0.0597, -0.5361, 0.2737, 0.0597, -0.5117, 0.2795, 0.1036, -0.6748, 0.2522, 0.0803, -0.6089, 0.3442, 0.1036, -0.644, 0.3442, 0.1036, -0.644, 0.2522, 0.0803, -0.6089, 0.3108, 0.0803, -0.5815, 0.3035, 0.1295, -0.7329, 0.2795, 0.1036, -0.6748, 0.3738, 0.1295, -0.6992, 0.3738, 0.1295, -0.6992, 0.2795, 0.1036, -0.6748, 0.3442, 0.1036, -0.644, 0.324, 0.158, -0.7822, 0.3035, 0.1295, -0.7329, 0.3992, 0.158, -0.7466, 0.3992, 0.158, -0.7466, 0.3035, 0.1295, -0.7329, 0.3738, 0.1295, -0.6992, 0.3411, 0.1895, -0.8232, 0.324, 0.158, -0.7822, 0.4202, 0.1895, -0.7856, 0.4202, 0.1895, -0.7856, 0.324, 0.158, -0.7822, 0.3992, 0.158, -0.7466, 0.3542, 0.2247, -0.855, 0.3411, 0.1895, -0.8232, 0.4363, 0.2247, -0.8164, 0.4363, 0.2247, -0.8164, 0.3411, 0.1895, -0.8232, 0.4202, 0.1895, -0.7856, 0.3628, 0.2646, -0.876, 0.3542, 0.2247, -0.855, 0.447, 0.2646, -0.8364, 0.447, 0.2646, -0.8364, 0.3542, 0.2247, -0.855, 0.4363, 0.2247, -0.8164, 0.366, 0.3049, -0.8838, 0.3628, 0.2646, -0.876, 0.4509, 0.3049, -0.8433, 0.4509, 0.3049, -0.8433, 0.3628, 0.2646, -0.876, 0.447, 0.2646, -0.8364, 0.6069, 0.3464, -0.7393, 0.6064, 0.3049, -0.7393, 0.6763, 0.3464, -0.6763, 0.6763, 0.3464, -0.6763, 0.6064, 0.3049, -0.7393, 0.6763, 0.3049, -0.6763, 0.366, 0.3955, -0.8838, 0.366, 0.3464, -0.8838, 0.4509, 0.3955, -0.8438, 0.4509, 0.3955, -0.8438, 0.366, 0.3464, -0.8838, 0.4509, 0.3464, -0.8438, 0.049, 0.0017, -0.0917, 0, 0, 0, 0.0578, 0.0017, -0.0864, 0.0974, 0.0068, -0.1823, 0.049, 0.0017, -0.0917, 0.1148, 0.0068, -0.1718, 0.1148, 0.0068, -0.1718, 0.049, 0.0017, -0.0917, 0.0578, 0.0017, -0.0864, 0.1447, 0.0153, -0.2705, 0.0974, 0.0068, -0.1823, 0.1704, 0.0153, -0.2551, 0.1704, 0.0153, -0.2551, 0.0974, 0.0068, -0.1823, 0.1148, 0.0068, -0.1718, 0.1901, 0.027, -0.3557, 0.1447, 0.0153, -0.2705, 0.224, 0.027, -0.3352, 0.224, 0.027, -0.3352, 0.1447, 0.0153, -0.2705, 0.1704, 0.0153, -0.2551, 0.2333, 0.0418, -0.4365, 0.1901, 0.027, -0.3557, 0.2749, 0.0418, -0.4114, 0.2749, 0.0418, -0.4114, 0.1901, 0.027, -0.3557, 0.224, 0.027, -0.3352, 0.2737, 0.0597, -0.5117, 0.2333, 0.0418, -0.4365, 0.3225, 0.0597, -0.4827, 0.3225, 0.0597, -0.4827, 0.2333, 0.0418, -0.4365, 0.2749, 0.0418, -0.4114, 0.3108, 0.0803, -0.5815, 0.2737, 0.0597, -0.5117, 0.3662, 0.0803, -0.5483, 0.3662, 0.0803, -0.5483, 0.2737, 0.0597, -0.5117, 0.3225, 0.0597, -0.4827, 0.3442, 0.1036, -0.644, 0.3108, 0.0803, -0.5815, 0.4058, 0.1036, -0.6074, 0.4058, 0.1036, -0.6074, 0.3108, 0.0803, -0.5815, 0.3662, 0.0803, -0.5483, 0.3738, 0.1295, -0.6992, 0.3442, 0.1036, -0.644, 0.4407, 0.1295, -0.6592, 0.4407, 0.1295, -0.6592, 0.3442, 0.1036, -0.644, 0.4058, 0.1036, -0.6074, 0.3992, 0.158, -0.7466, 0.3738, 0.1295, -0.6992, 0.4705, 0.158, -0.7041, 0.4705, 0.158, -0.7041, 0.3738, 0.1295, -0.6992, 0.4407, 0.1295, -0.6592, 0.4202, 0.1895, -0.7856, 0.3992, 0.158, -0.7466, 0.4951, 0.1895, -0.7407, 0.4951, 0.1895, -0.7407, 0.3992, 0.158, -0.7466, 0.4705, 0.158, -0.7041, 0.4363, 0.2247, -0.8164, 0.4202, 0.1895, -0.7856, 0.5142, 0.2247, -0.7695, 0.5142, 0.2247, -0.7695, 0.4202, 0.1895, -0.7856, 0.4951, 0.1895, -0.7407, 0.447, 0.2646, -0.8364, 0.4363, 0.2247, -0.8164, 0.5269, 0.2646, -0.7886, 0.5269, 0.2646, -0.7886, 0.4363, 0.2247, -0.8164, 0.5142, 0.2247, -0.7695, 0.4509, 0.3049, -0.8433, 0.447, 0.2646, -0.8364, 0.5313, 0.3049, -0.7954, 0.5313, 0.3049, -0.7954, 0.447, 0.2646, -0.8364, 0.5269, 0.2646, -0.7886, 0, 0.3464, 0.9565, 0.0938, 0.3464, 0.9521, 0, 0.3049, 0.9565, 0, 0.3049, 0.9565, 0.0938, 0.3464, 0.9521, 0.0938, 0.3049, 0.9517, 0.4509, 0.3955, -0.8438, 0.4509, 0.3464, -0.8438, 0.5313, 0.3955, -0.7954, 0.5313, 0.3955, -0.7954, 0.4509, 0.3464, -0.8438, 0.5313, 0.3464, -0.7954, 0.0578, 0.0017, -0.0864, 0, 0, 0, 0.0659, 0.0017, -0.0803, 0.1148, 0.0068, -0.1718, 0.0578, 0.0017, -0.0864, 0.1311, 0.0068, -0.1597, 0.1311, 0.0068, -0.1597, 0.0578, 0.0017, -0.0864, 0.0659, 0.0017, -0.0803, 0.1704, 0.0153, -0.2551, 0.1148, 0.0068, -0.1718, 0.1946, 0.0153, -0.2372, 0.1946, 0.0153, -0.2372, 0.1148, 0.0068, -0.1718, 0.1311, 0.0068, -0.1597, 0.224, 0.027, -0.3352, 0.1704, 0.0153, -0.2551, 0.2559, 0.027, -0.3118, 0.2559, 0.027, -0.3118, 0.1704, 0.0153, -0.2551, 0.1946, 0.0153, -0.2372, 0.2749, 0.0418, -0.4114, 0.224, 0.027, -0.3352, 0.314, 0.0418, -0.3826, 0.314, 0.0418, -0.3826, 0.224, 0.027, -0.3352, 0.2559, 0.027, -0.3118, 0.3225, 0.0597, -0.4827, 0.2749, 0.0418, -0.4114, 0.3684, 0.0597, -0.4487, 0.3684, 0.0597, -0.4487, 0.2749, 0.0418, -0.4114, 0.314, 0.0418, -0.3826, 0.3662, 0.0803, -0.5483, 0.3225, 0.0597, -0.4827, 0.4182, 0.0803, -0.5098, 0.4182, 0.0803, -0.5098, 0.3225, 0.0597, -0.4827, 0.3684, 0.0597, -0.4487, 0.4058, 0.1036, -0.6074, 0.3662, 0.0803, -0.5483, 0.4634, 0.1036, -0.5645, 0.4634, 0.1036, -0.5645, 0.3662, 0.0803, -0.5483, 0.4182, 0.0803, -0.5098, 0.4407, 0.1295, -0.6592, 0.4058, 0.1036, -0.6074, 0.5029, 0.1295, -0.6128, 0.5029, 0.1295, -0.6128, 0.4058, 0.1036, -0.6074, 0.4634, 0.1036, -0.5645, 0.4705, 0.158, -0.7041, 0.4407, 0.1295, -0.6592, 0.5371, 0.158, -0.6543, 0.5371, 0.158, -0.6543, 0.4407, 0.1295, -0.6592, 0.5029, 0.1295, -0.6128, 0.4951, 0.1895, -0.7407, 0.4705, 0.158, -0.7041, 0.5654, 0.1895, -0.689, 0.5654, 0.1895, -0.689, 0.4705, 0.158, -0.7041, 0.5371, 0.158, -0.6543, 0.5142, 0.2247, -0.7695, 0.4951, 0.1895, -0.7407, 0.5869, 0.2247, -0.7153, 0.5869, 0.2247, -0.7153, 0.4951, 0.1895, -0.7407, 0.5654, 0.1895, -0.689, 0.5269, 0.2646, -0.7886, 0.5142, 0.2247, -0.7695, 0.6016, 0.2646, -0.7329, 0.6016, 0.2646, -0.7329, 0.5142, 0.2247, -0.7695, 0.5869, 0.2247, -0.7153, 0.5313, 0.3049, -0.7954, 0.5269, 0.2646, -0.7886, 0.6064, 0.3049, -0.7393, 0.6064, 0.3049, -0.7393, 0.5269, 0.2646, -0.7886, 0.6016, 0.2646, -0.7329, 0.5313, 0.3955, -0.7954, 0.5313, 0.3464, -0.7954, 0.6069, 0.3955, -0.7393, 0.6069, 0.3955, -0.7393, 0.5313, 0.3464, -0.7954, 0.6069, 0.3464, -0.7393, 0.0659, 0.0017, -0.0803, 0, 0, 0, 0.0735, 0.0017, -0.0735, 0.1311, 0.0068, -0.1597, 0.0659, 0.0017, -0.0803, 0.1461, 0.0068, -0.1461, 0.1461, 0.0068, -0.1461, 0.0659, 0.0017, -0.0803, 0.0735, 0.0017, -0.0735, 0.1946, 0.0153, -0.2372, 0.1311, 0.0068, -0.1597, 0.2169, 0.0153, -0.2169, 0.2169, 0.0153, -0.2169, 0.1311, 0.0068, -0.1597, 0.1461, 0.0068, -0.1461, 0.2559, 0.027, -0.3118, 0.1946, 0.0153, -0.2372, 0.2852, 0.027, -0.2852, 0.2852, 0.027, -0.2852, 0.1946, 0.0153, -0.2372, 0.2169, 0.0153, -0.2169, 0.314, 0.0418, -0.3826, 0.2559, 0.027, -0.3118, 0.3499, 0.0418, -0.3499, 0.3499, 0.0418, -0.3499, 0.2559, 0.027, -0.3118, 0.2852, 0.027, -0.2852, 0.3684, 0.0597, -0.4487, 0.314, 0.0418, -0.3826, 0.4106, 0.0597, -0.4106, 0.4106, 0.0597, -0.4106, 0.314, 0.0418, -0.3826, 0.3499, 0.0418, -0.3499, 0.4182, 0.0803, -0.5098, 0.3684, 0.0597, -0.4487, 0.4663, 0.0803, -0.4663, 0.4663, 0.0803, -0.4663, 0.3684, 0.0597, -0.4487, 0.4106, 0.0597, -0.4106, 0.4634, 0.1036, -0.5645, 0.4182, 0.0803, -0.5098, 0.5166, 0.1036, -0.5166, 0.5166, 0.1036, -0.5166, 0.4182, 0.0803, -0.5098, 0.4663, 0.0803, -0.4663, 0.5029, 0.1295, -0.6128, 0.4634, 0.1036, -0.5645, 0.5605, 0.1295, -0.5605, 0.5605, 0.1295, -0.5605, 0.4634, 0.1036, -0.5645, 0.5166, 0.1036, -0.5166, 0.5371, 0.158, -0.6543, 0.5029, 0.1295, -0.6128, 0.5986, 0.158, -0.5986, 0.5986, 0.158, -0.5986, 0.5029, 0.1295, -0.6128, 0.5605, 0.1295, -0.5605, 0.5654, 0.1895, -0.689, 0.5371, 0.158, -0.6543, 0.6299, 0.1895, -0.6299, 0.6299, 0.1895, -0.6299, 0.5371, 0.158, -0.6543, 0.5986, 0.158, -0.5986, 0.5869, 0.2247, -0.7153, 0.5654, 0.1895, -0.689, 0.6543, 0.2247, -0.6543, 0.6543, 0.2247, -0.6543, 0.5654, 0.1895, -0.689, 0.6299, 0.1895, -0.6299, 0.6016, 0.2646, -0.7329, 0.5869, 0.2247, -0.7153, 0.6704, 0.2646, -0.6704, 0.6704, 0.2646, -0.6704, 0.5869, 0.2247, -0.7153, 0.6543, 0.2247, -0.6543, 0.6064, 0.3049, -0.7393, 0.6016, 0.2646, -0.7329, 0.6763, 0.3049, -0.6763, 0.6763, 0.3049, -0.6763, 0.6016, 0.2646, -0.7329, 0.6704, 0.2646, -0.6704, 0.7954, 0.3464, -0.5313, 0.7954, 0.3049, -0.5313, 0.8438, 0.3464, -0.4509, 0.8438, 0.3464, -0.4509, 0.7954, 0.3049, -0.5313, 0.8433, 0.3049, -0.4509, 0.6763, 0.3049, -0.6763, 0.7393, 0.3049, -0.6064, 0.6763, 0.3464, -0.6763, 0.6763, 0.3464, -0.6763, 0.7393, 0.3049, -0.6064, 0.7393, 0.3464, -0.6069, 0.6069, 0.3955, -0.7393, 0.6069, 0.3464, -0.7393, 0.6763, 0.3955, -0.6763, 0.6763, 0.3955, -0.6763, 0.6069, 0.3464, -0.7393, 0.6763, 0.3464, -0.6763, 0.0735, 0.0017, -0.0735, 0, 0, 0, 0.0803, 0.0017, -0.0659, 0.1461, 0.0068, -0.1461, 0.0735, 0.0017, -0.0735, 0.1597, 0.0068, -0.1311, 0.1597, 0.0068, -0.1311, 0.0735, 0.0017, -0.0735, 0.0803, 0.0017, -0.0659, 0.2169, 0.0153, -0.2169, 0.1461, 0.0068, -0.1461, 0.2372, 0.0153, -0.1946, 0.2372, 0.0153, -0.1946, 0.1461, 0.0068, -0.1461, 0.1597, 0.0068, -0.1311, 0.2852, 0.027, -0.2852, 0.2169, 0.0153, -0.2169, 0.3118, 0.027, -0.2559, 0.3118, 0.027, -0.2559, 0.2169, 0.0153, -0.2169, 0.2372, 0.0153, -0.1946, 0.3499, 0.0418, -0.3499, 0.2852, 0.027, -0.2852, 0.3826, 0.0418, -0.314, 0.3826, 0.0418, -0.314, 0.2852, 0.027, -0.2852, 0.3118, 0.027, -0.2559, 0.4106, 0.0597, -0.4106, 0.3499, 0.0418, -0.3499, 0.4487, 0.0597, -0.3684, 0.4487, 0.0597, -0.3684, 0.3499, 0.0418, -0.3499, 0.3826, 0.0418, -0.314, 0.4663, 0.0803, -0.4663, 0.4106, 0.0597, -0.4106, 0.5098, 0.0803, -0.4182, 0.5098, 0.0803, -0.4182, 0.4106, 0.0597, -0.4106, 0.4487, 0.0597, -0.3684, 0.5166, 0.1036, -0.5166, 0.4663, 0.0803, -0.4663, 0.5645, 0.1036, -0.4634, 0.5645, 0.1036, -0.4634, 0.4663, 0.0803, -0.4663, 0.5098, 0.0803, -0.4182, 0.5605, 0.1295, -0.5605, 0.5166, 0.1036, -0.5166, 0.6128, 0.1295, -0.5029, 0.6128, 0.1295, -0.5029, 0.5166, 0.1036, -0.5166, 0.5645, 0.1036, -0.4634, 0.5986, 0.158, -0.5986, 0.5605, 0.1295, -0.5605, 0.6543, 0.158, -0.5371, 0.6543, 0.158, -0.5371, 0.5605, 0.1295, -0.5605, 0.6128, 0.1295, -0.5029, 0.6299, 0.1895, -0.6299, 0.5986, 0.158, -0.5986, 0.689, 0.1895, -0.5654, 0.689, 0.1895, -0.5654, 0.5986, 0.158, -0.5986, 0.6543, 0.158, -0.5371, 0.6543, 0.2247, -0.6543, 0.6299, 0.1895, -0.6299, 0.7153, 0.2247, -0.5869, 0.7153, 0.2247, -0.5869, 0.6299, 0.1895, -0.6299, 0.689, 0.1895, -0.5654, 0.6704, 0.2646, -0.6704, 0.6543, 0.2247, -0.6543, 0.7329, 0.2646, -0.6016, 0.7329, 0.2646, -0.6016, 0.6543, 0.2247, -0.6543, 0.7153, 0.2247, -0.5869, 0.6763, 0.3049, -0.6763, 0.6704, 0.2646, -0.6704, 0.7393, 0.3049, -0.6064, 0.7393, 0.3049, -0.6064, 0.6704, 0.2646, -0.6704, 0.7329, 0.2646, -0.6016, 0.9155, 0.3464, -0.2776, 0.8838, 0.3464, -0.366, 0.915, 0.3049, -0.2776, 0.915, 0.3049, -0.2776, 0.8838, 0.3464, -0.366, 0.8838, 0.3049, -0.366, 0.6763, 0.3955, -0.6763, 0.6763, 0.3464, -0.6763, 0.7393, 0.3955, -0.6069, 0.7393, 0.3955, -0.6069, 0.6763, 0.3464, -0.6763, 0.7393, 0.3464, -0.6069, 0.0803, 0.0017, -0.0659, 0, 0, 0, 0.0864, 0.0017, -0.0578, 0.1597, 0.0068, -0.1311, 0.0803, 0.0017, -0.0659, 0.1718, 0.0068, -0.1148, 0.1718, 0.0068, -0.1148, 0.0803, 0.0017, -0.0659, 0.0864, 0.0017, -0.0578, 0.2372, 0.0153, -0.1946, 0.1597, 0.0068, -0.1311, 0.2551, 0.0153, -0.1704, 0.2551, 0.0153, -0.1704, 0.1597, 0.0068, -0.1311, 0.1718, 0.0068, -0.1148, 0.3118, 0.027, -0.2559, 0.2372, 0.0153, -0.1946, 0.3352, 0.027, -0.224, 0.3352, 0.027, -0.224, 0.2372, 0.0153, -0.1946, 0.2551, 0.0153, -0.1704, 0.3826, 0.0418, -0.314, 0.3118, 0.027, -0.2559, 0.4114, 0.0418, -0.2749, 0.4114, 0.0418, -0.2749, 0.3118, 0.027, -0.2559, 0.3352, 0.027, -0.224, 0.4487, 0.0597, -0.3684, 0.3826, 0.0418, -0.314, 0.4827, 0.0597, -0.3225, 0.4827, 0.0597, -0.3225, 0.3826, 0.0418, -0.314, 0.4114, 0.0418, -0.2749, 0.5098, 0.0803, -0.4182, 0.4487, 0.0597, -0.3684, 0.5483, 0.0803, -0.3662, 0.5483, 0.0803, -0.3662, 0.4487, 0.0597, -0.3684, 0.4827, 0.0597, -0.3225, 0.5645, 0.1036, -0.4634, 0.5098, 0.0803, -0.4182, 0.6074, 0.1036, -0.4058, 0.6074, 0.1036, -0.4058, 0.5098, 0.0803, -0.4182, 0.5483, 0.0803, -0.3662, 0.6128, 0.1295, -0.5029, 0.5645, 0.1036, -0.4634, 0.6592, 0.1295, -0.4407, 0.6592, 0.1295, -0.4407, 0.5645, 0.1036, -0.4634, 0.6074, 0.1036, -0.4058, 0.6543, 0.158, -0.5371, 0.6128, 0.1295, -0.5029, 0.7041, 0.158, -0.4705, 0.7041, 0.158, -0.4705, 0.6128, 0.1295, -0.5029, 0.6592, 0.1295, -0.4407, 0.689, 0.1895, -0.5654, 0.6543, 0.158, -0.5371, 0.7407, 0.1895, -0.4951, 0.7407, 0.1895, -0.4951, 0.6543, 0.158, -0.5371, 0.7041, 0.158, -0.4705, 0.7153, 0.2247, -0.5869, 0.689, 0.1895, -0.5654, 0.7695, 0.2247, -0.5142, 0.7695, 0.2247, -0.5142, 0.689, 0.1895, -0.5654, 0.7407, 0.1895, -0.4951, 0.7329, 0.2646, -0.6016, 0.7153, 0.2247, -0.5869, 0.7886, 0.2646, -0.5269, 0.7886, 0.2646, -0.5269, 0.7153, 0.2247, -0.5869, 0.7695, 0.2247, -0.5142, 0.7393, 0.3049, -0.6064, 0.7329, 0.2646, -0.6016, 0.7954, 0.3049, -0.5313, 0.7954, 0.3049, -0.5313, 0.7329, 0.2646, -0.6016, 0.7886, 0.2646, -0.5269, 0.9517, 0.3049, 0.0938, 0.938, 0.3049, 0.1865, 0.9521, 0.3464, 0.0938, 0.9521, 0.3464, 0.0938, 0.938, 0.3049, 0.1865, 0.9385, 0.3464, 0.1866, 0.7393, 0.3955, -0.6069, 0.7393, 0.3464, -0.6069, 0.7954, 0.3955, -0.5313, 0.7954, 0.3955, -0.5313, 0.7393, 0.3464, -0.6069, 0.7954, 0.3464, -0.5313, 0.0864, 0.0017, -0.0578, 0, 0, 0, 0.0917, 0.0017, -0.049, 0.1718, 0.0068, -0.1148, 0.0864, 0.0017, -0.0578, 0.1823, 0.0068, -0.0974, 0.1823, 0.0068, -0.0974, 0.0864, 0.0017, -0.0578, 0.0917, 0.0017, -0.049, 0.2551, 0.0153, -0.1704, 0.1718, 0.0068, -0.1148, 0.2705, 0.0153, -0.1447, 0.2705, 0.0153, -0.1447, 0.1718, 0.0068, -0.1148, 0.1823, 0.0068, -0.0974, 0.3352, 0.027, -0.224, 0.2551, 0.0153, -0.1704, 0.3557, 0.027, -0.1901, 0.3557, 0.027, -0.1901, 0.2551, 0.0153, -0.1704, 0.2705, 0.0153, -0.1447, 0.4114, 0.0418, -0.2749, 0.3352, 0.027, -0.224, 0.4365, 0.0418, -0.2333, 0.4365, 0.0418, -0.2333, 0.3352, 0.027, -0.224, 0.3557, 0.027, -0.1901, 0.4827, 0.0597, -0.3225, 0.4114, 0.0418, -0.2749, 0.5117, 0.0597, -0.2737, 0.5117, 0.0597, -0.2737, 0.4114, 0.0418, -0.2749, 0.4365, 0.0418, -0.2333, 0.5483, 0.0803, -0.3662, 0.4827, 0.0597, -0.3225, 0.5815, 0.0803, -0.3108, 0.5815, 0.0803, -0.3108, 0.4827, 0.0597, -0.3225, 0.5117, 0.0597, -0.2737, 0.6074, 0.1036, -0.4058, 0.5483, 0.0803, -0.3662, 0.644, 0.1036, -0.3442, 0.644, 0.1036, -0.3442, 0.5483, 0.0803, -0.3662, 0.5815, 0.0803, -0.3108, 0.6592, 0.1295, -0.4407, 0.6074, 0.1036, -0.4058, 0.6992, 0.1295, -0.3738, 0.6992, 0.1295, -0.3738, 0.6074, 0.1036, -0.4058, 0.644, 0.1036, -0.3442, 0.7041, 0.158, -0.4705, 0.6592, 0.1295, -0.4407, 0.7466, 0.158, -0.3992, 0.7466, 0.158, -0.3992, 0.6592, 0.1295, -0.4407, 0.6992, 0.1295, -0.3738, 0.7407, 0.1895, -0.4951, 0.7041, 0.158, -0.4705, 0.7856, 0.1895, -0.4202, 0.7856, 0.1895, -0.4202, 0.7041, 0.158, -0.4705, 0.7466, 0.158, -0.3992, 0.7695, 0.2247, -0.5142, 0.7407, 0.1895, -0.4951, 0.8164, 0.2247, -0.4363, 0.8164, 0.2247, -0.4363, 0.7407, 0.1895, -0.4951, 0.7856, 0.1895, -0.4202, 0.7886, 0.2646, -0.5269, 0.7695, 0.2247, -0.5142, 0.8364, 0.2646, -0.447, 0.8364, 0.2646, -0.447, 0.7695, 0.2247, -0.5142, 0.8164, 0.2247, -0.4363, 0.7954, 0.3049, -0.5313, 0.7886, 0.2646, -0.5269, 0.8433, 0.3049, -0.4509, 0.8433, 0.3049, -0.4509, 0.7886, 0.2646, -0.5269, 0.8364, 0.2646, -0.447, 0.7954, 0.3955, -0.5313, 0.7954, 0.3464, -0.5313, 0.8438, 0.3955, -0.4509, 0.8438, 0.3955, -0.4509, 0.7954, 0.3464, -0.5313, 0.8438, 0.3464, -0.4509, 0.0917, 0.0017, -0.049, 0, 0, 0, 0.096, 0.0017, -0.0398, 0.1823, 0.0068, -0.0974, 0.0917, 0.0017, -0.049, 0.1909, 0.0068, -0.079, 0.1909, 0.0068, -0.079, 0.0917, 0.0017, -0.049, 0.096, 0.0017, -0.0398, 0.2705, 0.0153, -0.1447, 0.1823, 0.0068, -0.0974, 0.2834, 0.0153, -0.1174, 0.2834, 0.0153, -0.1174, 0.1823, 0.0068, -0.0974, 0.1909, 0.0068, -0.079, 0.3557, 0.027, -0.1901, 0.2705, 0.0153, -0.1447, 0.3726, 0.027, -0.1543, 0.3726, 0.027, -0.1543, 0.2705, 0.0153, -0.1447, 0.2834, 0.0153, -0.1174, 0.4365, 0.0418, -0.2333, 0.3557, 0.027, -0.1901, 0.4573, 0.0418, -0.1893, 0.4573, 0.0418, -0.1893, 0.3557, 0.027, -0.1901, 0.3726, 0.027, -0.1543, 0.5117, 0.0597, -0.2737, 0.4365, 0.0418, -0.2333, 0.5361, 0.0597, -0.2222, 0.5361, 0.0597, -0.2222, 0.4365, 0.0418, -0.2333, 0.4573, 0.0418, -0.1893, 0.5815, 0.0803, -0.3108, 0.5117, 0.0597, -0.2737, 0.6089, 0.0803, -0.2522, 0.6089, 0.0803, -0.2522, 0.5117, 0.0597, -0.2737, 0.5361, 0.0597, -0.2222, 0.644, 0.1036, -0.3442, 0.5815, 0.0803, -0.3108, 0.6748, 0.1036, -0.2795, 0.6748, 0.1036, -0.2795, 0.5815, 0.0803, -0.3108, 0.6089, 0.0803, -0.2522, 0.6992, 0.1295, -0.3738, 0.644, 0.1036, -0.3442, 0.7329, 0.1295, -0.3035, 0.7329, 0.1295, -0.3035, 0.644, 0.1036, -0.3442, 0.6748, 0.1036, -0.2795, 0.7466, 0.158, -0.3992, 0.6992, 0.1295, -0.3738, 0.7822, 0.158, -0.324, 0.7822, 0.158, -0.324, 0.6992, 0.1295, -0.3738, 0.7329, 0.1295, -0.3035, 0.7856, 0.1895, -0.4202, 0.7466, 0.158, -0.3992, 0.8232, 0.1895, -0.3411, 0.8232, 0.1895, -0.3411, 0.7466, 0.158, -0.3992, 0.7822, 0.158, -0.324, 0.8164, 0.2247, -0.4363, 0.7856, 0.1895, -0.4202, 0.855, 0.2247, -0.3542, 0.855, 0.2247, -0.3542, 0.7856, 0.1895, -0.4202, 0.8232, 0.1895, -0.3411, 0.8364, 0.2646, -0.447, 0.8164, 0.2247, -0.4363, 0.876, 0.2646, -0.3628, 0.876, 0.2646, -0.3628, 0.8164, 0.2247, -0.4363, 0.855, 0.2247, -0.3542, 0.8433, 0.3049, -0.4509, 0.8364, 0.2646, -0.447, 0.8838, 0.3049, -0.366, 0.8838, 0.3049, -0.366, 0.8364, 0.2646, -0.447, 0.876, 0.2646, -0.3628, 0.8438, 0.3464, 0.4509, 0.8433, 0.3049, 0.4509, 0.7954, 0.3464, 0.5313, 0.7954, 0.3464, 0.5313, 0.8433, 0.3049, 0.4509, 0.7954, 0.3049, 0.5313, 0.8438, 0.3955, -0.4509, 0.8438, 0.3464, -0.4509, 0.8838, 0.3955, -0.366, 0.8838, 0.3955, -0.366, 0.8438, 0.3464, -0.4509, 0.8838, 0.3464, -0.366, 0.096, 0.0017, -0.0398, 0, 0, 0, 0.0995, 0.0017, -0.0302, 0.1909, 0.0068, -0.079, 0.096, 0.0017, -0.0398, 0.1978, 0.0068, -0.06, 0.1978, 0.0068, -0.06, 0.096, 0.0017, -0.0398, 0.0995, 0.0017, -0.0302, 0.2834, 0.0153, -0.1174, 0.1909, 0.0068, -0.079, 0.2935, 0.0153, -0.0891, 0.2935, 0.0153, -0.0891, 0.1909, 0.0068, -0.079, 0.1978, 0.0068, -0.06, 0.3726, 0.027, -0.1543, 0.2834, 0.0153, -0.1174, 0.386, 0.027, -0.1171, 0.386, 0.027, -0.1171, 0.2834, 0.0153, -0.1174, 0.2935, 0.0153, -0.0891, 0.4573, 0.0418, -0.1893, 0.3726, 0.027, -0.1543, 0.4736, 0.0418, -0.1437, 0.4736, 0.0418, -0.1437, 0.3726, 0.027, -0.1543, 0.386, 0.027, -0.1171, 0.5361, 0.0597, -0.2222, 0.4573, 0.0418, -0.1893, 0.5557, 0.0597, -0.1686, 0.5557, 0.0597, -0.1686, 0.4573, 0.0418, -0.1893, 0.4736, 0.0418, -0.1437, 0.6089, 0.0803, -0.2522, 0.5361, 0.0597, -0.2222, 0.6309, 0.0803, -0.1914, 0.6309, 0.0803, -0.1914, 0.5361, 0.0597, -0.2222, 0.5557, 0.0597, -0.1686, 0.6748, 0.1036, -0.2795, 0.6089, 0.0803, -0.2522, 0.6987, 0.1036, -0.212, 0.6987, 0.1036, -0.212, 0.6089, 0.0803, -0.2522, 0.6309, 0.0803, -0.1914, 0.7329, 0.1295, -0.3035, 0.6748, 0.1036, -0.2795, 0.7588, 0.1295, -0.2302, 0.7588, 0.1295, -0.2302, 0.6748, 0.1036, -0.2795, 0.6987, 0.1036, -0.212, 0.7822, 0.158, -0.324, 0.7329, 0.1295, -0.3035, 0.8101, 0.158, -0.2458, 0.8101, 0.158, -0.2458, 0.7329, 0.1295, -0.3035, 0.7588, 0.1295, -0.2302, 0.8232, 0.1895, -0.3411, 0.7822, 0.158, -0.324, 0.8525, 0.1895, -0.2585, 0.8525, 0.1895, -0.2585, 0.7822, 0.158, -0.324, 0.8101, 0.158, -0.2458, 0.855, 0.2247, -0.3542, 0.8232, 0.1895, -0.3411, 0.8857, 0.2247, -0.2686, 0.8857, 0.2247, -0.2686, 0.8232, 0.1895, -0.3411, 0.8525, 0.1895, -0.2585, 0.876, 0.2646, -0.3628, 0.855, 0.2247, -0.3542, 0.9077, 0.2646, -0.2751, 0.9077, 0.2646, -0.2751, 0.855, 0.2247, -0.3542, 0.8857, 0.2247, -0.2686, 0.8838, 0.3049, -0.366, 0.876, 0.2646, -0.3628, 0.915, 0.3049, -0.2776, 0.915, 0.3049, -0.2776, 0.876, 0.2646, -0.3628, 0.9077, 0.2646, -0.2751, 0.8838, 0.3955, -0.366, 0.8838, 0.3464, -0.366, 0.9155, 0.3955, -0.2776, 0.9155, 0.3955, -0.2776, 0.8838, 0.3464, -0.366, 0.9155, 0.3464, -0.2776, 0.0995, 0.0017, -0.0302, 0, 0, 0, 0.1019, 0.0017, -0.0203, 0.1978, 0.0068, -0.06, 0.0995, 0.0017, -0.0302, 0.2026, 0.0068, -0.0403, 0.2026, 0.0068, -0.0403, 0.0995, 0.0017, -0.0302, 0.1019, 0.0017, -0.0203, 0.2935, 0.0153, -0.0891, 0.1978, 0.0068, -0.06, 0.3008, 0.0153, -0.0598, 0.3008, 0.0153, -0.0598, 0.1978, 0.0068, -0.06, 0.2026, 0.0068, -0.0403, 0.386, 0.027, -0.1171, 0.2935, 0.0153, -0.0891, 0.3955, 0.027, -0.0787, 0.3955, 0.027, -0.0787, 0.2935, 0.0153, -0.0891, 0.3008, 0.0153, -0.0598, 0.4736, 0.0418, -0.1437, 0.386, 0.027, -0.1171, 0.4854, 0.0418, -0.0966, 0.4854, 0.0418, -0.0966, 0.386, 0.027, -0.1171, 0.3955, 0.027, -0.0787, 0.5557, 0.0597, -0.1686, 0.4736, 0.0418, -0.1437, 0.5693, 0.0597, -0.1133, 0.5693, 0.0597, -0.1133, 0.4736, 0.0418, -0.1437, 0.4854, 0.0418, -0.0966, 0.6309, 0.0803, -0.1914, 0.5557, 0.0597, -0.1686, 0.6465, 0.0803, -0.1287, 0.6465, 0.0803, -0.1287, 0.5557, 0.0597, -0.1686, 0.5693, 0.0597, -0.1133, 0.6987, 0.1036, -0.212, 0.6309, 0.0803, -0.1914, 0.7163, 0.1036, -0.1425, 0.7163, 0.1036, -0.1425, 0.6309, 0.0803, -0.1914, 0.6465, 0.0803, -0.1287, 0.7588, 0.1295, -0.2302, 0.6987, 0.1036, -0.212, 0.7778, 0.1295, -0.1547, 0.7778, 0.1295, -0.1547, 0.6987, 0.1036, -0.212, 0.7163, 0.1036, -0.1425, 0.8101, 0.158, -0.2458, 0.7588, 0.1295, -0.2302, 0.8306, 0.158, -0.1652, 0.8306, 0.158, -0.1652, 0.7588, 0.1295, -0.2302, 0.7778, 0.1295, -0.1547, 0.8525, 0.1895, -0.2585, 0.8101, 0.158, -0.2458, 0.874, 0.1895, -0.1738, 0.874, 0.1895, -0.1738, 0.8101, 0.158, -0.2458, 0.8306, 0.158, -0.1652, 0.8857, 0.2247, -0.2686, 0.8525, 0.1895, -0.2585, 0.9077, 0.2247, -0.1805, 0.9077, 0.2247, -0.1805, 0.8525, 0.1895, -0.2585, 0.874, 0.1895, -0.1738, 0.9077, 0.2646, -0.2751, 0.8857, 0.2247, -0.2686, 0.9302, 0.2646, -0.1851, 0.9302, 0.2646, -0.1851, 0.8857, 0.2247, -0.2686, 0.9077, 0.2247, -0.1805, 0.915, 0.3049, -0.2776, 0.9077, 0.2646, -0.2751, 0.938, 0.3049, -0.1865, 0.938, 0.3049, -0.1865, 0.9077, 0.2646, -0.2751, 0.9302, 0.2646, -0.1851, 0.9155, 0.3955, -0.2776, 0.9155, 0.3464, -0.2776, 0.9385, 0.3955, -0.1866, 0.9385, 0.3955, -0.1866, 0.9155, 0.3464, -0.2776, 0.9385, 0.3464, -0.1866, 0.1019, 0.0017, -0.0203, 0, 0, 0, 0.1035, 0.0017, -0.0102, 0.2026, 0.0068, -0.0403, 0.1019, 0.0017, -0.0203, 0.2057, 0.0068, -0.0202, 0.2057, 0.0068, -0.0202, 0.1019, 0.0017, -0.0203, 0.1035, 0.0017, -0.0102, 0.3008, 0.0153, -0.0598, 0.2026, 0.0068, -0.0403, 0.3052, 0.0153, -0.0301, 0.3052, 0.0153, -0.0301, 0.2026, 0.0068, -0.0403, 0.2057, 0.0068, -0.0202, 0.3955, 0.027, -0.0787, 0.3008, 0.0153, -0.0598, 0.4014, 0.027, -0.0395, 0.4014, 0.027, -0.0395, 0.3008, 0.0153, -0.0598, 0.3052, 0.0153, -0.0301, 0.4854, 0.0418, -0.0966, 0.3955, 0.027, -0.0787, 0.4924, 0.0418, -0.0485, 0.4924, 0.0418, -0.0485, 0.3955, 0.027, -0.0787, 0.4014, 0.027, -0.0395, 0.5693, 0.0597, -0.1133, 0.4854, 0.0418, -0.0966, 0.5776, 0.0597, -0.0569, 0.5776, 0.0597, -0.0569, 0.4854, 0.0418, -0.0966, 0.4924, 0.0418, -0.0485, 0.6465, 0.0803, -0.1287, 0.5693, 0.0597, -0.1133, 0.6563, 0.0803, -0.0646, 0.6563, 0.0803, -0.0646, 0.5693, 0.0597, -0.1133, 0.5776, 0.0597, -0.0569, 0.7163, 0.1036, -0.1425, 0.6465, 0.0803, -0.1287, 0.7271, 0.1036, -0.0716, 0.7271, 0.1036, -0.0716, 0.6465, 0.0803, -0.1287, 0.6563, 0.0803, -0.0646, 0.7778, 0.1295, -0.1547, 0.7163, 0.1036, -0.1425, 0.7891, 0.1295, -0.0777, 0.7891, 0.1295, -0.0777, 0.7163, 0.1036, -0.1425, 0.7271, 0.1036, -0.0716, 0.8306, 0.158, -0.1652, 0.7778, 0.1295, -0.1547, 0.8428, 0.158, -0.083, 0.8428, 0.158, -0.083, 0.7778, 0.1295, -0.1547, 0.7891, 0.1295, -0.0777, 0.874, 0.1895, -0.1738, 0.8306, 0.158, -0.1652, 0.8867, 0.1895, -0.0873, 0.8867, 0.1895, -0.0873, 0.8306, 0.158, -0.1652, 0.8428, 0.158, -0.083, 0.9077, 0.2247, -0.1805, 0.874, 0.1895, -0.1738, 0.9209, 0.2247, -0.0907, 0.9209, 0.2247, -0.0907, 0.874, 0.1895, -0.1738, 0.8867, 0.1895, -0.0873, 0.9302, 0.2646, -0.1851, 0.9077, 0.2247, -0.1805, 0.9438, 0.2646, -0.093, 0.9438, 0.2646, -0.093, 0.9077, 0.2247, -0.1805, 0.9209, 0.2247, -0.0907, 0.938, 0.3049, -0.1865, 0.9302, 0.2646, -0.1851, 0.9517, 0.3049, -0.0938, 0.9517, 0.3049, -0.0938, 0.9302, 0.2646, -0.1851, 0.9438, 0.2646, -0.093, 0.9385, 0.3955, -0.1866, 0.9385, 0.3464, -0.1866, 0.9521, 0.3955, -0.0938, 0.9521, 0.3955, -0.0938, 0.9385, 0.3464, -0.1866, 0.9521, 0.3464, -0.0938, 0.1035, 0.0017, -0.0102, 0, 0, 0, 0.1039, 0.0017, 0, 0.2057, 0.0068, -0.0202, 0.1035, 0.0017, -0.0102, 0.2067, 0.0068, 0, 0.2067, 0.0068, 0, 0.1035, 0.0017, -0.0102, 0.1039, 0.0017, 0, 0.3052, 0.0153, -0.0301, 0.2057, 0.0068, -0.0202, 0.3069, 0.0153, 0, 0.3069, 0.0153, 0, 0.2057, 0.0068, -0.0202, 0.2067, 0.0068, 0, 0.4014, 0.027, -0.0395, 0.3052, 0.0153, -0.0301, 0.4033, 0.027, 0, 0.4033, 0.027, 0, 0.3052, 0.0153, -0.0301, 0.3069, 0.0153, 0, 0.4924, 0.0418, -0.0485, 0.4014, 0.027, -0.0395, 0.4949, 0.0418, 0, 0.4949, 0.0418, 0, 0.4014, 0.027, -0.0395, 0.4033, 0.027, 0, 0.5776, 0.0597, -0.0569, 0.4924, 0.0418, -0.0485, 0.5806, 0.0597, 0, 0.5806, 0.0597, 0, 0.4924, 0.0418, -0.0485, 0.4949, 0.0418, 0, 0.6563, 0.0803, -0.0646, 0.5776, 0.0597, -0.0569, 0.6592, 0.0803, 0, 0.6592, 0.0803, 0, 0.5776, 0.0597, -0.0569, 0.5806, 0.0597, 0, 0.7271, 0.1036, -0.0716, 0.6563, 0.0803, -0.0646, 0.7305, 0.1036, 0, 0.7305, 0.1036, 0, 0.6563, 0.0803, -0.0646, 0.6592, 0.0803, 0, 0.7891, 0.1295, -0.0777, 0.7271, 0.1036, -0.0716, 0.793, 0.1295, 0, 0.793, 0.1295, 0, 0.7271, 0.1036, -0.0716, 0.7305, 0.1036, 0, 0.8428, 0.158, -0.083, 0.7891, 0.1295, -0.0777, 0.8467, 0.158, 0, 0.8467, 0.158, 0, 0.7891, 0.1295, -0.0777, 0.793, 0.1295, 0, 0.8867, 0.1895, -0.0873, 0.8428, 0.158, -0.083, 0.8911, 0.1895, 0, 0.8911, 0.1895, 0, 0.8428, 0.158, -0.083, 0.8467, 0.158, 0, 0.9209, 0.2247, -0.0907, 0.8867, 0.1895, -0.0873, 0.9253, 0.2247, 0, 0.9253, 0.2247, 0, 0.8867, 0.1895, -0.0873, 0.8911, 0.1895, 0, 0.9438, 0.2646, -0.093, 0.9209, 0.2247, -0.0907, 0.9482, 0.2646, 0, 0.9482, 0.2646, 0, 0.9209, 0.2247, -0.0907, 0.9253, 0.2247, 0, 0.9517, 0.3049, -0.0938, 0.9438, 0.2646, -0.093, 0.9565, 0.3049, 0, 0.9565, 0.3049, 0, 0.9438, 0.2646, -0.093, 0.9482, 0.2646, 0, 0.9521, 0.3955, -0.0938, 0.9521, 0.3464, -0.0938, 0.9565, 0.3955, 0, 0.9565, 0.3955, 0, 0.9521, 0.3464, -0.0938, 0.9565, 0.3464, 0, 0.0938, 0.3049, -0.9517, 0.1865, 0.3049, -0.938, 0.0938, 0.3464, -0.9521, 0.0938, 0.3464, -0.9521, 0.1865, 0.3049, -0.938, 0.1866, 0.3464, -0.9385, -0.1035, 0.0017, 0.0102, 0, 0, 0, -0.1039, 0.0017, 0, -0.1035, 0.0017, 0.0102, -0.1039, 0.0017, 0, -0.2057, 0.0068, 0.0202, -0.2057, 0.0068, 0.0202, -0.1039, 0.0017, 0, -0.2067, 0.0068, 0, -0.2057, 0.0068, 0.0202, -0.2067, 0.0068, 0, -0.3052, 0.0153, 0.0301, -0.3052, 0.0153, 0.0301, -0.2067, 0.0068, 0, -0.3069, 0.0153, 0, -0.3052, 0.0153, 0.0301, -0.3069, 0.0153, 0, -0.4014, 0.027, 0.0395, -0.4014, 0.027, 0.0395, -0.3069, 0.0153, 0, -0.4033, 0.027, 0, -0.4014, 0.027, 0.0395, -0.4033, 0.027, 0, -0.4924, 0.0418, 0.0485, -0.4924, 0.0418, 0.0485, -0.4033, 0.027, 0, -0.4949, 0.0418, 0, -0.4924, 0.0418, 0.0485, -0.4949, 0.0418, 0, -0.5776, 0.0597, 0.0569, -0.5776, 0.0597, 0.0569, -0.4949, 0.0418, 0, -0.5806, 0.0597, 0, -0.5776, 0.0597, 0.0569, -0.5806, 0.0597, 0, -0.6563, 0.0803, 0.0646, -0.6563, 0.0803, 0.0646, -0.5806, 0.0597, 0, -0.6592, 0.0803, 0, -0.6563, 0.0803, 0.0646, -0.6592, 0.0803, 0, -0.7271, 0.1036, 0.0716, -0.7271, 0.1036, 0.0716, -0.6592, 0.0803, 0, -0.7305, 0.1036, 0, -0.7271, 0.1036, 0.0716, -0.7305, 0.1036, 0, -0.7891, 0.1295, 0.0777, -0.7891, 0.1295, 0.0777, -0.7305, 0.1036, 0, -0.793, 0.1295, 0, -0.7891, 0.1295, 0.0777, -0.793, 0.1295, 0, -0.8428, 0.158, 0.083, -0.8428, 0.158, 0.083, -0.793, 0.1295, 0, -0.8467, 0.158, 0, -0.8428, 0.158, 0.083, -0.8467, 0.158, 0, -0.8867, 0.1895, 0.0873, -0.8867, 0.1895, 0.0873, -0.8467, 0.158, 0, -0.8911, 0.1895, 0, -0.8867, 0.1895, 0.0873, -0.8911, 0.1895, 0, -0.9209, 0.2247, 0.0907, -0.9209, 0.2247, 0.0907, -0.8911, 0.1895, 0, -0.9253, 0.2247, 0, -0.9209, 0.2247, 0.0907, -0.9253, 0.2247, 0, -0.9438, 0.2646, 0.093, -0.9438, 0.2646, 0.093, -0.9253, 0.2247, 0, -0.9482, 0.2646, 0, -0.9438, 0.2646, 0.093, -0.9482, 0.2646, 0, -0.9517, 0.3049, 0.0938, -0.9517, 0.3049, 0.0938, -0.9482, 0.2646, 0, -0.9565, 0.3049, 0, -0.1865, 0.3049, 0.938, -0.2776, 0.3049, 0.915, -0.1866, 0.3464, 0.9385, -0.1866, 0.3464, 0.9385, -0.2776, 0.3049, 0.915, -0.2776, 0.3464, 0.9155, -0.8838, 0.3464, 0.366, -0.8438, 0.3464, 0.4509, -0.8838, 0.3049, 0.366, -0.8838, 0.3049, 0.366, -0.8438, 0.3464, 0.4509, -0.8433, 0.3049, 0.4509, -0.9521, 0.3464, 0.0938, -0.9565, 0.3464, 0, -0.9521, 0.3955, 0.0938, -0.9521, 0.3955, 0.0938, -0.9565, 0.3464, 0, -0.9565, 0.3955, 0, -0.1019, 0.0017, 0.0203, 0, 0, 0, -0.1035, 0.0017, 0.0102, -0.1019, 0.0017, 0.0203, -0.1035, 0.0017, 0.0102, -0.2026, 0.0068, 0.0403, -0.2026, 0.0068, 0.0403, -0.1035, 0.0017, 0.0102, -0.2057, 0.0068, 0.0202, -0.2026, 0.0068, 0.0403, -0.2057, 0.0068, 0.0202, -0.3008, 0.0153, 0.0598, -0.3008, 0.0153, 0.0598, -0.2057, 0.0068, 0.0202, -0.3052, 0.0153, 0.0301, -0.3008, 0.0153, 0.0598, -0.3052, 0.0153, 0.0301, -0.3955, 0.027, 0.0787, -0.3955, 0.027, 0.0787, -0.3052, 0.0153, 0.0301, -0.4014, 0.027, 0.0395, -0.3955, 0.027, 0.0787, -0.4014, 0.027, 0.0395, -0.4854, 0.0418, 0.0966, -0.4854, 0.0418, 0.0966, -0.4014, 0.027, 0.0395, -0.4924, 0.0418, 0.0485, -0.4854, 0.0418, 0.0966, -0.4924, 0.0418, 0.0485, -0.5693, 0.0597, 0.1133, -0.5693, 0.0597, 0.1133, -0.4924, 0.0418, 0.0485, -0.5776, 0.0597, 0.0569, -0.5693, 0.0597, 0.1133, -0.5776, 0.0597, 0.0569, -0.6465, 0.0803, 0.1287, -0.6465, 0.0803, 0.1287, -0.5776, 0.0597, 0.0569, -0.6563, 0.0803, 0.0646, -0.6465, 0.0803, 0.1287, -0.6563, 0.0803, 0.0646, -0.7163, 0.1036, 0.1425, -0.7163, 0.1036, 0.1425, -0.6563, 0.0803, 0.0646, -0.7271, 0.1036, 0.0716, -0.7163, 0.1036, 0.1425, -0.7271, 0.1036, 0.0716, -0.7778, 0.1295, 0.1547, -0.7778, 0.1295, 0.1547, -0.7271, 0.1036, 0.0716, -0.7891, 0.1295, 0.0777, -0.7778, 0.1295, 0.1547, -0.7891, 0.1295, 0.0777, -0.8306, 0.158, 0.1652, -0.8306, 0.158, 0.1652, -0.7891, 0.1295, 0.0777, -0.8428, 0.158, 0.083, -0.8306, 0.158, 0.1652, -0.8428, 0.158, 0.083, -0.874, 0.1895, 0.1738, -0.874, 0.1895, 0.1738, -0.8428, 0.158, 0.083, -0.8867, 0.1895, 0.0873, -0.874, 0.1895, 0.1738, -0.8867, 0.1895, 0.0873, -0.9077, 0.2247, 0.1805, -0.9077, 0.2247, 0.1805, -0.8867, 0.1895, 0.0873, -0.9209, 0.2247, 0.0907, -0.9077, 0.2247, 0.1805, -0.9209, 0.2247, 0.0907, -0.9302, 0.2646, 0.1851, -0.9302, 0.2646, 0.1851, -0.9209, 0.2247, 0.0907, -0.9438, 0.2646, 0.093, -0.9302, 0.2646, 0.1851, -0.9438, 0.2646, 0.093, -0.938, 0.3049, 0.1865, -0.938, 0.3049, 0.1865, -0.9438, 0.2646, 0.093, -0.9517, 0.3049, 0.0938, -0.1865, 0.3049, 0.938, -0.1866, 0.3464, 0.9385, -0.0938, 0.3049, 0.9517, -0.0938, 0.3049, 0.9517, -0.1866, 0.3464, 0.9385, -0.0938, 0.3464, 0.9521, -0.0938, 0.3049, -0.9517, 0, 0.3049, -0.9565, -0.0938, 0.3464, -0.9521, -0.0938, 0.3464, -0.9521, 0, 0.3049, -0.9565, 0, 0.3464, -0.9565, -0.9385, 0.3464, 0.1866, -0.9521, 0.3464, 0.0938, -0.9385, 0.3955, 0.1866, -0.9385, 0.3955, 0.1866, -0.9521, 0.3464, 0.0938, -0.9521, 0.3955, 0.0938, -0.0995, 0.0017, 0.0302, 0, 0, 0, -0.1019, 0.0017, 0.0203, -0.0995, 0.0017, 0.0302, -0.1019, 0.0017, 0.0203, -0.1978, 0.0068, 0.06, -0.1978, 0.0068, 0.06, -0.1019, 0.0017, 0.0203, -0.2026, 0.0068, 0.0403, -0.1978, 0.0068, 0.06, -0.2026, 0.0068, 0.0403, -0.2935, 0.0153, 0.0891, -0.2935, 0.0153, 0.0891, -0.2026, 0.0068, 0.0403, -0.3008, 0.0153, 0.0598, -0.2935, 0.0153, 0.0891, -0.3008, 0.0153, 0.0598, -0.386, 0.027, 0.1171, -0.386, 0.027, 0.1171, -0.3008, 0.0153, 0.0598, -0.3955, 0.027, 0.0787, -0.386, 0.027, 0.1171, -0.3955, 0.027, 0.0787, -0.4736, 0.0418, 0.1437, -0.4736, 0.0418, 0.1437, -0.3955, 0.027, 0.0787, -0.4854, 0.0418, 0.0966, -0.4736, 0.0418, 0.1437, -0.4854, 0.0418, 0.0966, -0.5557, 0.0597, 0.1686, -0.5557, 0.0597, 0.1686, -0.4854, 0.0418, 0.0966, -0.5693, 0.0597, 0.1133, -0.5557, 0.0597, 0.1686, -0.5693, 0.0597, 0.1133, -0.6309, 0.0803, 0.1914, -0.6309, 0.0803, 0.1914, -0.5693, 0.0597, 0.1133, -0.6465, 0.0803, 0.1287, -0.6309, 0.0803, 0.1914, -0.6465, 0.0803, 0.1287, -0.6987, 0.1036, 0.212, -0.6987, 0.1036, 0.212, -0.6465, 0.0803, 0.1287, -0.7163, 0.1036, 0.1425, -0.6987, 0.1036, 0.212, -0.7163, 0.1036, 0.1425, -0.7588, 0.1295, 0.2302, -0.7588, 0.1295, 0.2302, -0.7163, 0.1036, 0.1425, -0.7778, 0.1295, 0.1547, -0.7588, 0.1295, 0.2302, -0.7778, 0.1295, 0.1547, -0.8101, 0.158, 0.2458, -0.8101, 0.158, 0.2458, -0.7778, 0.1295, 0.1547, -0.8306, 0.158, 0.1652, -0.8101, 0.158, 0.2458, -0.8306, 0.158, 0.1652, -0.8525, 0.1895, 0.2585, -0.8525, 0.1895, 0.2585, -0.8306, 0.158, 0.1652, -0.874, 0.1895, 0.1738, -0.8525, 0.1895, 0.2585, -0.874, 0.1895, 0.1738, -0.8857, 0.2247, 0.2686, -0.8857, 0.2247, 0.2686, -0.874, 0.1895, 0.1738, -0.9077, 0.2247, 0.1805, -0.8857, 0.2247, 0.2686, -0.9077, 0.2247, 0.1805, -0.9077, 0.2646, 0.2751, -0.9077, 0.2646, 0.2751, -0.9077, 0.2247, 0.1805, -0.9302, 0.2646, 0.1851, -0.9077, 0.2646, 0.2751, -0.9302, 0.2646, 0.1851, -0.915, 0.3049, 0.2776, -0.915, 0.3049, 0.2776, -0.9302, 0.2646, 0.1851, -0.938, 0.3049, 0.1865, -0.9385, 0.3464, 0.1866, -0.9155, 0.3464, 0.2776, -0.938, 0.3049, 0.1865, -0.938, 0.3049, 0.1865, -0.9155, 0.3464, 0.2776, -0.915, 0.3049, 0.2776, -0.7954, 0.3049, -0.5313, -0.7393, 0.3049, -0.6064, -0.7954, 0.3464, -0.5313, -0.7954, 0.3464, -0.5313, -0.7393, 0.3049, -0.6064, -0.7393, 0.3464, -0.6069, -0.9155, 0.3464, 0.2776, -0.9385, 0.3464, 0.1866, -0.9155, 0.3955, 0.2776, -0.9155, 0.3955, 0.2776, -0.9385, 0.3464, 0.1866, -0.9385, 0.3955, 0.1866, -0.096, 0.0017, 0.0398, 0, 0, 0, -0.0995, 0.0017, 0.0302, -0.096, 0.0017, 0.0398, -0.0995, 0.0017, 0.0302, -0.1909, 0.0068, 0.079, -0.1909, 0.0068, 0.079, -0.0995, 0.0017, 0.0302, -0.1978, 0.0068, 0.06, -0.1909, 0.0068, 0.079, -0.1978, 0.0068, 0.06, -0.2834, 0.0153, 0.1174, -0.2834, 0.0153, 0.1174, -0.1978, 0.0068, 0.06, -0.2935, 0.0153, 0.0891, -0.2834, 0.0153, 0.1174, -0.2935, 0.0153, 0.0891, -0.3726, 0.027, 0.1543, -0.3726, 0.027, 0.1543, -0.2935, 0.0153, 0.0891, -0.386, 0.027, 0.1171, -0.3726, 0.027, 0.1543, -0.386, 0.027, 0.1171, -0.4573, 0.0418, 0.1893, -0.4573, 0.0418, 0.1893, -0.386, 0.027, 0.1171, -0.4736, 0.0418, 0.1437, -0.4573, 0.0418, 0.1893, -0.4736, 0.0418, 0.1437, -0.5361, 0.0597, 0.2222, -0.5361, 0.0597, 0.2222, -0.4736, 0.0418, 0.1437, -0.5557, 0.0597, 0.1686, -0.5361, 0.0597, 0.2222, -0.5557, 0.0597, 0.1686, -0.6089, 0.0803, 0.2522, -0.6089, 0.0803, 0.2522, -0.5557, 0.0597, 0.1686, -0.6309, 0.0803, 0.1914, -0.6089, 0.0803, 0.2522, -0.6309, 0.0803, 0.1914, -0.6748, 0.1036, 0.2795, -0.6748, 0.1036, 0.2795, -0.6309, 0.0803, 0.1914, -0.6987, 0.1036, 0.212, -0.6748, 0.1036, 0.2795, -0.6987, 0.1036, 0.212, -0.7329, 0.1295, 0.3035, -0.7329, 0.1295, 0.3035, -0.6987, 0.1036, 0.212, -0.7588, 0.1295, 0.2302, -0.7329, 0.1295, 0.3035, -0.7588, 0.1295, 0.2302, -0.7822, 0.158, 0.324, -0.7822, 0.158, 0.324, -0.7588, 0.1295, 0.2302, -0.8101, 0.158, 0.2458, -0.7822, 0.158, 0.324, -0.8101, 0.158, 0.2458, -0.8232, 0.1895, 0.3411, -0.8232, 0.1895, 0.3411, -0.8101, 0.158, 0.2458, -0.8525, 0.1895, 0.2585, -0.8232, 0.1895, 0.3411, -0.8525, 0.1895, 0.2585, -0.855, 0.2247, 0.3542, -0.855, 0.2247, 0.3542, -0.8525, 0.1895, 0.2585, -0.8857, 0.2247, 0.2686, -0.855, 0.2247, 0.3542, -0.8857, 0.2247, 0.2686, -0.876, 0.2646, 0.3628, -0.876, 0.2646, 0.3628, -0.8857, 0.2247, 0.2686, -0.9077, 0.2646, 0.2751, -0.876, 0.2646, 0.3628, -0.9077, 0.2646, 0.2751, -0.8838, 0.3049, 0.366, -0.8838, 0.3049, 0.366, -0.9077, 0.2646, 0.2751, -0.915, 0.3049, 0.2776, -0.8838, 0.3464, 0.366, -0.8838, 0.3049, 0.366, -0.9155, 0.3464, 0.2776, -0.9155, 0.3464, 0.2776, -0.8838, 0.3049, 0.366, -0.915, 0.3049, 0.2776, -0.8433, 0.3049, -0.4509, -0.8438, 0.3464, -0.4509, -0.8838, 0.3049, -0.366, -0.8838, 0.3049, -0.366, -0.8438, 0.3464, -0.4509, -0.8838, 0.3464, -0.366, -0.8838, 0.3464, 0.366, -0.9155, 0.3464, 0.2776, -0.8838, 0.3955, 0.366, -0.8838, 0.3955, 0.366, -0.9155, 0.3464, 0.2776, -0.9155, 0.3955, 0.2776, -0.0917, 0.0017, 0.049, 0, 0, 0, -0.096, 0.0017, 0.0398, -0.0917, 0.0017, 0.049, -0.096, 0.0017, 0.0398, -0.1823, 0.0068, 0.0974, -0.1823, 0.0068, 0.0974, -0.096, 0.0017, 0.0398, -0.1909, 0.0068, 0.079, -0.1823, 0.0068, 0.0974, -0.1909, 0.0068, 0.079, -0.2705, 0.0153, 0.1447, -0.2705, 0.0153, 0.1447, -0.1909, 0.0068, 0.079, -0.2834, 0.0153, 0.1174, -0.2705, 0.0153, 0.1447, -0.2834, 0.0153, 0.1174, -0.3557, 0.027, 0.1901, -0.3557, 0.027, 0.1901, -0.2834, 0.0153, 0.1174, -0.3726, 0.027, 0.1543, -0.3557, 0.027, 0.1901, -0.3726, 0.027, 0.1543, -0.4365, 0.0418, 0.2333, -0.4365, 0.0418, 0.2333, -0.3726, 0.027, 0.1543, -0.4573, 0.0418, 0.1893, -0.4365, 0.0418, 0.2333, -0.4573, 0.0418, 0.1893, -0.5117, 0.0597, 0.2737, -0.5117, 0.0597, 0.2737, -0.4573, 0.0418, 0.1893, -0.5361, 0.0597, 0.2222, -0.5117, 0.0597, 0.2737, -0.5361, 0.0597, 0.2222, -0.5815, 0.0803, 0.3108, -0.5815, 0.0803, 0.3108, -0.5361, 0.0597, 0.2222, -0.6089, 0.0803, 0.2522, -0.5815, 0.0803, 0.3108, -0.6089, 0.0803, 0.2522, -0.644, 0.1036, 0.3442, -0.644, 0.1036, 0.3442, -0.6089, 0.0803, 0.2522, -0.6748, 0.1036, 0.2795, -0.644, 0.1036, 0.3442, -0.6748, 0.1036, 0.2795, -0.6992, 0.1295, 0.3738, -0.6992, 0.1295, 0.3738, -0.6748, 0.1036, 0.2795, -0.7329, 0.1295, 0.3035, -0.6992, 0.1295, 0.3738, -0.7329, 0.1295, 0.3035, -0.7466, 0.158, 0.3992, -0.7466, 0.158, 0.3992, -0.7329, 0.1295, 0.3035, -0.7822, 0.158, 0.324, -0.7466, 0.158, 0.3992, -0.7822, 0.158, 0.324, -0.7856, 0.1895, 0.4202, -0.7856, 0.1895, 0.4202, -0.7822, 0.158, 0.324, -0.8232, 0.1895, 0.3411, -0.7856, 0.1895, 0.4202, -0.8232, 0.1895, 0.3411, -0.8164, 0.2247, 0.4363, -0.8164, 0.2247, 0.4363, -0.8232, 0.1895, 0.3411, -0.855, 0.2247, 0.3542, -0.8164, 0.2247, 0.4363, -0.855, 0.2247, 0.3542, -0.8364, 0.2646, 0.447, -0.8364, 0.2646, 0.447, -0.855, 0.2247, 0.3542, -0.876, 0.2646, 0.3628, -0.8364, 0.2646, 0.447, -0.876, 0.2646, 0.3628, -0.8433, 0.3049, 0.4509, -0.8433, 0.3049, 0.4509, -0.876, 0.2646, 0.3628, -0.8838, 0.3049, 0.366, -0.366, 0.3049, 0.8838, -0.4509, 0.3049, 0.8433, -0.366, 0.3464, 0.8838, -0.366, 0.3464, 0.8838, -0.4509, 0.3049, 0.8433, -0.4509, 0.3464, 0.8438, -0.6763, 0.3464, 0.6763, -0.6069, 0.3464, 0.7393, -0.6763, 0.3049, 0.6763, -0.6763, 0.3049, 0.6763, -0.6069, 0.3464, 0.7393, -0.6064, 0.3049, 0.7393, -0.8438, 0.3464, 0.4509, -0.8838, 0.3464, 0.366, -0.8438, 0.3955, 0.4509, -0.8438, 0.3955, 0.4509, -0.8838, 0.3464, 0.366, -0.8838, 0.3955, 0.366, -0.0864, 0.0017, 0.0578, 0, 0, 0, -0.0917, 0.0017, 0.049, -0.0864, 0.0017, 0.0578, -0.0917, 0.0017, 0.049, -0.1718, 0.0068, 0.1148, -0.1718, 0.0068, 0.1148, -0.0917, 0.0017, 0.049, -0.1823, 0.0068, 0.0974, -0.1718, 0.0068, 0.1148, -0.1823, 0.0068, 0.0974, -0.2551, 0.0153, 0.1704, -0.2551, 0.0153, 0.1704, -0.1823, 0.0068, 0.0974, -0.2705, 0.0153, 0.1447, -0.2551, 0.0153, 0.1704, -0.2705, 0.0153, 0.1447, -0.3352, 0.027, 0.224, -0.3352, 0.027, 0.224, -0.2705, 0.0153, 0.1447, -0.3557, 0.027, 0.1901, -0.3352, 0.027, 0.224, -0.3557, 0.027, 0.1901, -0.4114, 0.0418, 0.2749, -0.4114, 0.0418, 0.2749, -0.3557, 0.027, 0.1901, -0.4365, 0.0418, 0.2333, -0.4114, 0.0418, 0.2749, -0.4365, 0.0418, 0.2333, -0.4827, 0.0597, 0.3225, -0.4827, 0.0597, 0.3225, -0.4365, 0.0418, 0.2333, -0.5117, 0.0597, 0.2737, -0.4827, 0.0597, 0.3225, -0.5117, 0.0597, 0.2737, -0.5483, 0.0803, 0.3662, -0.5483, 0.0803, 0.3662, -0.5117, 0.0597, 0.2737, -0.5815, 0.0803, 0.3108, -0.5483, 0.0803, 0.3662, -0.5815, 0.0803, 0.3108, -0.6074, 0.1036, 0.4058, -0.6074, 0.1036, 0.4058, -0.5815, 0.0803, 0.3108, -0.644, 0.1036, 0.3442, -0.6074, 0.1036, 0.4058, -0.644, 0.1036, 0.3442, -0.6592, 0.1295, 0.4407, -0.6592, 0.1295, 0.4407, -0.644, 0.1036, 0.3442, -0.6992, 0.1295, 0.3738, -0.6592, 0.1295, 0.4407, -0.6992, 0.1295, 0.3738, -0.7041, 0.158, 0.4705, -0.7041, 0.158, 0.4705, -0.6992, 0.1295, 0.3738, -0.7466, 0.158, 0.3992, -0.7041, 0.158, 0.4705, -0.7466, 0.158, 0.3992, -0.7407, 0.1895, 0.4951, -0.7407, 0.1895, 0.4951, -0.7466, 0.158, 0.3992, -0.7856, 0.1895, 0.4202, -0.7407, 0.1895, 0.4951, -0.7856, 0.1895, 0.4202, -0.7695, 0.2247, 0.5142, -0.7695, 0.2247, 0.5142, -0.7856, 0.1895, 0.4202, -0.8164, 0.2247, 0.4363, -0.7695, 0.2247, 0.5142, -0.8164, 0.2247, 0.4363, -0.7886, 0.2646, 0.5269, -0.7886, 0.2646, 0.5269, -0.8164, 0.2247, 0.4363, -0.8364, 0.2646, 0.447, -0.7886, 0.2646, 0.5269, -0.8364, 0.2646, 0.447, -0.7954, 0.3049, 0.5313, -0.7954, 0.3049, 0.5313, -0.8364, 0.2646, 0.447, -0.8433, 0.3049, 0.4509, -0.9517, 0.3049, -0.0938, -0.9521, 0.3464, -0.0938, -0.9565, 0.3049, 0, -0.9565, 0.3049, 0, -0.9521, 0.3464, -0.0938, -0.9565, 0.3464, 0, -0.4509, 0.3049, -0.8433, -0.4509, 0.3464, -0.8438, -0.5313, 0.3049, -0.7954, -0.5313, 0.3049, -0.7954, -0.4509, 0.3464, -0.8438, -0.5313, 0.3464, -0.7954, -0.7954, 0.3464, 0.5313, -0.8438, 0.3464, 0.4509, -0.7954, 0.3955, 0.5313, -0.7954, 0.3955, 0.5313, -0.8438, 0.3464, 0.4509, -0.8438, 0.3955, 0.4509, -0.0803, 0.0017, 0.0659, 0, 0, 0, -0.0864, 0.0017, 0.0578, -0.0803, 0.0017, 0.0659, -0.0864, 0.0017, 0.0578, -0.1597, 0.0068, 0.1311, -0.1597, 0.0068, 0.1311, -0.0864, 0.0017, 0.0578, -0.1718, 0.0068, 0.1148, -0.1597, 0.0068, 0.1311, -0.1718, 0.0068, 0.1148, -0.2372, 0.0153, 0.1946, -0.2372, 0.0153, 0.1946, -0.1718, 0.0068, 0.1148, -0.2551, 0.0153, 0.1704, -0.2372, 0.0153, 0.1946, -0.2551, 0.0153, 0.1704, -0.3118, 0.027, 0.2559, -0.3118, 0.027, 0.2559, -0.2551, 0.0153, 0.1704, -0.3352, 0.027, 0.224, -0.3118, 0.027, 0.2559, -0.3352, 0.027, 0.224, -0.3826, 0.0418, 0.314, -0.3826, 0.0418, 0.314, -0.3352, 0.027, 0.224, -0.4114, 0.0418, 0.2749, -0.3826, 0.0418, 0.314, -0.4114, 0.0418, 0.2749, -0.4487, 0.0597, 0.3684, -0.4487, 0.0597, 0.3684, -0.4114, 0.0418, 0.2749, -0.4827, 0.0597, 0.3225, -0.4487, 0.0597, 0.3684, -0.4827, 0.0597, 0.3225, -0.5098, 0.0803, 0.4182, -0.5098, 0.0803, 0.4182, -0.4827, 0.0597, 0.3225, -0.5483, 0.0803, 0.3662, -0.5098, 0.0803, 0.4182, -0.5483, 0.0803, 0.3662, -0.5645, 0.1036, 0.4634, -0.5645, 0.1036, 0.4634, -0.5483, 0.0803, 0.3662, -0.6074, 0.1036, 0.4058, -0.5645, 0.1036, 0.4634, -0.6074, 0.1036, 0.4058, -0.6128, 0.1295, 0.5029, -0.6128, 0.1295, 0.5029, -0.6074, 0.1036, 0.4058, -0.6592, 0.1295, 0.4407, -0.6128, 0.1295, 0.5029, -0.6592, 0.1295, 0.4407, -0.6543, 0.158, 0.5371, -0.6543, 0.158, 0.5371, -0.6592, 0.1295, 0.4407, -0.7041, 0.158, 0.4705, -0.6543, 0.158, 0.5371, -0.7041, 0.158, 0.4705, -0.689, 0.1895, 0.5654, -0.689, 0.1895, 0.5654, -0.7041, 0.158, 0.4705, -0.7407, 0.1895, 0.4951, -0.689, 0.1895, 0.5654, -0.7407, 0.1895, 0.4951, -0.7153, 0.2247, 0.5869, -0.7153, 0.2247, 0.5869, -0.7407, 0.1895, 0.4951, -0.7695, 0.2247, 0.5142, -0.7153, 0.2247, 0.5869, -0.7695, 0.2247, 0.5142, -0.7329, 0.2646, 0.6016, -0.7329, 0.2646, 0.6016, -0.7695, 0.2247, 0.5142, -0.7886, 0.2646, 0.5269, -0.7329, 0.2646, 0.6016, -0.7886, 0.2646, 0.5269, -0.7393, 0.3049, 0.6064, -0.7393, 0.3049, 0.6064, -0.7886, 0.2646, 0.5269, -0.7954, 0.3049, 0.5313, -0.7954, 0.3464, 0.5313, -0.7393, 0.3464, 0.6069, -0.7954, 0.3049, 0.5313, -0.7954, 0.3049, 0.5313, -0.7393, 0.3464, 0.6069, -0.7393, 0.3049, 0.6064, -0.7393, 0.3464, 0.6069, -0.7954, 0.3464, 0.5313, -0.7393, 0.3955, 0.6069, -0.7393, 0.3955, 0.6069, -0.7954, 0.3464, 0.5313, -0.7954, 0.3955, 0.5313, -0.0735, 0.0017, 0.0735, 0, 0, 0, -0.0803, 0.0017, 0.0659, -0.0735, 0.0017, 0.0735, -0.0803, 0.0017, 0.0659, -0.1461, 0.0068, 0.1461, -0.1461, 0.0068, 0.1461, -0.0803, 0.0017, 0.0659, -0.1597, 0.0068, 0.1311, -0.1461, 0.0068, 0.1461, -0.1597, 0.0068, 0.1311, -0.2169, 0.0153, 0.2169, -0.2169, 0.0153, 0.2169, -0.1597, 0.0068, 0.1311, -0.2372, 0.0153, 0.1946, -0.2169, 0.0153, 0.2169, -0.2372, 0.0153, 0.1946, -0.2852, 0.027, 0.2852, -0.2852, 0.027, 0.2852, -0.2372, 0.0153, 0.1946, -0.3118, 0.027, 0.2559, -0.2852, 0.027, 0.2852, -0.3118, 0.027, 0.2559, -0.3499, 0.0418, 0.3499, -0.3499, 0.0418, 0.3499, -0.3118, 0.027, 0.2559, -0.3826, 0.0418, 0.314, -0.3499, 0.0418, 0.3499, -0.3826, 0.0418, 0.314, -0.4106, 0.0597, 0.4106, -0.4106, 0.0597, 0.4106, -0.3826, 0.0418, 0.314, -0.4487, 0.0597, 0.3684, -0.4106, 0.0597, 0.4106, -0.4487, 0.0597, 0.3684, -0.4663, 0.0803, 0.4663, -0.4663, 0.0803, 0.4663, -0.4487, 0.0597, 0.3684, -0.5098, 0.0803, 0.4182, -0.4663, 0.0803, 0.4663, -0.5098, 0.0803, 0.4182, -0.5166, 0.1036, 0.5166, -0.5166, 0.1036, 0.5166, -0.5098, 0.0803, 0.4182, -0.5645, 0.1036, 0.4634, -0.5166, 0.1036, 0.5166, -0.5645, 0.1036, 0.4634, -0.5605, 0.1295, 0.5605, -0.5605, 0.1295, 0.5605, -0.5645, 0.1036, 0.4634, -0.6128, 0.1295, 0.5029, -0.5605, 0.1295, 0.5605, -0.6128, 0.1295, 0.5029, -0.5986, 0.158, 0.5986, -0.5986, 0.158, 0.5986, -0.6128, 0.1295, 0.5029, -0.6543, 0.158, 0.5371, -0.5986, 0.158, 0.5986, -0.6543, 0.158, 0.5371, -0.6299, 0.1895, 0.6299, -0.6299, 0.1895, 0.6299, -0.6543, 0.158, 0.5371, -0.689, 0.1895, 0.5654, -0.6299, 0.1895, 0.6299, -0.689, 0.1895, 0.5654, -0.6543, 0.2247, 0.6543, -0.6543, 0.2247, 0.6543, -0.689, 0.1895, 0.5654, -0.7153, 0.2247, 0.5869, -0.6543, 0.2247, 0.6543, -0.7153, 0.2247, 0.5869, -0.6704, 0.2646, 0.6704, -0.6704, 0.2646, 0.6704, -0.7153, 0.2247, 0.5869, -0.7329, 0.2646, 0.6016, -0.6704, 0.2646, 0.6704, -0.7329, 0.2646, 0.6016, -0.6763, 0.3049, 0.6763, -0.6763, 0.3049, 0.6763, -0.7329, 0.2646, 0.6016, -0.7393, 0.3049, 0.6064, -0.366, 0.3049, 0.8838, -0.366, 0.3464, 0.8838, -0.2776, 0.3049, 0.915, -0.2776, 0.3049, 0.915, -0.366, 0.3464, 0.8838, -0.2776, 0.3464, 0.9155, -0.6763, 0.3464, 0.6763, -0.7393, 0.3464, 0.6069, -0.6763, 0.3955, 0.6763, -0.6763, 0.3955, 0.6763, -0.7393, 0.3464, 0.6069, -0.7393, 0.3955, 0.6069, -0.0659, 0.0017, 0.0803, 0, 0, 0, -0.0735, 0.0017, 0.0735, -0.0659, 0.0017, 0.0803, -0.0735, 0.0017, 0.0735, -0.1311, 0.0068, 0.1597, -0.1311, 0.0068, 0.1597, -0.0735, 0.0017, 0.0735, -0.1461, 0.0068, 0.1461, -0.1311, 0.0068, 0.1597, -0.1461, 0.0068, 0.1461, -0.1946, 0.0153, 0.2372, -0.1946, 0.0153, 0.2372, -0.1461, 0.0068, 0.1461, -0.2169, 0.0153, 0.2169, -0.1946, 0.0153, 0.2372, -0.2169, 0.0153, 0.2169, -0.2559, 0.027, 0.3118, -0.2559, 0.027, 0.3118, -0.2169, 0.0153, 0.2169, -0.2852, 0.027, 0.2852, -0.2559, 0.027, 0.3118, -0.2852, 0.027, 0.2852, -0.314, 0.0418, 0.3826, -0.314, 0.0418, 0.3826, -0.2852, 0.027, 0.2852, -0.3499, 0.0418, 0.3499, -0.314, 0.0418, 0.3826, -0.3499, 0.0418, 0.3499, -0.3684, 0.0597, 0.4487, -0.3684, 0.0597, 0.4487, -0.3499, 0.0418, 0.3499, -0.4106, 0.0597, 0.4106, -0.3684, 0.0597, 0.4487, -0.4106, 0.0597, 0.4106, -0.4182, 0.0803, 0.5098, -0.4182, 0.0803, 0.5098, -0.4106, 0.0597, 0.4106, -0.4663, 0.0803, 0.4663, -0.4182, 0.0803, 0.5098, -0.4663, 0.0803, 0.4663, -0.4634, 0.1036, 0.5645, -0.4634, 0.1036, 0.5645, -0.4663, 0.0803, 0.4663, -0.5166, 0.1036, 0.5166, -0.4634, 0.1036, 0.5645, -0.5166, 0.1036, 0.5166, -0.5029, 0.1295, 0.6128, -0.5029, 0.1295, 0.6128, -0.5166, 0.1036, 0.5166, -0.5605, 0.1295, 0.5605, -0.5029, 0.1295, 0.6128, -0.5605, 0.1295, 0.5605, -0.5371, 0.158, 0.6543, -0.5371, 0.158, 0.6543, -0.5605, 0.1295, 0.5605, -0.5986, 0.158, 0.5986, -0.5371, 0.158, 0.6543, -0.5986, 0.158, 0.5986, -0.5654, 0.1895, 0.689, -0.5654, 0.1895, 0.689, -0.5986, 0.158, 0.5986, -0.6299, 0.1895, 0.6299, -0.5654, 0.1895, 0.689, -0.6299, 0.1895, 0.6299, -0.5869, 0.2247, 0.7153, -0.5869, 0.2247, 0.7153, -0.6299, 0.1895, 0.6299, -0.6543, 0.2247, 0.6543, -0.5869, 0.2247, 0.7153, -0.6543, 0.2247, 0.6543, -0.6016, 0.2646, 0.7329, -0.6016, 0.2646, 0.7329, -0.6543, 0.2247, 0.6543, -0.6704, 0.2646, 0.6704, -0.6016, 0.2646, 0.7329, -0.6704, 0.2646, 0.6704, -0.6064, 0.3049, 0.7393, -0.6064, 0.3049, 0.7393, -0.6704, 0.2646, 0.6704, -0.6763, 0.3049, 0.6763, -0.9517, 0.3049, -0.0938, -0.938, 0.3049, -0.1865, -0.9521, 0.3464, -0.0938, -0.9521, 0.3464, -0.0938, -0.938, 0.3049, -0.1865, -0.9385, 0.3464, -0.1866, -0.6763, 0.3464, 0.6763, -0.6763, 0.3049, 0.6763, -0.7393, 0.3464, 0.6069, -0.7393, 0.3464, 0.6069, -0.6763, 0.3049, 0.6763, -0.7393, 0.3049, 0.6064, -0.6069, 0.3464, 0.7393, -0.6763, 0.3464, 0.6763, -0.6069, 0.3955, 0.7393, -0.6069, 0.3955, 0.7393, -0.6763, 0.3464, 0.6763, -0.6763, 0.3955, 0.6763, -0.0578, 0.0017, 0.0864, 0, 0, 0, -0.0659, 0.0017, 0.0803, -0.0578, 0.0017, 0.0864, -0.0659, 0.0017, 0.0803, -0.1148, 0.0068, 0.1718, -0.1148, 0.0068, 0.1718, -0.0659, 0.0017, 0.0803, -0.1311, 0.0068, 0.1597, -0.1148, 0.0068, 0.1718, -0.1311, 0.0068, 0.1597, -0.1704, 0.0153, 0.2551, -0.1704, 0.0153, 0.2551, -0.1311, 0.0068, 0.1597, -0.1946, 0.0153, 0.2372, -0.1704, 0.0153, 0.2551, -0.1946, 0.0153, 0.2372, -0.224, 0.027, 0.3352, -0.224, 0.027, 0.3352, -0.1946, 0.0153, 0.2372, -0.2559, 0.027, 0.3118, -0.224, 0.027, 0.3352, -0.2559, 0.027, 0.3118, -0.2749, 0.0418, 0.4114, -0.2749, 0.0418, 0.4114, -0.2559, 0.027, 0.3118, -0.314, 0.0418, 0.3826, -0.2749, 0.0418, 0.4114, -0.314, 0.0418, 0.3826, -0.3225, 0.0597, 0.4827, -0.3225, 0.0597, 0.4827, -0.314, 0.0418, 0.3826, -0.3684, 0.0597, 0.4487, -0.3225, 0.0597, 0.4827, -0.3684, 0.0597, 0.4487, -0.3662, 0.0803, 0.5483, -0.3662, 0.0803, 0.5483, -0.3684, 0.0597, 0.4487, -0.4182, 0.0803, 0.5098, -0.3662, 0.0803, 0.5483, -0.4182, 0.0803, 0.5098, -0.4058, 0.1036, 0.6074, -0.4058, 0.1036, 0.6074, -0.4182, 0.0803, 0.5098, -0.4634, 0.1036, 0.5645, -0.4058, 0.1036, 0.6074, -0.4634, 0.1036, 0.5645, -0.4407, 0.1295, 0.6592, -0.4407, 0.1295, 0.6592, -0.4634, 0.1036, 0.5645, -0.5029, 0.1295, 0.6128, -0.4407, 0.1295, 0.6592, -0.5029, 0.1295, 0.6128, -0.4705, 0.158, 0.7041, -0.4705, 0.158, 0.7041, -0.5029, 0.1295, 0.6128, -0.5371, 0.158, 0.6543, -0.4705, 0.158, 0.7041, -0.5371, 0.158, 0.6543, -0.4951, 0.1895, 0.7407, -0.4951, 0.1895, 0.7407, -0.5371, 0.158, 0.6543, -0.5654, 0.1895, 0.689, -0.4951, 0.1895, 0.7407, -0.5654, 0.1895, 0.689, -0.5142, 0.2247, 0.7695, -0.5142, 0.2247, 0.7695, -0.5654, 0.1895, 0.689, -0.5869, 0.2247, 0.7153, -0.5142, 0.2247, 0.7695, -0.5869, 0.2247, 0.7153, -0.5269, 0.2646, 0.7886, -0.5269, 0.2646, 0.7886, -0.5869, 0.2247, 0.7153, -0.6016, 0.2646, 0.7329, -0.5269, 0.2646, 0.7886, -0.6016, 0.2646, 0.7329, -0.5313, 0.3049, 0.7954, -0.5313, 0.3049, 0.7954, -0.6016, 0.2646, 0.7329, -0.6064, 0.3049, 0.7393, -0.4509, 0.3049, 0.8433, -0.5313, 0.3049, 0.7954, -0.4509, 0.3464, 0.8438, -0.4509, 0.3464, 0.8438, -0.5313, 0.3049, 0.7954, -0.5313, 0.3464, 0.7954, -0.4473, 0.3955, 0.8369, -0.5205, 0.3955, 0.7925, -0.4004, 0.3955, 0.749, -0.4004, 0.3955, 0.749, -0.5205, 0.3955, 0.7925, -0.4644, 0.3955, 0.7109, -0.049, 0.0017, 0.0917, 0, 0, 0, -0.0578, 0.0017, 0.0864, -0.049, 0.0017, 0.0917, -0.0578, 0.0017, 0.0864, -0.0974, 0.0068, 0.1823, -0.0974, 0.0068, 0.1823, -0.0578, 0.0017, 0.0864, -0.1148, 0.0068, 0.1718, -0.0974, 0.0068, 0.1823, -0.1148, 0.0068, 0.1718, -0.1447, 0.0153, 0.2705, -0.1447, 0.0153, 0.2705, -0.1148, 0.0068, 0.1718, -0.1704, 0.0153, 0.2551, -0.1447, 0.0153, 0.2705, -0.1704, 0.0153, 0.2551, -0.1901, 0.027, 0.3557, -0.1901, 0.027, 0.3557, -0.1704, 0.0153, 0.2551, -0.224, 0.027, 0.3352, -0.1901, 0.027, 0.3557, -0.224, 0.027, 0.3352, -0.2333, 0.0418, 0.4365, -0.2333, 0.0418, 0.4365, -0.224, 0.027, 0.3352, -0.2749, 0.0418, 0.4114, -0.2333, 0.0418, 0.4365, -0.2749, 0.0418, 0.4114, -0.2737, 0.0597, 0.5117, -0.2737, 0.0597, 0.5117, -0.2749, 0.0418, 0.4114, -0.3225, 0.0597, 0.4827, -0.2737, 0.0597, 0.5117, -0.3225, 0.0597, 0.4827, -0.3108, 0.0803, 0.5815, -0.3108, 0.0803, 0.5815, -0.3225, 0.0597, 0.4827, -0.3662, 0.0803, 0.5483, -0.3108, 0.0803, 0.5815, -0.3662, 0.0803, 0.5483, -0.3442, 0.1036, 0.644, -0.3442, 0.1036, 0.644, -0.3662, 0.0803, 0.5483, -0.4058, 0.1036, 0.6074, -0.3442, 0.1036, 0.644, -0.4058, 0.1036, 0.6074, -0.3738, 0.1295, 0.6992, -0.3738, 0.1295, 0.6992, -0.4058, 0.1036, 0.6074, -0.4407, 0.1295, 0.6592, -0.3738, 0.1295, 0.6992, -0.4407, 0.1295, 0.6592, -0.3992, 0.158, 0.7466, -0.3992, 0.158, 0.7466, -0.4407, 0.1295, 0.6592, -0.4705, 0.158, 0.7041, -0.3992, 0.158, 0.7466, -0.4705, 0.158, 0.7041, -0.4202, 0.1895, 0.7856, -0.4202, 0.1895, 0.7856, -0.4705, 0.158, 0.7041, -0.4951, 0.1895, 0.7407, -0.4202, 0.1895, 0.7856, -0.4951, 0.1895, 0.7407, -0.4363, 0.2247, 0.8164, -0.4363, 0.2247, 0.8164, -0.4951, 0.1895, 0.7407, -0.5142, 0.2247, 0.7695, -0.4363, 0.2247, 0.8164, -0.5142, 0.2247, 0.7695, -0.447, 0.2646, 0.8364, -0.447, 0.2646, 0.8364, -0.5142, 0.2247, 0.7695, -0.5269, 0.2646, 0.7886, -0.447, 0.2646, 0.8364, -0.5269, 0.2646, 0.7886, -0.4509, 0.3049, 0.8433, -0.4509, 0.3049, 0.8433, -0.5269, 0.2646, 0.7886, -0.5313, 0.3049, 0.7954, -0.366, 0.3049, -0.8838, -0.2776, 0.3049, -0.915, -0.366, 0.3464, -0.8838, -0.366, 0.3464, -0.8838, -0.2776, 0.3049, -0.915, -0.2776, 0.3464, -0.9155, -0.2776, 0.3049, -0.915, -0.1865, 0.3049, -0.938, -0.2776, 0.3464, -0.9155, -0.2776, 0.3464, -0.9155, -0.1865, 0.3049, -0.938, -0.1866, 0.3464, -0.9385, -0.5313, 0.3464, 0.7954, -0.6069, 0.3464, 0.7393, -0.5381, 0.3877, 0.7905, -0.5381, 0.3877, 0.7905, -0.6069, 0.3464, 0.7393, -0.6069, 0.3955, 0.7393, -0.0398, 0.0017, 0.096, 0, 0, 0, -0.049, 0.0017, 0.0917, -0.0398, 0.0017, 0.096, -0.049, 0.0017, 0.0917, -0.079, 0.0068, 0.1909, -0.079, 0.0068, 0.1909, -0.049, 0.0017, 0.0917, -0.0974, 0.0068, 0.1823, -0.079, 0.0068, 0.1909, -0.0974, 0.0068, 0.1823, -0.1174, 0.0153, 0.2834, -0.1174, 0.0153, 0.2834, -0.0974, 0.0068, 0.1823, -0.1447, 0.0153, 0.2705, -0.1174, 0.0153, 0.2834, -0.1447, 0.0153, 0.2705, -0.1543, 0.027, 0.3726, -0.1543, 0.027, 0.3726, -0.1447, 0.0153, 0.2705, -0.1901, 0.027, 0.3557, -0.1543, 0.027, 0.3726, -0.1901, 0.027, 0.3557, -0.1893, 0.0418, 0.4573, -0.1893, 0.0418, 0.4573, -0.1901, 0.027, 0.3557, -0.2333, 0.0418, 0.4365, -0.1893, 0.0418, 0.4573, -0.2333, 0.0418, 0.4365, -0.2222, 0.0597, 0.5361, -0.2222, 0.0597, 0.5361, -0.2333, 0.0418, 0.4365, -0.2737, 0.0597, 0.5117, -0.2222, 0.0597, 0.5361, -0.2737, 0.0597, 0.5117, -0.2522, 0.0803, 0.6089, -0.2522, 0.0803, 0.6089, -0.2737, 0.0597, 0.5117, -0.3108, 0.0803, 0.5815, -0.2522, 0.0803, 0.6089, -0.3108, 0.0803, 0.5815, -0.2795, 0.1036, 0.6748, -0.2795, 0.1036, 0.6748, -0.3108, 0.0803, 0.5815, -0.3442, 0.1036, 0.644, -0.2795, 0.1036, 0.6748, -0.3442, 0.1036, 0.644, -0.3035, 0.1295, 0.7329, -0.3035, 0.1295, 0.7329, -0.3442, 0.1036, 0.644, -0.3738, 0.1295, 0.6992, -0.3035, 0.1295, 0.7329, -0.3738, 0.1295, 0.6992, -0.324, 0.158, 0.7822, -0.324, 0.158, 0.7822, -0.3738, 0.1295, 0.6992, -0.3992, 0.158, 0.7466, -0.324, 0.158, 0.7822, -0.3992, 0.158, 0.7466, -0.3411, 0.1895, 0.8232, -0.3411, 0.1895, 0.8232, -0.3992, 0.158, 0.7466, -0.4202, 0.1895, 0.7856, -0.3411, 0.1895, 0.8232, -0.4202, 0.1895, 0.7856, -0.3542, 0.2247, 0.855, -0.3542, 0.2247, 0.855, -0.4202, 0.1895, 0.7856, -0.4363, 0.2247, 0.8164, -0.3542, 0.2247, 0.855, -0.4363, 0.2247, 0.8164, -0.3628, 0.2646, 0.876, -0.3628, 0.2646, 0.876, -0.4363, 0.2247, 0.8164, -0.447, 0.2646, 0.8364, -0.3628, 0.2646, 0.876, -0.447, 0.2646, 0.8364, -0.366, 0.3049, 0.8838, -0.366, 0.3049, 0.8838, -0.447, 0.2646, 0.8364, -0.4509, 0.3049, 0.8433, -0.9521, 0.3464, 0.0938, -0.9517, 0.3049, 0.0938, -0.9565, 0.3464, 0, -0.9565, 0.3464, 0, -0.9517, 0.3049, 0.0938, -0.9565, 0.3049, 0, -0.363, 0.3955, 0.8765, -0.4473, 0.3955, 0.8369, -0.3252, 0.3955, 0.7847, -0.3252, 0.3955, 0.7847, -0.4473, 0.3955, 0.8369, -0.4004, 0.3955, 0.749, -0.0302, 0.0017, 0.0995, 0, 0, 0, -0.0398, 0.0017, 0.096, -0.0302, 0.0017, 0.0995, -0.0398, 0.0017, 0.096, -0.06, 0.0068, 0.1978, -0.06, 0.0068, 0.1978, -0.0398, 0.0017, 0.096, -0.079, 0.0068, 0.1909, -0.06, 0.0068, 0.1978, -0.079, 0.0068, 0.1909, -0.0891, 0.0153, 0.2935, -0.0891, 0.0153, 0.2935, -0.079, 0.0068, 0.1909, -0.1174, 0.0153, 0.2834, -0.0891, 0.0153, 0.2935, -0.1174, 0.0153, 0.2834, -0.1171, 0.027, 0.386, -0.1171, 0.027, 0.386, -0.1174, 0.0153, 0.2834, -0.1543, 0.027, 0.3726, -0.1171, 0.027, 0.386, -0.1543, 0.027, 0.3726, -0.1437, 0.0418, 0.4736, -0.1437, 0.0418, 0.4736, -0.1543, 0.027, 0.3726, -0.1893, 0.0418, 0.4573, -0.1437, 0.0418, 0.4736, -0.1893, 0.0418, 0.4573, -0.1686, 0.0597, 0.5557, -0.1686, 0.0597, 0.5557, -0.1893, 0.0418, 0.4573, -0.2222, 0.0597, 0.5361, -0.1686, 0.0597, 0.5557, -0.2222, 0.0597, 0.5361, -0.1914, 0.0803, 0.6309, -0.1914, 0.0803, 0.6309, -0.2222, 0.0597, 0.5361, -0.2522, 0.0803, 0.6089, -0.1914, 0.0803, 0.6309, -0.2522, 0.0803, 0.6089, -0.212, 0.1036, 0.6987, -0.212, 0.1036, 0.6987, -0.2522, 0.0803, 0.6089, -0.2795, 0.1036, 0.6748, -0.212, 0.1036, 0.6987, -0.2795, 0.1036, 0.6748, -0.2302, 0.1295, 0.7588, -0.2302, 0.1295, 0.7588, -0.2795, 0.1036, 0.6748, -0.3035, 0.1295, 0.7329, -0.2302, 0.1295, 0.7588, -0.3035, 0.1295, 0.7329, -0.2458, 0.158, 0.8101, -0.2458, 0.158, 0.8101, -0.3035, 0.1295, 0.7329, -0.324, 0.158, 0.7822, -0.2458, 0.158, 0.8101, -0.324, 0.158, 0.7822, -0.2585, 0.1895, 0.8525, -0.2585, 0.1895, 0.8525, -0.324, 0.158, 0.7822, -0.3411, 0.1895, 0.8232, -0.2585, 0.1895, 0.8525, -0.3411, 0.1895, 0.8232, -0.2686, 0.2247, 0.8857, -0.2686, 0.2247, 0.8857, -0.3411, 0.1895, 0.8232, -0.3542, 0.2247, 0.855, -0.2686, 0.2247, 0.8857, -0.3542, 0.2247, 0.855, -0.2751, 0.2646, 0.9077, -0.2751, 0.2646, 0.9077, -0.3542, 0.2247, 0.855, -0.3628, 0.2646, 0.876, -0.2751, 0.2646, 0.9077, -0.3628, 0.2646, 0.876, -0.2776, 0.3049, 0.915, -0.2776, 0.3049, 0.915, -0.3628, 0.2646, 0.876, -0.366, 0.3049, 0.8838, -0.2754, 0.3955, 0.9077, -0.363, 0.3955, 0.8765, -0.2466, 0.3955, 0.813, -0.2466, 0.3955, 0.813, -0.363, 0.3955, 0.8765, -0.3252, 0.3955, 0.7847, -0.0203, 0.0017, 0.1019, 0, 0, 0, -0.0302, 0.0017, 0.0995, -0.0203, 0.0017, 0.1019, -0.0302, 0.0017, 0.0995, -0.0403, 0.0068, 0.2026, -0.0403, 0.0068, 0.2026, -0.0302, 0.0017, 0.0995, -0.06, 0.0068, 0.1978, -0.0403, 0.0068, 0.2026, -0.06, 0.0068, 0.1978, -0.0598, 0.0153, 0.3008, -0.0598, 0.0153, 0.3008, -0.06, 0.0068, 0.1978, -0.0891, 0.0153, 0.2935, -0.0598, 0.0153, 0.3008, -0.0891, 0.0153, 0.2935, -0.0787, 0.027, 0.3955, -0.0787, 0.027, 0.3955, -0.0891, 0.0153, 0.2935, -0.1171, 0.027, 0.386, -0.0787, 0.027, 0.3955, -0.1171, 0.027, 0.386, -0.0966, 0.0418, 0.4854, -0.0966, 0.0418, 0.4854, -0.1171, 0.027, 0.386, -0.1437, 0.0418, 0.4736, -0.0966, 0.0418, 0.4854, -0.1437, 0.0418, 0.4736, -0.1133, 0.0597, 0.5693, -0.1133, 0.0597, 0.5693, -0.1437, 0.0418, 0.4736, -0.1686, 0.0597, 0.5557, -0.1133, 0.0597, 0.5693, -0.1686, 0.0597, 0.5557, -0.1287, 0.0803, 0.6465, -0.1287, 0.0803, 0.6465, -0.1686, 0.0597, 0.5557, -0.1914, 0.0803, 0.6309, -0.1287, 0.0803, 0.6465, -0.1914, 0.0803, 0.6309, -0.1425, 0.1036, 0.7163, -0.1425, 0.1036, 0.7163, -0.1914, 0.0803, 0.6309, -0.212, 0.1036, 0.6987, -0.1425, 0.1036, 0.7163, -0.212, 0.1036, 0.6987, -0.1547, 0.1295, 0.7778, -0.1547, 0.1295, 0.7778, -0.212, 0.1036, 0.6987, -0.2302, 0.1295, 0.7588, -0.1547, 0.1295, 0.7778, -0.2302, 0.1295, 0.7588, -0.1652, 0.158, 0.8306, -0.1652, 0.158, 0.8306, -0.2302, 0.1295, 0.7588, -0.2458, 0.158, 0.8101, -0.1652, 0.158, 0.8306, -0.2458, 0.158, 0.8101, -0.1738, 0.1895, 0.874, -0.1738, 0.1895, 0.874, -0.2458, 0.158, 0.8101, -0.2585, 0.1895, 0.8525, -0.1738, 0.1895, 0.874, -0.2585, 0.1895, 0.8525, -0.1805, 0.2247, 0.9077, -0.1805, 0.2247, 0.9077, -0.2585, 0.1895, 0.8525, -0.2686, 0.2247, 0.8857, -0.1805, 0.2247, 0.9077, -0.2686, 0.2247, 0.8857, -0.1851, 0.2646, 0.9302, -0.1851, 0.2646, 0.9302, -0.2686, 0.2247, 0.8857, -0.2751, 0.2646, 0.9077, -0.1851, 0.2646, 0.9302, -0.2751, 0.2646, 0.9077, -0.1865, 0.3049, 0.938, -0.1865, 0.3049, 0.938, -0.2751, 0.2646, 0.9077, -0.2776, 0.3049, 0.915, -0.5313, 0.3049, -0.7954, -0.5313, 0.3464, -0.7954, -0.6064, 0.3049, -0.7393, -0.6064, 0.3049, -0.7393, -0.5313, 0.3464, -0.7954, -0.6069, 0.3464, -0.7393, -0.915, 0.3049, -0.2776, -0.9155, 0.3464, -0.2776, -0.938, 0.3049, -0.1865, -0.938, 0.3049, -0.1865, -0.9155, 0.3464, -0.2776, -0.9385, 0.3464, -0.1866, -0.1923, 0.3955, 0.9287, -0.2754, 0.3955, 0.9077, -0.1744, 0.3955, 0.8311, -0.1744, 0.3955, 0.8311, -0.2754, 0.3955, 0.9077, -0.2466, 0.3955, 0.813, -0.0102, 0.0017, 0.1035, 0, 0, 0, -0.0203, 0.0017, 0.1019, -0.0102, 0.0017, 0.1035, -0.0203, 0.0017, 0.1019, -0.0202, 0.0068, 0.2057, -0.0202, 0.0068, 0.2057, -0.0203, 0.0017, 0.1019, -0.0403, 0.0068, 0.2026, -0.0202, 0.0068, 0.2057, -0.0403, 0.0068, 0.2026, -0.0301, 0.0153, 0.3052, -0.0301, 0.0153, 0.3052, -0.0403, 0.0068, 0.2026, -0.0598, 0.0153, 0.3008, -0.0301, 0.0153, 0.3052, -0.0598, 0.0153, 0.3008, -0.0395, 0.027, 0.4014, -0.0395, 0.027, 0.4014, -0.0598, 0.0153, 0.3008, -0.0787, 0.027, 0.3955, -0.0395, 0.027, 0.4014, -0.0787, 0.027, 0.3955, -0.0485, 0.0418, 0.4924, -0.0485, 0.0418, 0.4924, -0.0787, 0.027, 0.3955, -0.0966, 0.0418, 0.4854, -0.0485, 0.0418, 0.4924, -0.0966, 0.0418, 0.4854, -0.0569, 0.0597, 0.5776, -0.0569, 0.0597, 0.5776, -0.0966, 0.0418, 0.4854, -0.1133, 0.0597, 0.5693, -0.0569, 0.0597, 0.5776, -0.1133, 0.0597, 0.5693, -0.0646, 0.0803, 0.6563, -0.0646, 0.0803, 0.6563, -0.1133, 0.0597, 0.5693, -0.1287, 0.0803, 0.6465, -0.0646, 0.0803, 0.6563, -0.1287, 0.0803, 0.6465, -0.0716, 0.1036, 0.7271, -0.0716, 0.1036, 0.7271, -0.1287, 0.0803, 0.6465, -0.1425, 0.1036, 0.7163, -0.0716, 0.1036, 0.7271, -0.1425, 0.1036, 0.7163, -0.0777, 0.1295, 0.7891, -0.0777, 0.1295, 0.7891, -0.1425, 0.1036, 0.7163, -0.1547, 0.1295, 0.7778, -0.0777, 0.1295, 0.7891, -0.1547, 0.1295, 0.7778, -0.083, 0.158, 0.8428, -0.083, 0.158, 0.8428, -0.1547, 0.1295, 0.7778, -0.1652, 0.158, 0.8306, -0.083, 0.158, 0.8428, -0.1652, 0.158, 0.8306, -0.0873, 0.1895, 0.8867, -0.0873, 0.1895, 0.8867, -0.1652, 0.158, 0.8306, -0.1738, 0.1895, 0.874, -0.0873, 0.1895, 0.8867, -0.1738, 0.1895, 0.874, -0.0907, 0.2247, 0.9209, -0.0907, 0.2247, 0.9209, -0.1738, 0.1895, 0.874, -0.1805, 0.2247, 0.9077, -0.0907, 0.2247, 0.9209, -0.1805, 0.2247, 0.9077, -0.093, 0.2646, 0.9438, -0.093, 0.2646, 0.9438, -0.1805, 0.2247, 0.9077, -0.1851, 0.2646, 0.9302, -0.093, 0.2646, 0.9438, -0.1851, 0.2646, 0.9302, -0.0938, 0.3049, 0.9517, -0.0938, 0.3049, 0.9517, -0.1851, 0.2646, 0.9302, -0.1865, 0.3049, 0.938, -0.0938, 0.3955, 0.9521, -0.1783, 0.3877, 0.9395, -0.0938, 0.4724, 0.9521, -0.0938, 0.4724, 0.9521, -0.1783, 0.3877, 0.9395, -0.1769, 0.4724, 0.9399, 0, 0.0017, 0.1039, 0, 0, 0, -0.0102, 0.0017, 0.1035, 0, 0.0017, 0.1039, -0.0102, 0.0017, 0.1035, 0, 0.0068, 0.2067, 0, 0.0068, 0.2067, -0.0102, 0.0017, 0.1035, -0.0202, 0.0068, 0.2057, 0, 0.0068, 0.2067, -0.0202, 0.0068, 0.2057, 0, 0.0153, 0.3069, 0, 0.0153, 0.3069, -0.0202, 0.0068, 0.2057, -0.0301, 0.0153, 0.3052, 0, 0.0153, 0.3069, -0.0301, 0.0153, 0.3052, 0, 0.027, 0.4033, 0, 0.027, 0.4033, -0.0301, 0.0153, 0.3052, -0.0395, 0.027, 0.4014, 0, 0.027, 0.4033, -0.0395, 0.027, 0.4014, 0, 0.0418, 0.4949, 0, 0.0418, 0.4949, -0.0395, 0.027, 0.4014, -0.0485, 0.0418, 0.4924, 0, 0.0418, 0.4949, -0.0485, 0.0418, 0.4924, 0, 0.0597, 0.5806, 0, 0.0597, 0.5806, -0.0485, 0.0418, 0.4924, -0.0569, 0.0597, 0.5776, 0, 0.0597, 0.5806, -0.0569, 0.0597, 0.5776, 0, 0.0803, 0.6592, 0, 0.0803, 0.6592, -0.0569, 0.0597, 0.5776, -0.0646, 0.0803, 0.6563, 0, 0.0803, 0.6592, -0.0646, 0.0803, 0.6563, 0, 0.1036, 0.7305, 0, 0.1036, 0.7305, -0.0646, 0.0803, 0.6563, -0.0716, 0.1036, 0.7271, 0, 0.1036, 0.7305, -0.0716, 0.1036, 0.7271, 0, 0.1295, 0.793, 0, 0.1295, 0.793, -0.0716, 0.1036, 0.7271, -0.0777, 0.1295, 0.7891, 0, 0.1295, 0.793, -0.0777, 0.1295, 0.7891, 0, 0.158, 0.8467, 0, 0.158, 0.8467, -0.0777, 0.1295, 0.7891, -0.083, 0.158, 0.8428, 0, 0.158, 0.8467, -0.083, 0.158, 0.8428, 0, 0.1895, 0.8911, 0, 0.1895, 0.8911, -0.083, 0.158, 0.8428, -0.0873, 0.1895, 0.8867, 0, 0.1895, 0.8911, -0.0873, 0.1895, 0.8867, 0, 0.2247, 0.9253, 0, 0.2247, 0.9253, -0.0873, 0.1895, 0.8867, -0.0907, 0.2247, 0.9209, 0, 0.2247, 0.9253, -0.0907, 0.2247, 0.9209, 0, 0.2646, 0.9482, 0, 0.2646, 0.9482, -0.0907, 0.2247, 0.9209, -0.093, 0.2646, 0.9438, 0, 0.2646, 0.9482, -0.093, 0.2646, 0.9438, 0, 0.3049, 0.9565, 0, 0.3049, 0.9565, -0.093, 0.2646, 0.9438, -0.0938, 0.3049, 0.9517, 0, 0.3464, 0.9565, -0.0938, 0.3464, 0.9521, 0, 0.3955, 0.9565, 0, 0.3955, 0.9565, -0.0938, 0.3464, 0.9521, -0.0938, 0.3955, 0.9521, -0.0102, 0.0017, -0.1035, 0, 0, 0, 0, 0.0017, -0.1039, -0.0102, 0.0017, -0.1035, 0, 0.0017, -0.1039, -0.0202, 0.0068, -0.2057, -0.0202, 0.0068, -0.2057, 0, 0.0017, -0.1039, 0, 0.0068, -0.2067, -0.0202, 0.0068, -0.2057, 0, 0.0068, -0.2067, -0.0301, 0.0153, -0.3052, -0.0301, 0.0153, -0.3052, 0, 0.0068, -0.2067, 0, 0.0153, -0.3069, -0.0301, 0.0153, -0.3052, 0, 0.0153, -0.3069, -0.0395, 0.027, -0.4014, -0.0395, 0.027, -0.4014, 0, 0.0153, -0.3069, 0, 0.027, -0.4033, -0.0395, 0.027, -0.4014, 0, 0.027, -0.4033, -0.0485, 0.0418, -0.4924, -0.0485, 0.0418, -0.4924, 0, 0.027, -0.4033, 0, 0.0418, -0.4949, -0.0485, 0.0418, -0.4924, 0, 0.0418, -0.4949, -0.0569, 0.0597, -0.5776, -0.0569, 0.0597, -0.5776, 0, 0.0418, -0.4949, 0, 0.0597, -0.5806, -0.0569, 0.0597, -0.5776, 0, 0.0597, -0.5806, -0.0646, 0.0803, -0.6563, -0.0646, 0.0803, -0.6563, 0, 0.0597, -0.5806, 0, 0.0803, -0.6592, -0.0646, 0.0803, -0.6563, 0, 0.0803, -0.6592, -0.0716, 0.1036, -0.7271, -0.0716, 0.1036, -0.7271, 0, 0.0803, -0.6592, 0, 0.1036, -0.7305, -0.0716, 0.1036, -0.7271, 0, 0.1036, -0.7305, -0.0777, 0.1295, -0.7891, -0.0777, 0.1295, -0.7891, 0, 0.1036, -0.7305, 0, 0.1295, -0.793, -0.0777, 0.1295, -0.7891, 0, 0.1295, -0.793, -0.083, 0.158, -0.8428, -0.083, 0.158, -0.8428, 0, 0.1295, -0.793, 0, 0.158, -0.8467, -0.083, 0.158, -0.8428, 0, 0.158, -0.8467, -0.0873, 0.1895, -0.8867, -0.0873, 0.1895, -0.8867, 0, 0.158, -0.8467, 0, 0.1895, -0.8911, -0.0873, 0.1895, -0.8867, 0, 0.1895, -0.8911, -0.0907, 0.2247, -0.9209, -0.0907, 0.2247, -0.9209, 0, 0.1895, -0.8911, 0, 0.2247, -0.9253, -0.0907, 0.2247, -0.9209, 0, 0.2247, -0.9253, -0.093, 0.2646, -0.9438, -0.093, 0.2646, -0.9438, 0, 0.2247, -0.9253, 0, 0.2646, -0.9482, -0.093, 0.2646, -0.9438, 0, 0.2646, -0.9482, -0.0938, 0.3049, -0.9517, -0.0938, 0.3049, -0.9517, 0, 0.2646, -0.9482, 0, 0.3049, -0.9565, -0.366, 0.3464, -0.8838, -0.4509, 0.3464, -0.8438, -0.366, 0.3049, -0.8838, -0.366, 0.3049, -0.8838, -0.4509, 0.3464, -0.8438, -0.4509, 0.3049, -0.8433, -0.0938, 0.3464, -0.9521, 0, 0.3464, -0.9565, -0.0938, 0.3955, -0.9521, -0.0938, 0.3955, -0.9521, 0, 0.3464, -0.9565, 0, 0.3955, -0.9565, -0.0203, 0.0017, -0.1019, 0, 0, 0, -0.0102, 0.0017, -0.1035, -0.0203, 0.0017, -0.1019, -0.0102, 0.0017, -0.1035, -0.0403, 0.0068, -0.2026, -0.0403, 0.0068, -0.2026, -0.0102, 0.0017, -0.1035, -0.0202, 0.0068, -0.2057, -0.0403, 0.0068, -0.2026, -0.0202, 0.0068, -0.2057, -0.0598, 0.0153, -0.3008, -0.0598, 0.0153, -0.3008, -0.0202, 0.0068, -0.2057, -0.0301, 0.0153, -0.3052, -0.0598, 0.0153, -0.3008, -0.0301, 0.0153, -0.3052, -0.0787, 0.027, -0.3955, -0.0787, 0.027, -0.3955, -0.0301, 0.0153, -0.3052, -0.0395, 0.027, -0.4014, -0.0787, 0.027, -0.3955, -0.0395, 0.027, -0.4014, -0.0966, 0.0418, -0.4854, -0.0966, 0.0418, -0.4854, -0.0395, 0.027, -0.4014, -0.0485, 0.0418, -0.4924, -0.0966, 0.0418, -0.4854, -0.0485, 0.0418, -0.4924, -0.1133, 0.0597, -0.5693, -0.1133, 0.0597, -0.5693, -0.0485, 0.0418, -0.4924, -0.0569, 0.0597, -0.5776, -0.1133, 0.0597, -0.5693, -0.0569, 0.0597, -0.5776, -0.1287, 0.0803, -0.6465, -0.1287, 0.0803, -0.6465, -0.0569, 0.0597, -0.5776, -0.0646, 0.0803, -0.6563, -0.1287, 0.0803, -0.6465, -0.0646, 0.0803, -0.6563, -0.1425, 0.1036, -0.7163, -0.1425, 0.1036, -0.7163, -0.0646, 0.0803, -0.6563, -0.0716, 0.1036, -0.7271, -0.1425, 0.1036, -0.7163, -0.0716, 0.1036, -0.7271, -0.1547, 0.1295, -0.7778, -0.1547, 0.1295, -0.7778, -0.0716, 0.1036, -0.7271, -0.0777, 0.1295, -0.7891, -0.1547, 0.1295, -0.7778, -0.0777, 0.1295, -0.7891, -0.1652, 0.158, -0.8306, -0.1652, 0.158, -0.8306, -0.0777, 0.1295, -0.7891, -0.083, 0.158, -0.8428, -0.1652, 0.158, -0.8306, -0.083, 0.158, -0.8428, -0.1738, 0.1895, -0.874, -0.1738, 0.1895, -0.874, -0.083, 0.158, -0.8428, -0.0873, 0.1895, -0.8867, -0.1738, 0.1895, -0.874, -0.0873, 0.1895, -0.8867, -0.1805, 0.2247, -0.9077, -0.1805, 0.2247, -0.9077, -0.0873, 0.1895, -0.8867, -0.0907, 0.2247, -0.9209, -0.1805, 0.2247, -0.9077, -0.0907, 0.2247, -0.9209, -0.1851, 0.2646, -0.9302, -0.1851, 0.2646, -0.9302, -0.0907, 0.2247, -0.9209, -0.093, 0.2646, -0.9438, -0.1851, 0.2646, -0.9302, -0.093, 0.2646, -0.9438, -0.1865, 0.3049, -0.938, -0.1865, 0.3049, -0.938, -0.093, 0.2646, -0.9438, -0.0938, 0.3049, -0.9517, -0.6064, 0.3049, 0.7393, -0.6069, 0.3464, 0.7393, -0.5313, 0.3049, 0.7954, -0.5313, 0.3049, 0.7954, -0.6069, 0.3464, 0.7393, -0.5313, 0.3464, 0.7954, -0.1866, 0.3464, -0.9385, -0.0938, 0.3464, -0.9521, -0.1866, 0.3955, -0.9385, -0.1866, 0.3955, -0.9385, -0.0938, 0.3464, -0.9521, -0.0938, 0.3955, -0.9521, -0.0302, 0.0017, -0.0995, 0, 0, 0, -0.0203, 0.0017, -0.1019, -0.0302, 0.0017, -0.0995, -0.0203, 0.0017, -0.1019, -0.06, 0.0068, -0.1978, -0.06, 0.0068, -0.1978, -0.0203, 0.0017, -0.1019, -0.0403, 0.0068, -0.2026, -0.06, 0.0068, -0.1978, -0.0403, 0.0068, -0.2026, -0.0891, 0.0153, -0.2935, -0.0891, 0.0153, -0.2935, -0.0403, 0.0068, -0.2026, -0.0598, 0.0153, -0.3008, -0.0891, 0.0153, -0.2935, -0.0598, 0.0153, -0.3008, -0.1171, 0.027, -0.386, -0.1171, 0.027, -0.386, -0.0598, 0.0153, -0.3008, -0.0787, 0.027, -0.3955, -0.1171, 0.027, -0.386, -0.0787, 0.027, -0.3955, -0.1437, 0.0418, -0.4736, -0.1437, 0.0418, -0.4736, -0.0787, 0.027, -0.3955, -0.0966, 0.0418, -0.4854, -0.1437, 0.0418, -0.4736, -0.0966, 0.0418, -0.4854, -0.1686, 0.0597, -0.5557, -0.1686, 0.0597, -0.5557, -0.0966, 0.0418, -0.4854, -0.1133, 0.0597, -0.5693, -0.1686, 0.0597, -0.5557, -0.1133, 0.0597, -0.5693, -0.1914, 0.0803, -0.6309, -0.1914, 0.0803, -0.6309, -0.1133, 0.0597, -0.5693, -0.1287, 0.0803, -0.6465, -0.1914, 0.0803, -0.6309, -0.1287, 0.0803, -0.6465, -0.212, 0.1036, -0.6987, -0.212, 0.1036, -0.6987, -0.1287, 0.0803, -0.6465, -0.1425, 0.1036, -0.7163, -0.212, 0.1036, -0.6987, -0.1425, 0.1036, -0.7163, -0.2302, 0.1295, -0.7588, -0.2302, 0.1295, -0.7588, -0.1425, 0.1036, -0.7163, -0.1547, 0.1295, -0.7778, -0.2302, 0.1295, -0.7588, -0.1547, 0.1295, -0.7778, -0.2458, 0.158, -0.8101, -0.2458, 0.158, -0.8101, -0.1547, 0.1295, -0.7778, -0.1652, 0.158, -0.8306, -0.2458, 0.158, -0.8101, -0.1652, 0.158, -0.8306, -0.2585, 0.1895, -0.8525, -0.2585, 0.1895, -0.8525, -0.1652, 0.158, -0.8306, -0.1738, 0.1895, -0.874, -0.2585, 0.1895, -0.8525, -0.1738, 0.1895, -0.874, -0.2686, 0.2247, -0.8857, -0.2686, 0.2247, -0.8857, -0.1738, 0.1895, -0.874, -0.1805, 0.2247, -0.9077, -0.2686, 0.2247, -0.8857, -0.1805, 0.2247, -0.9077, -0.2751, 0.2646, -0.9077, -0.2751, 0.2646, -0.9077, -0.1805, 0.2247, -0.9077, -0.1851, 0.2646, -0.9302, -0.2751, 0.2646, -0.9077, -0.1851, 0.2646, -0.9302, -0.2776, 0.3049, -0.915, -0.2776, 0.3049, -0.915, -0.1851, 0.2646, -0.9302, -0.1865, 0.3049, -0.938, -0.2776, 0.3464, -0.9155, -0.1866, 0.3464, -0.9385, -0.2776, 0.3955, -0.9155, -0.2776, 0.3955, -0.9155, -0.1866, 0.3464, -0.9385, -0.1866, 0.3955, -0.9385, -0.0398, 0.0017, -0.096, 0, 0, 0, -0.0302, 0.0017, -0.0995, -0.0398, 0.0017, -0.096, -0.0302, 0.0017, -0.0995, -0.079, 0.0068, -0.1909, -0.079, 0.0068, -0.1909, -0.0302, 0.0017, -0.0995, -0.06, 0.0068, -0.1978, -0.079, 0.0068, -0.1909, -0.06, 0.0068, -0.1978, -0.1174, 0.0153, -0.2834, -0.1174, 0.0153, -0.2834, -0.06, 0.0068, -0.1978, -0.0891, 0.0153, -0.2935, -0.1174, 0.0153, -0.2834, -0.0891, 0.0153, -0.2935, -0.1543, 0.027, -0.3726, -0.1543, 0.027, -0.3726, -0.0891, 0.0153, -0.2935, -0.1171, 0.027, -0.386, -0.1543, 0.027, -0.3726, -0.1171, 0.027, -0.386, -0.1893, 0.0418, -0.4573, -0.1893, 0.0418, -0.4573, -0.1171, 0.027, -0.386, -0.1437, 0.0418, -0.4736, -0.1893, 0.0418, -0.4573, -0.1437, 0.0418, -0.4736, -0.2222, 0.0597, -0.5361, -0.2222, 0.0597, -0.5361, -0.1437, 0.0418, -0.4736, -0.1686, 0.0597, -0.5557, -0.2222, 0.0597, -0.5361, -0.1686, 0.0597, -0.5557, -0.2522, 0.0803, -0.6089, -0.2522, 0.0803, -0.6089, -0.1686, 0.0597, -0.5557, -0.1914, 0.0803, -0.6309, -0.2522, 0.0803, -0.6089, -0.1914, 0.0803, -0.6309, -0.2795, 0.1036, -0.6748, -0.2795, 0.1036, -0.6748, -0.1914, 0.0803, -0.6309, -0.212, 0.1036, -0.6987, -0.2795, 0.1036, -0.6748, -0.212, 0.1036, -0.6987, -0.3035, 0.1295, -0.7329, -0.3035, 0.1295, -0.7329, -0.212, 0.1036, -0.6987, -0.2302, 0.1295, -0.7588, -0.3035, 0.1295, -0.7329, -0.2302, 0.1295, -0.7588, -0.324, 0.158, -0.7822, -0.324, 0.158, -0.7822, -0.2302, 0.1295, -0.7588, -0.2458, 0.158, -0.8101, -0.324, 0.158, -0.7822, -0.2458, 0.158, -0.8101, -0.3411, 0.1895, -0.8232, -0.3411, 0.1895, -0.8232, -0.2458, 0.158, -0.8101, -0.2585, 0.1895, -0.8525, -0.3411, 0.1895, -0.8232, -0.2585, 0.1895, -0.8525, -0.3542, 0.2247, -0.855, -0.3542, 0.2247, -0.855, -0.2585, 0.1895, -0.8525, -0.2686, 0.2247, -0.8857, -0.3542, 0.2247, -0.855, -0.2686, 0.2247, -0.8857, -0.3628, 0.2646, -0.876, -0.3628, 0.2646, -0.876, -0.2686, 0.2247, -0.8857, -0.2751, 0.2646, -0.9077, -0.3628, 0.2646, -0.876, -0.2751, 0.2646, -0.9077, -0.366, 0.3049, -0.8838, -0.366, 0.3049, -0.8838, -0.2751, 0.2646, -0.9077, -0.2776, 0.3049, -0.915, -0.366, 0.3464, -0.8838, -0.2776, 0.3464, -0.9155, -0.366, 0.3955, -0.8838, -0.366, 0.3955, -0.8838, -0.2776, 0.3464, -0.9155, -0.2776, 0.3955, -0.9155, -0.049, 0.0017, -0.0917, 0, 0, 0, -0.0398, 0.0017, -0.096, -0.049, 0.0017, -0.0917, -0.0398, 0.0017, -0.096, -0.0974, 0.0068, -0.1823, -0.0974, 0.0068, -0.1823, -0.0398, 0.0017, -0.096, -0.079, 0.0068, -0.1909, -0.0974, 0.0068, -0.1823, -0.079, 0.0068, -0.1909, -0.1447, 0.0153, -0.2705, -0.1447, 0.0153, -0.2705, -0.079, 0.0068, -0.1909, -0.1174, 0.0153, -0.2834, -0.1447, 0.0153, -0.2705, -0.1174, 0.0153, -0.2834, -0.1901, 0.027, -0.3557, -0.1901, 0.027, -0.3557, -0.1174, 0.0153, -0.2834, -0.1543, 0.027, -0.3726, -0.1901, 0.027, -0.3557, -0.1543, 0.027, -0.3726, -0.2333, 0.0418, -0.4365, -0.2333, 0.0418, -0.4365, -0.1543, 0.027, -0.3726, -0.1893, 0.0418, -0.4573, -0.2333, 0.0418, -0.4365, -0.1893, 0.0418, -0.4573, -0.2737, 0.0597, -0.5117, -0.2737, 0.0597, -0.5117, -0.1893, 0.0418, -0.4573, -0.2222, 0.0597, -0.5361, -0.2737, 0.0597, -0.5117, -0.2222, 0.0597, -0.5361, -0.3108, 0.0803, -0.5815, -0.3108, 0.0803, -0.5815, -0.2222, 0.0597, -0.5361, -0.2522, 0.0803, -0.6089, -0.3108, 0.0803, -0.5815, -0.2522, 0.0803, -0.6089, -0.3442, 0.1036, -0.644, -0.3442, 0.1036, -0.644, -0.2522, 0.0803, -0.6089, -0.2795, 0.1036, -0.6748, -0.3442, 0.1036, -0.644, -0.2795, 0.1036, -0.6748, -0.3738, 0.1295, -0.6992, -0.3738, 0.1295, -0.6992, -0.2795, 0.1036, -0.6748, -0.3035, 0.1295, -0.7329, -0.3738, 0.1295, -0.6992, -0.3035, 0.1295, -0.7329, -0.3992, 0.158, -0.7466, -0.3992, 0.158, -0.7466, -0.3035, 0.1295, -0.7329, -0.324, 0.158, -0.7822, -0.3992, 0.158, -0.7466, -0.324, 0.158, -0.7822, -0.4202, 0.1895, -0.7856, -0.4202, 0.1895, -0.7856, -0.324, 0.158, -0.7822, -0.3411, 0.1895, -0.8232, -0.4202, 0.1895, -0.7856, -0.3411, 0.1895, -0.8232, -0.4363, 0.2247, -0.8164, -0.4363, 0.2247, -0.8164, -0.3411, 0.1895, -0.8232, -0.3542, 0.2247, -0.855, -0.4363, 0.2247, -0.8164, -0.3542, 0.2247, -0.855, -0.447, 0.2646, -0.8364, -0.447, 0.2646, -0.8364, -0.3542, 0.2247, -0.855, -0.3628, 0.2646, -0.876, -0.447, 0.2646, -0.8364, -0.3628, 0.2646, -0.876, -0.4509, 0.3049, -0.8433, -0.4509, 0.3049, -0.8433, -0.3628, 0.2646, -0.876, -0.366, 0.3049, -0.8838, -0.6763, 0.3049, -0.6763, -0.6064, 0.3049, -0.7393, -0.6763, 0.3464, -0.6763, -0.6763, 0.3464, -0.6763, -0.6064, 0.3049, -0.7393, -0.6069, 0.3464, -0.7393, -0.4509, 0.3464, -0.8438, -0.366, 0.3464, -0.8838, -0.4509, 0.3955, -0.8438, -0.4509, 0.3955, -0.8438, -0.366, 0.3464, -0.8838, -0.366, 0.3955, -0.8838, -0.0578, 0.0017, -0.0864, 0, 0, 0, -0.049, 0.0017, -0.0917, -0.0578, 0.0017, -0.0864, -0.049, 0.0017, -0.0917, -0.1148, 0.0068, -0.1718, -0.1148, 0.0068, -0.1718, -0.049, 0.0017, -0.0917, -0.0974, 0.0068, -0.1823, -0.1148, 0.0068, -0.1718, -0.0974, 0.0068, -0.1823, -0.1704, 0.0153, -0.2551, -0.1704, 0.0153, -0.2551, -0.0974, 0.0068, -0.1823, -0.1447, 0.0153, -0.2705, -0.1704, 0.0153, -0.2551, -0.1447, 0.0153, -0.2705, -0.224, 0.027, -0.3352, -0.224, 0.027, -0.3352, -0.1447, 0.0153, -0.2705, -0.1901, 0.027, -0.3557, -0.224, 0.027, -0.3352, -0.1901, 0.027, -0.3557, -0.2749, 0.0418, -0.4114, -0.2749, 0.0418, -0.4114, -0.1901, 0.027, -0.3557, -0.2333, 0.0418, -0.4365, -0.2749, 0.0418, -0.4114, -0.2333, 0.0418, -0.4365, -0.3225, 0.0597, -0.4827, -0.3225, 0.0597, -0.4827, -0.2333, 0.0418, -0.4365, -0.2737, 0.0597, -0.5117, -0.3225, 0.0597, -0.4827, -0.2737, 0.0597, -0.5117, -0.3662, 0.0803, -0.5483, -0.3662, 0.0803, -0.5483, -0.2737, 0.0597, -0.5117, -0.3108, 0.0803, -0.5815, -0.3662, 0.0803, -0.5483, -0.3108, 0.0803, -0.5815, -0.4058, 0.1036, -0.6074, -0.4058, 0.1036, -0.6074, -0.3108, 0.0803, -0.5815, -0.3442, 0.1036, -0.644, -0.4058, 0.1036, -0.6074, -0.3442, 0.1036, -0.644, -0.4407, 0.1295, -0.6592, -0.4407, 0.1295, -0.6592, -0.3442, 0.1036, -0.644, -0.3738, 0.1295, -0.6992, -0.4407, 0.1295, -0.6592, -0.3738, 0.1295, -0.6992, -0.4705, 0.158, -0.7041, -0.4705, 0.158, -0.7041, -0.3738, 0.1295, -0.6992, -0.3992, 0.158, -0.7466, -0.4705, 0.158, -0.7041, -0.3992, 0.158, -0.7466, -0.4951, 0.1895, -0.7407, -0.4951, 0.1895, -0.7407, -0.3992, 0.158, -0.7466, -0.4202, 0.1895, -0.7856, -0.4951, 0.1895, -0.7407, -0.4202, 0.1895, -0.7856, -0.5142, 0.2247, -0.7695, -0.5142, 0.2247, -0.7695, -0.4202, 0.1895, -0.7856, -0.4363, 0.2247, -0.8164, -0.5142, 0.2247, -0.7695, -0.4363, 0.2247, -0.8164, -0.5269, 0.2646, -0.7886, -0.5269, 0.2646, -0.7886, -0.4363, 0.2247, -0.8164, -0.447, 0.2646, -0.8364, -0.5269, 0.2646, -0.7886, -0.447, 0.2646, -0.8364, -0.5313, 0.3049, -0.7954, -0.5313, 0.3049, -0.7954, -0.447, 0.2646, -0.8364, -0.4509, 0.3049, -0.8433, -0.0938, 0.3049, 0.9517, -0.0938, 0.3464, 0.9521, 0, 0.3049, 0.9565, 0, 0.3049, 0.9565, -0.0938, 0.3464, 0.9521, 0, 0.3464, 0.9565, -0.5313, 0.3464, -0.7954, -0.4509, 0.3464, -0.8438, -0.5313, 0.3955, -0.7954, -0.5313, 0.3955, -0.7954, -0.4509, 0.3464, -0.8438, -0.4509, 0.3955, -0.8438, -0.0659, 0.0017, -0.0803, 0, 0, 0, -0.0578, 0.0017, -0.0864, -0.0659, 0.0017, -0.0803, -0.0578, 0.0017, -0.0864, -0.1311, 0.0068, -0.1597, -0.1311, 0.0068, -0.1597, -0.0578, 0.0017, -0.0864, -0.1148, 0.0068, -0.1718, -0.1311, 0.0068, -0.1597, -0.1148, 0.0068, -0.1718, -0.1946, 0.0153, -0.2372, -0.1946, 0.0153, -0.2372, -0.1148, 0.0068, -0.1718, -0.1704, 0.0153, -0.2551, -0.1946, 0.0153, -0.2372, -0.1704, 0.0153, -0.2551, -0.2559, 0.027, -0.3118, -0.2559, 0.027, -0.3118, -0.1704, 0.0153, -0.2551, -0.224, 0.027, -0.3352, -0.2559, 0.027, -0.3118, -0.224, 0.027, -0.3352, -0.314, 0.0418, -0.3826, -0.314, 0.0418, -0.3826, -0.224, 0.027, -0.3352, -0.2749, 0.0418, -0.4114, -0.314, 0.0418, -0.3826, -0.2749, 0.0418, -0.4114, -0.3684, 0.0597, -0.4487, -0.3684, 0.0597, -0.4487, -0.2749, 0.0418, -0.4114, -0.3225, 0.0597, -0.4827, -0.3684, 0.0597, -0.4487, -0.3225, 0.0597, -0.4827, -0.4182, 0.0803, -0.5098, -0.4182, 0.0803, -0.5098, -0.3225, 0.0597, -0.4827, -0.3662, 0.0803, -0.5483, -0.4182, 0.0803, -0.5098, -0.3662, 0.0803, -0.5483, -0.4634, 0.1036, -0.5645, -0.4634, 0.1036, -0.5645, -0.3662, 0.0803, -0.5483, -0.4058, 0.1036, -0.6074, -0.4634, 0.1036, -0.5645, -0.4058, 0.1036, -0.6074, -0.5029, 0.1295, -0.6128, -0.5029, 0.1295, -0.6128, -0.4058, 0.1036, -0.6074, -0.4407, 0.1295, -0.6592, -0.5029, 0.1295, -0.6128, -0.4407, 0.1295, -0.6592, -0.5371, 0.158, -0.6543, -0.5371, 0.158, -0.6543, -0.4407, 0.1295, -0.6592, -0.4705, 0.158, -0.7041, -0.5371, 0.158, -0.6543, -0.4705, 0.158, -0.7041, -0.5654, 0.1895, -0.689, -0.5654, 0.1895, -0.689, -0.4705, 0.158, -0.7041, -0.4951, 0.1895, -0.7407, -0.5654, 0.1895, -0.689, -0.4951, 0.1895, -0.7407, -0.5869, 0.2247, -0.7153, -0.5869, 0.2247, -0.7153, -0.4951, 0.1895, -0.7407, -0.5142, 0.2247, -0.7695, -0.5869, 0.2247, -0.7153, -0.5142, 0.2247, -0.7695, -0.6016, 0.2646, -0.7329, -0.6016, 0.2646, -0.7329, -0.5142, 0.2247, -0.7695, -0.5269, 0.2646, -0.7886, -0.6016, 0.2646, -0.7329, -0.5269, 0.2646, -0.7886, -0.6064, 0.3049, -0.7393, -0.6064, 0.3049, -0.7393, -0.5269, 0.2646, -0.7886, -0.5313, 0.3049, -0.7954, -0.6069, 0.3464, -0.7393, -0.5313, 0.3464, -0.7954, -0.6069, 0.3955, -0.7393, -0.6069, 0.3955, -0.7393, -0.5313, 0.3464, -0.7954, -0.5313, 0.3955, -0.7954, -0.0735, 0.0017, -0.0735, 0, 0, 0, -0.0659, 0.0017, -0.0803, -0.0735, 0.0017, -0.0735, -0.0659, 0.0017, -0.0803, -0.1461, 0.0068, -0.1461, -0.1461, 0.0068, -0.1461, -0.0659, 0.0017, -0.0803, -0.1311, 0.0068, -0.1597, -0.1461, 0.0068, -0.1461, -0.1311, 0.0068, -0.1597, -0.2169, 0.0153, -0.2169, -0.2169, 0.0153, -0.2169, -0.1311, 0.0068, -0.1597, -0.1946, 0.0153, -0.2372, -0.2169, 0.0153, -0.2169, -0.1946, 0.0153, -0.2372, -0.2852, 0.027, -0.2852, -0.2852, 0.027, -0.2852, -0.1946, 0.0153, -0.2372, -0.2559, 0.027, -0.3118, -0.2852, 0.027, -0.2852, -0.2559, 0.027, -0.3118, -0.3499, 0.0418, -0.3499, -0.3499, 0.0418, -0.3499, -0.2559, 0.027, -0.3118, -0.314, 0.0418, -0.3826, -0.3499, 0.0418, -0.3499, -0.314, 0.0418, -0.3826, -0.4106, 0.0597, -0.4106, -0.4106, 0.0597, -0.4106, -0.314, 0.0418, -0.3826, -0.3684, 0.0597, -0.4487, -0.4106, 0.0597, -0.4106, -0.3684, 0.0597, -0.4487, -0.4663, 0.0803, -0.4663, -0.4663, 0.0803, -0.4663, -0.3684, 0.0597, -0.4487, -0.4182, 0.0803, -0.5098, -0.4663, 0.0803, -0.4663, -0.4182, 0.0803, -0.5098, -0.5166, 0.1036, -0.5166, -0.5166, 0.1036, -0.5166, -0.4182, 0.0803, -0.5098, -0.4634, 0.1036, -0.5645, -0.5166, 0.1036, -0.5166, -0.4634, 0.1036, -0.5645, -0.5605, 0.1295, -0.5605, -0.5605, 0.1295, -0.5605, -0.4634, 0.1036, -0.5645, -0.5029, 0.1295, -0.6128, -0.5605, 0.1295, -0.5605, -0.5029, 0.1295, -0.6128, -0.5986, 0.158, -0.5986, -0.5986, 0.158, -0.5986, -0.5029, 0.1295, -0.6128, -0.5371, 0.158, -0.6543, -0.5986, 0.158, -0.5986, -0.5371, 0.158, -0.6543, -0.6299, 0.1895, -0.6299, -0.6299, 0.1895, -0.6299, -0.5371, 0.158, -0.6543, -0.5654, 0.1895, -0.689, -0.6299, 0.1895, -0.6299, -0.5654, 0.1895, -0.689, -0.6543, 0.2247, -0.6543, -0.6543, 0.2247, -0.6543, -0.5654, 0.1895, -0.689, -0.5869, 0.2247, -0.7153, -0.6543, 0.2247, -0.6543, -0.5869, 0.2247, -0.7153, -0.6704, 0.2646, -0.6704, -0.6704, 0.2646, -0.6704, -0.5869, 0.2247, -0.7153, -0.6016, 0.2646, -0.7329, -0.6704, 0.2646, -0.6704, -0.6016, 0.2646, -0.7329, -0.6763, 0.3049, -0.6763, -0.6763, 0.3049, -0.6763, -0.6016, 0.2646, -0.7329, -0.6064, 0.3049, -0.7393, -0.8433, 0.3049, -0.4509, -0.7954, 0.3049, -0.5313, -0.8438, 0.3464, -0.4509, -0.8438, 0.3464, -0.4509, -0.7954, 0.3049, -0.5313, -0.7954, 0.3464, -0.5313, -0.7393, 0.3464, -0.6069, -0.7393, 0.3049, -0.6064, -0.6763, 0.3464, -0.6763, -0.6763, 0.3464, -0.6763, -0.7393, 0.3049, -0.6064, -0.6763, 0.3049, -0.6763, -0.6763, 0.3464, -0.6763, -0.6069, 0.3464, -0.7393, -0.6763, 0.3955, -0.6763, -0.6763, 0.3955, -0.6763, -0.6069, 0.3464, -0.7393, -0.6069, 0.3955, -0.7393, -0.0803, 0.0017, -0.0659, 0, 0, 0, -0.0735, 0.0017, -0.0735, -0.0803, 0.0017, -0.0659, -0.0735, 0.0017, -0.0735, -0.1597, 0.0068, -0.1311, -0.1597, 0.0068, -0.1311, -0.0735, 0.0017, -0.0735, -0.1461, 0.0068, -0.1461, -0.1597, 0.0068, -0.1311, -0.1461, 0.0068, -0.1461, -0.2372, 0.0153, -0.1946, -0.2372, 0.0153, -0.1946, -0.1461, 0.0068, -0.1461, -0.2169, 0.0153, -0.2169, -0.2372, 0.0153, -0.1946, -0.2169, 0.0153, -0.2169, -0.3118, 0.027, -0.2559, -0.3118, 0.027, -0.2559, -0.2169, 0.0153, -0.2169, -0.2852, 0.027, -0.2852, -0.3118, 0.027, -0.2559, -0.2852, 0.027, -0.2852, -0.3826, 0.0418, -0.314, -0.3826, 0.0418, -0.314, -0.2852, 0.027, -0.2852, -0.3499, 0.0418, -0.3499, -0.3826, 0.0418, -0.314, -0.3499, 0.0418, -0.3499, -0.4487, 0.0597, -0.3684, -0.4487, 0.0597, -0.3684, -0.3499, 0.0418, -0.3499, -0.4106, 0.0597, -0.4106, -0.4487, 0.0597, -0.3684, -0.4106, 0.0597, -0.4106, -0.5098, 0.0803, -0.4182, -0.5098, 0.0803, -0.4182, -0.4106, 0.0597, -0.4106, -0.4663, 0.0803, -0.4663, -0.5098, 0.0803, -0.4182, -0.4663, 0.0803, -0.4663, -0.5645, 0.1036, -0.4634, -0.5645, 0.1036, -0.4634, -0.4663, 0.0803, -0.4663, -0.5166, 0.1036, -0.5166, -0.5645, 0.1036, -0.4634, -0.5166, 0.1036, -0.5166, -0.6128, 0.1295, -0.5029, -0.6128, 0.1295, -0.5029, -0.5166, 0.1036, -0.5166, -0.5605, 0.1295, -0.5605, -0.6128, 0.1295, -0.5029, -0.5605, 0.1295, -0.5605, -0.6543, 0.158, -0.5371, -0.6543, 0.158, -0.5371, -0.5605, 0.1295, -0.5605, -0.5986, 0.158, -0.5986, -0.6543, 0.158, -0.5371, -0.5986, 0.158, -0.5986, -0.689, 0.1895, -0.5654, -0.689, 0.1895, -0.5654, -0.5986, 0.158, -0.5986, -0.6299, 0.1895, -0.6299, -0.689, 0.1895, -0.5654, -0.6299, 0.1895, -0.6299, -0.7153, 0.2247, -0.5869, -0.7153, 0.2247, -0.5869, -0.6299, 0.1895, -0.6299, -0.6543, 0.2247, -0.6543, -0.7153, 0.2247, -0.5869, -0.6543, 0.2247, -0.6543, -0.7329, 0.2646, -0.6016, -0.7329, 0.2646, -0.6016, -0.6543, 0.2247, -0.6543, -0.6704, 0.2646, -0.6704, -0.7329, 0.2646, -0.6016, -0.6704, 0.2646, -0.6704, -0.7393, 0.3049, -0.6064, -0.7393, 0.3049, -0.6064, -0.6704, 0.2646, -0.6704, -0.6763, 0.3049, -0.6763, -0.8838, 0.3049, -0.366, -0.8838, 0.3464, -0.366, -0.915, 0.3049, -0.2776, -0.915, 0.3049, -0.2776, -0.8838, 0.3464, -0.366, -0.9155, 0.3464, -0.2776, -0.7393, 0.3464, -0.6069, -0.6763, 0.3464, -0.6763, -0.7393, 0.3955, -0.6069, -0.7393, 0.3955, -0.6069, -0.6763, 0.3464, -0.6763, -0.6763, 0.3955, -0.6763, -0.0864, 0.0017, -0.0578, 0, 0, 0, -0.0803, 0.0017, -0.0659, -0.0864, 0.0017, -0.0578, -0.0803, 0.0017, -0.0659, -0.1718, 0.0068, -0.1148, -0.1718, 0.0068, -0.1148, -0.0803, 0.0017, -0.0659, -0.1597, 0.0068, -0.1311, -0.1718, 0.0068, -0.1148, -0.1597, 0.0068, -0.1311, -0.2551, 0.0153, -0.1704, -0.2551, 0.0153, -0.1704, -0.1597, 0.0068, -0.1311, -0.2372, 0.0153, -0.1946, -0.2551, 0.0153, -0.1704, -0.2372, 0.0153, -0.1946, -0.3352, 0.027, -0.224, -0.3352, 0.027, -0.224, -0.2372, 0.0153, -0.1946, -0.3118, 0.027, -0.2559, -0.3352, 0.027, -0.224, -0.3118, 0.027, -0.2559, -0.4114, 0.0418, -0.2749, -0.4114, 0.0418, -0.2749, -0.3118, 0.027, -0.2559, -0.3826, 0.0418, -0.314, -0.4114, 0.0418, -0.2749, -0.3826, 0.0418, -0.314, -0.4827, 0.0597, -0.3225, -0.4827, 0.0597, -0.3225, -0.3826, 0.0418, -0.314, -0.4487, 0.0597, -0.3684, -0.4827, 0.0597, -0.3225, -0.4487, 0.0597, -0.3684, -0.5483, 0.0803, -0.3662, -0.5483, 0.0803, -0.3662, -0.4487, 0.0597, -0.3684, -0.5098, 0.0803, -0.4182, -0.5483, 0.0803, -0.3662, -0.5098, 0.0803, -0.4182, -0.6074, 0.1036, -0.4058, -0.6074, 0.1036, -0.4058, -0.5098, 0.0803, -0.4182, -0.5645, 0.1036, -0.4634, -0.6074, 0.1036, -0.4058, -0.5645, 0.1036, -0.4634, -0.6592, 0.1295, -0.4407, -0.6592, 0.1295, -0.4407, -0.5645, 0.1036, -0.4634, -0.6128, 0.1295, -0.5029, -0.6592, 0.1295, -0.4407, -0.6128, 0.1295, -0.5029, -0.7041, 0.158, -0.4705, -0.7041, 0.158, -0.4705, -0.6128, 0.1295, -0.5029, -0.6543, 0.158, -0.5371, -0.7041, 0.158, -0.4705, -0.6543, 0.158, -0.5371, -0.7407, 0.1895, -0.4951, -0.7407, 0.1895, -0.4951, -0.6543, 0.158, -0.5371, -0.689, 0.1895, -0.5654, -0.7407, 0.1895, -0.4951, -0.689, 0.1895, -0.5654, -0.7695, 0.2247, -0.5142, -0.7695, 0.2247, -0.5142, -0.689, 0.1895, -0.5654, -0.7153, 0.2247, -0.5869, -0.7695, 0.2247, -0.5142, -0.7153, 0.2247, -0.5869, -0.7886, 0.2646, -0.5269, -0.7886, 0.2646, -0.5269, -0.7153, 0.2247, -0.5869, -0.7329, 0.2646, -0.6016, -0.7886, 0.2646, -0.5269, -0.7329, 0.2646, -0.6016, -0.7954, 0.3049, -0.5313, -0.7954, 0.3049, -0.5313, -0.7329, 0.2646, -0.6016, -0.7393, 0.3049, -0.6064, -0.9385, 0.3464, 0.1866, -0.938, 0.3049, 0.1865, -0.9521, 0.3464, 0.0938, -0.9521, 0.3464, 0.0938, -0.938, 0.3049, 0.1865, -0.9517, 0.3049, 0.0938, -0.7954, 0.3464, -0.5313, -0.7393, 0.3464, -0.6069, -0.7954, 0.3955, -0.5313, -0.7954, 0.3955, -0.5313, -0.7393, 0.3464, -0.6069, -0.7393, 0.3955, -0.6069, -0.0917, 0.0017, -0.049, 0, 0, 0, -0.0864, 0.0017, -0.0578, -0.0917, 0.0017, -0.049, -0.0864, 0.0017, -0.0578, -0.1823, 0.0068, -0.0974, -0.1823, 0.0068, -0.0974, -0.0864, 0.0017, -0.0578, -0.1718, 0.0068, -0.1148, -0.1823, 0.0068, -0.0974, -0.1718, 0.0068, -0.1148, -0.2705, 0.0153, -0.1447, -0.2705, 0.0153, -0.1447, -0.1718, 0.0068, -0.1148, -0.2551, 0.0153, -0.1704, -0.2705, 0.0153, -0.1447, -0.2551, 0.0153, -0.1704, -0.3557, 0.027, -0.1901, -0.3557, 0.027, -0.1901, -0.2551, 0.0153, -0.1704, -0.3352, 0.027, -0.224, -0.3557, 0.027, -0.1901, -0.3352, 0.027, -0.224, -0.4365, 0.0418, -0.2333, -0.4365, 0.0418, -0.2333, -0.3352, 0.027, -0.224, -0.4114, 0.0418, -0.2749, -0.4365, 0.0418, -0.2333, -0.4114, 0.0418, -0.2749, -0.5117, 0.0597, -0.2737, -0.5117, 0.0597, -0.2737, -0.4114, 0.0418, -0.2749, -0.4827, 0.0597, -0.3225, -0.5117, 0.0597, -0.2737, -0.4827, 0.0597, -0.3225, -0.5815, 0.0803, -0.3108, -0.5815, 0.0803, -0.3108, -0.4827, 0.0597, -0.3225, -0.5483, 0.0803, -0.3662, -0.5815, 0.0803, -0.3108, -0.5483, 0.0803, -0.3662, -0.644, 0.1036, -0.3442, -0.644, 0.1036, -0.3442, -0.5483, 0.0803, -0.3662, -0.6074, 0.1036, -0.4058, -0.644, 0.1036, -0.3442, -0.6074, 0.1036, -0.4058, -0.6992, 0.1295, -0.3738, -0.6992, 0.1295, -0.3738, -0.6074, 0.1036, -0.4058, -0.6592, 0.1295, -0.4407, -0.6992, 0.1295, -0.3738, -0.6592, 0.1295, -0.4407, -0.7466, 0.158, -0.3992, -0.7466, 0.158, -0.3992, -0.6592, 0.1295, -0.4407, -0.7041, 0.158, -0.4705, -0.7466, 0.158, -0.3992, -0.7041, 0.158, -0.4705, -0.7856, 0.1895, -0.4202, -0.7856, 0.1895, -0.4202, -0.7041, 0.158, -0.4705, -0.7407, 0.1895, -0.4951, -0.7856, 0.1895, -0.4202, -0.7407, 0.1895, -0.4951, -0.8164, 0.2247, -0.4363, -0.8164, 0.2247, -0.4363, -0.7407, 0.1895, -0.4951, -0.7695, 0.2247, -0.5142, -0.8164, 0.2247, -0.4363, -0.7695, 0.2247, -0.5142, -0.8364, 0.2646, -0.447, -0.8364, 0.2646, -0.447, -0.7695, 0.2247, -0.5142, -0.7886, 0.2646, -0.5269, -0.8364, 0.2646, -0.447, -0.7886, 0.2646, -0.5269, -0.8433, 0.3049, -0.4509, -0.8433, 0.3049, -0.4509, -0.7886, 0.2646, -0.5269, -0.7954, 0.3049, -0.5313, -0.8438, 0.3464, -0.4509, -0.7954, 0.3464, -0.5313, -0.8438, 0.3955, -0.4509, -0.8438, 0.3955, -0.4509, -0.7954, 0.3464, -0.5313, -0.7954, 0.3955, -0.5313, -0.096, 0.0017, -0.0398, 0, 0, 0, -0.0917, 0.0017, -0.049, -0.096, 0.0017, -0.0398, -0.0917, 0.0017, -0.049, -0.1909, 0.0068, -0.079, -0.1909, 0.0068, -0.079, -0.0917, 0.0017, -0.049, -0.1823, 0.0068, -0.0974, -0.1909, 0.0068, -0.079, -0.1823, 0.0068, -0.0974, -0.2834, 0.0153, -0.1174, -0.2834, 0.0153, -0.1174, -0.1823, 0.0068, -0.0974, -0.2705, 0.0153, -0.1447, -0.2834, 0.0153, -0.1174, -0.2705, 0.0153, -0.1447, -0.3726, 0.027, -0.1543, -0.3726, 0.027, -0.1543, -0.2705, 0.0153, -0.1447, -0.3557, 0.027, -0.1901, -0.3726, 0.027, -0.1543, -0.3557, 0.027, -0.1901, -0.4573, 0.0418, -0.1893, -0.4573, 0.0418, -0.1893, -0.3557, 0.027, -0.1901, -0.4365, 0.0418, -0.2333, -0.4573, 0.0418, -0.1893, -0.4365, 0.0418, -0.2333, -0.5361, 0.0597, -0.2222, -0.5361, 0.0597, -0.2222, -0.4365, 0.0418, -0.2333, -0.5117, 0.0597, -0.2737, -0.5361, 0.0597, -0.2222, -0.5117, 0.0597, -0.2737, -0.6089, 0.0803, -0.2522, -0.6089, 0.0803, -0.2522, -0.5117, 0.0597, -0.2737, -0.5815, 0.0803, -0.3108, -0.6089, 0.0803, -0.2522, -0.5815, 0.0803, -0.3108, -0.6748, 0.1036, -0.2795, -0.6748, 0.1036, -0.2795, -0.5815, 0.0803, -0.3108, -0.644, 0.1036, -0.3442, -0.6748, 0.1036, -0.2795, -0.644, 0.1036, -0.3442, -0.7329, 0.1295, -0.3035, -0.7329, 0.1295, -0.3035, -0.644, 0.1036, -0.3442, -0.6992, 0.1295, -0.3738, -0.7329, 0.1295, -0.3035, -0.6992, 0.1295, -0.3738, -0.7822, 0.158, -0.324, -0.7822, 0.158, -0.324, -0.6992, 0.1295, -0.3738, -0.7466, 0.158, -0.3992, -0.7822, 0.158, -0.324, -0.7466, 0.158, -0.3992, -0.8232, 0.1895, -0.3411, -0.8232, 0.1895, -0.3411, -0.7466, 0.158, -0.3992, -0.7856, 0.1895, -0.4202, -0.8232, 0.1895, -0.3411, -0.7856, 0.1895, -0.4202, -0.855, 0.2247, -0.3542, -0.855, 0.2247, -0.3542, -0.7856, 0.1895, -0.4202, -0.8164, 0.2247, -0.4363, -0.855, 0.2247, -0.3542, -0.8164, 0.2247, -0.4363, -0.876, 0.2646, -0.3628, -0.876, 0.2646, -0.3628, -0.8164, 0.2247, -0.4363, -0.8364, 0.2646, -0.447, -0.876, 0.2646, -0.3628, -0.8364, 0.2646, -0.447, -0.8838, 0.3049, -0.366, -0.8838, 0.3049, -0.366, -0.8364, 0.2646, -0.447, -0.8433, 0.3049, -0.4509, -0.7954, 0.3049, 0.5313, -0.8433, 0.3049, 0.4509, -0.7954, 0.3464, 0.5313, -0.7954, 0.3464, 0.5313, -0.8433, 0.3049, 0.4509, -0.8438, 0.3464, 0.4509, -0.8838, 0.3464, -0.366, -0.8438, 0.3464, -0.4509, -0.8838, 0.3955, -0.366, -0.8838, 0.3955, -0.366, -0.8438, 0.3464, -0.4509, -0.8438, 0.3955, -0.4509, -0.0995, 0.0017, -0.0302, 0, 0, 0, -0.096, 0.0017, -0.0398, -0.0995, 0.0017, -0.0302, -0.096, 0.0017, -0.0398, -0.1978, 0.0068, -0.06, -0.1978, 0.0068, -0.06, -0.096, 0.0017, -0.0398, -0.1909, 0.0068, -0.079, -0.1978, 0.0068, -0.06, -0.1909, 0.0068, -0.079, -0.2935, 0.0153, -0.0891, -0.2935, 0.0153, -0.0891, -0.1909, 0.0068, -0.079, -0.2834, 0.0153, -0.1174, -0.2935, 0.0153, -0.0891, -0.2834, 0.0153, -0.1174, -0.386, 0.027, -0.1171, -0.386, 0.027, -0.1171, -0.2834, 0.0153, -0.1174, -0.3726, 0.027, -0.1543, -0.386, 0.027, -0.1171, -0.3726, 0.027, -0.1543, -0.4736, 0.0418, -0.1437, -0.4736, 0.0418, -0.1437, -0.3726, 0.027, -0.1543, -0.4573, 0.0418, -0.1893, -0.4736, 0.0418, -0.1437, -0.4573, 0.0418, -0.1893, -0.5557, 0.0597, -0.1686, -0.5557, 0.0597, -0.1686, -0.4573, 0.0418, -0.1893, -0.5361, 0.0597, -0.2222, -0.5557, 0.0597, -0.1686, -0.5361, 0.0597, -0.2222, -0.6309, 0.0803, -0.1914, -0.6309, 0.0803, -0.1914, -0.5361, 0.0597, -0.2222, -0.6089, 0.0803, -0.2522, -0.6309, 0.0803, -0.1914, -0.6089, 0.0803, -0.2522, -0.6987, 0.1036, -0.212, -0.6987, 0.1036, -0.212, -0.6089, 0.0803, -0.2522, -0.6748, 0.1036, -0.2795, -0.6987, 0.1036, -0.212, -0.6748, 0.1036, -0.2795, -0.7588, 0.1295, -0.2302, -0.7588, 0.1295, -0.2302, -0.6748, 0.1036, -0.2795, -0.7329, 0.1295, -0.3035, -0.7588, 0.1295, -0.2302, -0.7329, 0.1295, -0.3035, -0.8101, 0.158, -0.2458, -0.8101, 0.158, -0.2458, -0.7329, 0.1295, -0.3035, -0.7822, 0.158, -0.324, -0.8101, 0.158, -0.2458, -0.7822, 0.158, -0.324, -0.8525, 0.1895, -0.2585, -0.8525, 0.1895, -0.2585, -0.7822, 0.158, -0.324, -0.8232, 0.1895, -0.3411, -0.8525, 0.1895, -0.2585, -0.8232, 0.1895, -0.3411, -0.8857, 0.2247, -0.2686, -0.8857, 0.2247, -0.2686, -0.8232, 0.1895, -0.3411, -0.855, 0.2247, -0.3542, -0.8857, 0.2247, -0.2686, -0.855, 0.2247, -0.3542, -0.9077, 0.2646, -0.2751, -0.9077, 0.2646, -0.2751, -0.855, 0.2247, -0.3542, -0.876, 0.2646, -0.3628, -0.9077, 0.2646, -0.2751, -0.876, 0.2646, -0.3628, -0.915, 0.3049, -0.2776, -0.915, 0.3049, -0.2776, -0.876, 0.2646, -0.3628, -0.8838, 0.3049, -0.366, -0.9155, 0.3464, -0.2776, -0.8838, 0.3464, -0.366, -0.9155, 0.3955, -0.2776, -0.9155, 0.3955, -0.2776, -0.8838, 0.3464, -0.366, -0.8838, 0.3955, -0.366, -0.1019, 0.0017, -0.0203, 0, 0, 0, -0.0995, 0.0017, -0.0302, -0.1019, 0.0017, -0.0203, -0.0995, 0.0017, -0.0302, -0.2026, 0.0068, -0.0403, -0.2026, 0.0068, -0.0403, -0.0995, 0.0017, -0.0302, -0.1978, 0.0068, -0.06, -0.2026, 0.0068, -0.0403, -0.1978, 0.0068, -0.06, -0.3008, 0.0153, -0.0598, -0.3008, 0.0153, -0.0598, -0.1978, 0.0068, -0.06, -0.2935, 0.0153, -0.0891, -0.3008, 0.0153, -0.0598, -0.2935, 0.0153, -0.0891, -0.3955, 0.027, -0.0787, -0.3955, 0.027, -0.0787, -0.2935, 0.0153, -0.0891, -0.386, 0.027, -0.1171, -0.3955, 0.027, -0.0787, -0.386, 0.027, -0.1171, -0.4854, 0.0418, -0.0966, -0.4854, 0.0418, -0.0966, -0.386, 0.027, -0.1171, -0.4736, 0.0418, -0.1437, -0.4854, 0.0418, -0.0966, -0.4736, 0.0418, -0.1437, -0.5693, 0.0597, -0.1133, -0.5693, 0.0597, -0.1133, -0.4736, 0.0418, -0.1437, -0.5557, 0.0597, -0.1686, -0.5693, 0.0597, -0.1133, -0.5557, 0.0597, -0.1686, -0.6465, 0.0803, -0.1287, -0.6465, 0.0803, -0.1287, -0.5557, 0.0597, -0.1686, -0.6309, 0.0803, -0.1914, -0.6465, 0.0803, -0.1287, -0.6309, 0.0803, -0.1914, -0.7163, 0.1036, -0.1425, -0.7163, 0.1036, -0.1425, -0.6309, 0.0803, -0.1914, -0.6987, 0.1036, -0.212, -0.7163, 0.1036, -0.1425, -0.6987, 0.1036, -0.212, -0.7778, 0.1295, -0.1547, -0.7778, 0.1295, -0.1547, -0.6987, 0.1036, -0.212, -0.7588, 0.1295, -0.2302, -0.7778, 0.1295, -0.1547, -0.7588, 0.1295, -0.2302, -0.8306, 0.158, -0.1652, -0.8306, 0.158, -0.1652, -0.7588, 0.1295, -0.2302, -0.8101, 0.158, -0.2458, -0.8306, 0.158, -0.1652, -0.8101, 0.158, -0.2458, -0.874, 0.1895, -0.1738, -0.874, 0.1895, -0.1738, -0.8101, 0.158, -0.2458, -0.8525, 0.1895, -0.2585, -0.874, 0.1895, -0.1738, -0.8525, 0.1895, -0.2585, -0.9077, 0.2247, -0.1805, -0.9077, 0.2247, -0.1805, -0.8525, 0.1895, -0.2585, -0.8857, 0.2247, -0.2686, -0.9077, 0.2247, -0.1805, -0.8857, 0.2247, -0.2686, -0.9302, 0.2646, -0.1851, -0.9302, 0.2646, -0.1851, -0.8857, 0.2247, -0.2686, -0.9077, 0.2646, -0.2751, -0.9302, 0.2646, -0.1851, -0.9077, 0.2646, -0.2751, -0.938, 0.3049, -0.1865, -0.938, 0.3049, -0.1865, -0.9077, 0.2646, -0.2751, -0.915, 0.3049, -0.2776, -0.9385, 0.3464, -0.1866, -0.9155, 0.3464, -0.2776, -0.9385, 0.3955, -0.1866, -0.9385, 0.3955, -0.1866, -0.9155, 0.3464, -0.2776, -0.9155, 0.3955, -0.2776, -0.1035, 0.0017, -0.0102, 0, 0, 0, -0.1019, 0.0017, -0.0203, -0.1035, 0.0017, -0.0102, -0.1019, 0.0017, -0.0203, -0.2057, 0.0068, -0.0202, -0.2057, 0.0068, -0.0202, -0.1019, 0.0017, -0.0203, -0.2026, 0.0068, -0.0403, -0.2057, 0.0068, -0.0202, -0.2026, 0.0068, -0.0403, -0.3052, 0.0153, -0.0301, -0.3052, 0.0153, -0.0301, -0.2026, 0.0068, -0.0403, -0.3008, 0.0153, -0.0598, -0.3052, 0.0153, -0.0301, -0.3008, 0.0153, -0.0598, -0.4014, 0.027, -0.0395, -0.4014, 0.027, -0.0395, -0.3008, 0.0153, -0.0598, -0.3955, 0.027, -0.0787, -0.4014, 0.027, -0.0395, -0.3955, 0.027, -0.0787, -0.4924, 0.0418, -0.0485, -0.4924, 0.0418, -0.0485, -0.3955, 0.027, -0.0787, -0.4854, 0.0418, -0.0966, -0.4924, 0.0418, -0.0485, -0.4854, 0.0418, -0.0966, -0.5776, 0.0597, -0.0569, -0.5776, 0.0597, -0.0569, -0.4854, 0.0418, -0.0966, -0.5693, 0.0597, -0.1133, -0.5776, 0.0597, -0.0569, -0.5693, 0.0597, -0.1133, -0.6563, 0.0803, -0.0646, -0.6563, 0.0803, -0.0646, -0.5693, 0.0597, -0.1133, -0.6465, 0.0803, -0.1287, -0.6563, 0.0803, -0.0646, -0.6465, 0.0803, -0.1287, -0.7271, 0.1036, -0.0716, -0.7271, 0.1036, -0.0716, -0.6465, 0.0803, -0.1287, -0.7163, 0.1036, -0.1425, -0.7271, 0.1036, -0.0716, -0.7163, 0.1036, -0.1425, -0.7891, 0.1295, -0.0777, -0.7891, 0.1295, -0.0777, -0.7163, 0.1036, -0.1425, -0.7778, 0.1295, -0.1547, -0.7891, 0.1295, -0.0777, -0.7778, 0.1295, -0.1547, -0.8428, 0.158, -0.083, -0.8428, 0.158, -0.083, -0.7778, 0.1295, -0.1547, -0.8306, 0.158, -0.1652, -0.8428, 0.158, -0.083, -0.8306, 0.158, -0.1652, -0.8867, 0.1895, -0.0873, -0.8867, 0.1895, -0.0873, -0.8306, 0.158, -0.1652, -0.874, 0.1895, -0.1738, -0.8867, 0.1895, -0.0873, -0.874, 0.1895, -0.1738, -0.9209, 0.2247, -0.0907, -0.9209, 0.2247, -0.0907, -0.874, 0.1895, -0.1738, -0.9077, 0.2247, -0.1805, -0.9209, 0.2247, -0.0907, -0.9077, 0.2247, -0.1805, -0.9438, 0.2646, -0.093, -0.9438, 0.2646, -0.093, -0.9077, 0.2247, -0.1805, -0.9302, 0.2646, -0.1851, -0.9438, 0.2646, -0.093, -0.9302, 0.2646, -0.1851, -0.9517, 0.3049, -0.0938, -0.9517, 0.3049, -0.0938, -0.9302, 0.2646, -0.1851, -0.938, 0.3049, -0.1865, -0.9521, 0.3464, -0.0938, -0.9385, 0.3464, -0.1866, -0.9521, 0.3955, -0.0938, -0.9521, 0.3955, -0.0938, -0.9385, 0.3464, -0.1866, -0.9385, 0.3955, -0.1866, -0.1039, 0.0017, 0, 0, 0, 0, -0.1035, 0.0017, -0.0102, -0.1039, 0.0017, 0, -0.1035, 0.0017, -0.0102, -0.2067, 0.0068, 0, -0.2067, 0.0068, 0, -0.1035, 0.0017, -0.0102, -0.2057, 0.0068, -0.0202, -0.2067, 0.0068, 0, -0.2057, 0.0068, -0.0202, -0.3069, 0.0153, 0, -0.3069, 0.0153, 0, -0.2057, 0.0068, -0.0202, -0.3052, 0.0153, -0.0301, -0.3069, 0.0153, 0, -0.3052, 0.0153, -0.0301, -0.4033, 0.027, 0, -0.4033, 0.027, 0, -0.3052, 0.0153, -0.0301, -0.4014, 0.027, -0.0395, -0.4033, 0.027, 0, -0.4014, 0.027, -0.0395, -0.4949, 0.0418, 0, -0.4949, 0.0418, 0, -0.4014, 0.027, -0.0395, -0.4924, 0.0418, -0.0485, -0.4949, 0.0418, 0, -0.4924, 0.0418, -0.0485, -0.5806, 0.0597, 0, -0.5806, 0.0597, 0, -0.4924, 0.0418, -0.0485, -0.5776, 0.0597, -0.0569, -0.5806, 0.0597, 0, -0.5776, 0.0597, -0.0569, -0.6592, 0.0803, 0, -0.6592, 0.0803, 0, -0.5776, 0.0597, -0.0569, -0.6563, 0.0803, -0.0646, -0.6592, 0.0803, 0, -0.6563, 0.0803, -0.0646, -0.7305, 0.1036, 0, -0.7305, 0.1036, 0, -0.6563, 0.0803, -0.0646, -0.7271, 0.1036, -0.0716, -0.7305, 0.1036, 0, -0.7271, 0.1036, -0.0716, -0.793, 0.1295, 0, -0.793, 0.1295, 0, -0.7271, 0.1036, -0.0716, -0.7891, 0.1295, -0.0777, -0.793, 0.1295, 0, -0.7891, 0.1295, -0.0777, -0.8467, 0.158, 0, -0.8467, 0.158, 0, -0.7891, 0.1295, -0.0777, -0.8428, 0.158, -0.083, -0.8467, 0.158, 0, -0.8428, 0.158, -0.083, -0.8911, 0.1895, 0, -0.8911, 0.1895, 0, -0.8428, 0.158, -0.083, -0.8867, 0.1895, -0.0873, -0.8911, 0.1895, 0, -0.8867, 0.1895, -0.0873, -0.9253, 0.2247, 0, -0.9253, 0.2247, 0, -0.8867, 0.1895, -0.0873, -0.9209, 0.2247, -0.0907, -0.9253, 0.2247, 0, -0.9209, 0.2247, -0.0907, -0.9482, 0.2646, 0, -0.9482, 0.2646, 0, -0.9209, 0.2247, -0.0907, -0.9438, 0.2646, -0.093, -0.9482, 0.2646, 0, -0.9438, 0.2646, -0.093, -0.9565, 0.3049, 0, -0.9565, 0.3049, 0, -0.9438, 0.2646, -0.093, -0.9517, 0.3049, -0.0938, -0.9565, 0.3464, 0, -0.9521, 0.3464, -0.0938, -0.9565, 0.3955, 0, -0.9565, 0.3955, 0, -0.9521, 0.3464, -0.0938, -0.9521, 0.3955, -0.0938, -0.1866, 0.3464, -0.9385, -0.1865, 0.3049, -0.938, -0.0938, 0.3464, -0.9521, -0.0938, 0.3464, -0.9521, -0.1865, 0.3049, -0.938, -0.0938, 0.3049, -0.9517, 0.8838, 0.3955, -0.366, 0.9155, 0.3955, -0.2776, 0.8838, 0.4724, -0.366, 0.8838, 0.4724, -0.366, 0.9155, 0.3955, -0.2776, 0.9155, 0.4724, -0.2776, 0.1844, 0.4036, 0.9307, 0.1835, 0.4724, 0.9307, 0.1671, 0.4036, 0.833, 0.1671, 0.4036, 0.833, 0.1835, 0.4724, 0.9307, 0.1689, 0.4724, 0.8325, -0.6069, 0.3955, 0.7393, -0.6763, 0.3955, 0.6763, -0.6069, 0.4724, 0.7393, -0.6069, 0.4724, 0.7393, -0.6763, 0.3955, 0.6763, -0.6763, 0.4724, 0.6763, -0.1866, 0.3955, -0.9385, -0.0938, 0.3955, -0.9521, -0.1866, 0.4724, -0.9385, -0.1866, 0.4724, -0.9385, -0.0938, 0.3955, -0.9521, -0.0938, 0.4724, -0.9521, 0.6763, 0.3955, 0.6763, 0.6069, 0.3955, 0.7393, 0.6763, 0.4724, 0.6763, 0.6763, 0.4724, 0.6763, 0.6069, 0.3955, 0.7393, 0.6069, 0.4724, 0.7393, -0.8438, 0.3955, 0.4509, -0.8838, 0.3955, 0.366, -0.8438, 0.4724, 0.4509, -0.8438, 0.4724, 0.4509, -0.8838, 0.3955, 0.366, -0.8838, 0.4724, 0.366, -0.7954, 0.3955, -0.5313, -0.7393, 0.3955, -0.6069, -0.7954, 0.4724, -0.5313, -0.7954, 0.4724, -0.5313, -0.7393, 0.3955, -0.6069, -0.7393, 0.4724, -0.6069, -0.5273, 0.4036, 0.7886, -0.5283, 0.4724, 0.7881, -0.4709, 0.4036, 0.707, -0.4709, 0.4036, 0.707, -0.5283, 0.4724, 0.7881, -0.4692, 0.4724, 0.7085, -0.7954, 0.3955, 0.5313, -0.8438, 0.3955, 0.4509, -0.7954, 0.4724, 0.5313, -0.7954, 0.4724, 0.5313, -0.8438, 0.3955, 0.4509, -0.8438, 0.4724, 0.4509, 0.7954, 0.3955, -0.5313, 0.8438, 0.3955, -0.4509, 0.7954, 0.4724, -0.5313, 0.7954, 0.4724, -0.5313, 0.8438, 0.3955, -0.4509, 0.8438, 0.4724, -0.4509, -0.366, 0.3955, -0.8838, -0.2776, 0.3955, -0.9155, -0.366, 0.4724, -0.8838, -0.366, 0.4724, -0.8838, -0.2776, 0.3955, -0.9155, -0.2776, 0.4724, -0.9155, 0.6069, 0.3955, -0.7393, 0.6763, 0.3955, -0.6763, 0.6069, 0.4724, -0.7393, 0.6069, 0.4724, -0.7393, 0.6763, 0.3955, -0.6763, 0.6763, 0.4724, -0.6763, 0.9155, 0.3955, -0.2776, 0.9385, 0.3955, -0.1866, 0.9155, 0.4724, -0.2776, 0.9155, 0.4724, -0.2776, 0.9385, 0.3955, -0.1866, 0.9385, 0.4724, -0.1866, 0.9385, 0.3955, -0.1866, 0.9521, 0.3955, -0.0938, 0.9385, 0.4724, -0.1866, 0.9385, 0.4724, -0.1866, 0.9521, 0.3955, -0.0938, 0.9521, 0.4724, -0.0938, 0.9385, 0.3955, 0.1866, 0.9155, 0.3955, 0.2776, 0.9385, 0.4724, 0.1866, 0.9385, 0.4724, 0.1866, 0.9155, 0.3955, 0.2776, 0.9155, 0.4724, 0.2776, 0.366, 0.3955, -0.8838, 0.4509, 0.3955, -0.8438, 0.366, 0.4724, -0.8838, 0.366, 0.4724, -0.8838, 0.4509, 0.3955, -0.8438, 0.4509, 0.4724, -0.8438, 0.9565, 0.3955, 0, 0.9521, 0.3955, 0.0938, 0.9565, 0.4724, 0, 0.9565, 0.4724, 0, 0.9521, 0.3955, 0.0938, 0.9521, 0.4724, 0.0938, -0.1835, 0.4724, 0.9307, -0.1844, 0.4036, 0.9307, -0.1689, 0.4724, 0.8325, -0.1689, 0.4724, 0.8325, -0.1844, 0.4036, 0.9307, -0.1671, 0.4036, 0.833, 0.9521, 0.3955, -0.0938, 0.9565, 0.3955, 0, 0.9521, 0.4724, -0.0938, 0.9521, 0.4724, -0.0938, 0.9565, 0.3955, 0, 0.9565, 0.4724, 0, -0.6069, 0.3955, -0.7393, -0.5313, 0.3955, -0.7954, -0.6069, 0.4724, -0.7393, -0.6069, 0.4724, -0.7393, -0.5313, 0.3955, -0.7954, -0.5313, 0.4724, -0.7954, -0.8438, 0.3955, -0.4509, -0.7954, 0.3955, -0.5313, -0.8438, 0.4724, -0.4509, -0.8438, 0.4724, -0.4509, -0.7954, 0.3955, -0.5313, -0.7954, 0.4724, -0.5313, -0.9385, 0.3955, -0.1866, -0.9155, 0.3955, -0.2776, -0.9385, 0.4724, -0.1866, -0.9385, 0.4724, -0.1866, -0.9155, 0.3955, -0.2776, -0.9155, 0.4724, -0.2776, -0.7393, 0.3955, -0.6069, -0.6763, 0.3955, -0.6763, -0.7393, 0.4724, -0.6069, -0.7393, 0.4724, -0.6069, -0.6763, 0.3955, -0.6763, -0.6763, 0.4724, -0.6763, 0.7393, 0.3955, 0.6069, 0.6763, 0.3955, 0.6763, 0.7393, 0.4724, 0.6069, 0.7393, 0.4724, 0.6069, 0.6763, 0.3955, 0.6763, 0.6763, 0.4724, 0.6763, -0.6763, 0.3955, -0.6763, -0.6069, 0.3955, -0.7393, -0.6763, 0.4724, -0.6763, -0.6763, 0.4724, -0.6763, -0.6069, 0.3955, -0.7393, -0.6069, 0.4724, -0.7393, -0.9521, 0.3955, 0.0938, -0.9565, 0.3955, 0, -0.9521, 0.4724, 0.0938, -0.9521, 0.4724, 0.0938, -0.9565, 0.3955, 0, -0.9565, 0.4724, 0, 0.2776, 0.3955, -0.9155, 0.366, 0.3955, -0.8838, 0.2776, 0.4724, -0.9155, 0.2776, 0.4724, -0.9155, 0.366, 0.3955, -0.8838, 0.366, 0.4724, -0.8838, -0.7393, 0.3955, 0.6069, -0.7954, 0.3955, 0.5313, -0.7393, 0.4724, 0.6069, -0.7393, 0.4724, 0.6069, -0.7954, 0.3955, 0.5313, -0.7954, 0.4724, 0.5313, 0.0938, 0.3955, -0.9521, 0.1866, 0.3955, -0.9385, 0.0938, 0.4724, -0.9521, 0.0938, 0.4724, -0.9521, 0.1866, 0.3955, -0.9385, 0.1866, 0.4724, -0.9385, 0.0938, 0.3955, 0.9521, 0, 0.3955, 0.9565, 0.0938, 0.4724, 0.9521, 0.0938, 0.4724, 0.9521, 0, 0.3955, 0.9565, 0, 0.4724, 0.9565, -0.9565, 0.3955, 0, -0.9521, 0.3955, -0.0938, -0.9565, 0.4724, 0, -0.9565, 0.4724, 0, -0.9521, 0.3955, -0.0938, -0.9521, 0.4724, -0.0938, 0.9521, 0.3955, 0.0938, 0.9385, 0.3955, 0.1866, 0.9521, 0.4724, 0.0938, 0.9521, 0.4724, 0.0938, 0.9385, 0.3955, 0.1866, 0.9385, 0.4724, 0.1866, 0.8438, 0.3955, -0.4509, 0.8838, 0.3955, -0.366, 0.8438, 0.4724, -0.4509, 0.8438, 0.4724, -0.4509, 0.8838, 0.3955, -0.366, 0.8838, 0.4724, -0.366, -0.9521, 0.3955, -0.0938, -0.9385, 0.3955, -0.1866, -0.9521, 0.4724, -0.0938, -0.9521, 0.4724, -0.0938, -0.9385, 0.3955, -0.1866, -0.9385, 0.4724, -0.1866, -0.5313, 0.3955, -0.7954, -0.4509, 0.3955, -0.8438, -0.5313, 0.4724, -0.7954, -0.5313, 0.4724, -0.7954, -0.4509, 0.3955, -0.8438, -0.4509, 0.4724, -0.8438, 0.7393, 0.3955, -0.6069, 0.7954, 0.3955, -0.5313, 0.7393, 0.4724, -0.6069, 0.7393, 0.4724, -0.6069, 0.7954, 0.3955, -0.5313, 0.7954, 0.4724, -0.5313, -0.2776, 0.3955, -0.9155, -0.1866, 0.3955, -0.9385, -0.2776, 0.4724, -0.9155, -0.2776, 0.4724, -0.9155, -0.1866, 0.3955, -0.9385, -0.1866, 0.4724, -0.9385, 0, 0.3955, -0.9565, 0.0938, 0.3955, -0.9521, 0, 0.4724, -0.9565, 0, 0.4724, -0.9565, 0.0938, 0.3955, -0.9521, 0.0938, 0.4724, -0.9521, -0.8838, 0.3955, 0.366, -0.9155, 0.3955, 0.2776, -0.8838, 0.4724, 0.366, -0.8838, 0.4724, 0.366, -0.9155, 0.3955, 0.2776, -0.9155, 0.4724, 0.2776, 0.5313, 0.3955, -0.7954, 0.6069, 0.3955, -0.7393, 0.5313, 0.4724, -0.7954, 0.5313, 0.4724, -0.7954, 0.6069, 0.3955, -0.7393, 0.6069, 0.4724, -0.7393, -0.9155, 0.3955, -0.2776, -0.8838, 0.3955, -0.366, -0.9155, 0.4724, -0.2776, -0.9155, 0.4724, -0.2776, -0.8838, 0.3955, -0.366, -0.8838, 0.4724, -0.366, 0, 0.3955, 0.9565, -0.0938, 0.3955, 0.9521, 0, 0.4724, 0.9565, 0, 0.4724, 0.9565, -0.0938, 0.3955, 0.9521, -0.0938, 0.4724, 0.9521, -0.6763, 0.3955, 0.6763, -0.7393, 0.3955, 0.6069, -0.6763, 0.4724, 0.6763, -0.6763, 0.4724, 0.6763, -0.7393, 0.3955, 0.6069, -0.7393, 0.4724, 0.6069, 0.6763, 0.3955, -0.6763, 0.7393, 0.3955, -0.6069, 0.6763, 0.4724, -0.6763, 0.6763, 0.4724, -0.6763, 0.7393, 0.3955, -0.6069, 0.7393, 0.4724, -0.6069, -0.8838, 0.3955, -0.366, -0.8438, 0.3955, -0.4509, -0.8838, 0.4724, -0.366, -0.8838, 0.4724, -0.366, -0.8438, 0.3955, -0.4509, -0.8438, 0.4724, -0.4509, 0.8838, 0.3955, 0.366, 0.8438, 0.3955, 0.4509, 0.8838, 0.4724, 0.366, 0.8838, 0.4724, 0.366, 0.8438, 0.3955, 0.4509, 0.8438, 0.4724, 0.4509, 0.7954, 0.3955, 0.5313, 0.7393, 0.3955, 0.6069, 0.7954, 0.4724, 0.5313, 0.7954, 0.4724, 0.5313, 0.7393, 0.3955, 0.6069, 0.7393, 0.4724, 0.6069, -0.9385, 0.3955, 0.1866, -0.9521, 0.3955, 0.0938, -0.9385, 0.4724, 0.1866, -0.9385, 0.4724, 0.1866, -0.9521, 0.3955, 0.0938, -0.9521, 0.4724, 0.0938, 0.4509, 0.3955, -0.8438, 0.5313, 0.3955, -0.7954, 0.4509, 0.4724, -0.8438, 0.4509, 0.4724, -0.8438, 0.5313, 0.3955, -0.7954, 0.5313, 0.4724, -0.7954, -0.9155, 0.3955, 0.2776, -0.9385, 0.3955, 0.1866, -0.9155, 0.4724, 0.2776, -0.9155, 0.4724, 0.2776, -0.9385, 0.3955, 0.1866, -0.9385, 0.4724, 0.1866, -0.0938, 0.3955, -0.9521, 0, 0.3955, -0.9565, -0.0938, 0.4724, -0.9521, -0.0938, 0.4724, -0.9521, 0, 0.3955, -0.9565, 0, 0.4724, -0.9565, 0.5381, 0.3877, 0.7905, 0.5313, 0.3464, 0.7954, 0.4509, 0.3877, 0.8438, 0.4509, 0.3877, 0.8438, 0.5313, 0.3464, 0.7954, 0.4509, 0.3464, 0.8438, 0.8438, 0.3955, 0.4509, 0.7954, 0.3955, 0.5313, 0.8438, 0.4724, 0.4509, 0.8438, 0.4724, 0.4509, 0.7954, 0.3955, 0.5313, 0.7954, 0.4724, 0.5313, 0.9155, 0.3955, 0.2776, 0.8838, 0.3955, 0.366, 0.9155, 0.4724, 0.2776, 0.9155, 0.4724, 0.2776, 0.8838, 0.3955, 0.366, 0.8838, 0.4724, 0.366, -0.4509, 0.3955, -0.8438, -0.366, 0.3955, -0.8838, -0.4509, 0.4724, -0.8438, -0.4509, 0.4724, -0.8438, -0.366, 0.3955, -0.8838, -0.366, 0.4724, -0.8838, 0.1866, 0.3955, -0.9385, 0.2776, 0.3955, -0.9155, 0.1866, 0.4724, -0.9385, 0.1866, 0.4724, -0.9385, 0.2776, 0.3955, -0.9155, 0.2776, 0.4724, -0.9155, -0.7334, 0.5498, -0.6016, -0.6709, 0.5498, -0.6709, -0.6567, 0.5498, -0.5391, -0.6567, 0.5498, -0.5391, -0.6709, 0.5498, -0.6709, -0.6006, 0.5498, -0.6006, -0.9077, 0.5498, 0.2754, -0.9307, 0.5498, 0.1851, -0.813, 0.5498, 0.2466, -0.813, 0.5498, 0.2466, -0.9307, 0.5498, 0.1851, -0.8335, 0.5498, 0.1658, 0.093, 0.5498, 0.9443, 0, 0.5498, 0.9487, 0.0833, 0.5498, 0.8457, 0.0833, 0.5498, 0.8457, 0, 0.5498, 0.9487, 0, 0.5498, 0.8496, -0.1851, 0.5498, -0.9307, -0.093, 0.5498, -0.9443, -0.1658, 0.5498, -0.8335, -0.1658, 0.5498, -0.8335, -0.093, 0.5498, -0.9443, -0.0833, 0.5498, -0.8457, 0.8369, 0.5498, -0.4473, 0.8765, 0.5498, -0.363, 0.749, 0.5498, -0.4004, 0.749, 0.5498, -0.4004, 0.8765, 0.5498, -0.363, 0.7847, 0.5498, -0.3252, 0.5269, 0.5498, -0.7886, 0.6016, 0.5498, -0.7334, 0.4719, 0.5498, -0.7065, 0.4719, 0.5498, -0.7065, 0.6016, 0.5498, -0.7334, 0.5391, 0.5498, -0.6567, 0.7886, 0.5498, -0.5269, 0.8369, 0.5498, -0.4473, 0.7065, 0.5498, -0.4719, 0.7065, 0.5498, -0.4719, 0.8369, 0.5498, -0.4473, 0.749, 0.5498, -0.4004, 0.7886, 0.5498, 0.5269, 0.7334, 0.5498, 0.6016, 0.7065, 0.5498, 0.4719, 0.7065, 0.5498, 0.4719, 0.7334, 0.5498, 0.6016, 0.6567, 0.5498, 0.5391, -0.7334, 0.5498, 0.6016, -0.7886, 0.5498, 0.5269, -0.6567, 0.5498, 0.5391, -0.6567, 0.5498, 0.5391, -0.7886, 0.5498, 0.5269, -0.7065, 0.5498, 0.4719, 0.9487, 0.5498, 0, 0.9443, 0.5498, 0.093, 0.8496, 0.5498, 0, 0.8496, 0.5498, 0, 0.9443, 0.5498, 0.093, 0.8457, 0.5498, 0.0833, 0.6709, 0.5498, -0.6709, 0.7334, 0.5498, -0.6016, 0.6006, 0.5498, -0.6006, 0.6006, 0.5498, -0.6006, 0.7334, 0.5498, -0.6016, 0.6567, 0.5498, -0.5391, -0.5283, 0.4724, 0.7881, -0.5283, 0.542, 0.7881, -0.4692, 0.4724, 0.7085, -0.4692, 0.4724, 0.7085, -0.5283, 0.542, 0.7881, -0.4692, 0.542, 0.7085, 0.9521, 0.4724, -0.0938, 0.9565, 0.4724, 0, 0.9521, 0.542, -0.0938, 0.9521, 0.542, -0.0938, 0.9565, 0.4724, 0, 0.9565, 0.542, 0, 0.9077, 0.5498, 0.2754, 0.8765, 0.5498, 0.363, 0.813, 0.5498, 0.2466, 0.813, 0.5498, 0.2466, 0.8765, 0.5498, 0.363, 0.7847, 0.5498, 0.3252, 0.9077, 0.5498, -0.2754, 0.9307, 0.5498, -0.1851, 0.813, 0.5498, -0.2466, 0.813, 0.5498, -0.2466, 0.9307, 0.5498, -0.1851, 0.8335, 0.5498, -0.1658, 0.2754, 0.5498, -0.9077, 0.363, 0.5498, -0.8765, 0.2466, 0.5498, -0.813, 0.2466, 0.5498, -0.813, 0.363, 0.5498, -0.8765, 0.3252, 0.5498, -0.7847, -0.093, 0.5498, -0.9443, 0, 0.5498, -0.9487, -0.0833, 0.5498, -0.8457, -0.0833, 0.5498, -0.8457, 0, 0.5498, -0.9487, 0, 0.5498, -0.8496, 0.363, 0.5498, -0.8765, 0.4473, 0.5498, -0.8369, 0.3252, 0.5498, -0.7847, 0.3252, 0.5498, -0.7847, 0.4473, 0.5498, -0.8369, 0.4004, 0.5498, -0.749, -0.9077, 0.5498, -0.2754, -0.8765, 0.5498, -0.363, -0.813, 0.5498, -0.2466, -0.813, 0.5498, -0.2466, -0.8765, 0.5498, -0.363, -0.7847, 0.5498, -0.3252, -0.6709, 0.5498, -0.6709, -0.6016, 0.5498, -0.7334, -0.6006, 0.5498, -0.6006, -0.6006, 0.5498, -0.6006, -0.6016, 0.5498, -0.7334, -0.5391, 0.5498, -0.6567, 0.4473, 0.5498, -0.8369, 0.5269, 0.5498, -0.7886, 0.4004, 0.5498, -0.749, 0.4004, 0.5498, -0.749, 0.5269, 0.5498, -0.7886, 0.4719, 0.5498, -0.7065, -0.8765, 0.5498, -0.363, -0.8369, 0.5498, -0.4473, -0.7847, 0.5498, -0.3252, -0.7847, 0.5498, -0.3252, -0.8369, 0.5498, -0.4473, -0.749, 0.5498, -0.4004, -0.6709, 0.5498, 0.6709, -0.7334, 0.5498, 0.6016, -0.6006, 0.5498, 0.6006, -0.6006, 0.5498, 0.6006, -0.7334, 0.5498, 0.6016, -0.6567, 0.5498, 0.5391, 0.9307, 0.5498, 0.1851, 0.9077, 0.5498, 0.2754, 0.8335, 0.5498, 0.1658, 0.8335, 0.5498, 0.1658, 0.9077, 0.5498, 0.2754, 0.813, 0.5498, 0.2466, -0.9443, 0.5498, 0.093, -0.9487, 0.5498, 0, -0.8457, 0.5498, 0.0833, -0.8457, 0.5498, 0.0833, -0.9487, 0.5498, 0, -0.8496, 0.5498, 0, -0.7886, 0.5498, -0.5269, -0.7334, 0.5498, -0.6016, -0.7065, 0.5498, -0.4719, -0.7065, 0.5498, -0.4719, -0.7334, 0.5498, -0.6016, -0.6567, 0.5498, -0.5391, 0.1851, 0.5498, -0.9307, 0.2754, 0.5498, -0.9077, 0.1658, 0.5498, -0.8335, 0.1658, 0.5498, -0.8335, 0.2754, 0.5498, -0.9077, 0.2466, 0.5498, -0.813, -0.9487, 0.5498, 0, -0.9443, 0.5498, -0.093, -0.8496, 0.5498, 0, -0.8496, 0.5498, 0, -0.9443, 0.5498, -0.093, -0.8457, 0.5498, -0.0833, -0.8369, 0.5498, 0.4473, -0.8765, 0.5498, 0.363, -0.749, 0.5498, 0.4004, -0.749, 0.5498, 0.4004, -0.8765, 0.5498, 0.363, -0.7847, 0.5498, 0.3252, 0, 0.5498, -0.9487, 0.093, 0.5498, -0.9443, 0, 0.5498, -0.8496, 0, 0.5498, -0.8496, 0.093, 0.5498, -0.9443, 0.0833, 0.5498, -0.8457, -0.9443, 0.5498, -0.093, -0.9307, 0.5498, -0.1851, -0.8457, 0.5498, -0.0833, -0.8457, 0.5498, -0.0833, -0.9307, 0.5498, -0.1851, -0.8335, 0.5498, -0.1658, -0.4473, 0.5498, -0.8369, -0.363, 0.5498, -0.8765, -0.4004, 0.5498, -0.749, -0.4004, 0.5498, -0.749, -0.363, 0.5498, -0.8765, -0.3252, 0.5498, -0.7847, 0.8765, 0.5498, -0.363, 0.9077, 0.5498, -0.2754, 0.7847, 0.5498, -0.3252, 0.7847, 0.5498, -0.3252, 0.9077, 0.5498, -0.2754, 0.813, 0.5498, -0.2466, -0.5269, 0.5498, -0.7886, -0.4473, 0.5498, -0.8369, -0.4719, 0.5498, -0.7065, -0.4719, 0.5498, -0.7065, -0.4473, 0.5498, -0.8369, -0.4004, 0.5498, -0.749, 0.7334, 0.5498, -0.6016, 0.7886, 0.5498, -0.5269, 0.6567, 0.5498, -0.5391, 0.6567, 0.5498, -0.5391, 0.7886, 0.5498, -0.5269, 0.7065, 0.5498, -0.4719, -0.6016, 0.5498, -0.7334, -0.5269, 0.5498, -0.7886, -0.5391, 0.5498, -0.6567, -0.5391, 0.5498, -0.6567, -0.5269, 0.5498, -0.7886, -0.4719, 0.5498, -0.7065, 0.6709, 0.5498, 0.6709, 0.6016, 0.5498, 0.7334, 0.6006, 0.5498, 0.6006, 0.6006, 0.5498, 0.6006, 0.6016, 0.5498, 0.7334, 0.5391, 0.5498, 0.6567, -0.8765, 0.5498, 0.363, -0.9077, 0.5498, 0.2754, -0.7847, 0.5498, 0.3252, -0.7847, 0.5498, 0.3252, -0.9077, 0.5498, 0.2754, -0.813, 0.5498, 0.2466, -0.363, 0.5498, -0.8765, -0.2754, 0.5498, -0.9077, -0.3252, 0.5498, -0.7847, -0.3252, 0.5498, -0.7847, -0.2754, 0.5498, -0.9077, -0.2466, 0.5498, -0.813, 0.8765, 0.5498, 0.363, 0.8369, 0.5498, 0.4473, 0.7847, 0.5498, 0.3252, 0.7847, 0.5498, 0.3252, 0.8369, 0.5498, 0.4473, 0.749, 0.5498, 0.4004, -0.2754, 0.5498, -0.9077, -0.1851, 0.5498, -0.9307, -0.2466, 0.5498, -0.813, -0.2466, 0.5498, -0.813, -0.1851, 0.5498, -0.9307, -0.1658, 0.5498, -0.8335, 0.9307, 0.5498, -0.1851, 0.9443, 0.5498, -0.093, 0.8335, 0.5498, -0.1658, 0.8335, 0.5498, -0.1658, 0.9443, 0.5498, -0.093, 0.8457, 0.5498, -0.0833, -0.9307, 0.5498, -0.1851, -0.9077, 0.5498, -0.2754, -0.8335, 0.5498, -0.1658, -0.8335, 0.5498, -0.1658, -0.9077, 0.5498, -0.2754, -0.813, 0.5498, -0.2466, 0.1835, 0.4724, 0.9307, 0.1835, 0.542, 0.9307, 0.1689, 0.4724, 0.8325, 0.1689, 0.4724, 0.8325, 0.1835, 0.542, 0.9307, 0.1689, 0.542, 0.8325, -0.8369, 0.5498, -0.4473, -0.7886, 0.5498, -0.5269, -0.749, 0.5498, -0.4004, -0.749, 0.5498, -0.4004, -0.7886, 0.5498, -0.5269, -0.7065, 0.5498, -0.4719, 0.7334, 0.5498, 0.6016, 0.6709, 0.5498, 0.6709, 0.6567, 0.5498, 0.5391, 0.6567, 0.5498, 0.5391, 0.6709, 0.5498, 0.6709, 0.6006, 0.5498, 0.6006, -0.5347, 0.5498, 0.7832, -0.6016, 0.5498, 0.7334, -0.4756, 0.5498, 0.7036, -0.4756, 0.5498, 0.7036, -0.6016, 0.5498, 0.7334, -0.5391, 0.5498, 0.6567, 0.6016, 0.5498, -0.7334, 0.6709, 0.5498, -0.6709, 0.5391, 0.5498, -0.6567, 0.5391, 0.5498, -0.6567, 0.6709, 0.5498, -0.6709, 0.6006, 0.5498, -0.6006, 0.9443, 0.5498, 0.093, 0.9307, 0.5498, 0.1851, 0.8457, 0.5498, 0.0833, 0.8457, 0.5498, 0.0833, 0.9307, 0.5498, 0.1851, 0.8335, 0.5498, 0.1658, -0.7886, 0.5498, 0.5269, -0.8369, 0.5498, 0.4473, -0.7065, 0.5498, 0.4719, -0.7065, 0.5498, 0.4719, -0.8369, 0.5498, 0.4473, -0.749, 0.5498, 0.4004, 0.093, 0.5498, -0.9443, 0.1851, 0.5498, -0.9307, 0.0833, 0.5498, -0.8457, 0.0833, 0.5498, -0.8457, 0.1851, 0.5498, -0.9307, 0.1658, 0.5498, -0.8335, -0.1835, 0.542, 0.9307, -0.1835, 0.4724, 0.9307, -0.1689, 0.542, 0.8325, -0.1689, 0.542, 0.8325, -0.1835, 0.4724, 0.9307, -0.1689, 0.4724, 0.8325, 0.8369, 0.5498, 0.4473, 0.7886, 0.5498, 0.5269, 0.749, 0.5498, 0.4004, 0.749, 0.5498, 0.4004, 0.7886, 0.5498, 0.5269, 0.7065, 0.5498, 0.4719, -0.6016, 0.5498, 0.7334, -0.6709, 0.5498, 0.6709, -0.5391, 0.5498, 0.6567, -0.5391, 0.5498, 0.6567, -0.6709, 0.5498, 0.6709, -0.6006, 0.5498, 0.6006, 0.5283, 0.542, 0.7881, 0.5283, 0.4724, 0.7881, 0.4692, 0.542, 0.7085, 0.4692, 0.542, 0.7085, 0.5283, 0.4724, 0.7881, 0.4692, 0.4724, 0.7085, 0.366, 0.3877, 0.8838, 0.366, 0.3464, 0.8838, 0.2776, 0.3877, 0.9155, 0.2776, 0.3877, 0.9155, 0.366, 0.3464, 0.8838, 0.2776, 0.3464, 0.9155, 0.2776, 0.3877, 0.9155, 0.2776, 0.3464, 0.9155, 0.1783, 0.3877, 0.9395, 0.1783, 0.3877, 0.9395, 0.2776, 0.3464, 0.9155, 0.1866, 0.3464, 0.9385, 0.4509, 0.3877, 0.8438, 0.4509, 0.3464, 0.8438, 0.366, 0.3877, 0.8838, 0.366, 0.3877, 0.8838, 0.4509, 0.3464, 0.8438, 0.366, 0.3464, 0.8838, 0.1783, 0.3877, 0.9395, 0.1866, 0.3464, 0.9385, 0.0938, 0.3955, 0.9521, 0.0938, 0.3955, 0.9521, 0.1866, 0.3464, 0.9385, 0.0938, 0.3464, 0.9521, -0.2776, 0.3464, 0.9155, -0.366, 0.3464, 0.8838, -0.2776, 0.3877, 0.9155, -0.2776, 0.3877, 0.9155, -0.366, 0.3464, 0.8838, -0.366, 0.3877, 0.8838, -0.1866, 0.3464, 0.9385, -0.2776, 0.3464, 0.9155, -0.1783, 0.3877, 0.9395, -0.1783, 0.3877, 0.9395, -0.2776, 0.3464, 0.9155, -0.2776, 0.3877, 0.9155, -0.5381, 0.3877, 0.7905, -0.6069, 0.3955, 0.7393, -0.5391, 0.4724, 0.7896, -0.5391, 0.4724, 0.7896, -0.6069, 0.3955, 0.7393, -0.6069, 0.4724, 0.7393, -0.0938, 0.3464, 0.9521, -0.1866, 0.3464, 0.9385, -0.0938, 0.3955, 0.9521, -0.0938, 0.3955, 0.9521, -0.1866, 0.3464, 0.9385, -0.1783, 0.3877, 0.9395, -0.4509, 0.3464, 0.8438, -0.5313, 0.3464, 0.7954, -0.4509, 0.3877, 0.8438, -0.4509, 0.3877, 0.8438, -0.5313, 0.3464, 0.7954, -0.5381, 0.3877, 0.7905, -0.366, 0.3464, 0.8838, -0.4509, 0.3464, 0.8438, -0.366, 0.3877, 0.8838, -0.366, 0.3877, 0.8838, -0.4509, 0.3464, 0.8438, -0.4509, 0.3877, 0.8438, 0.6069, 0.4724, 0.7393, 0.5391, 0.4724, 0.7896, 0.6069, 0.542, 0.7393, 0.6069, 0.542, 0.7393, 0.5391, 0.4724, 0.7896, 0.5391, 0.542, 0.7896, 0.5205, 0.3955, 0.7925, 0.4473, 0.3955, 0.8369, 0.4644, 0.3955, 0.7109, 0.4644, 0.3955, 0.7109, 0.4473, 0.3955, 0.8369, 0.4004, 0.3955, 0.749, 0.6069, 0.4724, -0.7393, 0.6763, 0.4724, -0.6763, 0.6069, 0.542, -0.7393, 0.6069, 0.542, -0.7393, 0.6763, 0.4724, -0.6763, 0.6763, 0.542, -0.6763, 0.7393, 0.4724, 0.6069, 0.6763, 0.4724, 0.6763, 0.7393, 0.542, 0.6069, 0.7393, 0.542, 0.6069, 0.6763, 0.4724, 0.6763, 0.6763, 0.542, 0.6763, 0.7393, 0.4724, -0.6069, 0.7954, 0.4724, -0.5313, 0.7393, 0.542, -0.6069, 0.7393, 0.542, -0.6069, 0.7954, 0.4724, -0.5313, 0.7954, 0.542, -0.5313, 0.8838, 0.4724, 0.366, 0.8438, 0.4724, 0.4509, 0.8838, 0.542, 0.366, 0.8838, 0.542, 0.366, 0.8438, 0.4724, 0.4509, 0.8438, 0.542, 0.4509, 0.366, 0.4724, -0.8838, 0.4509, 0.4724, -0.8438, 0.366, 0.542, -0.8838, 0.366, 0.542, -0.8838, 0.4509, 0.4724, -0.8438, 0.4509, 0.542, -0.8438, 0.4509, 0.4724, -0.8438, 0.5313, 0.4724, -0.7954, 0.4509, 0.542, -0.8438, 0.4509, 0.542, -0.8438, 0.5313, 0.4724, -0.7954, 0.5313, 0.542, -0.7954, 0.5313, 0.4724, -0.7954, 0.6069, 0.4724, -0.7393, 0.5313, 0.542, -0.7954, 0.5313, 0.542, -0.7954, 0.6069, 0.4724, -0.7393, 0.6069, 0.542, -0.7393, 0.9155, 0.4724, 0.2776, 0.8838, 0.4724, 0.366, 0.9155, 0.542, 0.2776, 0.9155, 0.542, 0.2776, 0.8838, 0.4724, 0.366, 0.8838, 0.542, 0.366, 0.2776, 0.4724, -0.9155, 0.366, 0.4724, -0.8838, 0.2776, 0.542, -0.9155, 0.2776, 0.542, -0.9155, 0.366, 0.4724, -0.8838, 0.366, 0.542, -0.8838, 0.1866, 0.4724, -0.9385, 0.2776, 0.4724, -0.9155, 0.1866, 0.542, -0.9385, 0.1866, 0.542, -0.9385, 0.2776, 0.4724, -0.9155, 0.2776, 0.542, -0.9155, 0.9155, 0.4724, -0.2776, 0.9385, 0.4724, -0.1866, 0.9155, 0.542, -0.2776, 0.9155, 0.542, -0.2776, 0.9385, 0.4724, -0.1866, 0.9385, 0.542, -0.1866, 0.7954, 0.4724, -0.5313, 0.8438, 0.4724, -0.4509, 0.7954, 0.542, -0.5313, 0.7954, 0.542, -0.5313, 0.8438, 0.4724, -0.4509, 0.8438, 0.542, -0.4509, 0.6016, 0.5498, 0.7334, 0.5347, 0.5498, 0.7832, 0.5391, 0.5498, 0.6567, 0.5391, 0.5498, 0.6567, 0.5347, 0.5498, 0.7832, 0.4756, 0.5498, 0.7036, 0.8438, 0.4724, 0.4509, 0.7954, 0.4724, 0.5313, 0.8438, 0.542, 0.4509, 0.8438, 0.542, 0.4509, 0.7954, 0.4724, 0.5313, 0.7954, 0.542, 0.5313, -0.9565, 0.4724, 0, -0.9521, 0.4724, -0.0938, -0.9565, 0.542, 0, -0.9565, 0.542, 0, -0.9521, 0.4724, -0.0938, -0.9521, 0.542, -0.0938, 0.0938, 0.4724, 0.9521, 0, 0.4724, 0.9565, 0.0938, 0.542, 0.9521, 0.0938, 0.542, 0.9521, 0, 0.4724, 0.9565, 0, 0.542, 0.9565, 0.6763, 0.4724, 0.6763, 0.6069, 0.4724, 0.7393, 0.6763, 0.542, 0.6763, 0.6763, 0.542, 0.6763, 0.6069, 0.4724, 0.7393, 0.6069, 0.542, 0.7393, 0.6763, 0.4724, -0.6763, 0.7393, 0.4724, -0.6069, 0.6763, 0.542, -0.6763, 0.6763, 0.542, -0.6763, 0.7393, 0.4724, -0.6069, 0.7393, 0.542, -0.6069, 0.9385, 0.4724, 0.1866, 0.9155, 0.4724, 0.2776, 0.9385, 0.542, 0.1866, 0.9385, 0.542, 0.1866, 0.9155, 0.4724, 0.2776, 0.9155, 0.542, 0.2776, 0, 0.4724, -0.9565, 0.0938, 0.4724, -0.9521, 0, 0.542, -0.9565, 0, 0.542, -0.9565, 0.0938, 0.4724, -0.9521, 0.0938, 0.542, -0.9521, 0.7954, 0.4724, 0.5313, 0.7393, 0.4724, 0.6069, 0.7954, 0.542, 0.5313, 0.7954, 0.542, 0.5313, 0.7393, 0.4724, 0.6069, 0.7393, 0.542, 0.6069, 0.1757, 0.5498, 0.9321, 0.093, 0.5498, 0.9443, 0.1611, 0.5498, 0.834, 0.1611, 0.5498, 0.834, 0.093, 0.5498, 0.9443, 0.0833, 0.5498, 0.8457, 0.0938, 0.4724, -0.9521, 0.1866, 0.4724, -0.9385, 0.0938, 0.542, -0.9521, 0.0938, 0.542, -0.9521, 0.1866, 0.4724, -0.9385, 0.1866, 0.542, -0.9385, 0.8838, 0.4724, -0.366, 0.9155, 0.4724, -0.2776, 0.8838, 0.542, -0.366, 0.8838, 0.542, -0.366, 0.9155, 0.4724, -0.2776, 0.9155, 0.542, -0.2776, 0.8438, 0.4724, -0.4509, 0.8838, 0.4724, -0.366, 0.8438, 0.542, -0.4509, 0.8438, 0.542, -0.4509, 0.8838, 0.4724, -0.366, 0.8838, 0.542, -0.366, 0.9565, 0.4724, 0, 0.9521, 0.4724, 0.0938, 0.9565, 0.542, 0, 0.9565, 0.542, 0, 0.9521, 0.4724, 0.0938, 0.9521, 0.542, 0.0938, 0.9521, 0.4724, 0.0938, 0.9385, 0.4724, 0.1866, 0.9521, 0.542, 0.0938, 0.9521, 0.542, 0.0938, 0.9385, 0.4724, 0.1866, 0.9385, 0.542, 0.1866, 0.9385, 0.4724, -0.1866, 0.9521, 0.4724, -0.0938, 0.9385, 0.542, -0.1866, 0.9385, 0.542, -0.1866, 0.9521, 0.4724, -0.0938, 0.9521, 0.542, -0.0938, -0.6069, 0.4724, -0.7393, -0.5313, 0.4724, -0.7954, -0.6069, 0.542, -0.7393, -0.6069, 0.542, -0.7393, -0.5313, 0.4724, -0.7954, -0.5313, 0.542, -0.7954, -0.7393, 0.4724, 0.6069, -0.7954, 0.4724, 0.5313, -0.7393, 0.542, 0.6069, -0.7393, 0.542, 0.6069, -0.7954, 0.4724, 0.5313, -0.7954, 0.542, 0.5313, -0.7393, 0.4724, -0.6069, -0.6763, 0.4724, -0.6763, -0.7393, 0.542, -0.6069, -0.7393, 0.542, -0.6069, -0.6763, 0.4724, -0.6763, -0.6763, 0.542, -0.6763, -0.8838, 0.4724, 0.366, -0.9155, 0.4724, 0.2776, -0.8838, 0.542, 0.366, -0.8838, 0.542, 0.366, -0.9155, 0.4724, 0.2776, -0.9155, 0.542, 0.2776, -0.366, 0.4724, -0.8838, -0.2776, 0.4724, -0.9155, -0.366, 0.542, -0.8838, -0.366, 0.542, -0.8838, -0.2776, 0.4724, -0.9155, -0.2776, 0.542, -0.9155, -0.4509, 0.4724, -0.8438, -0.366, 0.4724, -0.8838, -0.4509, 0.542, -0.8438, -0.4509, 0.542, -0.8438, -0.366, 0.4724, -0.8838, -0.366, 0.542, -0.8838, -0.5313, 0.4724, -0.7954, -0.4509, 0.4724, -0.8438, -0.5313, 0.542, -0.7954, -0.5313, 0.542, -0.7954, -0.4509, 0.4724, -0.8438, -0.4509, 0.542, -0.8438, -0.9155, 0.4724, 0.2776, -0.9385, 0.4724, 0.1866, -0.9155, 0.542, 0.2776, -0.9155, 0.542, 0.2776, -0.9385, 0.4724, 0.1866, -0.9385, 0.542, 0.1866, -0.2776, 0.4724, -0.9155, -0.1866, 0.4724, -0.9385, -0.2776, 0.542, -0.9155, -0.2776, 0.542, -0.9155, -0.1866, 0.4724, -0.9385, -0.1866, 0.542, -0.9385, -0.1866, 0.4724, -0.9385, -0.0938, 0.4724, -0.9521, -0.1866, 0.542, -0.9385, -0.1866, 0.542, -0.9385, -0.0938, 0.4724, -0.9521, -0.0938, 0.542, -0.9521, -0.9155, 0.4724, -0.2776, -0.8838, 0.4724, -0.366, -0.9155, 0.542, -0.2776, -0.9155, 0.542, -0.2776, -0.8838, 0.4724, -0.366, -0.8838, 0.542, -0.366, -0.7954, 0.4724, -0.5313, -0.7393, 0.4724, -0.6069, -0.7954, 0.542, -0.5313, -0.7954, 0.542, -0.5313, -0.7393, 0.4724, -0.6069, -0.7393, 0.542, -0.6069, -0.6069, 0.4724, 0.7393, -0.6763, 0.4724, 0.6763, -0.6069, 0.542, 0.7393, -0.6069, 0.542, 0.7393, -0.6763, 0.4724, 0.6763, -0.6763, 0.542, 0.6763, -0.8438, 0.4724, 0.4509, -0.8838, 0.4724, 0.366, -0.8438, 0.542, 0.4509, -0.8438, 0.542, 0.4509, -0.8838, 0.4724, 0.366, -0.8838, 0.542, 0.366, -0.9521, 0.4724, -0.0938, -0.9385, 0.4724, -0.1866, -0.9521, 0.542, -0.0938, -0.9521, 0.542, -0.0938, -0.9385, 0.4724, -0.1866, -0.9385, 0.542, -0.1866, 0, 0.5498, 0.9487, -0.093, 0.5498, 0.9443, 0, 0.5498, 0.8496, 0, 0.5498, 0.8496, -0.093, 0.5498, 0.9443, -0.0833, 0.5498, 0.8457, -0.6763, 0.4724, 0.6763, -0.7393, 0.4724, 0.6069, -0.6763, 0.542, 0.6763, -0.6763, 0.542, 0.6763, -0.7393, 0.4724, 0.6069, -0.7393, 0.542, 0.6069, -0.6763, 0.4724, -0.6763, -0.6069, 0.4724, -0.7393, -0.6763, 0.542, -0.6763, -0.6763, 0.542, -0.6763, -0.6069, 0.4724, -0.7393, -0.6069, 0.542, -0.7393, -0.9385, 0.4724, 0.1866, -0.9521, 0.4724, 0.0938, -0.9385, 0.542, 0.1866, -0.9385, 0.542, 0.1866, -0.9521, 0.4724, 0.0938, -0.9521, 0.542, 0.0938, -0.0938, 0.4724, -0.9521, 0, 0.4724, -0.9565, -0.0938, 0.542, -0.9521, -0.0938, 0.542, -0.9521, 0, 0.4724, -0.9565, 0, 0.542, -0.9565, -0.7954, 0.4724, 0.5313, -0.8438, 0.4724, 0.4509, -0.7954, 0.542, 0.5313, -0.7954, 0.542, 0.5313, -0.8438, 0.4724, 0.4509, -0.8438, 0.542, 0.4509, -0.093, 0.5498, 0.9443, -0.1757, 0.5498, 0.9321, -0.0833, 0.5498, 0.8457, -0.0833, 0.5498, 0.8457, -0.1757, 0.5498, 0.9321, -0.1611, 0.5498, 0.834, 0, 0.4724, 0.9565, -0.0938, 0.4724, 0.9521, 0, 0.542, 0.9565, 0, 0.542, 0.9565, -0.0938, 0.4724, 0.9521, -0.0938, 0.542, 0.9521, -0.8838, 0.4724, -0.366, -0.8438, 0.4724, -0.4509, -0.8838, 0.542, -0.366, -0.8838, 0.542, -0.366, -0.8438, 0.4724, -0.4509, -0.8438, 0.542, -0.4509, -0.8438, 0.4724, -0.4509, -0.7954, 0.4724, -0.5313, -0.8438, 0.542, -0.4509, -0.8438, 0.542, -0.4509, -0.7954, 0.4724, -0.5313, -0.7954, 0.542, -0.5313, -0.9307, 0.5498, 0.1851, -0.9443, 0.5498, 0.093, -0.8335, 0.5498, 0.1658, -0.8335, 0.5498, 0.1658, -0.9443, 0.5498, 0.093, -0.8457, 0.5498, 0.0833, -0.9521, 0.4724, 0.0938, -0.9565, 0.4724, 0, -0.9521, 0.542, 0.0938, -0.9521, 0.542, 0.0938, -0.9565, 0.4724, 0, -0.9565, 0.542, 0, -0.9385, 0.4724, -0.1866, -0.9155, 0.4724, -0.2776, -0.9385, 0.542, -0.1866, -0.9385, 0.542, -0.1866, -0.9155, 0.4724, -0.2776, -0.9155, 0.542, -0.2776, 0.1769, 0.4724, 0.9399, 0.0938, 0.4724, 0.9521, 0.1769, 0.542, 0.9399, 0.1769, 0.542, 0.9399, 0.0938, 0.4724, 0.9521, 0.0938, 0.542, 0.9521, -0.0938, 0.4724, 0.9521, -0.1769, 0.4724, 0.9399, -0.0938, 0.542, 0.9521, -0.0938, 0.542, 0.9521, -0.1769, 0.4724, 0.9399, -0.1769, 0.542, 0.9399, -0.5391, 0.4724, 0.7896, -0.6069, 0.4724, 0.7393, -0.5391, 0.542, 0.7896, -0.5391, 0.542, 0.7896, -0.6069, 0.4724, 0.7393, -0.6069, 0.542, 0.7393, 0.9443, 0.5498, -0.093, 0.9487, 0.5498, 0, 0.8457, 0.5498, -0.0833, 0.8457, 0.5498, -0.0833, 0.9487, 0.5498, 0, 0.8496, 0.5498, 0, 0.5381, 0.3877, 0.7905, 0.5205, 0.3955, 0.7925, 0.5273, 0.4036, 0.7886, 0.1844, 0.4036, 0.9307, 0.1923, 0.3955, 0.9287, 0.1783, 0.3877, 0.9395, -0.5273, 0.4036, 0.7886, -0.5205, 0.3955, 0.7925, -0.5381, 0.3877, 0.7905, -0.1783, 0.3877, 0.9395, -0.1923, 0.3955, 0.9287, -0.1844, 0.4036, 0.9307, 0.5283, 0.542, 0.7881, 0.5347, 0.5498, 0.7832, 0.5391, 0.542, 0.7896, 0.1769, 0.542, 0.9399, 0.1757, 0.5498, 0.9321, 0.1835, 0.542, 0.9307, -0.5391, 0.542, 0.7896, -0.5347, 0.5498, 0.7832, -0.5283, 0.542, 0.7881, -0.1835, 0.542, 0.9307, -0.1757, 0.5498, 0.9321, -0.1769, 0.542, 0.9399, 0.363, 0.3955, 0.8765, 0.4473, 0.3955, 0.8369, 0.366, 0.3877, 0.8838, 0.366, 0.3877, 0.8838, 0.4473, 0.3955, 0.8369, 0.4509, 0.3877, 0.8438, 0.2754, 0.3955, 0.9077, 0.363, 0.3955, 0.8765, 0.2776, 0.3877, 0.9155, 0.2776, 0.3877, 0.9155, 0.363, 0.3955, 0.8765, 0.366, 0.3877, 0.8838, 0.4473, 0.3955, 0.8369, 0.5205, 0.3955, 0.7925, 0.4509, 0.3877, 0.8438, 0.4509, 0.3877, 0.8438, 0.5205, 0.3955, 0.7925, 0.5381, 0.3877, 0.7905, 0.1923, 0.3955, 0.9287, 0.2754, 0.3955, 0.9077, 0.1783, 0.3877, 0.9395, 0.1783, 0.3877, 0.9395, 0.2754, 0.3955, 0.9077, 0.2776, 0.3877, 0.9155, -0.366, 0.3877, 0.8838, -0.4509, 0.3877, 0.8438, -0.363, 0.3955, 0.8765, -0.363, 0.3955, 0.8765, -0.4509, 0.3877, 0.8438, -0.4473, 0.3955, 0.8369, -0.2776, 0.3877, 0.9155, -0.366, 0.3877, 0.8838, -0.2754, 0.3955, 0.9077, -0.2754, 0.3955, 0.9077, -0.366, 0.3877, 0.8838, -0.363, 0.3955, 0.8765, -0.4509, 0.3877, 0.8438, -0.5381, 0.3877, 0.7905, -0.4473, 0.3955, 0.8369, -0.4473, 0.3955, 0.8369, -0.5381, 0.3877, 0.7905, -0.5205, 0.3955, 0.7925, -0.1783, 0.3877, 0.9395, -0.2776, 0.3877, 0.9155, -0.1923, 0.3955, 0.9287, -0.1923, 0.3955, 0.9287, -0.2776, 0.3877, 0.9155, -0.2754, 0.3955, 0.9077, 0.1835, 0.4724, 0.9307, 0.1844, 0.4036, 0.9307, 0.1769, 0.4724, 0.9399, 0.1769, 0.4724, 0.9399, 0.1844, 0.4036, 0.9307, 0.1783, 0.3877, 0.9395, -0.5283, 0.4724, 0.7881, -0.5273, 0.4036, 0.7886, -0.5391, 0.4724, 0.7896, -0.5391, 0.4724, 0.7896, -0.5273, 0.4036, 0.7886, -0.5381, 0.3877, 0.7905, -0.1844, 0.4036, 0.9307, -0.1835, 0.4724, 0.9307, -0.1783, 0.3877, 0.9395, -0.1783, 0.3877, 0.9395, -0.1835, 0.4724, 0.9307, -0.1769, 0.4724, 0.9399, 0.5391, 0.4724, 0.7896, 0.5381, 0.3877, 0.7905, 0.5283, 0.4724, 0.7881, 0.5283, 0.4724, 0.7881, 0.5381, 0.3877, 0.7905, 0.5273, 0.4036, 0.7886, 0.6016, 0.5498, -0.7334, 0.5269, 0.5498, -0.7886, 0.6069, 0.542, -0.7393, 0.6069, 0.542, -0.7393, 0.5269, 0.5498, -0.7886, 0.5313, 0.542, -0.7954, 0.7334, 0.5498, 0.6016, 0.7886, 0.5498, 0.5269, 0.7393, 0.542, 0.6069, 0.7393, 0.542, 0.6069, 0.7886, 0.5498, 0.5269, 0.7954, 0.542, 0.5313, 0.7334, 0.5498, -0.6016, 0.6709, 0.5498, -0.6709, 0.7393, 0.542, -0.6069, 0.7393, 0.542, -0.6069, 0.6709, 0.5498, -0.6709, 0.6763, 0.542, -0.6763, 0.8765, 0.5498, 0.363, 0.9077, 0.5498, 0.2754, 0.8838, 0.542, 0.366, 0.8838, 0.542, 0.366, 0.9077, 0.5498, 0.2754, 0.9155, 0.542, 0.2776, 0.363, 0.5498, -0.8765, 0.2754, 0.5498, -0.9077, 0.366, 0.542, -0.8838, 0.366, 0.542, -0.8838, 0.2754, 0.5498, -0.9077, 0.2776, 0.542, -0.9155, 0.4473, 0.5498, -0.8369, 0.363, 0.5498, -0.8765, 0.4509, 0.542, -0.8438, 0.4509, 0.542, -0.8438, 0.363, 0.5498, -0.8765, 0.366, 0.542, -0.8838, 0.5269, 0.5498, -0.7886, 0.4473, 0.5498, -0.8369, 0.5313, 0.542, -0.7954, 0.5313, 0.542, -0.7954, 0.4473, 0.5498, -0.8369, 0.4509, 0.542, -0.8438, 0.9077, 0.5498, 0.2754, 0.9307, 0.5498, 0.1851, 0.9155, 0.542, 0.2776, 0.9155, 0.542, 0.2776, 0.9307, 0.5498, 0.1851, 0.9385, 0.542, 0.1866, 0.2754, 0.5498, -0.9077, 0.1851, 0.5498, -0.9307, 0.2776, 0.542, -0.9155, 0.2776, 0.542, -0.9155, 0.1851, 0.5498, -0.9307, 0.1866, 0.542, -0.9385, 0.1851, 0.5498, -0.9307, 0.093, 0.5498, -0.9443, 0.1866, 0.542, -0.9385, 0.1866, 0.542, -0.9385, 0.093, 0.5498, -0.9443, 0.0938, 0.542, -0.9521, 0.9077, 0.5498, -0.2754, 0.8765, 0.5498, -0.363, 0.9155, 0.542, -0.2776, 0.9155, 0.542, -0.2776, 0.8765, 0.5498, -0.363, 0.8838, 0.542, -0.366, 0.7886, 0.5498, -0.5269, 0.7334, 0.5498, -0.6016, 0.7954, 0.542, -0.5313, 0.7954, 0.542, -0.5313, 0.7334, 0.5498, -0.6016, 0.7393, 0.542, -0.6069, 0.6016, 0.5498, 0.7334, 0.6709, 0.5498, 0.6709, 0.6069, 0.542, 0.7393, 0.6069, 0.542, 0.7393, 0.6709, 0.5498, 0.6709, 0.6763, 0.542, 0.6763, 0.8369, 0.5498, 0.4473, 0.8765, 0.5498, 0.363, 0.8438, 0.542, 0.4509, 0.8438, 0.542, 0.4509, 0.8765, 0.5498, 0.363, 0.8838, 0.542, 0.366, 0.9443, 0.5498, -0.093, 0.9307, 0.5498, -0.1851, 0.9521, 0.542, -0.0938, 0.9521, 0.542, -0.0938, 0.9307, 0.5498, -0.1851, 0.9385, 0.542, -0.1866, 0.093, 0.5498, 0.9443, 0.1757, 0.5498, 0.9321, 0.0938, 0.542, 0.9521, 0.0938, 0.542, 0.9521, 0.1757, 0.5498, 0.9321, 0.1769, 0.542, 0.9399, 0.6709, 0.5498, 0.6709, 0.7334, 0.5498, 0.6016, 0.6763, 0.542, 0.6763, 0.6763, 0.542, 0.6763, 0.7334, 0.5498, 0.6016, 0.7393, 0.542, 0.6069, 0.6709, 0.5498, -0.6709, 0.6016, 0.5498, -0.7334, 0.6763, 0.542, -0.6763, 0.6763, 0.542, -0.6763, 0.6016, 0.5498, -0.7334, 0.6069, 0.542, -0.7393, 0.9307, 0.5498, 0.1851, 0.9443, 0.5498, 0.093, 0.9385, 0.542, 0.1866, 0.9385, 0.542, 0.1866, 0.9443, 0.5498, 0.093, 0.9521, 0.542, 0.0938, 0.093, 0.5498, -0.9443, 0, 0.5498, -0.9487, 0.0938, 0.542, -0.9521, 0.0938, 0.542, -0.9521, 0, 0.5498, -0.9487, 0, 0.542, -0.9565, 0.7886, 0.5498, 0.5269, 0.8369, 0.5498, 0.4473, 0.7954, 0.542, 0.5313, 0.7954, 0.542, 0.5313, 0.8369, 0.5498, 0.4473, 0.8438, 0.542, 0.4509, 0.5347, 0.5498, 0.7832, 0.6016, 0.5498, 0.7334, 0.5391, 0.542, 0.7896, 0.5391, 0.542, 0.7896, 0.6016, 0.5498, 0.7334, 0.6069, 0.542, 0.7393, 0, 0.5498, 0.9487, 0.093, 0.5498, 0.9443, 0, 0.542, 0.9565, 0, 0.542, 0.9565, 0.093, 0.5498, 0.9443, 0.0938, 0.542, 0.9521, 0.8765, 0.5498, -0.363, 0.8369, 0.5498, -0.4473, 0.8838, 0.542, -0.366, 0.8838, 0.542, -0.366, 0.8369, 0.5498, -0.4473, 0.8438, 0.542, -0.4509, 0.8369, 0.5498, -0.4473, 0.7886, 0.5498, -0.5269, 0.8438, 0.542, -0.4509, 0.8438, 0.542, -0.4509, 0.7886, 0.5498, -0.5269, 0.7954, 0.542, -0.5313, 0.9521, 0.542, -0.0938, 0.9565, 0.542, 0, 0.9443, 0.5498, -0.093, 0.9443, 0.5498, -0.093, 0.9565, 0.542, 0, 0.9487, 0.5498, 0, 0.9443, 0.5498, 0.093, 0.9487, 0.5498, 0, 0.9521, 0.542, 0.0938, 0.9521, 0.542, 0.0938, 0.9487, 0.5498, 0, 0.9565, 0.542, 0, 0.9307, 0.5498, -0.1851, 0.9077, 0.5498, -0.2754, 0.9385, 0.542, -0.1866, 0.9385, 0.542, -0.1866, 0.9077, 0.5498, -0.2754, 0.9155, 0.542, -0.2776, -0.6069, 0.542, -0.7393, -0.5313, 0.542, -0.7954, -0.6016, 0.5498, -0.7334, -0.6016, 0.5498, -0.7334, -0.5313, 0.542, -0.7954, -0.5269, 0.5498, -0.7886, -0.7393, 0.542, 0.6069, -0.7954, 0.542, 0.5313, -0.7334, 0.5498, 0.6016, -0.7334, 0.5498, 0.6016, -0.7954, 0.542, 0.5313, -0.7886, 0.5498, 0.5269, -0.7393, 0.542, -0.6069, -0.6763, 0.542, -0.6763, -0.7334, 0.5498, -0.6016, -0.7334, 0.5498, -0.6016, -0.6763, 0.542, -0.6763, -0.6709, 0.5498, -0.6709, -0.8838, 0.542, 0.366, -0.9155, 0.542, 0.2776, -0.8765, 0.5498, 0.363, -0.8765, 0.5498, 0.363, -0.9155, 0.542, 0.2776, -0.9077, 0.5498, 0.2754, -0.366, 0.542, -0.8838, -0.2776, 0.542, -0.9155, -0.363, 0.5498, -0.8765, -0.363, 0.5498, -0.8765, -0.2776, 0.542, -0.9155, -0.2754, 0.5498, -0.9077, -0.4509, 0.542, -0.8438, -0.366, 0.542, -0.8838, -0.4473, 0.5498, -0.8369, -0.4473, 0.5498, -0.8369, -0.366, 0.542, -0.8838, -0.363, 0.5498, -0.8765, -0.5313, 0.542, -0.7954, -0.4509, 0.542, -0.8438, -0.5269, 0.5498, -0.7886, -0.5269, 0.5498, -0.7886, -0.4509, 0.542, -0.8438, -0.4473, 0.5498, -0.8369, -0.9155, 0.542, 0.2776, -0.9385, 0.542, 0.1866, -0.9077, 0.5498, 0.2754, -0.9077, 0.5498, 0.2754, -0.9385, 0.542, 0.1866, -0.9307, 0.5498, 0.1851, -0.2776, 0.542, -0.9155, -0.1866, 0.542, -0.9385, -0.2754, 0.5498, -0.9077, -0.2754, 0.5498, -0.9077, -0.1866, 0.542, -0.9385, -0.1851, 0.5498, -0.9307, -0.1866, 0.542, -0.9385, -0.0938, 0.542, -0.9521, -0.1851, 0.5498, -0.9307, -0.1851, 0.5498, -0.9307, -0.0938, 0.542, -0.9521, -0.093, 0.5498, -0.9443, -0.9155, 0.542, -0.2776, -0.8838, 0.542, -0.366, -0.9077, 0.5498, -0.2754, -0.9077, 0.5498, -0.2754, -0.8838, 0.542, -0.366, -0.8765, 0.5498, -0.363, -0.7954, 0.542, -0.5313, -0.7393, 0.542, -0.6069, -0.7886, 0.5498, -0.5269, -0.7886, 0.5498, -0.5269, -0.7393, 0.542, -0.6069, -0.7334, 0.5498, -0.6016, -0.6069, 0.542, 0.7393, -0.6763, 0.542, 0.6763, -0.6016, 0.5498, 0.7334, -0.6016, 0.5498, 0.7334, -0.6763, 0.542, 0.6763, -0.6709, 0.5498, 0.6709, -0.8438, 0.542, 0.4509, -0.8838, 0.542, 0.366, -0.8369, 0.5498, 0.4473, -0.8369, 0.5498, 0.4473, -0.8838, 0.542, 0.366, -0.8765, 0.5498, 0.363, -0.9521, 0.542, -0.0938, -0.9385, 0.542, -0.1866, -0.9443, 0.5498, -0.093, -0.9443, 0.5498, -0.093, -0.9385, 0.542, -0.1866, -0.9307, 0.5498, -0.1851, -0.0938, 0.542, 0.9521, -0.1769, 0.542, 0.9399, -0.093, 0.5498, 0.9443, -0.093, 0.5498, 0.9443, -0.1769, 0.542, 0.9399, -0.1757, 0.5498, 0.9321, -0.6763, 0.542, 0.6763, -0.7393, 0.542, 0.6069, -0.6709, 0.5498, 0.6709, -0.6709, 0.5498, 0.6709, -0.7393, 0.542, 0.6069, -0.7334, 0.5498, 0.6016, -0.6763, 0.542, -0.6763, -0.6069, 0.542, -0.7393, -0.6709, 0.5498, -0.6709, -0.6709, 0.5498, -0.6709, -0.6069, 0.542, -0.7393, -0.6016, 0.5498, -0.7334, -0.9385, 0.542, 0.1866, -0.9521, 0.542, 0.0938, -0.9307, 0.5498, 0.1851, -0.9307, 0.5498, 0.1851, -0.9521, 0.542, 0.0938, -0.9443, 0.5498, 0.093, -0.0938, 0.542, -0.9521, 0, 0.542, -0.9565, -0.093, 0.5498, -0.9443, -0.093, 0.5498, -0.9443, 0, 0.542, -0.9565, 0, 0.5498, -0.9487, -0.7954, 0.542, 0.5313, -0.8438, 0.542, 0.4509, -0.7886, 0.5498, 0.5269, -0.7886, 0.5498, 0.5269, -0.8438, 0.542, 0.4509, -0.8369, 0.5498, 0.4473, -0.5391, 0.542, 0.7896, -0.6069, 0.542, 0.7393, -0.5347, 0.5498, 0.7832, -0.5347, 0.5498, 0.7832, -0.6069, 0.542, 0.7393, -0.6016, 0.5498, 0.7334, 0, 0.542, 0.9565, -0.0938, 0.542, 0.9521, 0, 0.5498, 0.9487, 0, 0.5498, 0.9487, -0.0938, 0.542, 0.9521, -0.093, 0.5498, 0.9443, -0.8838, 0.542, -0.366, -0.8438, 0.542, -0.4509, -0.8765, 0.5498, -0.363, -0.8765, 0.5498, -0.363, -0.8438, 0.542, -0.4509, -0.8369, 0.5498, -0.4473, -0.8438, 0.542, -0.4509, -0.7954, 0.542, -0.5313, -0.8369, 0.5498, -0.4473, -0.8369, 0.5498, -0.4473, -0.7954, 0.542, -0.5313, -0.7886, 0.5498, -0.5269, -0.9443, 0.5498, -0.093, -0.9487, 0.5498, 0, -0.9521, 0.542, -0.0938, -0.9521, 0.542, -0.0938, -0.9487, 0.5498, 0, -0.9565, 0.542, 0, -0.9521, 0.542, 0.0938, -0.9565, 0.542, 0, -0.9443, 0.5498, 0.093, -0.9443, 0.5498, 0.093, -0.9565, 0.542, 0, -0.9487, 0.5498, 0, -0.9385, 0.542, -0.1866, -0.9155, 0.542, -0.2776, -0.9307, 0.5498, -0.1851, -0.9307, 0.5498, -0.1851, -0.9155, 0.542, -0.2776, -0.9077, 0.5498, -0.2754, 0.5391, 0.542, 0.7896, 0.5391, 0.4724, 0.7896, 0.5283, 0.542, 0.7881, 0.5283, 0.542, 0.7881, 0.5391, 0.4724, 0.7896, 0.5283, 0.4724, 0.7881, -0.5283, 0.542, 0.7881, -0.5283, 0.4724, 0.7881, -0.5391, 0.542, 0.7896, -0.5391, 0.542, 0.7896, -0.5283, 0.4724, 0.7881, -0.5391, 0.4724, 0.7896, 0.1769, 0.4724, 0.9399, 0.1769, 0.542, 0.9399, 0.1835, 0.4724, 0.9307, 0.1835, 0.4724, 0.9307, 0.1769, 0.542, 0.9399, 0.1835, 0.542, 0.9307, -0.1769, 0.542, 0.9399, -0.1769, 0.4724, 0.9399, -0.1835, 0.542, 0.9307, -0.1835, 0.542, 0.9307, -0.1769, 0.4724, 0.9399, -0.1835, 0.4724, 0.9307, 0.4709, 0.4036, 0.707, 0.5273, 0.4036, 0.7886, 0.4644, 0.3955, 0.7109, 0.4644, 0.3955, 0.7109, 0.5273, 0.4036, 0.7886, 0.5205, 0.3955, 0.7925, 0.1744, 0.3955, 0.8311, 0.1923, 0.3955, 0.9287, 0.1671, 0.4036, 0.833, 0.1671, 0.4036, 0.833, 0.1923, 0.3955, 0.9287, 0.1844, 0.4036, 0.9307, -0.4644, 0.3955, 0.7109, -0.5205, 0.3955, 0.7925, -0.4709, 0.4036, 0.707, -0.4709, 0.4036, 0.707, -0.5205, 0.3955, 0.7925, -0.5273, 0.4036, 0.7886, -0.1671, 0.4036, 0.833, -0.1844, 0.4036, 0.9307, -0.1744, 0.3955, 0.8311, -0.1744, 0.3955, 0.8311, -0.1844, 0.4036, 0.9307, -0.1923, 0.3955, 0.9287, 0.4756, 0.5498, 0.7036, 0.5347, 0.5498, 0.7832, 0.4692, 0.542, 0.7085, 0.4692, 0.542, 0.7085, 0.5347, 0.5498, 0.7832, 0.5283, 0.542, 0.7881, 0.1689, 0.542, 0.8325, 0.1835, 0.542, 0.9307, 0.1611, 0.5498, 0.834, 0.1611, 0.5498, 0.834, 0.1835, 0.542, 0.9307, 0.1757, 0.5498, 0.9321, -0.4692, 0.542, 0.7085, -0.5283, 0.542, 0.7881, -0.4756, 0.5498, 0.7036, -0.4756, 0.5498, 0.7036, -0.5283, 0.542, 0.7881, -0.5347, 0.5498, 0.7832, -0.1611, 0.5498, 0.834, -0.1757, 0.5498, 0.9321, -0.1689, 0.542, 0.8325, -0.1689, 0.542, 0.8325, -0.1757, 0.5498, 0.9321, -0.1835, 0.542, 0.9307, 0.6069, 0.3955, 0.7393, 0.6069, 0.3464, 0.7393, 0.5381, 0.3877, 0.7905, 0.5381, 0.3877, 0.7905, 0.6069, 0.3464, 0.7393, 0.5313, 0.3464, 0.7954, -0.9731, 1.4805, 0.0346, -0.9194, 1.4453, 0.0391, -1.0098, 1.416, 0.0349, -1.0098, 1.416, 0.0349, -0.9194, 1.4453, 0.0391, -0.9609, 1.375, 0.0394, -0.6694, 1.5352, -0.0445, -0.6782, 1.5283, -0.0544, -0.645, 1.5557, -0.0635, -1.043, 1.3604, 0, -1.042, 1.3613, -0.0285, -1.0156, 1.4199, 0, -1.0156, 1.4199, 0, -1.042, 1.3613, -0.0285, -1.0156, 1.4199, -0.0276, -1.042, 1.3613, 0.0285, -1.043, 1.3604, 0, -1.0156, 1.4199, 0.0276, -1.0156, 1.4199, 0.0276, -1.043, 1.3604, 0, -1.0156, 1.4199, 0, -1.0156, 1.4199, 0, -1.0156, 1.4199, -0.0276, -0.9795, 1.4834, 0, -0.9795, 1.4834, 0, -1.0156, 1.4199, -0.0276, -0.979, 1.4834, -0.0274, -0.979, 1.4834, 0.0274, -0.9795, 1.4834, 0, -0.9365, 1.5449, 0.0282, -0.9365, 1.5449, 0.0282, -0.9795, 1.4834, 0, -0.937, 1.5449, 0, -0.9795, 1.4834, 0, -0.979, 1.4834, -0.0274, -0.937, 1.5449, 0, -0.937, 1.5449, 0, -0.979, 1.4834, -0.0274, -0.9365, 1.5449, -0.0282, -0.9194, 1.4453, -0.037, -0.8711, 1.5137, -0.0395, -0.9731, 1.4805, -0.0344, -0.9731, 1.4805, -0.0344, -0.8711, 1.5137, -0.0395, -0.9302, 1.542, -0.0354, -1.0156, 1.4199, 0.0276, -1.0156, 1.4199, 0, -0.979, 1.4834, 0.0274, -0.979, 1.4834, 0.0274, -1.0156, 1.4199, 0, -0.9795, 1.4834, 0, -0.9951, 1.3008, 0.0327, -0.9961, 1.2998, 0, -1.04, 1.3496, 0.0289, -1.04, 1.3496, 0.0289, -0.9961, 1.2998, 0, -1.041, 1.3486, 0, -0.937, 1.5449, 0, -0.9365, 1.5449, -0.0282, -0.8926, 1.5967, 0, -0.8926, 1.5967, 0, -0.9365, 1.5449, -0.0282, -0.8926, 1.5977, -0.0315, -0.9302, 1.542, 0.0354, -0.8711, 1.5137, 0.0395, -0.9731, 1.4805, 0.0346, -0.9731, 1.4805, 0.0346, -0.8711, 1.5137, 0.0395, -0.9194, 1.4453, 0.0391, -0.8154, 1.5791, 0.0311, -0.8818, 1.6006, 0.0263, -0.8164, 1.5781, 0, -0.8164, 1.5781, 0, -0.8818, 1.6006, 0.0263, -0.8818, 1.6006, 0, -0.9917, 1.3076, -0.0392, -0.9609, 1.374, -0.037, -1.0371, 1.3564, -0.0356, -1.0371, 1.3564, -0.0356, -0.9609, 1.374, -0.037, -1.0098, 1.416, -0.0347, -1.0098, 1.416, -0.0347, -0.9609, 1.374, -0.037, -0.9731, 1.4805, -0.0344, -0.9731, 1.4805, -0.0344, -0.9609, 1.374, -0.037, -0.9194, 1.4453, -0.037, -0.9961, 1.2998, 0, -0.9951, 1.3008, -0.0327, -1.041, 1.3486, 0, -1.041, 1.3486, 0, -0.9951, 1.3008, -0.0327, -1.04, 1.3496, -0.0289, -0.8711, 1.5137, -0.0395, -0.8198, 1.5742, -0.0416, -0.9302, 1.542, -0.0354, -0.9302, 1.542, -0.0354, -0.8198, 1.5742, -0.0416, -0.8857, 1.5947, -0.0385, -0.8154, 1.5791, -0.035, -0.8164, 1.5781, 0, -0.8818, 1.6006, -0.032, -0.8818, 1.6006, -0.032, -0.8164, 1.5781, 0, -0.8818, 1.6006, 0, -0.8711, 1.5137, 0.0395, -0.9302, 1.542, 0.0354, -0.8198, 1.5742, 0.038, -0.8198, 1.5742, 0.038, -0.9302, 1.542, 0.0354, -0.8857, 1.5947, 0.0333, -1.0098, 1.416, 0.0349, -0.9609, 1.375, 0.0394, -1.0371, 1.3564, 0.0356, -1.0371, 1.3564, 0.0356, -0.9609, 1.375, 0.0394, -0.9917, 1.3076, 0.0395, -0.9609, 1.375, 0.0394, -0.9063, 1.3291, 0.0444, -0.9917, 1.3076, 0.0395, -0.9917, 1.3076, 0.0395, -0.9063, 1.3291, 0.0444, -0.9414, 1.2539, 0.0437, -0.8711, 1.5137, 0.0395, -0.8057, 1.4834, 0.0439, -0.9194, 1.4453, 0.0391, -0.9194, 1.4453, 0.0391, -0.8057, 1.4834, 0.0439, -0.8599, 1.4072, 0.044, -0.7422, 1.5566, -0.0383, -0.7446, 1.5547, 0, -0.8154, 1.5791, -0.035, -0.8154, 1.5791, -0.035, -0.7446, 1.5547, 0, -0.8164, 1.5781, 0, -0.9194, 1.4453, 0.0391, -0.8599, 1.4072, 0.044, -0.9609, 1.375, 0.0394, -0.9609, 1.375, 0.0394, -0.8599, 1.4072, 0.044, -0.9063, 1.3291, 0.0444, -0.9365, 1.5449, 0.0282, -0.937, 1.5449, 0, -0.8926, 1.5977, 0.0261, -0.8926, 1.5977, 0.0261, -0.937, 1.5449, 0, -0.8926, 1.5967, 0, -0.7422, 1.5566, 0.0363, -0.8154, 1.5791, 0.0311, -0.7446, 1.5547, 0, -0.7446, 1.5547, 0, -0.8154, 1.5791, 0.0311, -0.8164, 1.5781, 0, -0.9609, 1.374, -0.037, -0.9067, 1.3281, -0.0397, -0.9194, 1.4453, -0.037, -0.9194, 1.4453, -0.037, -0.9067, 1.3281, -0.0397, -0.8604, 1.4072, -0.0398, -0.9448, 1.2471, 0.0369, -0.9463, 1.2461, 0, -0.9951, 1.3008, 0.0327, -0.9951, 1.3008, 0.0327, -0.9463, 1.2461, 0, -0.9961, 1.2998, 0, -0.8604, 1.4072, -0.0398, -0.8057, 1.4834, -0.0439, -0.9194, 1.4453, -0.037, -0.9194, 1.4453, -0.037, -0.8057, 1.4834, -0.0439, -0.8711, 1.5137, -0.0395, -0.9463, 1.2461, 0, -0.9448, 1.2471, -0.0369, -0.9961, 1.2998, 0, -0.9961, 1.2998, 0, -0.9448, 1.2471, -0.0369, -0.9951, 1.3008, -0.0327, -0.8057, 1.4834, 0.0439, -0.8711, 1.5137, 0.0395, -0.7466, 1.5508, 0.0432, -0.7466, 1.5508, 0.0432, -0.8711, 1.5137, 0.0395, -0.8198, 1.5742, 0.038, -0.9414, 1.2539, -0.0433, -0.9067, 1.3281, -0.0397, -0.9917, 1.3076, -0.0392, -0.9917, 1.3076, -0.0392, -0.9067, 1.3281, -0.0397, -0.9609, 1.374, -0.037, -0.8057, 1.4834, -0.0439, -0.7466, 1.5508, -0.045, -0.8711, 1.5137, -0.0395, -0.8711, 1.5137, -0.0395, -0.7466, 1.5508, -0.045, -0.8198, 1.5742, -0.0416, -0.645, 1.5557, 0.0635, -0.7129, 1.498, 0.0702, -0.6782, 1.5283, 0.0542, -1.042, 1.3613, 0.0285, -1.0371, 1.3564, 0.0356, -1.04, 1.3496, 0.0289, -1.04, 1.3496, -0.0289, -1.0371, 1.3564, -0.0356, -1.042, 1.3613, -0.0285, -0.8857, 1.5947, -0.0385, -0.8818, 1.6006, -0.032, -0.8926, 1.5977, -0.0315, -0.8818, 1.6006, 0.0263, -0.8857, 1.5947, 0.0333, -0.8926, 1.5977, 0.0261, -0.9009, 1.2041, -0.0396, -0.8989, 1.2119, -0.0459, -0.9448, 1.2471, -0.0369, -0.9448, 1.2471, -0.0369, -0.8989, 1.2119, -0.0459, -0.9414, 1.2539, -0.0433, -0.8198, 1.5742, -0.0416, -0.8154, 1.5791, -0.035, -0.8857, 1.5947, -0.0385, -0.8857, 1.5947, -0.0385, -0.8154, 1.5791, -0.035, -0.8818, 1.6006, -0.032, -1.0371, 1.3564, 0.0356, -1.042, 1.3613, 0.0285, -1.0098, 1.416, 0.0349, -1.0098, 1.416, 0.0349, -1.042, 1.3613, 0.0285, -1.0156, 1.4199, 0.0276, -1.042, 1.3613, -0.0285, -1.0371, 1.3564, -0.0356, -1.0156, 1.4199, -0.0276, -1.0156, 1.4199, -0.0276, -1.0371, 1.3564, -0.0356, -1.0098, 1.416, -0.0347, -1.041, 1.3486, 0, -1.043, 1.3604, 0, -1.04, 1.3496, 0.0289, -1.04, 1.3496, 0.0289, -1.043, 1.3604, 0, -1.042, 1.3613, 0.0285, -1.0156, 1.4199, -0.0276, -1.0098, 1.416, -0.0347, -0.979, 1.4834, -0.0274, -0.979, 1.4834, -0.0274, -1.0098, 1.416, -0.0347, -0.9731, 1.4805, -0.0344, -0.979, 1.4834, -0.0274, -0.9731, 1.4805, -0.0344, -0.9365, 1.5449, -0.0282, -0.9365, 1.5449, -0.0282, -0.9731, 1.4805, -0.0344, -0.9302, 1.542, -0.0354, -0.9365, 1.5449, -0.0282, -0.9302, 1.542, -0.0354, -0.8926, 1.5977, -0.0315, -0.8926, 1.5977, -0.0315, -0.9302, 1.542, -0.0354, -0.8857, 1.5947, -0.0385, -1.0098, 1.416, 0.0349, -1.0156, 1.4199, 0.0276, -0.9731, 1.4805, 0.0346, -0.9731, 1.4805, 0.0346, -1.0156, 1.4199, 0.0276, -0.979, 1.4834, 0.0274, -1.043, 1.3604, 0, -1.041, 1.3486, 0, -1.042, 1.3613, -0.0285, -1.042, 1.3613, -0.0285, -1.041, 1.3486, 0, -1.04, 1.3496, -0.0289, -0.9731, 1.4805, 0.0346, -0.979, 1.4834, 0.0274, -0.9302, 1.542, 0.0354, -0.9302, 1.542, 0.0354, -0.979, 1.4834, 0.0274, -0.9365, 1.5449, 0.0282, -0.9302, 1.542, 0.0354, -0.9365, 1.5449, 0.0282, -0.8857, 1.5947, 0.0333, -0.8857, 1.5947, 0.0333, -0.9365, 1.5449, 0.0282, -0.8926, 1.5977, 0.0261, -0.8926, 1.5967, 0, -0.8818, 1.6006, 0, -0.8926, 1.5977, 0.0261, -0.8926, 1.5977, 0.0261, -0.8818, 1.6006, 0, -0.8818, 1.6006, 0.0263, -0.8818, 1.6006, 0, -0.8926, 1.5967, 0, -0.8818, 1.6006, -0.032, -0.8818, 1.6006, -0.032, -0.8926, 1.5967, 0, -0.8926, 1.5977, -0.0315, -0.9951, 1.3008, -0.0327, -0.9917, 1.3076, -0.0392, -1.04, 1.3496, -0.0289, -1.04, 1.3496, -0.0289, -0.9917, 1.3076, -0.0392, -1.0371, 1.3564, -0.0356, -0.6479, 1.5557, 0, -0.645, 1.5557, 0.0635, -0.6719, 1.5352, 0, -0.6719, 1.5352, 0, -0.645, 1.5557, 0.0635, -0.6694, 1.5352, 0.0443, -1.04, 1.3496, 0.0289, -1.0371, 1.3564, 0.0356, -0.9951, 1.3008, 0.0327, -0.9951, 1.3008, 0.0327, -1.0371, 1.3564, 0.0356, -0.9917, 1.3076, 0.0395, -0.9951, 1.3008, 0.0327, -0.9917, 1.3076, 0.0395, -0.9448, 1.2471, 0.0369, -0.9448, 1.2471, 0.0369, -0.9917, 1.3076, 0.0395, -0.9414, 1.2539, 0.0437, -0.7466, 1.5508, -0.045, -0.7422, 1.5566, -0.0383, -0.8198, 1.5742, -0.0416, -0.8198, 1.5742, -0.0416, -0.7422, 1.5566, -0.0383, -0.8154, 1.5791, -0.035, -0.9448, 1.2471, -0.0369, -0.9414, 1.2539, -0.0433, -0.9951, 1.3008, -0.0327, -0.9951, 1.3008, -0.0327, -0.9414, 1.2539, -0.0433, -0.9917, 1.3076, -0.0392, -0.8857, 1.5947, 0.0333, -0.8818, 1.6006, 0.0263, -0.8198, 1.5742, 0.038, -0.8198, 1.5742, 0.038, -0.8818, 1.6006, 0.0263, -0.8154, 1.5791, 0.0311, -0.8198, 1.5742, 0.038, -0.8154, 1.5791, 0.0311, -0.7466, 1.5508, 0.0432, -0.7466, 1.5508, 0.0432, -0.8154, 1.5791, 0.0311, -0.7422, 1.5566, 0.0363, -0.8765, 1.2188, 0.1743, -0.8931, 1.1416, 0.1776, -0.8892, 1.2188, 0.0876, -0.8892, 1.2188, 0.0876, -0.8931, 1.1416, 0.1776, -0.9063, 1.1416, 0.0892, -0.8481, 1.293, 0.1687, -0.8765, 1.2188, 0.1743, -0.8608, 1.293, 0.0848, -0.8608, 1.293, 0.0848, -0.8765, 1.2188, 0.1743, -0.8892, 1.2188, 0.0876, -0.8096, 1.3652, 0.161, -0.8481, 1.293, 0.1687, -0.8218, 1.3652, 0.0809, -0.8218, 1.3652, 0.0809, -0.8481, 1.293, 0.1687, -0.8608, 1.293, 0.0848, -0.7612, 1.4336, 0.1514, -0.8096, 1.3652, 0.161, -0.772, 1.4336, 0.076, -0.772, 1.4336, 0.076, -0.8096, 1.3652, 0.161, -0.8218, 1.3652, 0.0809, -0.7026, 1.498, 0.1398, -0.7612, 1.4336, 0.1514, -0.7129, 1.498, 0.0702, -0.7129, 1.498, 0.0702, -0.7612, 1.4336, 0.1514, -0.772, 1.4336, 0.076, -0.6353, 1.5557, 0.1263, -0.7026, 1.498, 0.1398, -0.645, 1.5557, 0.0635, -0.645, 1.5557, 0.0635, -0.7026, 1.498, 0.1398, -0.7129, 1.498, 0.0702, -0.8989, 1.2119, -0.0459, -0.8687, 1.2969, -0.0411, -0.9414, 1.2539, -0.0433, -0.9414, 1.2539, -0.0433, -0.8687, 1.2969, -0.0411, -0.9067, 1.3281, -0.0397, -0.6816, 1.5342, 0.0401, -0.7422, 1.5566, 0.0363, -0.6841, 1.5342, 0, -0.6841, 1.5342, 0, -0.7422, 1.5566, 0.0363, -0.7446, 1.5547, 0, -0.6782, 1.5283, 0.0542, -0.7129, 1.498, 0.0702, -0.7573, 1.4512, 0.0539, -0.7573, 1.4512, 0.0539, -0.7129, 1.498, 0.0702, -0.772, 1.4336, 0.076, -0.8892, 1.2188, -0.0876, -0.9063, 1.1416, -0.0892, -0.8765, 1.2188, -0.1743, -0.8765, 1.2188, -0.1743, -0.9063, 1.1416, -0.0892, -0.8931, 1.1416, -0.1776, -0.8608, 1.293, -0.0848, -0.8892, 1.2188, -0.0876, -0.8481, 1.293, -0.1687, -0.8481, 1.293, -0.1687, -0.8892, 1.2188, -0.0876, -0.8765, 1.2188, -0.1743, -0.8218, 1.3652, -0.0809, -0.8608, 1.293, -0.0848, -0.8096, 1.3652, -0.161, -0.8096, 1.3652, -0.161, -0.8608, 1.293, -0.0848, -0.8481, 1.293, -0.1687, -0.772, 1.4336, -0.076, -0.8218, 1.3652, -0.0809, -0.7612, 1.4336, -0.1514, -0.7612, 1.4336, -0.1514, -0.8218, 1.3652, -0.0809, -0.8096, 1.3652, -0.161, -0.7129, 1.498, -0.0702, -0.772, 1.4336, -0.076, -0.7026, 1.498, -0.1398, -0.7026, 1.498, -0.1398, -0.772, 1.4336, -0.076, -0.7612, 1.4336, -0.1514, -0.645, 1.5557, -0.0635, -0.7129, 1.498, -0.0702, -0.6353, 1.5557, -0.1263, -0.6353, 1.5557, -0.1263, -0.7129, 1.498, -0.0702, -0.7026, 1.498, -0.1398, -0.1769, 1.041, 0.6147, -0.2053, 1.0576, 0.604, -0.2064, 1.084, 0.5991, -0.2064, 1.084, 0.5991, -0.2053, 1.0576, 0.604, -0.2368, 1.1064, 0.5845, 0, 0.7759, 0.8354, 0, 0.7324, 0.8354, -0.0554, 0.7759, 0.8325, -0.0554, 0.7759, 0.8325, 0, 0.7324, 0.8354, -0.0472, 0.7578, 0.833, -0.0472, 0.7578, 0.833, 0, 0.7324, 0.8354, -0.0348, 0.7437, 0.8335, -0.0348, 0.7437, 0.8335, 0, 0.7324, 0.8354, -0.0159, 0.7334, 0.835, -0.9121, 0.6279, 0.0898, -0.9165, 0.6279, 0, -0.9121, 0.7153, 0.0898, -0.9121, 0.7153, 0.0898, -0.9165, 0.6279, 0, -0.9165, 0.7153, 0, -0.9121, 0.7153, 0.0898, -0.9165, 0.7153, 0, -0.9121, 0.8022, 0.0898, -0.9121, 0.8022, 0.0898, -0.9165, 0.7153, 0, -0.9165, 0.8022, 0, -0.9121, 0.8022, 0.0898, -0.9165, 0.8022, 0, -0.9121, 0.8892, 0.0898, -0.9121, 0.8892, 0.0898, -0.9165, 0.8022, 0, -0.9165, 0.8892, 0, -0.9121, 0.8892, 0.0898, -0.9165, 0.8892, 0, -0.9121, 0.9766, 0.0898, -0.9121, 0.9766, 0.0898, -0.9165, 0.8892, 0, -0.9165, 0.9766, 0, -0.9121, 0.9766, 0.0898, -0.9165, 0.9766, 0, -0.9121, 1.0635, 0.0898, -0.9121, 1.0635, 0.0898, -0.9165, 0.9766, 0, -0.9165, 1.0635, 0, -0.9121, 1.0635, 0.0898, -0.9165, 1.0635, 0, -0.9063, 1.1416, 0.0892, -0.9063, 1.1416, 0.0892, -0.9165, 1.0635, 0, -0.9106, 1.1416, 0, -0.645, 1.5557, 0.0635, -0.6479, 1.5557, 0, -0.5684, 1.6084, 0.056, -0.5684, 1.6084, 0.056, -0.6479, 1.5557, 0, -0.5713, 1.6084, 0, -0.4878, 1.6602, 0, -0.4856, 1.6602, -0.0406, -0.4888, 1.7266, 0, -0.4888, 1.7266, 0, -0.4856, 1.6602, -0.0406, -0.4871, 1.7266, -0.0369, -0.3523, 1.9189, 0.0346, -0.3354, 1.8574, 0.0391, -0.4226, 1.8955, 0.0349, -0.4226, 1.8955, 0.0349, -0.3354, 1.8574, 0.0391, -0.4138, 1.832, 0.0394, -0.8989, 0.6279, 0.1787, -0.9121, 0.6279, 0.0898, -0.8989, 0.7153, 0.1787, -0.8989, 0.7153, 0.1787, -0.9121, 0.6279, 0.0898, -0.9121, 0.7153, 0.0898, -0.8989, 0.7153, 0.1787, -0.9121, 0.7153, 0.0898, -0.8989, 0.8022, 0.1787, -0.8989, 0.8022, 0.1787, -0.9121, 0.7153, 0.0898, -0.9121, 0.8022, 0.0898, -0.8989, 0.8022, 0.1787, -0.9121, 0.8022, 0.0898, -0.8989, 0.8892, 0.1787, -0.8989, 0.8892, 0.1787, -0.9121, 0.8022, 0.0898, -0.9121, 0.8892, 0.0898, -0.8989, 0.8892, 0.1787, -0.9121, 0.8892, 0.0898, -0.8989, 0.9766, 0.1787, -0.8989, 0.9766, 0.1787, -0.9121, 0.8892, 0.0898, -0.9121, 0.9766, 0.0898, -0.8989, 0.9766, 0.1787, -0.9121, 0.9766, 0.0898, -0.8989, 1.0635, 0.1787, -0.8989, 1.0635, 0.1787, -0.9121, 0.9766, 0.0898, -0.9121, 1.0635, 0.0898, -0.8989, 1.0635, 0.1787, -0.9121, 1.0635, 0.0898, -0.8931, 1.1416, 0.1776, -0.8931, 1.1416, 0.1776, -0.9121, 1.0635, 0.0898, -0.9063, 1.1416, 0.0892, -0.5713, 1.6084, 0, -0.5684, 1.6084, -0.056, -0.4934, 1.6504, 0, -0.4934, 1.6504, 0, -0.5684, 1.6084, -0.056, -0.4907, 1.6494, -0.0549, -0.6353, 1.5557, 0.1263, -0.645, 1.5557, 0.0635, -0.5601, 1.6084, 0.1115, -0.5601, 1.6084, 0.1115, -0.645, 1.5557, 0.0635, -0.5684, 1.6084, 0.056, -0.4041, 1.7617, 0.0444, -0.395, 1.6982, 0.0489, -0.48, 1.7295, 0.0437, -0.48, 1.7295, 0.0437, -0.395, 1.6982, 0.0489, -0.4788, 1.6631, 0.0475, -0.5601, 1.6084, 0.1115, -0.5684, 1.6084, 0.056, -0.4783, 1.6533, 0.0951, -0.4783, 1.6533, 0.0951, -0.5684, 1.6084, 0.056, -0.4907, 1.6494, 0.0544, -0.3169, 1.7891, 0.044, -0.3, 1.7275, 0.0485, -0.4041, 1.7617, 0.0444, -0.4041, 1.7617, 0.0444, -0.3, 1.7275, 0.0485, -0.395, 1.6982, 0.0489, -0.0841, 1.7559, 0, -0.0793, 1.7559, 0.0651, -0.0859, 1.7559, 0.0551, -0.877, 0.6279, 0.2659, -0.8989, 0.6279, 0.1787, -0.877, 0.7153, 0.2659, -0.877, 0.7153, 0.2659, -0.8989, 0.6279, 0.1787, -0.8989, 0.7153, 0.1787, -0.877, 0.7153, 0.2659, -0.8989, 0.7153, 0.1787, -0.877, 0.8022, 0.2659, -0.877, 0.8022, 0.2659, -0.8989, 0.7153, 0.1787, -0.8989, 0.8022, 0.1787, -0.877, 0.8022, 0.2659, -0.8989, 0.8022, 0.1787, -0.877, 0.8892, 0.2659, -0.877, 0.8892, 0.2659, -0.8989, 0.8022, 0.1787, -0.8989, 0.8892, 0.1787, -0.877, 0.8892, 0.2659, -0.8989, 0.8892, 0.1787, -0.877, 0.9766, 0.2659, -0.877, 0.9766, 0.2659, -0.8989, 0.8892, 0.1787, -0.8989, 0.9766, 0.1787, -0.877, 0.9766, 0.2659, -0.8989, 0.9766, 0.1787, -0.877, 1.0635, 0.2659, -0.877, 1.0635, 0.2659, -0.8989, 0.9766, 0.1787, -0.8989, 1.0635, 0.1787, -0.877, 1.0635, 0.2659, -0.8989, 1.0635, 0.1787, -0.8716, 1.1416, 0.2644, -0.8716, 1.1416, 0.2644, -0.8989, 1.0635, 0.1787, -0.8931, 1.1416, 0.1776, -0.8716, 1.1416, 0.2644, -0.8931, 1.1416, 0.1776, -0.855, 1.2188, 0.2593, -0.855, 1.2188, 0.2593, -0.8931, 1.1416, 0.1776, -0.8765, 1.2188, 0.1743, -0.855, 1.2188, 0.2593, -0.8765, 1.2188, 0.1743, -0.8276, 1.293, 0.251, -0.8276, 1.293, 0.251, -0.8765, 1.2188, 0.1743, -0.8481, 1.293, 0.1687, -0.8276, 1.293, 0.251, -0.8481, 1.293, 0.1687, -0.79, 1.3652, 0.2396, -0.79, 1.3652, 0.2396, -0.8481, 1.293, 0.1687, -0.8096, 1.3652, 0.161, -0.79, 1.3652, 0.2396, -0.8096, 1.3652, 0.161, -0.7427, 1.4336, 0.2252, -0.7427, 1.4336, 0.2252, -0.8096, 1.3652, 0.161, -0.7612, 1.4336, 0.1514, -0.7427, 1.4336, 0.2252, -0.7612, 1.4336, 0.1514, -0.6855, 1.498, 0.208, -0.6855, 1.498, 0.208, -0.7612, 1.4336, 0.1514, -0.7026, 1.498, 0.1398, -0.6855, 1.498, 0.208, -0.7026, 1.498, 0.1398, -0.6201, 1.5557, 0.1881, -0.6201, 1.5557, 0.1881, -0.7026, 1.498, 0.1398, -0.6353, 1.5557, 0.1263, -0.6201, 1.5557, 0.1881, -0.6353, 1.5557, 0.1263, -0.5469, 1.6084, 0.1659, -0.5469, 1.6084, 0.1659, -0.6353, 1.5557, 0.1263, -0.5601, 1.6084, 0.1115, -0.5469, 1.6084, 0.1659, -0.5601, 1.6084, 0.1115, -0.4666, 1.6533, 0.1415, -0.4666, 1.6533, 0.1415, -0.5601, 1.6084, 0.1115, -0.4783, 1.6533, 0.0951, -0.4666, 1.6533, 0.1415, -0.4783, 1.6533, 0.0951, -0.3804, 1.6914, 0.1154, -0.3804, 1.6914, 0.1154, -0.4783, 1.6533, 0.0951, -0.3899, 1.6914, 0.0776, -0.3804, 1.6914, 0.1154, -0.3899, 1.6914, 0.0776, -0.2896, 1.7207, 0.0878, -0.2896, 1.7207, 0.0878, -0.3899, 1.6914, 0.0776, -0.2969, 1.7207, 0.0591, -0.2006, 1.749, 0.0479, -0.2258, 1.8096, 0.0439, -0.1016, 1.7607, 0.0479, -0.1016, 1.7607, 0.0479, -0.2258, 1.8096, 0.0439, -0.1367, 1.8203, 0.0432, -0.2896, 1.7207, 0.0878, -0.2969, 1.7207, 0.0591, -0.1952, 1.7422, 0.0592, -0.1952, 1.7422, 0.0592, -0.2969, 1.7207, 0.0591, -0.1976, 1.7422, 0.0551, -0.8467, 0.6279, 0.3506, -0.877, 0.6279, 0.2659, -0.8467, 0.7153, 0.3506, -0.8467, 0.7153, 0.3506, -0.877, 0.6279, 0.2659, -0.877, 0.7153, 0.2659, -0.8467, 0.7153, 0.3506, -0.877, 0.7153, 0.2659, -0.8467, 0.8022, 0.3506, -0.8467, 0.8022, 0.3506, -0.877, 0.7153, 0.2659, -0.877, 0.8022, 0.2659, -0.8467, 0.8022, 0.3506, -0.877, 0.8022, 0.2659, -0.8467, 0.8892, 0.3506, -0.8467, 0.8892, 0.3506, -0.877, 0.8022, 0.2659, -0.877, 0.8892, 0.2659, -0.8467, 0.8892, 0.3506, -0.877, 0.8892, 0.2659, -0.8467, 0.9766, 0.3506, -0.8467, 0.9766, 0.3506, -0.877, 0.8892, 0.2659, -0.877, 0.9766, 0.2659, -0.8467, 0.9766, 0.3506, -0.877, 0.9766, 0.2659, -0.8467, 1.0635, 0.3506, -0.8467, 1.0635, 0.3506, -0.877, 0.9766, 0.2659, -0.877, 1.0635, 0.2659, -0.8467, 1.0635, 0.3506, -0.877, 1.0635, 0.2659, -0.8413, 1.1416, 0.3484, -0.8413, 1.1416, 0.3484, -0.877, 1.0635, 0.2659, -0.8716, 1.1416, 0.2644, -0.8413, 1.1416, 0.3484, -0.8716, 1.1416, 0.2644, -0.8252, 1.2188, 0.3418, -0.8252, 1.2188, 0.3418, -0.8716, 1.1416, 0.2644, -0.855, 1.2188, 0.2593, -0.8252, 1.2188, 0.3418, -0.855, 1.2188, 0.2593, -0.7993, 1.293, 0.3311, -0.7993, 1.293, 0.3311, -0.855, 1.2188, 0.2593, -0.8276, 1.293, 0.251, -0.7993, 1.293, 0.3311, -0.8276, 1.293, 0.251, -0.7627, 1.3652, 0.3159, -0.7627, 1.3652, 0.3159, -0.8276, 1.293, 0.251, -0.79, 1.3652, 0.2396, -0.7627, 1.3652, 0.3159, -0.79, 1.3652, 0.2396, -0.7168, 1.4336, 0.2969, -0.7168, 1.4336, 0.2969, -0.79, 1.3652, 0.2396, -0.7427, 1.4336, 0.2252, -0.7168, 1.4336, 0.2969, -0.7427, 1.4336, 0.2252, -0.6621, 1.498, 0.2742, -0.6621, 1.498, 0.2742, -0.7427, 1.4336, 0.2252, -0.6855, 1.498, 0.208, -0.6621, 1.498, 0.2742, -0.6855, 1.498, 0.208, -0.5986, 1.5557, 0.2479, -0.5986, 1.5557, 0.2479, -0.6855, 1.498, 0.208, -0.6201, 1.5557, 0.1881, -0.5986, 1.5557, 0.2479, -0.6201, 1.5557, 0.1881, -0.5278, 1.6084, 0.2186, -0.5278, 1.6084, 0.2186, -0.6201, 1.5557, 0.1881, -0.5469, 1.6084, 0.1659, -0.5278, 1.6084, 0.2186, -0.5469, 1.6084, 0.1659, -0.4504, 1.6533, 0.1865, -0.4504, 1.6533, 0.1865, -0.5469, 1.6084, 0.1659, -0.4666, 1.6533, 0.1415, -0.4504, 1.6533, 0.1865, -0.4666, 1.6533, 0.1415, -0.3674, 1.6914, 0.1521, -0.3674, 1.6914, 0.1521, -0.4666, 1.6533, 0.1415, -0.3804, 1.6914, 0.1154, -0.3674, 1.6914, 0.1521, -0.3804, 1.6914, 0.1154, -0.2795, 1.7207, 0.1158, -0.2795, 1.7207, 0.1158, -0.3804, 1.6914, 0.1154, -0.2896, 1.7207, 0.0878, -0.2795, 1.7207, 0.1158, -0.2896, 1.7207, 0.0878, -0.1884, 1.7422, 0.078, -0.1884, 1.7422, 0.078, -0.2896, 1.7207, 0.0878, -0.1952, 1.7422, 0.0592, -0.1696, 1.7422, 0.1133, -0.1798, 1.7422, 0.0961, -0.0859, 1.7559, 0.0551, -0.8081, 0.6279, 0.4319, -0.8467, 0.6279, 0.3506, -0.8081, 0.7153, 0.4319, -0.8081, 0.7153, 0.4319, -0.8467, 0.6279, 0.3506, -0.8467, 0.7153, 0.3506, -0.8081, 0.7153, 0.4319, -0.8467, 0.7153, 0.3506, -0.8081, 0.8022, 0.4319, -0.8081, 0.8022, 0.4319, -0.8467, 0.7153, 0.3506, -0.8467, 0.8022, 0.3506, -0.8081, 0.8022, 0.4319, -0.8467, 0.8022, 0.3506, -0.8081, 0.8892, 0.4319, -0.8081, 0.8892, 0.4319, -0.8467, 0.8022, 0.3506, -0.8467, 0.8892, 0.3506, -0.8081, 0.8892, 0.4319, -0.8467, 0.8892, 0.3506, -0.8081, 0.9766, 0.4319, -0.8081, 0.9766, 0.4319, -0.8467, 0.8892, 0.3506, -0.8467, 0.9766, 0.3506, -0.8081, 0.9766, 0.4319, -0.8467, 0.9766, 0.3506, -0.8081, 1.0635, 0.4319, -0.8081, 1.0635, 0.4319, -0.8467, 0.9766, 0.3506, -0.8467, 1.0635, 0.3506, -0.8081, 1.0635, 0.4319, -0.8467, 1.0635, 0.3506, -0.8032, 1.1416, 0.4292, -0.8032, 1.1416, 0.4292, -0.8467, 1.0635, 0.3506, -0.8413, 1.1416, 0.3484, -0.8032, 1.1416, 0.4292, -0.8413, 1.1416, 0.3484, -0.7881, 1.2188, 0.4211, -0.7881, 1.2188, 0.4211, -0.8413, 1.1416, 0.3484, -0.8252, 1.2188, 0.3418, -0.7881, 1.2188, 0.4211, -0.8252, 1.2188, 0.3418, -0.7627, 1.293, 0.4077, -0.7627, 1.293, 0.4077, -0.8252, 1.2188, 0.3418, -0.7993, 1.293, 0.3311, -0.7627, 1.293, 0.4077, -0.7993, 1.293, 0.3311, -0.728, 1.3652, 0.3892, -0.728, 1.3652, 0.3892, -0.7993, 1.293, 0.3311, -0.7627, 1.3652, 0.3159, -0.728, 1.3652, 0.3892, -0.7627, 1.3652, 0.3159, -0.6841, 1.4336, 0.3657, -0.6841, 1.4336, 0.3657, -0.7627, 1.3652, 0.3159, -0.7168, 1.4336, 0.2969, -0.6841, 1.4336, 0.3657, -0.7168, 1.4336, 0.2969, -0.6318, 1.498, 0.3376, -0.6318, 1.498, 0.3376, -0.7168, 1.4336, 0.2969, -0.6621, 1.498, 0.2742, -0.6318, 1.498, 0.3376, -0.6621, 1.498, 0.2742, -0.5713, 1.5557, 0.3054, -0.5713, 1.5557, 0.3054, -0.6621, 1.498, 0.2742, -0.5986, 1.5557, 0.2479, -0.5713, 1.5557, 0.3054, -0.5986, 1.5557, 0.2479, -0.5039, 1.6084, 0.2693, -0.5039, 1.6084, 0.2693, -0.5986, 1.5557, 0.2479, -0.5278, 1.6084, 0.2186, -0.5039, 1.6084, 0.2693, -0.5278, 1.6084, 0.2186, -0.4299, 1.6533, 0.2299, -0.4299, 1.6533, 0.2299, -0.5278, 1.6084, 0.2186, -0.4504, 1.6533, 0.1865, -0.4299, 1.6533, 0.2299, -0.4504, 1.6533, 0.1865, -0.3506, 1.6914, 0.1874, -0.3506, 1.6914, 0.1874, -0.4504, 1.6533, 0.1865, -0.3674, 1.6914, 0.1521, -0.3506, 1.6914, 0.1874, -0.3674, 1.6914, 0.1521, -0.2668, 1.7207, 0.1427, -0.2668, 1.7207, 0.1427, -0.3674, 1.6914, 0.1521, -0.2795, 1.7207, 0.1158, -0.2668, 1.7207, 0.1427, -0.2795, 1.7207, 0.1158, -0.1798, 1.7422, 0.0961, -0.1798, 1.7422, 0.0961, -0.2795, 1.7207, 0.1158, -0.1884, 1.7422, 0.078, -0.1884, 1.7422, 0.078, -0.1952, 1.7422, 0.0592, -0.0859, 1.7559, 0.0551, -0.7617, 0.6279, 0.5088, -0.8081, 0.6279, 0.4319, -0.7617, 0.7153, 0.5088, -0.7617, 0.7153, 0.5088, -0.8081, 0.6279, 0.4319, -0.8081, 0.7153, 0.4319, -0.7617, 0.7153, 0.5088, -0.8081, 0.7153, 0.4319, -0.7617, 0.8022, 0.5088, -0.7617, 0.8022, 0.5088, -0.8081, 0.7153, 0.4319, -0.8081, 0.8022, 0.4319, -0.7617, 0.8022, 0.5088, -0.8081, 0.8022, 0.4319, -0.7617, 0.8892, 0.5088, -0.7617, 0.8892, 0.5088, -0.8081, 0.8022, 0.4319, -0.8081, 0.8892, 0.4319, -0.7617, 0.8892, 0.5088, -0.8081, 0.8892, 0.4319, -0.7617, 0.9766, 0.5088, -0.7617, 0.9766, 0.5088, -0.8081, 0.8892, 0.4319, -0.8081, 0.9766, 0.4319, -0.7617, 0.9766, 0.5088, -0.8081, 0.9766, 0.4319, -0.7617, 1.0635, 0.5088, -0.7617, 1.0635, 0.5088, -0.8081, 0.9766, 0.4319, -0.8081, 1.0635, 0.4319, -0.7617, 1.0635, 0.5088, -0.8081, 1.0635, 0.4319, -0.7573, 1.1416, 0.5059, -0.7573, 1.1416, 0.5059, -0.8081, 1.0635, 0.4319, -0.8032, 1.1416, 0.4292, -0.7573, 1.1416, 0.5059, -0.8032, 1.1416, 0.4292, -0.7427, 1.2188, 0.4963, -0.7427, 1.2188, 0.4963, -0.8032, 1.1416, 0.4292, -0.7881, 1.2188, 0.4211, -0.7427, 1.2188, 0.4963, -0.7881, 1.2188, 0.4211, -0.7192, 1.293, 0.4805, -0.7192, 1.293, 0.4805, -0.7881, 1.2188, 0.4211, -0.7627, 1.293, 0.4077, -0.7192, 1.293, 0.4805, -0.7627, 1.293, 0.4077, -0.6865, 1.3652, 0.4587, -0.6865, 1.3652, 0.4587, -0.7627, 1.293, 0.4077, -0.728, 1.3652, 0.3892, -0.6865, 1.3652, 0.4587, -0.728, 1.3652, 0.3892, -0.645, 1.4336, 0.4312, -0.645, 1.4336, 0.4312, -0.728, 1.3652, 0.3892, -0.6841, 1.4336, 0.3657, -0.645, 1.4336, 0.4312, -0.6841, 1.4336, 0.3657, -0.5957, 1.498, 0.3979, -0.5957, 1.498, 0.3979, -0.6841, 1.4336, 0.3657, -0.6318, 1.498, 0.3376, -0.5957, 1.498, 0.3979, -0.6318, 1.498, 0.3376, -0.5386, 1.5557, 0.3599, -0.5386, 1.5557, 0.3599, -0.6318, 1.498, 0.3376, -0.5713, 1.5557, 0.3054, -0.5386, 1.5557, 0.3599, -0.5713, 1.5557, 0.3054, -0.4751, 1.6084, 0.3174, -0.4751, 1.6084, 0.3174, -0.5713, 1.5557, 0.3054, -0.5039, 1.6084, 0.2693, -0.4751, 1.6084, 0.3174, -0.5039, 1.6084, 0.2693, -0.4053, 1.6533, 0.2708, -0.4053, 1.6533, 0.2708, -0.5039, 1.6084, 0.2693, -0.4299, 1.6533, 0.2299, -0.4053, 1.6533, 0.2708, -0.4299, 1.6533, 0.2299, -0.3306, 1.6914, 0.2209, -0.3306, 1.6914, 0.2209, -0.4299, 1.6533, 0.2299, -0.3506, 1.6914, 0.1874, -0.3306, 1.6914, 0.2209, -0.3506, 1.6914, 0.1874, -0.2517, 1.7207, 0.1681, -0.2517, 1.7207, 0.1681, -0.3506, 1.6914, 0.1874, -0.2668, 1.7207, 0.1427, -0.2517, 1.7207, 0.1681, -0.2668, 1.7207, 0.1427, -0.1696, 1.7422, 0.1133, -0.1696, 1.7422, 0.1133, -0.2668, 1.7207, 0.1427, -0.1798, 1.7422, 0.0961, -0.1576, 1.7422, 0.1294, -0.1696, 1.7422, 0.1133, -0.0793, 1.7559, 0.0651, -0.0793, 1.7559, 0.0651, -0.1696, 1.7422, 0.1133, -0.0859, 1.7559, 0.0551, -0.7085, 0.6279, 0.5811, -0.7617, 0.6279, 0.5088, -0.7085, 0.7153, 0.5811, -0.7085, 0.7153, 0.5811, -0.7617, 0.6279, 0.5088, -0.7617, 0.7153, 0.5088, -0.7085, 0.7153, 0.5811, -0.7617, 0.7153, 0.5088, -0.7085, 0.8022, 0.5811, -0.7085, 0.8022, 0.5811, -0.7617, 0.7153, 0.5088, -0.7617, 0.8022, 0.5088, -0.7085, 0.8022, 0.5811, -0.7617, 0.8022, 0.5088, -0.7085, 0.8892, 0.5811, -0.7085, 0.8892, 0.5811, -0.7617, 0.8022, 0.5088, -0.7617, 0.8892, 0.5088, -0.7085, 0.8892, 0.5811, -0.7617, 0.8892, 0.5088, -0.7085, 0.9766, 0.5811, -0.7085, 0.9766, 0.5811, -0.7617, 0.8892, 0.5088, -0.7617, 0.9766, 0.5088, -0.7085, 0.9766, 0.5811, -0.7617, 0.9766, 0.5088, -0.7085, 1.0635, 0.5811, -0.7085, 1.0635, 0.5811, -0.7617, 0.9766, 0.5088, -0.7617, 1.0635, 0.5088, -0.7085, 1.0635, 0.5811, -0.7617, 1.0635, 0.5088, -0.7041, 1.1416, 0.5776, -0.7041, 1.1416, 0.5776, -0.7617, 1.0635, 0.5088, -0.7573, 1.1416, 0.5059, -0.7041, 1.1416, 0.5776, -0.7573, 1.1416, 0.5059, -0.6904, 1.2188, 0.5669, -0.6904, 1.2188, 0.5669, -0.7573, 1.1416, 0.5059, -0.7427, 1.2188, 0.4963, -0.6904, 1.2188, 0.5669, -0.7427, 1.2188, 0.4963, -0.6685, 1.293, 0.5488, -0.6685, 1.293, 0.5488, -0.7427, 1.2188, 0.4963, -0.7192, 1.293, 0.4805, -0.6685, 1.293, 0.5488, -0.7192, 1.293, 0.4805, -0.6382, 1.3652, 0.5239, -0.6382, 1.3652, 0.5239, -0.7192, 1.293, 0.4805, -0.6865, 1.3652, 0.4587, -0.6382, 1.3652, 0.5239, -0.6865, 1.3652, 0.4587, -0.5996, 1.4336, 0.4922, -0.5996, 1.4336, 0.4922, -0.6865, 1.3652, 0.4587, -0.645, 1.4336, 0.4312, -0.5996, 1.4336, 0.4922, -0.645, 1.4336, 0.4312, -0.5537, 1.498, 0.4546, -0.5537, 1.498, 0.4546, -0.645, 1.4336, 0.4312, -0.5957, 1.498, 0.3979, -0.5537, 1.498, 0.4546, -0.5957, 1.498, 0.3979, -0.501, 1.5557, 0.4111, -0.501, 1.5557, 0.4111, -0.5957, 1.498, 0.3979, -0.5386, 1.5557, 0.3599, -0.501, 1.5557, 0.4111, -0.5386, 1.5557, 0.3599, -0.4417, 1.6084, 0.3625, -0.4417, 1.6084, 0.3625, -0.5386, 1.5557, 0.3599, -0.4751, 1.6084, 0.3174, -0.4417, 1.6084, 0.3625, -0.4751, 1.6084, 0.3174, -0.377, 1.6533, 0.3093, -0.377, 1.6533, 0.3093, -0.4751, 1.6084, 0.3174, -0.4053, 1.6533, 0.2708, -0.377, 1.6533, 0.3093, -0.4053, 1.6533, 0.2708, -0.3074, 1.6914, 0.2522, -0.3074, 1.6914, 0.2522, -0.4053, 1.6533, 0.2708, -0.3306, 1.6914, 0.2209, -0.3074, 1.6914, 0.2522, -0.3306, 1.6914, 0.2209, -0.234, 1.7207, 0.192, -0.234, 1.7207, 0.192, -0.3306, 1.6914, 0.2209, -0.2517, 1.7207, 0.1681, -0.234, 1.7207, 0.192, -0.2517, 1.7207, 0.1681, -0.1576, 1.7422, 0.1294, -0.1576, 1.7422, 0.1294, -0.2517, 1.7207, 0.1681, -0.1696, 1.7422, 0.1133, -0.1696, 1.7422, -0.1133, -0.1576, 1.7422, -0.1294, -0.0853, 1.7559, -0.0562, -0.0853, 1.7559, -0.0562, -0.1576, 1.7422, -0.1294, -0.0793, 1.7559, -0.0651, -0.6479, 0.6279, 0.6479, -0.7085, 0.6279, 0.5811, -0.6079, 0.7432, 0.6841, -0.6079, 0.7432, 0.6841, -0.7085, 0.6279, 0.5811, -0.7085, 0.7153, 0.5811, -0.6079, 0.7432, 0.6841, -0.7085, 0.7153, 0.5811, -0.644, 0.8047, 0.6514, -0.644, 0.8047, 0.6514, -0.7085, 0.7153, 0.5811, -0.7085, 0.8022, 0.5811, -0.644, 0.8047, 0.6514, -0.7085, 0.8022, 0.5811, -0.6621, 0.8784, 0.6323, -0.6621, 0.8784, 0.6323, -0.7085, 0.8022, 0.5811, -0.7085, 0.8892, 0.5811, -0.6621, 0.8784, 0.6323, -0.7085, 0.8892, 0.5811, -0.665, 0.957, 0.6294, -0.665, 0.957, 0.6294, -0.7085, 0.8892, 0.5811, -0.7085, 0.9766, 0.5811, -0.665, 0.957, 0.6294, -0.7085, 0.9766, 0.5811, -0.6519, 1.0332, 0.6436, -0.6519, 1.0332, 0.6436, -0.7085, 0.9766, 0.5811, -0.7085, 1.0635, 0.5811, -0.6519, 1.0332, 0.6436, -0.7085, 1.0635, 0.5811, -0.6196, 1.0996, 0.6699, -0.6196, 1.0996, 0.6699, -0.7085, 1.0635, 0.5811, -0.7041, 1.1416, 0.5776, -0.6196, 1.0996, 0.6699, -0.7041, 1.1416, 0.5776, -0.6318, 1.2188, 0.6318, -0.6318, 1.2188, 0.6318, -0.7041, 1.1416, 0.5776, -0.6904, 1.2188, 0.5669, -0.6318, 1.2188, 0.6318, -0.6904, 1.2188, 0.5669, -0.6113, 1.293, 0.6113, -0.6113, 1.293, 0.6113, -0.6904, 1.2188, 0.5669, -0.6685, 1.293, 0.5488, -0.6113, 1.293, 0.6113, -0.6685, 1.293, 0.5488, -0.5835, 1.3652, 0.5835, -0.5835, 1.3652, 0.5835, -0.6685, 1.293, 0.5488, -0.6382, 1.3652, 0.5239, -0.5835, 1.3652, 0.5835, -0.6382, 1.3652, 0.5239, -0.5483, 1.4336, 0.5483, -0.5483, 1.4336, 0.5483, -0.6382, 1.3652, 0.5239, -0.5996, 1.4336, 0.4922, -0.5483, 1.4336, 0.5483, -0.5996, 1.4336, 0.4922, -0.5063, 1.498, 0.5063, -0.5063, 1.498, 0.5063, -0.5996, 1.4336, 0.4922, -0.5537, 1.498, 0.4546, -0.5063, 1.498, 0.5063, -0.5537, 1.498, 0.4546, -0.4583, 1.5557, 0.4583, -0.4583, 1.5557, 0.4583, -0.5537, 1.498, 0.4546, -0.501, 1.5557, 0.4111, -0.4583, 1.5557, 0.4583, -0.501, 1.5557, 0.4111, -0.4041, 1.6084, 0.4041, -0.4041, 1.6084, 0.4041, -0.501, 1.5557, 0.4111, -0.4417, 1.6084, 0.3625, -0.4041, 1.6084, 0.4041, -0.4417, 1.6084, 0.3625, -0.3447, 1.6533, 0.3447, -0.3447, 1.6533, 0.3447, -0.4417, 1.6084, 0.3625, -0.377, 1.6533, 0.3093, -0.3447, 1.6533, 0.3447, -0.377, 1.6533, 0.3093, -0.281, 1.6914, 0.281, -0.281, 1.6914, 0.281, -0.377, 1.6533, 0.3093, -0.3074, 1.6914, 0.2522, -0.281, 1.6914, 0.281, -0.3074, 1.6914, 0.2522, -0.214, 1.7207, 0.214, -0.214, 1.7207, 0.214, -0.3074, 1.6914, 0.2522, -0.234, 1.7207, 0.192, -0.214, 1.7207, 0.214, -0.234, 1.7207, 0.192, -0.1442, 1.7422, 0.1442, -0.1442, 1.7422, 0.1442, -0.234, 1.7207, 0.192, -0.1576, 1.7422, 0.1294, -0.1442, 1.7422, 0.1442, -0.1576, 1.7422, 0.1294, -0.0726, 1.7559, 0.0726, -0.0726, 1.7559, 0.0726, -0.1576, 1.7422, 0.1294, -0.0793, 1.7559, 0.0651, -0.5811, 0.6279, 0.7085, -0.6479, 0.6279, 0.6479, -0.5571, 0.6997, 0.7266, -0.5571, 0.6997, 0.7266, -0.6479, 0.6279, 0.6479, -0.6079, 0.7432, 0.6841, -0.5708, 1.1504, 0.7065, -0.6196, 1.0996, 0.6699, -0.5669, 1.2188, 0.6904, -0.5669, 1.2188, 0.6904, -0.6196, 1.0996, 0.6699, -0.6318, 1.2188, 0.6318, -0.5669, 1.2188, 0.6904, -0.6318, 1.2188, 0.6318, -0.5488, 1.293, 0.6685, -0.5488, 1.293, 0.6685, -0.6318, 1.2188, 0.6318, -0.6113, 1.293, 0.6113, -0.5488, 1.293, 0.6685, -0.6113, 1.293, 0.6113, -0.5239, 1.3652, 0.6382, -0.5239, 1.3652, 0.6382, -0.6113, 1.293, 0.6113, -0.5835, 1.3652, 0.5835, -0.5239, 1.3652, 0.6382, -0.5835, 1.3652, 0.5835, -0.4922, 1.4336, 0.5996, -0.4922, 1.4336, 0.5996, -0.5835, 1.3652, 0.5835, -0.5483, 1.4336, 0.5483, -0.4922, 1.4336, 0.5996, -0.5483, 1.4336, 0.5483, -0.4546, 1.498, 0.5537, -0.4546, 1.498, 0.5537, -0.5483, 1.4336, 0.5483, -0.5063, 1.498, 0.5063, -0.4546, 1.498, 0.5537, -0.5063, 1.498, 0.5063, -0.4111, 1.5557, 0.501, -0.4111, 1.5557, 0.501, -0.5063, 1.498, 0.5063, -0.4583, 1.5557, 0.4583, -0.4111, 1.5557, 0.501, -0.4583, 1.5557, 0.4583, -0.3625, 1.6084, 0.4417, -0.3625, 1.6084, 0.4417, -0.4583, 1.5557, 0.4583, -0.4041, 1.6084, 0.4041, -0.3625, 1.6084, 0.4417, -0.4041, 1.6084, 0.4041, -0.3093, 1.6533, 0.377, -0.3093, 1.6533, 0.377, -0.4041, 1.6084, 0.4041, -0.3447, 1.6533, 0.3447, -0.3093, 1.6533, 0.377, -0.3447, 1.6533, 0.3447, -0.2522, 1.6914, 0.3074, -0.2522, 1.6914, 0.3074, -0.3447, 1.6533, 0.3447, -0.281, 1.6914, 0.281, -0.2522, 1.6914, 0.3074, -0.281, 1.6914, 0.281, -0.192, 1.7207, 0.234, -0.192, 1.7207, 0.234, -0.281, 1.6914, 0.281, -0.214, 1.7207, 0.214, -0.192, 1.7207, 0.234, -0.214, 1.7207, 0.214, -0.1294, 1.7422, 0.1576, -0.1294, 1.7422, 0.1576, -0.214, 1.7207, 0.214, -0.1442, 1.7422, 0.1442, -0.1294, 1.7422, 0.1576, -0.1442, 1.7422, 0.1442, -0.0651, 1.7559, 0.0793, -0.0651, 1.7559, 0.0793, -0.1442, 1.7422, 0.1442, -0.0726, 1.7559, 0.0726, -0.5088, 0.6279, 0.7617, -0.5811, 0.6279, 0.7085, -0.4937, 0.6792, 0.771, -0.4937, 0.6792, 0.771, -0.5811, 0.6279, 0.7085, -0.5571, 0.6997, 0.7266, -0.5708, 1.1504, 0.7065, -0.5659, 1.1387, 0.7119, -0.6196, 1.0996, 0.6699, -0.6196, 1.0996, 0.6699, -0.5659, 1.1387, 0.7119, -0.6128, 1.0908, 0.6772, -0.4937, 0.6792, 0.771, -0.4927, 0.6924, 0.772, -0.4243, 0.6831, 0.812, -0.4243, 0.6831, 0.812, -0.4927, 0.6924, 0.772, -0.4268, 0.6958, 0.8105, -0.6079, 0.7432, 0.6841, -0.6011, 0.7529, 0.6904, -0.5571, 0.6997, 0.7266, -0.5571, 0.6997, 0.7266, -0.6011, 0.7529, 0.6904, -0.5527, 0.7119, 0.73, -0.4089, 0.749, 0.4873, -0.4326, 0.77, 0.4668, -0.436, 0.7969, 0.4661, -0.436, 0.7969, 0.4661, -0.4326, 0.77, 0.4668, -0.4565, 0.8091, 0.4473, -0.5078, 1.1787, 0.7451, -0.5063, 1.166, 0.748, -0.5708, 1.1504, 0.7065, -0.5708, 1.1504, 0.7065, -0.5063, 1.166, 0.748, -0.5659, 1.1387, 0.7119, -0.5078, 1.1787, 0.7451, -0.5708, 1.1504, 0.7065, -0.4963, 1.2188, 0.7427, -0.4963, 1.2188, 0.7427, -0.5708, 1.1504, 0.7065, -0.5669, 1.2188, 0.6904, -0.4963, 1.2188, 0.7427, -0.5669, 1.2188, 0.6904, -0.4805, 1.293, 0.7192, -0.4805, 1.293, 0.7192, -0.5669, 1.2188, 0.6904, -0.5488, 1.293, 0.6685, -0.4805, 1.293, 0.7192, -0.5488, 1.293, 0.6685, -0.4587, 1.3652, 0.6865, -0.4587, 1.3652, 0.6865, -0.5488, 1.293, 0.6685, -0.5239, 1.3652, 0.6382, -0.4587, 1.3652, 0.6865, -0.5239, 1.3652, 0.6382, -0.4312, 1.4336, 0.645, -0.4312, 1.4336, 0.645, -0.5239, 1.3652, 0.6382, -0.4922, 1.4336, 0.5996, -0.4312, 1.4336, 0.645, -0.4922, 1.4336, 0.5996, -0.3979, 1.498, 0.5957, -0.3979, 1.498, 0.5957, -0.4922, 1.4336, 0.5996, -0.4546, 1.498, 0.5537, -0.3979, 1.498, 0.5957, -0.4546, 1.498, 0.5537, -0.3599, 1.5557, 0.5386, -0.3599, 1.5557, 0.5386, -0.4546, 1.498, 0.5537, -0.4111, 1.5557, 0.501, -0.3599, 1.5557, 0.5386, -0.4111, 1.5557, 0.501, -0.3174, 1.6084, 0.4751, -0.3174, 1.6084, 0.4751, -0.4111, 1.5557, 0.501, -0.3625, 1.6084, 0.4417, -0.3174, 1.6084, 0.4751, -0.3625, 1.6084, 0.4417, -0.2708, 1.6533, 0.4053, -0.2708, 1.6533, 0.4053, -0.3625, 1.6084, 0.4417, -0.3093, 1.6533, 0.377, -0.2708, 1.6533, 0.4053, -0.3093, 1.6533, 0.377, -0.2209, 1.6914, 0.3306, -0.2209, 1.6914, 0.3306, -0.3093, 1.6533, 0.377, -0.2522, 1.6914, 0.3074, -0.2209, 1.6914, 0.3306, -0.2522, 1.6914, 0.3074, -0.1681, 1.7207, 0.2517, -0.1681, 1.7207, 0.2517, -0.2522, 1.6914, 0.3074, -0.192, 1.7207, 0.234, -0.1681, 1.7207, 0.2517, -0.192, 1.7207, 0.234, -0.1133, 1.7422, 0.1696, -0.1133, 1.7422, 0.1696, -0.192, 1.7207, 0.234, -0.1294, 1.7422, 0.1576, -0.1133, 1.7422, 0.1696, -0.1294, 1.7422, 0.1576, -0.057, 1.7559, 0.0853, -0.057, 1.7559, 0.0853, -0.1294, 1.7422, 0.1576, -0.0651, 1.7559, 0.0793, -0.4319, 0.6279, 0.8081, -0.5088, 0.6279, 0.7617, -0.4243, 0.6831, 0.812, -0.4243, 0.6831, 0.812, -0.5088, 0.6279, 0.7617, -0.4937, 0.6792, 0.771, -0.2451, 0.9819, 0.8823, -0.2573, 0.9795, 0.8779, -0.2705, 1.0557, 0.8755, -0.2705, 1.0557, 0.8755, -0.2573, 0.9795, 0.8779, -0.2815, 1.0488, 0.8716, -0.3147, 1.1172, 0.8555, -0.3235, 1.1074, 0.853, -0.373, 1.1621, 0.8247, -0.373, 1.1621, 0.8247, -0.3235, 1.1074, 0.853, -0.3789, 1.1494, 0.8237, -0.6196, 1.0996, 0.6699, -0.6128, 1.0908, 0.6772, -0.6519, 1.0332, 0.6436, -0.6519, 1.0332, 0.6436, -0.6128, 1.0908, 0.6772, -0.6431, 1.0283, 0.6523, -0.436, 0.9712, 0.4661, -0.4775, 0.9531, 0.4265, -0.436, 1.0576, 0.4661, -0.436, 1.0576, 0.4661, -0.4775, 0.9531, 0.4265, -0.4646, 1.0273, 0.4404, -0.373, 1.1621, 0.8247, -0.3789, 1.1494, 0.8237, -0.4397, 1.1826, 0.7861, -0.4397, 1.1826, 0.7861, -0.3789, 1.1494, 0.8237, -0.4419, 1.1699, 0.7866, -0.4397, 1.1826, 0.7861, -0.5078, 1.1787, 0.7451, -0.4211, 1.2188, 0.7881, -0.4211, 1.2188, 0.7881, -0.5078, 1.1787, 0.7451, -0.4963, 1.2188, 0.7427, -0.4211, 1.2188, 0.7881, -0.4963, 1.2188, 0.7427, -0.4077, 1.293, 0.7627, -0.4077, 1.293, 0.7627, -0.4963, 1.2188, 0.7427, -0.4805, 1.293, 0.7192, -0.4077, 1.293, 0.7627, -0.4805, 1.293, 0.7192, -0.3892, 1.3652, 0.728, -0.3892, 1.3652, 0.728, -0.4805, 1.293, 0.7192, -0.4587, 1.3652, 0.6865, -0.3892, 1.3652, 0.728, -0.4587, 1.3652, 0.6865, -0.3657, 1.4336, 0.6841, -0.3657, 1.4336, 0.6841, -0.4587, 1.3652, 0.6865, -0.4312, 1.4336, 0.645, -0.3657, 1.4336, 0.6841, -0.4312, 1.4336, 0.645, -0.3376, 1.498, 0.6318, -0.3376, 1.498, 0.6318, -0.4312, 1.4336, 0.645, -0.3979, 1.498, 0.5957, -0.3376, 1.498, 0.6318, -0.3979, 1.498, 0.5957, -0.3054, 1.5557, 0.5713, -0.3054, 1.5557, 0.5713, -0.3979, 1.498, 0.5957, -0.3599, 1.5557, 0.5386, -0.3054, 1.5557, 0.5713, -0.3599, 1.5557, 0.5386, -0.2693, 1.6084, 0.5039, -0.2693, 1.6084, 0.5039, -0.3599, 1.5557, 0.5386, -0.3174, 1.6084, 0.4751, -0.2693, 1.6084, 0.5039, -0.3174, 1.6084, 0.4751, -0.2299, 1.6533, 0.4299, -0.2299, 1.6533, 0.4299, -0.3174, 1.6084, 0.4751, -0.2708, 1.6533, 0.4053, -0.2299, 1.6533, 0.4299, -0.2708, 1.6533, 0.4053, -0.1874, 1.6914, 0.3506, -0.1874, 1.6914, 0.3506, -0.2708, 1.6533, 0.4053, -0.2209, 1.6914, 0.3306, -0.1874, 1.6914, 0.3506, -0.2209, 1.6914, 0.3306, -0.1427, 1.7207, 0.2668, -0.1427, 1.7207, 0.2668, -0.2209, 1.6914, 0.3306, -0.1681, 1.7207, 0.2517, -0.1427, 1.7207, 0.2668, -0.1681, 1.7207, 0.2517, -0.0961, 1.7422, 0.1798, -0.0961, 1.7422, 0.1798, -0.1681, 1.7207, 0.2517, -0.1133, 1.7422, 0.1696, -0.0961, 1.7422, 0.1798, -0.1133, 1.7422, 0.1696, -0.0484, 1.7559, 0.0905, -0.0484, 1.7559, 0.0905, -0.1133, 1.7422, 0.1696, -0.057, 1.7559, 0.0853, -0.3506, 0.6279, 0.8467, -0.4319, 0.6279, 0.8081, -0.3579, 0.7114, 0.8433, -0.3579, 0.7114, 0.8433, -0.4319, 0.6279, 0.8081, -0.4243, 0.6831, 0.812, -0.665, 0.957, 0.6294, -0.6553, 0.9561, 0.6382, -0.6621, 0.8784, 0.6323, -0.6621, 0.8784, 0.6323, -0.6553, 0.9561, 0.6382, -0.6528, 0.8809, 0.6411, -0.4243, 0.6831, 0.812, -0.4268, 0.6958, 0.8105, -0.3579, 0.7114, 0.8433, -0.3579, 0.7114, 0.8433, -0.4268, 0.6958, 0.8105, -0.364, 0.7227, 0.8408, -0.2705, 1.0557, 0.8755, -0.2815, 1.0488, 0.8716, -0.3147, 1.1172, 0.8555, -0.3147, 1.1172, 0.8555, -0.2815, 1.0488, 0.8716, -0.3235, 1.1074, 0.853, -0.3003, 0.7607, 0.8647, -0.3098, 0.7695, 0.8613, -0.2612, 0.8267, 0.8779, -0.2612, 0.8267, 0.8779, -0.3098, 0.7695, 0.8613, -0.2727, 0.832, 0.874, -0.3579, 0.7114, 0.8433, -0.364, 0.7227, 0.8408, -0.3003, 0.7607, 0.8647, -0.3003, 0.7607, 0.8647, -0.364, 0.7227, 0.8408, -0.3098, 0.7695, 0.8613, -0.373, 1.1621, 0.8247, -0.4397, 1.1826, 0.7861, -0.3418, 1.2188, 0.8252, -0.3418, 1.2188, 0.8252, -0.4397, 1.1826, 0.7861, -0.4211, 1.2188, 0.7881, -0.3418, 1.2188, 0.8252, -0.4211, 1.2188, 0.7881, -0.3311, 1.293, 0.7993, -0.3311, 1.293, 0.7993, -0.4211, 1.2188, 0.7881, -0.4077, 1.293, 0.7627, -0.3311, 1.293, 0.7993, -0.4077, 1.293, 0.7627, -0.3159, 1.3652, 0.7627, -0.3159, 1.3652, 0.7627, -0.4077, 1.293, 0.7627, -0.3892, 1.3652, 0.728, -0.3159, 1.3652, 0.7627, -0.3892, 1.3652, 0.728, -0.2969, 1.4336, 0.7168, -0.2969, 1.4336, 0.7168, -0.3892, 1.3652, 0.728, -0.3657, 1.4336, 0.6841, -0.2969, 1.4336, 0.7168, -0.3657, 1.4336, 0.6841, -0.2742, 1.498, 0.6621, -0.2742, 1.498, 0.6621, -0.3657, 1.4336, 0.6841, -0.3376, 1.498, 0.6318, -0.2742, 1.498, 0.6621, -0.3376, 1.498, 0.6318, -0.2479, 1.5557, 0.5986, -0.2479, 1.5557, 0.5986, -0.3376, 1.498, 0.6318, -0.3054, 1.5557, 0.5713, -0.2479, 1.5557, 0.5986, -0.3054, 1.5557, 0.5713, -0.2186, 1.6084, 0.5278, -0.2186, 1.6084, 0.5278, -0.3054, 1.5557, 0.5713, -0.2693, 1.6084, 0.5039, -0.2186, 1.6084, 0.5278, -0.2693, 1.6084, 0.5039, -0.1865, 1.6533, 0.4504, -0.1865, 1.6533, 0.4504, -0.2693, 1.6084, 0.5039, -0.2299, 1.6533, 0.4299, -0.1865, 1.6533, 0.4504, -0.2299, 1.6533, 0.4299, -0.1521, 1.6914, 0.3674, -0.1521, 1.6914, 0.3674, -0.2299, 1.6533, 0.4299, -0.1874, 1.6914, 0.3506, -0.1521, 1.6914, 0.3674, -0.1874, 1.6914, 0.3506, -0.1158, 1.7207, 0.2795, -0.1158, 1.7207, 0.2795, -0.1874, 1.6914, 0.3506, -0.1427, 1.7207, 0.2668, -0.1158, 1.7207, 0.2795, -0.1427, 1.7207, 0.2668, -0.078, 1.7422, 0.1884, -0.078, 1.7422, 0.1884, -0.1427, 1.7207, 0.2668, -0.0961, 1.7422, 0.1798, -0.078, 1.7422, 0.1884, -0.0961, 1.7422, 0.1798, -0.0392, 1.7559, 0.0948, -0.0392, 1.7559, 0.0948, -0.0961, 1.7422, 0.1798, -0.0484, 1.7559, 0.0905, -0.2659, 0.6279, 0.877, -0.3506, 0.6279, 0.8467, -0.3003, 0.7607, 0.8647, -0.3003, 0.7607, 0.8647, -0.3506, 0.6279, 0.8467, -0.3579, 0.7114, 0.8433, -0.2612, 0.8267, 0.8779, -0.2727, 0.832, 0.874, -0.2418, 0.9033, 0.8828, -0.2418, 0.9033, 0.8828, -0.2727, 0.832, 0.874, -0.2542, 0.9048, 0.8789, -0.6519, 1.0332, 0.6436, -0.6431, 1.0283, 0.6523, -0.665, 0.957, 0.6294, -0.665, 0.957, 0.6294, -0.6431, 1.0283, 0.6523, -0.6553, 0.9561, 0.6382, -0.5571, 0.6997, 0.7266, -0.5527, 0.7119, 0.73, -0.4937, 0.6792, 0.771, -0.4937, 0.6792, 0.771, -0.5527, 0.7119, 0.73, -0.4927, 0.6924, 0.772, -0.2418, 0.9033, 0.8828, -0.2542, 0.9048, 0.8789, -0.2451, 0.9819, 0.8823, -0.2451, 0.9819, 0.8823, -0.2542, 0.9048, 0.8789, -0.2573, 0.9795, 0.8779, -0.6621, 0.8784, 0.6323, -0.6528, 0.8809, 0.6411, -0.644, 0.8047, 0.6514, -0.644, 0.8047, 0.6514, -0.6528, 0.8809, 0.6411, -0.6353, 0.811, 0.6592, -0.3147, 1.1172, 0.8555, -0.373, 1.1621, 0.8247, -0.2593, 1.2188, 0.855, -0.2593, 1.2188, 0.855, -0.373, 1.1621, 0.8247, -0.3418, 1.2188, 0.8252, -0.2593, 1.2188, 0.855, -0.3418, 1.2188, 0.8252, -0.251, 1.293, 0.8276, -0.251, 1.293, 0.8276, -0.3418, 1.2188, 0.8252, -0.3311, 1.293, 0.7993, -0.251, 1.293, 0.8276, -0.3311, 1.293, 0.7993, -0.2396, 1.3652, 0.79, -0.2396, 1.3652, 0.79, -0.3311, 1.293, 0.7993, -0.3159, 1.3652, 0.7627, -0.2396, 1.3652, 0.79, -0.3159, 1.3652, 0.7627, -0.2252, 1.4336, 0.7427, -0.2252, 1.4336, 0.7427, -0.3159, 1.3652, 0.7627, -0.2969, 1.4336, 0.7168, -0.2252, 1.4336, 0.7427, -0.2969, 1.4336, 0.7168, -0.208, 1.498, 0.6855, -0.208, 1.498, 0.6855, -0.2969, 1.4336, 0.7168, -0.2742, 1.498, 0.6621, -0.208, 1.498, 0.6855, -0.2742, 1.498, 0.6621, -0.1881, 1.5557, 0.6201, -0.1881, 1.5557, 0.6201, -0.2742, 1.498, 0.6621, -0.2479, 1.5557, 0.5986, -0.1881, 1.5557, 0.6201, -0.2479, 1.5557, 0.5986, -0.1659, 1.6084, 0.5469, -0.1659, 1.6084, 0.5469, -0.2479, 1.5557, 0.5986, -0.2186, 1.6084, 0.5278, -0.1659, 1.6084, 0.5469, -0.2186, 1.6084, 0.5278, -0.1415, 1.6533, 0.4666, -0.1415, 1.6533, 0.4666, -0.2186, 1.6084, 0.5278, -0.1865, 1.6533, 0.4504, -0.1415, 1.6533, 0.4666, -0.1865, 1.6533, 0.4504, -0.1154, 1.6914, 0.3804, -0.1154, 1.6914, 0.3804, -0.1865, 1.6533, 0.4504, -0.1521, 1.6914, 0.3674, -0.1154, 1.6914, 0.3804, -0.1521, 1.6914, 0.3674, -0.0878, 1.7207, 0.2896, -0.0878, 1.7207, 0.2896, -0.1521, 1.6914, 0.3674, -0.1158, 1.7207, 0.2795, -0.0878, 1.7207, 0.2896, -0.1158, 1.7207, 0.2795, -0.0592, 1.7422, 0.1952, -0.0592, 1.7422, 0.1952, -0.1158, 1.7207, 0.2795, -0.078, 1.7422, 0.1884, -0.0592, 1.7422, 0.1952, -0.078, 1.7422, 0.1884, -0.0298, 1.7559, 0.0982, -0.0298, 1.7559, 0.0982, -0.078, 1.7422, 0.1884, -0.0392, 1.7559, 0.0948, -0.1787, 0.6279, 0.8989, -0.2659, 0.6279, 0.877, -0.1787, 0.7153, 0.8989, -0.1787, 0.7153, 0.8989, -0.2659, 0.6279, 0.877, -0.3003, 0.7607, 0.8647, -0.1787, 0.7153, 0.8989, -0.3003, 0.7607, 0.8647, -0.1787, 0.8022, 0.8989, -0.1787, 0.8022, 0.8989, -0.3003, 0.7607, 0.8647, -0.2612, 0.8267, 0.8779, -0.1787, 0.8022, 0.8989, -0.2612, 0.8267, 0.8779, -0.1787, 0.8892, 0.8989, -0.1787, 0.8892, 0.8989, -0.2612, 0.8267, 0.8779, -0.2418, 0.9033, 0.8828, -0.1787, 0.8892, 0.8989, -0.2418, 0.9033, 0.8828, -0.1787, 0.9766, 0.8989, -0.1787, 0.9766, 0.8989, -0.2418, 0.9033, 0.8828, -0.2451, 0.9819, 0.8823, -0.1787, 0.9766, 0.8989, -0.2451, 0.9819, 0.8823, -0.1787, 1.0635, 0.8989, -0.1787, 1.0635, 0.8989, -0.2451, 0.9819, 0.8823, -0.2705, 1.0557, 0.8755, -0.1787, 1.0635, 0.8989, -0.2705, 1.0557, 0.8755, -0.1776, 1.1416, 0.8931, -0.1776, 1.1416, 0.8931, -0.2705, 1.0557, 0.8755, -0.3147, 1.1172, 0.8555, -0.1776, 1.1416, 0.8931, -0.3147, 1.1172, 0.8555, -0.1743, 1.2188, 0.8765, -0.1743, 1.2188, 0.8765, -0.3147, 1.1172, 0.8555, -0.2593, 1.2188, 0.855, -0.1743, 1.2188, 0.8765, -0.2593, 1.2188, 0.855, -0.1687, 1.293, 0.8481, -0.1687, 1.293, 0.8481, -0.2593, 1.2188, 0.855, -0.251, 1.293, 0.8276, -0.1687, 1.293, 0.8481, -0.251, 1.293, 0.8276, -0.161, 1.3652, 0.8096, -0.161, 1.3652, 0.8096, -0.251, 1.293, 0.8276, -0.2396, 1.3652, 0.79, -0.161, 1.3652, 0.8096, -0.2396, 1.3652, 0.79, -0.1514, 1.4336, 0.7612, -0.1514, 1.4336, 0.7612, -0.2396, 1.3652, 0.79, -0.2252, 1.4336, 0.7427, -0.1514, 1.4336, 0.7612, -0.2252, 1.4336, 0.7427, -0.1398, 1.498, 0.7026, -0.1398, 1.498, 0.7026, -0.2252, 1.4336, 0.7427, -0.208, 1.498, 0.6855, -0.1398, 1.498, 0.7026, -0.208, 1.498, 0.6855, -0.1263, 1.5557, 0.6353, -0.1263, 1.5557, 0.6353, -0.208, 1.498, 0.6855, -0.1881, 1.5557, 0.6201, -0.1263, 1.5557, 0.6353, -0.1881, 1.5557, 0.6201, -0.1115, 1.6084, 0.5601, -0.1115, 1.6084, 0.5601, -0.1881, 1.5557, 0.6201, -0.1659, 1.6084, 0.5469, -0.1115, 1.6084, 0.5601, -0.1659, 1.6084, 0.5469, -0.0951, 1.6533, 0.4783, -0.0951, 1.6533, 0.4783, -0.1659, 1.6084, 0.5469, -0.1415, 1.6533, 0.4666, -0.0951, 1.6533, 0.4783, -0.1415, 1.6533, 0.4666, -0.0776, 1.6914, 0.3899, -0.0776, 1.6914, 0.3899, -0.1415, 1.6533, 0.4666, -0.1154, 1.6914, 0.3804, -0.0776, 1.6914, 0.3899, -0.1154, 1.6914, 0.3804, -0.0591, 1.7207, 0.2969, -0.0591, 1.7207, 0.2969, -0.1154, 1.6914, 0.3804, -0.0878, 1.7207, 0.2896, -0.0591, 1.7207, 0.2969, -0.0878, 1.7207, 0.2896, -0.0398, 1.7422, 0.2, -0.0398, 1.7422, 0.2, -0.0878, 1.7207, 0.2896, -0.0592, 1.7422, 0.1952, -0.0398, 1.7422, 0.2, -0.0592, 1.7422, 0.1952, -0.02, 1.7559, 0.1006, -0.02, 1.7559, 0.1006, -0.0592, 1.7422, 0.1952, -0.0298, 1.7559, 0.0982, -0.0898, 0.6279, 0.9121, -0.1787, 0.6279, 0.8989, -0.0898, 0.6885, 0.9121, -0.0898, 0.6885, 0.9121, -0.1787, 0.6279, 0.8989, -0.1787, 0.7153, 0.8989, -0.0898, 0.7759, 0.9121, -0.1787, 0.8022, 0.8989, -0.0898, 0.8892, 0.9121, -0.0898, 0.8892, 0.9121, -0.1787, 0.8022, 0.8989, -0.1787, 0.8892, 0.8989, -0.0898, 1.0635, 0.9121, -0.1787, 1.0635, 0.8989, -0.0892, 1.1416, 0.9063, -0.0892, 1.1416, 0.9063, -0.1787, 1.0635, 0.8989, -0.1776, 1.1416, 0.8931, -0.0892, 1.1416, 0.9063, -0.1776, 1.1416, 0.8931, -0.0876, 1.2188, 0.8892, -0.0876, 1.2188, 0.8892, -0.1776, 1.1416, 0.8931, -0.1743, 1.2188, 0.8765, -0.0876, 1.2188, 0.8892, -0.1743, 1.2188, 0.8765, -0.0848, 1.293, 0.8608, -0.0848, 1.293, 0.8608, -0.1743, 1.2188, 0.8765, -0.1687, 1.293, 0.8481, -0.0848, 1.293, 0.8608, -0.1687, 1.293, 0.8481, -0.0809, 1.3652, 0.8218, -0.0809, 1.3652, 0.8218, -0.1687, 1.293, 0.8481, -0.161, 1.3652, 0.8096, -0.0809, 1.3652, 0.8218, -0.161, 1.3652, 0.8096, -0.076, 1.4336, 0.772, -0.076, 1.4336, 0.772, -0.161, 1.3652, 0.8096, -0.1514, 1.4336, 0.7612, -0.076, 1.4336, 0.772, -0.1514, 1.4336, 0.7612, -0.0702, 1.498, 0.7129, -0.0702, 1.498, 0.7129, -0.1514, 1.4336, 0.7612, -0.1398, 1.498, 0.7026, -0.0702, 1.498, 0.7129, -0.1398, 1.498, 0.7026, -0.0635, 1.5557, 0.645, -0.0635, 1.5557, 0.645, -0.1398, 1.498, 0.7026, -0.1263, 1.5557, 0.6353, -0.0635, 1.5557, 0.645, -0.1263, 1.5557, 0.6353, -0.056, 1.6084, 0.5684, -0.056, 1.6084, 0.5684, -0.1263, 1.5557, 0.6353, -0.1115, 1.6084, 0.5601, -0.056, 1.6084, 0.5684, -0.1115, 1.6084, 0.5601, -0.0478, 1.6533, 0.4851, -0.0478, 1.6533, 0.4851, -0.1115, 1.6084, 0.5601, -0.0951, 1.6533, 0.4783, -0.0478, 1.6533, 0.4851, -0.0951, 1.6533, 0.4783, -0.039, 1.6914, 0.3958, -0.039, 1.6914, 0.3958, -0.0951, 1.6533, 0.4783, -0.0776, 1.6914, 0.3899, -0.039, 1.6914, 0.3958, -0.0776, 1.6914, 0.3899, -0.0297, 1.7207, 0.3013, -0.0297, 1.7207, 0.3013, -0.0776, 1.6914, 0.3899, -0.0591, 1.7207, 0.2969, -0.0297, 1.7207, 0.3013, -0.0591, 1.7207, 0.2969, -0.02, 1.7422, 0.2029, -0.02, 1.7422, 0.2029, -0.0591, 1.7207, 0.2969, -0.0398, 1.7422, 0.2, -0.02, 1.7422, 0.2029, -0.0398, 1.7422, 0.2, -0.0101, 1.7559, 0.1021, -0.0101, 1.7559, 0.1021, -0.0398, 1.7422, 0.2, -0.02, 1.7559, 0.1006, -0.0701, 1.002, 0.9131, -0.0898, 1.0078, 0.9121, -0.0498, 1.0244, 0.9141, -0.0498, 1.0244, 0.9141, -0.0898, 1.0078, 0.9121, -0.0898, 1.0635, 0.9121, -0.0186, 0.7256, 0.8428, -0.0217, 0.7256, 0.9067, -0.0404, 0.7368, 0.8418, -0.0404, 0.7368, 0.8418, -0.0217, 0.7256, 0.9067, -0.0435, 0.7368, 0.9058, -0.0404, 0.7368, 0.8418, -0.0435, 0.7368, 0.9058, -0.0546, 0.7534, 0.8408, -0.0546, 0.7534, 0.8408, -0.0435, 0.7368, 0.9058, -0.0578, 0.7534, 0.9053, 0, 1.1416, 0.9106, -0.0892, 1.1416, 0.9063, 0, 1.2188, 0.8936, 0, 1.2188, 0.8936, -0.0892, 1.1416, 0.9063, -0.0876, 1.2188, 0.8892, 0, 1.2188, 0.8936, -0.0876, 1.2188, 0.8892, 0, 1.293, 0.8647, 0, 1.293, 0.8647, -0.0876, 1.2188, 0.8892, -0.0848, 1.293, 0.8608, 0, 1.293, 0.8647, -0.0848, 1.293, 0.8608, 0, 1.3652, 0.8257, 0, 1.3652, 0.8257, -0.0848, 1.293, 0.8608, -0.0809, 1.3652, 0.8218, 0, 1.3652, 0.8257, -0.0809, 1.3652, 0.8218, 0, 1.4336, 0.7759, 0, 1.4336, 0.7759, -0.0809, 1.3652, 0.8218, -0.076, 1.4336, 0.772, 0, 1.4336, 0.7759, -0.076, 1.4336, 0.772, 0, 1.498, 0.7163, 0, 1.498, 0.7163, -0.076, 1.4336, 0.772, -0.0702, 1.498, 0.7129, 0, 1.498, 0.7163, -0.0702, 1.498, 0.7129, 0, 1.5557, 0.6479, 0, 1.5557, 0.6479, -0.0702, 1.498, 0.7129, -0.0635, 1.5557, 0.645, 0, 1.5557, 0.6479, -0.0635, 1.5557, 0.645, 0, 1.6084, 0.5713, 0, 1.6084, 0.5713, -0.0635, 1.5557, 0.645, -0.056, 1.6084, 0.5684, 0, 1.6084, 0.5713, -0.056, 1.6084, 0.5684, 0, 1.6533, 0.4875, 0, 1.6533, 0.4875, -0.056, 1.6084, 0.5684, -0.0478, 1.6533, 0.4851, 0, 1.6533, 0.4875, -0.0478, 1.6533, 0.4851, 0, 1.6914, 0.3977, 0, 1.6914, 0.3977, -0.0478, 1.6533, 0.4851, -0.039, 1.6914, 0.3958, 0, 1.6914, 0.3977, -0.039, 1.6914, 0.3958, 0, 1.7207, 0.3027, 0, 1.7207, 0.3027, -0.039, 1.6914, 0.3958, -0.0297, 1.7207, 0.3013, 0, 1.7207, 0.3027, -0.0297, 1.7207, 0.3013, 0, 1.7422, 0.2039, 0, 1.7422, 0.2039, -0.0297, 1.7207, 0.3013, -0.02, 1.7422, 0.2029, 0, 1.7422, 0.2039, -0.02, 1.7422, 0.2029, 0, 1.7559, 0.1026, 0, 1.7559, 0.1026, -0.02, 1.7422, 0.2029, -0.0101, 1.7559, 0.1021, -0.0898, 0.6279, -0.9121, 0, 0.6279, -0.9165, -0.0898, 0.7153, -0.9121, -0.0898, 0.7153, -0.9121, 0, 0.6279, -0.9165, 0, 0.7153, -0.9165, -0.0898, 0.7153, -0.9121, 0, 0.7153, -0.9165, -0.0898, 0.8022, -0.9121, -0.0898, 0.8022, -0.9121, 0, 0.7153, -0.9165, 0, 0.8022, -0.9165, -0.0898, 0.8022, -0.9121, 0, 0.8022, -0.9165, -0.0898, 0.8892, -0.9121, -0.0898, 0.8892, -0.9121, 0, 0.8022, -0.9165, 0, 0.8892, -0.9165, -0.0898, 0.8892, -0.9121, 0, 0.8892, -0.9165, -0.0898, 0.9766, -0.9121, -0.0898, 0.9766, -0.9121, 0, 0.8892, -0.9165, 0, 0.9766, -0.9165, -0.0898, 0.9766, -0.9121, 0, 0.9766, -0.9165, -0.0898, 1.0635, -0.9121, -0.0898, 1.0635, -0.9121, 0, 0.9766, -0.9165, 0, 1.0635, -0.9165, -0.0898, 1.0635, -0.9121, 0, 1.0635, -0.9165, -0.0892, 1.1416, -0.9063, -0.0892, 1.1416, -0.9063, 0, 1.0635, -0.9165, 0, 1.1416, -0.9106, -0.0892, 1.1416, -0.9063, 0, 1.1416, -0.9106, -0.0876, 1.2188, -0.8892, -0.0876, 1.2188, -0.8892, 0, 1.1416, -0.9106, 0, 1.2188, -0.8936, -0.0876, 1.2188, -0.8892, 0, 1.2188, -0.8936, -0.0848, 1.293, -0.8608, -0.0848, 1.293, -0.8608, 0, 1.2188, -0.8936, 0, 1.293, -0.8647, -0.0848, 1.293, -0.8608, 0, 1.293, -0.8647, -0.0809, 1.3652, -0.8218, -0.0809, 1.3652, -0.8218, 0, 1.293, -0.8647, 0, 1.3652, -0.8257, -0.0809, 1.3652, -0.8218, 0, 1.3652, -0.8257, -0.076, 1.4336, -0.772, -0.076, 1.4336, -0.772, 0, 1.3652, -0.8257, 0, 1.4336, -0.7759, -0.076, 1.4336, -0.772, 0, 1.4336, -0.7759, -0.0702, 1.498, -0.7129, -0.0702, 1.498, -0.7129, 0, 1.4336, -0.7759, 0, 1.498, -0.7163, -0.0702, 1.498, -0.7129, 0, 1.498, -0.7163, -0.0635, 1.5557, -0.645, -0.0635, 1.5557, -0.645, 0, 1.498, -0.7163, 0, 1.5557, -0.6479, -0.0635, 1.5557, -0.645, 0, 1.5557, -0.6479, -0.056, 1.6084, -0.5684, -0.056, 1.6084, -0.5684, 0, 1.5557, -0.6479, 0, 1.6084, -0.5713, -0.056, 1.6084, -0.5684, 0, 1.6084, -0.5713, -0.0478, 1.6533, -0.4851, -0.0478, 1.6533, -0.4851, 0, 1.6084, -0.5713, 0, 1.6533, -0.4875, -0.0478, 1.6533, -0.4851, 0, 1.6533, -0.4875, -0.039, 1.6914, -0.3958, -0.039, 1.6914, -0.3958, 0, 1.6533, -0.4875, 0, 1.6914, -0.3977, -0.039, 1.6914, -0.3958, 0, 1.6914, -0.3977, -0.0297, 1.7207, -0.3013, -0.0297, 1.7207, -0.3013, 0, 1.6914, -0.3977, 0, 1.7207, -0.3027, -0.0297, 1.7207, -0.3013, 0, 1.7207, -0.3027, -0.02, 1.7422, -0.2029, -0.02, 1.7422, -0.2029, 0, 1.7207, -0.3027, 0, 1.7422, -0.2039, -0.02, 1.7422, -0.2029, 0, 1.7422, -0.2039, -0.0101, 1.7559, -0.1021, -0.0101, 1.7559, -0.1021, 0, 1.7422, -0.2039, 0, 1.7559, -0.1026, -0.1787, 0.6279, -0.8989, -0.0898, 0.6279, -0.9121, -0.1787, 0.7153, -0.8989, -0.1787, 0.7153, -0.8989, -0.0898, 0.6279, -0.9121, -0.0898, 0.7153, -0.9121, -0.1787, 0.7153, -0.8989, -0.0898, 0.7153, -0.9121, -0.1787, 0.8022, -0.8989, -0.1787, 0.8022, -0.8989, -0.0898, 0.7153, -0.9121, -0.0898, 0.8022, -0.9121, -0.1787, 0.8022, -0.8989, -0.0898, 0.8022, -0.9121, -0.1787, 0.8892, -0.8989, -0.1787, 0.8892, -0.8989, -0.0898, 0.8022, -0.9121, -0.0898, 0.8892, -0.9121, -0.1787, 0.8892, -0.8989, -0.0898, 0.8892, -0.9121, -0.1787, 0.9766, -0.8989, -0.1787, 0.9766, -0.8989, -0.0898, 0.8892, -0.9121, -0.0898, 0.9766, -0.9121, -0.1787, 0.9766, -0.8989, -0.0898, 0.9766, -0.9121, -0.1787, 1.0635, -0.8989, -0.1787, 1.0635, -0.8989, -0.0898, 0.9766, -0.9121, -0.0898, 1.0635, -0.9121, -0.1787, 1.0635, -0.8989, -0.0898, 1.0635, -0.9121, -0.1776, 1.1416, -0.8931, -0.1776, 1.1416, -0.8931, -0.0898, 1.0635, -0.9121, -0.0892, 1.1416, -0.9063, -0.1776, 1.1416, -0.8931, -0.0892, 1.1416, -0.9063, -0.1743, 1.2188, -0.8765, -0.1743, 1.2188, -0.8765, -0.0892, 1.1416, -0.9063, -0.0876, 1.2188, -0.8892, -0.1743, 1.2188, -0.8765, -0.0876, 1.2188, -0.8892, -0.1687, 1.293, -0.8481, -0.1687, 1.293, -0.8481, -0.0876, 1.2188, -0.8892, -0.0848, 1.293, -0.8608, -0.1687, 1.293, -0.8481, -0.0848, 1.293, -0.8608, -0.161, 1.3652, -0.8096, -0.161, 1.3652, -0.8096, -0.0848, 1.293, -0.8608, -0.0809, 1.3652, -0.8218, -0.161, 1.3652, -0.8096, -0.0809, 1.3652, -0.8218, -0.1514, 1.4336, -0.7612, -0.1514, 1.4336, -0.7612, -0.0809, 1.3652, -0.8218, -0.076, 1.4336, -0.772, -0.1514, 1.4336, -0.7612, -0.076, 1.4336, -0.772, -0.1398, 1.498, -0.7026, -0.1398, 1.498, -0.7026, -0.076, 1.4336, -0.772, -0.0702, 1.498, -0.7129, -0.1398, 1.498, -0.7026, -0.0702, 1.498, -0.7129, -0.1263, 1.5557, -0.6353, -0.1263, 1.5557, -0.6353, -0.0702, 1.498, -0.7129, -0.0635, 1.5557, -0.645, -0.1263, 1.5557, -0.6353, -0.0635, 1.5557, -0.645, -0.1115, 1.6084, -0.5601, -0.1115, 1.6084, -0.5601, -0.0635, 1.5557, -0.645, -0.056, 1.6084, -0.5684, -0.1115, 1.6084, -0.5601, -0.056, 1.6084, -0.5684, -0.0951, 1.6533, -0.4783, -0.0951, 1.6533, -0.4783, -0.056, 1.6084, -0.5684, -0.0478, 1.6533, -0.4851, -0.0951, 1.6533, -0.4783, -0.0478, 1.6533, -0.4851, -0.0776, 1.6914, -0.3899, -0.0776, 1.6914, -0.3899, -0.0478, 1.6533, -0.4851, -0.039, 1.6914, -0.3958, -0.0776, 1.6914, -0.3899, -0.039, 1.6914, -0.3958, -0.0591, 1.7207, -0.2969, -0.0591, 1.7207, -0.2969, -0.039, 1.6914, -0.3958, -0.0297, 1.7207, -0.3013, -0.0591, 1.7207, -0.2969, -0.0297, 1.7207, -0.3013, -0.0398, 1.7422, -0.2, -0.0398, 1.7422, -0.2, -0.0297, 1.7207, -0.3013, -0.02, 1.7422, -0.2029, -0.0398, 1.7422, -0.2, -0.02, 1.7422, -0.2029, -0.02, 1.7559, -0.1006, -0.02, 1.7559, -0.1006, -0.02, 1.7422, -0.2029, -0.0101, 1.7559, -0.1021, -0.2659, 0.6279, -0.877, -0.1787, 0.6279, -0.8989, -0.2659, 0.7153, -0.877, -0.2659, 0.7153, -0.877, -0.1787, 0.6279, -0.8989, -0.1787, 0.7153, -0.8989, -0.2659, 0.7153, -0.877, -0.1787, 0.7153, -0.8989, -0.2659, 0.8022, -0.877, -0.2659, 0.8022, -0.877, -0.1787, 0.7153, -0.8989, -0.1787, 0.8022, -0.8989, -0.2659, 0.8022, -0.877, -0.1787, 0.8022, -0.8989, -0.2659, 0.8892, -0.877, -0.2659, 0.8892, -0.877, -0.1787, 0.8022, -0.8989, -0.1787, 0.8892, -0.8989, -0.2659, 0.8892, -0.877, -0.1787, 0.8892, -0.8989, -0.2659, 0.9766, -0.877, -0.2659, 0.9766, -0.877, -0.1787, 0.8892, -0.8989, -0.1787, 0.9766, -0.8989, -0.2659, 0.9766, -0.877, -0.1787, 0.9766, -0.8989, -0.2659, 1.0635, -0.877, -0.2659, 1.0635, -0.877, -0.1787, 0.9766, -0.8989, -0.1787, 1.0635, -0.8989, -0.2659, 1.0635, -0.877, -0.1787, 1.0635, -0.8989, -0.2644, 1.1416, -0.8716, -0.2644, 1.1416, -0.8716, -0.1787, 1.0635, -0.8989, -0.1776, 1.1416, -0.8931, -0.2644, 1.1416, -0.8716, -0.1776, 1.1416, -0.8931, -0.2593, 1.2188, -0.855, -0.2593, 1.2188, -0.855, -0.1776, 1.1416, -0.8931, -0.1743, 1.2188, -0.8765, -0.2593, 1.2188, -0.855, -0.1743, 1.2188, -0.8765, -0.251, 1.293, -0.8276, -0.251, 1.293, -0.8276, -0.1743, 1.2188, -0.8765, -0.1687, 1.293, -0.8481, -0.251, 1.293, -0.8276, -0.1687, 1.293, -0.8481, -0.2396, 1.3652, -0.79, -0.2396, 1.3652, -0.79, -0.1687, 1.293, -0.8481, -0.161, 1.3652, -0.8096, -0.2396, 1.3652, -0.79, -0.161, 1.3652, -0.8096, -0.2252, 1.4336, -0.7427, -0.2252, 1.4336, -0.7427, -0.161, 1.3652, -0.8096, -0.1514, 1.4336, -0.7612, -0.2252, 1.4336, -0.7427, -0.1514, 1.4336, -0.7612, -0.208, 1.498, -0.6855, -0.208, 1.498, -0.6855, -0.1514, 1.4336, -0.7612, -0.1398, 1.498, -0.7026, -0.208, 1.498, -0.6855, -0.1398, 1.498, -0.7026, -0.1881, 1.5557, -0.6201, -0.1881, 1.5557, -0.6201, -0.1398, 1.498, -0.7026, -0.1263, 1.5557, -0.6353, -0.1881, 1.5557, -0.6201, -0.1263, 1.5557, -0.6353, -0.1659, 1.6084, -0.5469, -0.1659, 1.6084, -0.5469, -0.1263, 1.5557, -0.6353, -0.1115, 1.6084, -0.5601, -0.1659, 1.6084, -0.5469, -0.1115, 1.6084, -0.5601, -0.1415, 1.6533, -0.4666, -0.1415, 1.6533, -0.4666, -0.1115, 1.6084, -0.5601, -0.0951, 1.6533, -0.4783, -0.1415, 1.6533, -0.4666, -0.0951, 1.6533, -0.4783, -0.1154, 1.6914, -0.3804, -0.1154, 1.6914, -0.3804, -0.0951, 1.6533, -0.4783, -0.0776, 1.6914, -0.3899, -0.1154, 1.6914, -0.3804, -0.0776, 1.6914, -0.3899, -0.0878, 1.7207, -0.2896, -0.0878, 1.7207, -0.2896, -0.0776, 1.6914, -0.3899, -0.0591, 1.7207, -0.2969, -0.0878, 1.7207, -0.2896, -0.0591, 1.7207, -0.2969, -0.0592, 1.7422, -0.1952, -0.0592, 1.7422, -0.1952, -0.0591, 1.7207, -0.2969, -0.0398, 1.7422, -0.2, -0.0592, 1.7422, -0.1952, -0.0398, 1.7422, -0.2, -0.0298, 1.7559, -0.0982, -0.0298, 1.7559, -0.0982, -0.0398, 1.7422, -0.2, -0.02, 1.7559, -0.1006, -0.3506, 0.6279, -0.8467, -0.2659, 0.6279, -0.877, -0.3506, 0.7153, -0.8467, -0.3506, 0.7153, -0.8467, -0.2659, 0.6279, -0.877, -0.2659, 0.7153, -0.877, -0.3506, 0.7153, -0.8467, -0.2659, 0.7153, -0.877, -0.3506, 0.8022, -0.8467, -0.3506, 0.8022, -0.8467, -0.2659, 0.7153, -0.877, -0.2659, 0.8022, -0.877, -0.3506, 0.8022, -0.8467, -0.2659, 0.8022, -0.877, -0.3506, 0.8892, -0.8467, -0.3506, 0.8892, -0.8467, -0.2659, 0.8022, -0.877, -0.2659, 0.8892, -0.877, -0.3506, 0.8892, -0.8467, -0.2659, 0.8892, -0.877, -0.3506, 0.9766, -0.8467, -0.3506, 0.9766, -0.8467, -0.2659, 0.8892, -0.877, -0.2659, 0.9766, -0.877, -0.3506, 0.9766, -0.8467, -0.2659, 0.9766, -0.877, -0.3506, 1.0635, -0.8467, -0.3506, 1.0635, -0.8467, -0.2659, 0.9766, -0.877, -0.2659, 1.0635, -0.877, -0.3506, 1.0635, -0.8467, -0.2659, 1.0635, -0.877, -0.3484, 1.1416, -0.8413, -0.3484, 1.1416, -0.8413, -0.2659, 1.0635, -0.877, -0.2644, 1.1416, -0.8716, -0.3484, 1.1416, -0.8413, -0.2644, 1.1416, -0.8716, -0.3418, 1.2188, -0.8252, -0.3418, 1.2188, -0.8252, -0.2644, 1.1416, -0.8716, -0.2593, 1.2188, -0.855, -0.3418, 1.2188, -0.8252, -0.2593, 1.2188, -0.855, -0.3311, 1.293, -0.7993, -0.3311, 1.293, -0.7993, -0.2593, 1.2188, -0.855, -0.251, 1.293, -0.8276, -0.3311, 1.293, -0.7993, -0.251, 1.293, -0.8276, -0.3159, 1.3652, -0.7627, -0.3159, 1.3652, -0.7627, -0.251, 1.293, -0.8276, -0.2396, 1.3652, -0.79, -0.3159, 1.3652, -0.7627, -0.2396, 1.3652, -0.79, -0.2969, 1.4336, -0.7168, -0.2969, 1.4336, -0.7168, -0.2396, 1.3652, -0.79, -0.2252, 1.4336, -0.7427, -0.2969, 1.4336, -0.7168, -0.2252, 1.4336, -0.7427, -0.2742, 1.498, -0.6621, -0.2742, 1.498, -0.6621, -0.2252, 1.4336, -0.7427, -0.208, 1.498, -0.6855, -0.2742, 1.498, -0.6621, -0.208, 1.498, -0.6855, -0.2479, 1.5557, -0.5986, -0.2479, 1.5557, -0.5986, -0.208, 1.498, -0.6855, -0.1881, 1.5557, -0.6201, -0.2479, 1.5557, -0.5986, -0.1881, 1.5557, -0.6201, -0.2186, 1.6084, -0.5278, -0.2186, 1.6084, -0.5278, -0.1881, 1.5557, -0.6201, -0.1659, 1.6084, -0.5469, -0.2186, 1.6084, -0.5278, -0.1659, 1.6084, -0.5469, -0.1865, 1.6533, -0.4504, -0.1865, 1.6533, -0.4504, -0.1659, 1.6084, -0.5469, -0.1415, 1.6533, -0.4666, -0.1865, 1.6533, -0.4504, -0.1415, 1.6533, -0.4666, -0.1521, 1.6914, -0.3674, -0.1521, 1.6914, -0.3674, -0.1415, 1.6533, -0.4666, -0.1154, 1.6914, -0.3804, -0.1521, 1.6914, -0.3674, -0.1154, 1.6914, -0.3804, -0.1158, 1.7207, -0.2795, -0.1158, 1.7207, -0.2795, -0.1154, 1.6914, -0.3804, -0.0878, 1.7207, -0.2896, -0.1158, 1.7207, -0.2795, -0.0878, 1.7207, -0.2896, -0.078, 1.7422, -0.1884, -0.078, 1.7422, -0.1884, -0.0878, 1.7207, -0.2896, -0.0592, 1.7422, -0.1952, -0.078, 1.7422, -0.1884, -0.0592, 1.7422, -0.1952, -0.0392, 1.7559, -0.0948, -0.0392, 1.7559, -0.0948, -0.0592, 1.7422, -0.1952, -0.0298, 1.7559, -0.0982, -0.4319, 0.6279, -0.8081, -0.3506, 0.6279, -0.8467, -0.4319, 0.7153, -0.8081, -0.4319, 0.7153, -0.8081, -0.3506, 0.6279, -0.8467, -0.3506, 0.7153, -0.8467, -0.4319, 0.7153, -0.8081, -0.3506, 0.7153, -0.8467, -0.4319, 0.8022, -0.8081, -0.4319, 0.8022, -0.8081, -0.3506, 0.7153, -0.8467, -0.3506, 0.8022, -0.8467, -0.4319, 0.8022, -0.8081, -0.3506, 0.8022, -0.8467, -0.4319, 0.8892, -0.8081, -0.4319, 0.8892, -0.8081, -0.3506, 0.8022, -0.8467, -0.3506, 0.8892, -0.8467, -0.4319, 0.8892, -0.8081, -0.3506, 0.8892, -0.8467, -0.4319, 0.9766, -0.8081, -0.4319, 0.9766, -0.8081, -0.3506, 0.8892, -0.8467, -0.3506, 0.9766, -0.8467, -0.4319, 0.9766, -0.8081, -0.3506, 0.9766, -0.8467, -0.4319, 1.0635, -0.8081, -0.4319, 1.0635, -0.8081, -0.3506, 0.9766, -0.8467, -0.3506, 1.0635, -0.8467, -0.4319, 1.0635, -0.8081, -0.3506, 1.0635, -0.8467, -0.4292, 1.1416, -0.8032, -0.4292, 1.1416, -0.8032, -0.3506, 1.0635, -0.8467, -0.3484, 1.1416, -0.8413, -0.4292, 1.1416, -0.8032, -0.3484, 1.1416, -0.8413, -0.4211, 1.2188, -0.7881, -0.4211, 1.2188, -0.7881, -0.3484, 1.1416, -0.8413, -0.3418, 1.2188, -0.8252, -0.4211, 1.2188, -0.7881, -0.3418, 1.2188, -0.8252, -0.4077, 1.293, -0.7627, -0.4077, 1.293, -0.7627, -0.3418, 1.2188, -0.8252, -0.3311, 1.293, -0.7993, -0.4077, 1.293, -0.7627, -0.3311, 1.293, -0.7993, -0.3892, 1.3652, -0.728, -0.3892, 1.3652, -0.728, -0.3311, 1.293, -0.7993, -0.3159, 1.3652, -0.7627, -0.3892, 1.3652, -0.728, -0.3159, 1.3652, -0.7627, -0.3657, 1.4336, -0.6841, -0.3657, 1.4336, -0.6841, -0.3159, 1.3652, -0.7627, -0.2969, 1.4336, -0.7168, -0.3657, 1.4336, -0.6841, -0.2969, 1.4336, -0.7168, -0.3376, 1.498, -0.6318, -0.3376, 1.498, -0.6318, -0.2969, 1.4336, -0.7168, -0.2742, 1.498, -0.6621, -0.3376, 1.498, -0.6318, -0.2742, 1.498, -0.6621, -0.3054, 1.5557, -0.5713, -0.3054, 1.5557, -0.5713, -0.2742, 1.498, -0.6621, -0.2479, 1.5557, -0.5986, -0.3054, 1.5557, -0.5713, -0.2479, 1.5557, -0.5986, -0.2693, 1.6084, -0.5039, -0.2693, 1.6084, -0.5039, -0.2479, 1.5557, -0.5986, -0.2186, 1.6084, -0.5278, -0.2693, 1.6084, -0.5039, -0.2186, 1.6084, -0.5278, -0.2299, 1.6533, -0.4299, -0.2299, 1.6533, -0.4299, -0.2186, 1.6084, -0.5278, -0.1865, 1.6533, -0.4504, -0.2299, 1.6533, -0.4299, -0.1865, 1.6533, -0.4504, -0.1874, 1.6914, -0.3506, -0.1874, 1.6914, -0.3506, -0.1865, 1.6533, -0.4504, -0.1521, 1.6914, -0.3674, -0.1874, 1.6914, -0.3506, -0.1521, 1.6914, -0.3674, -0.1427, 1.7207, -0.2668, -0.1427, 1.7207, -0.2668, -0.1521, 1.6914, -0.3674, -0.1158, 1.7207, -0.2795, -0.1427, 1.7207, -0.2668, -0.1158, 1.7207, -0.2795, -0.0961, 1.7422, -0.1798, -0.0961, 1.7422, -0.1798, -0.1158, 1.7207, -0.2795, -0.078, 1.7422, -0.1884, -0.0961, 1.7422, -0.1798, -0.078, 1.7422, -0.1884, -0.0484, 1.7559, -0.0905, -0.0484, 1.7559, -0.0905, -0.078, 1.7422, -0.1884, -0.0392, 1.7559, -0.0948, -0.5088, 0.6279, -0.7617, -0.4319, 0.6279, -0.8081, -0.5088, 0.7153, -0.7617, -0.5088, 0.7153, -0.7617, -0.4319, 0.6279, -0.8081, -0.4319, 0.7153, -0.8081, -0.5088, 0.7153, -0.7617, -0.4319, 0.7153, -0.8081, -0.5088, 0.8022, -0.7617, -0.5088, 0.8022, -0.7617, -0.4319, 0.7153, -0.8081, -0.4319, 0.8022, -0.8081, -0.5088, 0.8022, -0.7617, -0.4319, 0.8022, -0.8081, -0.5088, 0.8892, -0.7617, -0.5088, 0.8892, -0.7617, -0.4319, 0.8022, -0.8081, -0.4319, 0.8892, -0.8081, -0.5088, 0.8892, -0.7617, -0.4319, 0.8892, -0.8081, -0.5088, 0.9766, -0.7617, -0.5088, 0.9766, -0.7617, -0.4319, 0.8892, -0.8081, -0.4319, 0.9766, -0.8081, -0.5088, 0.9766, -0.7617, -0.4319, 0.9766, -0.8081, -0.5088, 1.0635, -0.7617, -0.5088, 1.0635, -0.7617, -0.4319, 0.9766, -0.8081, -0.4319, 1.0635, -0.8081, -0.5088, 1.0635, -0.7617, -0.4319, 1.0635, -0.8081, -0.5059, 1.1416, -0.7573, -0.5059, 1.1416, -0.7573, -0.4319, 1.0635, -0.8081, -0.4292, 1.1416, -0.8032, -0.5059, 1.1416, -0.7573, -0.4292, 1.1416, -0.8032, -0.4963, 1.2188, -0.7427, -0.4963, 1.2188, -0.7427, -0.4292, 1.1416, -0.8032, -0.4211, 1.2188, -0.7881, -0.4963, 1.2188, -0.7427, -0.4211, 1.2188, -0.7881, -0.4805, 1.293, -0.7192, -0.4805, 1.293, -0.7192, -0.4211, 1.2188, -0.7881, -0.4077, 1.293, -0.7627, -0.4805, 1.293, -0.7192, -0.4077, 1.293, -0.7627, -0.4587, 1.3652, -0.6865, -0.4587, 1.3652, -0.6865, -0.4077, 1.293, -0.7627, -0.3892, 1.3652, -0.728, -0.4587, 1.3652, -0.6865, -0.3892, 1.3652, -0.728, -0.4312, 1.4336, -0.645, -0.4312, 1.4336, -0.645, -0.3892, 1.3652, -0.728, -0.3657, 1.4336, -0.6841, -0.4312, 1.4336, -0.645, -0.3657, 1.4336, -0.6841, -0.3979, 1.498, -0.5957, -0.3979, 1.498, -0.5957, -0.3657, 1.4336, -0.6841, -0.3376, 1.498, -0.6318, -0.3979, 1.498, -0.5957, -0.3376, 1.498, -0.6318, -0.3599, 1.5557, -0.5386, -0.3599, 1.5557, -0.5386, -0.3376, 1.498, -0.6318, -0.3054, 1.5557, -0.5713, -0.3599, 1.5557, -0.5386, -0.3054, 1.5557, -0.5713, -0.3174, 1.6084, -0.4751, -0.3174, 1.6084, -0.4751, -0.3054, 1.5557, -0.5713, -0.2693, 1.6084, -0.5039, -0.3174, 1.6084, -0.4751, -0.2693, 1.6084, -0.5039, -0.2708, 1.6533, -0.4053, -0.2708, 1.6533, -0.4053, -0.2693, 1.6084, -0.5039, -0.2299, 1.6533, -0.4299, -0.2708, 1.6533, -0.4053, -0.2299, 1.6533, -0.4299, -0.2209, 1.6914, -0.3306, -0.2209, 1.6914, -0.3306, -0.2299, 1.6533, -0.4299, -0.1874, 1.6914, -0.3506, -0.2209, 1.6914, -0.3306, -0.1874, 1.6914, -0.3506, -0.1681, 1.7207, -0.2517, -0.1681, 1.7207, -0.2517, -0.1874, 1.6914, -0.3506, -0.1427, 1.7207, -0.2668, -0.1681, 1.7207, -0.2517, -0.1427, 1.7207, -0.2668, -0.1133, 1.7422, -0.1696, -0.1133, 1.7422, -0.1696, -0.1427, 1.7207, -0.2668, -0.0961, 1.7422, -0.1798, -0.1133, 1.7422, -0.1696, -0.0961, 1.7422, -0.1798, -0.057, 1.7559, -0.0853, -0.057, 1.7559, -0.0853, -0.0961, 1.7422, -0.1798, -0.0484, 1.7559, -0.0905, -0.5811, 0.6279, -0.7085, -0.5088, 0.6279, -0.7617, -0.5811, 0.7153, -0.7085, -0.5811, 0.7153, -0.7085, -0.5088, 0.6279, -0.7617, -0.5088, 0.7153, -0.7617, -0.5811, 0.7153, -0.7085, -0.5088, 0.7153, -0.7617, -0.5811, 0.8022, -0.7085, -0.5811, 0.8022, -0.7085, -0.5088, 0.7153, -0.7617, -0.5088, 0.8022, -0.7617, -0.5811, 0.8022, -0.7085, -0.5088, 0.8022, -0.7617, -0.5811, 0.8892, -0.7085, -0.5811, 0.8892, -0.7085, -0.5088, 0.8022, -0.7617, -0.5088, 0.8892, -0.7617, -0.5811, 0.8892, -0.7085, -0.5088, 0.8892, -0.7617, -0.5811, 0.9766, -0.7085, -0.5811, 0.9766, -0.7085, -0.5088, 0.8892, -0.7617, -0.5088, 0.9766, -0.7617, -0.5811, 0.9766, -0.7085, -0.5088, 0.9766, -0.7617, -0.5811, 1.0635, -0.7085, -0.5811, 1.0635, -0.7085, -0.5088, 0.9766, -0.7617, -0.5088, 1.0635, -0.7617, -0.5811, 1.0635, -0.7085, -0.5088, 1.0635, -0.7617, -0.5776, 1.1416, -0.7041, -0.5776, 1.1416, -0.7041, -0.5088, 1.0635, -0.7617, -0.5059, 1.1416, -0.7573, -0.5776, 1.1416, -0.7041, -0.5059, 1.1416, -0.7573, -0.5669, 1.2188, -0.6904, -0.5669, 1.2188, -0.6904, -0.5059, 1.1416, -0.7573, -0.4963, 1.2188, -0.7427, -0.5669, 1.2188, -0.6904, -0.4963, 1.2188, -0.7427, -0.5488, 1.293, -0.6685, -0.5488, 1.293, -0.6685, -0.4963, 1.2188, -0.7427, -0.4805, 1.293, -0.7192, -0.5488, 1.293, -0.6685, -0.4805, 1.293, -0.7192, -0.5239, 1.3652, -0.6382, -0.5239, 1.3652, -0.6382, -0.4805, 1.293, -0.7192, -0.4587, 1.3652, -0.6865, -0.5239, 1.3652, -0.6382, -0.4587, 1.3652, -0.6865, -0.4922, 1.4336, -0.5996, -0.4922, 1.4336, -0.5996, -0.4587, 1.3652, -0.6865, -0.4312, 1.4336, -0.645, -0.4922, 1.4336, -0.5996, -0.4312, 1.4336, -0.645, -0.4546, 1.498, -0.5537, -0.4546, 1.498, -0.5537, -0.4312, 1.4336, -0.645, -0.3979, 1.498, -0.5957, -0.4546, 1.498, -0.5537, -0.3979, 1.498, -0.5957, -0.4111, 1.5557, -0.501, -0.4111, 1.5557, -0.501, -0.3979, 1.498, -0.5957, -0.3599, 1.5557, -0.5386, -0.4111, 1.5557, -0.501, -0.3599, 1.5557, -0.5386, -0.3625, 1.6084, -0.4417, -0.3625, 1.6084, -0.4417, -0.3599, 1.5557, -0.5386, -0.3174, 1.6084, -0.4751, -0.3625, 1.6084, -0.4417, -0.3174, 1.6084, -0.4751, -0.3093, 1.6533, -0.377, -0.3093, 1.6533, -0.377, -0.3174, 1.6084, -0.4751, -0.2708, 1.6533, -0.4053, -0.3093, 1.6533, -0.377, -0.2708, 1.6533, -0.4053, -0.2522, 1.6914, -0.3074, -0.2522, 1.6914, -0.3074, -0.2708, 1.6533, -0.4053, -0.2209, 1.6914, -0.3306, -0.2522, 1.6914, -0.3074, -0.2209, 1.6914, -0.3306, -0.192, 1.7207, -0.234, -0.192, 1.7207, -0.234, -0.2209, 1.6914, -0.3306, -0.1681, 1.7207, -0.2517, -0.192, 1.7207, -0.234, -0.1681, 1.7207, -0.2517, -0.1294, 1.7422, -0.1576, -0.1294, 1.7422, -0.1576, -0.1681, 1.7207, -0.2517, -0.1133, 1.7422, -0.1696, -0.1294, 1.7422, -0.1576, -0.1133, 1.7422, -0.1696, -0.0651, 1.7559, -0.0793, -0.0651, 1.7559, -0.0793, -0.1133, 1.7422, -0.1696, -0.057, 1.7559, -0.0853, -0.6479, 0.6279, -0.6479, -0.5811, 0.6279, -0.7085, -0.6479, 0.7153, -0.6479, -0.6479, 0.7153, -0.6479, -0.5811, 0.6279, -0.7085, -0.5811, 0.7153, -0.7085, -0.6479, 0.7153, -0.6479, -0.5811, 0.7153, -0.7085, -0.6479, 0.8022, -0.6479, -0.6479, 0.8022, -0.6479, -0.5811, 0.7153, -0.7085, -0.5811, 0.8022, -0.7085, -0.6479, 0.8022, -0.6479, -0.5811, 0.8022, -0.7085, -0.6479, 0.8892, -0.6479, -0.6479, 0.8892, -0.6479, -0.5811, 0.8022, -0.7085, -0.5811, 0.8892, -0.7085, -0.6479, 0.8892, -0.6479, -0.5811, 0.8892, -0.7085, -0.6479, 0.9766, -0.6479, -0.6479, 0.9766, -0.6479, -0.5811, 0.8892, -0.7085, -0.5811, 0.9766, -0.7085, -0.6479, 0.9766, -0.6479, -0.5811, 0.9766, -0.7085, -0.6479, 1.0635, -0.6479, -0.6479, 1.0635, -0.6479, -0.5811, 0.9766, -0.7085, -0.5811, 1.0635, -0.7085, -0.6479, 1.0635, -0.6479, -0.5811, 1.0635, -0.7085, -0.644, 1.1416, -0.644, -0.644, 1.1416, -0.644, -0.5811, 1.0635, -0.7085, -0.5776, 1.1416, -0.7041, -0.644, 1.1416, -0.644, -0.5776, 1.1416, -0.7041, -0.6318, 1.2188, -0.6318, -0.6318, 1.2188, -0.6318, -0.5776, 1.1416, -0.7041, -0.5669, 1.2188, -0.6904, -0.6318, 1.2188, -0.6318, -0.5669, 1.2188, -0.6904, -0.6113, 1.293, -0.6113, -0.6113, 1.293, -0.6113, -0.5669, 1.2188, -0.6904, -0.5488, 1.293, -0.6685, -0.6113, 1.293, -0.6113, -0.5488, 1.293, -0.6685, -0.5835, 1.3652, -0.5835, -0.5835, 1.3652, -0.5835, -0.5488, 1.293, -0.6685, -0.5239, 1.3652, -0.6382, -0.5835, 1.3652, -0.5835, -0.5239, 1.3652, -0.6382, -0.5483, 1.4336, -0.5483, -0.5483, 1.4336, -0.5483, -0.5239, 1.3652, -0.6382, -0.4922, 1.4336, -0.5996, -0.5483, 1.4336, -0.5483, -0.4922, 1.4336, -0.5996, -0.5063, 1.498, -0.5063, -0.5063, 1.498, -0.5063, -0.4922, 1.4336, -0.5996, -0.4546, 1.498, -0.5537, -0.5063, 1.498, -0.5063, -0.4546, 1.498, -0.5537, -0.4583, 1.5557, -0.4583, -0.4583, 1.5557, -0.4583, -0.4546, 1.498, -0.5537, -0.4111, 1.5557, -0.501, -0.4583, 1.5557, -0.4583, -0.4111, 1.5557, -0.501, -0.4041, 1.6084, -0.4041, -0.4041, 1.6084, -0.4041, -0.4111, 1.5557, -0.501, -0.3625, 1.6084, -0.4417, -0.4041, 1.6084, -0.4041, -0.3625, 1.6084, -0.4417, -0.3447, 1.6533, -0.3447, -0.3447, 1.6533, -0.3447, -0.3625, 1.6084, -0.4417, -0.3093, 1.6533, -0.377, -0.3447, 1.6533, -0.3447, -0.3093, 1.6533, -0.377, -0.281, 1.6914, -0.281, -0.281, 1.6914, -0.281, -0.3093, 1.6533, -0.377, -0.2522, 1.6914, -0.3074, -0.281, 1.6914, -0.281, -0.2522, 1.6914, -0.3074, -0.214, 1.7207, -0.214, -0.214, 1.7207, -0.214, -0.2522, 1.6914, -0.3074, -0.192, 1.7207, -0.234, -0.214, 1.7207, -0.214, -0.192, 1.7207, -0.234, -0.1442, 1.7422, -0.1442, -0.1442, 1.7422, -0.1442, -0.192, 1.7207, -0.234, -0.1294, 1.7422, -0.1576, -0.1442, 1.7422, -0.1442, -0.1294, 1.7422, -0.1576, -0.0726, 1.7559, -0.0726, -0.0726, 1.7559, -0.0726, -0.1294, 1.7422, -0.1576, -0.0651, 1.7559, -0.0793, -0.0726, 1.7559, 0.0726, -0.0793, 1.7559, 0.0651, -0.0726, 1.7559, -0.0726, -0.0726, 1.7559, -0.0726, -0.0793, 1.7559, 0.0651, -0.0793, 1.7559, -0.0651, -0.7085, 0.6279, -0.5811, -0.6479, 0.6279, -0.6479, -0.7085, 0.7153, -0.5811, -0.7085, 0.7153, -0.5811, -0.6479, 0.6279, -0.6479, -0.6479, 0.7153, -0.6479, -0.7085, 0.7153, -0.5811, -0.6479, 0.7153, -0.6479, -0.7085, 0.8022, -0.5811, -0.7085, 0.8022, -0.5811, -0.6479, 0.7153, -0.6479, -0.6479, 0.8022, -0.6479, -0.7085, 0.8022, -0.5811, -0.6479, 0.8022, -0.6479, -0.7085, 0.8892, -0.5811, -0.7085, 0.8892, -0.5811, -0.6479, 0.8022, -0.6479, -0.6479, 0.8892, -0.6479, -0.7085, 0.8892, -0.5811, -0.6479, 0.8892, -0.6479, -0.7085, 0.9766, -0.5811, -0.7085, 0.9766, -0.5811, -0.6479, 0.8892, -0.6479, -0.6479, 0.9766, -0.6479, -0.7085, 0.9766, -0.5811, -0.6479, 0.9766, -0.6479, -0.7085, 1.0635, -0.5811, -0.7085, 1.0635, -0.5811, -0.6479, 0.9766, -0.6479, -0.6479, 1.0635, -0.6479, -0.7085, 1.0635, -0.5811, -0.6479, 1.0635, -0.6479, -0.7041, 1.1416, -0.5776, -0.7041, 1.1416, -0.5776, -0.6479, 1.0635, -0.6479, -0.644, 1.1416, -0.644, -0.7041, 1.1416, -0.5776, -0.644, 1.1416, -0.644, -0.6904, 1.2188, -0.5669, -0.6904, 1.2188, -0.5669, -0.644, 1.1416, -0.644, -0.6318, 1.2188, -0.6318, -0.6904, 1.2188, -0.5669, -0.6318, 1.2188, -0.6318, -0.6685, 1.293, -0.5488, -0.6685, 1.293, -0.5488, -0.6318, 1.2188, -0.6318, -0.6113, 1.293, -0.6113, -0.6685, 1.293, -0.5488, -0.6113, 1.293, -0.6113, -0.6382, 1.3652, -0.5239, -0.6382, 1.3652, -0.5239, -0.6113, 1.293, -0.6113, -0.5835, 1.3652, -0.5835, -0.6382, 1.3652, -0.5239, -0.5835, 1.3652, -0.5835, -0.5996, 1.4336, -0.4922, -0.5996, 1.4336, -0.4922, -0.5835, 1.3652, -0.5835, -0.5483, 1.4336, -0.5483, -0.5996, 1.4336, -0.4922, -0.5483, 1.4336, -0.5483, -0.5537, 1.498, -0.4546, -0.5537, 1.498, -0.4546, -0.5483, 1.4336, -0.5483, -0.5063, 1.498, -0.5063, -0.5537, 1.498, -0.4546, -0.5063, 1.498, -0.5063, -0.501, 1.5557, -0.4111, -0.501, 1.5557, -0.4111, -0.5063, 1.498, -0.5063, -0.4583, 1.5557, -0.4583, -0.501, 1.5557, -0.4111, -0.4583, 1.5557, -0.4583, -0.4417, 1.6084, -0.3625, -0.4417, 1.6084, -0.3625, -0.4583, 1.5557, -0.4583, -0.4041, 1.6084, -0.4041, -0.4417, 1.6084, -0.3625, -0.4041, 1.6084, -0.4041, -0.377, 1.6533, -0.3093, -0.377, 1.6533, -0.3093, -0.4041, 1.6084, -0.4041, -0.3447, 1.6533, -0.3447, -0.377, 1.6533, -0.3093, -0.3447, 1.6533, -0.3447, -0.3074, 1.6914, -0.2522, -0.3074, 1.6914, -0.2522, -0.3447, 1.6533, -0.3447, -0.281, 1.6914, -0.281, -0.3074, 1.6914, -0.2522, -0.281, 1.6914, -0.281, -0.234, 1.7207, -0.192, -0.234, 1.7207, -0.192, -0.281, 1.6914, -0.281, -0.214, 1.7207, -0.214, -0.234, 1.7207, -0.192, -0.214, 1.7207, -0.214, -0.1576, 1.7422, -0.1294, -0.1576, 1.7422, -0.1294, -0.214, 1.7207, -0.214, -0.1442, 1.7422, -0.1442, -0.1576, 1.7422, -0.1294, -0.1442, 1.7422, -0.1442, -0.0793, 1.7559, -0.0651, -0.0793, 1.7559, -0.0651, -0.1442, 1.7422, -0.1442, -0.0726, 1.7559, -0.0726, -0.0726, 1.7559, -0.0726, -0.0651, 1.7559, -0.0793, -0.0726, 1.7559, 0.0726, -0.0726, 1.7559, 0.0726, -0.0651, 1.7559, -0.0793, -0.0651, 1.7559, 0.0793, -0.7617, 0.6279, -0.5088, -0.7085, 0.6279, -0.5811, -0.7617, 0.7153, -0.5088, -0.7617, 0.7153, -0.5088, -0.7085, 0.6279, -0.5811, -0.7085, 0.7153, -0.5811, -0.7617, 0.7153, -0.5088, -0.7085, 0.7153, -0.5811, -0.7617, 0.8022, -0.5088, -0.7617, 0.8022, -0.5088, -0.7085, 0.7153, -0.5811, -0.7085, 0.8022, -0.5811, -0.7617, 0.8022, -0.5088, -0.7085, 0.8022, -0.5811, -0.7617, 0.8892, -0.5088, -0.7617, 0.8892, -0.5088, -0.7085, 0.8022, -0.5811, -0.7085, 0.8892, -0.5811, -0.7617, 0.8892, -0.5088, -0.7085, 0.8892, -0.5811, -0.7617, 0.9766, -0.5088, -0.7617, 0.9766, -0.5088, -0.7085, 0.8892, -0.5811, -0.7085, 0.9766, -0.5811, -0.7617, 0.9766, -0.5088, -0.7085, 0.9766, -0.5811, -0.7617, 1.0635, -0.5088, -0.7617, 1.0635, -0.5088, -0.7085, 0.9766, -0.5811, -0.7085, 1.0635, -0.5811, -0.7617, 1.0635, -0.5088, -0.7085, 1.0635, -0.5811, -0.7573, 1.1416, -0.5059, -0.7573, 1.1416, -0.5059, -0.7085, 1.0635, -0.5811, -0.7041, 1.1416, -0.5776, -0.7573, 1.1416, -0.5059, -0.7041, 1.1416, -0.5776, -0.7427, 1.2188, -0.4963, -0.7427, 1.2188, -0.4963, -0.7041, 1.1416, -0.5776, -0.6904, 1.2188, -0.5669, -0.7427, 1.2188, -0.4963, -0.6904, 1.2188, -0.5669, -0.7192, 1.293, -0.4805, -0.7192, 1.293, -0.4805, -0.6904, 1.2188, -0.5669, -0.6685, 1.293, -0.5488, -0.7192, 1.293, -0.4805, -0.6685, 1.293, -0.5488, -0.6865, 1.3652, -0.4587, -0.6865, 1.3652, -0.4587, -0.6685, 1.293, -0.5488, -0.6382, 1.3652, -0.5239, -0.6865, 1.3652, -0.4587, -0.6382, 1.3652, -0.5239, -0.645, 1.4336, -0.4312, -0.645, 1.4336, -0.4312, -0.6382, 1.3652, -0.5239, -0.5996, 1.4336, -0.4922, -0.645, 1.4336, -0.4312, -0.5996, 1.4336, -0.4922, -0.5957, 1.498, -0.3979, -0.5957, 1.498, -0.3979, -0.5996, 1.4336, -0.4922, -0.5537, 1.498, -0.4546, -0.5957, 1.498, -0.3979, -0.5537, 1.498, -0.4546, -0.5386, 1.5557, -0.3599, -0.5386, 1.5557, -0.3599, -0.5537, 1.498, -0.4546, -0.501, 1.5557, -0.4111, -0.5386, 1.5557, -0.3599, -0.501, 1.5557, -0.4111, -0.4751, 1.6084, -0.3174, -0.4751, 1.6084, -0.3174, -0.501, 1.5557, -0.4111, -0.4417, 1.6084, -0.3625, -0.4751, 1.6084, -0.3174, -0.4417, 1.6084, -0.3625, -0.4053, 1.6533, -0.2708, -0.4053, 1.6533, -0.2708, -0.4417, 1.6084, -0.3625, -0.377, 1.6533, -0.3093, -0.4053, 1.6533, -0.2708, -0.377, 1.6533, -0.3093, -0.3306, 1.6914, -0.2209, -0.3306, 1.6914, -0.2209, -0.377, 1.6533, -0.3093, -0.3074, 1.6914, -0.2522, -0.3306, 1.6914, -0.2209, -0.3074, 1.6914, -0.2522, -0.2517, 1.7207, -0.1681, -0.2517, 1.7207, -0.1681, -0.3074, 1.6914, -0.2522, -0.234, 1.7207, -0.192, -0.2517, 1.7207, -0.1681, -0.234, 1.7207, -0.192, -0.1696, 1.7422, -0.1133, -0.1696, 1.7422, -0.1133, -0.234, 1.7207, -0.192, -0.1576, 1.7422, -0.1294, -0.1798, 1.7422, -0.0961, -0.1696, 1.7422, -0.1133, -0.0853, 1.7559, -0.0562, -0.0651, 1.7559, -0.0793, -0.057, 1.7559, -0.0853, -0.0651, 1.7559, 0.0793, -0.0651, 1.7559, 0.0793, -0.057, 1.7559, -0.0853, -0.057, 1.7559, 0.0853, -0.8081, 0.6279, -0.4319, -0.7617, 0.6279, -0.5088, -0.8081, 0.7153, -0.4319, -0.8081, 0.7153, -0.4319, -0.7617, 0.6279, -0.5088, -0.7617, 0.7153, -0.5088, -0.8081, 0.7153, -0.4319, -0.7617, 0.7153, -0.5088, -0.8081, 0.8022, -0.4319, -0.8081, 0.8022, -0.4319, -0.7617, 0.7153, -0.5088, -0.7617, 0.8022, -0.5088, -0.8081, 0.8022, -0.4319, -0.7617, 0.8022, -0.5088, -0.8081, 0.8892, -0.4319, -0.8081, 0.8892, -0.4319, -0.7617, 0.8022, -0.5088, -0.7617, 0.8892, -0.5088, -0.8081, 0.8892, -0.4319, -0.7617, 0.8892, -0.5088, -0.8081, 0.9766, -0.4319, -0.8081, 0.9766, -0.4319, -0.7617, 0.8892, -0.5088, -0.7617, 0.9766, -0.5088, -0.8081, 0.9766, -0.4319, -0.7617, 0.9766, -0.5088, -0.8081, 1.0635, -0.4319, -0.8081, 1.0635, -0.4319, -0.7617, 0.9766, -0.5088, -0.7617, 1.0635, -0.5088, -0.8081, 1.0635, -0.4319, -0.7617, 1.0635, -0.5088, -0.8032, 1.1416, -0.4292, -0.8032, 1.1416, -0.4292, -0.7617, 1.0635, -0.5088, -0.7573, 1.1416, -0.5059, -0.8032, 1.1416, -0.4292, -0.7573, 1.1416, -0.5059, -0.7881, 1.2188, -0.4211, -0.7881, 1.2188, -0.4211, -0.7573, 1.1416, -0.5059, -0.7427, 1.2188, -0.4963, -0.7881, 1.2188, -0.4211, -0.7427, 1.2188, -0.4963, -0.7627, 1.293, -0.4077, -0.7627, 1.293, -0.4077, -0.7427, 1.2188, -0.4963, -0.7192, 1.293, -0.4805, -0.7627, 1.293, -0.4077, -0.7192, 1.293, -0.4805, -0.728, 1.3652, -0.3892, -0.728, 1.3652, -0.3892, -0.7192, 1.293, -0.4805, -0.6865, 1.3652, -0.4587, -0.728, 1.3652, -0.3892, -0.6865, 1.3652, -0.4587, -0.6841, 1.4336, -0.3657, -0.6841, 1.4336, -0.3657, -0.6865, 1.3652, -0.4587, -0.645, 1.4336, -0.4312, -0.6841, 1.4336, -0.3657, -0.645, 1.4336, -0.4312, -0.6318, 1.498, -0.3376, -0.6318, 1.498, -0.3376, -0.645, 1.4336, -0.4312, -0.5957, 1.498, -0.3979, -0.6318, 1.498, -0.3376, -0.5957, 1.498, -0.3979, -0.5713, 1.5557, -0.3054, -0.5713, 1.5557, -0.3054, -0.5957, 1.498, -0.3979, -0.5386, 1.5557, -0.3599, -0.5713, 1.5557, -0.3054, -0.5386, 1.5557, -0.3599, -0.5039, 1.6084, -0.2693, -0.5039, 1.6084, -0.2693, -0.5386, 1.5557, -0.3599, -0.4751, 1.6084, -0.3174, -0.5039, 1.6084, -0.2693, -0.4751, 1.6084, -0.3174, -0.4299, 1.6533, -0.2299, -0.4299, 1.6533, -0.2299, -0.4751, 1.6084, -0.3174, -0.4053, 1.6533, -0.2708, -0.4299, 1.6533, -0.2299, -0.4053, 1.6533, -0.2708, -0.3506, 1.6914, -0.1874, -0.3506, 1.6914, -0.1874, -0.4053, 1.6533, -0.2708, -0.3306, 1.6914, -0.2209, -0.3506, 1.6914, -0.1874, -0.3306, 1.6914, -0.2209, -0.2668, 1.7207, -0.1427, -0.2668, 1.7207, -0.1427, -0.3306, 1.6914, -0.2209, -0.2517, 1.7207, -0.1681, -0.2668, 1.7207, -0.1427, -0.2517, 1.7207, -0.1681, -0.1798, 1.7422, -0.0961, -0.1798, 1.7422, -0.0961, -0.2517, 1.7207, -0.1681, -0.1696, 1.7422, -0.1133, -0.1952, 1.7422, -0.0592, -0.1884, 1.7422, -0.078, -0.0853, 1.7559, -0.0562, -0.057, 1.7559, -0.0853, -0.0484, 1.7559, -0.0905, -0.057, 1.7559, 0.0853, -0.057, 1.7559, 0.0853, -0.0484, 1.7559, -0.0905, -0.0484, 1.7559, 0.0905, -0.8467, 0.6279, -0.3506, -0.8081, 0.6279, -0.4319, -0.8467, 0.7153, -0.3506, -0.8467, 0.7153, -0.3506, -0.8081, 0.6279, -0.4319, -0.8081, 0.7153, -0.4319, -0.8467, 0.7153, -0.3506, -0.8081, 0.7153, -0.4319, -0.8467, 0.8022, -0.3506, -0.8467, 0.8022, -0.3506, -0.8081, 0.7153, -0.4319, -0.8081, 0.8022, -0.4319, -0.8467, 0.8022, -0.3506, -0.8081, 0.8022, -0.4319, -0.8467, 0.8892, -0.3506, -0.8467, 0.8892, -0.3506, -0.8081, 0.8022, -0.4319, -0.8081, 0.8892, -0.4319, -0.8467, 0.8892, -0.3506, -0.8081, 0.8892, -0.4319, -0.8467, 0.9766, -0.3506, -0.8467, 0.9766, -0.3506, -0.8081, 0.8892, -0.4319, -0.8081, 0.9766, -0.4319, -0.8467, 0.9766, -0.3506, -0.8081, 0.9766, -0.4319, -0.8467, 1.0635, -0.3506, -0.8467, 1.0635, -0.3506, -0.8081, 0.9766, -0.4319, -0.8081, 1.0635, -0.4319, -0.8467, 1.0635, -0.3506, -0.8081, 1.0635, -0.4319, -0.8413, 1.1416, -0.3484, -0.8413, 1.1416, -0.3484, -0.8081, 1.0635, -0.4319, -0.8032, 1.1416, -0.4292, -0.8413, 1.1416, -0.3484, -0.8032, 1.1416, -0.4292, -0.8252, 1.2188, -0.3418, -0.8252, 1.2188, -0.3418, -0.8032, 1.1416, -0.4292, -0.7881, 1.2188, -0.4211, -0.8252, 1.2188, -0.3418, -0.7881, 1.2188, -0.4211, -0.7993, 1.293, -0.3311, -0.7993, 1.293, -0.3311, -0.7881, 1.2188, -0.4211, -0.7627, 1.293, -0.4077, -0.7993, 1.293, -0.3311, -0.7627, 1.293, -0.4077, -0.7627, 1.3652, -0.3159, -0.7627, 1.3652, -0.3159, -0.7627, 1.293, -0.4077, -0.728, 1.3652, -0.3892, -0.7627, 1.3652, -0.3159, -0.728, 1.3652, -0.3892, -0.7168, 1.4336, -0.2969, -0.7168, 1.4336, -0.2969, -0.728, 1.3652, -0.3892, -0.6841, 1.4336, -0.3657, -0.7168, 1.4336, -0.2969, -0.6841, 1.4336, -0.3657, -0.6621, 1.498, -0.2742, -0.6621, 1.498, -0.2742, -0.6841, 1.4336, -0.3657, -0.6318, 1.498, -0.3376, -0.6621, 1.498, -0.2742, -0.6318, 1.498, -0.3376, -0.5986, 1.5557, -0.2479, -0.5986, 1.5557, -0.2479, -0.6318, 1.498, -0.3376, -0.5713, 1.5557, -0.3054, -0.5986, 1.5557, -0.2479, -0.5713, 1.5557, -0.3054, -0.5278, 1.6084, -0.2186, -0.5278, 1.6084, -0.2186, -0.5713, 1.5557, -0.3054, -0.5039, 1.6084, -0.2693, -0.5278, 1.6084, -0.2186, -0.5039, 1.6084, -0.2693, -0.4504, 1.6533, -0.1865, -0.4504, 1.6533, -0.1865, -0.5039, 1.6084, -0.2693, -0.4299, 1.6533, -0.2299, -0.4504, 1.6533, -0.1865, -0.4299, 1.6533, -0.2299, -0.3674, 1.6914, -0.1521, -0.3674, 1.6914, -0.1521, -0.4299, 1.6533, -0.2299, -0.3506, 1.6914, -0.1874, -0.3674, 1.6914, -0.1521, -0.3506, 1.6914, -0.1874, -0.2795, 1.7207, -0.1158, -0.2795, 1.7207, -0.1158, -0.3506, 1.6914, -0.1874, -0.2668, 1.7207, -0.1427, -0.2795, 1.7207, -0.1158, -0.2668, 1.7207, -0.1427, -0.1884, 1.7422, -0.078, -0.1884, 1.7422, -0.078, -0.2668, 1.7207, -0.1427, -0.1798, 1.7422, -0.0961, -0.2006, 1.749, -0.0479, -0.1016, 1.7607, -0.0481, -0.2258, 1.8096, -0.0439, -0.2258, 1.8096, -0.0439, -0.1016, 1.7607, -0.0481, -0.1367, 1.8203, -0.045, -0.0392, 1.7559, 0.0948, -0.0484, 1.7559, 0.0905, -0.0392, 1.7559, -0.0948, -0.0392, 1.7559, -0.0948, -0.0484, 1.7559, 0.0905, -0.0484, 1.7559, -0.0905, -0.877, 0.6279, -0.2659, -0.8467, 0.6279, -0.3506, -0.877, 0.7153, -0.2659, -0.877, 0.7153, -0.2659, -0.8467, 0.6279, -0.3506, -0.8467, 0.7153, -0.3506, -0.877, 0.7153, -0.2659, -0.8467, 0.7153, -0.3506, -0.877, 0.8022, -0.2659, -0.877, 0.8022, -0.2659, -0.8467, 0.7153, -0.3506, -0.8467, 0.8022, -0.3506, -0.877, 0.8022, -0.2659, -0.8467, 0.8022, -0.3506, -0.877, 0.8892, -0.2659, -0.877, 0.8892, -0.2659, -0.8467, 0.8022, -0.3506, -0.8467, 0.8892, -0.3506, -0.877, 0.8892, -0.2659, -0.8467, 0.8892, -0.3506, -0.877, 0.9766, -0.2659, -0.877, 0.9766, -0.2659, -0.8467, 0.8892, -0.3506, -0.8467, 0.9766, -0.3506, -0.877, 0.9766, -0.2659, -0.8467, 0.9766, -0.3506, -0.877, 1.0635, -0.2659, -0.877, 1.0635, -0.2659, -0.8467, 0.9766, -0.3506, -0.8467, 1.0635, -0.3506, -0.877, 1.0635, -0.2659, -0.8467, 1.0635, -0.3506, -0.8716, 1.1416, -0.2644, -0.8716, 1.1416, -0.2644, -0.8467, 1.0635, -0.3506, -0.8413, 1.1416, -0.3484, -0.8716, 1.1416, -0.2644, -0.8413, 1.1416, -0.3484, -0.855, 1.2188, -0.2593, -0.855, 1.2188, -0.2593, -0.8413, 1.1416, -0.3484, -0.8252, 1.2188, -0.3418, -0.855, 1.2188, -0.2593, -0.8252, 1.2188, -0.3418, -0.8276, 1.293, -0.251, -0.8276, 1.293, -0.251, -0.8252, 1.2188, -0.3418, -0.7993, 1.293, -0.3311, -0.8276, 1.293, -0.251, -0.7993, 1.293, -0.3311, -0.79, 1.3652, -0.2396, -0.79, 1.3652, -0.2396, -0.7993, 1.293, -0.3311, -0.7627, 1.3652, -0.3159, -0.79, 1.3652, -0.2396, -0.7627, 1.3652, -0.3159, -0.7427, 1.4336, -0.2252, -0.7427, 1.4336, -0.2252, -0.7627, 1.3652, -0.3159, -0.7168, 1.4336, -0.2969, -0.7427, 1.4336, -0.2252, -0.7168, 1.4336, -0.2969, -0.6855, 1.498, -0.208, -0.6855, 1.498, -0.208, -0.7168, 1.4336, -0.2969, -0.6621, 1.498, -0.2742, -0.6855, 1.498, -0.208, -0.6621, 1.498, -0.2742, -0.6201, 1.5557, -0.1881, -0.6201, 1.5557, -0.1881, -0.6621, 1.498, -0.2742, -0.5986, 1.5557, -0.2479, -0.6201, 1.5557, -0.1881, -0.5986, 1.5557, -0.2479, -0.5469, 1.6084, -0.1659, -0.5469, 1.6084, -0.1659, -0.5986, 1.5557, -0.2479, -0.5278, 1.6084, -0.2186, -0.5469, 1.6084, -0.1659, -0.5278, 1.6084, -0.2186, -0.4666, 1.6533, -0.1415, -0.4666, 1.6533, -0.1415, -0.5278, 1.6084, -0.2186, -0.4504, 1.6533, -0.1865, -0.4666, 1.6533, -0.1415, -0.4504, 1.6533, -0.1865, -0.3804, 1.6914, -0.1154, -0.3804, 1.6914, -0.1154, -0.4504, 1.6533, -0.1865, -0.3674, 1.6914, -0.1521, -0.3804, 1.6914, -0.1154, -0.3674, 1.6914, -0.1521, -0.2896, 1.7207, -0.0878, -0.2896, 1.7207, -0.0878, -0.3674, 1.6914, -0.1521, -0.2795, 1.7207, -0.1158, -0.2896, 1.7207, -0.0878, -0.2795, 1.7207, -0.1158, -0.1952, 1.7422, -0.0592, -0.1952, 1.7422, -0.0592, -0.2795, 1.7207, -0.1158, -0.1884, 1.7422, -0.078, -0.1974, 1.7422, -0.0551, -0.1952, 1.7422, -0.0592, -0.0853, 1.7559, -0.0562, -0.0392, 1.7559, -0.0948, -0.0298, 1.7559, -0.0982, -0.0392, 1.7559, 0.0948, -0.0392, 1.7559, 0.0948, -0.0298, 1.7559, -0.0982, -0.0298, 1.7559, 0.0982, -0.8989, 0.6279, -0.1787, -0.877, 0.6279, -0.2659, -0.8989, 0.7153, -0.1787, -0.8989, 0.7153, -0.1787, -0.877, 0.6279, -0.2659, -0.877, 0.7153, -0.2659, -0.8989, 0.7153, -0.1787, -0.877, 0.7153, -0.2659, -0.8989, 0.8022, -0.1787, -0.8989, 0.8022, -0.1787, -0.877, 0.7153, -0.2659, -0.877, 0.8022, -0.2659, -0.8989, 0.8022, -0.1787, -0.877, 0.8022, -0.2659, -0.8989, 0.8892, -0.1787, -0.8989, 0.8892, -0.1787, -0.877, 0.8022, -0.2659, -0.877, 0.8892, -0.2659, -0.8989, 0.8892, -0.1787, -0.877, 0.8892, -0.2659, -0.8989, 0.9766, -0.1787, -0.8989, 0.9766, -0.1787, -0.877, 0.8892, -0.2659, -0.877, 0.9766, -0.2659, -0.8989, 0.9766, -0.1787, -0.877, 0.9766, -0.2659, -0.8989, 1.0635, -0.1787, -0.8989, 1.0635, -0.1787, -0.877, 0.9766, -0.2659, -0.877, 1.0635, -0.2659, -0.8989, 1.0635, -0.1787, -0.877, 1.0635, -0.2659, -0.8931, 1.1416, -0.1776, -0.8931, 1.1416, -0.1776, -0.877, 1.0635, -0.2659, -0.8716, 1.1416, -0.2644, -0.8931, 1.1416, -0.1776, -0.8716, 1.1416, -0.2644, -0.8765, 1.2188, -0.1743, -0.8765, 1.2188, -0.1743, -0.8716, 1.1416, -0.2644, -0.855, 1.2188, -0.2593, -0.8765, 1.2188, -0.1743, -0.855, 1.2188, -0.2593, -0.8481, 1.293, -0.1687, -0.8481, 1.293, -0.1687, -0.855, 1.2188, -0.2593, -0.8276, 1.293, -0.251, -0.8481, 1.293, -0.1687, -0.8276, 1.293, -0.251, -0.8096, 1.3652, -0.161, -0.8096, 1.3652, -0.161, -0.8276, 1.293, -0.251, -0.79, 1.3652, -0.2396, -0.8096, 1.3652, -0.161, -0.79, 1.3652, -0.2396, -0.7612, 1.4336, -0.1514, -0.7612, 1.4336, -0.1514, -0.79, 1.3652, -0.2396, -0.7427, 1.4336, -0.2252, -0.7612, 1.4336, -0.1514, -0.7427, 1.4336, -0.2252, -0.7026, 1.498, -0.1398, -0.7026, 1.498, -0.1398, -0.7427, 1.4336, -0.2252, -0.6855, 1.498, -0.208, -0.7026, 1.498, -0.1398, -0.6855, 1.498, -0.208, -0.6353, 1.5557, -0.1263, -0.6353, 1.5557, -0.1263, -0.6855, 1.498, -0.208, -0.6201, 1.5557, -0.1881, -0.6353, 1.5557, -0.1263, -0.6201, 1.5557, -0.1881, -0.5601, 1.6084, -0.1115, -0.5601, 1.6084, -0.1115, -0.6201, 1.5557, -0.1881, -0.5469, 1.6084, -0.1659, -0.5601, 1.6084, -0.1115, -0.5469, 1.6084, -0.1659, -0.4783, 1.6533, -0.0951, -0.4783, 1.6533, -0.0951, -0.5469, 1.6084, -0.1659, -0.4666, 1.6533, -0.1415, -0.4783, 1.6533, -0.0951, -0.4666, 1.6533, -0.1415, -0.3899, 1.6914, -0.0776, -0.3899, 1.6914, -0.0776, -0.4666, 1.6533, -0.1415, -0.3804, 1.6914, -0.1154, -0.3899, 1.6914, -0.0776, -0.3804, 1.6914, -0.1154, -0.2969, 1.7207, -0.0591, -0.2969, 1.7207, -0.0591, -0.3804, 1.6914, -0.1154, -0.2896, 1.7207, -0.0878, -0.2983, 1.7207, -0.0493, -0.2969, 1.7207, -0.0591, -0.1974, 1.7422, -0.0551, -0.1884, 1.7422, -0.078, -0.1798, 1.7422, -0.0961, -0.0853, 1.7559, -0.0562, -0.0298, 1.7559, -0.0982, -0.02, 1.7559, -0.1006, -0.0298, 1.7559, 0.0982, -0.0298, 1.7559, 0.0982, -0.02, 1.7559, -0.1006, -0.02, 1.7559, 0.1006, -0.9121, 0.6279, -0.0898, -0.8989, 0.6279, -0.1787, -0.9121, 0.7153, -0.0898, -0.9121, 0.7153, -0.0898, -0.8989, 0.6279, -0.1787, -0.8989, 0.7153, -0.1787, -0.9121, 0.7153, -0.0898, -0.8989, 0.7153, -0.1787, -0.9121, 0.8022, -0.0898, -0.9121, 0.8022, -0.0898, -0.8989, 0.7153, -0.1787, -0.8989, 0.8022, -0.1787, -0.9121, 0.8022, -0.0898, -0.8989, 0.8022, -0.1787, -0.9121, 0.8892, -0.0898, -0.9121, 0.8892, -0.0898, -0.8989, 0.8022, -0.1787, -0.8989, 0.8892, -0.1787, -0.9121, 0.8892, -0.0898, -0.8989, 0.8892, -0.1787, -0.9121, 0.9766, -0.0898, -0.9121, 0.9766, -0.0898, -0.8989, 0.8892, -0.1787, -0.8989, 0.9766, -0.1787, -0.9121, 0.9766, -0.0898, -0.8989, 0.9766, -0.1787, -0.9121, 1.0635, -0.0898, -0.9121, 1.0635, -0.0898, -0.8989, 0.9766, -0.1787, -0.8989, 1.0635, -0.1787, -0.9121, 1.0635, -0.0898, -0.8989, 1.0635, -0.1787, -0.9063, 1.1416, -0.0892, -0.9063, 1.1416, -0.0892, -0.8989, 1.0635, -0.1787, -0.8931, 1.1416, -0.1776, -0.4907, 1.6494, -0.0549, -0.4783, 1.6533, -0.0951, -0.3943, 1.6914, -0.0491, -0.3943, 1.6914, -0.0491, -0.4783, 1.6533, -0.0951, -0.3899, 1.6914, -0.0776, -0.645, 1.5557, -0.0635, -0.6353, 1.5557, -0.1263, -0.5684, 1.6084, -0.056, -0.5684, 1.6084, -0.056, -0.6353, 1.5557, -0.1263, -0.5601, 1.6084, -0.1115, -0.4048, 1.7617, -0.0397, -0.396, 1.6982, -0.0421, -0.3176, 1.7891, -0.0398, -0.3176, 1.7891, -0.0398, -0.396, 1.6982, -0.0421, -0.301, 1.7275, -0.0423, -0.4788, 1.6631, -0.047, -0.396, 1.6982, -0.0421, -0.48, 1.7295, -0.0433, -0.48, 1.7295, -0.0433, -0.396, 1.6982, -0.0421, -0.4048, 1.7617, -0.0397, -0.301, 1.7275, -0.0423, -0.2006, 1.749, -0.0479, -0.3176, 1.7891, -0.0398, -0.3176, 1.7891, -0.0398, -0.2006, 1.749, -0.0479, -0.2258, 1.8096, -0.0439, -0.02, 1.7559, -0.1006, -0.0101, 1.7559, -0.1021, -0.02, 1.7559, 0.1006, -0.02, 1.7559, 0.1006, -0.0101, 1.7559, -0.1021, -0.0101, 1.7559, 0.1021, -0.9165, 0.6279, 0, -0.9121, 0.6279, -0.0898, -0.9165, 0.7153, 0, -0.9165, 0.7153, 0, -0.9121, 0.6279, -0.0898, -0.9121, 0.7153, -0.0898, -0.9165, 0.7153, 0, -0.9121, 0.7153, -0.0898, -0.9165, 0.8022, 0, -0.9165, 0.8022, 0, -0.9121, 0.7153, -0.0898, -0.9121, 0.8022, -0.0898, -0.9165, 0.8022, 0, -0.9121, 0.8022, -0.0898, -0.9165, 0.8892, 0, -0.9165, 0.8892, 0, -0.9121, 0.8022, -0.0898, -0.9121, 0.8892, -0.0898, -0.9165, 0.8892, 0, -0.9121, 0.8892, -0.0898, -0.9165, 0.9766, 0, -0.9165, 0.9766, 0, -0.9121, 0.8892, -0.0898, -0.9121, 0.9766, -0.0898, -0.9165, 0.9766, 0, -0.9121, 0.9766, -0.0898, -0.9165, 1.0635, 0, -0.9165, 1.0635, 0, -0.9121, 0.9766, -0.0898, -0.9121, 1.0635, -0.0898, -0.9165, 1.0635, 0, -0.9121, 1.0635, -0.0898, -0.9106, 1.1416, 0, -0.9106, 1.1416, 0, -0.9121, 1.0635, -0.0898, -0.9063, 1.1416, -0.0892, -0.6479, 1.5557, 0, -0.645, 1.5557, -0.0635, -0.5713, 1.6084, 0, -0.5713, 1.6084, 0, -0.645, 1.5557, -0.0635, -0.5684, 1.6084, -0.056, -0.5684, 1.6084, 0.056, -0.5713, 1.6084, 0, -0.4907, 1.6494, 0.0544, -0.4907, 1.6494, 0.0544, -0.5713, 1.6084, 0, -0.4934, 1.6504, 0, -0.0101, 1.7559, -0.1021, 0, 1.7559, -0.1026, -0.0101, 1.7559, 0.1021, -0.0101, 1.7559, 0.1021, 0, 1.7559, -0.1026, 0, 1.7559, 0.1026, -0.2866, 1.0576, 0.5659, -0.3638, 1.0576, 0.5195, -0.2988, 1.126, 0.5488, -0.2988, 1.126, 0.5488, -0.3638, 1.0576, 0.5195, -0.3591, 1.1221, 0.5127, -0.436, 1.0576, 0.4661, -0.4646, 1.0273, 0.4404, -0.4182, 1.0957, 0.4761, -0.4182, 1.0957, 0.4761, -0.4646, 1.0273, 0.4404, -0.4441, 1.0674, 0.4553, -0.2007, 1.082, 0.6123, -0.3276, 1.0869, 0.8242, -0.1635, 1.0303, 0.6289, -0.1635, 1.0303, 0.6289, -0.3276, 1.0869, 0.8242, -0.2903, 1.0352, 0.8408, -0.1523, 0.9692, 0.6221, -0.2053, 0.9712, 0.604, -0.1769, 1.041, 0.6147, -0.1769, 1.041, 0.6147, -0.2053, 0.9712, 0.604, -0.2053, 1.0576, 0.604, -0.3052, 1.1367, 0.5532, -0.4321, 1.1416, 0.7651, -0.2496, 1.1191, 0.5864, -0.2496, 1.1191, 0.5864, -0.4321, 1.1416, 0.7651, -0.3765, 1.124, 0.7979, -0.2866, 0.7324, 0.5659, -0.3484, 0.729, 0.5293, -0.2866, 0.7969, 0.5659, -0.2866, 0.7969, 0.5659, -0.3484, 0.729, 0.5293, -0.3638, 0.7969, 0.5195, -0.4836, 1.0117, 0.4346, -0.6104, 1.0166, 0.646, -0.4573, 1.0674, 0.457, -0.4573, 1.0674, 0.457, -0.6104, 1.0166, 0.646, -0.584, 1.0723, 0.6685, -0.4465, 0.7676, 0.4675, -0.5732, 0.7725, 0.6792, -0.4766, 0.8188, 0.4404, -0.4766, 0.8188, 0.4404, -0.5732, 0.7725, 0.6792, -0.6035, 0.8237, 0.6519, -0.1892, 0.7886, 0.6094, -0.2229, 0.7593, 0.5967, -0.1677, 0.8252, 0.6177, -0.1677, 0.8252, 0.6177, -0.2229, 0.7593, 0.5967, -0.2053, 0.7969, 0.604, -0.1882, 0.7827, 0.6191, -0.3152, 0.7871, 0.8311, -0.2358, 0.7412, 0.6006, -0.2358, 0.7412, 0.6006, -0.3152, 0.7871, 0.8311, -0.3628, 0.7461, 0.812, -0.1493, 0.8984, 0.6226, -0.2053, 0.8838, 0.604, -0.1523, 0.9692, 0.6221, -0.1523, 0.9692, 0.6221, -0.2053, 0.8838, 0.604, -0.2053, 0.9712, 0.604, -0.436, 0.8838, 0.4661, -0.4749, 0.8813, 0.4292, -0.436, 0.9712, 0.4661, -0.436, 0.9712, 0.4661, -0.4749, 0.8813, 0.4292, -0.4775, 0.9531, 0.4265, -0.644, 0.8047, 0.6514, -0.6353, 0.811, 0.6592, -0.6079, 0.7432, 0.6841, -0.6079, 0.7432, 0.6841, -0.6353, 0.811, 0.6592, -0.6011, 0.7529, 0.6904, -0.4397, 1.1826, 0.7861, -0.4419, 1.1699, 0.7866, -0.5078, 1.1787, 0.7451, -0.5078, 1.1787, 0.7451, -0.4419, 1.1699, 0.7866, -0.5063, 1.166, 0.748, -0.436, 0.7969, 0.4661, -0.4565, 0.8091, 0.4473, -0.436, 0.8838, 0.4661, -0.436, 0.8838, 0.4661, -0.4565, 0.8091, 0.4473, -0.4749, 0.8813, 0.4292, -0.2229, 0.7593, 0.5967, -0.2866, 0.7324, 0.5659, -0.2053, 0.7969, 0.604, -0.2053, 0.7969, 0.604, -0.2866, 0.7324, 0.5659, -0.2866, 0.7969, 0.5659, -0.1392, 0.9023, 0.6348, -0.2661, 0.9067, 0.8462, -0.1555, 0.8379, 0.6304, -0.1555, 0.8379, 0.6304, -0.2661, 0.9067, 0.8462, -0.2825, 0.8428, 0.8423, -0.3638, 1.0576, 0.5195, -0.436, 1.0576, 0.4661, -0.3591, 1.1221, 0.5127, -0.3591, 1.1221, 0.5127, -0.436, 1.0576, 0.4661, -0.4182, 1.0957, 0.4761, -0.4033, 0.7319, 0.502, -0.5303, 0.7363, 0.7139, -0.4465, 0.7676, 0.4675, -0.4465, 0.7676, 0.4675, -0.5303, 0.7363, 0.7139, -0.5732, 0.7725, 0.6792, -0.4766, 0.8188, 0.4404, -0.6035, 0.8237, 0.6519, -0.4919, 0.8809, 0.4246, -0.4919, 0.8809, 0.4246, -0.6035, 0.8237, 0.6519, -0.6187, 0.8857, 0.6362, -0.4919, 0.8809, 0.4246, -0.6187, 0.8857, 0.6362, -0.4944, 0.9478, 0.4219, -0.4944, 0.9478, 0.4219, -0.6187, 0.8857, 0.6362, -0.6211, 0.9526, 0.6333, -0.4944, 0.9478, 0.4219, -0.6211, 0.9526, 0.6333, -0.4836, 1.0117, 0.4346, -0.4836, 1.0117, 0.4346, -0.6211, 0.9526, 0.6333, -0.6104, 1.0166, 0.646, -0.4573, 1.0674, 0.457, -0.584, 1.0723, 0.6685, -0.4158, 1.1104, 0.4873, -0.4158, 1.1104, 0.4873, -0.584, 1.0723, 0.6685, -0.5425, 1.1152, 0.6987, -0.3494, 0.7144, 0.5386, -0.4763, 0.7192, 0.7505, -0.4033, 0.7319, 0.502, -0.4033, 0.7319, 0.502, -0.4763, 0.7192, 0.7505, -0.5303, 0.7363, 0.7139, -0.3638, 0.7969, 0.5195, -0.436, 0.7969, 0.4661, -0.3638, 0.8838, 0.5195, -0.3638, 0.8838, 0.5195, -0.436, 0.7969, 0.4661, -0.436, 0.8838, 0.4661, -0.3638, 0.8838, 0.5195, -0.436, 0.8838, 0.4661, -0.3638, 0.9712, 0.5195, -0.3638, 0.9712, 0.5195, -0.436, 0.8838, 0.4661, -0.436, 0.9712, 0.4661, -0.3638, 0.9712, 0.5195, -0.436, 0.9712, 0.4661, -0.3638, 1.0576, 0.5195, -0.3638, 1.0576, 0.5195, -0.436, 0.9712, 0.4661, -0.436, 1.0576, 0.4661, -0.4158, 1.1104, 0.4873, -0.5425, 1.1152, 0.6987, -0.3625, 1.1338, 0.519, -0.3625, 1.1338, 0.519, -0.5425, 1.1152, 0.6987, -0.4895, 1.1387, 0.7305, -0.2908, 0.7178, 0.5728, -0.4177, 0.7227, 0.7847, -0.3494, 0.7144, 0.5386, -0.3494, 0.7144, 0.5386, -0.4177, 0.7227, 0.7847, -0.4763, 0.7192, 0.7505, -0.2866, 0.7969, 0.5659, -0.3638, 0.7969, 0.5195, -0.2866, 0.8838, 0.5659, -0.2866, 0.8838, 0.5659, -0.3638, 0.7969, 0.5195, -0.3638, 0.8838, 0.5195, -0.2866, 0.8838, 0.5659, -0.3638, 0.8838, 0.5195, -0.2866, 0.9712, 0.5659, -0.2866, 0.9712, 0.5659, -0.3638, 0.8838, 0.5195, -0.3638, 0.9712, 0.5195, -0.2866, 0.9712, 0.5659, -0.3638, 0.9712, 0.5195, -0.2866, 1.0576, 0.5659, -0.2866, 1.0576, 0.5659, -0.3638, 0.9712, 0.5195, -0.3638, 1.0576, 0.5195, -0.3625, 1.1338, 0.519, -0.4895, 1.1387, 0.7305, -0.3052, 1.1367, 0.5532, -0.3052, 1.1367, 0.5532, -0.4895, 1.1387, 0.7305, -0.4321, 1.1416, 0.7651, -0.2358, 0.7412, 0.6006, -0.3628, 0.7461, 0.812, -0.2908, 0.7178, 0.5728, -0.2908, 0.7178, 0.5728, -0.3628, 0.7461, 0.812, -0.4177, 0.7227, 0.7847, -0.2053, 0.7969, 0.604, -0.2866, 0.7969, 0.5659, -0.2053, 0.8838, 0.604, -0.2053, 0.8838, 0.604, -0.2866, 0.7969, 0.5659, -0.2866, 0.8838, 0.5659, -0.2053, 0.8838, 0.604, -0.2866, 0.8838, 0.5659, -0.2053, 0.9712, 0.604, -0.2053, 0.9712, 0.604, -0.2866, 0.8838, 0.5659, -0.2866, 0.9712, 0.5659, -0.2053, 0.9712, 0.604, -0.2866, 0.9712, 0.5659, -0.2053, 1.0576, 0.604, -0.2053, 1.0576, 0.604, -0.2866, 0.9712, 0.5659, -0.2866, 1.0576, 0.5659, -0.2496, 1.1191, 0.5864, -0.3765, 1.124, 0.7979, -0.2007, 1.082, 0.6123, -0.2007, 1.082, 0.6123, -0.3765, 1.124, 0.7979, -0.3276, 1.0869, 0.8242, -0.1677, 0.8252, 0.6177, -0.2053, 0.7969, 0.604, -0.1493, 0.8984, 0.6226, -0.1493, 0.8984, 0.6226, -0.2053, 0.7969, 0.604, -0.2053, 0.8838, 0.604, -0.1555, 0.8379, 0.6304, -0.2825, 0.8428, 0.8423, -0.1882, 0.7827, 0.6191, -0.1882, 0.7827, 0.6191, -0.2825, 0.8428, 0.8423, -0.3152, 0.7871, 0.8311, -0.142, 0.9688, 0.6338, -0.2688, 0.9736, 0.8457, -0.1392, 0.9023, 0.6348, -0.1392, 0.9023, 0.6348, -0.2688, 0.9736, 0.8457, -0.2661, 0.9067, 0.8462, -0.1635, 1.0303, 0.6289, -0.2903, 1.0352, 0.8408, -0.142, 0.9688, 0.6338, -0.142, 0.9688, 0.6338, -0.2903, 1.0352, 0.8408, -0.2688, 0.9736, 0.8457, -0.2053, 1.0576, 0.604, -0.2866, 1.0576, 0.5659, -0.2368, 1.1064, 0.5845, -0.2368, 1.1064, 0.5845, -0.2866, 1.0576, 0.5659, -0.2988, 1.126, 0.5488, -0.5029, 1.1523, 0.748, -0.5063, 1.166, 0.748, -0.4421, 1.1563, 0.7847, -0.4421, 1.1563, 0.7847, -0.5063, 1.166, 0.748, -0.4419, 1.1699, 0.7866, -0.4968, 1.1426, 0.7412, -0.5029, 1.1523, 0.748, -0.4385, 1.1455, 0.7764, -0.4385, 1.1455, 0.7764, -0.5029, 1.1523, 0.748, -0.4421, 1.1563, 0.7847, -0.4895, 1.1387, 0.7305, -0.4968, 1.1426, 0.7412, -0.4321, 1.1416, 0.7651, -0.4321, 1.1416, 0.7651, -0.4968, 1.1426, 0.7412, -0.4385, 1.1455, 0.7764, -0.4836, 0.7158, 0.7617, -0.4763, 0.7192, 0.7505, -0.4241, 0.7192, 0.7969, -0.4241, 0.7192, 0.7969, -0.4763, 0.7192, 0.7505, -0.4177, 0.7227, 0.7847, -0.4897, 0.7061, 0.77, -0.4836, 0.7158, 0.7617, -0.4275, 0.7095, 0.8062, -0.4275, 0.7095, 0.8062, -0.4836, 0.7158, 0.7617, -0.4241, 0.7192, 0.7969, -0.4927, 0.6924, 0.772, -0.4897, 0.7061, 0.77, -0.4268, 0.6958, 0.8105, -0.4268, 0.6958, 0.8105, -0.4897, 0.7061, 0.77, -0.4275, 0.7095, 0.8062, -0.2695, 0.9067, 0.8594, -0.2661, 0.9067, 0.8462, -0.2725, 0.9746, 0.8584, -0.2725, 0.9746, 0.8584, -0.2661, 0.9067, 0.8462, -0.2688, 0.9736, 0.8457, -0.2651, 0.9058, 0.8711, -0.2695, 0.9067, 0.8594, -0.2683, 0.9771, 0.8706, -0.2683, 0.9771, 0.8706, -0.2695, 0.9067, 0.8594, -0.2725, 0.9746, 0.8584, -0.2542, 0.9048, 0.8789, -0.2651, 0.9058, 0.8711, -0.2573, 0.9795, 0.8779, -0.2573, 0.9795, 0.8779, -0.2651, 0.9058, 0.8711, -0.2683, 0.9771, 0.8706, -0.2861, 0.8413, 0.855, -0.2825, 0.8428, 0.8423, -0.2695, 0.9067, 0.8594, -0.2695, 0.9067, 0.8594, -0.2825, 0.8428, 0.8423, -0.2661, 0.9067, 0.8462, -0.2827, 0.8374, 0.8667, -0.2861, 0.8413, 0.855, -0.2651, 0.9058, 0.8711, -0.2651, 0.9058, 0.8711, -0.2861, 0.8413, 0.855, -0.2695, 0.9067, 0.8594, -0.2727, 0.832, 0.874, -0.2827, 0.8374, 0.8667, -0.2542, 0.9048, 0.8789, -0.2542, 0.9048, 0.8789, -0.2827, 0.8374, 0.8667, -0.2651, 0.9058, 0.8711, -0.2942, 1.0371, 0.8535, -0.2903, 1.0352, 0.8408, -0.3323, 1.0898, 0.8364, -0.3323, 1.0898, 0.8364, -0.2903, 1.0352, 0.8408, -0.3276, 1.0869, 0.8242, -0.291, 1.043, 0.8647, -0.2942, 1.0371, 0.8535, -0.3306, 1.0977, 0.8472, -0.3306, 1.0977, 0.8472, -0.2942, 1.0371, 0.8535, -0.3323, 1.0898, 0.8364, -0.2815, 1.0488, 0.8716, -0.291, 1.043, 0.8647, -0.3235, 1.1074, 0.853, -0.3235, 1.1074, 0.853, -0.291, 1.043, 0.8647, -0.3306, 1.0977, 0.8472, -0.4421, 1.1563, 0.7847, -0.4419, 1.1699, 0.7866, -0.3828, 1.1377, 0.8193, -0.3828, 1.1377, 0.8193, -0.4419, 1.1699, 0.7866, -0.3789, 1.1494, 0.8237, -0.4385, 1.1455, 0.7764, -0.4421, 1.1563, 0.7847, -0.3821, 1.1279, 0.8101, -0.3821, 1.1279, 0.8101, -0.4421, 1.1563, 0.7847, -0.3828, 1.1377, 0.8193, -0.4321, 1.1416, 0.7651, -0.4385, 1.1455, 0.7764, -0.3765, 1.124, 0.7979, -0.3765, 1.124, 0.7979, -0.4385, 1.1455, 0.7764, -0.3821, 1.1279, 0.8101, -0.6318, 1.0225, 0.6577, -0.6431, 1.0283, 0.6523, -0.6035, 1.082, 0.6816, -0.6035, 1.082, 0.6816, -0.6431, 1.0283, 0.6523, -0.6128, 1.0908, 0.6772, -0.6201, 1.0186, 0.6558, -0.6318, 1.0225, 0.6577, -0.5933, 1.0752, 0.6782, -0.5933, 1.0752, 0.6782, -0.6318, 1.0225, 0.6577, -0.6035, 1.082, 0.6816, -0.6104, 1.0166, 0.646, -0.6201, 1.0186, 0.6558, -0.584, 1.0723, 0.6685, -0.584, 1.0723, 0.6685, -0.6201, 1.0186, 0.6558, -0.5933, 1.0752, 0.6782, -0.2725, 0.9746, 0.8584, -0.2688, 0.9736, 0.8457, -0.2942, 1.0371, 0.8535, -0.2942, 1.0371, 0.8535, -0.2688, 0.9736, 0.8457, -0.2903, 1.0352, 0.8408, -0.2683, 0.9771, 0.8706, -0.2725, 0.9746, 0.8584, -0.291, 1.043, 0.8647, -0.291, 1.043, 0.8647, -0.2725, 0.9746, 0.8584, -0.2942, 1.0371, 0.8535, -0.2573, 0.9795, 0.8779, -0.2683, 0.9771, 0.8706, -0.2815, 1.0488, 0.8716, -0.2815, 1.0488, 0.8716, -0.2683, 0.9771, 0.8706, -0.291, 1.043, 0.8647, -0.5923, 0.7627, 0.6934, -0.6011, 0.7529, 0.6904, -0.6245, 0.8174, 0.6641, -0.6245, 0.8174, 0.6641, -0.6011, 0.7529, 0.6904, -0.6353, 0.811, 0.6592, -0.582, 0.77, 0.6895, -0.5923, 0.7627, 0.6934, -0.6128, 0.8223, 0.6616, -0.6128, 0.8223, 0.6616, -0.5923, 0.7627, 0.6934, -0.6245, 0.8174, 0.6641, -0.5732, 0.7725, 0.6792, -0.582, 0.77, 0.6895, -0.6035, 0.8237, 0.6519, -0.6035, 0.8237, 0.6519, -0.582, 0.77, 0.6895, -0.6128, 0.8223, 0.6616, -0.6245, 0.8174, 0.6641, -0.6353, 0.811, 0.6592, -0.6411, 0.8833, 0.647, -0.6411, 0.8833, 0.647, -0.6353, 0.811, 0.6592, -0.6528, 0.8809, 0.6411, -0.6128, 0.8223, 0.6616, -0.6245, 0.8174, 0.6641, -0.6284, 0.8853, 0.6455, -0.6284, 0.8853, 0.6455, -0.6245, 0.8174, 0.6641, -0.6411, 0.8833, 0.647, -0.6035, 0.8237, 0.6519, -0.6128, 0.8223, 0.6616, -0.6187, 0.8857, 0.6362, -0.6187, 0.8857, 0.6362, -0.6128, 0.8223, 0.6616, -0.6284, 0.8853, 0.6455, -0.6436, 0.9546, 0.6445, -0.6553, 0.9561, 0.6382, -0.6318, 1.0225, 0.6577, -0.6318, 1.0225, 0.6577, -0.6553, 0.9561, 0.6382, -0.6431, 1.0283, 0.6523, -0.6309, 0.9531, 0.6426, -0.6436, 0.9546, 0.6445, -0.6201, 1.0186, 0.6558, -0.6201, 1.0186, 0.6558, -0.6436, 0.9546, 0.6445, -0.6318, 1.0225, 0.6577, -0.6211, 0.9526, 0.6333, -0.6309, 0.9531, 0.6426, -0.6104, 1.0166, 0.646, -0.6104, 1.0166, 0.646, -0.6309, 0.9531, 0.6426, -0.6201, 1.0186, 0.6558, -0.3196, 0.7852, 0.8438, -0.3152, 0.7871, 0.8311, -0.2861, 0.8413, 0.855, -0.2861, 0.8413, 0.855, -0.3152, 0.7871, 0.8311, -0.2825, 0.8428, 0.8423, -0.3176, 0.7788, 0.8545, -0.3196, 0.7852, 0.8438, -0.2827, 0.8374, 0.8667, -0.2827, 0.8374, 0.8667, -0.3196, 0.7852, 0.8438, -0.2861, 0.8413, 0.855, -0.3098, 0.7695, 0.8613, -0.3176, 0.7788, 0.8545, -0.2727, 0.832, 0.874, -0.2727, 0.832, 0.874, -0.3176, 0.7788, 0.8545, -0.2827, 0.8374, 0.8667, -0.6411, 0.8833, 0.647, -0.6528, 0.8809, 0.6411, -0.6436, 0.9546, 0.6445, -0.6436, 0.9546, 0.6445, -0.6528, 0.8809, 0.6411, -0.6553, 0.9561, 0.6382, -0.6284, 0.8853, 0.6455, -0.6411, 0.8833, 0.647, -0.6309, 0.9531, 0.6426, -0.6309, 0.9531, 0.6426, -0.6411, 0.8833, 0.647, -0.6436, 0.9546, 0.6445, -0.6187, 0.8857, 0.6362, -0.6284, 0.8853, 0.6455, -0.6211, 0.9526, 0.6333, -0.6211, 0.9526, 0.6333, -0.6284, 0.8853, 0.6455, -0.6309, 0.9531, 0.6426, -0.582, 0.77, 0.6895, -0.5732, 0.7725, 0.6792, -0.5386, 0.7334, 0.7246, -0.5386, 0.7334, 0.7246, -0.5732, 0.7725, 0.6792, -0.5303, 0.7363, 0.7139, -0.5923, 0.7627, 0.6934, -0.582, 0.77, 0.6895, -0.5469, 0.7246, 0.7305, -0.5469, 0.7246, 0.7305, -0.582, 0.77, 0.6895, -0.5386, 0.7334, 0.7246, -0.6011, 0.7529, 0.6904, -0.5923, 0.7627, 0.6934, -0.5527, 0.7119, 0.73, -0.5527, 0.7119, 0.73, -0.5923, 0.7627, 0.6934, -0.5469, 0.7246, 0.7305, -0.3828, 1.1377, 0.8193, -0.3789, 1.1494, 0.8237, -0.3306, 1.0977, 0.8472, -0.3306, 1.0977, 0.8472, -0.3789, 1.1494, 0.8237, -0.3235, 1.1074, 0.853, -0.3821, 1.1279, 0.8101, -0.3828, 1.1377, 0.8193, -0.3323, 1.0898, 0.8364, -0.3323, 1.0898, 0.8364, -0.3828, 1.1377, 0.8193, -0.3306, 1.0977, 0.8472, -0.3765, 1.124, 0.7979, -0.3821, 1.1279, 0.8101, -0.3276, 1.0869, 0.8242, -0.3276, 1.0869, 0.8242, -0.3821, 1.1279, 0.8101, -0.3323, 1.0898, 0.8364, -0.5596, 1.127, 0.7139, -0.5659, 1.1387, 0.7119, -0.5029, 1.1523, 0.748, -0.5029, 1.1523, 0.748, -0.5659, 1.1387, 0.7119, -0.5063, 1.166, 0.748, -0.5508, 1.1182, 0.709, -0.5596, 1.127, 0.7139, -0.4968, 1.1426, 0.7412, -0.4968, 1.1426, 0.7412, -0.5596, 1.127, 0.7139, -0.5029, 1.1523, 0.748, -0.5425, 1.1152, 0.6987, -0.5508, 1.1182, 0.709, -0.4895, 1.1387, 0.7305, -0.4895, 1.1387, 0.7305, -0.5508, 1.1182, 0.709, -0.4968, 1.1426, 0.7412, -0.6035, 1.082, 0.6816, -0.6128, 1.0908, 0.6772, -0.5596, 1.127, 0.7139, -0.5596, 1.127, 0.7139, -0.6128, 1.0908, 0.6772, -0.5659, 1.1387, 0.7119, -0.5933, 1.0752, 0.6782, -0.6035, 1.082, 0.6816, -0.5508, 1.1182, 0.709, -0.5508, 1.1182, 0.709, -0.6035, 1.082, 0.6816, -0.5596, 1.127, 0.7139, -0.584, 1.0723, 0.6685, -0.5933, 1.0752, 0.6782, -0.5425, 1.1152, 0.6987, -0.5425, 1.1152, 0.6987, -0.5933, 1.0752, 0.6782, -0.5508, 1.1182, 0.709, -0.5386, 0.7334, 0.7246, -0.5303, 0.7363, 0.7139, -0.4836, 0.7158, 0.7617, -0.4836, 0.7158, 0.7617, -0.5303, 0.7363, 0.7139, -0.4763, 0.7192, 0.7505, -0.5469, 0.7246, 0.7305, -0.5386, 0.7334, 0.7246, -0.4897, 0.7061, 0.77, -0.4897, 0.7061, 0.77, -0.5386, 0.7334, 0.7246, -0.4836, 0.7158, 0.7617, -0.5527, 0.7119, 0.73, -0.5469, 0.7246, 0.7305, -0.4927, 0.6924, 0.772, -0.4927, 0.6924, 0.772, -0.5469, 0.7246, 0.7305, -0.4897, 0.7061, 0.77, -0.3679, 0.7432, 0.8247, -0.3628, 0.7461, 0.812, -0.3196, 0.7852, 0.8438, -0.3196, 0.7852, 0.8438, -0.3628, 0.7461, 0.812, -0.3152, 0.7871, 0.8311, -0.3684, 0.7344, 0.835, -0.3679, 0.7432, 0.8247, -0.3176, 0.7788, 0.8545, -0.3176, 0.7788, 0.8545, -0.3679, 0.7432, 0.8247, -0.3196, 0.7852, 0.8438, -0.364, 0.7227, 0.8408, -0.3684, 0.7344, 0.835, -0.3098, 0.7695, 0.8613, -0.3098, 0.7695, 0.8613, -0.3684, 0.7344, 0.835, -0.3176, 0.7788, 0.8545, -0.4241, 0.7192, 0.7969, -0.4177, 0.7227, 0.7847, -0.3679, 0.7432, 0.8247, -0.3679, 0.7432, 0.8247, -0.4177, 0.7227, 0.7847, -0.3628, 0.7461, 0.812, -0.4275, 0.7095, 0.8062, -0.4241, 0.7192, 0.7969, -0.3684, 0.7344, 0.835, -0.3684, 0.7344, 0.835, -0.4241, 0.7192, 0.7969, -0.3679, 0.7432, 0.8247, -0.4268, 0.6958, 0.8105, -0.4275, 0.7095, 0.8062, -0.364, 0.7227, 0.8408, -0.364, 0.7227, 0.8408, -0.4275, 0.7095, 0.8062, -0.3684, 0.7344, 0.835, -0.3484, 0.729, 0.5293, -0.4089, 0.749, 0.4873, -0.3638, 0.7969, 0.5195, -0.3638, 0.7969, 0.5195, -0.4089, 0.749, 0.4873, -0.436, 0.7969, 0.4661, -0.4851, 1.877, 0, -0.4836, 1.877, -0.0285, -0.425, 1.9023, 0, -0.425, 1.9023, 0, -0.4836, 1.877, -0.0285, -0.4241, 1.9023, -0.0276, -0.4836, 1.877, 0.0285, -0.4851, 1.877, 0, -0.4241, 1.9023, 0.0276, -0.4241, 1.9023, 0.0276, -0.4851, 1.877, 0, -0.425, 1.9023, 0, -0.425, 1.9023, 0, -0.4241, 1.9023, -0.0276, -0.3552, 1.9258, 0, -0.3552, 1.9258, 0, -0.4241, 1.9023, -0.0276, -0.3542, 1.9258, -0.0274, -0.3542, 1.9258, 0.0274, -0.3552, 1.9258, 0, -0.2817, 1.9424, 0.0282, -0.2817, 1.9424, 0.0282, -0.3552, 1.9258, 0, -0.2825, 1.9424, 0, -0.3552, 1.9258, 0, -0.3542, 1.9258, -0.0274, -0.2825, 1.9424, 0, -0.2825, 1.9424, 0, -0.3542, 1.9258, -0.0274, -0.2817, 1.9424, -0.0282, -0.094, 1.7617, -0.0413, -0.0945, 1.7617, 0, -0.1299, 1.8213, -0.0383, -0.1299, 1.8213, -0.0383, -0.0945, 1.7617, 0, -0.1328, 1.8213, 0, -0.3359, 1.8574, -0.037, -0.2537, 1.876, -0.0395, -0.3523, 1.9189, -0.0344, -0.3523, 1.9189, -0.0344, -0.2537, 1.876, -0.0395, -0.2791, 1.9365, -0.0354, -0.1798, 1.7422, 0.0961, -0.1884, 1.7422, 0.078, -0.0859, 1.7559, 0.0551, -0.4241, 1.9023, 0.0276, -0.425, 1.9023, 0, -0.3542, 1.9258, 0.0274, -0.3542, 1.9258, 0.0274, -0.425, 1.9023, 0, -0.3552, 1.9258, 0, -0.4883, 1.8008, 0.0327, -0.49, 1.8008, 0, -0.4897, 1.8672, 0.0289, -0.4897, 1.8672, 0.0289, -0.49, 1.8008, 0, -0.4912, 1.8672, 0, -0.2825, 1.9424, 0, -0.2817, 1.9424, -0.0282, -0.2145, 1.9521, 0, -0.2145, 1.9521, 0, -0.2817, 1.9424, -0.0282, -0.2141, 1.9521, -0.0315, -0.2791, 1.9365, 0.0354, -0.2537, 1.876, 0.0395, -0.3523, 1.9189, 0.0346, -0.3523, 1.9189, 0.0346, -0.2537, 1.876, 0.0395, -0.3354, 1.8574, 0.0391, -0.1687, 1.8877, 0.0311, -0.204, 1.9473, 0.0263, -0.1703, 1.8877, 0, -0.1703, 1.8877, 0, -0.204, 1.9473, 0.0263, -0.2045, 1.9473, 0, -0.4814, 1.8037, -0.0392, -0.4141, 1.832, -0.037, -0.4827, 1.8701, -0.0356, -0.4827, 1.8701, -0.0356, -0.4141, 1.832, -0.037, -0.4229, 1.8955, -0.0347, -0.4229, 1.8955, -0.0347, -0.4141, 1.832, -0.037, -0.3523, 1.9189, -0.0344, -0.3523, 1.9189, -0.0344, -0.4141, 1.832, -0.037, -0.3359, 1.8574, -0.037, -0.49, 1.8008, 0, -0.4883, 1.8008, -0.0327, -0.4912, 1.8672, 0, -0.4912, 1.8672, 0, -0.4883, 1.8008, -0.0327, -0.4897, 1.8672, -0.0289, -0.2537, 1.876, -0.0395, -0.1757, 1.8867, -0.0416, -0.2791, 1.9365, -0.0354, -0.2791, 1.9365, -0.0354, -0.1757, 1.8867, -0.0416, -0.2109, 1.9463, -0.0385, -0.1687, 1.8877, -0.035, -0.1703, 1.8877, 0, -0.204, 1.9473, -0.032, -0.204, 1.9473, -0.032, -0.1703, 1.8877, 0, -0.2045, 1.9473, 0, -0.2537, 1.876, 0.0395, -0.2791, 1.9365, 0.0354, -0.1757, 1.8867, 0.038, -0.1757, 1.8867, 0.038, -0.2791, 1.9365, 0.0354, -0.2109, 1.9463, 0.0333, -0.4226, 1.8955, 0.0349, -0.4138, 1.832, 0.0394, -0.4827, 1.8701, 0.0356, -0.4827, 1.8701, 0.0356, -0.4138, 1.832, 0.0394, -0.4814, 1.8037, 0.0395, -0.0898, 0.8892, 0.9121, -0.1787, 0.8892, 0.8989, -0.0898, 0.9766, 0.9121, -0.0898, 0.9766, 0.9121, -0.1787, 0.8892, 0.8989, -0.1787, 0.9766, 0.8989, -0.0209, 1.0283, 0.8428, -0.024, 1.0283, 0.9067, 0, 1.0293, 0.8438, 0, 1.0293, 0.8438, -0.024, 1.0283, 0.9067, 0, 1.0293, 0.9082, -0.0546, 0.7534, 0.8408, -0.0578, 0.7534, 0.9053, -0.0649, 0.7759, 0.8403, -0.0649, 0.7759, 0.8403, -0.0578, 0.7534, 0.9053, -0.068, 0.7759, 0.9048, 0, 0.7759, 0.8354, -0.0554, 0.7759, 0.8325, 0, 0.8892, 0.8354, 0, 0.8892, 0.8354, -0.0554, 0.7759, 0.8325, -0.0554, 0.8892, 0.8325, -0.0407, 1.0195, 0.8418, -0.0439, 1.0195, 0.9058, -0.0209, 1.0283, 0.8428, -0.0209, 1.0283, 0.8428, -0.0439, 1.0195, 0.9058, -0.024, 1.0283, 0.9067, -0.0659, 0.751, 0.9131, -0.0898, 0.7432, 0.9121, -0.0772, 0.7759, 0.9126, -0.0772, 0.7759, 0.9126, -0.0898, 0.7432, 0.9121, -0.0898, 0.7759, 0.9121, 0, 0.8892, 0.8354, -0.0554, 0.8892, 0.8325, 0, 0.9766, 0.8354, 0, 0.9766, 0.8354, -0.0554, 0.8892, 0.8325, -0.0554, 0.9766, 0.8325, -0.0491, 0.7314, 0.9141, -0.0898, 0.6885, 0.9121, -0.0659, 0.751, 0.9131, -0.0659, 0.751, 0.9131, -0.0898, 0.6885, 0.9121, -0.0898, 0.7432, 0.9121, 0, 0.7241, 0.8438, 0, 0.7241, 0.9082, -0.0186, 0.7256, 0.8428, -0.0186, 0.7256, 0.8428, 0, 0.7241, 0.9082, -0.0217, 0.7256, 0.9067, -0.0649, 0.7759, 0.8403, -0.068, 0.7759, 0.9048, -0.0649, 0.8892, 0.8403, -0.0649, 0.8892, 0.8403, -0.068, 0.7759, 0.9048, -0.068, 0.8892, 0.9048, -0.0649, 0.8892, 0.8403, -0.068, 0.8892, 0.9048, -0.0649, 0.9766, 0.8403, -0.0649, 0.9766, 0.8403, -0.068, 0.8892, 0.9048, -0.068, 0.9766, 0.9048, -0.0649, 0.9766, 0.8403, -0.068, 0.9766, 0.9048, -0.0584, 0.9995, 0.8408, -0.0584, 0.9995, 0.8408, -0.068, 0.9766, 0.9048, -0.0616, 0.9995, 0.9048, -0.0772, 0.7759, 0.9126, -0.0898, 0.7759, 0.9121, -0.0772, 0.8892, 0.9126, -0.0772, 0.8892, 0.9126, -0.0898, 0.7759, 0.9121, -0.0898, 0.8892, 0.9121, -0.0772, 0.8892, 0.9126, -0.0898, 0.8892, 0.9121, -0.0772, 0.9766, 0.9126, -0.0772, 0.9766, 0.9126, -0.0898, 0.8892, 0.9121, -0.0898, 0.9766, 0.9121, 0, 0.9766, 0.8354, -0.0554, 0.9766, 0.8325, 0, 1.0205, 0.8354, 0, 1.0205, 0.8354, -0.0554, 0.9766, 0.8325, -0.0185, 1.0195, 0.835, -0.0185, 1.0195, 0.835, -0.0554, 0.9766, 0.8325, -0.0353, 1.0127, 0.8335, -0.0353, 1.0127, 0.8335, -0.0554, 0.9766, 0.8325, -0.0498, 0.9961, 0.833, -0.0772, 0.9766, 0.9126, -0.0898, 0.9766, 0.9121, -0.0701, 1.002, 0.9131, -0.0701, 1.002, 0.9131, -0.0898, 0.9766, 0.9121, -0.0898, 1.0078, 0.9121, -0.0242, 0.7183, 0.915, 0, 0.7168, 0.9165, 0, 0.6885, 0.9165, -0.0701, 1.002, 0.9131, -0.0616, 0.9995, 0.9048, -0.0772, 0.9766, 0.9126, -0.0772, 0.9766, 0.9126, -0.0616, 0.9995, 0.9048, -0.068, 0.9766, 0.9048, -0.0772, 0.9766, 0.9126, -0.068, 0.9766, 0.9048, -0.0772, 0.8892, 0.9126, -0.0772, 0.8892, 0.9126, -0.068, 0.9766, 0.9048, -0.068, 0.8892, 0.9048, -0.0772, 0.8892, 0.9126, -0.068, 0.8892, 0.9048, -0.0772, 0.7759, 0.9126, -0.0772, 0.7759, 0.9126, -0.068, 0.8892, 0.9048, -0.068, 0.7759, 0.9048, -0.0242, 0.7183, 0.915, -0.0217, 0.7256, 0.9067, 0, 0.7168, 0.9165, 0, 0.7168, 0.9165, -0.0217, 0.7256, 0.9067, 0, 0.7241, 0.9082, -0.0255, 1.0352, 0.915, -0.024, 1.0283, 0.9067, -0.0498, 1.0244, 0.9141, -0.0498, 1.0244, 0.9141, -0.024, 1.0283, 0.9067, -0.0439, 1.0195, 0.9058, -0.0659, 0.751, 0.9131, -0.0578, 0.7534, 0.9053, -0.0491, 0.7314, 0.9141, -0.0491, 0.7314, 0.9141, -0.0578, 0.7534, 0.9053, -0.0435, 0.7368, 0.9058, 0, 1.0361, 0.9165, 0, 1.0293, 0.9082, -0.0255, 1.0352, 0.915, -0.0255, 1.0352, 0.915, 0, 1.0293, 0.9082, -0.024, 1.0283, 0.9067, -0.0498, 1.0244, 0.9141, -0.0439, 1.0195, 0.9058, -0.0701, 1.002, 0.9131, -0.0701, 1.002, 0.9131, -0.0439, 1.0195, 0.9058, -0.0616, 0.9995, 0.9048, -0.0772, 0.7759, 0.9126, -0.068, 0.7759, 0.9048, -0.0659, 0.751, 0.9131, -0.0659, 0.751, 0.9131, -0.068, 0.7759, 0.9048, -0.0578, 0.7534, 0.9053, -0.0491, 0.7314, 0.9141, -0.0435, 0.7368, 0.9058, -0.0242, 0.7183, 0.915, -0.0242, 0.7183, 0.915, -0.0435, 0.7368, 0.9058, -0.0217, 0.7256, 0.9067, -0.0584, 0.9995, 0.8408, -0.0616, 0.9995, 0.9048, -0.0407, 1.0195, 0.8418, -0.0407, 1.0195, 0.8418, -0.0616, 0.9995, 0.9048, -0.0439, 1.0195, 0.9058, 0, 0.6279, 0.9165, -0.0898, 0.6279, 0.9121, 0, 0.6885, 0.9165, 0, 0.6885, 0.9165, -0.0898, 0.6279, 0.9121, -0.0898, 0.6885, 0.9121, -0.0242, 0.7183, 0.915, 0, 0.6885, 0.9165, -0.0491, 0.7314, 0.9141, -0.0491, 0.7314, 0.9141, 0, 0.6885, 0.9165, -0.0898, 0.6885, 0.9121, -0.0898, 1.0635, 0.9121, -0.0892, 1.1416, 0.9063, 0, 1.0635, 0.9165, 0, 1.0635, 0.9165, -0.0892, 1.1416, 0.9063, 0, 1.1416, 0.9106, -0.0255, 1.0352, 0.915, 0, 1.0635, 0.9165, 0, 1.0361, 0.9165, -0.1787, 0.9766, 0.8989, -0.1787, 1.0635, 0.8989, -0.0898, 0.9766, 0.9121, -0.0898, 0.9766, 0.9121, -0.1787, 1.0635, 0.8989, -0.0898, 1.0078, 0.9121, -0.0898, 0.6885, 0.9121, -0.1787, 0.7153, 0.8989, -0.0898, 0.7432, 0.9121, -0.4319, 0.6279, 0.8081, -0.3506, 0.6279, 0.8467, -0.4319, 0.5498, 0.8081, -0.4319, 0.5498, 0.8081, -0.3506, 0.6279, 0.8467, -0.3506, 0.5498, 0.8467, -0.5024, 0.5576, 0.7661, -0.4319, 0.5498, 0.8081, -0.5024, 0.4668, 0.7661, -0.5024, 0.4668, 0.7661, -0.4319, 0.5498, 0.8081, -0.4319, 0.4668, 0.8081, -0.2659, 0.5498, 0.877, -0.1864, 0.5576, 0.897, -0.2659, 0.4668, 0.877, -0.2659, 0.4668, 0.877, -0.1864, 0.5576, 0.897, -0.1864, 0.4668, 0.897, -0.9121, 0.6279, -0.0898, -0.9165, 0.6279, 0, -0.9121, 0.5576, -0.0898, -0.9121, 0.5576, -0.0898, -0.9165, 0.6279, 0, -0.9165, 0.5576, 0, -0.3506, 0.6279, 0.8467, -0.2659, 0.6279, 0.877, -0.3506, 0.5498, 0.8467, -0.3506, 0.5498, 0.8467, -0.2659, 0.6279, 0.877, -0.2659, 0.5498, 0.877, -0.4783, 1.6533, 0.0951, -0.4907, 1.6494, 0.0544, -0.3899, 1.6914, 0.0776, -0.3899, 1.6914, 0.0776, -0.4907, 1.6494, 0.0544, -0.3931, 1.6914, 0.0562, -0.4138, 1.832, 0.0394, -0.4041, 1.7617, 0.0444, -0.4814, 1.8037, 0.0395, -0.4814, 1.8037, 0.0395, -0.4041, 1.7617, 0.0444, -0.48, 1.7295, 0.0437, -0.2969, 1.7207, 0.0591, -0.2974, 1.7207, 0.0558, -0.1976, 1.7422, 0.0551, -0.2537, 1.876, 0.0395, -0.2258, 1.8096, 0.0439, -0.3354, 1.8574, 0.0391, -0.3354, 1.8574, 0.0391, -0.2258, 1.8096, 0.0439, -0.3169, 1.7891, 0.044, -0.2969, 1.7207, -0.0591, -0.2896, 1.7207, -0.0878, -0.1974, 1.7422, -0.0551, -0.1974, 1.7422, -0.0551, -0.2896, 1.7207, -0.0878, -0.1952, 1.7422, -0.0592, -0.1299, 1.8213, -0.0383, -0.1328, 1.8213, 0, -0.1687, 1.8877, -0.035, -0.1687, 1.8877, -0.035, -0.1328, 1.8213, 0, -0.1703, 1.8877, 0, -0.2258, 1.8096, 0.0439, -0.2006, 1.749, 0.0479, -0.3169, 1.7891, 0.044, -0.3169, 1.7891, 0.044, -0.2006, 1.749, 0.0479, -0.3, 1.7275, 0.0485, -0.3354, 1.8574, 0.0391, -0.3169, 1.7891, 0.044, -0.4138, 1.832, 0.0394, -0.4138, 1.832, 0.0394, -0.3169, 1.7891, 0.044, -0.4041, 1.7617, 0.0444, -0.2817, 1.9424, 0.0282, -0.2825, 1.9424, 0, -0.2141, 1.9521, 0.0261, -0.2141, 1.9521, 0.0261, -0.2825, 1.9424, 0, -0.2145, 1.9521, 0, -0.13, 1.8213, 0.0363, -0.1687, 1.8877, 0.0311, -0.1328, 1.8213, 0, -0.1328, 1.8213, 0, -0.1687, 1.8877, 0.0311, -0.1703, 1.8877, 0, -0.3943, 1.6914, -0.0491, -0.3899, 1.6914, -0.0776, -0.2983, 1.7207, -0.0493, -0.2983, 1.7207, -0.0493, -0.3899, 1.6914, -0.0776, -0.2969, 1.7207, -0.0591, -0.4141, 1.832, -0.037, -0.4048, 1.7617, -0.0397, -0.3359, 1.8574, -0.037, -0.3359, 1.8574, -0.037, -0.4048, 1.7617, -0.0397, -0.3176, 1.7891, -0.0398, -0.4871, 1.7266, 0.0369, -0.4888, 1.7266, 0, -0.4883, 1.8008, 0.0327, -0.4883, 1.8008, 0.0327, -0.4888, 1.7266, 0, -0.49, 1.8008, 0, -0.3176, 1.7891, -0.0398, -0.2258, 1.8096, -0.0439, -0.3359, 1.8574, -0.037, -0.3359, 1.8574, -0.037, -0.2258, 1.8096, -0.0439, -0.2537, 1.876, -0.0395, -0.1952, 1.7422, 0.0592, -0.1976, 1.7422, 0.0551, -0.0859, 1.7559, 0.0551, -0.4888, 1.7266, 0, -0.4871, 1.7266, -0.0369, -0.49, 1.8008, 0, -0.49, 1.8008, 0, -0.4871, 1.7266, -0.0369, -0.4883, 1.8008, -0.0327, -0.5684, 1.6084, -0.056, -0.5601, 1.6084, -0.1115, -0.4907, 1.6494, -0.0549, -0.4907, 1.6494, -0.0549, -0.5601, 1.6084, -0.1115, -0.4783, 1.6533, -0.0951, -0.2258, 1.8096, 0.0439, -0.2537, 1.876, 0.0395, -0.1367, 1.8203, 0.0432, -0.1367, 1.8203, 0.0432, -0.2537, 1.876, 0.0395, -0.1757, 1.8867, 0.038, -0.4856, 1.6602, 0.0406, -0.4878, 1.6602, 0, -0.4871, 1.7266, 0.0369, -0.4871, 1.7266, 0.0369, -0.4878, 1.6602, 0, -0.4888, 1.7266, 0, -0.48, 1.7295, -0.0433, -0.4048, 1.7617, -0.0397, -0.4814, 1.8037, -0.0392, -0.4814, 1.8037, -0.0392, -0.4048, 1.7617, -0.0397, -0.4141, 1.832, -0.037, -0.3899, 1.6914, 0.0776, -0.3931, 1.6914, 0.0562, -0.2969, 1.7207, 0.0591, -0.2969, 1.7207, 0.0591, -0.3931, 1.6914, 0.0562, -0.2974, 1.7207, 0.0558, -0.2258, 1.8096, -0.0439, -0.1367, 1.8203, -0.045, -0.2537, 1.876, -0.0395, -0.2537, 1.876, -0.0395, -0.1367, 1.8203, -0.045, -0.1757, 1.8867, -0.0416, -0.094, 1.7617, 0.0411, -0.13, 1.8213, 0.0363, -0.0945, 1.7617, 0, -0.0945, 1.7617, 0, -0.13, 1.8213, 0.0363, -0.1328, 1.8213, 0, -0.4856, 1.6602, 0.0406, -0.4788, 1.6631, 0.0475, -0.4907, 1.6494, 0.0544, -0.0859, 1.7559, 0.0551, -0.1016, 1.7607, 0.0479, -0.094, 1.7617, 0.0411, -0.094, 1.7617, -0.0413, -0.1016, 1.7607, -0.0481, -0.0853, 1.7559, -0.0562, -0.4907, 1.6494, -0.0549, -0.4788, 1.6631, -0.047, -0.4856, 1.6602, -0.0406, -0.4836, 1.877, 0.0285, -0.4827, 1.8701, 0.0356, -0.4897, 1.8672, 0.0289, -0.4897, 1.8672, -0.0289, -0.4827, 1.8701, -0.0356, -0.4836, 1.877, -0.0285, -0.2109, 1.9463, -0.0385, -0.204, 1.9473, -0.032, -0.2141, 1.9521, -0.0315, -0.204, 1.9473, 0.0263, -0.2109, 1.9463, 0.0333, -0.2141, 1.9521, 0.0261, -0.4907, 1.6494, 0.0544, -0.4788, 1.6631, 0.0475, -0.3931, 1.6914, 0.0562, -0.3931, 1.6914, 0.0562, -0.4788, 1.6631, 0.0475, -0.395, 1.6982, 0.0489, -0.4788, 1.6631, -0.047, -0.4907, 1.6494, -0.0549, -0.396, 1.6982, -0.0421, -0.396, 1.6982, -0.0421, -0.4907, 1.6494, -0.0549, -0.3943, 1.6914, -0.0491, -0.4934, 1.6504, 0, -0.4878, 1.6602, 0, -0.4907, 1.6494, 0.0544, -0.4907, 1.6494, 0.0544, -0.4878, 1.6602, 0, -0.4856, 1.6602, 0.0406, -0.1976, 1.7422, 0.0551, -0.2006, 1.749, 0.0479, -0.0859, 1.7559, 0.0551, -0.0859, 1.7559, 0.0551, -0.2006, 1.749, 0.0479, -0.1016, 1.7607, 0.0479, -0.396, 1.6982, -0.0421, -0.3943, 1.6914, -0.0491, -0.301, 1.7275, -0.0423, -0.301, 1.7275, -0.0423, -0.3943, 1.6914, -0.0491, -0.2983, 1.7207, -0.0493, -0.3931, 1.6914, 0.0562, -0.395, 1.6982, 0.0489, -0.2974, 1.7207, 0.0558, -0.2974, 1.7207, 0.0558, -0.395, 1.6982, 0.0489, -0.3, 1.7275, 0.0485, -0.2006, 1.749, -0.0479, -0.1974, 1.7422, -0.0551, -0.1016, 1.7607, -0.0481, -0.1016, 1.7607, -0.0481, -0.1974, 1.7422, -0.0551, -0.0853, 1.7559, -0.0562, -0.4878, 1.6602, 0, -0.4934, 1.6504, 0, -0.4856, 1.6602, -0.0406, -0.4856, 1.6602, -0.0406, -0.4934, 1.6504, 0, -0.4907, 1.6494, -0.0549, -0.0841, 1.7559, 0, -0.0945, 1.7617, 0, -0.0853, 1.7559, -0.0562, -0.0853, 1.7559, -0.0562, -0.0945, 1.7617, 0, -0.094, 1.7617, -0.0413, -0.301, 1.7275, -0.0423, -0.2983, 1.7207, -0.0493, -0.2006, 1.749, -0.0479, -0.2006, 1.749, -0.0479, -0.2983, 1.7207, -0.0493, -0.1974, 1.7422, -0.0551, -0.0945, 1.7617, 0, -0.0841, 1.7559, 0, -0.094, 1.7617, 0.0411, -0.094, 1.7617, 0.0411, -0.0841, 1.7559, 0, -0.0859, 1.7559, 0.0551, -0.4871, 1.7266, 0.0369, -0.48, 1.7295, 0.0437, -0.4856, 1.6602, 0.0406, -0.4856, 1.6602, 0.0406, -0.48, 1.7295, 0.0437, -0.4788, 1.6631, 0.0475, -0.1757, 1.8867, -0.0416, -0.1687, 1.8877, -0.035, -0.2109, 1.9463, -0.0385, -0.2109, 1.9463, -0.0385, -0.1687, 1.8877, -0.035, -0.204, 1.9473, -0.032, -0.4827, 1.8701, 0.0356, -0.4836, 1.877, 0.0285, -0.4226, 1.8955, 0.0349, -0.4226, 1.8955, 0.0349, -0.4836, 1.877, 0.0285, -0.4241, 1.9023, 0.0276, -0.4836, 1.877, -0.0285, -0.4827, 1.8701, -0.0356, -0.4241, 1.9023, -0.0276, -0.4241, 1.9023, -0.0276, -0.4827, 1.8701, -0.0356, -0.4229, 1.8955, -0.0347, -0.4912, 1.8672, 0, -0.4851, 1.877, 0, -0.4897, 1.8672, 0.0289, -0.4897, 1.8672, 0.0289, -0.4851, 1.877, 0, -0.4836, 1.877, 0.0285, -0.4241, 1.9023, -0.0276, -0.4229, 1.8955, -0.0347, -0.3542, 1.9258, -0.0274, -0.3542, 1.9258, -0.0274, -0.4229, 1.8955, -0.0347, -0.3523, 1.9189, -0.0344, -0.3542, 1.9258, -0.0274, -0.3523, 1.9189, -0.0344, -0.2817, 1.9424, -0.0282, -0.2817, 1.9424, -0.0282, -0.3523, 1.9189, -0.0344, -0.2791, 1.9365, -0.0354, -0.2817, 1.9424, -0.0282, -0.2791, 1.9365, -0.0354, -0.2141, 1.9521, -0.0315, -0.2141, 1.9521, -0.0315, -0.2791, 1.9365, -0.0354, -0.2109, 1.9463, -0.0385, -0.4226, 1.8955, 0.0349, -0.4241, 1.9023, 0.0276, -0.3523, 1.9189, 0.0346, -0.3523, 1.9189, 0.0346, -0.4241, 1.9023, 0.0276, -0.3542, 1.9258, 0.0274, -0.4851, 1.877, 0, -0.4912, 1.8672, 0, -0.4836, 1.877, -0.0285, -0.4836, 1.877, -0.0285, -0.4912, 1.8672, 0, -0.4897, 1.8672, -0.0289, -0.3523, 1.9189, 0.0346, -0.3542, 1.9258, 0.0274, -0.2791, 1.9365, 0.0354, -0.2791, 1.9365, 0.0354, -0.3542, 1.9258, 0.0274, -0.2817, 1.9424, 0.0282, -0.2791, 1.9365, 0.0354, -0.2817, 1.9424, 0.0282, -0.2109, 1.9463, 0.0333, -0.2109, 1.9463, 0.0333, -0.2817, 1.9424, 0.0282, -0.2141, 1.9521, 0.0261, -0.2145, 1.9521, 0, -0.2045, 1.9473, 0, -0.2141, 1.9521, 0.0261, -0.2141, 1.9521, 0.0261, -0.2045, 1.9473, 0, -0.204, 1.9473, 0.0263, -0.2045, 1.9473, 0, -0.2145, 1.9521, 0, -0.204, 1.9473, -0.032, -0.204, 1.9473, -0.032, -0.2145, 1.9521, 0, -0.2141, 1.9521, -0.0315, -0.4883, 1.8008, -0.0327, -0.4814, 1.8037, -0.0392, -0.4897, 1.8672, -0.0289, -0.4897, 1.8672, -0.0289, -0.4814, 1.8037, -0.0392, -0.4827, 1.8701, -0.0356, -0.1367, 1.8203, 0.0432, -0.13, 1.8213, 0.0363, -0.1016, 1.7607, 0.0479, -0.1016, 1.7607, 0.0479, -0.13, 1.8213, 0.0363, -0.094, 1.7617, 0.0411, -0.2974, 1.7207, 0.0558, -0.3, 1.7275, 0.0485, -0.1976, 1.7422, 0.0551, -0.1976, 1.7422, 0.0551, -0.3, 1.7275, 0.0485, -0.2006, 1.749, 0.0479, -0.4897, 1.8672, 0.0289, -0.4827, 1.8701, 0.0356, -0.4883, 1.8008, 0.0327, -0.4883, 1.8008, 0.0327, -0.4827, 1.8701, 0.0356, -0.4814, 1.8037, 0.0395, -0.4883, 1.8008, 0.0327, -0.4814, 1.8037, 0.0395, -0.4871, 1.7266, 0.0369, -0.4871, 1.7266, 0.0369, -0.4814, 1.8037, 0.0395, -0.48, 1.7295, 0.0437, -0.1016, 1.7607, -0.0481, -0.094, 1.7617, -0.0413, -0.1367, 1.8203, -0.045, -0.1367, 1.8203, -0.045, -0.094, 1.7617, -0.0413, -0.1299, 1.8213, -0.0383, -0.1367, 1.8203, -0.045, -0.1299, 1.8213, -0.0383, -0.1757, 1.8867, -0.0416, -0.1757, 1.8867, -0.0416, -0.1299, 1.8213, -0.0383, -0.1687, 1.8877, -0.035, -0.4856, 1.6602, -0.0406, -0.4788, 1.6631, -0.047, -0.4871, 1.7266, -0.0369, -0.4871, 1.7266, -0.0369, -0.4788, 1.6631, -0.047, -0.48, 1.7295, -0.0433, -0.4871, 1.7266, -0.0369, -0.48, 1.7295, -0.0433, -0.4883, 1.8008, -0.0327, -0.4883, 1.8008, -0.0327, -0.48, 1.7295, -0.0433, -0.4814, 1.8037, -0.0392, -0.2109, 1.9463, 0.0333, -0.204, 1.9473, 0.0263, -0.1757, 1.8867, 0.038, -0.1757, 1.8867, 0.038, -0.204, 1.9473, 0.0263, -0.1687, 1.8877, 0.0311, -0.1757, 1.8867, 0.038, -0.1687, 1.8877, 0.0311, -0.1367, 1.8203, 0.0432, -0.1367, 1.8203, 0.0432, -0.1687, 1.8877, 0.0311, -0.13, 1.8213, 0.0363, -0.0841, 1.7559, 0, -0.0793, 1.7559, -0.0651, -0.0793, 1.7559, 0.0651, -0.0841, 1.7559, 0, -0.0853, 1.7559, -0.0562, -0.0793, 1.7559, -0.0651, -0.0498, 1.0244, 0.9141, -0.0898, 1.0635, 0.9121, -0.0255, 1.0352, 0.915, -0.0255, 1.0352, 0.915, -0.0898, 1.0635, 0.9121, 0, 1.0635, 0.9165, -0.0649, 0.9766, 0.8403, -0.0584, 0.9995, 0.8408, -0.0554, 0.9766, 0.8325, -0.0554, 0.9766, 0.8325, -0.0584, 0.9995, 0.8408, -0.0498, 0.9961, 0.833, -0.0649, 0.8892, 0.8403, -0.0649, 0.9766, 0.8403, -0.0554, 0.8892, 0.8325, -0.0554, 0.8892, 0.8325, -0.0649, 0.9766, 0.8403, -0.0554, 0.9766, 0.8325, -0.0649, 0.7759, 0.8403, -0.0649, 0.8892, 0.8403, -0.0554, 0.7759, 0.8325, -0.0554, 0.7759, 0.8325, -0.0649, 0.8892, 0.8403, -0.0554, 0.8892, 0.8325, 0, 0.7241, 0.8438, -0.0186, 0.7256, 0.8428, 0, 0.7324, 0.8354, 0, 0.7324, 0.8354, -0.0186, 0.7256, 0.8428, -0.0159, 0.7334, 0.835, -0.0407, 1.0195, 0.8418, -0.0209, 1.0283, 0.8428, -0.0353, 1.0127, 0.8335, -0.0353, 1.0127, 0.8335, -0.0209, 1.0283, 0.8428, -0.0185, 1.0195, 0.835, -0.0404, 0.7368, 0.8418, -0.0546, 0.7534, 0.8408, -0.0348, 0.7437, 0.8335, -0.0348, 0.7437, 0.8335, -0.0546, 0.7534, 0.8408, -0.0472, 0.7578, 0.833, -0.0209, 1.0283, 0.8428, 0, 1.0293, 0.8438, -0.0185, 1.0195, 0.835, -0.0185, 1.0195, 0.835, 0, 1.0293, 0.8438, 0, 1.0205, 0.8354, -0.0584, 0.9995, 0.8408, -0.0407, 1.0195, 0.8418, -0.0498, 0.9961, 0.833, -0.0498, 0.9961, 0.833, -0.0407, 1.0195, 0.8418, -0.0353, 1.0127, 0.8335, -0.0546, 0.7534, 0.8408, -0.0649, 0.7759, 0.8403, -0.0472, 0.7578, 0.833, -0.0472, 0.7578, 0.833, -0.0649, 0.7759, 0.8403, -0.0554, 0.7759, 0.8325, -0.0186, 0.7256, 0.8428, -0.0404, 0.7368, 0.8418, -0.0159, 0.7334, 0.835, -0.0159, 0.7334, 0.835, -0.0404, 0.7368, 0.8418, -0.0348, 0.7437, 0.8335, -0.1787, 1.0635, 0.8989, -0.0898, 1.0635, 0.9121, -0.0898, 1.0078, 0.9121, -0.1787, 0.7153, 0.8989, -0.1787, 0.8022, 0.8989, -0.0898, 0.7432, 0.9121, -0.0898, 0.7432, 0.9121, -0.1787, 0.8022, 0.8989, -0.0898, 0.7759, 0.9121, -0.2988, 1.126, 0.5488, -0.3591, 1.1221, 0.5127, -0.3052, 1.1367, 0.5532, -0.3052, 1.1367, 0.5532, -0.3591, 1.1221, 0.5127, -0.3625, 1.1338, 0.519, -0.2908, 0.7178, 0.5728, -0.3494, 0.7144, 0.5386, -0.2866, 0.7324, 0.5659, -0.2866, 0.7324, 0.5659, -0.3494, 0.7144, 0.5386, -0.3484, 0.729, 0.5293, -0.142, 0.9688, 0.6338, -0.1392, 0.9023, 0.6348, -0.1523, 0.9692, 0.6221, -0.1523, 0.9692, 0.6221, -0.1392, 0.9023, 0.6348, -0.1493, 0.8984, 0.6226, -0.1392, 0.9023, 0.6348, -0.1555, 0.8379, 0.6304, -0.1493, 0.8984, 0.6226, -0.1493, 0.8984, 0.6226, -0.1555, 0.8379, 0.6304, -0.1677, 0.8252, 0.6177, -0.2007, 1.082, 0.6123, -0.1635, 1.0303, 0.6289, -0.2064, 1.084, 0.5991, -0.2064, 1.084, 0.5991, -0.1635, 1.0303, 0.6289, -0.1769, 1.041, 0.6147, -0.2368, 1.1064, 0.5845, -0.2988, 1.126, 0.5488, -0.2496, 1.1191, 0.5864, -0.2496, 1.1191, 0.5864, -0.2988, 1.126, 0.5488, -0.3052, 1.1367, 0.5532, -0.4441, 1.0674, 0.4553, -0.4646, 1.0273, 0.4404, -0.4573, 1.0674, 0.457, -0.4573, 1.0674, 0.457, -0.4646, 1.0273, 0.4404, -0.4836, 1.0117, 0.4346, -0.1635, 1.0303, 0.6289, -0.142, 0.9688, 0.6338, -0.1769, 1.041, 0.6147, -0.1769, 1.041, 0.6147, -0.142, 0.9688, 0.6338, -0.1523, 0.9692, 0.6221, -0.4565, 0.8091, 0.4473, -0.4326, 0.77, 0.4668, -0.4766, 0.8188, 0.4404, -0.4766, 0.8188, 0.4404, -0.4326, 0.77, 0.4668, -0.4465, 0.7676, 0.4675, -0.4749, 0.8813, 0.4292, -0.4565, 0.8091, 0.4473, -0.4919, 0.8809, 0.4246, -0.4919, 0.8809, 0.4246, -0.4565, 0.8091, 0.4473, -0.4766, 0.8188, 0.4404, -0.4646, 1.0273, 0.4404, -0.4775, 0.9531, 0.4265, -0.4836, 1.0117, 0.4346, -0.4836, 1.0117, 0.4346, -0.4775, 0.9531, 0.4265, -0.4944, 0.9478, 0.4219, -0.1555, 0.8379, 0.6304, -0.1882, 0.7827, 0.6191, -0.1677, 0.8252, 0.6177, -0.1677, 0.8252, 0.6177, -0.1882, 0.7827, 0.6191, -0.1892, 0.7886, 0.6094, -0.4775, 0.9531, 0.4265, -0.4749, 0.8813, 0.4292, -0.4944, 0.9478, 0.4219, -0.4944, 0.9478, 0.4219, -0.4749, 0.8813, 0.4292, -0.4919, 0.8809, 0.4246, -0.4033, 0.7319, 0.502, -0.4465, 0.7676, 0.4675, -0.4089, 0.749, 0.4873, -0.4089, 0.749, 0.4873, -0.4465, 0.7676, 0.4675, -0.4326, 0.77, 0.4668, -0.2064, 1.084, 0.5991, -0.2368, 1.1064, 0.5845, -0.2007, 1.082, 0.6123, -0.2007, 1.082, 0.6123, -0.2368, 1.1064, 0.5845, -0.2496, 1.1191, 0.5864, -0.3591, 1.1221, 0.5127, -0.4182, 1.0957, 0.4761, -0.3625, 1.1338, 0.519, -0.3625, 1.1338, 0.519, -0.4182, 1.0957, 0.4761, -0.4158, 1.1104, 0.4873, -0.4182, 1.0957, 0.4761, -0.4441, 1.0674, 0.4553, -0.4158, 1.1104, 0.4873, -0.4158, 1.1104, 0.4873, -0.4441, 1.0674, 0.4553, -0.4573, 1.0674, 0.457, -0.3494, 0.7144, 0.5386, -0.4033, 0.7319, 0.502, -0.3484, 0.729, 0.5293, -0.3484, 0.729, 0.5293, -0.4033, 0.7319, 0.502, -0.4089, 0.749, 0.4873, -0.1882, 0.7827, 0.6191, -0.2358, 0.7412, 0.6006, -0.1892, 0.7886, 0.6094, -0.1892, 0.7886, 0.6094, -0.2358, 0.7412, 0.6006, -0.2229, 0.7593, 0.5967, -0.2358, 0.7412, 0.6006, -0.2908, 0.7178, 0.5728, -0.2229, 0.7593, 0.5967, -0.2229, 0.7593, 0.5967, -0.2908, 0.7178, 0.5728, -0.2866, 0.7324, 0.5659, -0.4319, 0.5498, 0.8081, -0.3506, 0.5498, 0.8467, -0.4319, 0.4668, 0.8081, -0.4319, 0.4668, 0.8081, -0.3506, 0.5498, 0.8467, -0.3506, 0.4668, 0.8467, -0.3506, 0.5498, 0.8467, -0.2659, 0.5498, 0.877, -0.3506, 0.4668, 0.8467, -0.3506, 0.4668, 0.8467, -0.2659, 0.5498, 0.877, -0.2659, 0.4668, 0.877, -0.0898, 0.6279, 0.9121, 0, 0.6279, 0.9165, -0.0898, 0.5576, 0.9121, -0.0898, 0.5576, 0.9121, 0, 0.6279, 0.9165, 0, 0.5576, 0.9165, -0.5811, 0.6279, -0.7085, -0.6479, 0.6279, -0.6479, -0.5811, 0.5576, -0.7085, -0.5811, 0.5576, -0.7085, -0.6479, 0.6279, -0.6479, -0.6479, 0.5576, -0.6479, -0.7085, 0.6279, 0.5811, -0.6479, 0.6279, 0.6479, -0.7085, 0.5576, 0.5811, -0.7085, 0.5576, 0.5811, -0.6479, 0.6279, 0.6479, -0.6479, 0.5576, 0.6479, -0.5088, 0.6279, 0.7617, -0.4319, 0.6279, 0.8081, -0.5024, 0.5576, 0.7661, -0.5024, 0.5576, 0.7661, -0.4319, 0.6279, 0.8081, -0.4319, 0.5498, 0.8081, -0.5088, 0.6279, -0.7617, -0.5811, 0.6279, -0.7085, -0.5088, 0.5576, -0.7617, -0.5088, 0.5576, -0.7617, -0.5811, 0.6279, -0.7085, -0.5811, 0.5576, -0.7085, -0.7617, 0.6279, 0.5088, -0.7085, 0.6279, 0.5811, -0.7617, 0.5576, 0.5088, -0.7617, 0.5576, 0.5088, -0.7085, 0.6279, 0.5811, -0.7085, 0.5576, 0.5811, -0.7085, 0.6279, -0.5811, -0.7617, 0.6279, -0.5088, -0.7085, 0.5576, -0.5811, -0.7085, 0.5576, -0.5811, -0.7617, 0.6279, -0.5088, -0.7617, 0.5576, -0.5088, -0.2659, 0.6279, -0.877, -0.3506, 0.6279, -0.8467, -0.2659, 0.5576, -0.877, -0.2659, 0.5576, -0.877, -0.3506, 0.6279, -0.8467, -0.3506, 0.5576, -0.8467, -0.1787, 0.6279, 0.8989, -0.0898, 0.6279, 0.9121, -0.1864, 0.5576, 0.897, -0.1864, 0.5576, 0.897, -0.0898, 0.6279, 0.9121, -0.0898, 0.5576, 0.9121, -0.877, 0.6279, 0.2659, -0.8467, 0.6279, 0.3506, -0.877, 0.5576, 0.2659, -0.877, 0.5576, 0.2659, -0.8467, 0.6279, 0.3506, -0.8467, 0.5576, 0.3506, -0.8467, 0.6279, 0.3506, -0.8081, 0.6279, 0.4319, -0.8467, 0.5576, 0.3506, -0.8467, 0.5576, 0.3506, -0.8081, 0.6279, 0.4319, -0.8081, 0.5576, 0.4319, -0.8081, 0.6279, 0.4319, -0.7617, 0.6279, 0.5088, -0.8081, 0.5576, 0.4319, -0.8081, 0.5576, 0.4319, -0.7617, 0.6279, 0.5088, -0.7617, 0.5576, 0.5088, -0.7617, 0.6279, -0.5088, -0.8081, 0.6279, -0.4319, -0.7617, 0.5576, -0.5088, -0.7617, 0.5576, -0.5088, -0.8081, 0.6279, -0.4319, -0.8081, 0.5576, -0.4319, -0.2659, 0.4668, 0.877, -0.1864, 0.4668, 0.897, -0.2659, 0.4031, 0.877, -0.2659, 0.4031, 0.877, -0.1864, 0.4668, 0.897, -0.1864, 0.4031, 0.897, -0.5811, 0.6279, 0.7085, -0.5088, 0.6279, 0.7617, -0.5811, 0.5576, 0.7085, -0.5811, 0.5576, 0.7085, -0.5088, 0.6279, 0.7617, -0.5024, 0.5576, 0.7661, -0.9121, 0.6279, 0.0898, -0.8989, 0.6279, 0.1787, -0.9121, 0.5576, 0.0898, -0.9121, 0.5576, 0.0898, -0.8989, 0.6279, 0.1787, -0.8989, 0.5576, 0.1787, -0.877, 0.6279, -0.2659, -0.8989, 0.6279, -0.1787, -0.877, 0.5576, -0.2659, -0.877, 0.5576, -0.2659, -0.8989, 0.6279, -0.1787, -0.8989, 0.5576, -0.1787, -0.2659, 0.6279, 0.877, -0.1787, 0.6279, 0.8989, -0.2659, 0.5498, 0.877, -0.2659, 0.5498, 0.877, -0.1787, 0.6279, 0.8989, -0.1864, 0.5576, 0.897, -0.6479, 0.6279, -0.6479, -0.7085, 0.6279, -0.5811, -0.6479, 0.5576, -0.6479, -0.6479, 0.5576, -0.6479, -0.7085, 0.6279, -0.5811, -0.7085, 0.5576, -0.5811, -0.6479, 0.6279, 0.6479, -0.5811, 0.6279, 0.7085, -0.6479, 0.5576, 0.6479, -0.6479, 0.5576, 0.6479, -0.5811, 0.6279, 0.7085, -0.5811, 0.5576, 0.7085, -0.4319, 0.6279, -0.8081, -0.5088, 0.6279, -0.7617, -0.4319, 0.5576, -0.8081, -0.4319, 0.5576, -0.8081, -0.5088, 0.6279, -0.7617, -0.5088, 0.5576, -0.7617, -0.8081, 0.6279, -0.4319, -0.8467, 0.6279, -0.3506, -0.8081, 0.5576, -0.4319, -0.8081, 0.5576, -0.4319, -0.8467, 0.6279, -0.3506, -0.8467, 0.5576, -0.3506, -0.3506, 0.6279, -0.8467, -0.4319, 0.6279, -0.8081, -0.3506, 0.5576, -0.8467, -0.3506, 0.5576, -0.8467, -0.4319, 0.6279, -0.8081, -0.4319, 0.5576, -0.8081, -0.8467, 0.6279, -0.3506, -0.877, 0.6279, -0.2659, -0.8467, 0.5576, -0.3506, -0.8467, 0.5576, -0.3506, -0.877, 0.6279, -0.2659, -0.877, 0.5576, -0.2659, -0.4319, 0.4668, 0.8081, -0.3506, 0.4668, 0.8467, -0.4319, 0.4031, 0.8081, -0.4319, 0.4031, 0.8081, -0.3506, 0.4668, 0.8467, -0.3506, 0.4031, 0.8467, -0.0898, 0.6279, -0.9121, -0.1787, 0.6279, -0.8989, -0.0898, 0.5576, -0.9121, -0.0898, 0.5576, -0.9121, -0.1787, 0.6279, -0.8989, -0.1787, 0.5576, -0.8989, -0.3506, 0.4668, 0.8467, -0.2659, 0.4668, 0.877, -0.3506, 0.4031, 0.8467, -0.3506, 0.4031, 0.8467, -0.2659, 0.4668, 0.877, -0.2659, 0.4031, 0.877, -0.9165, 0.6279, 0, -0.9121, 0.6279, 0.0898, -0.9165, 0.5576, 0, -0.9165, 0.5576, 0, -0.9121, 0.6279, 0.0898, -0.9121, 0.5576, 0.0898, -0.1787, 0.6279, -0.8989, -0.2659, 0.6279, -0.877, -0.1787, 0.5576, -0.8989, -0.1787, 0.5576, -0.8989, -0.2659, 0.6279, -0.877, -0.2659, 0.5576, -0.877, -0.8989, 0.6279, 0.1787, -0.877, 0.6279, 0.2659, -0.8989, 0.5576, 0.1787, -0.8989, 0.5576, 0.1787, -0.877, 0.6279, 0.2659, -0.877, 0.5576, 0.2659, 0, 0.6279, -0.9165, -0.0898, 0.6279, -0.9121, 0, 0.5576, -0.9165, 0, 0.5576, -0.9165, -0.0898, 0.6279, -0.9121, -0.0898, 0.5576, -0.9121, -0.5024, 0.4668, 0.7661, -0.4319, 0.4668, 0.8081, -0.5024, 0.4031, 0.7661, -0.5024, 0.4031, 0.7661, -0.4319, 0.4668, 0.8081, -0.4319, 0.4031, 0.8081, -0.1864, 0.5576, 0.897, -0.1694, 0.5498, 0.8921, -0.1772, 0.542, 0.8911, -0.5049, 0.542, 0.7554, -0.5107, 0.5498, 0.7505, -0.5024, 0.5576, 0.7661, -0.1769, 0.4031, 0.8911, -0.1844, 0.395, 0.8892, -0.1864, 0.4031, 0.897, -0.5024, 0.4031, 0.7661, -0.4983, 0.395, 0.7593, -0.5049, 0.4031, 0.7554, -0.7021, 0.5498, -0.5762, -0.6426, 0.5498, -0.6426, -0.7085, 0.5576, -0.5811, -0.7085, 0.5576, -0.5811, -0.6426, 0.5498, -0.6426, -0.6479, 0.5576, -0.6479, -0.5762, 0.5498, 0.7021, -0.6426, 0.5498, 0.6426, -0.5811, 0.5576, 0.7085, -0.5811, 0.5576, 0.7085, -0.6426, 0.5498, 0.6426, -0.6479, 0.5576, 0.6479, -0.5107, 0.5498, 0.7505, -0.5762, 0.5498, 0.7021, -0.5024, 0.5576, 0.7661, -0.5024, 0.5576, 0.7661, -0.5762, 0.5498, 0.7021, -0.5811, 0.5576, 0.7085, -0.6426, 0.5498, -0.6426, -0.5762, 0.5498, -0.7021, -0.6479, 0.5576, -0.6479, -0.6479, 0.5576, -0.6479, -0.5762, 0.5498, -0.7021, -0.5811, 0.5576, -0.7085, -0.6426, 0.5498, 0.6426, -0.7021, 0.5498, 0.5762, -0.6479, 0.5576, 0.6479, -0.6479, 0.5576, 0.6479, -0.7021, 0.5498, 0.5762, -0.7085, 0.5576, 0.5811, -0.8013, 0.5498, -0.4282, -0.7554, 0.5498, -0.5044, -0.8081, 0.5576, -0.4319, -0.8081, 0.5576, -0.4319, -0.7554, 0.5498, -0.5044, -0.7617, 0.5576, -0.5088, -0.4282, 0.5498, -0.8013, -0.3477, 0.5498, -0.8394, -0.4319, 0.5576, -0.8081, -0.4319, 0.5576, -0.8081, -0.3477, 0.5498, -0.8394, -0.3506, 0.5576, -0.8467, -0.8013, 0.5498, 0.4282, -0.8394, 0.5498, 0.3477, -0.8081, 0.5576, 0.4319, -0.8081, 0.5576, 0.4319, -0.8394, 0.5498, 0.3477, -0.8467, 0.5576, 0.3506, -0.7554, 0.5498, 0.5044, -0.8013, 0.5498, 0.4282, -0.7617, 0.5576, 0.5088, -0.7617, 0.5576, 0.5088, -0.8013, 0.5498, 0.4282, -0.8081, 0.5576, 0.4319, -0.7021, 0.5498, 0.5762, -0.7554, 0.5498, 0.5044, -0.7085, 0.5576, 0.5811, -0.7085, 0.5576, 0.5811, -0.7554, 0.5498, 0.5044, -0.7617, 0.5576, 0.5088, -0.8394, 0.5498, -0.3477, -0.8013, 0.5498, -0.4282, -0.8467, 0.5576, -0.3506, -0.8467, 0.5576, -0.3506, -0.8013, 0.5498, -0.4282, -0.8081, 0.5576, -0.4319, -0.0891, 0.5498, -0.9043, 0, 0.5498, -0.9087, -0.0898, 0.5576, -0.9121, -0.0898, 0.5576, -0.9121, 0, 0.5498, -0.9087, 0, 0.5576, -0.9165, -0.8691, 0.5498, 0.2637, -0.8911, 0.5498, 0.1772, -0.877, 0.5576, 0.2659, -0.877, 0.5576, 0.2659, -0.8911, 0.5498, 0.1772, -0.8989, 0.5576, 0.1787, -0.9121, 0.5576, -0.0898, -0.9165, 0.5576, 0, -0.9043, 0.5498, -0.0891, -0.9043, 0.5498, -0.0891, -0.9165, 0.5576, 0, -0.9087, 0.5498, 0, -0.9043, 0.5498, -0.0891, -0.8911, 0.5498, -0.1772, -0.9121, 0.5576, -0.0898, -0.9121, 0.5576, -0.0898, -0.8911, 0.5498, -0.1772, -0.8989, 0.5576, -0.1787, -0.0891, 0.5498, 0.9043, -0.1694, 0.5498, 0.8921, -0.0898, 0.5576, 0.9121, -0.0898, 0.5576, 0.9121, -0.1694, 0.5498, 0.8921, -0.1864, 0.5576, 0.897, -0.7554, 0.5498, -0.5044, -0.7021, 0.5498, -0.5762, -0.7617, 0.5576, -0.5088, -0.7617, 0.5576, -0.5088, -0.7021, 0.5498, -0.5762, -0.7085, 0.5576, -0.5811, 0, 0.5498, 0.9087, -0.0891, 0.5498, 0.9043, 0, 0.5576, 0.9165, 0, 0.5576, 0.9165, -0.0891, 0.5498, 0.9043, -0.0898, 0.5576, 0.9121, -0.5762, 0.5498, -0.7021, -0.5044, 0.5498, -0.7554, -0.5811, 0.5576, -0.7085, -0.5811, 0.5576, -0.7085, -0.5044, 0.5498, -0.7554, -0.5088, 0.5576, -0.7617, -0.8691, 0.5498, -0.2637, -0.8394, 0.5498, -0.3477, -0.877, 0.5576, -0.2659, -0.877, 0.5576, -0.2659, -0.8394, 0.5498, -0.3477, -0.8467, 0.5576, -0.3506, -0.5044, 0.5498, -0.7554, -0.4282, 0.5498, -0.8013, -0.5088, 0.5576, -0.7617, -0.5088, 0.5576, -0.7617, -0.4282, 0.5498, -0.8013, -0.4319, 0.5576, -0.8081, -0.8911, 0.5498, -0.1772, -0.8691, 0.5498, -0.2637, -0.8989, 0.5576, -0.1787, -0.8989, 0.5576, -0.1787, -0.8691, 0.5498, -0.2637, -0.877, 0.5576, -0.2659, -0.9043, 0.5498, 0.0891, -0.9087, 0.5498, 0, -0.9121, 0.5576, 0.0898, -0.9121, 0.5576, 0.0898, -0.9087, 0.5498, 0, -0.9165, 0.5576, 0, -0.2637, 0.5498, -0.8691, -0.1772, 0.5498, -0.8911, -0.2659, 0.5576, -0.877, -0.2659, 0.5576, -0.877, -0.1772, 0.5498, -0.8911, -0.1787, 0.5576, -0.8989, -0.8911, 0.5498, 0.1772, -0.9043, 0.5498, 0.0891, -0.8989, 0.5576, 0.1787, -0.8989, 0.5576, 0.1787, -0.9043, 0.5498, 0.0891, -0.9121, 0.5576, 0.0898, -0.3477, 0.5498, -0.8394, -0.2637, 0.5498, -0.8691, -0.3506, 0.5576, -0.8467, -0.3506, 0.5576, -0.8467, -0.2637, 0.5498, -0.8691, -0.2659, 0.5576, -0.877, -0.8394, 0.5498, 0.3477, -0.8691, 0.5498, 0.2637, -0.8467, 0.5576, 0.3506, -0.8467, 0.5576, 0.3506, -0.8691, 0.5498, 0.2637, -0.877, 0.5576, 0.2659, -0.1772, 0.5498, -0.8911, -0.0891, 0.5498, -0.9043, -0.1787, 0.5576, -0.8989, -0.1787, 0.5576, -0.8989, -0.0891, 0.5498, -0.9043, -0.0898, 0.5576, -0.9121, -0.1864, 0.4668, 0.897, -0.1864, 0.5576, 0.897, -0.1769, 0.4668, 0.8911, -0.1769, 0.4668, 0.8911, -0.1864, 0.5576, 0.897, -0.1772, 0.542, 0.8911, -0.5024, 0.5576, 0.7661, -0.5024, 0.4668, 0.7661, -0.5049, 0.542, 0.7554, -0.5049, 0.542, 0.7554, -0.5024, 0.4668, 0.7661, -0.5049, 0.4668, 0.7554, -0.1844, 0.395, 0.8892, -0.2637, 0.395, 0.8691, -0.1864, 0.4031, 0.897, -0.1864, 0.4031, 0.897, -0.2637, 0.395, 0.8691, -0.2659, 0.4031, 0.877, -0.4282, 0.395, 0.8013, -0.4983, 0.395, 0.7593, -0.4319, 0.4031, 0.8081, -0.4319, 0.4031, 0.8081, -0.4983, 0.395, 0.7593, -0.5024, 0.4031, 0.7661, -0.3477, 0.395, 0.8394, -0.4282, 0.395, 0.8013, -0.3506, 0.4031, 0.8467, -0.3506, 0.4031, 0.8467, -0.4282, 0.395, 0.8013, -0.4319, 0.4031, 0.8081, -0.2637, 0.395, 0.8691, -0.3477, 0.395, 0.8394, -0.2659, 0.4031, 0.877, -0.2659, 0.4031, 0.877, -0.3477, 0.395, 0.8394, -0.3506, 0.4031, 0.8467, -0.1864, 0.4031, 0.897, -0.1864, 0.4668, 0.897, -0.1769, 0.4031, 0.8911, -0.1769, 0.4031, 0.8911, -0.1864, 0.4668, 0.897, -0.1769, 0.4668, 0.8911, -0.5024, 0.4668, 0.7661, -0.5024, 0.4031, 0.7661, -0.5049, 0.4668, 0.7554, -0.5049, 0.4668, 0.7554, -0.5024, 0.4031, 0.7661, -0.5049, 0.4031, 0.7554, -0.8989, 0.6279, -0.1787, -0.9121, 0.6279, -0.0898, -0.8989, 0.5576, -0.1787, -0.8989, 0.5576, -0.1787, -0.9121, 0.6279, -0.0898, -0.9121, 0.5576, -0.0898, -0.6782, 1.5283, -0.0544, -0.7734, 1.4336, -0.0522, -0.7129, 1.498, -0.0702, -0.7129, 1.498, -0.0702, -0.7734, 1.4336, -0.0522, -0.772, 1.4336, -0.076, -0.9448, 1.2471, 0.0369, -0.9414, 1.2539, 0.0437, -0.9009, 1.2041, 0.0398, -0.9009, 1.2041, 0.0398, -0.9414, 1.2539, 0.0437, -0.8989, 1.2119, 0.0466, -0.7593, 1.46, 0.0466, -0.8208, 1.3818, 0.0468, -0.8057, 1.4834, 0.0439, -0.8057, 1.4834, 0.0439, -0.8208, 1.3818, 0.0468, -0.8599, 1.4072, 0.044, -0.7593, 1.46, 0.0466, -0.8057, 1.4834, 0.0439, -0.6875, 1.5293, 0.0468, -0.6875, 1.5293, 0.0468, -0.8057, 1.4834, 0.0439, -0.7466, 1.5508, 0.0432, -0.8608, 1.293, -0.0848, -0.8628, 1.293, -0.0481, -0.8892, 1.2188, -0.0876, -0.8892, 1.2188, -0.0876, -0.8628, 1.293, -0.0481, -0.8931, 1.209, -0.0529, -0.8931, 1.209, -0.0529, -0.9063, 1.1416, -0.0892, -0.8892, 1.2188, -0.0876, -0.8208, 1.3809, -0.0412, -0.7778, 1.4404, -0.0451, -0.8604, 1.4072, -0.0398, -0.8604, 1.4072, -0.0398, -0.7778, 1.4404, -0.0451, -0.8057, 1.4834, -0.0439, -0.772, 1.4336, 0.076, -0.8218, 1.3652, 0.0809, -0.7573, 1.4512, 0.0539, -0.7573, 1.4512, 0.0539, -0.8218, 1.3652, 0.0809, -0.8159, 1.375, 0.0541, -0.8159, 1.375, 0.0541, -0.8218, 1.3652, 0.0809, -0.8623, 1.293, 0.0547, -0.8623, 1.293, 0.0547, -0.8218, 1.3652, 0.0809, -0.8608, 1.293, 0.0848, -0.8892, 1.2188, 0.0876, -0.9063, 1.1416, 0.0892, -0.8931, 1.209, 0.0541, -0.8965, 1.1963, -0.0427, -0.9063, 1.1416, -0.0892, -0.8931, 1.209, -0.0529, -0.9009, 1.2041, 0.0398, -0.9028, 1.2031, 0, -0.9448, 1.2471, 0.0369, -0.9448, 1.2471, 0.0369, -0.9028, 1.2031, 0, -0.9463, 1.2461, 0, -0.9028, 1.2031, 0, -0.9009, 1.2041, -0.0396, -0.9463, 1.2461, 0, -0.9463, 1.2461, 0, -0.9009, 1.2041, -0.0396, -0.9448, 1.2471, -0.0369, -0.6694, 1.5352, 0.0443, -0.645, 1.5557, 0.0635, -0.6782, 1.5283, 0.0542, -0.6875, 1.5293, -0.0472, -0.6816, 1.5342, -0.0405, -0.7466, 1.5508, -0.045, -0.7466, 1.5508, -0.045, -0.6816, 1.5342, -0.0405, -0.7422, 1.5566, -0.0383, -0.6694, 1.5352, -0.0445, -0.645, 1.5557, -0.0635, -0.6719, 1.5352, 0, -0.6719, 1.5352, 0, -0.645, 1.5557, -0.0635, -0.6479, 1.5557, 0, -0.645, 1.5557, -0.0635, -0.6782, 1.5283, -0.0544, -0.7129, 1.498, -0.0702, -0.9063, 1.1416, 0.0892, -0.9106, 1.1416, 0, -0.8965, 1.1963, 0.0429, -0.8965, 1.1963, 0.0429, -0.9106, 1.1416, 0, -0.8984, 1.1953, 0, -0.7466, 1.5508, 0.0432, -0.7422, 1.5566, 0.0363, -0.6875, 1.5293, 0.0468, -0.6875, 1.5293, 0.0468, -0.7422, 1.5566, 0.0363, -0.6816, 1.5342, 0.0401, -0.6816, 1.5342, -0.0405, -0.6841, 1.5342, 0, -0.7422, 1.5566, -0.0383, -0.7422, 1.5566, -0.0383, -0.6841, 1.5342, 0, -0.7446, 1.5547, 0, -0.8057, 1.4834, -0.0439, -0.7778, 1.4404, -0.0451, -0.7466, 1.5508, -0.045, -0.7466, 1.5508, -0.045, -0.7778, 1.4404, -0.0451, -0.6875, 1.5293, -0.0472, -0.8218, 1.3652, -0.0809, -0.8164, 1.375, -0.0482, -0.8608, 1.293, -0.0848, -0.8608, 1.293, -0.0848, -0.8164, 1.375, -0.0482, -0.8628, 1.293, -0.0481, -0.8984, 1.1953, 0, -0.9106, 1.1416, 0, -0.8965, 1.1963, -0.0427, -0.8965, 1.1963, -0.0427, -0.9106, 1.1416, 0, -0.9063, 1.1416, -0.0892, -0.8608, 1.293, 0.0848, -0.8892, 1.2188, 0.0876, -0.8623, 1.293, 0.0547, -0.8623, 1.293, 0.0547, -0.8892, 1.2188, 0.0876, -0.8931, 1.209, 0.0541, -0.9063, 1.1416, 0.0892, -0.8965, 1.1963, 0.0429, -0.8931, 1.209, 0.0541, -0.8682, 1.2979, 0.0473, -0.8989, 1.2119, 0.0466, -0.9063, 1.3291, 0.0444, -0.9063, 1.3291, 0.0444, -0.8989, 1.2119, 0.0466, -0.9414, 1.2539, 0.0437, -0.8208, 1.3818, 0.0468, -0.8682, 1.2979, 0.0473, -0.8599, 1.4072, 0.044, -0.8599, 1.4072, 0.044, -0.8682, 1.2979, 0.0473, -0.9063, 1.3291, 0.0444, -0.8687, 1.2969, -0.0411, -0.8208, 1.3809, -0.0412, -0.9067, 1.3281, -0.0397, -0.9067, 1.3281, -0.0397, -0.8208, 1.3809, -0.0412, -0.8604, 1.4072, -0.0398, -0.7778, 1.4404, -0.0451, -0.8208, 1.3809, -0.0412, -0.7734, 1.4336, -0.0522, -0.7734, 1.4336, -0.0522, -0.8208, 1.3809, -0.0412, -0.8164, 1.375, -0.0482, -0.8208, 1.3818, 0.0468, -0.7593, 1.46, 0.0466, -0.8159, 1.375, 0.0541, -0.8159, 1.375, 0.0541, -0.7593, 1.46, 0.0466, -0.7573, 1.4512, 0.0539, -0.8989, 1.2119, 0.0466, -0.8682, 1.2979, 0.0473, -0.8931, 1.209, 0.0541, -0.8931, 1.209, 0.0541, -0.8682, 1.2979, 0.0473, -0.8623, 1.293, 0.0547, -0.8687, 1.2969, -0.0411, -0.8989, 1.2119, -0.0459, -0.8628, 1.293, -0.0481, -0.8628, 1.293, -0.0481, -0.8989, 1.2119, -0.0459, -0.8931, 1.209, -0.0529, -0.8989, 1.2119, -0.0459, -0.9009, 1.2041, -0.0396, -0.8931, 1.209, -0.0529, -0.8931, 1.209, -0.0529, -0.9009, 1.2041, -0.0396, -0.8965, 1.1963, -0.0427, -0.8931, 1.209, 0.0541, -0.8965, 1.1963, 0.0429, -0.8989, 1.2119, 0.0466, -0.8989, 1.2119, 0.0466, -0.8965, 1.1963, 0.0429, -0.9009, 1.2041, 0.0398, -0.9009, 1.2041, -0.0396, -0.9028, 1.2031, 0, -0.8965, 1.1963, -0.0427, -0.8965, 1.1963, -0.0427, -0.9028, 1.2031, 0, -0.8984, 1.1953, 0, -0.6694, 1.5352, 0.0443, -0.6782, 1.5283, 0.0542, -0.6816, 1.5342, 0.0401, -0.6816, 1.5342, 0.0401, -0.6782, 1.5283, 0.0542, -0.6875, 1.5293, 0.0468, -0.7593, 1.46, 0.0466, -0.6875, 1.5293, 0.0468, -0.7573, 1.4512, 0.0539, -0.7573, 1.4512, 0.0539, -0.6875, 1.5293, 0.0468, -0.6782, 1.5283, 0.0542, -0.6875, 1.5293, -0.0472, -0.7778, 1.4404, -0.0451, -0.6782, 1.5283, -0.0544, -0.6782, 1.5283, -0.0544, -0.7778, 1.4404, -0.0451, -0.7734, 1.4336, -0.0522, -0.6816, 1.5342, -0.0405, -0.6875, 1.5293, -0.0472, -0.6694, 1.5352, -0.0445, -0.6694, 1.5352, -0.0445, -0.6875, 1.5293, -0.0472, -0.6782, 1.5283, -0.0544, -0.6841, 1.5342, 0, -0.6816, 1.5342, -0.0405, -0.6719, 1.5352, 0, -0.6719, 1.5352, 0, -0.6816, 1.5342, -0.0405, -0.6694, 1.5352, -0.0445, -0.8628, 1.293, -0.0481, -0.8164, 1.375, -0.0482, -0.8687, 1.2969, -0.0411, -0.8687, 1.2969, -0.0411, -0.8164, 1.375, -0.0482, -0.8208, 1.3809, -0.0412, -0.8159, 1.375, 0.0541, -0.8623, 1.293, 0.0547, -0.8208, 1.3818, 0.0468, -0.8208, 1.3818, 0.0468, -0.8623, 1.293, 0.0547, -0.8682, 1.2979, 0.0473, -0.9028, 1.2031, 0, -0.9009, 1.2041, 0.0398, -0.8984, 1.1953, 0, -0.8984, 1.1953, 0, -0.9009, 1.2041, 0.0398, -0.8965, 1.1963, 0.0429, -0.6719, 1.5352, 0, -0.6694, 1.5352, 0.0443, -0.6841, 1.5342, 0, -0.6841, 1.5342, 0, -0.6694, 1.5352, 0.0443, -0.6816, 1.5342, 0.0401, -0.7734, 1.4336, -0.0522, -0.8164, 1.375, -0.0482, -0.772, 1.4336, -0.076, -0.772, 1.4336, -0.076, -0.8164, 1.375, -0.0482, -0.8218, 1.3652, -0.0809, 0.9609, 1.375, 0.0394, 0.9194, 1.4453, 0.0391, 1.0098, 1.416, 0.0349, 1.0098, 1.416, 0.0349, 0.9194, 1.4453, 0.0391, 0.9731, 1.4805, 0.0346, 0.645, 1.5557, -0.0635, 0.6782, 1.5283, -0.0544, 0.6694, 1.5352, -0.0445, 1.0156, 1.4199, -0.0276, 1.042, 1.3613, -0.0285, 1.0156, 1.4199, 0, 1.0156, 1.4199, 0, 1.042, 1.3613, -0.0285, 1.043, 1.3604, 0, 1.0156, 1.4199, 0, 1.043, 1.3604, 0, 1.0156, 1.4199, 0.0276, 1.0156, 1.4199, 0.0276, 1.043, 1.3604, 0, 1.042, 1.3613, 0.0285, 0.979, 1.4834, -0.0274, 1.0156, 1.4199, -0.0276, 0.9795, 1.4834, 0, 0.9795, 1.4834, 0, 1.0156, 1.4199, -0.0276, 1.0156, 1.4199, 0, 0.937, 1.5449, 0, 0.9795, 1.4834, 0, 0.9365, 1.5449, 0.0282, 0.9365, 1.5449, 0.0282, 0.9795, 1.4834, 0, 0.979, 1.4834, 0.0274, 0.9365, 1.5449, -0.0282, 0.979, 1.4834, -0.0274, 0.937, 1.5449, 0, 0.937, 1.5449, 0, 0.979, 1.4834, -0.0274, 0.9795, 1.4834, 0, 0.9302, 1.542, -0.0354, 0.8711, 1.5137, -0.0395, 0.9731, 1.4805, -0.0344, 0.9731, 1.4805, -0.0344, 0.8711, 1.5137, -0.0395, 0.9194, 1.4453, -0.037, 0.9795, 1.4834, 0, 1.0156, 1.4199, 0, 0.979, 1.4834, 0.0274, 0.979, 1.4834, 0.0274, 1.0156, 1.4199, 0, 1.0156, 1.4199, 0.0276, 1.041, 1.3486, 0, 0.9961, 1.2998, 0, 1.04, 1.3496, 0.0289, 1.04, 1.3496, 0.0289, 0.9961, 1.2998, 0, 0.9951, 1.3008, 0.0327, 0.8926, 1.5977, -0.0315, 0.9365, 1.5449, -0.0282, 0.8926, 1.5967, 0, 0.8926, 1.5967, 0, 0.9365, 1.5449, -0.0282, 0.937, 1.5449, 0, 0.9194, 1.4453, 0.0391, 0.8711, 1.5137, 0.0395, 0.9731, 1.4805, 0.0346, 0.9731, 1.4805, 0.0346, 0.8711, 1.5137, 0.0395, 0.9302, 1.542, 0.0354, 0.8818, 1.6006, 0, 0.8818, 1.6006, 0.0263, 0.8164, 1.5781, 0, 0.8164, 1.5781, 0, 0.8818, 1.6006, 0.0263, 0.8154, 1.5791, 0.0311, 1.0098, 1.416, -0.0347, 0.9609, 1.374, -0.037, 1.0371, 1.3564, -0.0356, 1.0371, 1.3564, -0.0356, 0.9609, 1.374, -0.037, 0.9917, 1.3076, -0.0392, 0.9194, 1.4453, -0.037, 0.9609, 1.374, -0.037, 0.9731, 1.4805, -0.0344, 0.9731, 1.4805, -0.0344, 0.9609, 1.374, -0.037, 1.0098, 1.416, -0.0347, 1.04, 1.3496, -0.0289, 0.9951, 1.3008, -0.0327, 1.041, 1.3486, 0, 1.041, 1.3486, 0, 0.9951, 1.3008, -0.0327, 0.9961, 1.2998, 0, 0.8857, 1.5947, -0.0385, 0.8198, 1.5742, -0.0416, 0.9302, 1.542, -0.0354, 0.9302, 1.542, -0.0354, 0.8198, 1.5742, -0.0416, 0.8711, 1.5137, -0.0395, 0.8818, 1.6006, 0, 0.8164, 1.5781, 0, 0.8818, 1.6006, -0.032, 0.8818, 1.6006, -0.032, 0.8164, 1.5781, 0, 0.8154, 1.5791, -0.035, 0.8857, 1.5947, 0.0333, 0.9302, 1.542, 0.0354, 0.8198, 1.5742, 0.038, 0.8198, 1.5742, 0.038, 0.9302, 1.542, 0.0354, 0.8711, 1.5137, 0.0395, 0.9917, 1.3076, 0.0395, 0.9609, 1.375, 0.0394, 1.0371, 1.3564, 0.0356, 1.0371, 1.3564, 0.0356, 0.9609, 1.375, 0.0394, 1.0098, 1.416, 0.0349, 0.9414, 1.2539, 0.0437, 0.9063, 1.3291, 0.0444, 0.9917, 1.3076, 0.0395, 0.9917, 1.3076, 0.0395, 0.9063, 1.3291, 0.0444, 0.9609, 1.375, 0.0394, 0.8599, 1.4072, 0.044, 0.8057, 1.4834, 0.0439, 0.9194, 1.4453, 0.0391, 0.9194, 1.4453, 0.0391, 0.8057, 1.4834, 0.0439, 0.8711, 1.5137, 0.0395, 0.8164, 1.5781, 0, 0.7446, 1.5547, 0, 0.8154, 1.5791, -0.035, 0.8154, 1.5791, -0.035, 0.7446, 1.5547, 0, 0.7422, 1.5566, -0.0383, 0.9063, 1.3291, 0.0444, 0.8599, 1.4072, 0.044, 0.9609, 1.375, 0.0394, 0.9609, 1.375, 0.0394, 0.8599, 1.4072, 0.044, 0.9194, 1.4453, 0.0391, 0.8926, 1.5967, 0, 0.937, 1.5449, 0, 0.8926, 1.5977, 0.0261, 0.8926, 1.5977, 0.0261, 0.937, 1.5449, 0, 0.9365, 1.5449, 0.0282, 0.8164, 1.5781, 0, 0.8154, 1.5791, 0.0311, 0.7446, 1.5547, 0, 0.7446, 1.5547, 0, 0.8154, 1.5791, 0.0311, 0.7422, 1.5566, 0.0363, 0.8604, 1.4072, -0.0398, 0.9067, 1.3281, -0.0397, 0.9194, 1.4453, -0.037, 0.9194, 1.4453, -0.037, 0.9067, 1.3281, -0.0397, 0.9609, 1.374, -0.037, 0.9961, 1.2998, 0, 0.9463, 1.2461, 0, 0.9951, 1.3008, 0.0327, 0.9951, 1.3008, 0.0327, 0.9463, 1.2461, 0, 0.9448, 1.2471, 0.0369, 0.8711, 1.5137, -0.0395, 0.8057, 1.4834, -0.0439, 0.9194, 1.4453, -0.037, 0.9194, 1.4453, -0.037, 0.8057, 1.4834, -0.0439, 0.8604, 1.4072, -0.0398, 0.9951, 1.3008, -0.0327, 0.9448, 1.2471, -0.0369, 0.9961, 1.2998, 0, 0.9961, 1.2998, 0, 0.9448, 1.2471, -0.0369, 0.9463, 1.2461, 0, 0.8198, 1.5742, 0.038, 0.8711, 1.5137, 0.0395, 0.7466, 1.5508, 0.0432, 0.7466, 1.5508, 0.0432, 0.8711, 1.5137, 0.0395, 0.8057, 1.4834, 0.0439, 0.9609, 1.374, -0.037, 0.9067, 1.3281, -0.0397, 0.9917, 1.3076, -0.0392, 0.9917, 1.3076, -0.0392, 0.9067, 1.3281, -0.0397, 0.9414, 1.2539, -0.0433, 0.8198, 1.5742, -0.0416, 0.7466, 1.5508, -0.045, 0.8711, 1.5137, -0.0395, 0.8711, 1.5137, -0.0395, 0.7466, 1.5508, -0.045, 0.8057, 1.4834, -0.0439, 0.6782, 1.5283, 0.0542, 0.7129, 1.498, 0.0702, 0.645, 1.5557, 0.0635, 1.04, 1.3496, 0.0289, 1.0371, 1.3564, 0.0356, 1.042, 1.3613, 0.0285, 1.042, 1.3613, -0.0285, 1.0371, 1.3564, -0.0356, 1.04, 1.3496, -0.0289, 0.8926, 1.5977, -0.0315, 0.8818, 1.6006, -0.032, 0.8857, 1.5947, -0.0385, 0.8926, 1.5977, 0.0261, 0.8857, 1.5947, 0.0333, 0.8818, 1.6006, 0.0263, 0.9414, 1.2539, -0.0433, 0.8989, 1.2119, -0.0459, 0.9448, 1.2471, -0.0369, 0.9448, 1.2471, -0.0369, 0.8989, 1.2119, -0.0459, 0.9009, 1.2041, -0.0396, 0.8818, 1.6006, -0.032, 0.8154, 1.5791, -0.035, 0.8857, 1.5947, -0.0385, 0.8857, 1.5947, -0.0385, 0.8154, 1.5791, -0.035, 0.8198, 1.5742, -0.0416, 1.0156, 1.4199, 0.0276, 1.042, 1.3613, 0.0285, 1.0098, 1.416, 0.0349, 1.0098, 1.416, 0.0349, 1.042, 1.3613, 0.0285, 1.0371, 1.3564, 0.0356, 1.0098, 1.416, -0.0347, 1.0371, 1.3564, -0.0356, 1.0156, 1.4199, -0.0276, 1.0156, 1.4199, -0.0276, 1.0371, 1.3564, -0.0356, 1.042, 1.3613, -0.0285, 1.042, 1.3613, 0.0285, 1.043, 1.3604, 0, 1.04, 1.3496, 0.0289, 1.04, 1.3496, 0.0289, 1.043, 1.3604, 0, 1.041, 1.3486, 0, 0.9731, 1.4805, -0.0344, 1.0098, 1.416, -0.0347, 0.979, 1.4834, -0.0274, 0.979, 1.4834, -0.0274, 1.0098, 1.416, -0.0347, 1.0156, 1.4199, -0.0276, 0.9302, 1.542, -0.0354, 0.9731, 1.4805, -0.0344, 0.9365, 1.5449, -0.0282, 0.9365, 1.5449, -0.0282, 0.9731, 1.4805, -0.0344, 0.979, 1.4834, -0.0274, 0.8857, 1.5947, -0.0385, 0.9302, 1.542, -0.0354, 0.8926, 1.5977, -0.0315, 0.8926, 1.5977, -0.0315, 0.9302, 1.542, -0.0354, 0.9365, 1.5449, -0.0282, 0.979, 1.4834, 0.0274, 1.0156, 1.4199, 0.0276, 0.9731, 1.4805, 0.0346, 0.9731, 1.4805, 0.0346, 1.0156, 1.4199, 0.0276, 1.0098, 1.416, 0.0349, 1.04, 1.3496, -0.0289, 1.041, 1.3486, 0, 1.042, 1.3613, -0.0285, 1.042, 1.3613, -0.0285, 1.041, 1.3486, 0, 1.043, 1.3604, 0, 0.9365, 1.5449, 0.0282, 0.979, 1.4834, 0.0274, 0.9302, 1.542, 0.0354, 0.9302, 1.542, 0.0354, 0.979, 1.4834, 0.0274, 0.9731, 1.4805, 0.0346, 0.8926, 1.5977, 0.0261, 0.9365, 1.5449, 0.0282, 0.8857, 1.5947, 0.0333, 0.8857, 1.5947, 0.0333, 0.9365, 1.5449, 0.0282, 0.9302, 1.542, 0.0354, 0.8818, 1.6006, 0.0263, 0.8818, 1.6006, 0, 0.8926, 1.5977, 0.0261, 0.8926, 1.5977, 0.0261, 0.8818, 1.6006, 0, 0.8926, 1.5967, 0, 0.8926, 1.5977, -0.0315, 0.8926, 1.5967, 0, 0.8818, 1.6006, -0.032, 0.8818, 1.6006, -0.032, 0.8926, 1.5967, 0, 0.8818, 1.6006, 0, 1.0371, 1.3564, -0.0356, 0.9917, 1.3076, -0.0392, 1.04, 1.3496, -0.0289, 1.04, 1.3496, -0.0289, 0.9917, 1.3076, -0.0392, 0.9951, 1.3008, -0.0327, 0.6694, 1.5352, 0.0443, 0.645, 1.5557, 0.0635, 0.6719, 1.5352, 0, 0.6719, 1.5352, 0, 0.645, 1.5557, 0.0635, 0.6479, 1.5557, 0, 0.9917, 1.3076, 0.0395, 1.0371, 1.3564, 0.0356, 0.9951, 1.3008, 0.0327, 0.9951, 1.3008, 0.0327, 1.0371, 1.3564, 0.0356, 1.04, 1.3496, 0.0289, 0.9414, 1.2539, 0.0437, 0.9917, 1.3076, 0.0395, 0.9448, 1.2471, 0.0369, 0.9448, 1.2471, 0.0369, 0.9917, 1.3076, 0.0395, 0.9951, 1.3008, 0.0327, 0.8154, 1.5791, -0.035, 0.7422, 1.5566, -0.0383, 0.8198, 1.5742, -0.0416, 0.8198, 1.5742, -0.0416, 0.7422, 1.5566, -0.0383, 0.7466, 1.5508, -0.045, 0.9917, 1.3076, -0.0392, 0.9414, 1.2539, -0.0433, 0.9951, 1.3008, -0.0327, 0.9951, 1.3008, -0.0327, 0.9414, 1.2539, -0.0433, 0.9448, 1.2471, -0.0369, 0.8154, 1.5791, 0.0311, 0.8818, 1.6006, 0.0263, 0.8198, 1.5742, 0.038, 0.8198, 1.5742, 0.038, 0.8818, 1.6006, 0.0263, 0.8857, 1.5947, 0.0333, 0.7422, 1.5566, 0.0363, 0.8154, 1.5791, 0.0311, 0.7466, 1.5508, 0.0432, 0.7466, 1.5508, 0.0432, 0.8154, 1.5791, 0.0311, 0.8198, 1.5742, 0.038, 0.9063, 1.1416, 0.0892, 0.8931, 1.1416, 0.1776, 0.8892, 1.2188, 0.0876, 0.8892, 1.2188, 0.0876, 0.8931, 1.1416, 0.1776, 0.8765, 1.2188, 0.1743, 0.8892, 1.2188, 0.0876, 0.8765, 1.2188, 0.1743, 0.8608, 1.293, 0.0848, 0.8608, 1.293, 0.0848, 0.8765, 1.2188, 0.1743, 0.8481, 1.293, 0.1687, 0.8608, 1.293, 0.0848, 0.8481, 1.293, 0.1687, 0.8218, 1.3652, 0.0809, 0.8218, 1.3652, 0.0809, 0.8481, 1.293, 0.1687, 0.8096, 1.3652, 0.161, 0.8218, 1.3652, 0.0809, 0.8096, 1.3652, 0.161, 0.772, 1.4336, 0.076, 0.772, 1.4336, 0.076, 0.8096, 1.3652, 0.161, 0.7612, 1.4336, 0.1514, 0.772, 1.4336, 0.076, 0.7612, 1.4336, 0.1514, 0.7129, 1.498, 0.0702, 0.7129, 1.498, 0.0702, 0.7612, 1.4336, 0.1514, 0.7026, 1.498, 0.1398, 0.7129, 1.498, 0.0702, 0.7026, 1.498, 0.1398, 0.645, 1.5557, 0.0635, 0.645, 1.5557, 0.0635, 0.7026, 1.498, 0.1398, 0.6353, 1.5557, 0.1263, 0.9067, 1.3281, -0.0397, 0.8687, 1.2969, -0.0411, 0.9414, 1.2539, -0.0433, 0.9414, 1.2539, -0.0433, 0.8687, 1.2969, -0.0411, 0.8989, 1.2119, -0.0459, 0.7446, 1.5547, 0, 0.7422, 1.5566, 0.0363, 0.6841, 1.5342, 0, 0.6841, 1.5342, 0, 0.7422, 1.5566, 0.0363, 0.6816, 1.5342, 0.0401, 0.772, 1.4336, 0.076, 0.7129, 1.498, 0.0702, 0.7573, 1.4512, 0.0539, 0.7573, 1.4512, 0.0539, 0.7129, 1.498, 0.0702, 0.6782, 1.5283, 0.0542, 0.8931, 1.1416, -0.1776, 0.9063, 1.1416, -0.0892, 0.8765, 1.2188, -0.1743, 0.8765, 1.2188, -0.1743, 0.9063, 1.1416, -0.0892, 0.8892, 1.2188, -0.0876, 0.8765, 1.2188, -0.1743, 0.8892, 1.2188, -0.0876, 0.8481, 1.293, -0.1687, 0.8481, 1.293, -0.1687, 0.8892, 1.2188, -0.0876, 0.8608, 1.293, -0.0848, 0.8481, 1.293, -0.1687, 0.8608, 1.293, -0.0848, 0.8096, 1.3652, -0.161, 0.8096, 1.3652, -0.161, 0.8608, 1.293, -0.0848, 0.8218, 1.3652, -0.0809, 0.8096, 1.3652, -0.161, 0.8218, 1.3652, -0.0809, 0.7612, 1.4336, -0.1514, 0.7612, 1.4336, -0.1514, 0.8218, 1.3652, -0.0809, 0.772, 1.4336, -0.076, 0.7612, 1.4336, -0.1514, 0.772, 1.4336, -0.076, 0.7026, 1.498, -0.1398, 0.7026, 1.498, -0.1398, 0.772, 1.4336, -0.076, 0.7129, 1.498, -0.0702, 0.7026, 1.498, -0.1398, 0.7129, 1.498, -0.0702, 0.6353, 1.5557, -0.1263, 0.6353, 1.5557, -0.1263, 0.7129, 1.498, -0.0702, 0.645, 1.5557, -0.0635, 0.2368, 1.1064, 0.5845, 0.2053, 1.0576, 0.604, 0.2064, 1.084, 0.5991, 0.2064, 1.084, 0.5991, 0.2053, 1.0576, 0.604, 0.1769, 1.041, 0.6147, 0.0159, 0.7334, 0.835, 0, 0.7324, 0.8354, 0.0348, 0.7437, 0.8335, 0.0348, 0.7437, 0.8335, 0, 0.7324, 0.8354, 0.0472, 0.7578, 0.833, 0.0472, 0.7578, 0.833, 0, 0.7324, 0.8354, 0.0554, 0.7759, 0.8325, 0.0554, 0.7759, 0.8325, 0, 0.7324, 0.8354, 0, 0.7759, 0.8354, 0.9165, 0.7153, 0, 0.9165, 0.6279, 0, 0.9121, 0.7153, 0.0898, 0.9121, 0.7153, 0.0898, 0.9165, 0.6279, 0, 0.9121, 0.6279, 0.0898, 0.9165, 0.8022, 0, 0.9165, 0.7153, 0, 0.9121, 0.8022, 0.0898, 0.9121, 0.8022, 0.0898, 0.9165, 0.7153, 0, 0.9121, 0.7153, 0.0898, 0.9165, 0.8892, 0, 0.9165, 0.8022, 0, 0.9121, 0.8892, 0.0898, 0.9121, 0.8892, 0.0898, 0.9165, 0.8022, 0, 0.9121, 0.8022, 0.0898, 0.9165, 0.9766, 0, 0.9165, 0.8892, 0, 0.9121, 0.9766, 0.0898, 0.9121, 0.9766, 0.0898, 0.9165, 0.8892, 0, 0.9121, 0.8892, 0.0898, 0.9165, 1.0635, 0, 0.9165, 0.9766, 0, 0.9121, 1.0635, 0.0898, 0.9121, 1.0635, 0.0898, 0.9165, 0.9766, 0, 0.9121, 0.9766, 0.0898, 0.9106, 1.1416, 0, 0.9165, 1.0635, 0, 0.9063, 1.1416, 0.0892, 0.9063, 1.1416, 0.0892, 0.9165, 1.0635, 0, 0.9121, 1.0635, 0.0898, 0.5713, 1.6084, 0, 0.6479, 1.5557, 0, 0.5684, 1.6084, 0.056, 0.5684, 1.6084, 0.056, 0.6479, 1.5557, 0, 0.645, 1.5557, 0.0635, 0.4871, 1.7266, -0.0369, 0.4856, 1.6602, -0.0406, 0.4888, 1.7266, 0, 0.4888, 1.7266, 0, 0.4856, 1.6602, -0.0406, 0.4878, 1.6602, 0, 0.4138, 1.832, 0.0394, 0.3354, 1.8574, 0.0391, 0.4226, 1.8955, 0.0349, 0.4226, 1.8955, 0.0349, 0.3354, 1.8574, 0.0391, 0.3523, 1.9189, 0.0346, 0.9121, 0.7153, 0.0898, 0.9121, 0.6279, 0.0898, 0.8989, 0.7153, 0.1787, 0.8989, 0.7153, 0.1787, 0.9121, 0.6279, 0.0898, 0.8989, 0.6279, 0.1787, 0.9121, 0.8022, 0.0898, 0.9121, 0.7153, 0.0898, 0.8989, 0.8022, 0.1787, 0.8989, 0.8022, 0.1787, 0.9121, 0.7153, 0.0898, 0.8989, 0.7153, 0.1787, 0.9121, 0.8892, 0.0898, 0.9121, 0.8022, 0.0898, 0.8989, 0.8892, 0.1787, 0.8989, 0.8892, 0.1787, 0.9121, 0.8022, 0.0898, 0.8989, 0.8022, 0.1787, 0.9121, 0.9766, 0.0898, 0.9121, 0.8892, 0.0898, 0.8989, 0.9766, 0.1787, 0.8989, 0.9766, 0.1787, 0.9121, 0.8892, 0.0898, 0.8989, 0.8892, 0.1787, 0.9121, 1.0635, 0.0898, 0.9121, 0.9766, 0.0898, 0.8989, 1.0635, 0.1787, 0.8989, 1.0635, 0.1787, 0.9121, 0.9766, 0.0898, 0.8989, 0.9766, 0.1787, 0.9063, 1.1416, 0.0892, 0.9121, 1.0635, 0.0898, 0.8931, 1.1416, 0.1776, 0.8931, 1.1416, 0.1776, 0.9121, 1.0635, 0.0898, 0.8989, 1.0635, 0.1787, 0.4907, 1.6494, -0.0549, 0.5684, 1.6084, -0.056, 0.4934, 1.6504, 0, 0.4934, 1.6504, 0, 0.5684, 1.6084, -0.056, 0.5713, 1.6084, 0, 0.5684, 1.6084, 0.056, 0.645, 1.5557, 0.0635, 0.5601, 1.6084, 0.1115, 0.5601, 1.6084, 0.1115, 0.645, 1.5557, 0.0635, 0.6353, 1.5557, 0.1263, 0.4788, 1.6631, 0.0475, 0.395, 1.6982, 0.0489, 0.48, 1.7295, 0.0437, 0.48, 1.7295, 0.0437, 0.395, 1.6982, 0.0489, 0.4041, 1.7617, 0.0444, 0.4907, 1.6494, 0.0544, 0.5684, 1.6084, 0.056, 0.4783, 1.6533, 0.0951, 0.4783, 1.6533, 0.0951, 0.5684, 1.6084, 0.056, 0.5601, 1.6084, 0.1115, 0.395, 1.6982, 0.0489, 0.3, 1.7275, 0.0485, 0.4041, 1.7617, 0.0444, 0.4041, 1.7617, 0.0444, 0.3, 1.7275, 0.0485, 0.3169, 1.7891, 0.044, 0.0859, 1.7559, 0.0551, 0.0793, 1.7559, 0.0651, 0.0841, 1.7559, 0, 0.8989, 0.7153, 0.1787, 0.8989, 0.6279, 0.1787, 0.877, 0.7153, 0.2659, 0.877, 0.7153, 0.2659, 0.8989, 0.6279, 0.1787, 0.877, 0.6279, 0.2659, 0.8989, 0.8022, 0.1787, 0.8989, 0.7153, 0.1787, 0.877, 0.8022, 0.2659, 0.877, 0.8022, 0.2659, 0.8989, 0.7153, 0.1787, 0.877, 0.7153, 0.2659, 0.8989, 0.8892, 0.1787, 0.8989, 0.8022, 0.1787, 0.877, 0.8892, 0.2659, 0.877, 0.8892, 0.2659, 0.8989, 0.8022, 0.1787, 0.877, 0.8022, 0.2659, 0.8989, 0.9766, 0.1787, 0.8989, 0.8892, 0.1787, 0.877, 0.9766, 0.2659, 0.877, 0.9766, 0.2659, 0.8989, 0.8892, 0.1787, 0.877, 0.8892, 0.2659, 0.8989, 1.0635, 0.1787, 0.8989, 0.9766, 0.1787, 0.877, 1.0635, 0.2659, 0.877, 1.0635, 0.2659, 0.8989, 0.9766, 0.1787, 0.877, 0.9766, 0.2659, 0.8931, 1.1416, 0.1776, 0.8989, 1.0635, 0.1787, 0.8716, 1.1416, 0.2644, 0.8716, 1.1416, 0.2644, 0.8989, 1.0635, 0.1787, 0.877, 1.0635, 0.2659, 0.8765, 1.2188, 0.1743, 0.8931, 1.1416, 0.1776, 0.855, 1.2188, 0.2593, 0.855, 1.2188, 0.2593, 0.8931, 1.1416, 0.1776, 0.8716, 1.1416, 0.2644, 0.8481, 1.293, 0.1687, 0.8765, 1.2188, 0.1743, 0.8276, 1.293, 0.251, 0.8276, 1.293, 0.251, 0.8765, 1.2188, 0.1743, 0.855, 1.2188, 0.2593, 0.8096, 1.3652, 0.161, 0.8481, 1.293, 0.1687, 0.79, 1.3652, 0.2396, 0.79, 1.3652, 0.2396, 0.8481, 1.293, 0.1687, 0.8276, 1.293, 0.251, 0.7612, 1.4336, 0.1514, 0.8096, 1.3652, 0.161, 0.7427, 1.4336, 0.2252, 0.7427, 1.4336, 0.2252, 0.8096, 1.3652, 0.161, 0.79, 1.3652, 0.2396, 0.7026, 1.498, 0.1398, 0.7612, 1.4336, 0.1514, 0.6855, 1.498, 0.208, 0.6855, 1.498, 0.208, 0.7612, 1.4336, 0.1514, 0.7427, 1.4336, 0.2252, 0.6353, 1.5557, 0.1263, 0.7026, 1.498, 0.1398, 0.6201, 1.5557, 0.1881, 0.6201, 1.5557, 0.1881, 0.7026, 1.498, 0.1398, 0.6855, 1.498, 0.208, 0.5601, 1.6084, 0.1115, 0.6353, 1.5557, 0.1263, 0.5469, 1.6084, 0.1659, 0.5469, 1.6084, 0.1659, 0.6353, 1.5557, 0.1263, 0.6201, 1.5557, 0.1881, 0.4783, 1.6533, 0.0951, 0.5601, 1.6084, 0.1115, 0.4666, 1.6533, 0.1415, 0.4666, 1.6533, 0.1415, 0.5601, 1.6084, 0.1115, 0.5469, 1.6084, 0.1659, 0.3899, 1.6914, 0.0776, 0.4783, 1.6533, 0.0951, 0.3804, 1.6914, 0.1154, 0.3804, 1.6914, 0.1154, 0.4783, 1.6533, 0.0951, 0.4666, 1.6533, 0.1415, 0.2969, 1.7207, 0.0591, 0.3899, 1.6914, 0.0776, 0.2896, 1.7207, 0.0878, 0.2896, 1.7207, 0.0878, 0.3899, 1.6914, 0.0776, 0.3804, 1.6914, 0.1154, 0.1367, 1.8203, 0.0432, 0.2258, 1.8096, 0.0439, 0.1016, 1.7607, 0.0479, 0.1016, 1.7607, 0.0479, 0.2258, 1.8096, 0.0439, 0.2006, 1.749, 0.0479, 0.1976, 1.7422, 0.0551, 0.2969, 1.7207, 0.0591, 0.1952, 1.7422, 0.0592, 0.1952, 1.7422, 0.0592, 0.2969, 1.7207, 0.0591, 0.2896, 1.7207, 0.0878, 0.877, 0.7153, 0.2659, 0.877, 0.6279, 0.2659, 0.8467, 0.7153, 0.3506, 0.8467, 0.7153, 0.3506, 0.877, 0.6279, 0.2659, 0.8467, 0.6279, 0.3506, 0.877, 0.8022, 0.2659, 0.877, 0.7153, 0.2659, 0.8467, 0.8022, 0.3506, 0.8467, 0.8022, 0.3506, 0.877, 0.7153, 0.2659, 0.8467, 0.7153, 0.3506, 0.877, 0.8892, 0.2659, 0.877, 0.8022, 0.2659, 0.8467, 0.8892, 0.3506, 0.8467, 0.8892, 0.3506, 0.877, 0.8022, 0.2659, 0.8467, 0.8022, 0.3506, 0.877, 0.9766, 0.2659, 0.877, 0.8892, 0.2659, 0.8467, 0.9766, 0.3506, 0.8467, 0.9766, 0.3506, 0.877, 0.8892, 0.2659, 0.8467, 0.8892, 0.3506, 0.877, 1.0635, 0.2659, 0.877, 0.9766, 0.2659, 0.8467, 1.0635, 0.3506, 0.8467, 1.0635, 0.3506, 0.877, 0.9766, 0.2659, 0.8467, 0.9766, 0.3506, 0.8716, 1.1416, 0.2644, 0.877, 1.0635, 0.2659, 0.8413, 1.1416, 0.3484, 0.8413, 1.1416, 0.3484, 0.877, 1.0635, 0.2659, 0.8467, 1.0635, 0.3506, 0.855, 1.2188, 0.2593, 0.8716, 1.1416, 0.2644, 0.8252, 1.2188, 0.3418, 0.8252, 1.2188, 0.3418, 0.8716, 1.1416, 0.2644, 0.8413, 1.1416, 0.3484, 0.8276, 1.293, 0.251, 0.855, 1.2188, 0.2593, 0.7993, 1.293, 0.3311, 0.7993, 1.293, 0.3311, 0.855, 1.2188, 0.2593, 0.8252, 1.2188, 0.3418, 0.79, 1.3652, 0.2396, 0.8276, 1.293, 0.251, 0.7627, 1.3652, 0.3159, 0.7627, 1.3652, 0.3159, 0.8276, 1.293, 0.251, 0.7993, 1.293, 0.3311, 0.7427, 1.4336, 0.2252, 0.79, 1.3652, 0.2396, 0.7168, 1.4336, 0.2969, 0.7168, 1.4336, 0.2969, 0.79, 1.3652, 0.2396, 0.7627, 1.3652, 0.3159, 0.6855, 1.498, 0.208, 0.7427, 1.4336, 0.2252, 0.6621, 1.498, 0.2742, 0.6621, 1.498, 0.2742, 0.7427, 1.4336, 0.2252, 0.7168, 1.4336, 0.2969, 0.6201, 1.5557, 0.1881, 0.6855, 1.498, 0.208, 0.5986, 1.5557, 0.2479, 0.5986, 1.5557, 0.2479, 0.6855, 1.498, 0.208, 0.6621, 1.498, 0.2742, 0.5469, 1.6084, 0.1659, 0.6201, 1.5557, 0.1881, 0.5278, 1.6084, 0.2186, 0.5278, 1.6084, 0.2186, 0.6201, 1.5557, 0.1881, 0.5986, 1.5557, 0.2479, 0.4666, 1.6533, 0.1415, 0.5469, 1.6084, 0.1659, 0.4504, 1.6533, 0.1865, 0.4504, 1.6533, 0.1865, 0.5469, 1.6084, 0.1659, 0.5278, 1.6084, 0.2186, 0.3804, 1.6914, 0.1154, 0.4666, 1.6533, 0.1415, 0.3674, 1.6914, 0.1521, 0.3674, 1.6914, 0.1521, 0.4666, 1.6533, 0.1415, 0.4504, 1.6533, 0.1865, 0.2896, 1.7207, 0.0878, 0.3804, 1.6914, 0.1154, 0.2795, 1.7207, 0.1158, 0.2795, 1.7207, 0.1158, 0.3804, 1.6914, 0.1154, 0.3674, 1.6914, 0.1521, 0.1952, 1.7422, 0.0592, 0.2896, 1.7207, 0.0878, 0.1884, 1.7422, 0.078, 0.1884, 1.7422, 0.078, 0.2896, 1.7207, 0.0878, 0.2795, 1.7207, 0.1158, 0.0859, 1.7559, 0.0551, 0.1798, 1.7422, 0.0961, 0.1696, 1.7422, 0.1133, 0.8467, 0.7153, 0.3506, 0.8467, 0.6279, 0.3506, 0.8081, 0.7153, 0.4319, 0.8081, 0.7153, 0.4319, 0.8467, 0.6279, 0.3506, 0.8081, 0.6279, 0.4319, 0.8467, 0.8022, 0.3506, 0.8467, 0.7153, 0.3506, 0.8081, 0.8022, 0.4319, 0.8081, 0.8022, 0.4319, 0.8467, 0.7153, 0.3506, 0.8081, 0.7153, 0.4319, 0.8467, 0.8892, 0.3506, 0.8467, 0.8022, 0.3506, 0.8081, 0.8892, 0.4319, 0.8081, 0.8892, 0.4319, 0.8467, 0.8022, 0.3506, 0.8081, 0.8022, 0.4319, 0.8467, 0.9766, 0.3506, 0.8467, 0.8892, 0.3506, 0.8081, 0.9766, 0.4319, 0.8081, 0.9766, 0.4319, 0.8467, 0.8892, 0.3506, 0.8081, 0.8892, 0.4319, 0.8467, 1.0635, 0.3506, 0.8467, 0.9766, 0.3506, 0.8081, 1.0635, 0.4319, 0.8081, 1.0635, 0.4319, 0.8467, 0.9766, 0.3506, 0.8081, 0.9766, 0.4319, 0.8413, 1.1416, 0.3484, 0.8467, 1.0635, 0.3506, 0.8032, 1.1416, 0.4292, 0.8032, 1.1416, 0.4292, 0.8467, 1.0635, 0.3506, 0.8081, 1.0635, 0.4319, 0.8252, 1.2188, 0.3418, 0.8413, 1.1416, 0.3484, 0.7881, 1.2188, 0.4211, 0.7881, 1.2188, 0.4211, 0.8413, 1.1416, 0.3484, 0.8032, 1.1416, 0.4292, 0.7993, 1.293, 0.3311, 0.8252, 1.2188, 0.3418, 0.7627, 1.293, 0.4077, 0.7627, 1.293, 0.4077, 0.8252, 1.2188, 0.3418, 0.7881, 1.2188, 0.4211, 0.7627, 1.3652, 0.3159, 0.7993, 1.293, 0.3311, 0.728, 1.3652, 0.3892, 0.728, 1.3652, 0.3892, 0.7993, 1.293, 0.3311, 0.7627, 1.293, 0.4077, 0.7168, 1.4336, 0.2969, 0.7627, 1.3652, 0.3159, 0.6841, 1.4336, 0.3657, 0.6841, 1.4336, 0.3657, 0.7627, 1.3652, 0.3159, 0.728, 1.3652, 0.3892, 0.6621, 1.498, 0.2742, 0.7168, 1.4336, 0.2969, 0.6318, 1.498, 0.3376, 0.6318, 1.498, 0.3376, 0.7168, 1.4336, 0.2969, 0.6841, 1.4336, 0.3657, 0.5986, 1.5557, 0.2479, 0.6621, 1.498, 0.2742, 0.5713, 1.5557, 0.3054, 0.5713, 1.5557, 0.3054, 0.6621, 1.498, 0.2742, 0.6318, 1.498, 0.3376, 0.5278, 1.6084, 0.2186, 0.5986, 1.5557, 0.2479, 0.5039, 1.6084, 0.2693, 0.5039, 1.6084, 0.2693, 0.5986, 1.5557, 0.2479, 0.5713, 1.5557, 0.3054, 0.4504, 1.6533, 0.1865, 0.5278, 1.6084, 0.2186, 0.4299, 1.6533, 0.2299, 0.4299, 1.6533, 0.2299, 0.5278, 1.6084, 0.2186, 0.5039, 1.6084, 0.2693, 0.3674, 1.6914, 0.1521, 0.4504, 1.6533, 0.1865, 0.3506, 1.6914, 0.1874, 0.3506, 1.6914, 0.1874, 0.4504, 1.6533, 0.1865, 0.4299, 1.6533, 0.2299, 0.2795, 1.7207, 0.1158, 0.3674, 1.6914, 0.1521, 0.2668, 1.7207, 0.1427, 0.2668, 1.7207, 0.1427, 0.3674, 1.6914, 0.1521, 0.3506, 1.6914, 0.1874, 0.1884, 1.7422, 0.078, 0.2795, 1.7207, 0.1158, 0.1798, 1.7422, 0.0961, 0.1798, 1.7422, 0.0961, 0.2795, 1.7207, 0.1158, 0.2668, 1.7207, 0.1427, 0.0859, 1.7559, 0.0551, 0.1952, 1.7422, 0.0592, 0.1884, 1.7422, 0.078, 0.8081, 0.7153, 0.4319, 0.8081, 0.6279, 0.4319, 0.7617, 0.7153, 0.5088, 0.7617, 0.7153, 0.5088, 0.8081, 0.6279, 0.4319, 0.7617, 0.6279, 0.5088, 0.8081, 0.8022, 0.4319, 0.8081, 0.7153, 0.4319, 0.7617, 0.8022, 0.5088, 0.7617, 0.8022, 0.5088, 0.8081, 0.7153, 0.4319, 0.7617, 0.7153, 0.5088, 0.8081, 0.8892, 0.4319, 0.8081, 0.8022, 0.4319, 0.7617, 0.8892, 0.5088, 0.7617, 0.8892, 0.5088, 0.8081, 0.8022, 0.4319, 0.7617, 0.8022, 0.5088, 0.8081, 0.9766, 0.4319, 0.8081, 0.8892, 0.4319, 0.7617, 0.9766, 0.5088, 0.7617, 0.9766, 0.5088, 0.8081, 0.8892, 0.4319, 0.7617, 0.8892, 0.5088, 0.8081, 1.0635, 0.4319, 0.8081, 0.9766, 0.4319, 0.7617, 1.0635, 0.5088, 0.7617, 1.0635, 0.5088, 0.8081, 0.9766, 0.4319, 0.7617, 0.9766, 0.5088, 0.8032, 1.1416, 0.4292, 0.8081, 1.0635, 0.4319, 0.7573, 1.1416, 0.5059, 0.7573, 1.1416, 0.5059, 0.8081, 1.0635, 0.4319, 0.7617, 1.0635, 0.5088, 0.7881, 1.2188, 0.4211, 0.8032, 1.1416, 0.4292, 0.7427, 1.2188, 0.4963, 0.7427, 1.2188, 0.4963, 0.8032, 1.1416, 0.4292, 0.7573, 1.1416, 0.5059, 0.7627, 1.293, 0.4077, 0.7881, 1.2188, 0.4211, 0.7192, 1.293, 0.4805, 0.7192, 1.293, 0.4805, 0.7881, 1.2188, 0.4211, 0.7427, 1.2188, 0.4963, 0.728, 1.3652, 0.3892, 0.7627, 1.293, 0.4077, 0.6865, 1.3652, 0.4587, 0.6865, 1.3652, 0.4587, 0.7627, 1.293, 0.4077, 0.7192, 1.293, 0.4805, 0.6841, 1.4336, 0.3657, 0.728, 1.3652, 0.3892, 0.645, 1.4336, 0.4312, 0.645, 1.4336, 0.4312, 0.728, 1.3652, 0.3892, 0.6865, 1.3652, 0.4587, 0.6318, 1.498, 0.3376, 0.6841, 1.4336, 0.3657, 0.5957, 1.498, 0.3979, 0.5957, 1.498, 0.3979, 0.6841, 1.4336, 0.3657, 0.645, 1.4336, 0.4312, 0.5713, 1.5557, 0.3054, 0.6318, 1.498, 0.3376, 0.5386, 1.5557, 0.3599, 0.5386, 1.5557, 0.3599, 0.6318, 1.498, 0.3376, 0.5957, 1.498, 0.3979, 0.5039, 1.6084, 0.2693, 0.5713, 1.5557, 0.3054, 0.4751, 1.6084, 0.3174, 0.4751, 1.6084, 0.3174, 0.5713, 1.5557, 0.3054, 0.5386, 1.5557, 0.3599, 0.4299, 1.6533, 0.2299, 0.5039, 1.6084, 0.2693, 0.4053, 1.6533, 0.2708, 0.4053, 1.6533, 0.2708, 0.5039, 1.6084, 0.2693, 0.4751, 1.6084, 0.3174, 0.3506, 1.6914, 0.1874, 0.4299, 1.6533, 0.2299, 0.3306, 1.6914, 0.2209, 0.3306, 1.6914, 0.2209, 0.4299, 1.6533, 0.2299, 0.4053, 1.6533, 0.2708, 0.2668, 1.7207, 0.1427, 0.3506, 1.6914, 0.1874, 0.2517, 1.7207, 0.1681, 0.2517, 1.7207, 0.1681, 0.3506, 1.6914, 0.1874, 0.3306, 1.6914, 0.2209, 0.1798, 1.7422, 0.0961, 0.2668, 1.7207, 0.1427, 0.1696, 1.7422, 0.1133, 0.1696, 1.7422, 0.1133, 0.2668, 1.7207, 0.1427, 0.2517, 1.7207, 0.1681, 0.0859, 1.7559, 0.0551, 0.1696, 1.7422, 0.1133, 0.0793, 1.7559, 0.0651, 0.0793, 1.7559, 0.0651, 0.1696, 1.7422, 0.1133, 0.1576, 1.7422, 0.1294, 0.7617, 0.7153, 0.5088, 0.7617, 0.6279, 0.5088, 0.7085, 0.7153, 0.5811, 0.7085, 0.7153, 0.5811, 0.7617, 0.6279, 0.5088, 0.7085, 0.6279, 0.5811, 0.7617, 0.8022, 0.5088, 0.7617, 0.7153, 0.5088, 0.7085, 0.8022, 0.5811, 0.7085, 0.8022, 0.5811, 0.7617, 0.7153, 0.5088, 0.7085, 0.7153, 0.5811, 0.7617, 0.8892, 0.5088, 0.7617, 0.8022, 0.5088, 0.7085, 0.8892, 0.5811, 0.7085, 0.8892, 0.5811, 0.7617, 0.8022, 0.5088, 0.7085, 0.8022, 0.5811, 0.7617, 0.9766, 0.5088, 0.7617, 0.8892, 0.5088, 0.7085, 0.9766, 0.5811, 0.7085, 0.9766, 0.5811, 0.7617, 0.8892, 0.5088, 0.7085, 0.8892, 0.5811, 0.7617, 1.0635, 0.5088, 0.7617, 0.9766, 0.5088, 0.7085, 1.0635, 0.5811, 0.7085, 1.0635, 0.5811, 0.7617, 0.9766, 0.5088, 0.7085, 0.9766, 0.5811, 0.7573, 1.1416, 0.5059, 0.7617, 1.0635, 0.5088, 0.7041, 1.1416, 0.5776, 0.7041, 1.1416, 0.5776, 0.7617, 1.0635, 0.5088, 0.7085, 1.0635, 0.5811, 0.7427, 1.2188, 0.4963, 0.7573, 1.1416, 0.5059, 0.6904, 1.2188, 0.5669, 0.6904, 1.2188, 0.5669, 0.7573, 1.1416, 0.5059, 0.7041, 1.1416, 0.5776, 0.7192, 1.293, 0.4805, 0.7427, 1.2188, 0.4963, 0.6685, 1.293, 0.5488, 0.6685, 1.293, 0.5488, 0.7427, 1.2188, 0.4963, 0.6904, 1.2188, 0.5669, 0.6865, 1.3652, 0.4587, 0.7192, 1.293, 0.4805, 0.6382, 1.3652, 0.5239, 0.6382, 1.3652, 0.5239, 0.7192, 1.293, 0.4805, 0.6685, 1.293, 0.5488, 0.645, 1.4336, 0.4312, 0.6865, 1.3652, 0.4587, 0.5996, 1.4336, 0.4922, 0.5996, 1.4336, 0.4922, 0.6865, 1.3652, 0.4587, 0.6382, 1.3652, 0.5239, 0.5957, 1.498, 0.3979, 0.645, 1.4336, 0.4312, 0.5537, 1.498, 0.4546, 0.5537, 1.498, 0.4546, 0.645, 1.4336, 0.4312, 0.5996, 1.4336, 0.4922, 0.5386, 1.5557, 0.3599, 0.5957, 1.498, 0.3979, 0.501, 1.5557, 0.4111, 0.501, 1.5557, 0.4111, 0.5957, 1.498, 0.3979, 0.5537, 1.498, 0.4546, 0.4751, 1.6084, 0.3174, 0.5386, 1.5557, 0.3599, 0.4417, 1.6084, 0.3625, 0.4417, 1.6084, 0.3625, 0.5386, 1.5557, 0.3599, 0.501, 1.5557, 0.4111, 0.4053, 1.6533, 0.2708, 0.4751, 1.6084, 0.3174, 0.377, 1.6533, 0.3093, 0.377, 1.6533, 0.3093, 0.4751, 1.6084, 0.3174, 0.4417, 1.6084, 0.3625, 0.3306, 1.6914, 0.2209, 0.4053, 1.6533, 0.2708, 0.3074, 1.6914, 0.2522, 0.3074, 1.6914, 0.2522, 0.4053, 1.6533, 0.2708, 0.377, 1.6533, 0.3093, 0.2517, 1.7207, 0.1681, 0.3306, 1.6914, 0.2209, 0.234, 1.7207, 0.192, 0.234, 1.7207, 0.192, 0.3306, 1.6914, 0.2209, 0.3074, 1.6914, 0.2522, 0.1696, 1.7422, 0.1133, 0.2517, 1.7207, 0.1681, 0.1576, 1.7422, 0.1294, 0.1576, 1.7422, 0.1294, 0.2517, 1.7207, 0.1681, 0.234, 1.7207, 0.192, 0.0793, 1.7559, -0.0651, 0.1576, 1.7422, -0.1294, 0.0853, 1.7559, -0.0562, 0.0853, 1.7559, -0.0562, 0.1576, 1.7422, -0.1294, 0.1696, 1.7422, -0.1133, 0.7085, 0.7153, 0.5811, 0.7085, 0.6279, 0.5811, 0.6079, 0.7432, 0.6841, 0.6079, 0.7432, 0.6841, 0.7085, 0.6279, 0.5811, 0.6479, 0.6279, 0.6479, 0.7085, 0.8022, 0.5811, 0.7085, 0.7153, 0.5811, 0.644, 0.8047, 0.6514, 0.644, 0.8047, 0.6514, 0.7085, 0.7153, 0.5811, 0.6079, 0.7432, 0.6841, 0.7085, 0.8892, 0.5811, 0.7085, 0.8022, 0.5811, 0.6621, 0.8784, 0.6323, 0.6621, 0.8784, 0.6323, 0.7085, 0.8022, 0.5811, 0.644, 0.8047, 0.6514, 0.7085, 0.9766, 0.5811, 0.7085, 0.8892, 0.5811, 0.665, 0.957, 0.6294, 0.665, 0.957, 0.6294, 0.7085, 0.8892, 0.5811, 0.6621, 0.8784, 0.6323, 0.7085, 1.0635, 0.5811, 0.7085, 0.9766, 0.5811, 0.6519, 1.0332, 0.6436, 0.6519, 1.0332, 0.6436, 0.7085, 0.9766, 0.5811, 0.665, 0.957, 0.6294, 0.7041, 1.1416, 0.5776, 0.7085, 1.0635, 0.5811, 0.6196, 1.0996, 0.6699, 0.6196, 1.0996, 0.6699, 0.7085, 1.0635, 0.5811, 0.6519, 1.0332, 0.6436, 0.6904, 1.2188, 0.5669, 0.7041, 1.1416, 0.5776, 0.6318, 1.2188, 0.6318, 0.6318, 1.2188, 0.6318, 0.7041, 1.1416, 0.5776, 0.6196, 1.0996, 0.6699, 0.6685, 1.293, 0.5488, 0.6904, 1.2188, 0.5669, 0.6113, 1.293, 0.6113, 0.6113, 1.293, 0.6113, 0.6904, 1.2188, 0.5669, 0.6318, 1.2188, 0.6318, 0.6382, 1.3652, 0.5239, 0.6685, 1.293, 0.5488, 0.5835, 1.3652, 0.5835, 0.5835, 1.3652, 0.5835, 0.6685, 1.293, 0.5488, 0.6113, 1.293, 0.6113, 0.5996, 1.4336, 0.4922, 0.6382, 1.3652, 0.5239, 0.5483, 1.4336, 0.5483, 0.5483, 1.4336, 0.5483, 0.6382, 1.3652, 0.5239, 0.5835, 1.3652, 0.5835, 0.5537, 1.498, 0.4546, 0.5996, 1.4336, 0.4922, 0.5063, 1.498, 0.5063, 0.5063, 1.498, 0.5063, 0.5996, 1.4336, 0.4922, 0.5483, 1.4336, 0.5483, 0.501, 1.5557, 0.4111, 0.5537, 1.498, 0.4546, 0.4583, 1.5557, 0.4583, 0.4583, 1.5557, 0.4583, 0.5537, 1.498, 0.4546, 0.5063, 1.498, 0.5063, 0.4417, 1.6084, 0.3625, 0.501, 1.5557, 0.4111, 0.4041, 1.6084, 0.4041, 0.4041, 1.6084, 0.4041, 0.501, 1.5557, 0.4111, 0.4583, 1.5557, 0.4583, 0.377, 1.6533, 0.3093, 0.4417, 1.6084, 0.3625, 0.3447, 1.6533, 0.3447, 0.3447, 1.6533, 0.3447, 0.4417, 1.6084, 0.3625, 0.4041, 1.6084, 0.4041, 0.3074, 1.6914, 0.2522, 0.377, 1.6533, 0.3093, 0.281, 1.6914, 0.281, 0.281, 1.6914, 0.281, 0.377, 1.6533, 0.3093, 0.3447, 1.6533, 0.3447, 0.234, 1.7207, 0.192, 0.3074, 1.6914, 0.2522, 0.214, 1.7207, 0.214, 0.214, 1.7207, 0.214, 0.3074, 1.6914, 0.2522, 0.281, 1.6914, 0.281, 0.1576, 1.7422, 0.1294, 0.234, 1.7207, 0.192, 0.1442, 1.7422, 0.1442, 0.1442, 1.7422, 0.1442, 0.234, 1.7207, 0.192, 0.214, 1.7207, 0.214, 0.0793, 1.7559, 0.0651, 0.1576, 1.7422, 0.1294, 0.0726, 1.7559, 0.0726, 0.0726, 1.7559, 0.0726, 0.1576, 1.7422, 0.1294, 0.1442, 1.7422, 0.1442, 0.6079, 0.7432, 0.6841, 0.6479, 0.6279, 0.6479, 0.5571, 0.6997, 0.7266, 0.5571, 0.6997, 0.7266, 0.6479, 0.6279, 0.6479, 0.5811, 0.6279, 0.7085, 0.6318, 1.2188, 0.6318, 0.6196, 1.0996, 0.6699, 0.5669, 1.2188, 0.6904, 0.5669, 1.2188, 0.6904, 0.6196, 1.0996, 0.6699, 0.5708, 1.1504, 0.7065, 0.6113, 1.293, 0.6113, 0.6318, 1.2188, 0.6318, 0.5488, 1.293, 0.6685, 0.5488, 1.293, 0.6685, 0.6318, 1.2188, 0.6318, 0.5669, 1.2188, 0.6904, 0.5835, 1.3652, 0.5835, 0.6113, 1.293, 0.6113, 0.5239, 1.3652, 0.6382, 0.5239, 1.3652, 0.6382, 0.6113, 1.293, 0.6113, 0.5488, 1.293, 0.6685, 0.5483, 1.4336, 0.5483, 0.5835, 1.3652, 0.5835, 0.4922, 1.4336, 0.5996, 0.4922, 1.4336, 0.5996, 0.5835, 1.3652, 0.5835, 0.5239, 1.3652, 0.6382, 0.5063, 1.498, 0.5063, 0.5483, 1.4336, 0.5483, 0.4546, 1.498, 0.5537, 0.4546, 1.498, 0.5537, 0.5483, 1.4336, 0.5483, 0.4922, 1.4336, 0.5996, 0.4583, 1.5557, 0.4583, 0.5063, 1.498, 0.5063, 0.4111, 1.5557, 0.501, 0.4111, 1.5557, 0.501, 0.5063, 1.498, 0.5063, 0.4546, 1.498, 0.5537, 0.4041, 1.6084, 0.4041, 0.4583, 1.5557, 0.4583, 0.3625, 1.6084, 0.4417, 0.3625, 1.6084, 0.4417, 0.4583, 1.5557, 0.4583, 0.4111, 1.5557, 0.501, 0.3447, 1.6533, 0.3447, 0.4041, 1.6084, 0.4041, 0.3093, 1.6533, 0.377, 0.3093, 1.6533, 0.377, 0.4041, 1.6084, 0.4041, 0.3625, 1.6084, 0.4417, 0.281, 1.6914, 0.281, 0.3447, 1.6533, 0.3447, 0.2522, 1.6914, 0.3074, 0.2522, 1.6914, 0.3074, 0.3447, 1.6533, 0.3447, 0.3093, 1.6533, 0.377, 0.214, 1.7207, 0.214, 0.281, 1.6914, 0.281, 0.192, 1.7207, 0.234, 0.192, 1.7207, 0.234, 0.281, 1.6914, 0.281, 0.2522, 1.6914, 0.3074, 0.1442, 1.7422, 0.1442, 0.214, 1.7207, 0.214, 0.1294, 1.7422, 0.1576, 0.1294, 1.7422, 0.1576, 0.214, 1.7207, 0.214, 0.192, 1.7207, 0.234, 0.0726, 1.7559, 0.0726, 0.1442, 1.7422, 0.1442, 0.0651, 1.7559, 0.0793, 0.0651, 1.7559, 0.0793, 0.1442, 1.7422, 0.1442, 0.1294, 1.7422, 0.1576, 0.5571, 0.6997, 0.7266, 0.5811, 0.6279, 0.7085, 0.4937, 0.6792, 0.771, 0.4937, 0.6792, 0.771, 0.5811, 0.6279, 0.7085, 0.5088, 0.6279, 0.7617, 0.6128, 1.0908, 0.6772, 0.5659, 1.1387, 0.7119, 0.6196, 1.0996, 0.6699, 0.6196, 1.0996, 0.6699, 0.5659, 1.1387, 0.7119, 0.5708, 1.1504, 0.7065, 0.4268, 0.6958, 0.8105, 0.4927, 0.6924, 0.772, 0.4243, 0.6831, 0.812, 0.4243, 0.6831, 0.812, 0.4927, 0.6924, 0.772, 0.4937, 0.6792, 0.771, 0.5527, 0.7119, 0.73, 0.6011, 0.7529, 0.6904, 0.5571, 0.6997, 0.7266, 0.5571, 0.6997, 0.7266, 0.6011, 0.7529, 0.6904, 0.6079, 0.7432, 0.6841, 0.4565, 0.8091, 0.4473, 0.4326, 0.77, 0.4668, 0.436, 0.7969, 0.4661, 0.436, 0.7969, 0.4661, 0.4326, 0.77, 0.4668, 0.4089, 0.749, 0.4873, 0.5659, 1.1387, 0.7119, 0.5063, 1.166, 0.748, 0.5708, 1.1504, 0.7065, 0.5708, 1.1504, 0.7065, 0.5063, 1.166, 0.748, 0.5078, 1.1787, 0.7451, 0.5669, 1.2188, 0.6904, 0.5708, 1.1504, 0.7065, 0.4963, 1.2188, 0.7427, 0.4963, 1.2188, 0.7427, 0.5708, 1.1504, 0.7065, 0.5078, 1.1787, 0.7451, 0.5488, 1.293, 0.6685, 0.5669, 1.2188, 0.6904, 0.4805, 1.293, 0.7192, 0.4805, 1.293, 0.7192, 0.5669, 1.2188, 0.6904, 0.4963, 1.2188, 0.7427, 0.5239, 1.3652, 0.6382, 0.5488, 1.293, 0.6685, 0.4587, 1.3652, 0.6865, 0.4587, 1.3652, 0.6865, 0.5488, 1.293, 0.6685, 0.4805, 1.293, 0.7192, 0.4922, 1.4336, 0.5996, 0.5239, 1.3652, 0.6382, 0.4312, 1.4336, 0.645, 0.4312, 1.4336, 0.645, 0.5239, 1.3652, 0.6382, 0.4587, 1.3652, 0.6865, 0.4546, 1.498, 0.5537, 0.4922, 1.4336, 0.5996, 0.3979, 1.498, 0.5957, 0.3979, 1.498, 0.5957, 0.4922, 1.4336, 0.5996, 0.4312, 1.4336, 0.645, 0.4111, 1.5557, 0.501, 0.4546, 1.498, 0.5537, 0.3599, 1.5557, 0.5386, 0.3599, 1.5557, 0.5386, 0.4546, 1.498, 0.5537, 0.3979, 1.498, 0.5957, 0.3625, 1.6084, 0.4417, 0.4111, 1.5557, 0.501, 0.3174, 1.6084, 0.4751, 0.3174, 1.6084, 0.4751, 0.4111, 1.5557, 0.501, 0.3599, 1.5557, 0.5386, 0.3093, 1.6533, 0.377, 0.3625, 1.6084, 0.4417, 0.2708, 1.6533, 0.4053, 0.2708, 1.6533, 0.4053, 0.3625, 1.6084, 0.4417, 0.3174, 1.6084, 0.4751, 0.2522, 1.6914, 0.3074, 0.3093, 1.6533, 0.377, 0.2209, 1.6914, 0.3306, 0.2209, 1.6914, 0.3306, 0.3093, 1.6533, 0.377, 0.2708, 1.6533, 0.4053, 0.192, 1.7207, 0.234, 0.2522, 1.6914, 0.3074, 0.1681, 1.7207, 0.2517, 0.1681, 1.7207, 0.2517, 0.2522, 1.6914, 0.3074, 0.2209, 1.6914, 0.3306, 0.1294, 1.7422, 0.1576, 0.192, 1.7207, 0.234, 0.1133, 1.7422, 0.1696, 0.1133, 1.7422, 0.1696, 0.192, 1.7207, 0.234, 0.1681, 1.7207, 0.2517, 0.0651, 1.7559, 0.0793, 0.1294, 1.7422, 0.1576, 0.057, 1.7559, 0.0853, 0.057, 1.7559, 0.0853, 0.1294, 1.7422, 0.1576, 0.1133, 1.7422, 0.1696, 0.4937, 0.6792, 0.771, 0.5088, 0.6279, 0.7617, 0.4243, 0.6831, 0.812, 0.4243, 0.6831, 0.812, 0.5088, 0.6279, 0.7617, 0.4319, 0.6279, 0.8081, 0.2815, 1.0488, 0.8716, 0.2573, 0.9795, 0.8779, 0.2705, 1.0557, 0.8755, 0.2705, 1.0557, 0.8755, 0.2573, 0.9795, 0.8779, 0.2451, 0.9819, 0.8823, 0.3789, 1.1494, 0.8237, 0.3235, 1.1074, 0.853, 0.373, 1.1621, 0.8247, 0.373, 1.1621, 0.8247, 0.3235, 1.1074, 0.853, 0.3147, 1.1172, 0.8555, 0.6431, 1.0283, 0.6523, 0.6128, 1.0908, 0.6772, 0.6519, 1.0332, 0.6436, 0.6519, 1.0332, 0.6436, 0.6128, 1.0908, 0.6772, 0.6196, 1.0996, 0.6699, 0.4646, 1.0273, 0.4404, 0.4775, 0.9531, 0.4265, 0.436, 1.0576, 0.4661, 0.436, 1.0576, 0.4661, 0.4775, 0.9531, 0.4265, 0.436, 0.9712, 0.4661, 0.4419, 1.1699, 0.7866, 0.3789, 1.1494, 0.8237, 0.4397, 1.1826, 0.7861, 0.4397, 1.1826, 0.7861, 0.3789, 1.1494, 0.8237, 0.373, 1.1621, 0.8247, 0.4963, 1.2188, 0.7427, 0.5078, 1.1787, 0.7451, 0.4211, 1.2188, 0.7881, 0.4211, 1.2188, 0.7881, 0.5078, 1.1787, 0.7451, 0.4397, 1.1826, 0.7861, 0.4805, 1.293, 0.7192, 0.4963, 1.2188, 0.7427, 0.4077, 1.293, 0.7627, 0.4077, 1.293, 0.7627, 0.4963, 1.2188, 0.7427, 0.4211, 1.2188, 0.7881, 0.4587, 1.3652, 0.6865, 0.4805, 1.293, 0.7192, 0.3892, 1.3652, 0.728, 0.3892, 1.3652, 0.728, 0.4805, 1.293, 0.7192, 0.4077, 1.293, 0.7627, 0.4312, 1.4336, 0.645, 0.4587, 1.3652, 0.6865, 0.3657, 1.4336, 0.6841, 0.3657, 1.4336, 0.6841, 0.4587, 1.3652, 0.6865, 0.3892, 1.3652, 0.728, 0.3979, 1.498, 0.5957, 0.4312, 1.4336, 0.645, 0.3376, 1.498, 0.6318, 0.3376, 1.498, 0.6318, 0.4312, 1.4336, 0.645, 0.3657, 1.4336, 0.6841, 0.3599, 1.5557, 0.5386, 0.3979, 1.498, 0.5957, 0.3054, 1.5557, 0.5713, 0.3054, 1.5557, 0.5713, 0.3979, 1.498, 0.5957, 0.3376, 1.498, 0.6318, 0.3174, 1.6084, 0.4751, 0.3599, 1.5557, 0.5386, 0.2693, 1.6084, 0.5039, 0.2693, 1.6084, 0.5039, 0.3599, 1.5557, 0.5386, 0.3054, 1.5557, 0.5713, 0.2708, 1.6533, 0.4053, 0.3174, 1.6084, 0.4751, 0.2299, 1.6533, 0.4299, 0.2299, 1.6533, 0.4299, 0.3174, 1.6084, 0.4751, 0.2693, 1.6084, 0.5039, 0.2209, 1.6914, 0.3306, 0.2708, 1.6533, 0.4053, 0.1874, 1.6914, 0.3506, 0.1874, 1.6914, 0.3506, 0.2708, 1.6533, 0.4053, 0.2299, 1.6533, 0.4299, 0.1681, 1.7207, 0.2517, 0.2209, 1.6914, 0.3306, 0.1427, 1.7207, 0.2668, 0.1427, 1.7207, 0.2668, 0.2209, 1.6914, 0.3306, 0.1874, 1.6914, 0.3506, 0.1133, 1.7422, 0.1696, 0.1681, 1.7207, 0.2517, 0.0961, 1.7422, 0.1798, 0.0961, 1.7422, 0.1798, 0.1681, 1.7207, 0.2517, 0.1427, 1.7207, 0.2668, 0.057, 1.7559, 0.0853, 0.1133, 1.7422, 0.1696, 0.0484, 1.7559, 0.0905, 0.0484, 1.7559, 0.0905, 0.1133, 1.7422, 0.1696, 0.0961, 1.7422, 0.1798, 0.4243, 0.6831, 0.812, 0.4319, 0.6279, 0.8081, 0.3579, 0.7114, 0.8433, 0.3579, 0.7114, 0.8433, 0.4319, 0.6279, 0.8081, 0.3506, 0.6279, 0.8467, 0.6528, 0.8809, 0.6411, 0.6553, 0.9561, 0.6382, 0.6621, 0.8784, 0.6323, 0.6621, 0.8784, 0.6323, 0.6553, 0.9561, 0.6382, 0.665, 0.957, 0.6294, 0.364, 0.7227, 0.8408, 0.4268, 0.6958, 0.8105, 0.3579, 0.7114, 0.8433, 0.3579, 0.7114, 0.8433, 0.4268, 0.6958, 0.8105, 0.4243, 0.6831, 0.812, 0.3235, 1.1074, 0.853, 0.2815, 1.0488, 0.8716, 0.3147, 1.1172, 0.8555, 0.3147, 1.1172, 0.8555, 0.2815, 1.0488, 0.8716, 0.2705, 1.0557, 0.8755, 0.2727, 0.832, 0.874, 0.3098, 0.7695, 0.8613, 0.2612, 0.8267, 0.8779, 0.2612, 0.8267, 0.8779, 0.3098, 0.7695, 0.8613, 0.3003, 0.7607, 0.8647, 0.3098, 0.7695, 0.8613, 0.364, 0.7227, 0.8408, 0.3003, 0.7607, 0.8647, 0.3003, 0.7607, 0.8647, 0.364, 0.7227, 0.8408, 0.3579, 0.7114, 0.8433, 0.4211, 1.2188, 0.7881, 0.4397, 1.1826, 0.7861, 0.3418, 1.2188, 0.8252, 0.3418, 1.2188, 0.8252, 0.4397, 1.1826, 0.7861, 0.373, 1.1621, 0.8247, 0.4077, 1.293, 0.7627, 0.4211, 1.2188, 0.7881, 0.3311, 1.293, 0.7993, 0.3311, 1.293, 0.7993, 0.4211, 1.2188, 0.7881, 0.3418, 1.2188, 0.8252, 0.3892, 1.3652, 0.728, 0.4077, 1.293, 0.7627, 0.3159, 1.3652, 0.7627, 0.3159, 1.3652, 0.7627, 0.4077, 1.293, 0.7627, 0.3311, 1.293, 0.7993, 0.3657, 1.4336, 0.6841, 0.3892, 1.3652, 0.728, 0.2969, 1.4336, 0.7168, 0.2969, 1.4336, 0.7168, 0.3892, 1.3652, 0.728, 0.3159, 1.3652, 0.7627, 0.3376, 1.498, 0.6318, 0.3657, 1.4336, 0.6841, 0.2742, 1.498, 0.6621, 0.2742, 1.498, 0.6621, 0.3657, 1.4336, 0.6841, 0.2969, 1.4336, 0.7168, 0.3054, 1.5557, 0.5713, 0.3376, 1.498, 0.6318, 0.2479, 1.5557, 0.5986, 0.2479, 1.5557, 0.5986, 0.3376, 1.498, 0.6318, 0.2742, 1.498, 0.6621, 0.2693, 1.6084, 0.5039, 0.3054, 1.5557, 0.5713, 0.2186, 1.6084, 0.5278, 0.2186, 1.6084, 0.5278, 0.3054, 1.5557, 0.5713, 0.2479, 1.5557, 0.5986, 0.2299, 1.6533, 0.4299, 0.2693, 1.6084, 0.5039, 0.1865, 1.6533, 0.4504, 0.1865, 1.6533, 0.4504, 0.2693, 1.6084, 0.5039, 0.2186, 1.6084, 0.5278, 0.1874, 1.6914, 0.3506, 0.2299, 1.6533, 0.4299, 0.1521, 1.6914, 0.3674, 0.1521, 1.6914, 0.3674, 0.2299, 1.6533, 0.4299, 0.1865, 1.6533, 0.4504, 0.1427, 1.7207, 0.2668, 0.1874, 1.6914, 0.3506, 0.1158, 1.7207, 0.2795, 0.1158, 1.7207, 0.2795, 0.1874, 1.6914, 0.3506, 0.1521, 1.6914, 0.3674, 0.0961, 1.7422, 0.1798, 0.1427, 1.7207, 0.2668, 0.078, 1.7422, 0.1884, 0.078, 1.7422, 0.1884, 0.1427, 1.7207, 0.2668, 0.1158, 1.7207, 0.2795, 0.0484, 1.7559, 0.0905, 0.0961, 1.7422, 0.1798, 0.0392, 1.7559, 0.0948, 0.0392, 1.7559, 0.0948, 0.0961, 1.7422, 0.1798, 0.078, 1.7422, 0.1884, 0.3579, 0.7114, 0.8433, 0.3506, 0.6279, 0.8467, 0.3003, 0.7607, 0.8647, 0.3003, 0.7607, 0.8647, 0.3506, 0.6279, 0.8467, 0.2659, 0.6279, 0.877, 0.2542, 0.9048, 0.8789, 0.2727, 0.832, 0.874, 0.2418, 0.9033, 0.8828, 0.2418, 0.9033, 0.8828, 0.2727, 0.832, 0.874, 0.2612, 0.8267, 0.8779, 0.6553, 0.9561, 0.6382, 0.6431, 1.0283, 0.6523, 0.665, 0.957, 0.6294, 0.665, 0.957, 0.6294, 0.6431, 1.0283, 0.6523, 0.6519, 1.0332, 0.6436, 0.4927, 0.6924, 0.772, 0.5527, 0.7119, 0.73, 0.4937, 0.6792, 0.771, 0.4937, 0.6792, 0.771, 0.5527, 0.7119, 0.73, 0.5571, 0.6997, 0.7266, 0.2573, 0.9795, 0.8779, 0.2542, 0.9048, 0.8789, 0.2451, 0.9819, 0.8823, 0.2451, 0.9819, 0.8823, 0.2542, 0.9048, 0.8789, 0.2418, 0.9033, 0.8828, 0.6353, 0.811, 0.6592, 0.6528, 0.8809, 0.6411, 0.644, 0.8047, 0.6514, 0.644, 0.8047, 0.6514, 0.6528, 0.8809, 0.6411, 0.6621, 0.8784, 0.6323, 0.3418, 1.2188, 0.8252, 0.373, 1.1621, 0.8247, 0.2593, 1.2188, 0.855, 0.2593, 1.2188, 0.855, 0.373, 1.1621, 0.8247, 0.3147, 1.1172, 0.8555, 0.3311, 1.293, 0.7993, 0.3418, 1.2188, 0.8252, 0.251, 1.293, 0.8276, 0.251, 1.293, 0.8276, 0.3418, 1.2188, 0.8252, 0.2593, 1.2188, 0.855, 0.3159, 1.3652, 0.7627, 0.3311, 1.293, 0.7993, 0.2396, 1.3652, 0.79, 0.2396, 1.3652, 0.79, 0.3311, 1.293, 0.7993, 0.251, 1.293, 0.8276, 0.2969, 1.4336, 0.7168, 0.3159, 1.3652, 0.7627, 0.2252, 1.4336, 0.7427, 0.2252, 1.4336, 0.7427, 0.3159, 1.3652, 0.7627, 0.2396, 1.3652, 0.79, 0.2742, 1.498, 0.6621, 0.2969, 1.4336, 0.7168, 0.208, 1.498, 0.6855, 0.208, 1.498, 0.6855, 0.2969, 1.4336, 0.7168, 0.2252, 1.4336, 0.7427, 0.2479, 1.5557, 0.5986, 0.2742, 1.498, 0.6621, 0.1881, 1.5557, 0.6201, 0.1881, 1.5557, 0.6201, 0.2742, 1.498, 0.6621, 0.208, 1.498, 0.6855, 0.2186, 1.6084, 0.5278, 0.2479, 1.5557, 0.5986, 0.1659, 1.6084, 0.5469, 0.1659, 1.6084, 0.5469, 0.2479, 1.5557, 0.5986, 0.1881, 1.5557, 0.6201, 0.1865, 1.6533, 0.4504, 0.2186, 1.6084, 0.5278, 0.1415, 1.6533, 0.4666, 0.1415, 1.6533, 0.4666, 0.2186, 1.6084, 0.5278, 0.1659, 1.6084, 0.5469, 0.1521, 1.6914, 0.3674, 0.1865, 1.6533, 0.4504, 0.1154, 1.6914, 0.3804, 0.1154, 1.6914, 0.3804, 0.1865, 1.6533, 0.4504, 0.1415, 1.6533, 0.4666, 0.1158, 1.7207, 0.2795, 0.1521, 1.6914, 0.3674, 0.0878, 1.7207, 0.2896, 0.0878, 1.7207, 0.2896, 0.1521, 1.6914, 0.3674, 0.1154, 1.6914, 0.3804, 0.078, 1.7422, 0.1884, 0.1158, 1.7207, 0.2795, 0.0592, 1.7422, 0.1952, 0.0592, 1.7422, 0.1952, 0.1158, 1.7207, 0.2795, 0.0878, 1.7207, 0.2896, 0.0392, 1.7559, 0.0948, 0.078, 1.7422, 0.1884, 0.0298, 1.7559, 0.0982, 0.0298, 1.7559, 0.0982, 0.078, 1.7422, 0.1884, 0.0592, 1.7422, 0.1952, 0.3003, 0.7607, 0.8647, 0.2659, 0.6279, 0.877, 0.1787, 0.7153, 0.8989, 0.1787, 0.7153, 0.8989, 0.2659, 0.6279, 0.877, 0.1787, 0.6279, 0.8989, 0.2612, 0.8267, 0.8779, 0.3003, 0.7607, 0.8647, 0.1787, 0.8022, 0.8989, 0.1787, 0.8022, 0.8989, 0.3003, 0.7607, 0.8647, 0.1787, 0.7153, 0.8989, 0.2418, 0.9033, 0.8828, 0.2612, 0.8267, 0.8779, 0.1787, 0.8892, 0.8989, 0.1787, 0.8892, 0.8989, 0.2612, 0.8267, 0.8779, 0.1787, 0.8022, 0.8989, 0.2451, 0.9819, 0.8823, 0.2418, 0.9033, 0.8828, 0.1787, 0.9766, 0.8989, 0.1787, 0.9766, 0.8989, 0.2418, 0.9033, 0.8828, 0.1787, 0.8892, 0.8989, 0.2705, 1.0557, 0.8755, 0.2451, 0.9819, 0.8823, 0.1787, 1.0635, 0.8989, 0.1787, 1.0635, 0.8989, 0.2451, 0.9819, 0.8823, 0.1787, 0.9766, 0.8989, 0.3147, 1.1172, 0.8555, 0.2705, 1.0557, 0.8755, 0.1776, 1.1416, 0.8931, 0.1776, 1.1416, 0.8931, 0.2705, 1.0557, 0.8755, 0.1787, 1.0635, 0.8989, 0.2593, 1.2188, 0.855, 0.3147, 1.1172, 0.8555, 0.1743, 1.2188, 0.8765, 0.1743, 1.2188, 0.8765, 0.3147, 1.1172, 0.8555, 0.1776, 1.1416, 0.8931, 0.251, 1.293, 0.8276, 0.2593, 1.2188, 0.855, 0.1687, 1.293, 0.8481, 0.1687, 1.293, 0.8481, 0.2593, 1.2188, 0.855, 0.1743, 1.2188, 0.8765, 0.2396, 1.3652, 0.79, 0.251, 1.293, 0.8276, 0.161, 1.3652, 0.8096, 0.161, 1.3652, 0.8096, 0.251, 1.293, 0.8276, 0.1687, 1.293, 0.8481, 0.2252, 1.4336, 0.7427, 0.2396, 1.3652, 0.79, 0.1514, 1.4336, 0.7612, 0.1514, 1.4336, 0.7612, 0.2396, 1.3652, 0.79, 0.161, 1.3652, 0.8096, 0.208, 1.498, 0.6855, 0.2252, 1.4336, 0.7427, 0.1398, 1.498, 0.7026, 0.1398, 1.498, 0.7026, 0.2252, 1.4336, 0.7427, 0.1514, 1.4336, 0.7612, 0.1881, 1.5557, 0.6201, 0.208, 1.498, 0.6855, 0.1263, 1.5557, 0.6353, 0.1263, 1.5557, 0.6353, 0.208, 1.498, 0.6855, 0.1398, 1.498, 0.7026, 0.1659, 1.6084, 0.5469, 0.1881, 1.5557, 0.6201, 0.1115, 1.6084, 0.5601, 0.1115, 1.6084, 0.5601, 0.1881, 1.5557, 0.6201, 0.1263, 1.5557, 0.6353, 0.1415, 1.6533, 0.4666, 0.1659, 1.6084, 0.5469, 0.0951, 1.6533, 0.4783, 0.0951, 1.6533, 0.4783, 0.1659, 1.6084, 0.5469, 0.1115, 1.6084, 0.5601, 0.1154, 1.6914, 0.3804, 0.1415, 1.6533, 0.4666, 0.0776, 1.6914, 0.3899, 0.0776, 1.6914, 0.3899, 0.1415, 1.6533, 0.4666, 0.0951, 1.6533, 0.4783, 0.0878, 1.7207, 0.2896, 0.1154, 1.6914, 0.3804, 0.0591, 1.7207, 0.2969, 0.0591, 1.7207, 0.2969, 0.1154, 1.6914, 0.3804, 0.0776, 1.6914, 0.3899, 0.0592, 1.7422, 0.1952, 0.0878, 1.7207, 0.2896, 0.0398, 1.7422, 0.2, 0.0398, 1.7422, 0.2, 0.0878, 1.7207, 0.2896, 0.0591, 1.7207, 0.2969, 0.0298, 1.7559, 0.0982, 0.0592, 1.7422, 0.1952, 0.02, 1.7559, 0.1006, 0.02, 1.7559, 0.1006, 0.0592, 1.7422, 0.1952, 0.0398, 1.7422, 0.2, 0.1787, 0.7153, 0.8989, 0.1787, 0.6279, 0.8989, 0.0898, 0.6885, 0.9121, 0.0898, 0.6885, 0.9121, 0.1787, 0.6279, 0.8989, 0.0898, 0.6279, 0.9121, 0.1787, 0.8892, 0.8989, 0.1787, 0.8022, 0.8989, 0.0898, 0.8892, 0.9121, 0.0898, 0.8892, 0.9121, 0.1787, 0.8022, 0.8989, 0.0898, 0.7759, 0.9121, 0.1776, 1.1416, 0.8931, 0.1787, 1.0635, 0.8989, 0.0892, 1.1416, 0.9063, 0.0892, 1.1416, 0.9063, 0.1787, 1.0635, 0.8989, 0.0898, 1.0635, 0.9121, 0.1743, 1.2188, 0.8765, 0.1776, 1.1416, 0.8931, 0.0876, 1.2188, 0.8892, 0.0876, 1.2188, 0.8892, 0.1776, 1.1416, 0.8931, 0.0892, 1.1416, 0.9063, 0.1687, 1.293, 0.8481, 0.1743, 1.2188, 0.8765, 0.0848, 1.293, 0.8608, 0.0848, 1.293, 0.8608, 0.1743, 1.2188, 0.8765, 0.0876, 1.2188, 0.8892, 0.161, 1.3652, 0.8096, 0.1687, 1.293, 0.8481, 0.0809, 1.3652, 0.8218, 0.0809, 1.3652, 0.8218, 0.1687, 1.293, 0.8481, 0.0848, 1.293, 0.8608, 0.1514, 1.4336, 0.7612, 0.161, 1.3652, 0.8096, 0.076, 1.4336, 0.772, 0.076, 1.4336, 0.772, 0.161, 1.3652, 0.8096, 0.0809, 1.3652, 0.8218, 0.1398, 1.498, 0.7026, 0.1514, 1.4336, 0.7612, 0.0702, 1.498, 0.7129, 0.0702, 1.498, 0.7129, 0.1514, 1.4336, 0.7612, 0.076, 1.4336, 0.772, 0.1263, 1.5557, 0.6353, 0.1398, 1.498, 0.7026, 0.0635, 1.5557, 0.645, 0.0635, 1.5557, 0.645, 0.1398, 1.498, 0.7026, 0.0702, 1.498, 0.7129, 0.1115, 1.6084, 0.5601, 0.1263, 1.5557, 0.6353, 0.056, 1.6084, 0.5684, 0.056, 1.6084, 0.5684, 0.1263, 1.5557, 0.6353, 0.0635, 1.5557, 0.645, 0.0951, 1.6533, 0.4783, 0.1115, 1.6084, 0.5601, 0.0478, 1.6533, 0.4851, 0.0478, 1.6533, 0.4851, 0.1115, 1.6084, 0.5601, 0.056, 1.6084, 0.5684, 0.0776, 1.6914, 0.3899, 0.0951, 1.6533, 0.4783, 0.039, 1.6914, 0.3958, 0.039, 1.6914, 0.3958, 0.0951, 1.6533, 0.4783, 0.0478, 1.6533, 0.4851, 0.0591, 1.7207, 0.2969, 0.0776, 1.6914, 0.3899, 0.0297, 1.7207, 0.3013, 0.0297, 1.7207, 0.3013, 0.0776, 1.6914, 0.3899, 0.039, 1.6914, 0.3958, 0.0398, 1.7422, 0.2, 0.0591, 1.7207, 0.2969, 0.02, 1.7422, 0.2029, 0.02, 1.7422, 0.2029, 0.0591, 1.7207, 0.2969, 0.0297, 1.7207, 0.3013, 0.02, 1.7559, 0.1006, 0.0398, 1.7422, 0.2, 0.0101, 1.7559, 0.1021, 0.0101, 1.7559, 0.1021, 0.0398, 1.7422, 0.2, 0.02, 1.7422, 0.2029, 0.0898, 1.0635, 0.9121, 0.0898, 1.0078, 0.9121, 0.0498, 1.0244, 0.9141, 0.0498, 1.0244, 0.9141, 0.0898, 1.0078, 0.9121, 0.0701, 1.002, 0.9131, 0.0435, 0.7368, 0.9058, 0.0217, 0.7256, 0.9067, 0.0404, 0.7368, 0.8418, 0.0404, 0.7368, 0.8418, 0.0217, 0.7256, 0.9067, 0.0186, 0.7256, 0.8428, 0.0578, 0.7534, 0.9053, 0.0435, 0.7368, 0.9058, 0.0546, 0.7534, 0.8408, 0.0546, 0.7534, 0.8408, 0.0435, 0.7368, 0.9058, 0.0404, 0.7368, 0.8418, 0.0876, 1.2188, 0.8892, 0.0892, 1.1416, 0.9063, 0, 1.2188, 0.8936, 0, 1.2188, 0.8936, 0.0892, 1.1416, 0.9063, 0, 1.1416, 0.9106, 0.0848, 1.293, 0.8608, 0.0876, 1.2188, 0.8892, 0, 1.293, 0.8647, 0, 1.293, 0.8647, 0.0876, 1.2188, 0.8892, 0, 1.2188, 0.8936, 0.0809, 1.3652, 0.8218, 0.0848, 1.293, 0.8608, 0, 1.3652, 0.8257, 0, 1.3652, 0.8257, 0.0848, 1.293, 0.8608, 0, 1.293, 0.8647, 0.076, 1.4336, 0.772, 0.0809, 1.3652, 0.8218, 0, 1.4336, 0.7759, 0, 1.4336, 0.7759, 0.0809, 1.3652, 0.8218, 0, 1.3652, 0.8257, 0.0702, 1.498, 0.7129, 0.076, 1.4336, 0.772, 0, 1.498, 0.7163, 0, 1.498, 0.7163, 0.076, 1.4336, 0.772, 0, 1.4336, 0.7759, 0.0635, 1.5557, 0.645, 0.0702, 1.498, 0.7129, 0, 1.5557, 0.6479, 0, 1.5557, 0.6479, 0.0702, 1.498, 0.7129, 0, 1.498, 0.7163, 0.056, 1.6084, 0.5684, 0.0635, 1.5557, 0.645, 0, 1.6084, 0.5713, 0, 1.6084, 0.5713, 0.0635, 1.5557, 0.645, 0, 1.5557, 0.6479, 0.0478, 1.6533, 0.4851, 0.056, 1.6084, 0.5684, 0, 1.6533, 0.4875, 0, 1.6533, 0.4875, 0.056, 1.6084, 0.5684, 0, 1.6084, 0.5713, 0.039, 1.6914, 0.3958, 0.0478, 1.6533, 0.4851, 0, 1.6914, 0.3977, 0, 1.6914, 0.3977, 0.0478, 1.6533, 0.4851, 0, 1.6533, 0.4875, 0.0297, 1.7207, 0.3013, 0.039, 1.6914, 0.3958, 0, 1.7207, 0.3027, 0, 1.7207, 0.3027, 0.039, 1.6914, 0.3958, 0, 1.6914, 0.3977, 0.02, 1.7422, 0.2029, 0.0297, 1.7207, 0.3013, 0, 1.7422, 0.2039, 0, 1.7422, 0.2039, 0.0297, 1.7207, 0.3013, 0, 1.7207, 0.3027, 0.0101, 1.7559, 0.1021, 0.02, 1.7422, 0.2029, 0, 1.7559, 0.1026, 0, 1.7559, 0.1026, 0.02, 1.7422, 0.2029, 0, 1.7422, 0.2039, 0, 0.7153, -0.9165, 0, 0.6279, -0.9165, 0.0898, 0.7153, -0.9121, 0.0898, 0.7153, -0.9121, 0, 0.6279, -0.9165, 0.0898, 0.6279, -0.9121, 0, 0.8022, -0.9165, 0, 0.7153, -0.9165, 0.0898, 0.8022, -0.9121, 0.0898, 0.8022, -0.9121, 0, 0.7153, -0.9165, 0.0898, 0.7153, -0.9121, 0, 0.8892, -0.9165, 0, 0.8022, -0.9165, 0.0898, 0.8892, -0.9121, 0.0898, 0.8892, -0.9121, 0, 0.8022, -0.9165, 0.0898, 0.8022, -0.9121, 0, 0.9766, -0.9165, 0, 0.8892, -0.9165, 0.0898, 0.9766, -0.9121, 0.0898, 0.9766, -0.9121, 0, 0.8892, -0.9165, 0.0898, 0.8892, -0.9121, 0, 1.0635, -0.9165, 0, 0.9766, -0.9165, 0.0898, 1.0635, -0.9121, 0.0898, 1.0635, -0.9121, 0, 0.9766, -0.9165, 0.0898, 0.9766, -0.9121, 0, 1.1416, -0.9106, 0, 1.0635, -0.9165, 0.0892, 1.1416, -0.9063, 0.0892, 1.1416, -0.9063, 0, 1.0635, -0.9165, 0.0898, 1.0635, -0.9121, 0, 1.2188, -0.8936, 0, 1.1416, -0.9106, 0.0876, 1.2188, -0.8892, 0.0876, 1.2188, -0.8892, 0, 1.1416, -0.9106, 0.0892, 1.1416, -0.9063, 0, 1.293, -0.8647, 0, 1.2188, -0.8936, 0.0848, 1.293, -0.8608, 0.0848, 1.293, -0.8608, 0, 1.2188, -0.8936, 0.0876, 1.2188, -0.8892, 0, 1.3652, -0.8257, 0, 1.293, -0.8647, 0.0809, 1.3652, -0.8218, 0.0809, 1.3652, -0.8218, 0, 1.293, -0.8647, 0.0848, 1.293, -0.8608, 0, 1.4336, -0.7759, 0, 1.3652, -0.8257, 0.076, 1.4336, -0.772, 0.076, 1.4336, -0.772, 0, 1.3652, -0.8257, 0.0809, 1.3652, -0.8218, 0, 1.498, -0.7163, 0, 1.4336, -0.7759, 0.0702, 1.498, -0.7129, 0.0702, 1.498, -0.7129, 0, 1.4336, -0.7759, 0.076, 1.4336, -0.772, 0, 1.5557, -0.6479, 0, 1.498, -0.7163, 0.0635, 1.5557, -0.645, 0.0635, 1.5557, -0.645, 0, 1.498, -0.7163, 0.0702, 1.498, -0.7129, 0, 1.6084, -0.5713, 0, 1.5557, -0.6479, 0.056, 1.6084, -0.5684, 0.056, 1.6084, -0.5684, 0, 1.5557, -0.6479, 0.0635, 1.5557, -0.645, 0, 1.6533, -0.4875, 0, 1.6084, -0.5713, 0.0478, 1.6533, -0.4851, 0.0478, 1.6533, -0.4851, 0, 1.6084, -0.5713, 0.056, 1.6084, -0.5684, 0, 1.6914, -0.3977, 0, 1.6533, -0.4875, 0.039, 1.6914, -0.3958, 0.039, 1.6914, -0.3958, 0, 1.6533, -0.4875, 0.0478, 1.6533, -0.4851, 0, 1.7207, -0.3027, 0, 1.6914, -0.3977, 0.0297, 1.7207, -0.3013, 0.0297, 1.7207, -0.3013, 0, 1.6914, -0.3977, 0.039, 1.6914, -0.3958, 0, 1.7422, -0.2039, 0, 1.7207, -0.3027, 0.02, 1.7422, -0.2029, 0.02, 1.7422, -0.2029, 0, 1.7207, -0.3027, 0.0297, 1.7207, -0.3013, 0, 1.7559, -0.1026, 0, 1.7422, -0.2039, 0.0101, 1.7559, -0.1021, 0.0101, 1.7559, -0.1021, 0, 1.7422, -0.2039, 0.02, 1.7422, -0.2029, 0.0898, 0.7153, -0.9121, 0.0898, 0.6279, -0.9121, 0.1787, 0.7153, -0.8989, 0.1787, 0.7153, -0.8989, 0.0898, 0.6279, -0.9121, 0.1787, 0.6279, -0.8989, 0.0898, 0.8022, -0.9121, 0.0898, 0.7153, -0.9121, 0.1787, 0.8022, -0.8989, 0.1787, 0.8022, -0.8989, 0.0898, 0.7153, -0.9121, 0.1787, 0.7153, -0.8989, 0.0898, 0.8892, -0.9121, 0.0898, 0.8022, -0.9121, 0.1787, 0.8892, -0.8989, 0.1787, 0.8892, -0.8989, 0.0898, 0.8022, -0.9121, 0.1787, 0.8022, -0.8989, 0.0898, 0.9766, -0.9121, 0.0898, 0.8892, -0.9121, 0.1787, 0.9766, -0.8989, 0.1787, 0.9766, -0.8989, 0.0898, 0.8892, -0.9121, 0.1787, 0.8892, -0.8989, 0.0898, 1.0635, -0.9121, 0.0898, 0.9766, -0.9121, 0.1787, 1.0635, -0.8989, 0.1787, 1.0635, -0.8989, 0.0898, 0.9766, -0.9121, 0.1787, 0.9766, -0.8989, 0.0892, 1.1416, -0.9063, 0.0898, 1.0635, -0.9121, 0.1776, 1.1416, -0.8931, 0.1776, 1.1416, -0.8931, 0.0898, 1.0635, -0.9121, 0.1787, 1.0635, -0.8989, 0.0876, 1.2188, -0.8892, 0.0892, 1.1416, -0.9063, 0.1743, 1.2188, -0.8765, 0.1743, 1.2188, -0.8765, 0.0892, 1.1416, -0.9063, 0.1776, 1.1416, -0.8931, 0.0848, 1.293, -0.8608, 0.0876, 1.2188, -0.8892, 0.1687, 1.293, -0.8481, 0.1687, 1.293, -0.8481, 0.0876, 1.2188, -0.8892, 0.1743, 1.2188, -0.8765, 0.0809, 1.3652, -0.8218, 0.0848, 1.293, -0.8608, 0.161, 1.3652, -0.8096, 0.161, 1.3652, -0.8096, 0.0848, 1.293, -0.8608, 0.1687, 1.293, -0.8481, 0.076, 1.4336, -0.772, 0.0809, 1.3652, -0.8218, 0.1514, 1.4336, -0.7612, 0.1514, 1.4336, -0.7612, 0.0809, 1.3652, -0.8218, 0.161, 1.3652, -0.8096, 0.0702, 1.498, -0.7129, 0.076, 1.4336, -0.772, 0.1398, 1.498, -0.7026, 0.1398, 1.498, -0.7026, 0.076, 1.4336, -0.772, 0.1514, 1.4336, -0.7612, 0.0635, 1.5557, -0.645, 0.0702, 1.498, -0.7129, 0.1263, 1.5557, -0.6353, 0.1263, 1.5557, -0.6353, 0.0702, 1.498, -0.7129, 0.1398, 1.498, -0.7026, 0.056, 1.6084, -0.5684, 0.0635, 1.5557, -0.645, 0.1115, 1.6084, -0.5601, 0.1115, 1.6084, -0.5601, 0.0635, 1.5557, -0.645, 0.1263, 1.5557, -0.6353, 0.0478, 1.6533, -0.4851, 0.056, 1.6084, -0.5684, 0.0951, 1.6533, -0.4783, 0.0951, 1.6533, -0.4783, 0.056, 1.6084, -0.5684, 0.1115, 1.6084, -0.5601, 0.039, 1.6914, -0.3958, 0.0478, 1.6533, -0.4851, 0.0776, 1.6914, -0.3899, 0.0776, 1.6914, -0.3899, 0.0478, 1.6533, -0.4851, 0.0951, 1.6533, -0.4783, 0.0297, 1.7207, -0.3013, 0.039, 1.6914, -0.3958, 0.0591, 1.7207, -0.2969, 0.0591, 1.7207, -0.2969, 0.039, 1.6914, -0.3958, 0.0776, 1.6914, -0.3899, 0.02, 1.7422, -0.2029, 0.0297, 1.7207, -0.3013, 0.0398, 1.7422, -0.2, 0.0398, 1.7422, -0.2, 0.0297, 1.7207, -0.3013, 0.0591, 1.7207, -0.2969, 0.0101, 1.7559, -0.1021, 0.02, 1.7422, -0.2029, 0.02, 1.7559, -0.1006, 0.02, 1.7559, -0.1006, 0.02, 1.7422, -0.2029, 0.0398, 1.7422, -0.2, 0.1787, 0.7153, -0.8989, 0.1787, 0.6279, -0.8989, 0.2659, 0.7153, -0.877, 0.2659, 0.7153, -0.877, 0.1787, 0.6279, -0.8989, 0.2659, 0.6279, -0.877, 0.1787, 0.8022, -0.8989, 0.1787, 0.7153, -0.8989, 0.2659, 0.8022, -0.877, 0.2659, 0.8022, -0.877, 0.1787, 0.7153, -0.8989, 0.2659, 0.7153, -0.877, 0.1787, 0.8892, -0.8989, 0.1787, 0.8022, -0.8989, 0.2659, 0.8892, -0.877, 0.2659, 0.8892, -0.877, 0.1787, 0.8022, -0.8989, 0.2659, 0.8022, -0.877, 0.1787, 0.9766, -0.8989, 0.1787, 0.8892, -0.8989, 0.2659, 0.9766, -0.877, 0.2659, 0.9766, -0.877, 0.1787, 0.8892, -0.8989, 0.2659, 0.8892, -0.877, 0.1787, 1.0635, -0.8989, 0.1787, 0.9766, -0.8989, 0.2659, 1.0635, -0.877, 0.2659, 1.0635, -0.877, 0.1787, 0.9766, -0.8989, 0.2659, 0.9766, -0.877, 0.1776, 1.1416, -0.8931, 0.1787, 1.0635, -0.8989, 0.2644, 1.1416, -0.8716, 0.2644, 1.1416, -0.8716, 0.1787, 1.0635, -0.8989, 0.2659, 1.0635, -0.877, 0.1743, 1.2188, -0.8765, 0.1776, 1.1416, -0.8931, 0.2593, 1.2188, -0.855, 0.2593, 1.2188, -0.855, 0.1776, 1.1416, -0.8931, 0.2644, 1.1416, -0.8716, 0.1687, 1.293, -0.8481, 0.1743, 1.2188, -0.8765, 0.251, 1.293, -0.8276, 0.251, 1.293, -0.8276, 0.1743, 1.2188, -0.8765, 0.2593, 1.2188, -0.855, 0.161, 1.3652, -0.8096, 0.1687, 1.293, -0.8481, 0.2396, 1.3652, -0.79, 0.2396, 1.3652, -0.79, 0.1687, 1.293, -0.8481, 0.251, 1.293, -0.8276, 0.1514, 1.4336, -0.7612, 0.161, 1.3652, -0.8096, 0.2252, 1.4336, -0.7427, 0.2252, 1.4336, -0.7427, 0.161, 1.3652, -0.8096, 0.2396, 1.3652, -0.79, 0.1398, 1.498, -0.7026, 0.1514, 1.4336, -0.7612, 0.208, 1.498, -0.6855, 0.208, 1.498, -0.6855, 0.1514, 1.4336, -0.7612, 0.2252, 1.4336, -0.7427, 0.1263, 1.5557, -0.6353, 0.1398, 1.498, -0.7026, 0.1881, 1.5557, -0.6201, 0.1881, 1.5557, -0.6201, 0.1398, 1.498, -0.7026, 0.208, 1.498, -0.6855, 0.1115, 1.6084, -0.5601, 0.1263, 1.5557, -0.6353, 0.1659, 1.6084, -0.5469, 0.1659, 1.6084, -0.5469, 0.1263, 1.5557, -0.6353, 0.1881, 1.5557, -0.6201, 0.0951, 1.6533, -0.4783, 0.1115, 1.6084, -0.5601, 0.1415, 1.6533, -0.4666, 0.1415, 1.6533, -0.4666, 0.1115, 1.6084, -0.5601, 0.1659, 1.6084, -0.5469, 0.0776, 1.6914, -0.3899, 0.0951, 1.6533, -0.4783, 0.1154, 1.6914, -0.3804, 0.1154, 1.6914, -0.3804, 0.0951, 1.6533, -0.4783, 0.1415, 1.6533, -0.4666, 0.0591, 1.7207, -0.2969, 0.0776, 1.6914, -0.3899, 0.0878, 1.7207, -0.2896, 0.0878, 1.7207, -0.2896, 0.0776, 1.6914, -0.3899, 0.1154, 1.6914, -0.3804, 0.0398, 1.7422, -0.2, 0.0591, 1.7207, -0.2969, 0.0592, 1.7422, -0.1952, 0.0592, 1.7422, -0.1952, 0.0591, 1.7207, -0.2969, 0.0878, 1.7207, -0.2896, 0.02, 1.7559, -0.1006, 0.0398, 1.7422, -0.2, 0.0298, 1.7559, -0.0982, 0.0298, 1.7559, -0.0982, 0.0398, 1.7422, -0.2, 0.0592, 1.7422, -0.1952, 0.2659, 0.7153, -0.877, 0.2659, 0.6279, -0.877, 0.3506, 0.7153, -0.8467, 0.3506, 0.7153, -0.8467, 0.2659, 0.6279, -0.877, 0.3506, 0.6279, -0.8467, 0.2659, 0.8022, -0.877, 0.2659, 0.7153, -0.877, 0.3506, 0.8022, -0.8467, 0.3506, 0.8022, -0.8467, 0.2659, 0.7153, -0.877, 0.3506, 0.7153, -0.8467, 0.2659, 0.8892, -0.877, 0.2659, 0.8022, -0.877, 0.3506, 0.8892, -0.8467, 0.3506, 0.8892, -0.8467, 0.2659, 0.8022, -0.877, 0.3506, 0.8022, -0.8467, 0.2659, 0.9766, -0.877, 0.2659, 0.8892, -0.877, 0.3506, 0.9766, -0.8467, 0.3506, 0.9766, -0.8467, 0.2659, 0.8892, -0.877, 0.3506, 0.8892, -0.8467, 0.2659, 1.0635, -0.877, 0.2659, 0.9766, -0.877, 0.3506, 1.0635, -0.8467, 0.3506, 1.0635, -0.8467, 0.2659, 0.9766, -0.877, 0.3506, 0.9766, -0.8467, 0.2644, 1.1416, -0.8716, 0.2659, 1.0635, -0.877, 0.3484, 1.1416, -0.8413, 0.3484, 1.1416, -0.8413, 0.2659, 1.0635, -0.877, 0.3506, 1.0635, -0.8467, 0.2593, 1.2188, -0.855, 0.2644, 1.1416, -0.8716, 0.3418, 1.2188, -0.8252, 0.3418, 1.2188, -0.8252, 0.2644, 1.1416, -0.8716, 0.3484, 1.1416, -0.8413, 0.251, 1.293, -0.8276, 0.2593, 1.2188, -0.855, 0.3311, 1.293, -0.7993, 0.3311, 1.293, -0.7993, 0.2593, 1.2188, -0.855, 0.3418, 1.2188, -0.8252, 0.2396, 1.3652, -0.79, 0.251, 1.293, -0.8276, 0.3159, 1.3652, -0.7627, 0.3159, 1.3652, -0.7627, 0.251, 1.293, -0.8276, 0.3311, 1.293, -0.7993, 0.2252, 1.4336, -0.7427, 0.2396, 1.3652, -0.79, 0.2969, 1.4336, -0.7168, 0.2969, 1.4336, -0.7168, 0.2396, 1.3652, -0.79, 0.3159, 1.3652, -0.7627, 0.208, 1.498, -0.6855, 0.2252, 1.4336, -0.7427, 0.2742, 1.498, -0.6621, 0.2742, 1.498, -0.6621, 0.2252, 1.4336, -0.7427, 0.2969, 1.4336, -0.7168, 0.1881, 1.5557, -0.6201, 0.208, 1.498, -0.6855, 0.2479, 1.5557, -0.5986, 0.2479, 1.5557, -0.5986, 0.208, 1.498, -0.6855, 0.2742, 1.498, -0.6621, 0.1659, 1.6084, -0.5469, 0.1881, 1.5557, -0.6201, 0.2186, 1.6084, -0.5278, 0.2186, 1.6084, -0.5278, 0.1881, 1.5557, -0.6201, 0.2479, 1.5557, -0.5986, 0.1415, 1.6533, -0.4666, 0.1659, 1.6084, -0.5469, 0.1865, 1.6533, -0.4504, 0.1865, 1.6533, -0.4504, 0.1659, 1.6084, -0.5469, 0.2186, 1.6084, -0.5278, 0.1154, 1.6914, -0.3804, 0.1415, 1.6533, -0.4666, 0.1521, 1.6914, -0.3674, 0.1521, 1.6914, -0.3674, 0.1415, 1.6533, -0.4666, 0.1865, 1.6533, -0.4504, 0.0878, 1.7207, -0.2896, 0.1154, 1.6914, -0.3804, 0.1158, 1.7207, -0.2795, 0.1158, 1.7207, -0.2795, 0.1154, 1.6914, -0.3804, 0.1521, 1.6914, -0.3674, 0.0592, 1.7422, -0.1952, 0.0878, 1.7207, -0.2896, 0.078, 1.7422, -0.1884, 0.078, 1.7422, -0.1884, 0.0878, 1.7207, -0.2896, 0.1158, 1.7207, -0.2795, 0.0298, 1.7559, -0.0982, 0.0592, 1.7422, -0.1952, 0.0392, 1.7559, -0.0948, 0.0392, 1.7559, -0.0948, 0.0592, 1.7422, -0.1952, 0.078, 1.7422, -0.1884, 0.3506, 0.7153, -0.8467, 0.3506, 0.6279, -0.8467, 0.4319, 0.7153, -0.8081, 0.4319, 0.7153, -0.8081, 0.3506, 0.6279, -0.8467, 0.4319, 0.6279, -0.8081, 0.3506, 0.8022, -0.8467, 0.3506, 0.7153, -0.8467, 0.4319, 0.8022, -0.8081, 0.4319, 0.8022, -0.8081, 0.3506, 0.7153, -0.8467, 0.4319, 0.7153, -0.8081, 0.3506, 0.8892, -0.8467, 0.3506, 0.8022, -0.8467, 0.4319, 0.8892, -0.8081, 0.4319, 0.8892, -0.8081, 0.3506, 0.8022, -0.8467, 0.4319, 0.8022, -0.8081, 0.3506, 0.9766, -0.8467, 0.3506, 0.8892, -0.8467, 0.4319, 0.9766, -0.8081, 0.4319, 0.9766, -0.8081, 0.3506, 0.8892, -0.8467, 0.4319, 0.8892, -0.8081, 0.3506, 1.0635, -0.8467, 0.3506, 0.9766, -0.8467, 0.4319, 1.0635, -0.8081, 0.4319, 1.0635, -0.8081, 0.3506, 0.9766, -0.8467, 0.4319, 0.9766, -0.8081, 0.3484, 1.1416, -0.8413, 0.3506, 1.0635, -0.8467, 0.4292, 1.1416, -0.8032, 0.4292, 1.1416, -0.8032, 0.3506, 1.0635, -0.8467, 0.4319, 1.0635, -0.8081, 0.3418, 1.2188, -0.8252, 0.3484, 1.1416, -0.8413, 0.4211, 1.2188, -0.7881, 0.4211, 1.2188, -0.7881, 0.3484, 1.1416, -0.8413, 0.4292, 1.1416, -0.8032, 0.3311, 1.293, -0.7993, 0.3418, 1.2188, -0.8252, 0.4077, 1.293, -0.7627, 0.4077, 1.293, -0.7627, 0.3418, 1.2188, -0.8252, 0.4211, 1.2188, -0.7881, 0.3159, 1.3652, -0.7627, 0.3311, 1.293, -0.7993, 0.3892, 1.3652, -0.728, 0.3892, 1.3652, -0.728, 0.3311, 1.293, -0.7993, 0.4077, 1.293, -0.7627, 0.2969, 1.4336, -0.7168, 0.3159, 1.3652, -0.7627, 0.3657, 1.4336, -0.6841, 0.3657, 1.4336, -0.6841, 0.3159, 1.3652, -0.7627, 0.3892, 1.3652, -0.728, 0.2742, 1.498, -0.6621, 0.2969, 1.4336, -0.7168, 0.3376, 1.498, -0.6318, 0.3376, 1.498, -0.6318, 0.2969, 1.4336, -0.7168, 0.3657, 1.4336, -0.6841, 0.2479, 1.5557, -0.5986, 0.2742, 1.498, -0.6621, 0.3054, 1.5557, -0.5713, 0.3054, 1.5557, -0.5713, 0.2742, 1.498, -0.6621, 0.3376, 1.498, -0.6318, 0.2186, 1.6084, -0.5278, 0.2479, 1.5557, -0.5986, 0.2693, 1.6084, -0.5039, 0.2693, 1.6084, -0.5039, 0.2479, 1.5557, -0.5986, 0.3054, 1.5557, -0.5713, 0.1865, 1.6533, -0.4504, 0.2186, 1.6084, -0.5278, 0.2299, 1.6533, -0.4299, 0.2299, 1.6533, -0.4299, 0.2186, 1.6084, -0.5278, 0.2693, 1.6084, -0.5039, 0.1521, 1.6914, -0.3674, 0.1865, 1.6533, -0.4504, 0.1874, 1.6914, -0.3506, 0.1874, 1.6914, -0.3506, 0.1865, 1.6533, -0.4504, 0.2299, 1.6533, -0.4299, 0.1158, 1.7207, -0.2795, 0.1521, 1.6914, -0.3674, 0.1427, 1.7207, -0.2668, 0.1427, 1.7207, -0.2668, 0.1521, 1.6914, -0.3674, 0.1874, 1.6914, -0.3506, 0.078, 1.7422, -0.1884, 0.1158, 1.7207, -0.2795, 0.0961, 1.7422, -0.1798, 0.0961, 1.7422, -0.1798, 0.1158, 1.7207, -0.2795, 0.1427, 1.7207, -0.2668, 0.0392, 1.7559, -0.0948, 0.078, 1.7422, -0.1884, 0.0484, 1.7559, -0.0905, 0.0484, 1.7559, -0.0905, 0.078, 1.7422, -0.1884, 0.0961, 1.7422, -0.1798, 0.4319, 0.7153, -0.8081, 0.4319, 0.6279, -0.8081, 0.5088, 0.7153, -0.7617, 0.5088, 0.7153, -0.7617, 0.4319, 0.6279, -0.8081, 0.5088, 0.6279, -0.7617, 0.4319, 0.8022, -0.8081, 0.4319, 0.7153, -0.8081, 0.5088, 0.8022, -0.7617, 0.5088, 0.8022, -0.7617, 0.4319, 0.7153, -0.8081, 0.5088, 0.7153, -0.7617, 0.4319, 0.8892, -0.8081, 0.4319, 0.8022, -0.8081, 0.5088, 0.8892, -0.7617, 0.5088, 0.8892, -0.7617, 0.4319, 0.8022, -0.8081, 0.5088, 0.8022, -0.7617, 0.4319, 0.9766, -0.8081, 0.4319, 0.8892, -0.8081, 0.5088, 0.9766, -0.7617, 0.5088, 0.9766, -0.7617, 0.4319, 0.8892, -0.8081, 0.5088, 0.8892, -0.7617, 0.4319, 1.0635, -0.8081, 0.4319, 0.9766, -0.8081, 0.5088, 1.0635, -0.7617, 0.5088, 1.0635, -0.7617, 0.4319, 0.9766, -0.8081, 0.5088, 0.9766, -0.7617, 0.4292, 1.1416, -0.8032, 0.4319, 1.0635, -0.8081, 0.5059, 1.1416, -0.7573, 0.5059, 1.1416, -0.7573, 0.4319, 1.0635, -0.8081, 0.5088, 1.0635, -0.7617, 0.4211, 1.2188, -0.7881, 0.4292, 1.1416, -0.8032, 0.4963, 1.2188, -0.7427, 0.4963, 1.2188, -0.7427, 0.4292, 1.1416, -0.8032, 0.5059, 1.1416, -0.7573, 0.4077, 1.293, -0.7627, 0.4211, 1.2188, -0.7881, 0.4805, 1.293, -0.7192, 0.4805, 1.293, -0.7192, 0.4211, 1.2188, -0.7881, 0.4963, 1.2188, -0.7427, 0.3892, 1.3652, -0.728, 0.4077, 1.293, -0.7627, 0.4587, 1.3652, -0.6865, 0.4587, 1.3652, -0.6865, 0.4077, 1.293, -0.7627, 0.4805, 1.293, -0.7192, 0.3657, 1.4336, -0.6841, 0.3892, 1.3652, -0.728, 0.4312, 1.4336, -0.645, 0.4312, 1.4336, -0.645, 0.3892, 1.3652, -0.728, 0.4587, 1.3652, -0.6865, 0.3376, 1.498, -0.6318, 0.3657, 1.4336, -0.6841, 0.3979, 1.498, -0.5957, 0.3979, 1.498, -0.5957, 0.3657, 1.4336, -0.6841, 0.4312, 1.4336, -0.645, 0.3054, 1.5557, -0.5713, 0.3376, 1.498, -0.6318, 0.3599, 1.5557, -0.5386, 0.3599, 1.5557, -0.5386, 0.3376, 1.498, -0.6318, 0.3979, 1.498, -0.5957, 0.2693, 1.6084, -0.5039, 0.3054, 1.5557, -0.5713, 0.3174, 1.6084, -0.4751, 0.3174, 1.6084, -0.4751, 0.3054, 1.5557, -0.5713, 0.3599, 1.5557, -0.5386, 0.2299, 1.6533, -0.4299, 0.2693, 1.6084, -0.5039, 0.2708, 1.6533, -0.4053, 0.2708, 1.6533, -0.4053, 0.2693, 1.6084, -0.5039, 0.3174, 1.6084, -0.4751, 0.1874, 1.6914, -0.3506, 0.2299, 1.6533, -0.4299, 0.2209, 1.6914, -0.3306, 0.2209, 1.6914, -0.3306, 0.2299, 1.6533, -0.4299, 0.2708, 1.6533, -0.4053, 0.1427, 1.7207, -0.2668, 0.1874, 1.6914, -0.3506, 0.1681, 1.7207, -0.2517, 0.1681, 1.7207, -0.2517, 0.1874, 1.6914, -0.3506, 0.2209, 1.6914, -0.3306, 0.0961, 1.7422, -0.1798, 0.1427, 1.7207, -0.2668, 0.1133, 1.7422, -0.1696, 0.1133, 1.7422, -0.1696, 0.1427, 1.7207, -0.2668, 0.1681, 1.7207, -0.2517, 0.0484, 1.7559, -0.0905, 0.0961, 1.7422, -0.1798, 0.057, 1.7559, -0.0853, 0.057, 1.7559, -0.0853, 0.0961, 1.7422, -0.1798, 0.1133, 1.7422, -0.1696, 0.5088, 0.7153, -0.7617, 0.5088, 0.6279, -0.7617, 0.5811, 0.7153, -0.7085, 0.5811, 0.7153, -0.7085, 0.5088, 0.6279, -0.7617, 0.5811, 0.6279, -0.7085, 0.5088, 0.8022, -0.7617, 0.5088, 0.7153, -0.7617, 0.5811, 0.8022, -0.7085, 0.5811, 0.8022, -0.7085, 0.5088, 0.7153, -0.7617, 0.5811, 0.7153, -0.7085, 0.5088, 0.8892, -0.7617, 0.5088, 0.8022, -0.7617, 0.5811, 0.8892, -0.7085, 0.5811, 0.8892, -0.7085, 0.5088, 0.8022, -0.7617, 0.5811, 0.8022, -0.7085, 0.5088, 0.9766, -0.7617, 0.5088, 0.8892, -0.7617, 0.5811, 0.9766, -0.7085, 0.5811, 0.9766, -0.7085, 0.5088, 0.8892, -0.7617, 0.5811, 0.8892, -0.7085, 0.5088, 1.0635, -0.7617, 0.5088, 0.9766, -0.7617, 0.5811, 1.0635, -0.7085, 0.5811, 1.0635, -0.7085, 0.5088, 0.9766, -0.7617, 0.5811, 0.9766, -0.7085, 0.5059, 1.1416, -0.7573, 0.5088, 1.0635, -0.7617, 0.5776, 1.1416, -0.7041, 0.5776, 1.1416, -0.7041, 0.5088, 1.0635, -0.7617, 0.5811, 1.0635, -0.7085, 0.4963, 1.2188, -0.7427, 0.5059, 1.1416, -0.7573, 0.5669, 1.2188, -0.6904, 0.5669, 1.2188, -0.6904, 0.5059, 1.1416, -0.7573, 0.5776, 1.1416, -0.7041, 0.4805, 1.293, -0.7192, 0.4963, 1.2188, -0.7427, 0.5488, 1.293, -0.6685, 0.5488, 1.293, -0.6685, 0.4963, 1.2188, -0.7427, 0.5669, 1.2188, -0.6904, 0.4587, 1.3652, -0.6865, 0.4805, 1.293, -0.7192, 0.5239, 1.3652, -0.6382, 0.5239, 1.3652, -0.6382, 0.4805, 1.293, -0.7192, 0.5488, 1.293, -0.6685, 0.4312, 1.4336, -0.645, 0.4587, 1.3652, -0.6865, 0.4922, 1.4336, -0.5996, 0.4922, 1.4336, -0.5996, 0.4587, 1.3652, -0.6865, 0.5239, 1.3652, -0.6382, 0.3979, 1.498, -0.5957, 0.4312, 1.4336, -0.645, 0.4546, 1.498, -0.5537, 0.4546, 1.498, -0.5537, 0.4312, 1.4336, -0.645, 0.4922, 1.4336, -0.5996, 0.3599, 1.5557, -0.5386, 0.3979, 1.498, -0.5957, 0.4111, 1.5557, -0.501, 0.4111, 1.5557, -0.501, 0.3979, 1.498, -0.5957, 0.4546, 1.498, -0.5537, 0.3174, 1.6084, -0.4751, 0.3599, 1.5557, -0.5386, 0.3625, 1.6084, -0.4417, 0.3625, 1.6084, -0.4417, 0.3599, 1.5557, -0.5386, 0.4111, 1.5557, -0.501, 0.2708, 1.6533, -0.4053, 0.3174, 1.6084, -0.4751, 0.3093, 1.6533, -0.377, 0.3093, 1.6533, -0.377, 0.3174, 1.6084, -0.4751, 0.3625, 1.6084, -0.4417, 0.2209, 1.6914, -0.3306, 0.2708, 1.6533, -0.4053, 0.2522, 1.6914, -0.3074, 0.2522, 1.6914, -0.3074, 0.2708, 1.6533, -0.4053, 0.3093, 1.6533, -0.377, 0.1681, 1.7207, -0.2517, 0.2209, 1.6914, -0.3306, 0.192, 1.7207, -0.234, 0.192, 1.7207, -0.234, 0.2209, 1.6914, -0.3306, 0.2522, 1.6914, -0.3074, 0.1133, 1.7422, -0.1696, 0.1681, 1.7207, -0.2517, 0.1294, 1.7422, -0.1576, 0.1294, 1.7422, -0.1576, 0.1681, 1.7207, -0.2517, 0.192, 1.7207, -0.234, 0.057, 1.7559, -0.0853, 0.1133, 1.7422, -0.1696, 0.0651, 1.7559, -0.0793, 0.0651, 1.7559, -0.0793, 0.1133, 1.7422, -0.1696, 0.1294, 1.7422, -0.1576, 0.5811, 0.7153, -0.7085, 0.5811, 0.6279, -0.7085, 0.6479, 0.7153, -0.6479, 0.6479, 0.7153, -0.6479, 0.5811, 0.6279, -0.7085, 0.6479, 0.6279, -0.6479, 0.5811, 0.8022, -0.7085, 0.5811, 0.7153, -0.7085, 0.6479, 0.8022, -0.6479, 0.6479, 0.8022, -0.6479, 0.5811, 0.7153, -0.7085, 0.6479, 0.7153, -0.6479, 0.5811, 0.8892, -0.7085, 0.5811, 0.8022, -0.7085, 0.6479, 0.8892, -0.6479, 0.6479, 0.8892, -0.6479, 0.5811, 0.8022, -0.7085, 0.6479, 0.8022, -0.6479, 0.5811, 0.9766, -0.7085, 0.5811, 0.8892, -0.7085, 0.6479, 0.9766, -0.6479, 0.6479, 0.9766, -0.6479, 0.5811, 0.8892, -0.7085, 0.6479, 0.8892, -0.6479, 0.5811, 1.0635, -0.7085, 0.5811, 0.9766, -0.7085, 0.6479, 1.0635, -0.6479, 0.6479, 1.0635, -0.6479, 0.5811, 0.9766, -0.7085, 0.6479, 0.9766, -0.6479, 0.5776, 1.1416, -0.7041, 0.5811, 1.0635, -0.7085, 0.644, 1.1416, -0.644, 0.644, 1.1416, -0.644, 0.5811, 1.0635, -0.7085, 0.6479, 1.0635, -0.6479, 0.5669, 1.2188, -0.6904, 0.5776, 1.1416, -0.7041, 0.6318, 1.2188, -0.6318, 0.6318, 1.2188, -0.6318, 0.5776, 1.1416, -0.7041, 0.644, 1.1416, -0.644, 0.5488, 1.293, -0.6685, 0.5669, 1.2188, -0.6904, 0.6113, 1.293, -0.6113, 0.6113, 1.293, -0.6113, 0.5669, 1.2188, -0.6904, 0.6318, 1.2188, -0.6318, 0.5239, 1.3652, -0.6382, 0.5488, 1.293, -0.6685, 0.5835, 1.3652, -0.5835, 0.5835, 1.3652, -0.5835, 0.5488, 1.293, -0.6685, 0.6113, 1.293, -0.6113, 0.4922, 1.4336, -0.5996, 0.5239, 1.3652, -0.6382, 0.5483, 1.4336, -0.5483, 0.5483, 1.4336, -0.5483, 0.5239, 1.3652, -0.6382, 0.5835, 1.3652, -0.5835, 0.4546, 1.498, -0.5537, 0.4922, 1.4336, -0.5996, 0.5063, 1.498, -0.5063, 0.5063, 1.498, -0.5063, 0.4922, 1.4336, -0.5996, 0.5483, 1.4336, -0.5483, 0.4111, 1.5557, -0.501, 0.4546, 1.498, -0.5537, 0.4583, 1.5557, -0.4583, 0.4583, 1.5557, -0.4583, 0.4546, 1.498, -0.5537, 0.5063, 1.498, -0.5063, 0.3625, 1.6084, -0.4417, 0.4111, 1.5557, -0.501, 0.4041, 1.6084, -0.4041, 0.4041, 1.6084, -0.4041, 0.4111, 1.5557, -0.501, 0.4583, 1.5557, -0.4583, 0.3093, 1.6533, -0.377, 0.3625, 1.6084, -0.4417, 0.3447, 1.6533, -0.3447, 0.3447, 1.6533, -0.3447, 0.3625, 1.6084, -0.4417, 0.4041, 1.6084, -0.4041, 0.2522, 1.6914, -0.3074, 0.3093, 1.6533, -0.377, 0.281, 1.6914, -0.281, 0.281, 1.6914, -0.281, 0.3093, 1.6533, -0.377, 0.3447, 1.6533, -0.3447, 0.192, 1.7207, -0.234, 0.2522, 1.6914, -0.3074, 0.214, 1.7207, -0.214, 0.214, 1.7207, -0.214, 0.2522, 1.6914, -0.3074, 0.281, 1.6914, -0.281, 0.1294, 1.7422, -0.1576, 0.192, 1.7207, -0.234, 0.1442, 1.7422, -0.1442, 0.1442, 1.7422, -0.1442, 0.192, 1.7207, -0.234, 0.214, 1.7207, -0.214, 0.0651, 1.7559, -0.0793, 0.1294, 1.7422, -0.1576, 0.0726, 1.7559, -0.0726, 0.0726, 1.7559, -0.0726, 0.1294, 1.7422, -0.1576, 0.1442, 1.7422, -0.1442, 0.0793, 1.7559, -0.0651, 0.0793, 1.7559, 0.0651, 0.0726, 1.7559, -0.0726, 0.0726, 1.7559, -0.0726, 0.0793, 1.7559, 0.0651, 0.0726, 1.7559, 0.0726, 0.6479, 0.7153, -0.6479, 0.6479, 0.6279, -0.6479, 0.7085, 0.7153, -0.5811, 0.7085, 0.7153, -0.5811, 0.6479, 0.6279, -0.6479, 0.7085, 0.6279, -0.5811, 0.6479, 0.8022, -0.6479, 0.6479, 0.7153, -0.6479, 0.7085, 0.8022, -0.5811, 0.7085, 0.8022, -0.5811, 0.6479, 0.7153, -0.6479, 0.7085, 0.7153, -0.5811, 0.6479, 0.8892, -0.6479, 0.6479, 0.8022, -0.6479, 0.7085, 0.8892, -0.5811, 0.7085, 0.8892, -0.5811, 0.6479, 0.8022, -0.6479, 0.7085, 0.8022, -0.5811, 0.6479, 0.9766, -0.6479, 0.6479, 0.8892, -0.6479, 0.7085, 0.9766, -0.5811, 0.7085, 0.9766, -0.5811, 0.6479, 0.8892, -0.6479, 0.7085, 0.8892, -0.5811, 0.6479, 1.0635, -0.6479, 0.6479, 0.9766, -0.6479, 0.7085, 1.0635, -0.5811, 0.7085, 1.0635, -0.5811, 0.6479, 0.9766, -0.6479, 0.7085, 0.9766, -0.5811, 0.644, 1.1416, -0.644, 0.6479, 1.0635, -0.6479, 0.7041, 1.1416, -0.5776, 0.7041, 1.1416, -0.5776, 0.6479, 1.0635, -0.6479, 0.7085, 1.0635, -0.5811, 0.6318, 1.2188, -0.6318, 0.644, 1.1416, -0.644, 0.6904, 1.2188, -0.5669, 0.6904, 1.2188, -0.5669, 0.644, 1.1416, -0.644, 0.7041, 1.1416, -0.5776, 0.6113, 1.293, -0.6113, 0.6318, 1.2188, -0.6318, 0.6685, 1.293, -0.5488, 0.6685, 1.293, -0.5488, 0.6318, 1.2188, -0.6318, 0.6904, 1.2188, -0.5669, 0.5835, 1.3652, -0.5835, 0.6113, 1.293, -0.6113, 0.6382, 1.3652, -0.5239, 0.6382, 1.3652, -0.5239, 0.6113, 1.293, -0.6113, 0.6685, 1.293, -0.5488, 0.5483, 1.4336, -0.5483, 0.5835, 1.3652, -0.5835, 0.5996, 1.4336, -0.4922, 0.5996, 1.4336, -0.4922, 0.5835, 1.3652, -0.5835, 0.6382, 1.3652, -0.5239, 0.5063, 1.498, -0.5063, 0.5483, 1.4336, -0.5483, 0.5537, 1.498, -0.4546, 0.5537, 1.498, -0.4546, 0.5483, 1.4336, -0.5483, 0.5996, 1.4336, -0.4922, 0.4583, 1.5557, -0.4583, 0.5063, 1.498, -0.5063, 0.501, 1.5557, -0.4111, 0.501, 1.5557, -0.4111, 0.5063, 1.498, -0.5063, 0.5537, 1.498, -0.4546, 0.4041, 1.6084, -0.4041, 0.4583, 1.5557, -0.4583, 0.4417, 1.6084, -0.3625, 0.4417, 1.6084, -0.3625, 0.4583, 1.5557, -0.4583, 0.501, 1.5557, -0.4111, 0.3447, 1.6533, -0.3447, 0.4041, 1.6084, -0.4041, 0.377, 1.6533, -0.3093, 0.377, 1.6533, -0.3093, 0.4041, 1.6084, -0.4041, 0.4417, 1.6084, -0.3625, 0.281, 1.6914, -0.281, 0.3447, 1.6533, -0.3447, 0.3074, 1.6914, -0.2522, 0.3074, 1.6914, -0.2522, 0.3447, 1.6533, -0.3447, 0.377, 1.6533, -0.3093, 0.214, 1.7207, -0.214, 0.281, 1.6914, -0.281, 0.234, 1.7207, -0.192, 0.234, 1.7207, -0.192, 0.281, 1.6914, -0.281, 0.3074, 1.6914, -0.2522, 0.1442, 1.7422, -0.1442, 0.214, 1.7207, -0.214, 0.1576, 1.7422, -0.1294, 0.1576, 1.7422, -0.1294, 0.214, 1.7207, -0.214, 0.234, 1.7207, -0.192, 0.0726, 1.7559, -0.0726, 0.1442, 1.7422, -0.1442, 0.0793, 1.7559, -0.0651, 0.0793, 1.7559, -0.0651, 0.1442, 1.7422, -0.1442, 0.1576, 1.7422, -0.1294, 0.0651, 1.7559, 0.0793, 0.0651, 1.7559, -0.0793, 0.0726, 1.7559, 0.0726, 0.0726, 1.7559, 0.0726, 0.0651, 1.7559, -0.0793, 0.0726, 1.7559, -0.0726, 0.7085, 0.7153, -0.5811, 0.7085, 0.6279, -0.5811, 0.7617, 0.7153, -0.5088, 0.7617, 0.7153, -0.5088, 0.7085, 0.6279, -0.5811, 0.7617, 0.6279, -0.5088, 0.7085, 0.8022, -0.5811, 0.7085, 0.7153, -0.5811, 0.7617, 0.8022, -0.5088, 0.7617, 0.8022, -0.5088, 0.7085, 0.7153, -0.5811, 0.7617, 0.7153, -0.5088, 0.7085, 0.8892, -0.5811, 0.7085, 0.8022, -0.5811, 0.7617, 0.8892, -0.5088, 0.7617, 0.8892, -0.5088, 0.7085, 0.8022, -0.5811, 0.7617, 0.8022, -0.5088, 0.7085, 0.9766, -0.5811, 0.7085, 0.8892, -0.5811, 0.7617, 0.9766, -0.5088, 0.7617, 0.9766, -0.5088, 0.7085, 0.8892, -0.5811, 0.7617, 0.8892, -0.5088, 0.7085, 1.0635, -0.5811, 0.7085, 0.9766, -0.5811, 0.7617, 1.0635, -0.5088, 0.7617, 1.0635, -0.5088, 0.7085, 0.9766, -0.5811, 0.7617, 0.9766, -0.5088, 0.7041, 1.1416, -0.5776, 0.7085, 1.0635, -0.5811, 0.7573, 1.1416, -0.5059, 0.7573, 1.1416, -0.5059, 0.7085, 1.0635, -0.5811, 0.7617, 1.0635, -0.5088, 0.6904, 1.2188, -0.5669, 0.7041, 1.1416, -0.5776, 0.7427, 1.2188, -0.4963, 0.7427, 1.2188, -0.4963, 0.7041, 1.1416, -0.5776, 0.7573, 1.1416, -0.5059, 0.6685, 1.293, -0.5488, 0.6904, 1.2188, -0.5669, 0.7192, 1.293, -0.4805, 0.7192, 1.293, -0.4805, 0.6904, 1.2188, -0.5669, 0.7427, 1.2188, -0.4963, 0.6382, 1.3652, -0.5239, 0.6685, 1.293, -0.5488, 0.6865, 1.3652, -0.4587, 0.6865, 1.3652, -0.4587, 0.6685, 1.293, -0.5488, 0.7192, 1.293, -0.4805, 0.5996, 1.4336, -0.4922, 0.6382, 1.3652, -0.5239, 0.645, 1.4336, -0.4312, 0.645, 1.4336, -0.4312, 0.6382, 1.3652, -0.5239, 0.6865, 1.3652, -0.4587, 0.5537, 1.498, -0.4546, 0.5996, 1.4336, -0.4922, 0.5957, 1.498, -0.3979, 0.5957, 1.498, -0.3979, 0.5996, 1.4336, -0.4922, 0.645, 1.4336, -0.4312, 0.501, 1.5557, -0.4111, 0.5537, 1.498, -0.4546, 0.5386, 1.5557, -0.3599, 0.5386, 1.5557, -0.3599, 0.5537, 1.498, -0.4546, 0.5957, 1.498, -0.3979, 0.4417, 1.6084, -0.3625, 0.501, 1.5557, -0.4111, 0.4751, 1.6084, -0.3174, 0.4751, 1.6084, -0.3174, 0.501, 1.5557, -0.4111, 0.5386, 1.5557, -0.3599, 0.377, 1.6533, -0.3093, 0.4417, 1.6084, -0.3625, 0.4053, 1.6533, -0.2708, 0.4053, 1.6533, -0.2708, 0.4417, 1.6084, -0.3625, 0.4751, 1.6084, -0.3174, 0.3074, 1.6914, -0.2522, 0.377, 1.6533, -0.3093, 0.3306, 1.6914, -0.2209, 0.3306, 1.6914, -0.2209, 0.377, 1.6533, -0.3093, 0.4053, 1.6533, -0.2708, 0.234, 1.7207, -0.192, 0.3074, 1.6914, -0.2522, 0.2517, 1.7207, -0.1681, 0.2517, 1.7207, -0.1681, 0.3074, 1.6914, -0.2522, 0.3306, 1.6914, -0.2209, 0.1576, 1.7422, -0.1294, 0.234, 1.7207, -0.192, 0.1696, 1.7422, -0.1133, 0.1696, 1.7422, -0.1133, 0.234, 1.7207, -0.192, 0.2517, 1.7207, -0.1681, 0.0853, 1.7559, -0.0562, 0.1696, 1.7422, -0.1133, 0.1798, 1.7422, -0.0961, 0.057, 1.7559, 0.0853, 0.057, 1.7559, -0.0853, 0.0651, 1.7559, 0.0793, 0.0651, 1.7559, 0.0793, 0.057, 1.7559, -0.0853, 0.0651, 1.7559, -0.0793, 0.7617, 0.7153, -0.5088, 0.7617, 0.6279, -0.5088, 0.8081, 0.7153, -0.4319, 0.8081, 0.7153, -0.4319, 0.7617, 0.6279, -0.5088, 0.8081, 0.6279, -0.4319, 0.7617, 0.8022, -0.5088, 0.7617, 0.7153, -0.5088, 0.8081, 0.8022, -0.4319, 0.8081, 0.8022, -0.4319, 0.7617, 0.7153, -0.5088, 0.8081, 0.7153, -0.4319, 0.7617, 0.8892, -0.5088, 0.7617, 0.8022, -0.5088, 0.8081, 0.8892, -0.4319, 0.8081, 0.8892, -0.4319, 0.7617, 0.8022, -0.5088, 0.8081, 0.8022, -0.4319, 0.7617, 0.9766, -0.5088, 0.7617, 0.8892, -0.5088, 0.8081, 0.9766, -0.4319, 0.8081, 0.9766, -0.4319, 0.7617, 0.8892, -0.5088, 0.8081, 0.8892, -0.4319, 0.7617, 1.0635, -0.5088, 0.7617, 0.9766, -0.5088, 0.8081, 1.0635, -0.4319, 0.8081, 1.0635, -0.4319, 0.7617, 0.9766, -0.5088, 0.8081, 0.9766, -0.4319, 0.7573, 1.1416, -0.5059, 0.7617, 1.0635, -0.5088, 0.8032, 1.1416, -0.4292, 0.8032, 1.1416, -0.4292, 0.7617, 1.0635, -0.5088, 0.8081, 1.0635, -0.4319, 0.7427, 1.2188, -0.4963, 0.7573, 1.1416, -0.5059, 0.7881, 1.2188, -0.4211, 0.7881, 1.2188, -0.4211, 0.7573, 1.1416, -0.5059, 0.8032, 1.1416, -0.4292, 0.7192, 1.293, -0.4805, 0.7427, 1.2188, -0.4963, 0.7627, 1.293, -0.4077, 0.7627, 1.293, -0.4077, 0.7427, 1.2188, -0.4963, 0.7881, 1.2188, -0.4211, 0.6865, 1.3652, -0.4587, 0.7192, 1.293, -0.4805, 0.728, 1.3652, -0.3892, 0.728, 1.3652, -0.3892, 0.7192, 1.293, -0.4805, 0.7627, 1.293, -0.4077, 0.645, 1.4336, -0.4312, 0.6865, 1.3652, -0.4587, 0.6841, 1.4336, -0.3657, 0.6841, 1.4336, -0.3657, 0.6865, 1.3652, -0.4587, 0.728, 1.3652, -0.3892, 0.5957, 1.498, -0.3979, 0.645, 1.4336, -0.4312, 0.6318, 1.498, -0.3376, 0.6318, 1.498, -0.3376, 0.645, 1.4336, -0.4312, 0.6841, 1.4336, -0.3657, 0.5386, 1.5557, -0.3599, 0.5957, 1.498, -0.3979, 0.5713, 1.5557, -0.3054, 0.5713, 1.5557, -0.3054, 0.5957, 1.498, -0.3979, 0.6318, 1.498, -0.3376, 0.4751, 1.6084, -0.3174, 0.5386, 1.5557, -0.3599, 0.5039, 1.6084, -0.2693, 0.5039, 1.6084, -0.2693, 0.5386, 1.5557, -0.3599, 0.5713, 1.5557, -0.3054, 0.4053, 1.6533, -0.2708, 0.4751, 1.6084, -0.3174, 0.4299, 1.6533, -0.2299, 0.4299, 1.6533, -0.2299, 0.4751, 1.6084, -0.3174, 0.5039, 1.6084, -0.2693, 0.3306, 1.6914, -0.2209, 0.4053, 1.6533, -0.2708, 0.3506, 1.6914, -0.1874, 0.3506, 1.6914, -0.1874, 0.4053, 1.6533, -0.2708, 0.4299, 1.6533, -0.2299, 0.2517, 1.7207, -0.1681, 0.3306, 1.6914, -0.2209, 0.2668, 1.7207, -0.1427, 0.2668, 1.7207, -0.1427, 0.3306, 1.6914, -0.2209, 0.3506, 1.6914, -0.1874, 0.1696, 1.7422, -0.1133, 0.2517, 1.7207, -0.1681, 0.1798, 1.7422, -0.0961, 0.1798, 1.7422, -0.0961, 0.2517, 1.7207, -0.1681, 0.2668, 1.7207, -0.1427, 0.0853, 1.7559, -0.0562, 0.1884, 1.7422, -0.078, 0.1952, 1.7422, -0.0592, 0.0484, 1.7559, 0.0905, 0.0484, 1.7559, -0.0905, 0.057, 1.7559, 0.0853, 0.057, 1.7559, 0.0853, 0.0484, 1.7559, -0.0905, 0.057, 1.7559, -0.0853, 0.8081, 0.7153, -0.4319, 0.8081, 0.6279, -0.4319, 0.8467, 0.7153, -0.3506, 0.8467, 0.7153, -0.3506, 0.8081, 0.6279, -0.4319, 0.8467, 0.6279, -0.3506, 0.8081, 0.8022, -0.4319, 0.8081, 0.7153, -0.4319, 0.8467, 0.8022, -0.3506, 0.8467, 0.8022, -0.3506, 0.8081, 0.7153, -0.4319, 0.8467, 0.7153, -0.3506, 0.8081, 0.8892, -0.4319, 0.8081, 0.8022, -0.4319, 0.8467, 0.8892, -0.3506, 0.8467, 0.8892, -0.3506, 0.8081, 0.8022, -0.4319, 0.8467, 0.8022, -0.3506, 0.8081, 0.9766, -0.4319, 0.8081, 0.8892, -0.4319, 0.8467, 0.9766, -0.3506, 0.8467, 0.9766, -0.3506, 0.8081, 0.8892, -0.4319, 0.8467, 0.8892, -0.3506, 0.8081, 1.0635, -0.4319, 0.8081, 0.9766, -0.4319, 0.8467, 1.0635, -0.3506, 0.8467, 1.0635, -0.3506, 0.8081, 0.9766, -0.4319, 0.8467, 0.9766, -0.3506, 0.8032, 1.1416, -0.4292, 0.8081, 1.0635, -0.4319, 0.8413, 1.1416, -0.3484, 0.8413, 1.1416, -0.3484, 0.8081, 1.0635, -0.4319, 0.8467, 1.0635, -0.3506, 0.7881, 1.2188, -0.4211, 0.8032, 1.1416, -0.4292, 0.8252, 1.2188, -0.3418, 0.8252, 1.2188, -0.3418, 0.8032, 1.1416, -0.4292, 0.8413, 1.1416, -0.3484, 0.7627, 1.293, -0.4077, 0.7881, 1.2188, -0.4211, 0.7993, 1.293, -0.3311, 0.7993, 1.293, -0.3311, 0.7881, 1.2188, -0.4211, 0.8252, 1.2188, -0.3418, 0.728, 1.3652, -0.3892, 0.7627, 1.293, -0.4077, 0.7627, 1.3652, -0.3159, 0.7627, 1.3652, -0.3159, 0.7627, 1.293, -0.4077, 0.7993, 1.293, -0.3311, 0.6841, 1.4336, -0.3657, 0.728, 1.3652, -0.3892, 0.7168, 1.4336, -0.2969, 0.7168, 1.4336, -0.2969, 0.728, 1.3652, -0.3892, 0.7627, 1.3652, -0.3159, 0.6318, 1.498, -0.3376, 0.6841, 1.4336, -0.3657, 0.6621, 1.498, -0.2742, 0.6621, 1.498, -0.2742, 0.6841, 1.4336, -0.3657, 0.7168, 1.4336, -0.2969, 0.5713, 1.5557, -0.3054, 0.6318, 1.498, -0.3376, 0.5986, 1.5557, -0.2479, 0.5986, 1.5557, -0.2479, 0.6318, 1.498, -0.3376, 0.6621, 1.498, -0.2742, 0.5039, 1.6084, -0.2693, 0.5713, 1.5557, -0.3054, 0.5278, 1.6084, -0.2186, 0.5278, 1.6084, -0.2186, 0.5713, 1.5557, -0.3054, 0.5986, 1.5557, -0.2479, 0.4299, 1.6533, -0.2299, 0.5039, 1.6084, -0.2693, 0.4504, 1.6533, -0.1865, 0.4504, 1.6533, -0.1865, 0.5039, 1.6084, -0.2693, 0.5278, 1.6084, -0.2186, 0.3506, 1.6914, -0.1874, 0.4299, 1.6533, -0.2299, 0.3674, 1.6914, -0.1521, 0.3674, 1.6914, -0.1521, 0.4299, 1.6533, -0.2299, 0.4504, 1.6533, -0.1865, 0.2668, 1.7207, -0.1427, 0.3506, 1.6914, -0.1874, 0.2795, 1.7207, -0.1158, 0.2795, 1.7207, -0.1158, 0.3506, 1.6914, -0.1874, 0.3674, 1.6914, -0.1521, 0.1798, 1.7422, -0.0961, 0.2668, 1.7207, -0.1427, 0.1884, 1.7422, -0.078, 0.1884, 1.7422, -0.078, 0.2668, 1.7207, -0.1427, 0.2795, 1.7207, -0.1158, 0.1367, 1.8203, -0.045, 0.1016, 1.7607, -0.0481, 0.2258, 1.8096, -0.0439, 0.2258, 1.8096, -0.0439, 0.1016, 1.7607, -0.0481, 0.2006, 1.749, -0.0479, 0.0484, 1.7559, -0.0905, 0.0484, 1.7559, 0.0905, 0.0392, 1.7559, -0.0948, 0.0392, 1.7559, -0.0948, 0.0484, 1.7559, 0.0905, 0.0392, 1.7559, 0.0948, 0.8467, 0.7153, -0.3506, 0.8467, 0.6279, -0.3506, 0.877, 0.7153, -0.2659, 0.877, 0.7153, -0.2659, 0.8467, 0.6279, -0.3506, 0.877, 0.6279, -0.2659, 0.8467, 0.8022, -0.3506, 0.8467, 0.7153, -0.3506, 0.877, 0.8022, -0.2659, 0.877, 0.8022, -0.2659, 0.8467, 0.7153, -0.3506, 0.877, 0.7153, -0.2659, 0.8467, 0.8892, -0.3506, 0.8467, 0.8022, -0.3506, 0.877, 0.8892, -0.2659, 0.877, 0.8892, -0.2659, 0.8467, 0.8022, -0.3506, 0.877, 0.8022, -0.2659, 0.8467, 0.9766, -0.3506, 0.8467, 0.8892, -0.3506, 0.877, 0.9766, -0.2659, 0.877, 0.9766, -0.2659, 0.8467, 0.8892, -0.3506, 0.877, 0.8892, -0.2659, 0.8467, 1.0635, -0.3506, 0.8467, 0.9766, -0.3506, 0.877, 1.0635, -0.2659, 0.877, 1.0635, -0.2659, 0.8467, 0.9766, -0.3506, 0.877, 0.9766, -0.2659, 0.8413, 1.1416, -0.3484, 0.8467, 1.0635, -0.3506, 0.8716, 1.1416, -0.2644, 0.8716, 1.1416, -0.2644, 0.8467, 1.0635, -0.3506, 0.877, 1.0635, -0.2659, 0.8252, 1.2188, -0.3418, 0.8413, 1.1416, -0.3484, 0.855, 1.2188, -0.2593, 0.855, 1.2188, -0.2593, 0.8413, 1.1416, -0.3484, 0.8716, 1.1416, -0.2644, 0.7993, 1.293, -0.3311, 0.8252, 1.2188, -0.3418, 0.8276, 1.293, -0.251, 0.8276, 1.293, -0.251, 0.8252, 1.2188, -0.3418, 0.855, 1.2188, -0.2593, 0.7627, 1.3652, -0.3159, 0.7993, 1.293, -0.3311, 0.79, 1.3652, -0.2396, 0.79, 1.3652, -0.2396, 0.7993, 1.293, -0.3311, 0.8276, 1.293, -0.251, 0.7168, 1.4336, -0.2969, 0.7627, 1.3652, -0.3159, 0.7427, 1.4336, -0.2252, 0.7427, 1.4336, -0.2252, 0.7627, 1.3652, -0.3159, 0.79, 1.3652, -0.2396, 0.6621, 1.498, -0.2742, 0.7168, 1.4336, -0.2969, 0.6855, 1.498, -0.208, 0.6855, 1.498, -0.208, 0.7168, 1.4336, -0.2969, 0.7427, 1.4336, -0.2252, 0.5986, 1.5557, -0.2479, 0.6621, 1.498, -0.2742, 0.6201, 1.5557, -0.1881, 0.6201, 1.5557, -0.1881, 0.6621, 1.498, -0.2742, 0.6855, 1.498, -0.208, 0.5278, 1.6084, -0.2186, 0.5986, 1.5557, -0.2479, 0.5469, 1.6084, -0.1659, 0.5469, 1.6084, -0.1659, 0.5986, 1.5557, -0.2479, 0.6201, 1.5557, -0.1881, 0.4504, 1.6533, -0.1865, 0.5278, 1.6084, -0.2186, 0.4666, 1.6533, -0.1415, 0.4666, 1.6533, -0.1415, 0.5278, 1.6084, -0.2186, 0.5469, 1.6084, -0.1659, 0.3674, 1.6914, -0.1521, 0.4504, 1.6533, -0.1865, 0.3804, 1.6914, -0.1154, 0.3804, 1.6914, -0.1154, 0.4504, 1.6533, -0.1865, 0.4666, 1.6533, -0.1415, 0.2795, 1.7207, -0.1158, 0.3674, 1.6914, -0.1521, 0.2896, 1.7207, -0.0878, 0.2896, 1.7207, -0.0878, 0.3674, 1.6914, -0.1521, 0.3804, 1.6914, -0.1154, 0.1884, 1.7422, -0.078, 0.2795, 1.7207, -0.1158, 0.1952, 1.7422, -0.0592, 0.1952, 1.7422, -0.0592, 0.2795, 1.7207, -0.1158, 0.2896, 1.7207, -0.0878, 0.0853, 1.7559, -0.0562, 0.1952, 1.7422, -0.0592, 0.1974, 1.7422, -0.0551, 0.0298, 1.7559, 0.0982, 0.0298, 1.7559, -0.0982, 0.0392, 1.7559, 0.0948, 0.0392, 1.7559, 0.0948, 0.0298, 1.7559, -0.0982, 0.0392, 1.7559, -0.0948, 0.877, 0.7153, -0.2659, 0.877, 0.6279, -0.2659, 0.8989, 0.7153, -0.1787, 0.8989, 0.7153, -0.1787, 0.877, 0.6279, -0.2659, 0.8989, 0.6279, -0.1787, 0.877, 0.8022, -0.2659, 0.877, 0.7153, -0.2659, 0.8989, 0.8022, -0.1787, 0.8989, 0.8022, -0.1787, 0.877, 0.7153, -0.2659, 0.8989, 0.7153, -0.1787, 0.877, 0.8892, -0.2659, 0.877, 0.8022, -0.2659, 0.8989, 0.8892, -0.1787, 0.8989, 0.8892, -0.1787, 0.877, 0.8022, -0.2659, 0.8989, 0.8022, -0.1787, 0.877, 0.9766, -0.2659, 0.877, 0.8892, -0.2659, 0.8989, 0.9766, -0.1787, 0.8989, 0.9766, -0.1787, 0.877, 0.8892, -0.2659, 0.8989, 0.8892, -0.1787, 0.877, 1.0635, -0.2659, 0.877, 0.9766, -0.2659, 0.8989, 1.0635, -0.1787, 0.8989, 1.0635, -0.1787, 0.877, 0.9766, -0.2659, 0.8989, 0.9766, -0.1787, 0.8716, 1.1416, -0.2644, 0.877, 1.0635, -0.2659, 0.8931, 1.1416, -0.1776, 0.8931, 1.1416, -0.1776, 0.877, 1.0635, -0.2659, 0.8989, 1.0635, -0.1787, 0.855, 1.2188, -0.2593, 0.8716, 1.1416, -0.2644, 0.8765, 1.2188, -0.1743, 0.8765, 1.2188, -0.1743, 0.8716, 1.1416, -0.2644, 0.8931, 1.1416, -0.1776, 0.8276, 1.293, -0.251, 0.855, 1.2188, -0.2593, 0.8481, 1.293, -0.1687, 0.8481, 1.293, -0.1687, 0.855, 1.2188, -0.2593, 0.8765, 1.2188, -0.1743, 0.79, 1.3652, -0.2396, 0.8276, 1.293, -0.251, 0.8096, 1.3652, -0.161, 0.8096, 1.3652, -0.161, 0.8276, 1.293, -0.251, 0.8481, 1.293, -0.1687, 0.7427, 1.4336, -0.2252, 0.79, 1.3652, -0.2396, 0.7612, 1.4336, -0.1514, 0.7612, 1.4336, -0.1514, 0.79, 1.3652, -0.2396, 0.8096, 1.3652, -0.161, 0.6855, 1.498, -0.208, 0.7427, 1.4336, -0.2252, 0.7026, 1.498, -0.1398, 0.7026, 1.498, -0.1398, 0.7427, 1.4336, -0.2252, 0.7612, 1.4336, -0.1514, 0.6201, 1.5557, -0.1881, 0.6855, 1.498, -0.208, 0.6353, 1.5557, -0.1263, 0.6353, 1.5557, -0.1263, 0.6855, 1.498, -0.208, 0.7026, 1.498, -0.1398, 0.5469, 1.6084, -0.1659, 0.6201, 1.5557, -0.1881, 0.5601, 1.6084, -0.1115, 0.5601, 1.6084, -0.1115, 0.6201, 1.5557, -0.1881, 0.6353, 1.5557, -0.1263, 0.4666, 1.6533, -0.1415, 0.5469, 1.6084, -0.1659, 0.4783, 1.6533, -0.0951, 0.4783, 1.6533, -0.0951, 0.5469, 1.6084, -0.1659, 0.5601, 1.6084, -0.1115, 0.3804, 1.6914, -0.1154, 0.4666, 1.6533, -0.1415, 0.3899, 1.6914, -0.0776, 0.3899, 1.6914, -0.0776, 0.4666, 1.6533, -0.1415, 0.4783, 1.6533, -0.0951, 0.2896, 1.7207, -0.0878, 0.3804, 1.6914, -0.1154, 0.2969, 1.7207, -0.0591, 0.2969, 1.7207, -0.0591, 0.3804, 1.6914, -0.1154, 0.3899, 1.6914, -0.0776, 0.1974, 1.7422, -0.0551, 0.2969, 1.7207, -0.0591, 0.2983, 1.7207, -0.0493, 0.0853, 1.7559, -0.0562, 0.1798, 1.7422, -0.0961, 0.1884, 1.7422, -0.078, 0.02, 1.7559, 0.1006, 0.02, 1.7559, -0.1006, 0.0298, 1.7559, 0.0982, 0.0298, 1.7559, 0.0982, 0.02, 1.7559, -0.1006, 0.0298, 1.7559, -0.0982, 0.8989, 0.7153, -0.1787, 0.8989, 0.6279, -0.1787, 0.9121, 0.7153, -0.0898, 0.9121, 0.7153, -0.0898, 0.8989, 0.6279, -0.1787, 0.9121, 0.6279, -0.0898, 0.8989, 0.8022, -0.1787, 0.8989, 0.7153, -0.1787, 0.9121, 0.8022, -0.0898, 0.9121, 0.8022, -0.0898, 0.8989, 0.7153, -0.1787, 0.9121, 0.7153, -0.0898, 0.8989, 0.8892, -0.1787, 0.8989, 0.8022, -0.1787, 0.9121, 0.8892, -0.0898, 0.9121, 0.8892, -0.0898, 0.8989, 0.8022, -0.1787, 0.9121, 0.8022, -0.0898, 0.8989, 0.9766, -0.1787, 0.8989, 0.8892, -0.1787, 0.9121, 0.9766, -0.0898, 0.9121, 0.9766, -0.0898, 0.8989, 0.8892, -0.1787, 0.9121, 0.8892, -0.0898, 0.8989, 1.0635, -0.1787, 0.8989, 0.9766, -0.1787, 0.9121, 1.0635, -0.0898, 0.9121, 1.0635, -0.0898, 0.8989, 0.9766, -0.1787, 0.9121, 0.9766, -0.0898, 0.8931, 1.1416, -0.1776, 0.8989, 1.0635, -0.1787, 0.9063, 1.1416, -0.0892, 0.9063, 1.1416, -0.0892, 0.8989, 1.0635, -0.1787, 0.9121, 1.0635, -0.0898, 0.3899, 1.6914, -0.0776, 0.4783, 1.6533, -0.0951, 0.3943, 1.6914, -0.0491, 0.3943, 1.6914, -0.0491, 0.4783, 1.6533, -0.0951, 0.4907, 1.6494, -0.0549, 0.5601, 1.6084, -0.1115, 0.6353, 1.5557, -0.1263, 0.5684, 1.6084, -0.056, 0.5684, 1.6084, -0.056, 0.6353, 1.5557, -0.1263, 0.645, 1.5557, -0.0635, 0.301, 1.7275, -0.0423, 0.396, 1.6982, -0.0421, 0.3176, 1.7891, -0.0398, 0.3176, 1.7891, -0.0398, 0.396, 1.6982, -0.0421, 0.4048, 1.7617, -0.0397, 0.4048, 1.7617, -0.0397, 0.396, 1.6982, -0.0421, 0.48, 1.7295, -0.0433, 0.48, 1.7295, -0.0433, 0.396, 1.6982, -0.0421, 0.4788, 1.6631, -0.047, 0.2258, 1.8096, -0.0439, 0.2006, 1.749, -0.0479, 0.3176, 1.7891, -0.0398, 0.3176, 1.7891, -0.0398, 0.2006, 1.749, -0.0479, 0.301, 1.7275, -0.0423, 0.0101, 1.7559, 0.1021, 0.0101, 1.7559, -0.1021, 0.02, 1.7559, 0.1006, 0.02, 1.7559, 0.1006, 0.0101, 1.7559, -0.1021, 0.02, 1.7559, -0.1006, 0.9121, 0.7153, -0.0898, 0.9121, 0.6279, -0.0898, 0.9165, 0.7153, 0, 0.9165, 0.7153, 0, 0.9121, 0.6279, -0.0898, 0.9165, 0.6279, 0, 0.9121, 0.8022, -0.0898, 0.9121, 0.7153, -0.0898, 0.9165, 0.8022, 0, 0.9165, 0.8022, 0, 0.9121, 0.7153, -0.0898, 0.9165, 0.7153, 0, 0.9121, 0.8892, -0.0898, 0.9121, 0.8022, -0.0898, 0.9165, 0.8892, 0, 0.9165, 0.8892, 0, 0.9121, 0.8022, -0.0898, 0.9165, 0.8022, 0, 0.9121, 0.9766, -0.0898, 0.9121, 0.8892, -0.0898, 0.9165, 0.9766, 0, 0.9165, 0.9766, 0, 0.9121, 0.8892, -0.0898, 0.9165, 0.8892, 0, 0.9121, 1.0635, -0.0898, 0.9121, 0.9766, -0.0898, 0.9165, 1.0635, 0, 0.9165, 1.0635, 0, 0.9121, 0.9766, -0.0898, 0.9165, 0.9766, 0, 0.9063, 1.1416, -0.0892, 0.9121, 1.0635, -0.0898, 0.9106, 1.1416, 0, 0.9106, 1.1416, 0, 0.9121, 1.0635, -0.0898, 0.9165, 1.0635, 0, 0.5684, 1.6084, -0.056, 0.645, 1.5557, -0.0635, 0.5713, 1.6084, 0, 0.5713, 1.6084, 0, 0.645, 1.5557, -0.0635, 0.6479, 1.5557, 0, 0.4934, 1.6504, 0, 0.5713, 1.6084, 0, 0.4907, 1.6494, 0.0544, 0.4907, 1.6494, 0.0544, 0.5713, 1.6084, 0, 0.5684, 1.6084, 0.056, 0, 1.7559, 0.1026, 0, 1.7559, -0.1026, 0.0101, 1.7559, 0.1021, 0.0101, 1.7559, 0.1021, 0, 1.7559, -0.1026, 0.0101, 1.7559, -0.1021, 0.3591, 1.1221, 0.5127, 0.3638, 1.0576, 0.5195, 0.2988, 1.126, 0.5488, 0.2988, 1.126, 0.5488, 0.3638, 1.0576, 0.5195, 0.2866, 1.0576, 0.5659, 0.4441, 1.0674, 0.4553, 0.4646, 1.0273, 0.4404, 0.4182, 1.0957, 0.4761, 0.4182, 1.0957, 0.4761, 0.4646, 1.0273, 0.4404, 0.436, 1.0576, 0.4661, 0.2903, 1.0352, 0.8408, 0.3276, 1.0869, 0.8242, 0.1635, 1.0303, 0.6289, 0.1635, 1.0303, 0.6289, 0.3276, 1.0869, 0.8242, 0.2007, 1.082, 0.6123, 0.2053, 1.0576, 0.604, 0.2053, 0.9712, 0.604, 0.1769, 1.041, 0.6147, 0.1769, 1.041, 0.6147, 0.2053, 0.9712, 0.604, 0.1523, 0.9692, 0.6221, 0.3765, 1.124, 0.7979, 0.4321, 1.1416, 0.7651, 0.2496, 1.1191, 0.5864, 0.2496, 1.1191, 0.5864, 0.4321, 1.1416, 0.7651, 0.3052, 1.1367, 0.5532, 0.3638, 0.7969, 0.5195, 0.3484, 0.729, 0.5293, 0.2866, 0.7969, 0.5659, 0.2866, 0.7969, 0.5659, 0.3484, 0.729, 0.5293, 0.2866, 0.7324, 0.5659, 0.584, 1.0723, 0.6685, 0.6104, 1.0166, 0.646, 0.4573, 1.0674, 0.457, 0.4573, 1.0674, 0.457, 0.6104, 1.0166, 0.646, 0.4836, 1.0117, 0.4346, 0.6035, 0.8237, 0.6519, 0.5732, 0.7725, 0.6792, 0.4766, 0.8188, 0.4404, 0.4766, 0.8188, 0.4404, 0.5732, 0.7725, 0.6792, 0.4465, 0.7676, 0.4675, 0.2053, 0.7969, 0.604, 0.2229, 0.7593, 0.5967, 0.1677, 0.8252, 0.6177, 0.1677, 0.8252, 0.6177, 0.2229, 0.7593, 0.5967, 0.1892, 0.7886, 0.6094, 0.3628, 0.7461, 0.812, 0.3152, 0.7871, 0.8311, 0.2358, 0.7412, 0.6006, 0.2358, 0.7412, 0.6006, 0.3152, 0.7871, 0.8311, 0.1882, 0.7827, 0.6191, 0.2053, 0.9712, 0.604, 0.2053, 0.8838, 0.604, 0.1523, 0.9692, 0.6221, 0.1523, 0.9692, 0.6221, 0.2053, 0.8838, 0.604, 0.1493, 0.8984, 0.6226, 0.4775, 0.9531, 0.4265, 0.4749, 0.8813, 0.4292, 0.436, 0.9712, 0.4661, 0.436, 0.9712, 0.4661, 0.4749, 0.8813, 0.4292, 0.436, 0.8838, 0.4661, 0.6011, 0.7529, 0.6904, 0.6353, 0.811, 0.6592, 0.6079, 0.7432, 0.6841, 0.6079, 0.7432, 0.6841, 0.6353, 0.811, 0.6592, 0.644, 0.8047, 0.6514, 0.5063, 1.166, 0.748, 0.4419, 1.1699, 0.7866, 0.5078, 1.1787, 0.7451, 0.5078, 1.1787, 0.7451, 0.4419, 1.1699, 0.7866, 0.4397, 1.1826, 0.7861, 0.4749, 0.8813, 0.4292, 0.4565, 0.8091, 0.4473, 0.436, 0.8838, 0.4661, 0.436, 0.8838, 0.4661, 0.4565, 0.8091, 0.4473, 0.436, 0.7969, 0.4661, 0.2866, 0.7969, 0.5659, 0.2866, 0.7324, 0.5659, 0.2053, 0.7969, 0.604, 0.2053, 0.7969, 0.604, 0.2866, 0.7324, 0.5659, 0.2229, 0.7593, 0.5967, 0.2825, 0.8428, 0.8423, 0.2661, 0.9067, 0.8462, 0.1555, 0.8379, 0.6304, 0.1555, 0.8379, 0.6304, 0.2661, 0.9067, 0.8462, 0.1392, 0.9023, 0.6348, 0.4182, 1.0957, 0.4761, 0.436, 1.0576, 0.4661, 0.3591, 1.1221, 0.5127, 0.3591, 1.1221, 0.5127, 0.436, 1.0576, 0.4661, 0.3638, 1.0576, 0.5195, 0.5732, 0.7725, 0.6792, 0.5303, 0.7363, 0.7139, 0.4465, 0.7676, 0.4675, 0.4465, 0.7676, 0.4675, 0.5303, 0.7363, 0.7139, 0.4033, 0.7319, 0.502, 0.6187, 0.8857, 0.6362, 0.6035, 0.8237, 0.6519, 0.4919, 0.8809, 0.4246, 0.4919, 0.8809, 0.4246, 0.6035, 0.8237, 0.6519, 0.4766, 0.8188, 0.4404, 0.6211, 0.9526, 0.6333, 0.6187, 0.8857, 0.6362, 0.4944, 0.9478, 0.4219, 0.4944, 0.9478, 0.4219, 0.6187, 0.8857, 0.6362, 0.4919, 0.8809, 0.4246, 0.6104, 1.0166, 0.646, 0.6211, 0.9526, 0.6333, 0.4836, 1.0117, 0.4346, 0.4836, 1.0117, 0.4346, 0.6211, 0.9526, 0.6333, 0.4944, 0.9478, 0.4219, 0.5425, 1.1152, 0.6987, 0.584, 1.0723, 0.6685, 0.4158, 1.1104, 0.4873, 0.4158, 1.1104, 0.4873, 0.584, 1.0723, 0.6685, 0.4573, 1.0674, 0.457, 0.5303, 0.7363, 0.7139, 0.4763, 0.7192, 0.7505, 0.4033, 0.7319, 0.502, 0.4033, 0.7319, 0.502, 0.4763, 0.7192, 0.7505, 0.3494, 0.7144, 0.5386, 0.436, 0.8838, 0.4661, 0.436, 0.7969, 0.4661, 0.3638, 0.8838, 0.5195, 0.3638, 0.8838, 0.5195, 0.436, 0.7969, 0.4661, 0.3638, 0.7969, 0.5195, 0.436, 0.9712, 0.4661, 0.436, 0.8838, 0.4661, 0.3638, 0.9712, 0.5195, 0.3638, 0.9712, 0.5195, 0.436, 0.8838, 0.4661, 0.3638, 0.8838, 0.5195, 0.436, 1.0576, 0.4661, 0.436, 0.9712, 0.4661, 0.3638, 1.0576, 0.5195, 0.3638, 1.0576, 0.5195, 0.436, 0.9712, 0.4661, 0.3638, 0.9712, 0.5195, 0.4895, 1.1387, 0.7305, 0.5425, 1.1152, 0.6987, 0.3625, 1.1338, 0.519, 0.3625, 1.1338, 0.519, 0.5425, 1.1152, 0.6987, 0.4158, 1.1104, 0.4873, 0.4763, 0.7192, 0.7505, 0.4177, 0.7227, 0.7847, 0.3494, 0.7144, 0.5386, 0.3494, 0.7144, 0.5386, 0.4177, 0.7227, 0.7847, 0.2908, 0.7178, 0.5728, 0.3638, 0.8838, 0.5195, 0.3638, 0.7969, 0.5195, 0.2866, 0.8838, 0.5659, 0.2866, 0.8838, 0.5659, 0.3638, 0.7969, 0.5195, 0.2866, 0.7969, 0.5659, 0.3638, 0.9712, 0.5195, 0.3638, 0.8838, 0.5195, 0.2866, 0.9712, 0.5659, 0.2866, 0.9712, 0.5659, 0.3638, 0.8838, 0.5195, 0.2866, 0.8838, 0.5659, 0.3638, 1.0576, 0.5195, 0.3638, 0.9712, 0.5195, 0.2866, 1.0576, 0.5659, 0.2866, 1.0576, 0.5659, 0.3638, 0.9712, 0.5195, 0.2866, 0.9712, 0.5659, 0.4321, 1.1416, 0.7651, 0.4895, 1.1387, 0.7305, 0.3052, 1.1367, 0.5532, 0.3052, 1.1367, 0.5532, 0.4895, 1.1387, 0.7305, 0.3625, 1.1338, 0.519, 0.4177, 0.7227, 0.7847, 0.3628, 0.7461, 0.812, 0.2908, 0.7178, 0.5728, 0.2908, 0.7178, 0.5728, 0.3628, 0.7461, 0.812, 0.2358, 0.7412, 0.6006, 0.2866, 0.8838, 0.5659, 0.2866, 0.7969, 0.5659, 0.2053, 0.8838, 0.604, 0.2053, 0.8838, 0.604, 0.2866, 0.7969, 0.5659, 0.2053, 0.7969, 0.604, 0.2866, 0.9712, 0.5659, 0.2866, 0.8838, 0.5659, 0.2053, 0.9712, 0.604, 0.2053, 0.9712, 0.604, 0.2866, 0.8838, 0.5659, 0.2053, 0.8838, 0.604, 0.2866, 1.0576, 0.5659, 0.2866, 0.9712, 0.5659, 0.2053, 1.0576, 0.604, 0.2053, 1.0576, 0.604, 0.2866, 0.9712, 0.5659, 0.2053, 0.9712, 0.604, 0.3276, 1.0869, 0.8242, 0.3765, 1.124, 0.7979, 0.2007, 1.082, 0.6123, 0.2007, 1.082, 0.6123, 0.3765, 1.124, 0.7979, 0.2496, 1.1191, 0.5864, 0.2053, 0.8838, 0.604, 0.2053, 0.7969, 0.604, 0.1493, 0.8984, 0.6226, 0.1493, 0.8984, 0.6226, 0.2053, 0.7969, 0.604, 0.1677, 0.8252, 0.6177, 0.3152, 0.7871, 0.8311, 0.2825, 0.8428, 0.8423, 0.1882, 0.7827, 0.6191, 0.1882, 0.7827, 0.6191, 0.2825, 0.8428, 0.8423, 0.1555, 0.8379, 0.6304, 0.2661, 0.9067, 0.8462, 0.2688, 0.9736, 0.8457, 0.1392, 0.9023, 0.6348, 0.1392, 0.9023, 0.6348, 0.2688, 0.9736, 0.8457, 0.142, 0.9688, 0.6338, 0.2688, 0.9736, 0.8457, 0.2903, 1.0352, 0.8408, 0.142, 0.9688, 0.6338, 0.142, 0.9688, 0.6338, 0.2903, 1.0352, 0.8408, 0.1635, 1.0303, 0.6289, 0.2988, 1.126, 0.5488, 0.2866, 1.0576, 0.5659, 0.2368, 1.1064, 0.5845, 0.2368, 1.1064, 0.5845, 0.2866, 1.0576, 0.5659, 0.2053, 1.0576, 0.604, 0.4419, 1.1699, 0.7866, 0.5063, 1.166, 0.748, 0.4421, 1.1563, 0.7847, 0.4421, 1.1563, 0.7847, 0.5063, 1.166, 0.748, 0.5029, 1.1523, 0.748, 0.4421, 1.1563, 0.7847, 0.5029, 1.1523, 0.748, 0.4385, 1.1455, 0.7764, 0.4385, 1.1455, 0.7764, 0.5029, 1.1523, 0.748, 0.4968, 1.1426, 0.7412, 0.4385, 1.1455, 0.7764, 0.4968, 1.1426, 0.7412, 0.4321, 1.1416, 0.7651, 0.4321, 1.1416, 0.7651, 0.4968, 1.1426, 0.7412, 0.4895, 1.1387, 0.7305, 0.4177, 0.7227, 0.7847, 0.4763, 0.7192, 0.7505, 0.4241, 0.7192, 0.7969, 0.4241, 0.7192, 0.7969, 0.4763, 0.7192, 0.7505, 0.4836, 0.7158, 0.7617, 0.4241, 0.7192, 0.7969, 0.4836, 0.7158, 0.7617, 0.4275, 0.7095, 0.8062, 0.4275, 0.7095, 0.8062, 0.4836, 0.7158, 0.7617, 0.4897, 0.7061, 0.77, 0.4275, 0.7095, 0.8062, 0.4897, 0.7061, 0.77, 0.4268, 0.6958, 0.8105, 0.4268, 0.6958, 0.8105, 0.4897, 0.7061, 0.77, 0.4927, 0.6924, 0.772, 0.2688, 0.9736, 0.8457, 0.2661, 0.9067, 0.8462, 0.2725, 0.9746, 0.8584, 0.2725, 0.9746, 0.8584, 0.2661, 0.9067, 0.8462, 0.2695, 0.9067, 0.8594, 0.2725, 0.9746, 0.8584, 0.2695, 0.9067, 0.8594, 0.2683, 0.9771, 0.8706, 0.2683, 0.9771, 0.8706, 0.2695, 0.9067, 0.8594, 0.2651, 0.9058, 0.8711, 0.2683, 0.9771, 0.8706, 0.2651, 0.9058, 0.8711, 0.2573, 0.9795, 0.8779, 0.2573, 0.9795, 0.8779, 0.2651, 0.9058, 0.8711, 0.2542, 0.9048, 0.8789, 0.2661, 0.9067, 0.8462, 0.2825, 0.8428, 0.8423, 0.2695, 0.9067, 0.8594, 0.2695, 0.9067, 0.8594, 0.2825, 0.8428, 0.8423, 0.2861, 0.8413, 0.855, 0.2695, 0.9067, 0.8594, 0.2861, 0.8413, 0.855, 0.2651, 0.9058, 0.8711, 0.2651, 0.9058, 0.8711, 0.2861, 0.8413, 0.855, 0.2827, 0.8374, 0.8667, 0.2651, 0.9058, 0.8711, 0.2827, 0.8374, 0.8667, 0.2542, 0.9048, 0.8789, 0.2542, 0.9048, 0.8789, 0.2827, 0.8374, 0.8667, 0.2727, 0.832, 0.874, 0.3276, 1.0869, 0.8242, 0.2903, 1.0352, 0.8408, 0.3323, 1.0898, 0.8364, 0.3323, 1.0898, 0.8364, 0.2903, 1.0352, 0.8408, 0.2942, 1.0371, 0.8535, 0.3323, 1.0898, 0.8364, 0.2942, 1.0371, 0.8535, 0.3306, 1.0977, 0.8472, 0.3306, 1.0977, 0.8472, 0.2942, 1.0371, 0.8535, 0.291, 1.043, 0.8647, 0.3306, 1.0977, 0.8472, 0.291, 1.043, 0.8647, 0.3235, 1.1074, 0.853, 0.3235, 1.1074, 0.853, 0.291, 1.043, 0.8647, 0.2815, 1.0488, 0.8716, 0.3789, 1.1494, 0.8237, 0.4419, 1.1699, 0.7866, 0.3828, 1.1377, 0.8193, 0.3828, 1.1377, 0.8193, 0.4419, 1.1699, 0.7866, 0.4421, 1.1563, 0.7847, 0.3828, 1.1377, 0.8193, 0.4421, 1.1563, 0.7847, 0.3821, 1.1279, 0.8101, 0.3821, 1.1279, 0.8101, 0.4421, 1.1563, 0.7847, 0.4385, 1.1455, 0.7764, 0.3821, 1.1279, 0.8101, 0.4385, 1.1455, 0.7764, 0.3765, 1.124, 0.7979, 0.3765, 1.124, 0.7979, 0.4385, 1.1455, 0.7764, 0.4321, 1.1416, 0.7651, 0.6128, 1.0908, 0.6772, 0.6431, 1.0283, 0.6523, 0.6035, 1.082, 0.6816, 0.6035, 1.082, 0.6816, 0.6431, 1.0283, 0.6523, 0.6318, 1.0225, 0.6577, 0.6035, 1.082, 0.6816, 0.6318, 1.0225, 0.6577, 0.5933, 1.0752, 0.6782, 0.5933, 1.0752, 0.6782, 0.6318, 1.0225, 0.6577, 0.6201, 1.0186, 0.6558, 0.5933, 1.0752, 0.6782, 0.6201, 1.0186, 0.6558, 0.584, 1.0723, 0.6685, 0.584, 1.0723, 0.6685, 0.6201, 1.0186, 0.6558, 0.6104, 1.0166, 0.646, 0.2903, 1.0352, 0.8408, 0.2688, 0.9736, 0.8457, 0.2942, 1.0371, 0.8535, 0.2942, 1.0371, 0.8535, 0.2688, 0.9736, 0.8457, 0.2725, 0.9746, 0.8584, 0.2942, 1.0371, 0.8535, 0.2725, 0.9746, 0.8584, 0.291, 1.043, 0.8647, 0.291, 1.043, 0.8647, 0.2725, 0.9746, 0.8584, 0.2683, 0.9771, 0.8706, 0.291, 1.043, 0.8647, 0.2683, 0.9771, 0.8706, 0.2815, 1.0488, 0.8716, 0.2815, 1.0488, 0.8716, 0.2683, 0.9771, 0.8706, 0.2573, 0.9795, 0.8779, 0.6353, 0.811, 0.6592, 0.6011, 0.7529, 0.6904, 0.6245, 0.8174, 0.6641, 0.6245, 0.8174, 0.6641, 0.6011, 0.7529, 0.6904, 0.5923, 0.7627, 0.6934, 0.6245, 0.8174, 0.6641, 0.5923, 0.7627, 0.6934, 0.6128, 0.8223, 0.6616, 0.6128, 0.8223, 0.6616, 0.5923, 0.7627, 0.6934, 0.582, 0.77, 0.6895, 0.6128, 0.8223, 0.6616, 0.582, 0.77, 0.6895, 0.6035, 0.8237, 0.6519, 0.6035, 0.8237, 0.6519, 0.582, 0.77, 0.6895, 0.5732, 0.7725, 0.6792, 0.6528, 0.8809, 0.6411, 0.6353, 0.811, 0.6592, 0.6411, 0.8833, 0.647, 0.6411, 0.8833, 0.647, 0.6353, 0.811, 0.6592, 0.6245, 0.8174, 0.6641, 0.6411, 0.8833, 0.647, 0.6245, 0.8174, 0.6641, 0.6284, 0.8853, 0.6455, 0.6284, 0.8853, 0.6455, 0.6245, 0.8174, 0.6641, 0.6128, 0.8223, 0.6616, 0.6284, 0.8853, 0.6455, 0.6128, 0.8223, 0.6616, 0.6187, 0.8857, 0.6362, 0.6187, 0.8857, 0.6362, 0.6128, 0.8223, 0.6616, 0.6035, 0.8237, 0.6519, 0.6431, 1.0283, 0.6523, 0.6553, 0.9561, 0.6382, 0.6318, 1.0225, 0.6577, 0.6318, 1.0225, 0.6577, 0.6553, 0.9561, 0.6382, 0.6436, 0.9546, 0.6445, 0.6318, 1.0225, 0.6577, 0.6436, 0.9546, 0.6445, 0.6201, 1.0186, 0.6558, 0.6201, 1.0186, 0.6558, 0.6436, 0.9546, 0.6445, 0.6309, 0.9531, 0.6426, 0.6201, 1.0186, 0.6558, 0.6309, 0.9531, 0.6426, 0.6104, 1.0166, 0.646, 0.6104, 1.0166, 0.646, 0.6309, 0.9531, 0.6426, 0.6211, 0.9526, 0.6333, 0.2825, 0.8428, 0.8423, 0.3152, 0.7871, 0.8311, 0.2861, 0.8413, 0.855, 0.2861, 0.8413, 0.855, 0.3152, 0.7871, 0.8311, 0.3196, 0.7852, 0.8438, 0.2861, 0.8413, 0.855, 0.3196, 0.7852, 0.8438, 0.2827, 0.8374, 0.8667, 0.2827, 0.8374, 0.8667, 0.3196, 0.7852, 0.8438, 0.3176, 0.7788, 0.8545, 0.2827, 0.8374, 0.8667, 0.3176, 0.7788, 0.8545, 0.2727, 0.832, 0.874, 0.2727, 0.832, 0.874, 0.3176, 0.7788, 0.8545, 0.3098, 0.7695, 0.8613, 0.6553, 0.9561, 0.6382, 0.6528, 0.8809, 0.6411, 0.6436, 0.9546, 0.6445, 0.6436, 0.9546, 0.6445, 0.6528, 0.8809, 0.6411, 0.6411, 0.8833, 0.647, 0.6436, 0.9546, 0.6445, 0.6411, 0.8833, 0.647, 0.6309, 0.9531, 0.6426, 0.6309, 0.9531, 0.6426, 0.6411, 0.8833, 0.647, 0.6284, 0.8853, 0.6455, 0.6309, 0.9531, 0.6426, 0.6284, 0.8853, 0.6455, 0.6211, 0.9526, 0.6333, 0.6211, 0.9526, 0.6333, 0.6284, 0.8853, 0.6455, 0.6187, 0.8857, 0.6362, 0.5303, 0.7363, 0.7139, 0.5732, 0.7725, 0.6792, 0.5386, 0.7334, 0.7246, 0.5386, 0.7334, 0.7246, 0.5732, 0.7725, 0.6792, 0.582, 0.77, 0.6895, 0.5386, 0.7334, 0.7246, 0.582, 0.77, 0.6895, 0.5469, 0.7246, 0.7305, 0.5469, 0.7246, 0.7305, 0.582, 0.77, 0.6895, 0.5923, 0.7627, 0.6934, 0.5469, 0.7246, 0.7305, 0.5923, 0.7627, 0.6934, 0.5527, 0.7119, 0.73, 0.5527, 0.7119, 0.73, 0.5923, 0.7627, 0.6934, 0.6011, 0.7529, 0.6904, 0.3235, 1.1074, 0.853, 0.3789, 1.1494, 0.8237, 0.3306, 1.0977, 0.8472, 0.3306, 1.0977, 0.8472, 0.3789, 1.1494, 0.8237, 0.3828, 1.1377, 0.8193, 0.3306, 1.0977, 0.8472, 0.3828, 1.1377, 0.8193, 0.3323, 1.0898, 0.8364, 0.3323, 1.0898, 0.8364, 0.3828, 1.1377, 0.8193, 0.3821, 1.1279, 0.8101, 0.3323, 1.0898, 0.8364, 0.3821, 1.1279, 0.8101, 0.3276, 1.0869, 0.8242, 0.3276, 1.0869, 0.8242, 0.3821, 1.1279, 0.8101, 0.3765, 1.124, 0.7979, 0.5063, 1.166, 0.748, 0.5659, 1.1387, 0.7119, 0.5029, 1.1523, 0.748, 0.5029, 1.1523, 0.748, 0.5659, 1.1387, 0.7119, 0.5596, 1.127, 0.7139, 0.5029, 1.1523, 0.748, 0.5596, 1.127, 0.7139, 0.4968, 1.1426, 0.7412, 0.4968, 1.1426, 0.7412, 0.5596, 1.127, 0.7139, 0.5508, 1.1182, 0.709, 0.4968, 1.1426, 0.7412, 0.5508, 1.1182, 0.709, 0.4895, 1.1387, 0.7305, 0.4895, 1.1387, 0.7305, 0.5508, 1.1182, 0.709, 0.5425, 1.1152, 0.6987, 0.5659, 1.1387, 0.7119, 0.6128, 1.0908, 0.6772, 0.5596, 1.127, 0.7139, 0.5596, 1.127, 0.7139, 0.6128, 1.0908, 0.6772, 0.6035, 1.082, 0.6816, 0.5596, 1.127, 0.7139, 0.6035, 1.082, 0.6816, 0.5508, 1.1182, 0.709, 0.5508, 1.1182, 0.709, 0.6035, 1.082, 0.6816, 0.5933, 1.0752, 0.6782, 0.5508, 1.1182, 0.709, 0.5933, 1.0752, 0.6782, 0.5425, 1.1152, 0.6987, 0.5425, 1.1152, 0.6987, 0.5933, 1.0752, 0.6782, 0.584, 1.0723, 0.6685, 0.4763, 0.7192, 0.7505, 0.5303, 0.7363, 0.7139, 0.4836, 0.7158, 0.7617, 0.4836, 0.7158, 0.7617, 0.5303, 0.7363, 0.7139, 0.5386, 0.7334, 0.7246, 0.4836, 0.7158, 0.7617, 0.5386, 0.7334, 0.7246, 0.4897, 0.7061, 0.77, 0.4897, 0.7061, 0.77, 0.5386, 0.7334, 0.7246, 0.5469, 0.7246, 0.7305, 0.4897, 0.7061, 0.77, 0.5469, 0.7246, 0.7305, 0.4927, 0.6924, 0.772, 0.4927, 0.6924, 0.772, 0.5469, 0.7246, 0.7305, 0.5527, 0.7119, 0.73, 0.3152, 0.7871, 0.8311, 0.3628, 0.7461, 0.812, 0.3196, 0.7852, 0.8438, 0.3196, 0.7852, 0.8438, 0.3628, 0.7461, 0.812, 0.3679, 0.7432, 0.8247, 0.3196, 0.7852, 0.8438, 0.3679, 0.7432, 0.8247, 0.3176, 0.7788, 0.8545, 0.3176, 0.7788, 0.8545, 0.3679, 0.7432, 0.8247, 0.3684, 0.7344, 0.835, 0.3176, 0.7788, 0.8545, 0.3684, 0.7344, 0.835, 0.3098, 0.7695, 0.8613, 0.3098, 0.7695, 0.8613, 0.3684, 0.7344, 0.835, 0.364, 0.7227, 0.8408, 0.3628, 0.7461, 0.812, 0.4177, 0.7227, 0.7847, 0.3679, 0.7432, 0.8247, 0.3679, 0.7432, 0.8247, 0.4177, 0.7227, 0.7847, 0.4241, 0.7192, 0.7969, 0.3679, 0.7432, 0.8247, 0.4241, 0.7192, 0.7969, 0.3684, 0.7344, 0.835, 0.3684, 0.7344, 0.835, 0.4241, 0.7192, 0.7969, 0.4275, 0.7095, 0.8062, 0.3684, 0.7344, 0.835, 0.4275, 0.7095, 0.8062, 0.364, 0.7227, 0.8408, 0.364, 0.7227, 0.8408, 0.4275, 0.7095, 0.8062, 0.4268, 0.6958, 0.8105, 0.436, 0.7969, 0.4661, 0.4089, 0.749, 0.4873, 0.3638, 0.7969, 0.5195, 0.3638, 0.7969, 0.5195, 0.4089, 0.749, 0.4873, 0.3484, 0.729, 0.5293, 0.4241, 1.9023, -0.0276, 0.4836, 1.877, -0.0285, 0.425, 1.9023, 0, 0.425, 1.9023, 0, 0.4836, 1.877, -0.0285, 0.4851, 1.877, 0, 0.425, 1.9023, 0, 0.4851, 1.877, 0, 0.4241, 1.9023, 0.0276, 0.4241, 1.9023, 0.0276, 0.4851, 1.877, 0, 0.4836, 1.877, 0.0285, 0.3542, 1.9258, -0.0274, 0.4241, 1.9023, -0.0276, 0.3552, 1.9258, 0, 0.3552, 1.9258, 0, 0.4241, 1.9023, -0.0276, 0.425, 1.9023, 0, 0.2825, 1.9424, 0, 0.3552, 1.9258, 0, 0.2817, 1.9424, 0.0282, 0.2817, 1.9424, 0.0282, 0.3552, 1.9258, 0, 0.3542, 1.9258, 0.0274, 0.2817, 1.9424, -0.0282, 0.3542, 1.9258, -0.0274, 0.2825, 1.9424, 0, 0.2825, 1.9424, 0, 0.3542, 1.9258, -0.0274, 0.3552, 1.9258, 0, 0.1328, 1.8213, 0, 0.0945, 1.7617, 0, 0.1299, 1.8213, -0.0383, 0.1299, 1.8213, -0.0383, 0.0945, 1.7617, 0, 0.094, 1.7617, -0.0413, 0.2791, 1.9365, -0.0354, 0.2537, 1.876, -0.0395, 0.3523, 1.9189, -0.0344, 0.3523, 1.9189, -0.0344, 0.2537, 1.876, -0.0395, 0.3359, 1.8574, -0.037, 0.0859, 1.7559, 0.0551, 0.1884, 1.7422, 0.078, 0.1798, 1.7422, 0.0961, 0.3552, 1.9258, 0, 0.425, 1.9023, 0, 0.3542, 1.9258, 0.0274, 0.3542, 1.9258, 0.0274, 0.425, 1.9023, 0, 0.4241, 1.9023, 0.0276, 0.4912, 1.8672, 0, 0.49, 1.8008, 0, 0.4897, 1.8672, 0.0289, 0.4897, 1.8672, 0.0289, 0.49, 1.8008, 0, 0.4883, 1.8008, 0.0327, 0.2141, 1.9521, -0.0315, 0.2817, 1.9424, -0.0282, 0.2145, 1.9521, 0, 0.2145, 1.9521, 0, 0.2817, 1.9424, -0.0282, 0.2825, 1.9424, 0, 0.3354, 1.8574, 0.0391, 0.2537, 1.876, 0.0395, 0.3523, 1.9189, 0.0346, 0.3523, 1.9189, 0.0346, 0.2537, 1.876, 0.0395, 0.2791, 1.9365, 0.0354, 0.2045, 1.9473, 0, 0.204, 1.9473, 0.0263, 0.1703, 1.8877, 0, 0.1703, 1.8877, 0, 0.204, 1.9473, 0.0263, 0.1687, 1.8877, 0.0311, 0.4229, 1.8955, -0.0347, 0.4141, 1.832, -0.037, 0.4827, 1.8701, -0.0356, 0.4827, 1.8701, -0.0356, 0.4141, 1.832, -0.037, 0.4814, 1.8037, -0.0392, 0.3359, 1.8574, -0.037, 0.4141, 1.832, -0.037, 0.3523, 1.9189, -0.0344, 0.3523, 1.9189, -0.0344, 0.4141, 1.832, -0.037, 0.4229, 1.8955, -0.0347, 0.4897, 1.8672, -0.0289, 0.4883, 1.8008, -0.0327, 0.4912, 1.8672, 0, 0.4912, 1.8672, 0, 0.4883, 1.8008, -0.0327, 0.49, 1.8008, 0, 0.2109, 1.9463, -0.0385, 0.1757, 1.8867, -0.0416, 0.2791, 1.9365, -0.0354, 0.2791, 1.9365, -0.0354, 0.1757, 1.8867, -0.0416, 0.2537, 1.876, -0.0395, 0.2045, 1.9473, 0, 0.1703, 1.8877, 0, 0.204, 1.9473, -0.032, 0.204, 1.9473, -0.032, 0.1703, 1.8877, 0, 0.1687, 1.8877, -0.035, 0.2109, 1.9463, 0.0333, 0.2791, 1.9365, 0.0354, 0.1757, 1.8867, 0.038, 0.1757, 1.8867, 0.038, 0.2791, 1.9365, 0.0354, 0.2537, 1.876, 0.0395, 0.4814, 1.8037, 0.0395, 0.4138, 1.832, 0.0394, 0.4827, 1.8701, 0.0356, 0.4827, 1.8701, 0.0356, 0.4138, 1.832, 0.0394, 0.4226, 1.8955, 0.0349, 0.1787, 0.9766, 0.8989, 0.1787, 0.8892, 0.8989, 0.0898, 0.9766, 0.9121, 0.0898, 0.9766, 0.9121, 0.1787, 0.8892, 0.8989, 0.0898, 0.8892, 0.9121, 0, 1.0293, 0.9082, 0.024, 1.0283, 0.9067, 0, 1.0293, 0.8438, 0, 1.0293, 0.8438, 0.024, 1.0283, 0.9067, 0.0209, 1.0283, 0.8428, 0.068, 0.7759, 0.9048, 0.0578, 0.7534, 0.9053, 0.0649, 0.7759, 0.8403, 0.0649, 0.7759, 0.8403, 0.0578, 0.7534, 0.9053, 0.0546, 0.7534, 0.8408, 0.0554, 0.8892, 0.8325, 0.0554, 0.7759, 0.8325, 0, 0.8892, 0.8354, 0, 0.8892, 0.8354, 0.0554, 0.7759, 0.8325, 0, 0.7759, 0.8354, 0.024, 1.0283, 0.9067, 0.0439, 1.0195, 0.9058, 0.0209, 1.0283, 0.8428, 0.0209, 1.0283, 0.8428, 0.0439, 1.0195, 0.9058, 0.0407, 1.0195, 0.8418, 0.0898, 0.7759, 0.9121, 0.0898, 0.7432, 0.9121, 0.0772, 0.7759, 0.9126, 0.0772, 0.7759, 0.9126, 0.0898, 0.7432, 0.9121, 0.0659, 0.751, 0.9131, 0.0554, 0.9766, 0.8325, 0.0554, 0.8892, 0.8325, 0, 0.9766, 0.8354, 0, 0.9766, 0.8354, 0.0554, 0.8892, 0.8325, 0, 0.8892, 0.8354, 0.0898, 0.7432, 0.9121, 0.0898, 0.6885, 0.9121, 0.0659, 0.751, 0.9131, 0.0659, 0.751, 0.9131, 0.0898, 0.6885, 0.9121, 0.0491, 0.7314, 0.9141, 0.0217, 0.7256, 0.9067, 0, 0.7241, 0.9082, 0.0186, 0.7256, 0.8428, 0.0186, 0.7256, 0.8428, 0, 0.7241, 0.9082, 0, 0.7241, 0.8438, 0.068, 0.8892, 0.9048, 0.068, 0.7759, 0.9048, 0.0649, 0.8892, 0.8403, 0.0649, 0.8892, 0.8403, 0.068, 0.7759, 0.9048, 0.0649, 0.7759, 0.8403, 0.068, 0.9766, 0.9048, 0.068, 0.8892, 0.9048, 0.0649, 0.9766, 0.8403, 0.0649, 0.9766, 0.8403, 0.068, 0.8892, 0.9048, 0.0649, 0.8892, 0.8403, 0.0616, 0.9995, 0.9048, 0.068, 0.9766, 0.9048, 0.0584, 0.9995, 0.8408, 0.0584, 0.9995, 0.8408, 0.068, 0.9766, 0.9048, 0.0649, 0.9766, 0.8403, 0.0898, 0.8892, 0.9121, 0.0898, 0.7759, 0.9121, 0.0772, 0.8892, 0.9126, 0.0772, 0.8892, 0.9126, 0.0898, 0.7759, 0.9121, 0.0772, 0.7759, 0.9126, 0.0898, 0.9766, 0.9121, 0.0898, 0.8892, 0.9121, 0.0772, 0.9766, 0.9126, 0.0772, 0.9766, 0.9126, 0.0898, 0.8892, 0.9121, 0.0772, 0.8892, 0.9126, 0.0498, 0.9961, 0.833, 0.0554, 0.9766, 0.8325, 0.0353, 1.0127, 0.8335, 0.0353, 1.0127, 0.8335, 0.0554, 0.9766, 0.8325, 0.0185, 1.0195, 0.835, 0.0185, 1.0195, 0.835, 0.0554, 0.9766, 0.8325, 0, 1.0205, 0.8354, 0, 1.0205, 0.8354, 0.0554, 0.9766, 0.8325, 0, 0.9766, 0.8354, 0.0898, 1.0078, 0.9121, 0.0898, 0.9766, 0.9121, 0.0701, 1.002, 0.9131, 0.0701, 1.002, 0.9131, 0.0898, 0.9766, 0.9121, 0.0772, 0.9766, 0.9126, 0, 0.6885, 0.9165, 0, 0.7168, 0.9165, 0.0242, 0.7183, 0.915, 0.068, 0.9766, 0.9048, 0.0616, 0.9995, 0.9048, 0.0772, 0.9766, 0.9126, 0.0772, 0.9766, 0.9126, 0.0616, 0.9995, 0.9048, 0.0701, 1.002, 0.9131, 0.068, 0.8892, 0.9048, 0.068, 0.9766, 0.9048, 0.0772, 0.8892, 0.9126, 0.0772, 0.8892, 0.9126, 0.068, 0.9766, 0.9048, 0.0772, 0.9766, 0.9126, 0.068, 0.7759, 0.9048, 0.068, 0.8892, 0.9048, 0.0772, 0.7759, 0.9126, 0.0772, 0.7759, 0.9126, 0.068, 0.8892, 0.9048, 0.0772, 0.8892, 0.9126, 0, 0.7241, 0.9082, 0.0217, 0.7256, 0.9067, 0, 0.7168, 0.9165, 0, 0.7168, 0.9165, 0.0217, 0.7256, 0.9067, 0.0242, 0.7183, 0.915, 0.0439, 1.0195, 0.9058, 0.024, 1.0283, 0.9067, 0.0498, 1.0244, 0.9141, 0.0498, 1.0244, 0.9141, 0.024, 1.0283, 0.9067, 0.0255, 1.0352, 0.915, 0.0435, 0.7368, 0.9058, 0.0578, 0.7534, 0.9053, 0.0491, 0.7314, 0.9141, 0.0491, 0.7314, 0.9141, 0.0578, 0.7534, 0.9053, 0.0659, 0.751, 0.9131, 0.024, 1.0283, 0.9067, 0, 1.0293, 0.9082, 0.0255, 1.0352, 0.915, 0.0255, 1.0352, 0.915, 0, 1.0293, 0.9082, 0, 1.0361, 0.9165, 0.0616, 0.9995, 0.9048, 0.0439, 1.0195, 0.9058, 0.0701, 1.002, 0.9131, 0.0701, 1.002, 0.9131, 0.0439, 1.0195, 0.9058, 0.0498, 1.0244, 0.9141, 0.0578, 0.7534, 0.9053, 0.068, 0.7759, 0.9048, 0.0659, 0.751, 0.9131, 0.0659, 0.751, 0.9131, 0.068, 0.7759, 0.9048, 0.0772, 0.7759, 0.9126, 0.0217, 0.7256, 0.9067, 0.0435, 0.7368, 0.9058, 0.0242, 0.7183, 0.915, 0.0242, 0.7183, 0.915, 0.0435, 0.7368, 0.9058, 0.0491, 0.7314, 0.9141, 0.0439, 1.0195, 0.9058, 0.0616, 0.9995, 0.9048, 0.0407, 1.0195, 0.8418, 0.0407, 1.0195, 0.8418, 0.0616, 0.9995, 0.9048, 0.0584, 0.9995, 0.8408, 0.0898, 0.6885, 0.9121, 0.0898, 0.6279, 0.9121, 0, 0.6885, 0.9165, 0, 0.6885, 0.9165, 0.0898, 0.6279, 0.9121, 0, 0.6279, 0.9165, 0.0898, 0.6885, 0.9121, 0, 0.6885, 0.9165, 0.0491, 0.7314, 0.9141, 0.0491, 0.7314, 0.9141, 0, 0.6885, 0.9165, 0.0242, 0.7183, 0.915, 0, 1.1416, 0.9106, 0.0892, 1.1416, 0.9063, 0, 1.0635, 0.9165, 0, 1.0635, 0.9165, 0.0892, 1.1416, 0.9063, 0.0898, 1.0635, 0.9121, 0, 1.0361, 0.9165, 0, 1.0635, 0.9165, 0.0255, 1.0352, 0.915, 0.0898, 1.0078, 0.9121, 0.1787, 1.0635, 0.8989, 0.0898, 0.9766, 0.9121, 0.0898, 0.9766, 0.9121, 0.1787, 1.0635, 0.8989, 0.1787, 0.9766, 0.8989, 0.0898, 0.7432, 0.9121, 0.1787, 0.7153, 0.8989, 0.0898, 0.6885, 0.9121, 0.3506, 0.5498, 0.8467, 0.3506, 0.6279, 0.8467, 0.4319, 0.5498, 0.8081, 0.4319, 0.5498, 0.8081, 0.3506, 0.6279, 0.8467, 0.4319, 0.6279, 0.8081, 0.4319, 0.4668, 0.8081, 0.4319, 0.5498, 0.8081, 0.5024, 0.4668, 0.7661, 0.5024, 0.4668, 0.7661, 0.4319, 0.5498, 0.8081, 0.5024, 0.5576, 0.7661, 0.1864, 0.4668, 0.897, 0.1864, 0.5576, 0.897, 0.2659, 0.4668, 0.877, 0.2659, 0.4668, 0.877, 0.1864, 0.5576, 0.897, 0.2659, 0.5498, 0.877, 0.9165, 0.5576, 0, 0.9165, 0.6279, 0, 0.9121, 0.5576, -0.0898, 0.9121, 0.5576, -0.0898, 0.9165, 0.6279, 0, 0.9121, 0.6279, -0.0898, 0.2659, 0.5498, 0.877, 0.2659, 0.6279, 0.877, 0.3506, 0.5498, 0.8467, 0.3506, 0.5498, 0.8467, 0.2659, 0.6279, 0.877, 0.3506, 0.6279, 0.8467, 0.3931, 1.6914, 0.0562, 0.4907, 1.6494, 0.0544, 0.3899, 1.6914, 0.0776, 0.3899, 1.6914, 0.0776, 0.4907, 1.6494, 0.0544, 0.4783, 1.6533, 0.0951, 0.48, 1.7295, 0.0437, 0.4041, 1.7617, 0.0444, 0.4814, 1.8037, 0.0395, 0.4814, 1.8037, 0.0395, 0.4041, 1.7617, 0.0444, 0.4138, 1.832, 0.0394, 0.1976, 1.7422, 0.0551, 0.2974, 1.7207, 0.0558, 0.2969, 1.7207, 0.0591, 0.3169, 1.7891, 0.044, 0.2258, 1.8096, 0.0439, 0.3354, 1.8574, 0.0391, 0.3354, 1.8574, 0.0391, 0.2258, 1.8096, 0.0439, 0.2537, 1.876, 0.0395, 0.1952, 1.7422, -0.0592, 0.2896, 1.7207, -0.0878, 0.1974, 1.7422, -0.0551, 0.1974, 1.7422, -0.0551, 0.2896, 1.7207, -0.0878, 0.2969, 1.7207, -0.0591, 0.1703, 1.8877, 0, 0.1328, 1.8213, 0, 0.1687, 1.8877, -0.035, 0.1687, 1.8877, -0.035, 0.1328, 1.8213, 0, 0.1299, 1.8213, -0.0383, 0.3, 1.7275, 0.0485, 0.2006, 1.749, 0.0479, 0.3169, 1.7891, 0.044, 0.3169, 1.7891, 0.044, 0.2006, 1.749, 0.0479, 0.2258, 1.8096, 0.0439, 0.4041, 1.7617, 0.0444, 0.3169, 1.7891, 0.044, 0.4138, 1.832, 0.0394, 0.4138, 1.832, 0.0394, 0.3169, 1.7891, 0.044, 0.3354, 1.8574, 0.0391, 0.2145, 1.9521, 0, 0.2825, 1.9424, 0, 0.2141, 1.9521, 0.0261, 0.2141, 1.9521, 0.0261, 0.2825, 1.9424, 0, 0.2817, 1.9424, 0.0282, 0.1703, 1.8877, 0, 0.1687, 1.8877, 0.0311, 0.1328, 1.8213, 0, 0.1328, 1.8213, 0, 0.1687, 1.8877, 0.0311, 0.13, 1.8213, 0.0363, 0.2969, 1.7207, -0.0591, 0.3899, 1.6914, -0.0776, 0.2983, 1.7207, -0.0493, 0.2983, 1.7207, -0.0493, 0.3899, 1.6914, -0.0776, 0.3943, 1.6914, -0.0491, 0.3176, 1.7891, -0.0398, 0.4048, 1.7617, -0.0397, 0.3359, 1.8574, -0.037, 0.3359, 1.8574, -0.037, 0.4048, 1.7617, -0.0397, 0.4141, 1.832, -0.037, 0.49, 1.8008, 0, 0.4888, 1.7266, 0, 0.4883, 1.8008, 0.0327, 0.4883, 1.8008, 0.0327, 0.4888, 1.7266, 0, 0.4871, 1.7266, 0.0369, 0.2537, 1.876, -0.0395, 0.2258, 1.8096, -0.0439, 0.3359, 1.8574, -0.037, 0.3359, 1.8574, -0.037, 0.2258, 1.8096, -0.0439, 0.3176, 1.7891, -0.0398, 0.0859, 1.7559, 0.0551, 0.1976, 1.7422, 0.0551, 0.1952, 1.7422, 0.0592, 0.4883, 1.8008, -0.0327, 0.4871, 1.7266, -0.0369, 0.49, 1.8008, 0, 0.49, 1.8008, 0, 0.4871, 1.7266, -0.0369, 0.4888, 1.7266, 0, 0.4783, 1.6533, -0.0951, 0.5601, 1.6084, -0.1115, 0.4907, 1.6494, -0.0549, 0.4907, 1.6494, -0.0549, 0.5601, 1.6084, -0.1115, 0.5684, 1.6084, -0.056, 0.1757, 1.8867, 0.038, 0.2537, 1.876, 0.0395, 0.1367, 1.8203, 0.0432, 0.1367, 1.8203, 0.0432, 0.2537, 1.876, 0.0395, 0.2258, 1.8096, 0.0439, 0.4888, 1.7266, 0, 0.4878, 1.6602, 0, 0.4871, 1.7266, 0.0369, 0.4871, 1.7266, 0.0369, 0.4878, 1.6602, 0, 0.4856, 1.6602, 0.0406, 0.4141, 1.832, -0.037, 0.4048, 1.7617, -0.0397, 0.4814, 1.8037, -0.0392, 0.4814, 1.8037, -0.0392, 0.4048, 1.7617, -0.0397, 0.48, 1.7295, -0.0433, 0.2974, 1.7207, 0.0558, 0.3931, 1.6914, 0.0562, 0.2969, 1.7207, 0.0591, 0.2969, 1.7207, 0.0591, 0.3931, 1.6914, 0.0562, 0.3899, 1.6914, 0.0776, 0.1757, 1.8867, -0.0416, 0.1367, 1.8203, -0.045, 0.2537, 1.876, -0.0395, 0.2537, 1.876, -0.0395, 0.1367, 1.8203, -0.045, 0.2258, 1.8096, -0.0439, 0.1328, 1.8213, 0, 0.13, 1.8213, 0.0363, 0.0945, 1.7617, 0, 0.0945, 1.7617, 0, 0.13, 1.8213, 0.0363, 0.094, 1.7617, 0.0411, 0.4907, 1.6494, 0.0544, 0.4788, 1.6631, 0.0475, 0.4856, 1.6602, 0.0406, 0.094, 1.7617, 0.0411, 0.1016, 1.7607, 0.0479, 0.0859, 1.7559, 0.0551, 0.0853, 1.7559, -0.0562, 0.1016, 1.7607, -0.0481, 0.094, 1.7617, -0.0413, 0.4856, 1.6602, -0.0406, 0.4788, 1.6631, -0.047, 0.4907, 1.6494, -0.0549, 0.4897, 1.8672, 0.0289, 0.4827, 1.8701, 0.0356, 0.4836, 1.877, 0.0285, 0.4836, 1.877, -0.0285, 0.4827, 1.8701, -0.0356, 0.4897, 1.8672, -0.0289, 0.2141, 1.9521, -0.0315, 0.204, 1.9473, -0.032, 0.2109, 1.9463, -0.0385, 0.2141, 1.9521, 0.0261, 0.2109, 1.9463, 0.0333, 0.204, 1.9473, 0.0263, 0.395, 1.6982, 0.0489, 0.4788, 1.6631, 0.0475, 0.3931, 1.6914, 0.0562, 0.3931, 1.6914, 0.0562, 0.4788, 1.6631, 0.0475, 0.4907, 1.6494, 0.0544, 0.3943, 1.6914, -0.0491, 0.4907, 1.6494, -0.0549, 0.396, 1.6982, -0.0421, 0.396, 1.6982, -0.0421, 0.4907, 1.6494, -0.0549, 0.4788, 1.6631, -0.047, 0.4856, 1.6602, 0.0406, 0.4878, 1.6602, 0, 0.4907, 1.6494, 0.0544, 0.4907, 1.6494, 0.0544, 0.4878, 1.6602, 0, 0.4934, 1.6504, 0, 0.1016, 1.7607, 0.0479, 0.2006, 1.749, 0.0479, 0.0859, 1.7559, 0.0551, 0.0859, 1.7559, 0.0551, 0.2006, 1.749, 0.0479, 0.1976, 1.7422, 0.0551, 0.2983, 1.7207, -0.0493, 0.3943, 1.6914, -0.0491, 0.301, 1.7275, -0.0423, 0.301, 1.7275, -0.0423, 0.3943, 1.6914, -0.0491, 0.396, 1.6982, -0.0421, 0.3, 1.7275, 0.0485, 0.395, 1.6982, 0.0489, 0.2974, 1.7207, 0.0558, 0.2974, 1.7207, 0.0558, 0.395, 1.6982, 0.0489, 0.3931, 1.6914, 0.0562, 0.0853, 1.7559, -0.0562, 0.1974, 1.7422, -0.0551, 0.1016, 1.7607, -0.0481, 0.1016, 1.7607, -0.0481, 0.1974, 1.7422, -0.0551, 0.2006, 1.749, -0.0479, 0.4907, 1.6494, -0.0549, 0.4934, 1.6504, 0, 0.4856, 1.6602, -0.0406, 0.4856, 1.6602, -0.0406, 0.4934, 1.6504, 0, 0.4878, 1.6602, 0, 0.094, 1.7617, -0.0413, 0.0945, 1.7617, 0, 0.0853, 1.7559, -0.0562, 0.0853, 1.7559, -0.0562, 0.0945, 1.7617, 0, 0.0841, 1.7559, 0, 0.1974, 1.7422, -0.0551, 0.2983, 1.7207, -0.0493, 0.2006, 1.749, -0.0479, 0.2006, 1.749, -0.0479, 0.2983, 1.7207, -0.0493, 0.301, 1.7275, -0.0423, 0.0859, 1.7559, 0.0551, 0.0841, 1.7559, 0, 0.094, 1.7617, 0.0411, 0.094, 1.7617, 0.0411, 0.0841, 1.7559, 0, 0.0945, 1.7617, 0, 0.4788, 1.6631, 0.0475, 0.48, 1.7295, 0.0437, 0.4856, 1.6602, 0.0406, 0.4856, 1.6602, 0.0406, 0.48, 1.7295, 0.0437, 0.4871, 1.7266, 0.0369, 0.204, 1.9473, -0.032, 0.1687, 1.8877, -0.035, 0.2109, 1.9463, -0.0385, 0.2109, 1.9463, -0.0385, 0.1687, 1.8877, -0.035, 0.1757, 1.8867, -0.0416, 0.4241, 1.9023, 0.0276, 0.4836, 1.877, 0.0285, 0.4226, 1.8955, 0.0349, 0.4226, 1.8955, 0.0349, 0.4836, 1.877, 0.0285, 0.4827, 1.8701, 0.0356, 0.4229, 1.8955, -0.0347, 0.4827, 1.8701, -0.0356, 0.4241, 1.9023, -0.0276, 0.4241, 1.9023, -0.0276, 0.4827, 1.8701, -0.0356, 0.4836, 1.877, -0.0285, 0.4836, 1.877, 0.0285, 0.4851, 1.877, 0, 0.4897, 1.8672, 0.0289, 0.4897, 1.8672, 0.0289, 0.4851, 1.877, 0, 0.4912, 1.8672, 0, 0.3523, 1.9189, -0.0344, 0.4229, 1.8955, -0.0347, 0.3542, 1.9258, -0.0274, 0.3542, 1.9258, -0.0274, 0.4229, 1.8955, -0.0347, 0.4241, 1.9023, -0.0276, 0.2791, 1.9365, -0.0354, 0.3523, 1.9189, -0.0344, 0.2817, 1.9424, -0.0282, 0.2817, 1.9424, -0.0282, 0.3523, 1.9189, -0.0344, 0.3542, 1.9258, -0.0274, 0.2109, 1.9463, -0.0385, 0.2791, 1.9365, -0.0354, 0.2141, 1.9521, -0.0315, 0.2141, 1.9521, -0.0315, 0.2791, 1.9365, -0.0354, 0.2817, 1.9424, -0.0282, 0.3542, 1.9258, 0.0274, 0.4241, 1.9023, 0.0276, 0.3523, 1.9189, 0.0346, 0.3523, 1.9189, 0.0346, 0.4241, 1.9023, 0.0276, 0.4226, 1.8955, 0.0349, 0.4897, 1.8672, -0.0289, 0.4912, 1.8672, 0, 0.4836, 1.877, -0.0285, 0.4836, 1.877, -0.0285, 0.4912, 1.8672, 0, 0.4851, 1.877, 0, 0.2817, 1.9424, 0.0282, 0.3542, 1.9258, 0.0274, 0.2791, 1.9365, 0.0354, 0.2791, 1.9365, 0.0354, 0.3542, 1.9258, 0.0274, 0.3523, 1.9189, 0.0346, 0.2141, 1.9521, 0.0261, 0.2817, 1.9424, 0.0282, 0.2109, 1.9463, 0.0333, 0.2109, 1.9463, 0.0333, 0.2817, 1.9424, 0.0282, 0.2791, 1.9365, 0.0354, 0.204, 1.9473, 0.0263, 0.2045, 1.9473, 0, 0.2141, 1.9521, 0.0261, 0.2141, 1.9521, 0.0261, 0.2045, 1.9473, 0, 0.2145, 1.9521, 0, 0.2141, 1.9521, -0.0315, 0.2145, 1.9521, 0, 0.204, 1.9473, -0.032, 0.204, 1.9473, -0.032, 0.2145, 1.9521, 0, 0.2045, 1.9473, 0, 0.4827, 1.8701, -0.0356, 0.4814, 1.8037, -0.0392, 0.4897, 1.8672, -0.0289, 0.4897, 1.8672, -0.0289, 0.4814, 1.8037, -0.0392, 0.4883, 1.8008, -0.0327, 0.094, 1.7617, 0.0411, 0.13, 1.8213, 0.0363, 0.1016, 1.7607, 0.0479, 0.1016, 1.7607, 0.0479, 0.13, 1.8213, 0.0363, 0.1367, 1.8203, 0.0432, 0.2006, 1.749, 0.0479, 0.3, 1.7275, 0.0485, 0.1976, 1.7422, 0.0551, 0.1976, 1.7422, 0.0551, 0.3, 1.7275, 0.0485, 0.2974, 1.7207, 0.0558, 0.4814, 1.8037, 0.0395, 0.4827, 1.8701, 0.0356, 0.4883, 1.8008, 0.0327, 0.4883, 1.8008, 0.0327, 0.4827, 1.8701, 0.0356, 0.4897, 1.8672, 0.0289, 0.48, 1.7295, 0.0437, 0.4814, 1.8037, 0.0395, 0.4871, 1.7266, 0.0369, 0.4871, 1.7266, 0.0369, 0.4814, 1.8037, 0.0395, 0.4883, 1.8008, 0.0327, 0.1299, 1.8213, -0.0383, 0.094, 1.7617, -0.0413, 0.1367, 1.8203, -0.045, 0.1367, 1.8203, -0.045, 0.094, 1.7617, -0.0413, 0.1016, 1.7607, -0.0481, 0.1687, 1.8877, -0.035, 0.1299, 1.8213, -0.0383, 0.1757, 1.8867, -0.0416, 0.1757, 1.8867, -0.0416, 0.1299, 1.8213, -0.0383, 0.1367, 1.8203, -0.045, 0.48, 1.7295, -0.0433, 0.4788, 1.6631, -0.047, 0.4871, 1.7266, -0.0369, 0.4871, 1.7266, -0.0369, 0.4788, 1.6631, -0.047, 0.4856, 1.6602, -0.0406, 0.4814, 1.8037, -0.0392, 0.48, 1.7295, -0.0433, 0.4883, 1.8008, -0.0327, 0.4883, 1.8008, -0.0327, 0.48, 1.7295, -0.0433, 0.4871, 1.7266, -0.0369, 0.1687, 1.8877, 0.0311, 0.204, 1.9473, 0.0263, 0.1757, 1.8867, 0.038, 0.1757, 1.8867, 0.038, 0.204, 1.9473, 0.0263, 0.2109, 1.9463, 0.0333, 0.13, 1.8213, 0.0363, 0.1687, 1.8877, 0.0311, 0.1367, 1.8203, 0.0432, 0.1367, 1.8203, 0.0432, 0.1687, 1.8877, 0.0311, 0.1757, 1.8867, 0.038, 0.0793, 1.7559, 0.0651, 0.0793, 1.7559, -0.0651, 0.0841, 1.7559, 0, 0.0793, 1.7559, -0.0651, 0.0853, 1.7559, -0.0562, 0.0841, 1.7559, 0, 0, 1.0635, 0.9165, 0.0898, 1.0635, 0.9121, 0.0255, 1.0352, 0.915, 0.0255, 1.0352, 0.915, 0.0898, 1.0635, 0.9121, 0.0498, 1.0244, 0.9141, 0.0498, 0.9961, 0.833, 0.0584, 0.9995, 0.8408, 0.0554, 0.9766, 0.8325, 0.0554, 0.9766, 0.8325, 0.0584, 0.9995, 0.8408, 0.0649, 0.9766, 0.8403, 0.0554, 0.9766, 0.8325, 0.0649, 0.9766, 0.8403, 0.0554, 0.8892, 0.8325, 0.0554, 0.8892, 0.8325, 0.0649, 0.9766, 0.8403, 0.0649, 0.8892, 0.8403, 0.0554, 0.8892, 0.8325, 0.0649, 0.8892, 0.8403, 0.0554, 0.7759, 0.8325, 0.0554, 0.7759, 0.8325, 0.0649, 0.8892, 0.8403, 0.0649, 0.7759, 0.8403, 0.0159, 0.7334, 0.835, 0.0186, 0.7256, 0.8428, 0, 0.7324, 0.8354, 0, 0.7324, 0.8354, 0.0186, 0.7256, 0.8428, 0, 0.7241, 0.8438, 0.0185, 1.0195, 0.835, 0.0209, 1.0283, 0.8428, 0.0353, 1.0127, 0.8335, 0.0353, 1.0127, 0.8335, 0.0209, 1.0283, 0.8428, 0.0407, 1.0195, 0.8418, 0.0472, 0.7578, 0.833, 0.0546, 0.7534, 0.8408, 0.0348, 0.7437, 0.8335, 0.0348, 0.7437, 0.8335, 0.0546, 0.7534, 0.8408, 0.0404, 0.7368, 0.8418, 0, 1.0205, 0.8354, 0, 1.0293, 0.8438, 0.0185, 1.0195, 0.835, 0.0185, 1.0195, 0.835, 0, 1.0293, 0.8438, 0.0209, 1.0283, 0.8428, 0.0353, 1.0127, 0.8335, 0.0407, 1.0195, 0.8418, 0.0498, 0.9961, 0.833, 0.0498, 0.9961, 0.833, 0.0407, 1.0195, 0.8418, 0.0584, 0.9995, 0.8408, 0.0554, 0.7759, 0.8325, 0.0649, 0.7759, 0.8403, 0.0472, 0.7578, 0.833, 0.0472, 0.7578, 0.833, 0.0649, 0.7759, 0.8403, 0.0546, 0.7534, 0.8408, 0.0348, 0.7437, 0.8335, 0.0404, 0.7368, 0.8418, 0.0159, 0.7334, 0.835, 0.0159, 0.7334, 0.835, 0.0404, 0.7368, 0.8418, 0.0186, 0.7256, 0.8428, 0.0898, 1.0078, 0.9121, 0.0898, 1.0635, 0.9121, 0.1787, 1.0635, 0.8989, 0.0898, 0.7759, 0.9121, 0.1787, 0.8022, 0.8989, 0.0898, 0.7432, 0.9121, 0.0898, 0.7432, 0.9121, 0.1787, 0.8022, 0.8989, 0.1787, 0.7153, 0.8989, 0.3625, 1.1338, 0.519, 0.3591, 1.1221, 0.5127, 0.3052, 1.1367, 0.5532, 0.3052, 1.1367, 0.5532, 0.3591, 1.1221, 0.5127, 0.2988, 1.126, 0.5488, 0.3484, 0.729, 0.5293, 0.3494, 0.7144, 0.5386, 0.2866, 0.7324, 0.5659, 0.2866, 0.7324, 0.5659, 0.3494, 0.7144, 0.5386, 0.2908, 0.7178, 0.5728, 0.1493, 0.8984, 0.6226, 0.1392, 0.9023, 0.6348, 0.1523, 0.9692, 0.6221, 0.1523, 0.9692, 0.6221, 0.1392, 0.9023, 0.6348, 0.142, 0.9688, 0.6338, 0.1677, 0.8252, 0.6177, 0.1555, 0.8379, 0.6304, 0.1493, 0.8984, 0.6226, 0.1493, 0.8984, 0.6226, 0.1555, 0.8379, 0.6304, 0.1392, 0.9023, 0.6348, 0.1769, 1.041, 0.6147, 0.1635, 1.0303, 0.6289, 0.2064, 1.084, 0.5991, 0.2064, 1.084, 0.5991, 0.1635, 1.0303, 0.6289, 0.2007, 1.082, 0.6123, 0.3052, 1.1367, 0.5532, 0.2988, 1.126, 0.5488, 0.2496, 1.1191, 0.5864, 0.2496, 1.1191, 0.5864, 0.2988, 1.126, 0.5488, 0.2368, 1.1064, 0.5845, 0.4836, 1.0117, 0.4346, 0.4646, 1.0273, 0.4404, 0.4573, 1.0674, 0.457, 0.4573, 1.0674, 0.457, 0.4646, 1.0273, 0.4404, 0.4441, 1.0674, 0.4553, 0.1523, 0.9692, 0.6221, 0.142, 0.9688, 0.6338, 0.1769, 1.041, 0.6147, 0.1769, 1.041, 0.6147, 0.142, 0.9688, 0.6338, 0.1635, 1.0303, 0.6289, 0.4465, 0.7676, 0.4675, 0.4326, 0.77, 0.4668, 0.4766, 0.8188, 0.4404, 0.4766, 0.8188, 0.4404, 0.4326, 0.77, 0.4668, 0.4565, 0.8091, 0.4473, 0.4766, 0.8188, 0.4404, 0.4565, 0.8091, 0.4473, 0.4919, 0.8809, 0.4246, 0.4919, 0.8809, 0.4246, 0.4565, 0.8091, 0.4473, 0.4749, 0.8813, 0.4292, 0.4944, 0.9478, 0.4219, 0.4775, 0.9531, 0.4265, 0.4836, 1.0117, 0.4346, 0.4836, 1.0117, 0.4346, 0.4775, 0.9531, 0.4265, 0.4646, 1.0273, 0.4404, 0.1892, 0.7886, 0.6094, 0.1882, 0.7827, 0.6191, 0.1677, 0.8252, 0.6177, 0.1677, 0.8252, 0.6177, 0.1882, 0.7827, 0.6191, 0.1555, 0.8379, 0.6304, 0.4919, 0.8809, 0.4246, 0.4749, 0.8813, 0.4292, 0.4944, 0.9478, 0.4219, 0.4944, 0.9478, 0.4219, 0.4749, 0.8813, 0.4292, 0.4775, 0.9531, 0.4265, 0.4326, 0.77, 0.4668, 0.4465, 0.7676, 0.4675, 0.4089, 0.749, 0.4873, 0.4089, 0.749, 0.4873, 0.4465, 0.7676, 0.4675, 0.4033, 0.7319, 0.502, 0.2496, 1.1191, 0.5864, 0.2368, 1.1064, 0.5845, 0.2007, 1.082, 0.6123, 0.2007, 1.082, 0.6123, 0.2368, 1.1064, 0.5845, 0.2064, 1.084, 0.5991, 0.4158, 1.1104, 0.4873, 0.4182, 1.0957, 0.4761, 0.3625, 1.1338, 0.519, 0.3625, 1.1338, 0.519, 0.4182, 1.0957, 0.4761, 0.3591, 1.1221, 0.5127, 0.4573, 1.0674, 0.457, 0.4441, 1.0674, 0.4553, 0.4158, 1.1104, 0.4873, 0.4158, 1.1104, 0.4873, 0.4441, 1.0674, 0.4553, 0.4182, 1.0957, 0.4761, 0.4089, 0.749, 0.4873, 0.4033, 0.7319, 0.502, 0.3484, 0.729, 0.5293, 0.3484, 0.729, 0.5293, 0.4033, 0.7319, 0.502, 0.3494, 0.7144, 0.5386, 0.2229, 0.7593, 0.5967, 0.2358, 0.7412, 0.6006, 0.1892, 0.7886, 0.6094, 0.1892, 0.7886, 0.6094, 0.2358, 0.7412, 0.6006, 0.1882, 0.7827, 0.6191, 0.2866, 0.7324, 0.5659, 0.2908, 0.7178, 0.5728, 0.2229, 0.7593, 0.5967, 0.2229, 0.7593, 0.5967, 0.2908, 0.7178, 0.5728, 0.2358, 0.7412, 0.6006, 0.3506, 0.4668, 0.8467, 0.3506, 0.5498, 0.8467, 0.4319, 0.4668, 0.8081, 0.4319, 0.4668, 0.8081, 0.3506, 0.5498, 0.8467, 0.4319, 0.5498, 0.8081, 0.2659, 0.4668, 0.877, 0.2659, 0.5498, 0.877, 0.3506, 0.4668, 0.8467, 0.3506, 0.4668, 0.8467, 0.2659, 0.5498, 0.877, 0.3506, 0.5498, 0.8467, 0, 0.5576, 0.9165, 0, 0.6279, 0.9165, 0.0898, 0.5576, 0.9121, 0.0898, 0.5576, 0.9121, 0, 0.6279, 0.9165, 0.0898, 0.6279, 0.9121, 0.6479, 0.5576, -0.6479, 0.6479, 0.6279, -0.6479, 0.5811, 0.5576, -0.7085, 0.5811, 0.5576, -0.7085, 0.6479, 0.6279, -0.6479, 0.5811, 0.6279, -0.7085, 0.6479, 0.5576, 0.6479, 0.6479, 0.6279, 0.6479, 0.7085, 0.5576, 0.5811, 0.7085, 0.5576, 0.5811, 0.6479, 0.6279, 0.6479, 0.7085, 0.6279, 0.5811, 0.4319, 0.5498, 0.8081, 0.4319, 0.6279, 0.8081, 0.5024, 0.5576, 0.7661, 0.5024, 0.5576, 0.7661, 0.4319, 0.6279, 0.8081, 0.5088, 0.6279, 0.7617, 0.5811, 0.5576, -0.7085, 0.5811, 0.6279, -0.7085, 0.5088, 0.5576, -0.7617, 0.5088, 0.5576, -0.7617, 0.5811, 0.6279, -0.7085, 0.5088, 0.6279, -0.7617, 0.7085, 0.5576, 0.5811, 0.7085, 0.6279, 0.5811, 0.7617, 0.5576, 0.5088, 0.7617, 0.5576, 0.5088, 0.7085, 0.6279, 0.5811, 0.7617, 0.6279, 0.5088, 0.7617, 0.5576, -0.5088, 0.7617, 0.6279, -0.5088, 0.7085, 0.5576, -0.5811, 0.7085, 0.5576, -0.5811, 0.7617, 0.6279, -0.5088, 0.7085, 0.6279, -0.5811, 0.3506, 0.5576, -0.8467, 0.3506, 0.6279, -0.8467, 0.2659, 0.5576, -0.877, 0.2659, 0.5576, -0.877, 0.3506, 0.6279, -0.8467, 0.2659, 0.6279, -0.877, 0.0898, 0.5576, 0.9121, 0.0898, 0.6279, 0.9121, 0.1864, 0.5576, 0.897, 0.1864, 0.5576, 0.897, 0.0898, 0.6279, 0.9121, 0.1787, 0.6279, 0.8989, 0.8467, 0.5576, 0.3506, 0.8467, 0.6279, 0.3506, 0.877, 0.5576, 0.2659, 0.877, 0.5576, 0.2659, 0.8467, 0.6279, 0.3506, 0.877, 0.6279, 0.2659, 0.8081, 0.5576, 0.4319, 0.8081, 0.6279, 0.4319, 0.8467, 0.5576, 0.3506, 0.8467, 0.5576, 0.3506, 0.8081, 0.6279, 0.4319, 0.8467, 0.6279, 0.3506, 0.7617, 0.5576, 0.5088, 0.7617, 0.6279, 0.5088, 0.8081, 0.5576, 0.4319, 0.8081, 0.5576, 0.4319, 0.7617, 0.6279, 0.5088, 0.8081, 0.6279, 0.4319, 0.8081, 0.5576, -0.4319, 0.8081, 0.6279, -0.4319, 0.7617, 0.5576, -0.5088, 0.7617, 0.5576, -0.5088, 0.8081, 0.6279, -0.4319, 0.7617, 0.6279, -0.5088, 0.1864, 0.4031, 0.897, 0.1864, 0.4668, 0.897, 0.2659, 0.4031, 0.877, 0.2659, 0.4031, 0.877, 0.1864, 0.4668, 0.897, 0.2659, 0.4668, 0.877, 0.5024, 0.5576, 0.7661, 0.5088, 0.6279, 0.7617, 0.5811, 0.5576, 0.7085, 0.5811, 0.5576, 0.7085, 0.5088, 0.6279, 0.7617, 0.5811, 0.6279, 0.7085, 0.8989, 0.5576, 0.1787, 0.8989, 0.6279, 0.1787, 0.9121, 0.5576, 0.0898, 0.9121, 0.5576, 0.0898, 0.8989, 0.6279, 0.1787, 0.9121, 0.6279, 0.0898, 0.8989, 0.5576, -0.1787, 0.8989, 0.6279, -0.1787, 0.877, 0.5576, -0.2659, 0.877, 0.5576, -0.2659, 0.8989, 0.6279, -0.1787, 0.877, 0.6279, -0.2659, 0.1864, 0.5576, 0.897, 0.1787, 0.6279, 0.8989, 0.2659, 0.5498, 0.877, 0.2659, 0.5498, 0.877, 0.1787, 0.6279, 0.8989, 0.2659, 0.6279, 0.877, 0.7085, 0.5576, -0.5811, 0.7085, 0.6279, -0.5811, 0.6479, 0.5576, -0.6479, 0.6479, 0.5576, -0.6479, 0.7085, 0.6279, -0.5811, 0.6479, 0.6279, -0.6479, 0.5811, 0.5576, 0.7085, 0.5811, 0.6279, 0.7085, 0.6479, 0.5576, 0.6479, 0.6479, 0.5576, 0.6479, 0.5811, 0.6279, 0.7085, 0.6479, 0.6279, 0.6479, 0.5088, 0.5576, -0.7617, 0.5088, 0.6279, -0.7617, 0.4319, 0.5576, -0.8081, 0.4319, 0.5576, -0.8081, 0.5088, 0.6279, -0.7617, 0.4319, 0.6279, -0.8081, 0.8467, 0.5576, -0.3506, 0.8467, 0.6279, -0.3506, 0.8081, 0.5576, -0.4319, 0.8081, 0.5576, -0.4319, 0.8467, 0.6279, -0.3506, 0.8081, 0.6279, -0.4319, 0.4319, 0.5576, -0.8081, 0.4319, 0.6279, -0.8081, 0.3506, 0.5576, -0.8467, 0.3506, 0.5576, -0.8467, 0.4319, 0.6279, -0.8081, 0.3506, 0.6279, -0.8467, 0.877, 0.5576, -0.2659, 0.877, 0.6279, -0.2659, 0.8467, 0.5576, -0.3506, 0.8467, 0.5576, -0.3506, 0.877, 0.6279, -0.2659, 0.8467, 0.6279, -0.3506, 0.3506, 0.4031, 0.8467, 0.3506, 0.4668, 0.8467, 0.4319, 0.4031, 0.8081, 0.4319, 0.4031, 0.8081, 0.3506, 0.4668, 0.8467, 0.4319, 0.4668, 0.8081, 0.1787, 0.5576, -0.8989, 0.1787, 0.6279, -0.8989, 0.0898, 0.5576, -0.9121, 0.0898, 0.5576, -0.9121, 0.1787, 0.6279, -0.8989, 0.0898, 0.6279, -0.9121, 0.2659, 0.4031, 0.877, 0.2659, 0.4668, 0.877, 0.3506, 0.4031, 0.8467, 0.3506, 0.4031, 0.8467, 0.2659, 0.4668, 0.877, 0.3506, 0.4668, 0.8467, 0.9121, 0.5576, 0.0898, 0.9121, 0.6279, 0.0898, 0.9165, 0.5576, 0, 0.9165, 0.5576, 0, 0.9121, 0.6279, 0.0898, 0.9165, 0.6279, 0, 0.2659, 0.5576, -0.877, 0.2659, 0.6279, -0.877, 0.1787, 0.5576, -0.8989, 0.1787, 0.5576, -0.8989, 0.2659, 0.6279, -0.877, 0.1787, 0.6279, -0.8989, 0.877, 0.5576, 0.2659, 0.877, 0.6279, 0.2659, 0.8989, 0.5576, 0.1787, 0.8989, 0.5576, 0.1787, 0.877, 0.6279, 0.2659, 0.8989, 0.6279, 0.1787, 0.0898, 0.5576, -0.9121, 0.0898, 0.6279, -0.9121, 0, 0.5576, -0.9165, 0, 0.5576, -0.9165, 0.0898, 0.6279, -0.9121, 0, 0.6279, -0.9165, 0.4319, 0.4031, 0.8081, 0.4319, 0.4668, 0.8081, 0.5024, 0.4031, 0.7661, 0.5024, 0.4031, 0.7661, 0.4319, 0.4668, 0.8081, 0.5024, 0.4668, 0.7661, 0.1772, 0.542, 0.8911, 0.1694, 0.5498, 0.8921, 0.1864, 0.5576, 0.897, 0.5024, 0.5576, 0.7661, 0.5107, 0.5498, 0.7505, 0.5049, 0.542, 0.7554, 0.1864, 0.4031, 0.897, 0.1844, 0.395, 0.8892, 0.1769, 0.4031, 0.8911, 0.5049, 0.4031, 0.7554, 0.4983, 0.395, 0.7593, 0.5024, 0.4031, 0.7661, 0.6479, 0.5576, -0.6479, 0.6426, 0.5498, -0.6426, 0.7085, 0.5576, -0.5811, 0.7085, 0.5576, -0.5811, 0.6426, 0.5498, -0.6426, 0.7021, 0.5498, -0.5762, 0.6479, 0.5576, 0.6479, 0.6426, 0.5498, 0.6426, 0.5811, 0.5576, 0.7085, 0.5811, 0.5576, 0.7085, 0.6426, 0.5498, 0.6426, 0.5762, 0.5498, 0.7021, 0.5811, 0.5576, 0.7085, 0.5762, 0.5498, 0.7021, 0.5024, 0.5576, 0.7661, 0.5024, 0.5576, 0.7661, 0.5762, 0.5498, 0.7021, 0.5107, 0.5498, 0.7505, 0.5811, 0.5576, -0.7085, 0.5762, 0.5498, -0.7021, 0.6479, 0.5576, -0.6479, 0.6479, 0.5576, -0.6479, 0.5762, 0.5498, -0.7021, 0.6426, 0.5498, -0.6426, 0.7085, 0.5576, 0.5811, 0.7021, 0.5498, 0.5762, 0.6479, 0.5576, 0.6479, 0.6479, 0.5576, 0.6479, 0.7021, 0.5498, 0.5762, 0.6426, 0.5498, 0.6426, 0.7617, 0.5576, -0.5088, 0.7554, 0.5498, -0.5044, 0.8081, 0.5576, -0.4319, 0.8081, 0.5576, -0.4319, 0.7554, 0.5498, -0.5044, 0.8013, 0.5498, -0.4282, 0.3506, 0.5576, -0.8467, 0.3477, 0.5498, -0.8394, 0.4319, 0.5576, -0.8081, 0.4319, 0.5576, -0.8081, 0.3477, 0.5498, -0.8394, 0.4282, 0.5498, -0.8013, 0.8467, 0.5576, 0.3506, 0.8394, 0.5498, 0.3477, 0.8081, 0.5576, 0.4319, 0.8081, 0.5576, 0.4319, 0.8394, 0.5498, 0.3477, 0.8013, 0.5498, 0.4282, 0.8081, 0.5576, 0.4319, 0.8013, 0.5498, 0.4282, 0.7617, 0.5576, 0.5088, 0.7617, 0.5576, 0.5088, 0.8013, 0.5498, 0.4282, 0.7554, 0.5498, 0.5044, 0.7617, 0.5576, 0.5088, 0.7554, 0.5498, 0.5044, 0.7085, 0.5576, 0.5811, 0.7085, 0.5576, 0.5811, 0.7554, 0.5498, 0.5044, 0.7021, 0.5498, 0.5762, 0.8081, 0.5576, -0.4319, 0.8013, 0.5498, -0.4282, 0.8467, 0.5576, -0.3506, 0.8467, 0.5576, -0.3506, 0.8013, 0.5498, -0.4282, 0.8394, 0.5498, -0.3477, 0, 0.5576, -0.9165, 0, 0.5498, -0.9087, 0.0898, 0.5576, -0.9121, 0.0898, 0.5576, -0.9121, 0, 0.5498, -0.9087, 0.0891, 0.5498, -0.9043, 0.8989, 0.5576, 0.1787, 0.8911, 0.5498, 0.1772, 0.877, 0.5576, 0.2659, 0.877, 0.5576, 0.2659, 0.8911, 0.5498, 0.1772, 0.8691, 0.5498, 0.2637, 0.9087, 0.5498, 0, 0.9165, 0.5576, 0, 0.9043, 0.5498, -0.0891, 0.9043, 0.5498, -0.0891, 0.9165, 0.5576, 0, 0.9121, 0.5576, -0.0898, 0.8989, 0.5576, -0.1787, 0.8911, 0.5498, -0.1772, 0.9121, 0.5576, -0.0898, 0.9121, 0.5576, -0.0898, 0.8911, 0.5498, -0.1772, 0.9043, 0.5498, -0.0891, 0.1864, 0.5576, 0.897, 0.1694, 0.5498, 0.8921, 0.0898, 0.5576, 0.9121, 0.0898, 0.5576, 0.9121, 0.1694, 0.5498, 0.8921, 0.0891, 0.5498, 0.9043, 0.7085, 0.5576, -0.5811, 0.7021, 0.5498, -0.5762, 0.7617, 0.5576, -0.5088, 0.7617, 0.5576, -0.5088, 0.7021, 0.5498, -0.5762, 0.7554, 0.5498, -0.5044, 0.0898, 0.5576, 0.9121, 0.0891, 0.5498, 0.9043, 0, 0.5576, 0.9165, 0, 0.5576, 0.9165, 0.0891, 0.5498, 0.9043, 0, 0.5498, 0.9087, 0.5088, 0.5576, -0.7617, 0.5044, 0.5498, -0.7554, 0.5811, 0.5576, -0.7085, 0.5811, 0.5576, -0.7085, 0.5044, 0.5498, -0.7554, 0.5762, 0.5498, -0.7021, 0.8467, 0.5576, -0.3506, 0.8394, 0.5498, -0.3477, 0.877, 0.5576, -0.2659, 0.877, 0.5576, -0.2659, 0.8394, 0.5498, -0.3477, 0.8691, 0.5498, -0.2637, 0.4319, 0.5576, -0.8081, 0.4282, 0.5498, -0.8013, 0.5088, 0.5576, -0.7617, 0.5088, 0.5576, -0.7617, 0.4282, 0.5498, -0.8013, 0.5044, 0.5498, -0.7554, 0.877, 0.5576, -0.2659, 0.8691, 0.5498, -0.2637, 0.8989, 0.5576, -0.1787, 0.8989, 0.5576, -0.1787, 0.8691, 0.5498, -0.2637, 0.8911, 0.5498, -0.1772, 0.9165, 0.5576, 0, 0.9087, 0.5498, 0, 0.9121, 0.5576, 0.0898, 0.9121, 0.5576, 0.0898, 0.9087, 0.5498, 0, 0.9043, 0.5498, 0.0891, 0.1787, 0.5576, -0.8989, 0.1772, 0.5498, -0.8911, 0.2659, 0.5576, -0.877, 0.2659, 0.5576, -0.877, 0.1772, 0.5498, -0.8911, 0.2637, 0.5498, -0.8691, 0.9121, 0.5576, 0.0898, 0.9043, 0.5498, 0.0891, 0.8989, 0.5576, 0.1787, 0.8989, 0.5576, 0.1787, 0.9043, 0.5498, 0.0891, 0.8911, 0.5498, 0.1772, 0.2659, 0.5576, -0.877, 0.2637, 0.5498, -0.8691, 0.3506, 0.5576, -0.8467, 0.3506, 0.5576, -0.8467, 0.2637, 0.5498, -0.8691, 0.3477, 0.5498, -0.8394, 0.877, 0.5576, 0.2659, 0.8691, 0.5498, 0.2637, 0.8467, 0.5576, 0.3506, 0.8467, 0.5576, 0.3506, 0.8691, 0.5498, 0.2637, 0.8394, 0.5498, 0.3477, 0.0898, 0.5576, -0.9121, 0.0891, 0.5498, -0.9043, 0.1787, 0.5576, -0.8989, 0.1787, 0.5576, -0.8989, 0.0891, 0.5498, -0.9043, 0.1772, 0.5498, -0.8911, 0.1772, 0.542, 0.8911, 0.1864, 0.5576, 0.897, 0.1769, 0.4668, 0.8911, 0.1769, 0.4668, 0.8911, 0.1864, 0.5576, 0.897, 0.1864, 0.4668, 0.897, 0.5049, 0.4668, 0.7554, 0.5024, 0.4668, 0.7661, 0.5049, 0.542, 0.7554, 0.5049, 0.542, 0.7554, 0.5024, 0.4668, 0.7661, 0.5024, 0.5576, 0.7661, 0.2659, 0.4031, 0.877, 0.2637, 0.395, 0.8691, 0.1864, 0.4031, 0.897, 0.1864, 0.4031, 0.897, 0.2637, 0.395, 0.8691, 0.1844, 0.395, 0.8892, 0.5024, 0.4031, 0.7661, 0.4983, 0.395, 0.7593, 0.4319, 0.4031, 0.8081, 0.4319, 0.4031, 0.8081, 0.4983, 0.395, 0.7593, 0.4282, 0.395, 0.8013, 0.4319, 0.4031, 0.8081, 0.4282, 0.395, 0.8013, 0.3506, 0.4031, 0.8467, 0.3506, 0.4031, 0.8467, 0.4282, 0.395, 0.8013, 0.3477, 0.395, 0.8394, 0.3506, 0.4031, 0.8467, 0.3477, 0.395, 0.8394, 0.2659, 0.4031, 0.877, 0.2659, 0.4031, 0.877, 0.3477, 0.395, 0.8394, 0.2637, 0.395, 0.8691, 0.1769, 0.4668, 0.8911, 0.1864, 0.4668, 0.897, 0.1769, 0.4031, 0.8911, 0.1769, 0.4031, 0.8911, 0.1864, 0.4668, 0.897, 0.1864, 0.4031, 0.897, 0.5049, 0.4031, 0.7554, 0.5024, 0.4031, 0.7661, 0.5049, 0.4668, 0.7554, 0.5049, 0.4668, 0.7554, 0.5024, 0.4031, 0.7661, 0.5024, 0.4668, 0.7661, 0.9121, 0.5576, -0.0898, 0.9121, 0.6279, -0.0898, 0.8989, 0.5576, -0.1787, 0.8989, 0.5576, -0.1787, 0.9121, 0.6279, -0.0898, 0.8989, 0.6279, -0.1787, 0.772, 1.4336, -0.076, 0.7734, 1.4336, -0.0522, 0.7129, 1.498, -0.0702, 0.7129, 1.498, -0.0702, 0.7734, 1.4336, -0.0522, 0.6782, 1.5283, -0.0544, 0.8989, 1.2119, 0.0466, 0.9414, 1.2539, 0.0437, 0.9009, 1.2041, 0.0398, 0.9009, 1.2041, 0.0398, 0.9414, 1.2539, 0.0437, 0.9448, 1.2471, 0.0369, 0.8599, 1.4072, 0.044, 0.8208, 1.3818, 0.0468, 0.8057, 1.4834, 0.0439, 0.8057, 1.4834, 0.0439, 0.8208, 1.3818, 0.0468, 0.7593, 1.46, 0.0466, 0.7466, 1.5508, 0.0432, 0.8057, 1.4834, 0.0439, 0.6875, 1.5293, 0.0468, 0.6875, 1.5293, 0.0468, 0.8057, 1.4834, 0.0439, 0.7593, 1.46, 0.0466, 0.8931, 1.209, -0.0529, 0.8628, 1.293, -0.0481, 0.8892, 1.2188, -0.0876, 0.8892, 1.2188, -0.0876, 0.8628, 1.293, -0.0481, 0.8608, 1.293, -0.0848, 0.8892, 1.2188, -0.0876, 0.9063, 1.1416, -0.0892, 0.8931, 1.209, -0.0529, 0.8057, 1.4834, -0.0439, 0.7778, 1.4404, -0.0451, 0.8604, 1.4072, -0.0398, 0.8604, 1.4072, -0.0398, 0.7778, 1.4404, -0.0451, 0.8208, 1.3809, -0.0412, 0.8159, 1.375, 0.0541, 0.8218, 1.3652, 0.0809, 0.7573, 1.4512, 0.0539, 0.7573, 1.4512, 0.0539, 0.8218, 1.3652, 0.0809, 0.772, 1.4336, 0.076, 0.8608, 1.293, 0.0848, 0.8218, 1.3652, 0.0809, 0.8623, 1.293, 0.0547, 0.8623, 1.293, 0.0547, 0.8218, 1.3652, 0.0809, 0.8159, 1.375, 0.0541, 0.8931, 1.209, 0.0541, 0.9063, 1.1416, 0.0892, 0.8892, 1.2188, 0.0876, 0.8931, 1.209, -0.0529, 0.9063, 1.1416, -0.0892, 0.8965, 1.1963, -0.0427, 0.9463, 1.2461, 0, 0.9028, 1.2031, 0, 0.9448, 1.2471, 0.0369, 0.9448, 1.2471, 0.0369, 0.9028, 1.2031, 0, 0.9009, 1.2041, 0.0398, 0.9448, 1.2471, -0.0369, 0.9009, 1.2041, -0.0396, 0.9463, 1.2461, 0, 0.9463, 1.2461, 0, 0.9009, 1.2041, -0.0396, 0.9028, 1.2031, 0, 0.6782, 1.5283, 0.0542, 0.645, 1.5557, 0.0635, 0.6694, 1.5352, 0.0443, 0.7422, 1.5566, -0.0383, 0.6816, 1.5342, -0.0405, 0.7466, 1.5508, -0.045, 0.7466, 1.5508, -0.045, 0.6816, 1.5342, -0.0405, 0.6875, 1.5293, -0.0472, 0.6479, 1.5557, 0, 0.645, 1.5557, -0.0635, 0.6719, 1.5352, 0, 0.6719, 1.5352, 0, 0.645, 1.5557, -0.0635, 0.6694, 1.5352, -0.0445, 0.7129, 1.498, -0.0702, 0.6782, 1.5283, -0.0544, 0.645, 1.5557, -0.0635, 0.8984, 1.1953, 0, 0.9106, 1.1416, 0, 0.8965, 1.1963, 0.0429, 0.8965, 1.1963, 0.0429, 0.9106, 1.1416, 0, 0.9063, 1.1416, 0.0892, 0.6816, 1.5342, 0.0401, 0.7422, 1.5566, 0.0363, 0.6875, 1.5293, 0.0468, 0.6875, 1.5293, 0.0468, 0.7422, 1.5566, 0.0363, 0.7466, 1.5508, 0.0432, 0.7446, 1.5547, 0, 0.6841, 1.5342, 0, 0.7422, 1.5566, -0.0383, 0.7422, 1.5566, -0.0383, 0.6841, 1.5342, 0, 0.6816, 1.5342, -0.0405, 0.6875, 1.5293, -0.0472, 0.7778, 1.4404, -0.0451, 0.7466, 1.5508, -0.045, 0.7466, 1.5508, -0.045, 0.7778, 1.4404, -0.0451, 0.8057, 1.4834, -0.0439, 0.8628, 1.293, -0.0481, 0.8164, 1.375, -0.0482, 0.8608, 1.293, -0.0848, 0.8608, 1.293, -0.0848, 0.8164, 1.375, -0.0482, 0.8218, 1.3652, -0.0809, 0.9063, 1.1416, -0.0892, 0.9106, 1.1416, 0, 0.8965, 1.1963, -0.0427, 0.8965, 1.1963, -0.0427, 0.9106, 1.1416, 0, 0.8984, 1.1953, 0, 0.8931, 1.209, 0.0541, 0.8892, 1.2188, 0.0876, 0.8623, 1.293, 0.0547, 0.8623, 1.293, 0.0547, 0.8892, 1.2188, 0.0876, 0.8608, 1.293, 0.0848, 0.8931, 1.209, 0.0541, 0.8965, 1.1963, 0.0429, 0.9063, 1.1416, 0.0892, 0.9414, 1.2539, 0.0437, 0.8989, 1.2119, 0.0466, 0.9063, 1.3291, 0.0444, 0.9063, 1.3291, 0.0444, 0.8989, 1.2119, 0.0466, 0.8682, 1.2979, 0.0473, 0.9063, 1.3291, 0.0444, 0.8682, 1.2979, 0.0473, 0.8599, 1.4072, 0.044, 0.8599, 1.4072, 0.044, 0.8682, 1.2979, 0.0473, 0.8208, 1.3818, 0.0468, 0.8604, 1.4072, -0.0398, 0.8208, 1.3809, -0.0412, 0.9067, 1.3281, -0.0397, 0.9067, 1.3281, -0.0397, 0.8208, 1.3809, -0.0412, 0.8687, 1.2969, -0.0411, 0.8164, 1.375, -0.0482, 0.8208, 1.3809, -0.0412, 0.7734, 1.4336, -0.0522, 0.7734, 1.4336, -0.0522, 0.8208, 1.3809, -0.0412, 0.7778, 1.4404, -0.0451, 0.7573, 1.4512, 0.0539, 0.7593, 1.46, 0.0466, 0.8159, 1.375, 0.0541, 0.8159, 1.375, 0.0541, 0.7593, 1.46, 0.0466, 0.8208, 1.3818, 0.0468, 0.8623, 1.293, 0.0547, 0.8682, 1.2979, 0.0473, 0.8931, 1.209, 0.0541, 0.8931, 1.209, 0.0541, 0.8682, 1.2979, 0.0473, 0.8989, 1.2119, 0.0466, 0.8931, 1.209, -0.0529, 0.8989, 1.2119, -0.0459, 0.8628, 1.293, -0.0481, 0.8628, 1.293, -0.0481, 0.8989, 1.2119, -0.0459, 0.8687, 1.2969, -0.0411, 0.8965, 1.1963, -0.0427, 0.9009, 1.2041, -0.0396, 0.8931, 1.209, -0.0529, 0.8931, 1.209, -0.0529, 0.9009, 1.2041, -0.0396, 0.8989, 1.2119, -0.0459, 0.9009, 1.2041, 0.0398, 0.8965, 1.1963, 0.0429, 0.8989, 1.2119, 0.0466, 0.8989, 1.2119, 0.0466, 0.8965, 1.1963, 0.0429, 0.8931, 1.209, 0.0541, 0.8984, 1.1953, 0, 0.9028, 1.2031, 0, 0.8965, 1.1963, -0.0427, 0.8965, 1.1963, -0.0427, 0.9028, 1.2031, 0, 0.9009, 1.2041, -0.0396, 0.6875, 1.5293, 0.0468, 0.6782, 1.5283, 0.0542, 0.6816, 1.5342, 0.0401, 0.6816, 1.5342, 0.0401, 0.6782, 1.5283, 0.0542, 0.6694, 1.5352, 0.0443, 0.6782, 1.5283, 0.0542, 0.6875, 1.5293, 0.0468, 0.7573, 1.4512, 0.0539, 0.7573, 1.4512, 0.0539, 0.6875, 1.5293, 0.0468, 0.7593, 1.46, 0.0466, 0.7734, 1.4336, -0.0522, 0.7778, 1.4404, -0.0451, 0.6782, 1.5283, -0.0544, 0.6782, 1.5283, -0.0544, 0.7778, 1.4404, -0.0451, 0.6875, 1.5293, -0.0472, 0.6782, 1.5283, -0.0544, 0.6875, 1.5293, -0.0472, 0.6694, 1.5352, -0.0445, 0.6694, 1.5352, -0.0445, 0.6875, 1.5293, -0.0472, 0.6816, 1.5342, -0.0405, 0.6694, 1.5352, -0.0445, 0.6816, 1.5342, -0.0405, 0.6719, 1.5352, 0, 0.6719, 1.5352, 0, 0.6816, 1.5342, -0.0405, 0.6841, 1.5342, 0, 0.8208, 1.3809, -0.0412, 0.8164, 1.375, -0.0482, 0.8687, 1.2969, -0.0411, 0.8687, 1.2969, -0.0411, 0.8164, 1.375, -0.0482, 0.8628, 1.293, -0.0481, 0.8682, 1.2979, 0.0473, 0.8623, 1.293, 0.0547, 0.8208, 1.3818, 0.0468, 0.8208, 1.3818, 0.0468, 0.8623, 1.293, 0.0547, 0.8159, 1.375, 0.0541, 0.8965, 1.1963, 0.0429, 0.9009, 1.2041, 0.0398, 0.8984, 1.1953, 0, 0.8984, 1.1953, 0, 0.9009, 1.2041, 0.0398, 0.9028, 1.2031, 0, 0.6816, 1.5342, 0.0401, 0.6694, 1.5352, 0.0443, 0.6841, 1.5342, 0, 0.6841, 1.5342, 0, 0.6694, 1.5352, 0.0443, 0.6719, 1.5352, 0, 0.8218, 1.3652, -0.0809, 0.8164, 1.375, -0.0482, 0.772, 1.4336, -0.076, 0.772, 1.4336, -0.076, 0.8164, 1.375, -0.0482, 0.7734, 1.4336, -0.0522 ) diff --git a/3d/physics_tests/icon.png.import b/3d/physics_tests/icon.png.import index 96cbf4629a5..091a69af2e0 100644 --- a/3d/physics_tests/icon.png.import +++ b/3d/physics_tests/icon.png.import @@ -1,8 +1,9 @@ [remap] importer="texture" -type="StreamTexture" -path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" +type="StreamTexture2D" +uid="uid://dyn1ihdui7i3h" +path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" metadata={ "vram_texture": false } @@ -10,25 +11,25 @@ metadata={ [deps] source_file="res://icon.png" -dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ] +dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"] [params] compress/mode=0 compress/lossy_quality=0.7 -compress/hdr_mode=0 +compress/hdr_compression=1 compress/bptc_ldr=0 compress/normal_map=0 -flags/repeat=0 -flags/filter=true -flags/mipmaps=false -flags/anisotropic=false -flags/srgb=2 +compress/channel_pack=0 +compress/streamed=false +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" process/fix_alpha_border=true process/premult_alpha=false +process/normal_map_invert_y=false process/HDR_as_SRGB=false -process/invert_color=false -stream=false -size_limit=0 -detect_3d=true +process/size_limit=0 +detect_3d/compress_to=1 svg/scale=1.0 diff --git a/3d/physics_tests/main.tscn b/3d/physics_tests/main.tscn index 80ab5b11941..c6ba59bd89d 100644 --- a/3d/physics_tests/main.tscn +++ b/3d/physics_tests/main.tscn @@ -1,132 +1,133 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=11 format=3 uid="uid://pfb5u7r1hl8t"] -[ext_resource path="res://utils/label_fps.gd" type="Script" id=1] -[ext_resource path="res://utils/label_version.gd" type="Script" id=2] -[ext_resource path="res://utils/label_engine.gd" type="Script" id=3] -[ext_resource path="res://tests_menu.gd" type="Script" id=4] -[ext_resource path="res://utils/label_test.gd" type="Script" id=5] -[ext_resource path="res://utils/label_pause.gd" type="Script" id=6] -[ext_resource path="res://utils/container_log.gd" type="Script" id=10] -[ext_resource path="res://utils/scroll_log.gd" type="Script" id=11] -[ext_resource path="res://tests.gd" type="Script" id=12] +[ext_resource type="Script" path="res://utils/label_fps.gd" id="1"] +[ext_resource type="Script" path="res://utils/label_version.gd" id="2"] +[ext_resource type="Script" path="res://utils/label_engine.gd" id="3"] +[ext_resource type="Script" path="res://tests_menu.gd" id="4"] +[ext_resource type="Script" path="res://utils/label_test.gd" id="5"] +[ext_resource type="Script" path="res://utils/label_pause.gd" id="6"] +[ext_resource type="Script" path="res://utils/container_log.gd" id="10"] +[ext_resource type="Script" path="res://utils/scroll_log.gd" id="11"] +[ext_resource type="Script" path="res://tests.gd" id="12"] -[sub_resource type="StyleBoxFlat" id=1] -bg_color = Color( 0, 0, 0, 0.176471 ) +[sub_resource type="StyleBoxFlat" id="1"] +bg_color = Color(0, 0, 0, 0.176471) [node name="Main" type="Control"] anchor_right = 1.0 anchor_bottom = 1.0 mouse_filter = 2 -script = ExtResource( 12 ) +script = ExtResource( "12" ) __meta__ = { "_edit_use_anchors_": false } [node name="TestsMenu" type="MenuButton" parent="."] -pause_mode = 2 -margin_left = 10.0 -margin_top = 10.0 -margin_right = 125.0 -margin_bottom = 30.0 +offset_left = 10.0 +offset_top = 10.0 +offset_right = 125.0 +offset_bottom = 30.0 text = "TESTS" flat = false -script = ExtResource( 4 ) +items = [] +script = ExtResource( "4" ) __meta__ = { "_edit_use_anchors_": false } [node name="LabelControls" type="Label" parent="."] -pause_mode = 2 -margin_left = 157.0 -margin_top = 13.0 -margin_right = 375.0 -margin_bottom = 27.0 +offset_left = 157.0 +offset_top = 13.0 +offset_right = 375.0 +offset_bottom = 27.0 text = "P - TOGGLE PAUSE / R - RESTART / C - TOGGLE COLLISION / F - TOGGLE FULL SCREEN / ESC - QUIT" +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } [node name="LabelFPS" type="Label" parent="."] -pause_mode = 2 anchor_top = 1.0 anchor_bottom = 1.0 -margin_left = 10.0 -margin_top = -19.0 -margin_right = 50.0 -margin_bottom = -5.0 +offset_left = 10.0 +offset_top = -19.0 +offset_right = 50.0 +offset_bottom = -5.0 text = "FPS: 0" -script = ExtResource( 1 ) +structured_text_bidi_override_options = [] +script = ExtResource( "1" ) __meta__ = { "_edit_use_anchors_": false } [node name="LabelEngine" type="Label" parent="."] -pause_mode = 2 anchor_top = 1.0 anchor_bottom = 1.0 -margin_left = 10.0 -margin_top = -39.0 -margin_right = 50.0 -margin_bottom = -25.0 +offset_left = 10.0 +offset_top = -39.0 +offset_right = 50.0 +offset_bottom = -25.0 text = "Physics engine:" -script = ExtResource( 3 ) +structured_text_bidi_override_options = [] +script = ExtResource( "3" ) __meta__ = { "_edit_use_anchors_": false } [node name="LabelVersion" type="Label" parent="."] -pause_mode = 2 anchor_top = 1.0 anchor_bottom = 1.0 -margin_left = 10.0 -margin_top = -59.0 -margin_right = 50.0 -margin_bottom = -45.0 +offset_left = 10.0 +offset_top = -59.0 +offset_right = 50.0 +offset_bottom = -45.0 text = "Godot Version:" -script = ExtResource( 2 ) +structured_text_bidi_override_options = [] +script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false } [node name="LabelTest" type="Label" parent="."] -pause_mode = 2 anchor_top = 1.0 anchor_bottom = 1.0 -margin_left = 10.0 -margin_top = -79.0 -margin_right = 50.0 -margin_bottom = -65.0 +offset_left = 10.0 +offset_top = -79.0 +offset_right = 50.0 +offset_bottom = -65.0 text = "Test:" -script = ExtResource( 5 ) +structured_text_bidi_override_options = [] +script = ExtResource( "5" ) __meta__ = { "_edit_use_anchors_": false } [node name="LabelPause" type="Label" parent="."] -pause_mode = 2 anchor_left = 0.5 anchor_top = 1.0 anchor_right = 0.5 anchor_bottom = 1.0 -margin_left = -25.5 -margin_top = -25.0 -margin_right = 25.5 -margin_bottom = -11.0 +offset_left = -25.5 +offset_top = -25.0 +offset_right = 25.5 +offset_bottom = -11.0 text = "PAUSED" -script = ExtResource( 6 ) +structured_text_bidi_override_options = [] +script = ExtResource( "6" ) __meta__ = { "_edit_use_anchors_": false } [node name="PanelLog" type="Panel" parent="."] -pause_mode = 2 anchor_left = 1.0 anchor_top = 1.0 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = -428.0 -margin_top = -125.0 -custom_styles/panel = SubResource( 1 ) +offset_left = -428.0 +offset_top = -125.0 +theme_override_styles/panel = SubResource( "1" ) +script = null __meta__ = { "_edit_use_anchors_": false } @@ -136,12 +137,13 @@ anchor_left = 1.0 anchor_top = 1.0 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = -48.0 -margin_top = -25.0 -margin_right = -5.0 -margin_bottom = -5.0 +offset_left = -48.0 +offset_top = -25.0 +offset_right = -5.0 +offset_bottom = -5.0 focus_mode = 0 text = "clear" +script = null __meta__ = { "_edit_use_anchors_": false } @@ -151,44 +153,47 @@ anchor_left = 1.0 anchor_top = 1.0 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = -150.0 -margin_top = -27.0 -margin_right = -54.0 -margin_bottom = -3.0 +offset_left = -150.0 +offset_top = -27.0 +offset_right = -54.0 +offset_bottom = -3.0 focus_mode = 0 pressed = true text = "auto-scroll" +script = null __meta__ = { "_edit_use_anchors_": false } [node name="ScrollLog" type="ScrollContainer" parent="PanelLog"] -margin_left = 10.0 -margin_top = 5.0 -margin_right = 418.0 -margin_bottom = 94.0 +offset_left = 10.0 +offset_top = 5.0 +offset_right = 418.0 +offset_bottom = 94.0 scroll_horizontal_enabled = false -script = ExtResource( 11 ) +script = ExtResource( "11" ) __meta__ = { "_edit_use_anchors_": false } auto_scroll = true [node name="VBoxLog" type="VBoxContainer" parent="PanelLog/ScrollLog"] -margin_right = 408.0 -margin_bottom = 89.0 +offset_right = 408.0 +offset_bottom = 89.0 size_flags_horizontal = 3 size_flags_vertical = 3 alignment = 2 -script = ExtResource( 10 ) +script = ExtResource( "10" ) [node name="LabelLog" type="Label" parent="PanelLog/ScrollLog/VBoxLog"] -margin_top = 75.0 -margin_right = 408.0 -margin_bottom = 89.0 +offset_top = 63.0 +offset_right = 408.0 +offset_bottom = 89.0 text = "Log start" valign = 2 max_lines_visible = 5 +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } diff --git a/3d/physics_tests/project.godot b/3d/physics_tests/project.godot index de6ca0751e2..ef9805e24bf 100644 --- a/3d/physics_tests/project.godot +++ b/3d/physics_tests/project.godot @@ -8,17 +8,17 @@ config_version=4 -_global_script_classes=[ { +_global_script_classes=[{ "base": "MenuButton", -"class": "OptionMenu", -"language": "GDScript", +"class": &"OptionMenu", +"language": &"GDScript", "path": "res://utils/option_menu.gd" }, { "base": "Node", -"class": "Test", -"language": "GDScript", +"class": &"Test", +"language": &"GDScript", "path": "res://test.gd" -} ] +}] _global_script_class_icons={ "OptionMenu": "", "Test": "" @@ -49,62 +49,62 @@ window/stretch/aspect="expand" ui_left={ "deadzone": 0.5, -"events": [ ] +"events": [] } ui_right={ "deadzone": 0.5, -"events": [ ] +"events": [] } ui_up={ "deadzone": 0.5, -"events": [ ] +"events": [] } ui_down={ "deadzone": 0.5, -"events": [ ] +"events": [] } toggle_full_screen={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":70,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":70,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } exit={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":16777217,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } toggle_debug_collision={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":67,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":67,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } restart_test={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":82,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":82,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } toggle_pause={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":80,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":80,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } character_right={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":68,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777233,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":16777233,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":68,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } character_left={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":65,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777231,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":16777231,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":65,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } character_jump={ "deadzone": 0.5, -"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":87,"unicode":0,"echo":false,"script":null) -, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":32,"unicode":0,"echo":false,"script":null) - ] +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":16777232,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"store_command":true,"alt_pressed":false,"shift_pressed":false,"meta_pressed":false,"command_pressed":false,"pressed":false,"keycode":87,"physical_keycode":0,"unicode":0,"echo":false,"script":null) +] } [rendering] @@ -112,5 +112,5 @@ character_jump={ quality/driver/driver_name="GLES2" vram_compression/import_etc=true vram_compression/import_etc2=false -environment/default_clear_color=Color( 0.184314, 0.184314, 0.184314, 1 ) +environment/default_clear_color=Color(0.184314, 0.184314, 0.184314, 1) quality/filters/msaa=2 diff --git a/3d/physics_tests/test.gd b/3d/physics_tests/test.gd index 41889530547..9f3832e9caf 100644 --- a/3d/physics_tests/test.gd +++ b/3d/physics_tests/test.gd @@ -4,7 +4,7 @@ extends Node signal wait_done() -export var _enable_debug_collision = true +@export var _enable_debug_collision = true var _timer var _timer_started = false @@ -27,17 +27,17 @@ func _physics_process(_delta): func add_sphere(pos, radius, color): - var sphere = MeshInstance.new() + var sphere = MeshInstance3D.new() var sphere_mesh = SphereMesh.new() sphere_mesh.radius = radius sphere_mesh.height = radius * 2.0 sphere.mesh = sphere_mesh - var material = SpatialMaterial.new() + var material = StandardMaterial3D.new() material.flags_unshaded = true material.albedo_color = color - sphere.material_override = material + sphere.set_surface_override_material(0, material) _drawn_nodes.push_back(sphere) add_child(sphere) @@ -48,14 +48,14 @@ func add_sphere(pos, radius, color): func add_shape(shape, transform, color): var debug_mesh = shape.get_debug_mesh() - var mesh_instance = MeshInstance.new() + var mesh_instance = MeshInstance3D.new() mesh_instance.transform = transform mesh_instance.mesh = debug_mesh - var material = SpatialMaterial.new() + var material = StandardMaterial3D.new() material.flags_unshaded = true material.albedo_color = color - mesh_instance.material_override = material + mesh_instance.set_surface_override_material(0, material) add_child(mesh_instance) _drawn_nodes.push_back(mesh_instance) @@ -68,12 +68,12 @@ func clear_drawn_nodes(): _drawn_nodes.clear() -func create_rigidbody(shape, pickable = false, transform = Transform.IDENTITY): - var collision = CollisionShape.new() +func create_rigidbody(shape, pickable = false, transform = Transform3D.IDENTITY): + var collision = CollisionShape3D.new() collision.shape = shape collision.transform = transform - var body = RigidBody.new() + var body = RigidBody3D.new() body.add_child(collision) if pickable: @@ -83,9 +83,9 @@ func create_rigidbody(shape, pickable = false, transform = Transform.IDENTITY): return body -func create_rigidbody_box(size, pickable = false, transform = Transform.IDENTITY): - var shape = BoxShape.new() - shape.extents = 0.5 * size +func create_rigidbody_box(size, pickable = false, transform = Transform3D.IDENTITY): + var shape = BoxShape3D.new() + shape.size = size return create_rigidbody(shape, pickable, transform) @@ -95,7 +95,7 @@ func start_timer(timeout): _timer = Timer.new() _timer.one_shot = true add_child(_timer) - _timer.connect("timeout", self, "_on_timer_done") + _timer.connect("timeout", Callable(self, "_on_timer_done")) else: cancel_timer() diff --git a/3d/physics_tests/tests/functional/test_collision_pairs.gd b/3d/physics_tests/tests/functional/test_collision_pairs.gd index 4c685721453..2e580a7f2c6 100644 --- a/3d/physics_tests/tests/functional/test_collision_pairs.gd +++ b/3d/physics_tests/tests/functional/test_collision_pairs.gd @@ -16,7 +16,7 @@ const OPTION_SHAPE_CONCAVE_POLYGON = "Shape type/Concave Polygon" const OFFSET_RANGE = 3.0 -export(Vector3) var offset = Vector3.ZERO +@export var offset = Vector3.ZERO var _update_collision = false var _collision_test_index = 0 @@ -40,10 +40,10 @@ func _ready(): $Options.add_menu_item(OPTION_SHAPE_CONVEX_POLYGON, true, true) $Options.add_menu_item(OPTION_SHAPE_CONCAVE_POLYGON, true, true) - $Options.connect("option_selected", self, "_on_option_selected") - $Options.connect("option_changed", self, "_on_option_changed") + $Options.connect("option_selected", Callable(self, "_on_option_selected")) + $Options.connect("option_changed", Callable(self, "_on_option_changed")) - yield(start_timer(0.5), "timeout") + await start_timer(0.5).timeout if is_timer_canceled(): return @@ -53,19 +53,21 @@ func _ready(): func _input(event): var key_event = event as InputEventKey if key_event and not key_event.pressed: - if key_event.scancode == KEY_1: + if key_event.keycode == KEY_1: _on_option_selected(OPTION_TYPE_BOX) - elif key_event.scancode == KEY_2: + elif key_event.keycode == KEY_2: _on_option_selected(OPTION_TYPE_SPHERE) - elif key_event.scancode == KEY_3: + elif key_event.keycode == KEY_3: _on_option_selected(OPTION_TYPE_CAPSULE) - elif key_event.scancode == KEY_4: + elif key_event.keycode == KEY_4: _on_option_selected(OPTION_TYPE_CYLINDER) - elif key_event.scancode == KEY_5: + elif key_event.keycode == KEY_5: _on_option_selected(OPTION_TYPE_CONVEX_POLYGON) -func _physics_process(_delta): +func _physics_process(delta): + super._physics_process(delta) + if not _update_collision: return @@ -93,7 +95,7 @@ func _initialize_collision_shapes(): _collision_shapes.clear() for node in $Shapes.get_children(): - var body = node as PhysicsBody + var body = node as PhysicsBody3D var shape = body.shape_owner_get_shape(0, 0) shape.resource_name = String(node.name).substr("RigidBody".length()) @@ -107,17 +109,17 @@ func _do_collision_test(): Log.print_log("* Start %s collision tests..." % shape.resource_name) - var shape_query = PhysicsShapeQueryParameters.new() + var shape_query = PhysicsShapeQueryParameters3D.new() shape_query.set_shape(shape) var shape_scale = Vector3(0.5, 0.5, 0.5) - shape_query.transform = Transform.IDENTITY.scaled(shape_scale) + shape_query.transform = Transform3D.IDENTITY.scaled(shape_scale) for node in $Shapes.get_children(): if not node.visible: continue - var body = node as PhysicsBody - var space_state = body.get_world().direct_space_state + var body = node as PhysicsBody3D + var space_state = body.get_world_3d().direct_space_state Log.print_log("* Testing: %s" % body.name) @@ -125,7 +127,7 @@ func _do_collision_test(): # Collision at the center inside. var res = _add_collision(space_state, center, shape, shape_query) - Log.print_log("Collision center inside: %s" % ("NO HIT" if res.empty() else "HIT")) + Log.print_log("Collision center inside: %s" % ("NO HIT" if res.is_empty() else "HIT")) Log.print_log("* Done.") @@ -135,17 +137,17 @@ func _add_collision(space_state, pos, shape, shape_query): var results = space_state.collide_shape(shape_query) var color - if results.empty(): - color = Color.white.darkened(0.5) + if results.is_empty(): + color = Color.WHITE.darkened(0.5) else: - color = Color.green + color = Color.GREEN # Draw collision query shape. add_shape(shape, shape_query.transform, color) # Draw contact positions. for contact_pos in results: - add_sphere(contact_pos, 0.05, Color.red) + add_sphere(contact_pos, 0.05, Color.RED) return results diff --git a/3d/physics_tests/tests/functional/test_collision_pairs.tscn b/3d/physics_tests/tests/functional/test_collision_pairs.tscn index be3f117c567..231f6ee161c 100644 --- a/3d/physics_tests/tests/functional/test_collision_pairs.tscn +++ b/3d/physics_tests/tests/functional/test_collision_pairs.tscn @@ -1,168 +1,190 @@ -[gd_scene load_steps=10 format=2] +[gd_scene load_steps=10 format=3 uid="uid://wy4qr8euxk27"] -[ext_resource path="res://assets/robot_head/godot3_robot_head_collision.tres" type="Shape" id=1] -[ext_resource path="res://tests/functional/test_collision_pairs.gd" type="Script" id=2] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=4] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=5] +[ext_resource type="Shape3D" path="res://assets/robot_head/godot3_robot_head_collision.tres" id="1"] +[ext_resource type="Script" path="res://tests/functional/test_collision_pairs.gd" id="2"] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="4"] +[ext_resource type="PackedScene" uid="uid://b1ihqm3x8jru" path="res://tests/test_options.tscn" id="5"] -[sub_resource type="BoxShape" id=1] +[sub_resource type="BoxShape3D" id="1"] -[sub_resource type="SphereShape" id=2] +[sub_resource type="SphereShape3D" id="2"] -[sub_resource type="CapsuleShape" id=3] +[sub_resource type="CapsuleShape3D" id="3"] -[sub_resource type="CylinderShape" id=4] +[sub_resource type="CylinderShape3D" id="4"] -[sub_resource type="ConvexPolygonShape" id=5] -points = PoolVector3Array( -0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0 ) +[sub_resource type="ConvexPolygonShape3D" id="5"] +points = PackedVector3Array(-0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0) -[node name="Test" type="Spatial"] -script = ExtResource( 2 ) +[node name="Test" type="Node3D"] +script = ExtResource( "2" ) -[node name="Options" parent="." instance=ExtResource( 5 )] +[node name="Options" parent="." instance=ExtResource( "5" )] +items = [] [node name="Controls" type="VBoxContainer" parent="."] -pause_mode = 2 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = 25.0 -margin_top = 417.0 -margin_right = -806.0 -margin_bottom = -141.0 -custom_constants/separation = 10 +offset_left = 25.0 +offset_top = 417.0 +offset_right = -806.0 +offset_bottom = -141.0 +theme_override_constants/separation = 10 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="OffsetX" type="HBoxContainer" parent="Controls"] -margin_right = 193.0 -margin_bottom = 16.0 -custom_constants/separation = 20 +offset_right = 202.0 +offset_bottom = 26.0 +theme_override_constants/separation = 20 alignment = 2 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="Label" type="Label" parent="Controls/OffsetX"] -margin_left = 2.0 -margin_top = 1.0 -margin_right = 53.0 -margin_bottom = 15.0 +offset_right = 62.0 +offset_bottom = 26.0 text = "Offset X" +structured_text_bidi_override_options = [] +script = null [node name="HSlider" type="HSlider" parent="Controls/OffsetX"] -margin_left = 73.0 -margin_right = 193.0 -margin_bottom = 16.0 -rect_min_size = Vector2( 120, 0 ) +offset_left = 82.0 +offset_right = 202.0 +offset_bottom = 16.0 +rect_min_size = Vector2(120, 0) min_value = -1.0 max_value = 1.0 step = 0.01 +script = null [node name="OffsetY" type="HBoxContainer" parent="Controls"] -margin_top = 26.0 -margin_right = 193.0 -margin_bottom = 42.0 -custom_constants/separation = 20 +offset_top = 36.0 +offset_right = 202.0 +offset_bottom = 62.0 +theme_override_constants/separation = 20 alignment = 2 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="Label" type="Label" parent="Controls/OffsetY"] -margin_left = 3.0 -margin_top = 1.0 -margin_right = 53.0 -margin_bottom = 15.0 +offset_left = 1.0 +offset_right = 62.0 +offset_bottom = 26.0 text = "Offset Y" +structured_text_bidi_override_options = [] +script = null [node name="HSlider" type="HSlider" parent="Controls/OffsetY"] -margin_left = 73.0 -margin_right = 193.0 -margin_bottom = 16.0 -rect_min_size = Vector2( 120, 0 ) +offset_left = 82.0 +offset_right = 202.0 +offset_bottom = 16.0 +rect_min_size = Vector2(120, 0) min_value = -1.0 max_value = 1.0 step = 0.01 +script = null [node name="OffsetZ" type="HBoxContainer" parent="Controls"] -margin_top = 52.0 -margin_right = 193.0 -margin_bottom = 68.0 -custom_constants/separation = 20 +offset_top = 72.0 +offset_right = 202.0 +offset_bottom = 98.0 +theme_override_constants/separation = 20 alignment = 2 +script = null __meta__ = { "_edit_use_anchors_": false } [node name="Label" type="Label" parent="Controls/OffsetZ"] -margin_left = 2.0 -margin_top = 1.0 -margin_right = 53.0 -margin_bottom = 15.0 +offset_left = 1.0 +offset_right = 62.0 +offset_bottom = 26.0 text = "Offset Z" +structured_text_bidi_override_options = [] +script = null [node name="HSlider" type="HSlider" parent="Controls/OffsetZ"] -margin_left = 73.0 -margin_right = 193.0 -margin_bottom = 16.0 -rect_min_size = Vector2( 120, 0 ) +offset_left = 82.0 +offset_right = 202.0 +offset_bottom = 16.0 +rect_min_size = Vector2(120, 0) min_value = -1.0 max_value = 1.0 step = 0.01 +script = null -[node name="Shapes" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.35591, 0 ) +[node name="Shapes" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.35591, 0) +script = null -[node name="RigidBodyBox" type="RigidBody" parent="Shapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 0 ) +[node name="RigidBodyBox" type="RigidBody3D" parent="Shapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 0) mode = 3 +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodyBox"] -transform = Transform( 0.579556, 0.0885213, 0.145926, 0, 0.939693, -0.205212, -0.155291, 0.330366, 0.544604, 0, 0, 0 ) -shape = SubResource( 1 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodyBox"] +transform = Transform3D(0.579556, 0.0885213, 0.145926, 0, 0.939693, -0.205212, -0.155291, 0.330366, 0.544604, 0, 0, 0) +shape = SubResource( "1" ) +script = null -[node name="RigidBodySphere" type="RigidBody" parent="Shapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 0, 0 ) +[node name="RigidBodySphere" type="RigidBody3D" parent="Shapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 0, 0) mode = 3 +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodySphere"] -transform = Transform( 1.2, 0, 0, 0, 1.2, 0, 0, 0, 1.2, 0, 0, 0 ) -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodySphere"] +transform = Transform3D(1.2, 0, 0, 0, 1.2, 0, 0, 0, 1.2, 0, 0, 0) +shape = SubResource( "2" ) +script = null -[node name="RigidBodyCapsule" type="RigidBody" parent="Shapes"] +[node name="RigidBodyCapsule" type="RigidBody3D" parent="Shapes"] mode = 3 +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodyCapsule"] -transform = Transform( 0.8, 0, 0, 0, -1.30337e-07, -0.8, 0, 0.8, -1.30337e-07, 0, 0, 0 ) -shape = SubResource( 3 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodyCapsule"] +transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0) +shape = SubResource( "3" ) +script = null -[node name="RigidBodyCylinder" type="RigidBody" parent="Shapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 0 ) +[node name="RigidBodyCylinder" type="RigidBody3D" parent="Shapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 0) mode = 3 +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodyCylinder"] -transform = Transform( 0.772741, -0.258819, 2.59821e-08, 0.2, 0.933013, -0.207055, 0.0535898, 0.25, 0.772741, 0, 0, 0 ) -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodyCylinder"] +transform = Transform3D(0.772741, -0.258819, 2.59821e-08, 0.2, 0.933013, -0.207055, 0.0535898, 0.25, 0.772741, 0, 0, 0) +shape = SubResource( "4" ) +script = null -[node name="RigidBodyConvexPolygon" type="RigidBody" parent="Shapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 6, -0.211, 0 ) +[node name="RigidBodyConvexPolygon" type="RigidBody3D" parent="Shapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, -0.211, 0) mode = 3 +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodyConvexPolygon"] -transform = Transform( 2, 0, 0, 0, 2.89766, -0.517939, 0, 0.776908, 1.93177, 0, 0.3533, 0 ) -shape = SubResource( 5 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodyConvexPolygon"] +transform = Transform3D(2, 0, 0, 0, 2.89766, -0.517939, 0, 0.776908, 1.93177, 0, 0.3533, 0) +shape = SubResource( "5" ) +script = null -[node name="RigidBodyConcavePolygon" type="StaticBody" parent="Shapes"] -transform = Transform( 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, -6, 3.93357 ) +[node name="RigidBodyConcavePolygon" type="StaticBody3D" parent="Shapes"] +transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, -6, 3.93357) +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodyConcavePolygon"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0 ) -shape = ExtResource( 1 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodyConcavePolygon"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0) +shape = ExtResource( "1" ) +script = null -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 5.8667, 11.8164 ) -script = ExtResource( 4 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 5.8667, 11.8164) +script = ExtResource( "4" ) [connection signal="value_changed" from="Controls/OffsetX/HSlider" to="." method="set_x_offset"] [connection signal="value_changed" from="Controls/OffsetY/HSlider" to="." method="set_y_offset"] diff --git a/3d/physics_tests/tests/functional/test_compound_shapes.tscn b/3d/physics_tests/tests/functional/test_compound_shapes.tscn index 98745ce9302..ec4218cd65a 100644 --- a/3d/physics_tests/tests/functional/test_compound_shapes.tscn +++ b/3d/physics_tests/tests/functional/test_compound_shapes.tscn @@ -1,134 +1,165 @@ -[gd_scene load_steps=6 format=2] +[gd_scene load_steps=6 format=3 uid="uid://b15gg5je5qdu4"] -[ext_resource path="res://tests/static_scene.tscn" type="PackedScene" id=1] -[ext_resource path="res://test.gd" type="Script" id=2] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=3] +[ext_resource type="PackedScene" uid="uid://cl2vpuxqgnylc" path="res://tests/static_scene.tscn" id="1"] +[ext_resource type="Script" path="res://test.gd" id="2"] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="3"] -[sub_resource type="BoxShape" id=1] +[sub_resource type="BoxShape3D" id="1"] -[sub_resource type="CapsuleShape" id=2] +[sub_resource type="CapsuleShape3D" id="2"] radius = 0.2 -[node name="Test" type="Spatial"] -script = ExtResource( 2 ) - -[node name="DynamicShapes" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.35591, 0 ) - -[node name="RigidBodyG" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -5.51361, 0, 0 ) - -[node name="CollisionShape1" type="CollisionShape" parent="DynamicShapes/RigidBodyG"] -transform = Transform( -2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, -0.8, 0, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape2" type="CollisionShape" parent="DynamicShapes/RigidBodyG"] -transform = Transform( 0.8, 0, 4.26326e-15, 0, 0.3, 0, -1.13687e-14, 0, 0.3, 0.3, -1.2, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape3" type="CollisionShape" parent="DynamicShapes/RigidBodyG"] -transform = Transform( -8.14603e-08, -0.3, 0, 0.5, -4.88762e-08, 0, 0, 0, 0.3, 0.8, -0.5, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape4" type="CollisionShape" parent="DynamicShapes/RigidBodyG"] -transform = Transform( 0.8, 0, 4.26326e-15, 0, 0.3, 0, -1.13687e-14, 0, 0.3, 0.3, 1.2, 0 ) -shape = SubResource( 1 ) - -[node name="RigidBodyO" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -2.65654, 0, 0 ) - -[node name="CollisionShape1" type="CollisionShape" parent="DynamicShapes/RigidBodyO"] -transform = Transform( -2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, -0.8, 0, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape2" type="CollisionShape" parent="DynamicShapes/RigidBodyO"] -transform = Transform( 0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, 1.2, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape3" type="CollisionShape" parent="DynamicShapes/RigidBodyO"] -transform = Transform( 0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, -1.2, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape4" type="CollisionShape" parent="DynamicShapes/RigidBodyO"] -transform = Transform( -2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, 0.8, 0, 0 ) -shape = SubResource( 1 ) - -[node name="RigidBodyD" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.248918, 0, 0 ) - -[node name="CollisionShape1" type="CollisionShape" parent="DynamicShapes/RigidBodyD"] -transform = Transform( -2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, -0.8, 0, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape2" type="CollisionShape" parent="DynamicShapes/RigidBodyD"] -transform = Transform( 0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, 1.2, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape3" type="CollisionShape" parent="DynamicShapes/RigidBodyD"] -transform = Transform( 0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, -1.2, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape4" type="CollisionShape" parent="DynamicShapes/RigidBodyD"] -transform = Transform( -1.46629e-07, -0.3, 0, 0.9, -4.88762e-08, 0, 0, 0, 0.3, 0.8, 0, 0 ) -shape = SubResource( 1 ) - -[node name="RigidBodyO2" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 2.97932, 0, 0 ) - -[node name="CollisionShape1" type="CollisionShape" parent="DynamicShapes/RigidBodyO2"] -transform = Transform( -2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, -0.8, 0, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape2" type="CollisionShape" parent="DynamicShapes/RigidBodyO2"] -transform = Transform( 0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, 1.2, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape3" type="CollisionShape" parent="DynamicShapes/RigidBodyO2"] -transform = Transform( 0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, -1.2, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape4" type="CollisionShape" parent="DynamicShapes/RigidBodyO2"] -transform = Transform( -2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, 0.8, 0, 0 ) -shape = SubResource( 1 ) - -[node name="RigidBodyT" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 5.46836, 0, 0 ) - -[node name="CollisionShape1" type="CollisionShape" parent="DynamicShapes/RigidBodyT"] -transform = Transform( -1.95505e-07, -0.3, 0, 1.2, -4.88762e-08, 0, 0, 0, 0.3, 0, -0.3, 0 ) -shape = SubResource( 1 ) - -[node name="CollisionShape2" type="CollisionShape" parent="DynamicShapes/RigidBodyT"] -transform = Transform( 1, 0, 4.26326e-15, 0, 0.3, 0, -1.42109e-14, 0, 0.3, 0, 1.2, 0 ) -shape = SubResource( 1 ) - -[node name="StaticBodyPins" type="StaticBody" parent="."] - -[node name="CollisionShape" type="CollisionShape" parent="StaticBodyPins"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.13207, 0 ) -shape = SubResource( 2 ) - -[node name="CollisionShape2" type="CollisionShape" parent="StaticBodyPins"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -2.71742, 9.13207, 0 ) -shape = SubResource( 2 ) - -[node name="CollisionShape3" type="CollisionShape" parent="StaticBodyPins"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -5.64188, 9.13207, 0 ) -shape = SubResource( 2 ) - -[node name="CollisionShape4" type="CollisionShape" parent="StaticBodyPins"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 2.87444, 9.13207, 0 ) -shape = SubResource( 2 ) - -[node name="CollisionShape5" type="CollisionShape" parent="StaticBodyPins"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 4.81639, 9.13207, 0 ) -shape = SubResource( 2 ) - -[node name="StaticScene" parent="." instance=ExtResource( 1 )] - -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.53602, 22.1236 ) -script = ExtResource( 3 ) - -[node name="OmniLight" type="OmniLight" parent="Camera"] +[node name="Test" type="Node3D"] +script = ExtResource( "2" ) + +[node name="DynamicShapes" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.35591, 0) +script = null + +[node name="RigidBodyG" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.51361, 0, 0) +script = null + +[node name="CollisionShape1" type="CollisionShape3D" parent="DynamicShapes/RigidBodyG"] +transform = Transform3D(-2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, -0.8, 0, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape2" type="CollisionShape3D" parent="DynamicShapes/RigidBodyG"] +transform = Transform3D(0.8, 0, 4.26326e-15, 0, 0.3, 0, -1.13687e-14, 0, 0.3, 0.3, -1.2, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape3" type="CollisionShape3D" parent="DynamicShapes/RigidBodyG"] +transform = Transform3D(-8.14603e-08, -0.3, 0, 0.5, -4.88762e-08, 0, 0, 0, 0.3, 0.8, -0.5, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape4" type="CollisionShape3D" parent="DynamicShapes/RigidBodyG"] +transform = Transform3D(0.8, 0, 4.26326e-15, 0, 0.3, 0, -1.13687e-14, 0, 0.3, 0.3, 1.2, 0) +shape = SubResource( "1" ) +script = null + +[node name="RigidBodyO" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.65654, 0, 0) +script = null + +[node name="CollisionShape1" type="CollisionShape3D" parent="DynamicShapes/RigidBodyO"] +transform = Transform3D(-2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, -0.8, 0, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape2" type="CollisionShape3D" parent="DynamicShapes/RigidBodyO"] +transform = Transform3D(0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, 1.2, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape3" type="CollisionShape3D" parent="DynamicShapes/RigidBodyO"] +transform = Transform3D(0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, -1.2, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape4" type="CollisionShape3D" parent="DynamicShapes/RigidBodyO"] +transform = Transform3D(-2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, 0.8, 0, 0) +shape = SubResource( "1" ) +script = null + +[node name="RigidBodyD" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0.248918, 0, 0) +script = null + +[node name="CollisionShape1" type="CollisionShape3D" parent="DynamicShapes/RigidBodyD"] +transform = Transform3D(-2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, -0.8, 0, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape2" type="CollisionShape3D" parent="DynamicShapes/RigidBodyD"] +transform = Transform3D(0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, 1.2, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape3" type="CollisionShape3D" parent="DynamicShapes/RigidBodyD"] +transform = Transform3D(0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, -1.2, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape4" type="CollisionShape3D" parent="DynamicShapes/RigidBodyD"] +transform = Transform3D(-1.46629e-07, -0.3, 0, 0.9, -4.88762e-08, 0, 0, 0, 0.3, 0.8, 0, 0) +shape = SubResource( "1" ) +script = null + +[node name="RigidBodyO2" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.97932, 0, 0) +script = null + +[node name="CollisionShape1" type="CollisionShape3D" parent="DynamicShapes/RigidBodyO2"] +transform = Transform3D(-2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, -0.8, 0, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape2" type="CollisionShape3D" parent="DynamicShapes/RigidBodyO2"] +transform = Transform3D(0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, 1.2, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape3" type="CollisionShape3D" parent="DynamicShapes/RigidBodyO2"] +transform = Transform3D(0.5, 0, 4.26326e-15, 0, 0.3, 0, -7.10543e-15, 0, 0.3, 0, -1.2, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape4" type="CollisionShape3D" parent="DynamicShapes/RigidBodyO2"] +transform = Transform3D(-2.44381e-07, -0.3, 0, 1.5, -4.88762e-08, 0, 0, 0, 0.3, 0.8, 0, 0) +shape = SubResource( "1" ) +script = null + +[node name="RigidBodyT" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 5.46836, 0, 0) +script = null + +[node name="CollisionShape1" type="CollisionShape3D" parent="DynamicShapes/RigidBodyT"] +transform = Transform3D(-1.95505e-07, -0.3, 0, 1.2, -4.88762e-08, 0, 0, 0, 0.3, 0, -0.3, 0) +shape = SubResource( "1" ) +script = null + +[node name="CollisionShape2" type="CollisionShape3D" parent="DynamicShapes/RigidBodyT"] +transform = Transform3D(1, 0, 4.26326e-15, 0, 0.3, 0, -1.42109e-14, 0, 0.3, 0, 1.2, 0) +shape = SubResource( "1" ) +script = null + +[node name="StaticBodyPins" type="StaticBody3D" parent="."] +script = null + +[node name="CollisionShape" type="CollisionShape3D" parent="StaticBodyPins"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.13207, 0) +shape = SubResource( "2" ) +script = null + +[node name="CollisionShape2" type="CollisionShape3D" parent="StaticBodyPins"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -2.71742, 9.13207, 0) +shape = SubResource( "2" ) +script = null + +[node name="CollisionShape3" type="CollisionShape3D" parent="StaticBodyPins"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -5.64188, 9.13207, 0) +shape = SubResource( "2" ) +script = null + +[node name="CollisionShape4" type="CollisionShape3D" parent="StaticBodyPins"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2.87444, 9.13207, 0) +shape = SubResource( "2" ) +script = null + +[node name="CollisionShape5" type="CollisionShape3D" parent="StaticBodyPins"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4.81639, 9.13207, 0) +shape = SubResource( "2" ) +script = null + +[node name="StaticScene" parent="." instance=ExtResource( "1" )] + +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.53602, 22.1236) +script = ExtResource( "3" ) + +[node name="OmniLight" type="OmniLight3D" parent="Camera3D"] omni_range = 50.0 +script = null diff --git a/3d/physics_tests/tests/functional/test_friction.tscn b/3d/physics_tests/tests/functional/test_friction.tscn index e2f6a5f908d..e8697975360 100644 --- a/3d/physics_tests/tests/functional/test_friction.tscn +++ b/3d/physics_tests/tests/functional/test_friction.tscn @@ -1,173 +1,201 @@ -[gd_scene load_steps=10 format=2] +[gd_scene load_steps=10 format=3 uid="uid://d1j6kxs3plvry"] -[ext_resource path="res://test.gd" type="Script" id=1] -[ext_resource path="res://utils/control3d.gd" type="Script" id=2] +[ext_resource type="Script" path="res://test.gd" id="1"] +[ext_resource type="Script" path="res://utils/control3d.gd" id="2"] -[sub_resource type="PhysicsMaterial" id=1] +[sub_resource type="PhysicsMaterial" id="1"] friction = 0.0 -[sub_resource type="ConcavePolygonShape" id=2] -data = PoolVector3Array( -1, 0, 1, 1, 0, -1, 1, 0, 1, -1, 0, 1, -1, 0, -1, 1, 0, -1 ) +[sub_resource type="ConcavePolygonShape3D" id="2"] +data = PackedVector3Array(-1, 0, 1, 1, 0, -1, 1, 0, 1, -1, 0, 1, -1, 0, -1, 1, 0, -1) -[sub_resource type="PhysicsMaterial" id=3] +[sub_resource type="PhysicsMaterial" id="3"] friction = 0.0 -[sub_resource type="BoxShape" id=4] +[sub_resource type="BoxShape3D" id="4"] -[sub_resource type="PhysicsMaterial" id=5] +[sub_resource type="PhysicsMaterial" id="5"] friction = 0.5 -[sub_resource type="PhysicsMaterial" id=6] +[sub_resource type="PhysicsMaterial" id="6"] -[sub_resource type="PhysicsMaterial" id=7] +[sub_resource type="PhysicsMaterial" id="7"] -[node name="Test" type="Spatial"] -script = ExtResource( 1 ) +[node name="Test" type="Node3D"] +script = ExtResource( "1" ) -[node name="StaticBodyFriction0" type="StaticBody" parent="."] -transform = Transform( 1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, -6, 8.581, 0 ) -physics_material_override = SubResource( 1 ) +[node name="StaticBodyFriction0" type="StaticBody3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, -6, 8.581, 0) +physics_material_override = SubResource( "1" ) +script = null -[node name="CollisionShape" type="CollisionShape" parent="StaticBodyFriction0"] -transform = Transform( 5, 0, 0, 0, 1, 0, 0, 0, 50, 0, 0, 0 ) -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="StaticBodyFriction0"] +transform = Transform3D(5, 0, 0, 0, 1, 0, 0, 0, 50, 0, 0, 0) +shape = SubResource( "2" ) +script = null -[node name="RigidBodies" type="Spatial" parent="StaticBodyFriction0"] -transform = Transform( 1, 0, 0, 0, 0.866026, 0.5, 0, -0.5, 0.866026, -3, -7.431, 4.291 ) +[node name="RigidBodies" type="Node3D" parent="StaticBodyFriction0"] +transform = Transform3D(1, 0, 0, 0, 0.866026, 0.5, 0, -0.5, 0.866026, -3, -7.431, 4.291) +script = null -[node name="RigidBodyFriction0" type="RigidBody" parent="StaticBodyFriction0/RigidBodies"] -transform = Transform( 1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 0, 10, 0 ) -physics_material_override = SubResource( 3 ) +[node name="RigidBodyFriction0" type="RigidBody3D" parent="StaticBodyFriction0/RigidBodies"] +transform = Transform3D(1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 0, 10, 0) +physics_material_override = SubResource( "3" ) +script = null -[node name="CollisionShape" type="CollisionShape" parent="StaticBodyFriction0/RigidBodies/RigidBodyFriction0"] -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="StaticBodyFriction0/RigidBodies/RigidBodyFriction0"] +shape = SubResource( "4" ) +script = null [node name="LabelFriction" type="Label" parent="StaticBodyFriction0/RigidBodies/RigidBodyFriction0"] -margin_right = 40.0 -margin_bottom = 14.0 +offset_right = 40.0 +offset_bottom = 14.0 text = "0" align = 1 -script = ExtResource( 2 ) +structured_text_bidi_override_options = [] +script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false } -world_offset = Vector3( 0, 1.5, 0 ) +world_offset = Vector3(0, 1.5, 0) -[node name="RigidBodyFriction05" type="RigidBody" parent="StaticBodyFriction0/RigidBodies"] -transform = Transform( 1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 3, 10, 0 ) -physics_material_override = SubResource( 5 ) +[node name="RigidBodyFriction05" type="RigidBody3D" parent="StaticBodyFriction0/RigidBodies"] +transform = Transform3D(1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 3, 10, 0) +physics_material_override = SubResource( "5" ) +script = null -[node name="CollisionShape" type="CollisionShape" parent="StaticBodyFriction0/RigidBodies/RigidBodyFriction05"] -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="StaticBodyFriction0/RigidBodies/RigidBodyFriction05"] +shape = SubResource( "4" ) +script = null [node name="LabelFriction" type="Label" parent="StaticBodyFriction0/RigidBodies/RigidBodyFriction05"] -margin_right = 40.0 -margin_bottom = 14.0 +offset_right = 40.0 +offset_bottom = 14.0 text = "0.5" align = 1 -script = ExtResource( 2 ) +structured_text_bidi_override_options = [] +script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false } -world_offset = Vector3( 0, 1.5, 0 ) +world_offset = Vector3(0, 1.5, 0) -[node name="RigidBodyFriction1" type="RigidBody" parent="StaticBodyFriction0/RigidBodies"] -transform = Transform( 1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 6, 10, 0 ) -physics_material_override = SubResource( 6 ) +[node name="RigidBodyFriction1" type="RigidBody3D" parent="StaticBodyFriction0/RigidBodies"] +transform = Transform3D(1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 6, 10, 0) +physics_material_override = SubResource( "6" ) +script = null -[node name="CollisionShape" type="CollisionShape" parent="StaticBodyFriction0/RigidBodies/RigidBodyFriction1"] -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="StaticBodyFriction0/RigidBodies/RigidBodyFriction1"] +shape = SubResource( "4" ) +script = null [node name="LabelFriction" type="Label" parent="StaticBodyFriction0/RigidBodies/RigidBodyFriction1"] -margin_right = 40.0 -margin_bottom = 14.0 +offset_right = 40.0 +offset_bottom = 14.0 text = "1" align = 1 -script = ExtResource( 2 ) +structured_text_bidi_override_options = [] +script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false } -world_offset = Vector3( 0, 1.5, 0 ) +world_offset = Vector3(0, 1.5, 0) -[node name="StaticBodyFriction1" type="StaticBody" parent="."] -transform = Transform( 1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 6, 8.581, 0 ) -physics_material_override = SubResource( 7 ) +[node name="StaticBodyFriction1" type="StaticBody3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 6, 8.581, 0) +physics_material_override = SubResource( "7" ) +script = null -[node name="CollisionShape" type="CollisionShape" parent="StaticBodyFriction1"] -transform = Transform( 5, 0, 0, 0, 1, 0, 0, 0, 50, 0, 0, 0 ) -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="StaticBodyFriction1"] +transform = Transform3D(5, 0, 0, 0, 1, 0, 0, 0, 50, 0, 0, 0) +shape = SubResource( "2" ) +script = null -[node name="RigidBodies" type="Spatial" parent="StaticBodyFriction1"] -transform = Transform( 1, 0, 0, 0, 0.866026, 0.5, 0, -0.5, 0.866026, -3, -7.431, 4.291 ) +[node name="RigidBodies" type="Node3D" parent="StaticBodyFriction1"] +transform = Transform3D(1, 0, 0, 0, 0.866026, 0.5, 0, -0.5, 0.866026, -3, -7.431, 4.291) +script = null -[node name="RigidBodyFriction0" type="RigidBody" parent="StaticBodyFriction1/RigidBodies"] -transform = Transform( 1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 0, 10, 0 ) -physics_material_override = SubResource( 3 ) +[node name="RigidBodyFriction0" type="RigidBody3D" parent="StaticBodyFriction1/RigidBodies"] +transform = Transform3D(1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 0, 10, 0) +physics_material_override = SubResource( "3" ) +script = null -[node name="CollisionShape" type="CollisionShape" parent="StaticBodyFriction1/RigidBodies/RigidBodyFriction0"] -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="StaticBodyFriction1/RigidBodies/RigidBodyFriction0"] +shape = SubResource( "4" ) +script = null [node name="LabelFriction" type="Label" parent="StaticBodyFriction1/RigidBodies/RigidBodyFriction0"] -margin_right = 40.0 -margin_bottom = 14.0 +offset_right = 40.0 +offset_bottom = 14.0 text = "0" align = 1 -script = ExtResource( 2 ) +structured_text_bidi_override_options = [] +script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false } -world_offset = Vector3( 0, 1.5, 0 ) +world_offset = Vector3(0, 1.5, 0) -[node name="RigidBodyFriction05" type="RigidBody" parent="StaticBodyFriction1/RigidBodies"] -transform = Transform( 1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 3, 10, 0 ) -physics_material_override = SubResource( 5 ) +[node name="RigidBodyFriction05" type="RigidBody3D" parent="StaticBodyFriction1/RigidBodies"] +transform = Transform3D(1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 3, 10, 0) +physics_material_override = SubResource( "5" ) +script = null -[node name="CollisionShape" type="CollisionShape" parent="StaticBodyFriction1/RigidBodies/RigidBodyFriction05"] -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="StaticBodyFriction1/RigidBodies/RigidBodyFriction05"] +shape = SubResource( "4" ) +script = null [node name="LabelFriction" type="Label" parent="StaticBodyFriction1/RigidBodies/RigidBodyFriction05"] -margin_right = 40.0 -margin_bottom = 14.0 +offset_right = 40.0 +offset_bottom = 14.0 text = "0.5" align = 1 -script = ExtResource( 2 ) +structured_text_bidi_override_options = [] +script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false } -world_offset = Vector3( 0, 1.5, 0 ) +world_offset = Vector3(0, 1.5, 0) -[node name="RigidBodyFriction1" type="RigidBody" parent="StaticBodyFriction1/RigidBodies"] -transform = Transform( 1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 6, 10, 0 ) -physics_material_override = SubResource( 6 ) +[node name="RigidBodyFriction1" type="RigidBody3D" parent="StaticBodyFriction1/RigidBodies"] +transform = Transform3D(1, 0, 0, 0, 0.866025, -0.5, 0, 0.5, 0.866025, 6, 10, 0) +physics_material_override = SubResource( "6" ) +script = null -[node name="CollisionShape" type="CollisionShape" parent="StaticBodyFriction1/RigidBodies/RigidBodyFriction1"] -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="StaticBodyFriction1/RigidBodies/RigidBodyFriction1"] +shape = SubResource( "4" ) +script = null [node name="LabelFriction" type="Label" parent="StaticBodyFriction1/RigidBodies/RigidBodyFriction1"] -margin_right = 40.0 -margin_bottom = 14.0 +offset_right = 40.0 +offset_bottom = 14.0 text = "1" align = 1 -script = ExtResource( 2 ) +structured_text_bidi_override_options = [] +script = ExtResource( "2" ) __meta__ = { "_edit_use_anchors_": false } -world_offset = Vector3( 0, 1.5, 0 ) +world_offset = Vector3(0, 1.5, 0) -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.53602, 22.1236 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.53602, 22.1236) +script = null -[node name="OmniLight" type="OmniLight" parent="Camera"] +[node name="OmniLight" type="OmniLight3D" parent="Camera3D"] omni_range = 50.0 +script = null [node name="LabelGround0" type="Label" parent="."] anchor_left = 0.5 anchor_right = 0.5 -margin_left = -164.0 -margin_top = 80.0 -margin_right = -28.0 -margin_bottom = 94.0 +offset_left = -164.0 +offset_top = 80.0 +offset_right = -28.0 +offset_bottom = 94.0 text = "GROUND FRICTION 0" +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } @@ -175,11 +203,13 @@ __meta__ = { [node name="LabelGround1" type="Label" parent="."] anchor_left = 0.5 anchor_right = 0.5 -margin_left = 31.0 -margin_top = 80.0 -margin_right = 167.0 -margin_bottom = 94.0 +offset_left = 31.0 +offset_top = 80.0 +offset_right = 167.0 +offset_bottom = 94.0 text = "GROUND FRICTION 1" +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } diff --git a/3d/physics_tests/tests/functional/test_joints.gd b/3d/physics_tests/tests/functional/test_joints.gd index 9a3affbb88c..7ef14eacfd6 100644 --- a/3d/physics_tests/tests/functional/test_joints.gd +++ b/3d/physics_tests/tests/functional/test_joints.gd @@ -30,7 +30,7 @@ func _ready(): for joint_index in joints.get_child_count(): var joint_node = joints.get_child(joint_index) joint_node.visible = false - var joint_name = joint_node.name + var joint_name = String(joint_node.name) var joint_short = joint_name.substr(0, joint_name.length() - 5) var option_name = OPTION_JOINT_TYPE % [joint_short, joint_index + 1] options.add_menu_item(option_name) @@ -42,8 +42,8 @@ func _ready(): options.add_menu_item(OPTION_TEST_CASE_DESTROY_BODY, true, false) options.add_menu_item(OPTION_TEST_CASE_CHANGE_POSITIONS, true, false) - options.connect("option_selected", self, "_on_option_selected") - options.connect("option_changed", self, "_on_option_changed") + options.connect("option_selected", Callable(self, "_on_option_selected")) + options.connect("option_changed", Callable(self, "_on_option_changed")) _selected_joint = _joint_types.values()[0] _update_joint = true @@ -52,14 +52,14 @@ func _ready(): func _process(_delta): if _update_joint: _update_joint = false - _create_joint() - $LabelJointType.text = "Joint Type: " + _selected_joint.name + await _create_joint() + $LabelJointType.text = "Joint Type: " + String(_selected_joint.name) func _input(event): var key_event = event as InputEventKey if key_event and not key_event.pressed: - var joint_index = key_event.scancode - KEY_1 + var joint_index = key_event.keycode - KEY_1 if joint_index >= 0 and joint_index < _joint_types.size(): _selected_joint = _joint_types.values()[joint_index] _update_joint = true @@ -102,7 +102,7 @@ func _create_joint(): last_child.queue_free() var child_body = create_rigidbody_box(BOX_SIZE, true) - child_body.mode = RigidBody.MODE_RIGID + child_body.mode = RigidBody3D.MODE_DYNAMIC if _change_positions: root.add_child(child_body) child_body.transform.origin = Vector3(0.0, -1.5, 0.0) @@ -114,11 +114,11 @@ func _create_joint(): if not _world_attachement: parent_body = create_rigidbody_box(BOX_SIZE, true) if _dynamic_attachement: - parent_body.mode = RigidBody.MODE_RIGID + parent_body.mode = RigidBody3D.MODE_DYNAMIC parent_body.gravity_scale = 0.0 child_body.gravity_scale = 0.0 else: - parent_body.mode = RigidBody.MODE_STATIC + parent_body.mode = RigidBody3D.MODE_STATIC if _change_positions: root.add_child(parent_body) parent_body.transform.origin = Vector3(0.0, 1.5, 0.0) @@ -129,13 +129,13 @@ func _create_joint(): var joint = _selected_joint.duplicate() joint.visible = true joint.set_exclude_nodes_from_collision(not _bodies_collide) - if parent_body: - joint.set_node_a(parent_body.get_path()) - joint.set_node_b(child_body.get_path()) root.add_child(joint) + if parent_body: + joint.set_node_a(joint.get_path_to(parent_body)) + joint.set_node_b(joint.get_path_to(child_body)) if _destroy_body: - yield(start_timer(0.5), "timeout") + await start_timer(0.5).timeout if is_timer_canceled(): return diff --git a/3d/physics_tests/tests/functional/test_joints.tscn b/3d/physics_tests/tests/functional/test_joints.tscn index bdd4f0e67e1..d441dcfddc5 100644 --- a/3d/physics_tests/tests/functional/test_joints.tscn +++ b/3d/physics_tests/tests/functional/test_joints.tscn @@ -1,41 +1,52 @@ -[gd_scene load_steps=4 format=2] +[gd_scene load_steps=4 format=3 uid="uid://ff88axeu4fvf"] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=1] -[ext_resource path="res://tests/functional/test_joints.gd" type="Script" id=2] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=3] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="1"] +[ext_resource type="Script" path="res://tests/functional/test_joints.gd" id="2"] +[ext_resource type="PackedScene" uid="uid://b1ihqm3x8jru" path="res://tests/test_options.tscn" id="3"] -[node name="Test" type="Spatial"] -script = ExtResource( 2 ) +[node name="Test" type="Node3D"] +script = ExtResource( "2" ) [node name="LabelJointType" type="Label" parent="."] -margin_left = 14.0 -margin_top = 78.0 -margin_right = 171.0 -margin_bottom = 92.0 +offset_left = 14.0 +offset_top = 78.0 +offset_right = 171.0 +offset_bottom = 92.0 text = "Joint Type: " +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } -[node name="Options" parent="." instance=ExtResource( 3 )] +[node name="Options" parent="." instance=ExtResource( "3" )] +items = [] -[node name="Joints" type="Spatial" parent="."] +[node name="Joints" type="Node3D" parent="."] +script = null -[node name="PinJoint" type="PinJoint" parent="Joints"] +[node name="PinJoint" type="PinJoint3D" parent="Joints"] +script = null -[node name="HingeJoint" type="HingeJoint" parent="Joints"] +[node name="HingeJoint" type="HingeJoint3D" parent="Joints"] +script = null -[node name="SliderJoint" type="SliderJoint" parent="Joints"] +[node name="SliderJoint" type="SliderJoint3D" parent="Joints"] +script = null -[node name="ConeTwistJoint" type="ConeTwistJoint" parent="Joints"] +[node name="ConeTwistJoint" type="ConeTwistJoint3D" parent="Joints"] +script = null -[node name="Generic6DOFJoint" type="Generic6DOFJoint" parent="Joints"] +[node name="Generic6DOFJoint" type="Generic6DOFJoint3D" parent="Joints"] +script = null -[node name="Objects" type="Spatial" parent="."] +[node name="Objects" type="Node3D" parent="."] +script = null -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 6.19796 ) -script = ExtResource( 1 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 6.19796) +script = ExtResource( "1" ) -[node name="OmniLight" type="OmniLight" parent="Camera"] +[node name="OmniLight" type="OmniLight3D" parent="Camera3D"] omni_range = 50.0 +script = null diff --git a/3d/physics_tests/tests/functional/test_moving_platform.gd b/3d/physics_tests/tests/functional/test_moving_platform.gd index 429d9bac478..b66a1ab19f9 100644 --- a/3d/physics_tests/tests/functional/test_moving_platform.gd +++ b/3d/physics_tests/tests/functional/test_moving_platform.gd @@ -28,8 +28,8 @@ var _body_scene = {} var _key_list = [] var _current_body_index = 0 var _current_body_key = "" -var _current_body = null -var _body_type = ["KinematicBody", "RigidBody"] +var _current_body : PhysicsBody3D = null +var _body_type = ["CharacterBody3D", "RigidBody"] var _shapes = {} var _current_shape = "" @@ -60,8 +60,8 @@ func _ready(): options.add_menu_item(OPTION_ROUGH, true, false) options.add_menu_item(OPTION_PROCESS_PHYSICS, true, false) - options.connect("option_selected", self, "_on_option_selected") - options.connect("option_changed", self, "_on_option_changed") + options.connect("option_selected", Callable(self, "_on_option_selected")) + options.connect("option_changed", Callable(self, "_on_option_changed")) _shapes[SHAPE_CAPSULE] = "Capsule" _shapes[SHAPE_BOX] = "Box" @@ -77,7 +77,7 @@ func _ready(): func _input(event): var key_event = event as InputEventKey if key_event and not key_event.pressed: - var _index = key_event.scancode - KEY_1 + var _index = key_event.keycode - KEY_1 if _index >= 0 and _index < _key_list.size(): spawn_body_index(_index) @@ -135,7 +135,7 @@ func spawn_body_index(body_index): _current_body_index = body_index _current_body_key = _key_list[body_index] var body_parent = $Bodies - var body = _body_scene[_key_list[body_index]].instance() + var body = _body_scene[_key_list[body_index]].instantiate() _current_body = body init_body() body_parent.add_child(body) @@ -148,7 +148,7 @@ func spawn_body_key(body_key): _current_body_key = body_key _current_body_index = _key_list.find(body_key) var body_parent = $Bodies - var body = _body_scene[body_key].instance() + var body = _body_scene[body_key].instantiate() _current_body = body init_body() body_parent.add_child(body) @@ -156,15 +156,15 @@ func spawn_body_key(body_key): func init_body(): - if _current_body is KinematicBody: + if _current_body is CharacterBody3D: _current_body._gravity_on_floor = _gravity _current_body._stop_on_slopes = _slope _current_body._use_snap = _snap - elif _current_body is RigidBody: + elif _current_body is RigidBody3D: _current_body.physics_material_override.rough = _rough _current_body.physics_material_override.friction = 1.0 if _friction else 0.0 for shape in _current_body.get_children(): - if shape is CollisionShape: + if shape is CollisionShape3D: if shape.name != _current_shape: shape.queue_free() diff --git a/3d/physics_tests/tests/functional/test_moving_platform.tscn b/3d/physics_tests/tests/functional/test_moving_platform.tscn index 4151ae9d13d..38936a06cd0 100644 --- a/3d/physics_tests/tests/functional/test_moving_platform.tscn +++ b/3d/physics_tests/tests/functional/test_moving_platform.tscn @@ -1,35 +1,35 @@ -[gd_scene load_steps=14 format=2] +[gd_scene load_steps=14 format=3 uid="uid://dgh5drb4q81kh"] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=1] -[ext_resource path="res://tests/functional/test_moving_platform.gd" type="Script" id=2] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=3] -[ext_resource path="res://utils/kinematicbody_physics.gd" type="Script" id=4] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="1"] +[ext_resource type="Script" path="res://tests/functional/test_moving_platform.gd" id="2"] +[ext_resource type="PackedScene" uid="uid://b1ihqm3x8jru" path="res://tests/test_options.tscn" id="3"] +[ext_resource type="Script" path="res://utils/characterbody_physics.gd" id="4"] -[sub_resource type="CapsuleShape" id=1] +[sub_resource type="CapsuleShape3D" id="1"] radius = 0.3 -[sub_resource type="BoxShape" id=2] -extents = Vector3( 0.3, 0.8, 0.3 ) +[sub_resource type="BoxShape3D" id="2"] +size = Vector3(0.6, 1.6, 0.6) -[sub_resource type="CylinderShape" id=3] +[sub_resource type="CylinderShape3D" id="3"] radius = 0.3 height = 1.60005 -[sub_resource type="SphereShape" id=4] +[sub_resource type="SphereShape3D" id="4"] radius = 0.79945 -[sub_resource type="ConvexPolygonShape" id=5] -points = PoolVector3Array( -0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -0.8, 0 ) +[sub_resource type="ConvexPolygonShape3D" id="5"] +points = PackedVector3Array(-0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -0.8, 0) -[sub_resource type="RayShape" id=6] +[sub_resource type="RayShape3D" id="6"] length = 0.8 -[sub_resource type="PhysicsMaterial" id=7] +[sub_resource type="PhysicsMaterial" id="7"] -[sub_resource type="BoxShape" id=8] -extents = Vector3( 2, 0.2, 1 ) +[sub_resource type="BoxShape3D" id="8"] +size = Vector3(4, 0.4, 2) -[sub_resource type="Animation" id=9] +[sub_resource type="Animation" id="9"] length = 9.0 tracks/0/type = "bezier" tracks/0/path = NodePath(".:translation:x") @@ -38,8 +38,8 @@ tracks/0/loop_wrap = true tracks/0/imported = false tracks/0/enabled = true tracks/0/keys = { -"points": PoolRealArray( -7, -0.25, 0, 0.25, 0, -7, -0.25, 0, 0.25, 0, 6, -0.25, 0, 0.25, 0 ), -"times": PoolRealArray( 0, 3, 6.5 ) +"points": PackedFloat32Array(-7, -0.25, 0, 0.25, 0, -7, -0.25, 0, 0.25, 0, 6, -0.25, 0, 0.25, 0), +"times": PackedFloat32Array(0, 3, 6.5) } tracks/1/type = "bezier" tracks/1/path = NodePath(".:translation:y") @@ -48,107 +48,130 @@ tracks/1/loop_wrap = true tracks/1/imported = false tracks/1/enabled = true tracks/1/keys = { -"points": PoolRealArray( -4.23538, -0.25, 0, 0.25, 0, -4.23538, -0.25, 0, 0.25, 0, 3, -0.25, 0, 0.25, 0, 3, -0.25, 0, 0.25, 0, -4.23538, -0.25, 0, 0.25, 0 ), -"times": PoolRealArray( 0, 0.5, 3, 6.5, 9 ) +"points": PackedFloat32Array(-4.23538, -0.25, 0, 0.25, 0, -4.23538, -0.25, 0, 0.25, 0, 3, -0.25, 0, 0.25, 0, 3, -0.25, 0, 0.25, 0, -4.23538, -0.25, 0, 0.25, 0), +"times": PackedFloat32Array(0, 0.5, 3, 6.5, 9) } -[node name="Test" type="Spatial"] -script = ExtResource( 2 ) +[node name="Test" type="Node3D"] +script = ExtResource( "2" ) [node name="LabelBodyType" type="Label" parent="."] -margin_left = 14.0 -margin_top = 78.0 -margin_right = 171.0 -margin_bottom = 92.0 +offset_left = 14.0 +offset_top = 78.0 +offset_right = 171.0 +offset_bottom = 92.0 text = "Body Type: " +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } -[node name="Options" parent="." instance=ExtResource( 3 )] -margin_top = 120.0 -margin_bottom = 140.0 +[node name="Options" parent="." instance=ExtResource( "3" )] +offset_top = 120.0 +offset_bottom = 140.0 +items = [] -[node name="Bodies" type="Spatial" parent="."] +[node name="Bodies" type="Node3D" parent="."] +script = null -[node name="KinematicBody" type="KinematicBody" parent="Bodies"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -7, -4.18538, 0 ) +[node name="CharacterBody3D" type="CharacterBody3D" parent="Bodies"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7, -4.18538, 0) collision_layer = 2 -script = ExtResource( 4 ) +script = ExtResource( "4" ) _stop_on_slopes = true _use_snap = true -[node name="Capsule" type="CollisionShape" parent="Bodies/KinematicBody"] -transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0.8, 0 ) -shape = SubResource( 1 ) - -[node name="Box" type="CollisionShape" parent="Bodies/KinematicBody"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0 ) -shape = SubResource( 2 ) - -[node name="Cylinder" type="CollisionShape" parent="Bodies/KinematicBody"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0 ) -shape = SubResource( 3 ) - -[node name="Sphere" type="CollisionShape" parent="Bodies/KinematicBody"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0 ) -shape = SubResource( 4 ) - -[node name="Convex" type="CollisionShape" parent="Bodies/KinematicBody"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0 ) -shape = SubResource( 5 ) - -[node name="Ray" type="CollisionShape" parent="Bodies/KinematicBody"] -transform = Transform( 1, 0, 0, 0, 0, -1, 0, 1, 0, 0, 0.8, 0 ) -shape = SubResource( 6 ) - -[node name="RigidBody" type="RigidBody" parent="Bodies"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -7, -4.18538, 0 ) +[node name="Capsule" type="CollisionShape3D" parent="Bodies/CharacterBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) +shape = SubResource( "1" ) +script = null + +[node name="Box" type="CollisionShape3D" parent="Bodies/CharacterBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) +shape = SubResource( "2" ) +script = null + +[node name="Cylinder" type="CollisionShape3D" parent="Bodies/CharacterBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) +shape = SubResource( "3" ) +script = null + +[node name="Sphere" type="CollisionShape3D" parent="Bodies/CharacterBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) +shape = SubResource( "4" ) +script = null + +[node name="Convex" type="CollisionShape3D" parent="Bodies/CharacterBody3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) +shape = SubResource( "5" ) +script = null + +[node name="Ray" type="CollisionShape3D" parent="Bodies/CharacterBody3D"] +transform = Transform3D(1, 0, 0, 0, 0, -1, 0, 1, 0, 0, 0.8, 0) +shape = SubResource( "6" ) +script = null + +[node name="RigidBody" type="RigidBody3D" parent="Bodies"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7, -4.18538, 0) collision_layer = 4 -physics_material_override = SubResource( 7 ) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true - -[node name="Capsule" type="CollisionShape" parent="Bodies/RigidBody"] -transform = Transform( 1, 0, 0, 0, -4.37114e-08, -1, 0, 1, -4.37114e-08, 0, 0.8, 0 ) -shape = SubResource( 1 ) - -[node name="Box" type="CollisionShape" parent="Bodies/RigidBody"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0 ) -shape = SubResource( 2 ) - -[node name="Cylinder" type="CollisionShape" parent="Bodies/RigidBody"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0 ) -shape = SubResource( 3 ) - -[node name="Sphere" type="CollisionShape" parent="Bodies/RigidBody"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0 ) -shape = SubResource( 4 ) - -[node name="Convex" type="CollisionShape" parent="Bodies/RigidBody"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0 ) -shape = SubResource( 5 ) - -[node name="Ray" type="CollisionShape" parent="Bodies/RigidBody"] -transform = Transform( 1, 0, 0, 0, 0, -1, 0, 1, 0, 0, 0.8, 0 ) -shape = SubResource( 6 ) - -[node name="Platforms" type="Spatial" parent="."] - -[node name="KinematicPlatform" type="KinematicBody" parent="Platforms"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -7, -4.25, 0 ) - -[node name="CollisionShape" type="CollisionShape" parent="Platforms/KinematicPlatform"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.2, 0 ) -shape = SubResource( 8 ) +physics_material_override = SubResource( "7" ) +script = null + +[node name="Capsule" type="CollisionShape3D" parent="Bodies/RigidBody"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) +shape = SubResource( "1" ) +script = null + +[node name="Box" type="CollisionShape3D" parent="Bodies/RigidBody"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) +shape = SubResource( "2" ) +script = null + +[node name="Cylinder" type="CollisionShape3D" parent="Bodies/RigidBody"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) +shape = SubResource( "3" ) +script = null + +[node name="Sphere" type="CollisionShape3D" parent="Bodies/RigidBody"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) +shape = SubResource( "4" ) +script = null + +[node name="Convex" type="CollisionShape3D" parent="Bodies/RigidBody"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.8, 0) +shape = SubResource( "5" ) +script = null + +[node name="Ray" type="CollisionShape3D" parent="Bodies/RigidBody"] +transform = Transform3D(1, 0, 0, 0, 0, -1, 0, 1, 0, 0, 0.8, 0) +shape = SubResource( "6" ) +script = null + +[node name="Platforms" type="Node3D" parent="."] +script = null + +[node name="KinematicPlatform" type="CharacterBody3D" parent="Platforms"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -7, -4.25, 0) +script = null + +[node name="CollisionShape" type="CollisionShape3D" parent="Platforms/KinematicPlatform"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -0.2, 0) +shape = SubResource( "8" ) +script = null [node name="AnimationPlayer" type="AnimationPlayer" parent="Platforms/KinematicPlatform"] -anims/Move = SubResource( 9 ) +anims/Move = SubResource( "9" ) +blend_times = [] +script = null -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 10 ) -script = ExtResource( 1 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 10) +script = ExtResource( "1" ) -[node name="OmniLight" type="OmniLight" parent="Camera"] +[node name="OmniLight" type="OmniLight3D" parent="Camera3D"] omni_range = 50.0 +script = null diff --git a/3d/physics_tests/tests/functional/test_pyramid.gd b/3d/physics_tests/tests/functional/test_pyramid.gd index 19e7bd522ca..63e624bccd6 100644 --- a/3d/physics_tests/tests/functional/test_pyramid.gd +++ b/3d/physics_tests/tests/functional/test_pyramid.gd @@ -1,11 +1,11 @@ extends Test -export(int, 1, 100) var height = 10 -export(int, 1, 100) var width_max = 100 -export(int, 1, 100) var depth_max = 1 -export(Vector3) var box_size = Vector3(1.0, 1.0, 1.0) -export(Vector3) var box_spacing = Vector3(0.0, 0.0, 0.0) +@export_range(1, 100) var height = 10 +@export_range(1, 100) var width_max = 100 +@export_range(1, 100) var depth_max = 1 +@export var box_size = Vector3(1.0, 1.0, 1.0) +@export var box_spacing = Vector3(0.0, 0.0, 0.0) func _ready(): @@ -25,7 +25,7 @@ func _create_pyramid(): var num_boxes_width = min(num_boxes, width_max) var num_boxes_depth = min(num_boxes, depth_max) - var row_node = Spatial.new() + var row_node = Node3D.new() row_node.transform.origin = Vector3(0.0, pos_y, 0.0) row_node.name = "Row%02d" % (level + 1) root_node.add_child(row_node) diff --git a/3d/physics_tests/tests/functional/test_pyramid.tscn b/3d/physics_tests/tests/functional/test_pyramid.tscn index 5ef9442bb15..9ab559a133b 100644 --- a/3d/physics_tests/tests/functional/test_pyramid.tscn +++ b/3d/physics_tests/tests/functional/test_pyramid.tscn @@ -1,16 +1,17 @@ -[gd_scene load_steps=4 format=2] +[gd_scene load_steps=4 format=3 uid="uid://coci5d8ma8tpi"] -[ext_resource path="res://tests/functional/test_pyramid.gd" type="Script" id=1] -[ext_resource path="res://tests/static_scene_plane.tscn" type="PackedScene" id=2] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=4] +[ext_resource type="Script" path="res://tests/functional/test_pyramid.gd" id="1"] +[ext_resource type="PackedScene" uid="uid://3gkujifjokqw" path="res://tests/static_scene_plane.tscn" id="2"] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="4"] -[node name="Test" type="Spatial"] -script = ExtResource( 1 ) +[node name="Test" type="Node3D"] +script = ExtResource( "1" ) -[node name="Pyramid" type="Spatial" parent="."] +[node name="Pyramid" type="Node3D" parent="."] +script = null -[node name="StaticBodyPlane" parent="." instance=ExtResource( 2 )] +[node name="StaticBodyPlane" parent="." instance=ExtResource( "2" )] -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6.62348, 22.9474 ) -script = ExtResource( 4 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 6.62348, 22.9474) +script = ExtResource( "4" ) diff --git a/3d/physics_tests/tests/functional/test_raycasting.gd b/3d/physics_tests/tests/functional/test_raycasting.gd index b3a97df86f6..c5aa22db435 100644 --- a/3d/physics_tests/tests/functional/test_raycasting.gd +++ b/3d/physics_tests/tests/functional/test_raycasting.gd @@ -3,26 +3,29 @@ extends Test var _do_raycasts = false -onready var _raycast_visuals = ImmediateGeometry.new() +@onready var _raycast_visuals = ImmediateMesh.new() +@onready var _material = StandardMaterial3D.new() func _ready(): - var material = SpatialMaterial.new() - material.flags_unshaded = true - material.vertex_color_use_as_albedo = true - _raycast_visuals.material_override = material + _material.flags_unshaded = true + _material.vertex_color_use_as_albedo = true - add_child(_raycast_visuals) - move_child(_raycast_visuals, get_child_count()) + var raycast_mesh_instance = MeshInstance3D.new() + raycast_mesh_instance.mesh = _raycast_visuals + add_child(raycast_mesh_instance) + move_child(raycast_mesh_instance, get_child_count()) - yield(start_timer(0.5), "timeout") + await start_timer(0.5).timeout if is_timer_canceled(): return _do_raycasts = true -func _physics_process(_delta): +func _physics_process(delta): + super._physics_process(delta) + if not _do_raycasts: return @@ -30,12 +33,12 @@ func _physics_process(_delta): Log.print_log("* Start Raycasting...") - _raycast_visuals.clear() - _raycast_visuals.begin(Mesh.PRIMITIVE_LINES) + _raycast_visuals.clear_surfaces() + _raycast_visuals.surface_begin(Mesh.PRIMITIVE_LINES) for shape in $Shapes.get_children(): - var body = shape as PhysicsBody - var space_state = body.get_world().direct_space_state + var body = shape as PhysicsBody3D + var space_state = body.get_world_3d().direct_space_state Log.print_log("* Testing: %s" % body.name) @@ -55,24 +58,26 @@ func _physics_process(_delta): res = _add_raycast(space_state, center, center - Vector3(0.0, 0.8, 0.0)) Log.print_log("Raycast inside: %s" % ("HIT" if res else "NO HIT")) - _raycast_visuals.end() + _raycast_visuals.surface_end() + + _raycast_visuals.surface_set_material(0, _material) func _add_raycast(space_state, pos_start, pos_end): var result = space_state.intersect_ray(pos_start, pos_end) if result: - _raycast_visuals.set_color(Color.green) + _raycast_visuals.surface_set_color(Color.GREEN) else: - _raycast_visuals.set_color(Color.red.darkened(0.5)) + _raycast_visuals.surface_set_color(Color.RED.darkened(0.5)) # Draw raycast line. - _raycast_visuals.add_vertex(pos_start) - _raycast_visuals.add_vertex(pos_end) + _raycast_visuals.surface_add_vertex(pos_start) + _raycast_visuals.surface_add_vertex(pos_end) # Draw raycast arrow. - _raycast_visuals.add_vertex(pos_end) - _raycast_visuals.add_vertex(pos_end + Vector3(-0.05, 0.1, 0.0)) - _raycast_visuals.add_vertex(pos_end) - _raycast_visuals.add_vertex(pos_end + Vector3(0.05, 0.1, 0.0)) + _raycast_visuals.surface_add_vertex(pos_end) + _raycast_visuals.surface_add_vertex(pos_end + Vector3(-0.05, 0.1, 0.0)) + _raycast_visuals.surface_add_vertex(pos_end) + _raycast_visuals.surface_add_vertex(pos_end + Vector3(0.05, 0.1, 0.0)) return result diff --git a/3d/physics_tests/tests/functional/test_raycasting.tscn b/3d/physics_tests/tests/functional/test_raycasting.tscn index 7520f9a6c04..e3fd28a558a 100644 --- a/3d/physics_tests/tests/functional/test_raycasting.tscn +++ b/3d/physics_tests/tests/functional/test_raycasting.tscn @@ -1,72 +1,85 @@ -[gd_scene load_steps=9 format=2] +[gd_scene load_steps=9 format=3 uid="uid://dnpps474nfbu4"] -[ext_resource path="res://assets/robot_head/godot3_robot_head_collision.tres" type="Shape" id=1] -[ext_resource path="res://tests/functional/test_raycasting.gd" type="Script" id=2] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=4] +[ext_resource type="Shape3D" path="res://assets/robot_head/godot3_robot_head_collision.tres" id="1"] +[ext_resource type="Script" path="res://tests/functional/test_raycasting.gd" id="2"] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="4"] -[sub_resource type="BoxShape" id=1] +[sub_resource type="BoxShape3D" id="1"] -[sub_resource type="SphereShape" id=2] +[sub_resource type="SphereShape3D" id="2"] -[sub_resource type="CapsuleShape" id=3] +[sub_resource type="CapsuleShape3D" id="3"] -[sub_resource type="CylinderShape" id=4] +[sub_resource type="CylinderShape3D" id="4"] -[sub_resource type="ConvexPolygonShape" id=5] -points = PoolVector3Array( -0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0 ) +[sub_resource type="ConvexPolygonShape3D" id="5"] +points = PackedVector3Array(-0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0) -[node name="Test" type="Spatial"] -script = ExtResource( 2 ) +[node name="Test" type="Node3D"] +script = ExtResource( "2" ) -[node name="Shapes" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.35591, 0 ) +[node name="Shapes" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.35591, 0) +script = null -[node name="RigidBodyBox" type="RigidBody" parent="Shapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 0 ) +[node name="RigidBodyBox" type="RigidBody3D" parent="Shapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 0) mode = 3 +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodyBox"] -transform = Transform( 0.579556, 0.0885213, 0.145926, 0, 0.939693, -0.205212, -0.155291, 0.330366, 0.544604, 0, 0, 0 ) -shape = SubResource( 1 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodyBox"] +transform = Transform3D(0.579556, 0.0885213, 0.145926, 0, 0.939693, -0.205212, -0.155291, 0.330366, 0.544604, 0, 0, 0) +shape = SubResource( "1" ) +script = null -[node name="RigidBodySphere" type="RigidBody" parent="Shapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 0, 0 ) +[node name="RigidBodySphere" type="RigidBody3D" parent="Shapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 0, 0) mode = 3 +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodySphere"] -transform = Transform( 1.2, 0, 0, 0, 1.2, 0, 0, 0, 1.2, 0, 0, 0 ) -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodySphere"] +transform = Transform3D(1.2, 0, 0, 0, 1.2, 0, 0, 0, 1.2, 0, 0, 0) +shape = SubResource( "2" ) +script = null -[node name="RigidBodyCapsule" type="RigidBody" parent="Shapes"] +[node name="RigidBodyCapsule" type="RigidBody3D" parent="Shapes"] mode = 3 +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodyCapsule"] -transform = Transform( 0.8, 0, 0, 0, -1.30337e-07, -0.8, 0, 0.8, -1.30337e-07, 0, 0, 0 ) -shape = SubResource( 3 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodyCapsule"] +transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0) +shape = SubResource( "3" ) +script = null -[node name="RigidBodyCylinder" type="RigidBody" parent="Shapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 0 ) +[node name="RigidBodyCylinder" type="RigidBody3D" parent="Shapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 0) mode = 3 +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodyCylinder"] -transform = Transform( 0.772741, -0.258819, 2.59821e-08, 0.2, 0.933013, -0.207055, 0.0535898, 0.25, 0.772741, 0, 0, 0 ) -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodyCylinder"] +transform = Transform3D(0.772741, -0.258819, 2.59821e-08, 0.2, 0.933013, -0.207055, 0.0535898, 0.25, 0.772741, 0, 0, 0) +shape = SubResource( "4" ) +script = null -[node name="RigidBodyConvexPolygon" type="RigidBody" parent="Shapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 6, -0.211, 0 ) +[node name="RigidBodyConvexPolygon" type="RigidBody3D" parent="Shapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, -0.211, 0) mode = 3 +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/RigidBodyConvexPolygon"] -transform = Transform( 2, 0, 0, 0, 2.89766, -0.517939, 0, 0.776908, 1.93177, 0, 0.3533, 0 ) -shape = SubResource( 5 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/RigidBodyConvexPolygon"] +transform = Transform3D(2, 0, 0, 0, 2.89766, -0.517939, 0, 0.776908, 1.93177, 0, 0.3533, 0) +shape = SubResource( "5" ) +script = null -[node name="StaticBodyHead" type="StaticBody" parent="Shapes"] -transform = Transform( 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, -6, 3.93357 ) +[node name="StaticBodyHead" type="StaticBody3D" parent="Shapes"] +transform = Transform3D(2, 0, 0, 0, 2, 0, 0, 0, 2, 0, -6, 3.93357) +script = null -[node name="CollisionShape" type="CollisionShape" parent="Shapes/StaticBodyHead"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0 ) -shape = ExtResource( 1 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Shapes/StaticBodyHead"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0) +shape = ExtResource( "1" ) +script = null -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 5.8667, 11.8164 ) -script = ExtResource( 4 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 5.8667, 11.8164) +script = ExtResource( "4" ) diff --git a/3d/physics_tests/tests/functional/test_rigidbody_ground_check.gd b/3d/physics_tests/tests/functional/test_rigidbody_ground_check.gd index 1c200c8f269..0be3f90120a 100644 --- a/3d/physics_tests/tests/functional/test_rigidbody_ground_check.gd +++ b/3d/physics_tests/tests/functional/test_rigidbody_ground_check.gd @@ -36,7 +36,7 @@ func _ready(): options.add_menu_item(SHAPE_CONVEX) options.add_menu_item(SHAPE_BOX) - options.connect("option_selected", self, "_on_option_selected") + options.connect("option_selected", Callable(self, "_on_option_selected")) restart_scene() @@ -57,11 +57,11 @@ func restart_scene(): if _current_floor: _current_floor.queue_free() - var dynamic_bodies = _dynamic_shapes_scene.instance() + var dynamic_bodies = _dynamic_shapes_scene.instantiate() _current_bodies = dynamic_bodies add_child(dynamic_bodies) - var floor_inst = _floor_shapes[_current_floor_name + _floor_size].instance() + var floor_inst = _floor_shapes[_current_floor_name + _floor_size].instantiate() _current_floor = floor_inst $Floors.add_child(floor_inst) diff --git a/3d/physics_tests/tests/functional/test_rigidbody_ground_check.tscn b/3d/physics_tests/tests/functional/test_rigidbody_ground_check.tscn index 808cda9ee8b..6070969fb81 100644 --- a/3d/physics_tests/tests/functional/test_rigidbody_ground_check.tscn +++ b/3d/physics_tests/tests/functional/test_rigidbody_ground_check.tscn @@ -1,354 +1,376 @@ -[gd_scene load_steps=35 format=2] +[gd_scene load_steps=30 format=3 uid="uid://se7gyhmygqul"] -[ext_resource path="res://utils/rigidbody_ground_check.gd" type="Script" id=1] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=2] -[ext_resource path="res://tests/functional/test_rigidbody_ground_check.gd" type="Script" id=3] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=4] +[ext_resource type="Script" path="res://utils/rigidbody_ground_check.gd" id="1"] +[ext_resource type="PackedScene" uid="uid://b1ihqm3x8jru" path="res://tests/test_options.tscn" id="2"] +[ext_resource type="Script" path="res://tests/functional/test_rigidbody_ground_check.gd" id="3"] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="4"] -[sub_resource type="PhysicsMaterial" id=1] +[sub_resource type="PhysicsMaterial" id="1"] friction = 0.0 -[sub_resource type="BoxShape" id=2] +[sub_resource type="BoxShape3D" id="2"] -[sub_resource type="CubeMesh" id=3] +[sub_resource type="BoxMesh" id="3"] -[sub_resource type="SpatialMaterial" id=4] - -[sub_resource type="PhysicsMaterial" id=5] +[sub_resource type="PhysicsMaterial" id="5"] friction = 0.0 -[sub_resource type="CapsuleShape" id=6] - -[sub_resource type="CapsuleMesh" id=7] +[sub_resource type="CapsuleShape3D" id="6"] -[sub_resource type="SpatialMaterial" id=8] +[sub_resource type="CapsuleMesh" id="7"] -[sub_resource type="PhysicsMaterial" id=9] +[sub_resource type="PhysicsMaterial" id="9"] friction = 0.0 -[sub_resource type="CylinderShape" id=10] - -[sub_resource type="CylinderMesh" id=11] +[sub_resource type="CylinderShape3D" id="10"] -[sub_resource type="SpatialMaterial" id=12] +[sub_resource type="CylinderMesh" id="11"] -[sub_resource type="PhysicsMaterial" id=13] +[sub_resource type="PhysicsMaterial" id="13"] friction = 0.0 -[sub_resource type="ConvexPolygonShape" id=14] -points = PoolVector3Array( -0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0 ) +[sub_resource type="ConvexPolygonShape3D" id="14"] +points = PackedVector3Array(-0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0) -[sub_resource type="ArrayMesh" id=15] -surfaces/0 = { -"aabb": AABB( -0.7, -1, -0.7, 1.5, 1.00001, 1.5 ), -"array_data": PoolByteArray( 51, 51, 51, 191, 0, 0, 0, 0, 51, 51, 51, 191, 167, 0, 167, 0, 154, 153, 153, 190, 0, 0, 0, 0, 205, 204, 76, 63, 212, 0, 118, 0, 205, 204, 76, 63, 0, 0, 0, 0, 154, 153, 153, 190, 118, 0, 212, 0, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 0, 0, 0, 129, 0, 0 ), -"array_index_data": PoolByteArray( 0, 0, 1, 0, 3, 0, 1, 0, 2, 0, 3, 0, 2, 0, 0, 0, 3, 0, 2, 0, 1, 0, 0, 0 ), -"blend_shape_data": [ ], -"format": 97539, +[sub_resource type="ArrayMesh" id="15"] +_surfaces = [{ +"aabb": AABB(-0.7, -1, -0.7, 1.5, 1.00001, 1.5), +"format": 4099, "index_count": 12, -"primitive": 4, -"skeleton_aabb": [ ], -"vertex_count": 4 -} - -[sub_resource type="SpatialMaterial" id=16] +"index_data": PackedByteArray(0, 0, 1, 0, 3, 0, 1, 0, 2, 0, 3, 0, 2, 0, 0, 0, 3, 0, 2, 0, 1, 0, 0, 0), +"primitive": 3, +"vertex_count": 4, +"vertex_data": PackedByteArray(51, 51, 51, 191, 0, 0, 0, 0, 51, 51, 51, 191, 0, 0, 0, 0, 154, 153, 153, 190, 0, 0, 0, 0, 205, 204, 76, 63, 0, 0, 96, 59, 205, 204, 76, 63, 0, 0, 0, 0, 154, 153, 153, 190, 182, 3, 0, 0, 0, 0, 0, 0, 0, 0, 128, 191, 0, 0, 0, 0, 0, 0, 0, 0) +}] -[sub_resource type="PhysicsMaterial" id=17] +[sub_resource type="PhysicsMaterial" id="17"] friction = 0.0 -[sub_resource type="SphereShape" id=18] - -[sub_resource type="SphereMesh" id=19] +[sub_resource type="SphereShape3D" id="18"] -[sub_resource type="SpatialMaterial" id=20] +[sub_resource type="SphereMesh" id="19"] -[sub_resource type="RayShape" id=21] +[sub_resource type="RayShape3D" id="21"] length = 1.5 -[sub_resource type="SphereMesh" id=22] +[sub_resource type="SphereMesh" id="22"] radius = 0.5 height = 1.0 -[sub_resource type="PlaneMesh" id=23] -size = Vector2( 50, 20 ) +[sub_resource type="PlaneMesh" id="23"] +size = Vector2(50, 20) -[sub_resource type="ConvexPolygonShape" id=24] -points = PoolVector3Array( 25, 0, 10, -25, 0, 10, 25, 0, -10, -25, 0, -10 ) +[sub_resource type="ConvexPolygonShape3D" id="24"] +points = PackedVector3Array(25, 0, 10, -25, 0, 10, 25, 0, -10, -25, 0, -10) -[sub_resource type="ConvexPolygonShape" id=25] -points = PoolVector3Array( 25, 0, 10, -25, 0, 10, 25, 0, -10, -25, 0, -10 ) +[sub_resource type="ConvexPolygonShape3D" id="25"] +points = PackedVector3Array(25, 0, 10, -25, 0, 10, 25, 0, -10, -25, 0, -10) -[sub_resource type="ConvexPolygonShape" id=26] -points = PoolVector3Array( 50, 0, 50, -50, 0, 50, 50, 0, -50, -50, 0, -50 ) +[sub_resource type="ConvexPolygonShape3D" id="26"] +points = PackedVector3Array(50, 0, 50, -50, 0, 50, 50, 0, -50, -50, 0, -50) -[sub_resource type="ConcavePolygonShape" id=27] -data = PoolVector3Array( -1, 0, 1, 1, 0, -1, 1, 0, 1, -1, 0, 1, -1, 0, -1, 1, 0, -1 ) +[sub_resource type="ConcavePolygonShape3D" id="27"] +data = PackedVector3Array(-1, 0, 1, 1, 0, -1, 1, 0, 1, -1, 0, 1, -1, 0, -1, 1, 0, -1) -[sub_resource type="ConcavePolygonShape" id=28] -data = PoolVector3Array( 50, 0, 50, -50, 0, 50, 50, 0, -50, -50, 0, 50, -50, 0, -50, 50, 0, -50 ) +[sub_resource type="ConcavePolygonShape3D" id="28"] +data = PackedVector3Array(50, 0, 50, -50, 0, 50, 50, 0, -50, -50, 0, 50, -50, 0, -50, 50, 0, -50) -[sub_resource type="BoxShape" id=29] -extents = Vector3( 50, 1, 20 ) +[sub_resource type="BoxShape3D" id="29"] +size = Vector3(100, 2, 40) -[sub_resource type="BoxShape" id=30] -extents = Vector3( 100, 1, 100 ) +[sub_resource type="BoxShape3D" id="30"] +size = Vector3(200, 2, 200) -[node name="Test" type="Spatial"] -script = ExtResource( 3 ) +[node name="Test" type="Node3D"] +script = ExtResource( "3" ) [node name="LabelBodyType" type="Label" parent="."] -margin_left = 14.0 -margin_top = 78.0 -margin_right = 171.0 -margin_bottom = 92.0 +offset_left = 14.0 +offset_top = 78.0 +offset_right = 171.0 +offset_bottom = 92.0 text = "Floor Type: " +structured_text_bidi_override_options = [] +script = null __meta__ = { "_edit_use_anchors_": false } -[node name="Options" parent="." instance=ExtResource( 2 )] -margin_top = 120.0 -margin_bottom = 140.0 +[node name="Options" parent="." instance=ExtResource( "2" )] +offset_top = 120.0 +offset_bottom = 140.0 focus_mode = 2 +items = [] -[node name="DynamicShapes" type="Spatial" parent="."] +[node name="DynamicShapes" type="Node3D" parent="."] +script = null -[node name="Bodies" type="Spatial" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 5.2912, 0 ) +[node name="Bodies" type="Node3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 5.2912, 0) +script = null -[node name="RigidBodyBox" type="RigidBody" parent="DynamicShapes/Bodies"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 0 ) -physics_material_override = SubResource( 1 ) +[node name="RigidBodyBox" type="RigidBody3D" parent="DynamicShapes/Bodies"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +physics_material_override = SubResource( "1" ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/Bodies/RigidBodyBox"] -transform = Transform( 0.6, 0, 0, 0, 1, 0, 0, 0, 0.6, 0, 0, 0 ) -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/Bodies/RigidBodyBox"] +transform = Transform3D(0.6, 0, 0, 0, 1, 0, 0, 0, 0.6, 0, 0, 0) +shape = SubResource( "2" ) +script = null -[node name="MeshInstance" type="MeshInstance" parent="DynamicShapes/Bodies/RigidBodyBox/CollisionShape"] -mesh = SubResource( 3 ) -material/0 = SubResource( 4 ) +[node name="MeshInstance3D" type="MeshInstance3D" parent="DynamicShapes/Bodies/RigidBodyBox/CollisionShape"] +mesh = SubResource( "3" ) +surface_material_override/0 = null +script = null -[node name="RigidBodyCapsule" type="RigidBody" parent="DynamicShapes/Bodies"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 0, 0 ) -physics_material_override = SubResource( 5 ) +[node name="RigidBodyCapsule" type="RigidBody3D" parent="DynamicShapes/Bodies"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 0, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +physics_material_override = SubResource( "5" ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/Bodies/RigidBodyCapsule"] -transform = Transform( 0.8, 0, 0, 0, -3.49691e-08, -0.8, 0, 0.8, -3.49691e-08, 0, 0, 0 ) -shape = SubResource( 6 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/Bodies/RigidBodyCapsule"] +transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0) +shape = SubResource( "6" ) +script = null -[node name="MeshInstance" type="MeshInstance" parent="DynamicShapes/Bodies/RigidBodyCapsule/CollisionShape"] -mesh = SubResource( 7 ) -material/0 = SubResource( 8 ) +[node name="MeshInstance3D" type="MeshInstance3D" parent="DynamicShapes/Bodies/RigidBodyCapsule/CollisionShape"] +mesh = SubResource( "7" ) +surface_material_override/0 = null +script = null -[node name="RigidBodyCylinder" type="RigidBody" parent="DynamicShapes/Bodies"] -physics_material_override = SubResource( 9 ) +[node name="RigidBodyCylinder" type="RigidBody3D" parent="DynamicShapes/Bodies"] axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +physics_material_override = SubResource( "9" ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/Bodies/RigidBodyCylinder"] -transform = Transform( 0.8, 0, 0, 0, 1, 0, 0, 0, 0.8, 0, 0, 0 ) -shape = SubResource( 10 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/Bodies/RigidBodyCylinder"] +transform = Transform3D(0.8, 0, 0, 0, 1, 0, 0, 0, 0.8, 0, 0, 0) +shape = SubResource( "10" ) +script = null -[node name="MeshInstance" type="MeshInstance" parent="DynamicShapes/Bodies/RigidBodyCylinder/CollisionShape"] -mesh = SubResource( 11 ) -material/0 = SubResource( 12 ) +[node name="MeshInstance3D" type="MeshInstance3D" parent="DynamicShapes/Bodies/RigidBodyCylinder/CollisionShape"] +mesh = SubResource( "11" ) +surface_material_override/0 = null +script = null -[node name="RigidBodyConvex" type="RigidBody" parent="DynamicShapes/Bodies"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0.974548, 0 ) -physics_material_override = SubResource( 13 ) +[node name="RigidBodyConvex" type="RigidBody3D" parent="DynamicShapes/Bodies"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0.974548, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +physics_material_override = SubResource( "13" ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/Bodies/RigidBodyConvex"] -transform = Transform( 1.5, 0, 0, 0, 2, 0, 0, 0, 1.5, 0, 0, 0 ) -shape = SubResource( 14 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/Bodies/RigidBodyConvex"] +transform = Transform3D(1.5, 0, 0, 0, 2, 0, 0, 0, 1.5, 0, 0, 0) +shape = SubResource( "14" ) +script = null -[node name="MeshInstance" type="MeshInstance" parent="DynamicShapes/Bodies/RigidBodyConvex/CollisionShape"] -mesh = SubResource( 15 ) -material/0 = SubResource( 16 ) +[node name="MeshInstance3D" type="MeshInstance3D" parent="DynamicShapes/Bodies/RigidBodyConvex/CollisionShape"] +mesh = SubResource( "15" ) +surface_material_override/0 = null +script = null -[node name="RigidBodySphere" type="RigidBody" parent="DynamicShapes/Bodies"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 0 ) -physics_material_override = SubResource( 17 ) +[node name="RigidBodySphere" type="RigidBody3D" parent="DynamicShapes/Bodies"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +physics_material_override = SubResource( "17" ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/Bodies/RigidBodySphere"] -transform = Transform( 0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0 ) -shape = SubResource( 18 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/Bodies/RigidBodySphere"] +transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0) +shape = SubResource( "18" ) +script = null -[node name="MeshInstance" type="MeshInstance" parent="DynamicShapes/Bodies/RigidBodySphere/CollisionShape"] -mesh = SubResource( 19 ) -material/0 = SubResource( 20 ) +[node name="MeshInstance3D" type="MeshInstance3D" parent="DynamicShapes/Bodies/RigidBodySphere/CollisionShape"] +mesh = SubResource( "19" ) +surface_material_override/0 = null +script = null -[node name="RigidBodyRay" type="RigidBody" parent="DynamicShapes/Bodies"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 8.42391, 0, 0 ) -physics_material_override = SubResource( 17 ) +[node name="RigidBodyRay" type="RigidBody3D" parent="DynamicShapes/Bodies"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8.42391, 0, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +physics_material_override = SubResource( "17" ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/Bodies/RigidBodyRay"] -transform = Transform( 0.8, 0, 0, 0, 0, -0.8, 0, 0.8, 0, 0, 0, 0 ) -shape = SubResource( 21 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/Bodies/RigidBodyRay"] +transform = Transform3D(0.8, 0, 0, 0, 0, -0.8, 0, 0.8, 0, 0, 0, 0) +shape = SubResource( "21" ) +script = null -[node name="MeshInstance" type="MeshInstance" parent="DynamicShapes/Bodies/RigidBodyRay/CollisionShape"] -mesh = SubResource( 22 ) -material/0 = SubResource( 20 ) +[node name="MeshInstance3D" type="MeshInstance3D" parent="DynamicShapes/Bodies/RigidBodyRay/CollisionShape"] +mesh = SubResource( "22" ) +surface_material_override/0 = null +script = null -[node name="Floors" type="Spatial" parent="."] +[node name="Floors" type="Node3D" parent="."] +script = null -[node name="ConvexSmall" type="Spatial" parent="Floors"] +[node name="ConvexSmall" type="Node3D" parent="Floors"] +script = null -[node name="ConvexFloor" type="StaticBody" parent="Floors/ConvexSmall"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -10 ) -collision_layer = 2 -collision_mask = 3 +[node name="ConvexFloor" type="StaticBody3D" parent="Floors/ConvexSmall"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -10) +script = null -[node name="MeshInstance" type="MeshInstance" parent="Floors/ConvexSmall/ConvexFloor"] +[node name="MeshInstance3D" type="MeshInstance3D" parent="Floors/ConvexSmall/ConvexFloor"] visible = false -mesh = SubResource( 23 ) -material/0 = null +mesh = SubResource( "23" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="Floors/ConvexSmall/ConvexFloor"] -shape = SubResource( 24 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Floors/ConvexSmall/ConvexFloor"] +shape = SubResource( "24" ) +script = null -[node name="ConvexFloor2" type="StaticBody" parent="Floors/ConvexSmall"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 10 ) -collision_layer = 2 -collision_mask = 3 +[node name="ConvexFloor2" type="StaticBody3D" parent="Floors/ConvexSmall"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 10) +script = null -[node name="MeshInstance" type="MeshInstance" parent="Floors/ConvexSmall/ConvexFloor2"] +[node name="MeshInstance3D" type="MeshInstance3D" parent="Floors/ConvexSmall/ConvexFloor2"] visible = false -mesh = SubResource( 23 ) -material/0 = null +mesh = SubResource( "23" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="Floors/ConvexSmall/ConvexFloor2"] -shape = SubResource( 25 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Floors/ConvexSmall/ConvexFloor2"] +shape = SubResource( "25" ) +script = null -[node name="ConvexBig" type="Spatial" parent="Floors"] +[node name="ConvexBig" type="Node3D" parent="Floors"] +script = null -[node name="ConvexFloor" type="StaticBody" parent="Floors/ConvexBig"] -collision_layer = 2 -collision_mask = 3 +[node name="ConvexFloor" type="StaticBody3D" parent="Floors/ConvexBig"] +script = null -[node name="MeshInstance" type="MeshInstance" parent="Floors/ConvexBig/ConvexFloor"] +[node name="MeshInstance3D" type="MeshInstance3D" parent="Floors/ConvexBig/ConvexFloor"] visible = false -mesh = SubResource( 23 ) -material/0 = null +mesh = SubResource( "23" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="Floors/ConvexBig/ConvexFloor"] -shape = SubResource( 26 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Floors/ConvexBig/ConvexFloor"] +shape = SubResource( "26" ) +script = null -[node name="ConcaveSmall" type="Spatial" parent="Floors"] +[node name="ConcaveSmall" type="Node3D" parent="Floors"] +script = null -[node name="ConcaveFloor" type="StaticBody" parent="Floors/ConcaveSmall"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -10 ) -collision_layer = 2 -collision_mask = 3 +[node name="ConcaveFloor" type="StaticBody3D" parent="Floors/ConcaveSmall"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -10) +script = null -[node name="MeshInstance" type="MeshInstance" parent="Floors/ConcaveSmall/ConcaveFloor"] +[node name="MeshInstance3D" type="MeshInstance3D" parent="Floors/ConcaveSmall/ConcaveFloor"] visible = false -mesh = SubResource( 23 ) -material/0 = null +mesh = SubResource( "23" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="Floors/ConcaveSmall/ConcaveFloor"] -transform = Transform( 25, 0, 0, 0, 1, 0, 0, 0, 10, 0, 0, 0 ) -shape = SubResource( 27 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Floors/ConcaveSmall/ConcaveFloor"] +transform = Transform3D(25, 0, 0, 0, 1, 0, 0, 0, 10, 0, 0, 0) +shape = SubResource( "27" ) +script = null -[node name="ConcaveFloor2" type="StaticBody" parent="Floors/ConcaveSmall"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 10 ) -collision_layer = 2 -collision_mask = 3 +[node name="ConcaveFloor2" type="StaticBody3D" parent="Floors/ConcaveSmall"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 10) +script = null -[node name="MeshInstance" type="MeshInstance" parent="Floors/ConcaveSmall/ConcaveFloor2"] +[node name="MeshInstance3D" type="MeshInstance3D" parent="Floors/ConcaveSmall/ConcaveFloor2"] visible = false -mesh = SubResource( 23 ) -material/0 = null +mesh = SubResource( "23" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="Floors/ConcaveSmall/ConcaveFloor2"] -transform = Transform( 25, 0, 0, 0, 1, 0, 0, 0, 10, 0, 0, 0 ) -shape = SubResource( 27 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Floors/ConcaveSmall/ConcaveFloor2"] +transform = Transform3D(25, 0, 0, 0, 1, 0, 0, 0, 10, 0, 0, 0) +shape = SubResource( "27" ) +script = null -[node name="ConcaveBig" type="Spatial" parent="Floors"] +[node name="ConcaveBig" type="Node3D" parent="Floors"] +script = null -[node name="ConcaveFloor" type="StaticBody" parent="Floors/ConcaveBig"] -collision_layer = 2 -collision_mask = 3 +[node name="ConcaveFloor" type="StaticBody3D" parent="Floors/ConcaveBig"] +script = null -[node name="MeshInstance" type="MeshInstance" parent="Floors/ConcaveBig/ConcaveFloor"] +[node name="MeshInstance3D" type="MeshInstance3D" parent="Floors/ConcaveBig/ConcaveFloor"] visible = false -mesh = SubResource( 23 ) -material/0 = null +mesh = SubResource( "23" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="Floors/ConcaveBig/ConcaveFloor"] -shape = SubResource( 28 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Floors/ConcaveBig/ConcaveFloor"] +shape = SubResource( "28" ) +script = null -[node name="BoxSmall" type="Spatial" parent="Floors"] +[node name="BoxSmall" type="Node3D" parent="Floors"] +script = null -[node name="BoxFloor" type="StaticBody" parent="Floors/BoxSmall"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -10 ) -collision_layer = 2 -collision_mask = 3 +[node name="BoxFloor" type="StaticBody3D" parent="Floors/BoxSmall"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -10) +script = null -[node name="MeshInstance" type="MeshInstance" parent="Floors/BoxSmall/BoxFloor"] +[node name="MeshInstance3D" type="MeshInstance3D" parent="Floors/BoxSmall/BoxFloor"] visible = false -mesh = SubResource( 23 ) -material/0 = null +mesh = SubResource( "23" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="Floors/BoxSmall/BoxFloor"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0 ) -shape = SubResource( 29 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Floors/BoxSmall/BoxFloor"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0) +shape = SubResource( "29" ) +script = null -[node name="BoxFloor2" type="StaticBody" parent="Floors/BoxSmall"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 10 ) -collision_layer = 2 -collision_mask = 3 +[node name="BoxFloor2" type="StaticBody3D" parent="Floors/BoxSmall"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 10) +script = null -[node name="MeshInstance" type="MeshInstance" parent="Floors/BoxSmall/BoxFloor2"] +[node name="MeshInstance3D" type="MeshInstance3D" parent="Floors/BoxSmall/BoxFloor2"] visible = false -mesh = SubResource( 23 ) -material/0 = null +mesh = SubResource( "23" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="Floors/BoxSmall/BoxFloor2"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0 ) -shape = SubResource( 29 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Floors/BoxSmall/BoxFloor2"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0) +shape = SubResource( "29" ) +script = null -[node name="BoxBig" type="Spatial" parent="Floors"] +[node name="BoxBig" type="Node3D" parent="Floors"] +script = null -[node name="BoxFloor" type="StaticBody" parent="Floors/BoxBig"] -collision_layer = 2 -collision_mask = 3 +[node name="BoxFloor" type="StaticBody3D" parent="Floors/BoxBig"] +script = null -[node name="MeshInstance" type="MeshInstance" parent="Floors/BoxBig/BoxFloor"] +[node name="MeshInstance3D" type="MeshInstance3D" parent="Floors/BoxBig/BoxFloor"] visible = false -mesh = SubResource( 23 ) -material/0 = null +mesh = SubResource( "23" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="Floors/BoxBig/BoxFloor"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0 ) -shape = SubResource( 30 ) +[node name="CollisionShape" type="CollisionShape3D" parent="Floors/BoxBig/BoxFloor"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, -1, 0) +shape = SubResource( "30" ) +script = null -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.604, 22.124 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.604, 22.124) far = 1000.0 -script = ExtResource( 4 ) +script = ExtResource( "4" ) -[node name="OmniLight" type="OmniLight" parent="Camera"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 14.6965, -5.95932 ) +[node name="OmniLight" type="OmniLight3D" parent="Camera3D"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 14.6965, -5.95932) omni_range = 50.0 +script = null diff --git a/3d/physics_tests/tests/functional/test_rigidbody_impact.tscn b/3d/physics_tests/tests/functional/test_rigidbody_impact.tscn index 8594e1f5ac4..57926320190 100644 --- a/3d/physics_tests/tests/functional/test_rigidbody_impact.tscn +++ b/3d/physics_tests/tests/functional/test_rigidbody_impact.tscn @@ -1,101 +1,109 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=11 format=3 uid="uid://cw38dssdgqkti"] -[ext_resource path="res://utils/rigidbody_pick.gd" type="Script" id=1] -[ext_resource path="res://test.gd" type="Script" id=2] -[ext_resource path="res://tests/static_scene_plane.tscn" type="PackedScene" id=3] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=4] +[ext_resource type="Script" path="res://utils/rigidbody_pick.gd" id="1"] +[ext_resource type="Script" path="res://test.gd" id="2"] +[ext_resource type="PackedScene" uid="uid://3gkujifjokqw" path="res://tests/static_scene_plane.tscn" id="3"] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="4"] -[sub_resource type="BoxShape" id=1] +[sub_resource type="BoxShape3D" id="1"] -[sub_resource type="CapsuleShape" id=2] +[sub_resource type="CapsuleShape3D" id="2"] -[sub_resource type="CylinderShape" id=3] +[sub_resource type="CylinderShape3D" id="3"] -[sub_resource type="ConvexPolygonShape" id=4] -points = PoolVector3Array( -0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0 ) +[sub_resource type="ConvexPolygonShape3D" id="4"] +points = PackedVector3Array(-0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0) -[sub_resource type="SphereShape" id=5] +[sub_resource type="SphereShape3D" id="5"] -[sub_resource type="RayShape" id=6] +[sub_resource type="RayShape3D" id="6"] -[node name="Test" type="Spatial"] -script = ExtResource( 2 ) +[node name="Test" type="Node3D"] +script = ExtResource( "2" ) -[node name="DynamicShapes" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.35591, 0 ) +[node name="DynamicShapes" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.35591, 0) +script = null -[node name="RigidBodyBox" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 1, 0 ) +[node name="RigidBodyBox" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 1, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyBox"] -transform = Transform( 0.6, 0, 0, 0, 1, 0, 0, 0, 0.6, 0, 0, 0 ) -shape = SubResource( 1 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyBox"] +transform = Transform3D(0.6, 0, 0, 0, 1, 0, 0, 0, 0.6, 0, 0, 0) +shape = SubResource( "1" ) +script = null -[node name="RigidBodyCapsule" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 1.0034, 0 ) +[node name="RigidBodyCapsule" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 1.0034, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyCapsule"] -transform = Transform( 0.8, 0, 0, 0, -3.49691e-08, -0.8, 0, 0.8, -3.49691e-08, 0, 0, 0 ) -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyCapsule"] +transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0) +shape = SubResource( "2" ) +script = null -[node name="RigidBodyCylinder" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.0034, 0 ) +[node name="RigidBodyCylinder" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1.0034, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyCylinder"] -transform = Transform( 0.8, 0, 0, 0, 1, 0, 0, 0, 0.8, 0, 0, 0 ) -shape = SubResource( 3 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyCylinder"] +transform = Transform3D(0.8, 0, 0, 0, 1, 0, 0, 0, 0.8, 0, 0, 0) +shape = SubResource( "3" ) +script = null -[node name="RigidBodyConvex" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 1.97795, 0 ) +[node name="RigidBodyConvex" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 1.97795, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyConvex"] -transform = Transform( 1.5, 0, 0, 0, 2, 0, 0, 0, 1.5, 0, 0, 0 ) -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyConvex"] +transform = Transform3D(1.5, 0, 0, 0, 2, 0, 0, 0, 1.5, 0, 0, 0) +shape = SubResource( "4" ) +script = null -[node name="RigidBodySphere" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 1, 0 ) +[node name="RigidBodySphere" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 1, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodySphere"] -transform = Transform( 0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0 ) -shape = SubResource( 5 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodySphere"] +transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0) +shape = SubResource( "5" ) +script = null -[node name="RigidBodyRay" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 0 ) +[node name="RigidBodyRay" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 1, 0) axis_lock_angular_x = true axis_lock_angular_y = true axis_lock_angular_z = true -script = ExtResource( 1 ) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyRay"] -transform = Transform( 0.8, 0, 0, 0, 0, -0.8, 0, 0.8, 0, 0, 0, 0 ) -shape = SubResource( 6 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyRay"] +transform = Transform3D(0.8, 0, 0, 0, 0, -0.8, 0, 0.8, 0, 0, 0, 0) +shape = SubResource( "6" ) +script = null -[node name="StaticBodyPlane" parent="." instance=ExtResource( 3 )] +[node name="StaticBodyPlane" parent="." instance=ExtResource( "3" )] -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.604, 22.124 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 3.604, 22.124) fov = 35.0 -script = ExtResource( 4 ) +script = ExtResource( "4" ) -[node name="OmniLight" type="OmniLight" parent="Camera"] +[node name="OmniLight" type="OmniLight3D" parent="Camera3D"] omni_range = 50.0 +script = null diff --git a/3d/physics_tests/tests/functional/test_shapes.tscn b/3d/physics_tests/tests/functional/test_shapes.tscn index fb4222ac1e0..75d4f07e95d 100644 --- a/3d/physics_tests/tests/functional/test_shapes.tscn +++ b/3d/physics_tests/tests/functional/test_shapes.tscn @@ -1,71 +1,78 @@ -[gd_scene load_steps=10 format=2] +[gd_scene load_steps=10 format=3 uid="uid://dmvgjuovguvg7"] -[ext_resource path="res://utils/rigidbody_pick.gd" type="Script" id=1] -[ext_resource path="res://test.gd" type="Script" id=2] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=4] -[ext_resource path="res://tests/static_scene.tscn" type="PackedScene" id=6] +[ext_resource type="Script" path="res://utils/rigidbody_pick.gd" id="1"] +[ext_resource type="Script" path="res://test.gd" id="2"] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="4"] +[ext_resource type="PackedScene" uid="uid://cl2vpuxqgnylc" path="res://tests/static_scene.tscn" id="6"] -[sub_resource type="BoxShape" id=1] +[sub_resource type="BoxShape3D" id="1"] -[sub_resource type="CapsuleShape" id=2] +[sub_resource type="CapsuleShape3D" id="2"] -[sub_resource type="CylinderShape" id=3] +[sub_resource type="CylinderShape3D" id="3"] -[sub_resource type="ConvexPolygonShape" id=4] -points = PoolVector3Array( -0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0 ) +[sub_resource type="ConvexPolygonShape3D" id="4"] +points = PackedVector3Array(-0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0) -[sub_resource type="SphereShape" id=5] +[sub_resource type="SphereShape3D" id="5"] -[node name="Test" type="Spatial"] -script = ExtResource( 2 ) +[node name="Test" type="Node3D"] +script = ExtResource( "2" ) -[node name="DynamicShapes" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.35591, 0 ) +[node name="DynamicShapes" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 9.35591, 0) +script = null -[node name="RigidBodyBox" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 0 ) -script = ExtResource( 1 ) +[node name="RigidBodyBox" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -6, 0, 0) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyBox"] -transform = Transform( 0.579556, 0.0885213, 0.145926, 0, 0.939693, -0.205212, -0.155291, 0.330366, 0.544604, 0, 0, 0 ) -shape = SubResource( 1 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyBox"] +transform = Transform3D(0.579556, 0.0885213, 0.145926, 0, 0.939693, -0.205212, -0.155291, 0.330366, 0.544604, 0, 0, 0) +shape = SubResource( "1" ) +script = null -[node name="RigidBodyCapsule" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 0, 0 ) -script = ExtResource( 1 ) +[node name="RigidBodyCapsule" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -3, 0, 0) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyCapsule"] -transform = Transform( 0.8, 0, 0, 0, -1.30337e-07, -0.8, 0, 0.8, -1.30337e-07, 0, 0, 0 ) -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyCapsule"] +transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0) +shape = SubResource( "2" ) +script = null -[node name="RigidBodyCylinder" type="RigidBody" parent="DynamicShapes"] -script = ExtResource( 1 ) +[node name="RigidBodyCylinder" type="RigidBody3D" parent="DynamicShapes"] +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyCylinder"] -transform = Transform( 0.772741, -0.258819, 2.59821e-08, 0.2, 0.933013, -0.207055, 0.0535898, 0.25, 0.772741, 0, 0, 0 ) -shape = SubResource( 3 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyCylinder"] +transform = Transform3D(0.772741, -0.258819, 2.59821e-08, 0.2, 0.933013, -0.207055, 0.0535898, 0.25, 0.772741, 0, 0, 0) +shape = SubResource( "3" ) +script = null -[node name="RigidBodyConvex" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 0 ) -script = ExtResource( 1 ) +[node name="RigidBodyConvex" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 0) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyConvex"] -transform = Transform( 1.5, 0, 0, 0, 1.93185, -0.388229, 0, 0.517638, 1.44889, 0, 0, 0 ) -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyConvex"] +transform = Transform3D(1.5, 0, 0, 0, 1.93185, -0.388229, 0, 0.517638, 1.44889, 0, 0, 0) +shape = SubResource( "4" ) +script = null -[node name="RigidBodySphere" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 0 ) -script = ExtResource( 1 ) +[node name="RigidBodySphere" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 0) +script = ExtResource( "1" ) -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodySphere"] -transform = Transform( 0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0 ) -shape = SubResource( 5 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodySphere"] +transform = Transform3D(0.8, 0, 0, 0, 0.8, 0, 0, 0, 0.8, 0, 0, 0) +shape = SubResource( "5" ) +script = null -[node name="StaticScene" parent="." instance=ExtResource( 6 )] +[node name="StaticScene" parent="." instance=ExtResource( "6" )] -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.53602, 22.1236 ) -script = ExtResource( 4 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.53602, 22.1236) +script = ExtResource( "4" ) -[node name="OmniLight" type="OmniLight" parent="Camera"] +[node name="OmniLight" type="OmniLight3D" parent="Camera3D"] omni_range = 50.0 +script = null diff --git a/3d/physics_tests/tests/functional/test_stack.gd b/3d/physics_tests/tests/functional/test_stack.gd index f0afe44e9b0..e860be8cc15 100644 --- a/3d/physics_tests/tests/functional/test_stack.gd +++ b/3d/physics_tests/tests/functional/test_stack.gd @@ -1,11 +1,11 @@ extends Test -export(int, 1, 100) var height = 10 -export(int, 1, 100) var width = 1 -export(int, 1, 100) var depth = 1 -export(Vector3) var box_size = Vector3(1.0, 1.0, 1.0) -export(Vector3) var box_spacing = Vector3(0.0, 0.0, 0.0) +@export_range(1, 100) var height = 10 +@export_range(1, 100) var width = 1 +@export_range(1, 100) var depth = 1 +@export var box_size = Vector3(1.0, 1.0, 1.0) +@export var box_spacing = Vector3(0.0, 0.0, 0.0) func _ready(): @@ -20,7 +20,7 @@ func _create_stack(): var pos_y = 0.5 * box_size.y + box_spacing.y for level in height: - var row_node = Spatial.new() + var row_node = Node3D.new() row_node.transform.origin = Vector3(0.0, pos_y, 0.0) row_node.name = "Row%02d" % (level + 1) root_node.add_child(row_node) diff --git a/3d/physics_tests/tests/functional/test_stack.tscn b/3d/physics_tests/tests/functional/test_stack.tscn index 8e6da324013..084ea7963c3 100644 --- a/3d/physics_tests/tests/functional/test_stack.tscn +++ b/3d/physics_tests/tests/functional/test_stack.tscn @@ -1,16 +1,17 @@ -[gd_scene load_steps=4 format=2] +[gd_scene load_steps=4 format=3 uid="uid://dwn10myg4lqtw"] -[ext_resource path="res://tests/functional/test_stack.gd" type="Script" id=1] -[ext_resource path="res://tests/static_scene_plane.tscn" type="PackedScene" id=2] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=4] +[ext_resource type="Script" path="res://tests/functional/test_stack.gd" id="1"] +[ext_resource type="PackedScene" uid="uid://3gkujifjokqw" path="res://tests/static_scene_plane.tscn" id="2"] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="4"] -[node name="Test" type="Spatial"] -script = ExtResource( 1 ) +[node name="Test" type="Node3D"] +script = ExtResource( "1" ) -[node name="Stack" type="Spatial" parent="."] +[node name="Stack" type="Node3D" parent="."] +script = null -[node name="StaticBodyPlane" parent="." instance=ExtResource( 2 )] +[node name="StaticBodyPlane" parent="." instance=ExtResource( "2" )] -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.53602, 12.2684 ) -script = ExtResource( 4 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 4.53602, 12.2684) +script = ExtResource( "4" ) diff --git a/3d/physics_tests/tests/performance/test_perf_broadphase.gd b/3d/physics_tests/tests/performance/test_perf_broadphase.gd index c7232612abb..e55da407748 100644 --- a/3d/physics_tests/tests/performance/test_perf_broadphase.gd +++ b/3d/physics_tests/tests/performance/test_perf_broadphase.gd @@ -4,9 +4,9 @@ extends Test const BOX_SIZE = Vector3(0.8, 0.8, 0.8) const BOX_SPACE = Vector3(1.0, 1.0, 1.0) -export(int, 1, 1000) var row_size = 20 -export(int, 1, 1000) var column_size = 20 -export(int, 1, 1000) var depth_size = 20 +@export_range(1, 1000) var row_size = 20 +@export_range(1, 1000) var column_size = 20 +@export_range(1, 1000) var depth_size = 20 var _objects = [] @@ -16,7 +16,7 @@ var _log_physics_time_start = 0 func _ready(): - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -24,10 +24,10 @@ func _ready(): _create_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -35,10 +35,10 @@ func _ready(): _add_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -46,10 +46,10 @@ func _ready(): _move_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -57,10 +57,10 @@ func _ready(): _remove_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -72,9 +72,11 @@ func _exit_tree(): object.free() -func _physics_process(_delta): +func _physics_process(delta): + super._physics_process(delta) + if _log_physics: - var time = OS.get_ticks_usec() + var time = Time.get_ticks_usec() var time_delta = time - _log_physics_time var time_total = time - _log_physics_time_start _log_physics_time = time @@ -83,7 +85,7 @@ func _physics_process(_delta): func _log_physics_start(): _log_physics = true - _log_physics_time_start = OS.get_ticks_usec() + _log_physics_time_start = Time.get_ticks_usec() _log_physics_time = _log_physics_time_start @@ -95,7 +97,7 @@ func _create_objects(): _objects.clear() Log.print_log("* Creating objects...") - var timer = OS.get_ticks_usec() + var timer = Time.get_ticks_usec() var pos_x = -0.5 * (row_size - 1) * BOX_SPACE.x @@ -118,7 +120,7 @@ func _create_objects(): pos_x += BOX_SPACE.x - timer = OS.get_ticks_usec() - timer + timer = Time.get_ticks_usec() - timer Log.print_log(" Create Time: %.3f ms" % (0.001 * timer)) @@ -126,23 +128,23 @@ func _add_objects(): var root_node = $Objects Log.print_log("* Adding objects...") - var timer = OS.get_ticks_usec() + var timer = Time.get_ticks_usec() for object in _objects: root_node.add_child(object) - timer = OS.get_ticks_usec() - timer + timer = Time.get_ticks_usec() - timer Log.print_log(" Add Time: %.3f ms" % (0.001 * timer)) func _move_objects(): Log.print_log("* Moving objects...") - var timer = OS.get_ticks_usec() + var timer = Time.get_ticks_usec() for object in _objects: object.transform.origin += BOX_SPACE - timer = OS.get_ticks_usec() - timer + timer = Time.get_ticks_usec() - timer Log.print_log(" Move Time: %.3f ms" % (0.001 * timer)) @@ -150,12 +152,12 @@ func _remove_objects(): var root_node = $Objects Log.print_log("* Removing objects...") - var timer = OS.get_ticks_usec() + var timer = Time.get_ticks_usec() # Remove objects in reversed order to avoid the overhead of changing children index in parent. var object_count = _objects.size() for object_index in range(object_count): root_node.remove_child(_objects[object_count - object_index - 1]) - timer = OS.get_ticks_usec() - timer + timer = Time.get_ticks_usec() - timer Log.print_log(" Remove Time: %.3f ms" % (0.001 * timer)) diff --git a/3d/physics_tests/tests/performance/test_perf_broadphase.tscn b/3d/physics_tests/tests/performance/test_perf_broadphase.tscn index 46a6db66267..1bfe7811b08 100644 --- a/3d/physics_tests/tests/performance/test_perf_broadphase.tscn +++ b/3d/physics_tests/tests/performance/test_perf_broadphase.tscn @@ -1,12 +1,13 @@ -[gd_scene load_steps=2 format=2] +[gd_scene load_steps=2 format=3 uid="uid://d3h64row8tfqc"] -[ext_resource path="res://tests/performance/test_perf_broadphase.gd" type="Script" id=1] +[ext_resource type="Script" path="res://tests/performance/test_perf_broadphase.gd" id="1"] -[node name="Test" type="Spatial"] -script = ExtResource( 1 ) +[node name="Test" type="Node3D"] +script = ExtResource( "1" ) _enable_debug_collision = false row_size = 50 column_size = 50 depth_size = 50 -[node name="Objects" type="Spatial" parent="."] +[node name="Objects" type="Node3D" parent="."] +script = null diff --git a/3d/physics_tests/tests/performance/test_perf_contact_islands.tscn b/3d/physics_tests/tests/performance/test_perf_contact_islands.tscn index 0359c912e9b..22bfdc89dc7 100644 --- a/3d/physics_tests/tests/performance/test_perf_contact_islands.tscn +++ b/3d/physics_tests/tests/performance/test_perf_contact_islands.tscn @@ -1,142 +1,176 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=11 format=3 uid="uid://ctni5eafiy2bu"] -[ext_resource path="res://tests/performance/test_perf_contacts.gd" type="Script" id=1] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=3] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=4] -[ext_resource path="res://tests/static_scene.tscn" type="PackedScene" id=5] +[ext_resource type="Script" path="res://tests/performance/test_perf_contacts.gd" id="1"] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="3"] +[ext_resource type="PackedScene" uid="uid://b1ihqm3x8jru" path="res://tests/test_options.tscn" id="4"] +[ext_resource type="PackedScene" uid="uid://cl2vpuxqgnylc" path="res://tests/static_scene.tscn" id="5"] -[sub_resource type="BoxShape" id=1] -extents = Vector3( 0.5, 0.5, 0.5 ) +[sub_resource type="BoxShape3D" id="1"] +size = Vector3(1, 1, 1) -[sub_resource type="CapsuleShape" id=2] +[sub_resource type="CapsuleShape3D" id="2"] radius = 0.5 height = 0.5 -[sub_resource type="CylinderShape" id=3] +[sub_resource type="CylinderShape3D" id="3"] radius = 0.5 height = 1.0 -[sub_resource type="ConvexPolygonShape" id=4] -points = PoolVector3Array( -0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0 ) +[sub_resource type="ConvexPolygonShape3D" id="4"] +points = PackedVector3Array(-0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0) -[sub_resource type="SphereShape" id=5] +[sub_resource type="SphereShape3D" id="5"] radius = 0.5 -[sub_resource type="PlaneShape" id=6] +[sub_resource type="WorldMarginShape3D" id="6"] -[node name="Test" type="Spatial"] -script = ExtResource( 1 ) +[node name="Test" type="Node3D"] +script = ExtResource( "1" ) _enable_debug_collision = false -spawns = [ "SpawnTarget1", "SpawnTarget2", "SpawnTarget3", "SpawnTarget4", "SpawnTarget5", "SpawnTarget6", "SpawnTarget7", "SpawnTarget8", "SpawnTarget9", "SpawnTarget10", "SpawnTarget11", "SpawnTarget12", "SpawnTarget13", "SpawnTarget14", "SpawnTarget15", "SpawnTarget16" ] +spawns = ["SpawnTarget1", "SpawnTarget2", "SpawnTarget3", "SpawnTarget4", "SpawnTarget5", "SpawnTarget6", "SpawnTarget7", "SpawnTarget8", "SpawnTarget9", "SpawnTarget10", "SpawnTarget11", "SpawnTarget12", "SpawnTarget13", "SpawnTarget14", "SpawnTarget15", "SpawnTarget16"] spawn_count = 200 -spawn_randomize = Vector3( 0.2, 0.2, 0.2 ) +spawn_randomize = Vector3(0.2, 0.2, 0.2) -[node name="Options" parent="." instance=ExtResource( 4 )] +[node name="Options" parent="." instance=ExtResource( "4" )] +items = [] -[node name="SpawnTarget1" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 40, 7, -37.715 ) +[node name="SpawnTarget1" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 40, 7, -37.715) +script = null -[node name="SpawnTarget2" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 40, 7, -19.7248 ) +[node name="SpawnTarget2" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 40, 7, -19.7248) +script = null -[node name="SpawnTarget3" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 21.4903, 7, -37.715 ) +[node name="SpawnTarget3" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21.4903, 7, -37.715) +script = null -[node name="SpawnTarget4" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 21.4903, 7, -19.7248 ) +[node name="SpawnTarget4" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21.4903, 7, -19.7248) +script = null -[node name="SpawnTarget5" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 40, 7, 10.7172 ) +[node name="SpawnTarget5" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 40, 7, 10.7172) +script = null -[node name="SpawnTarget6" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 40, 7, 28.7073 ) +[node name="SpawnTarget6" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 40, 7, 28.7073) +script = null -[node name="SpawnTarget7" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 21.4903, 7, 10.7172 ) +[node name="SpawnTarget7" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21.4903, 7, 10.7172) +script = null -[node name="SpawnTarget8" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 21.4903, 7, 28.7073 ) +[node name="SpawnTarget8" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 21.4903, 7, 28.7073) +script = null -[node name="SpawnTarget9" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -19.8583, 7, 10.7172 ) +[node name="SpawnTarget9" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -19.8583, 7, 10.7172) +script = null -[node name="SpawnTarget10" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -19.8583, 7, 28.7073 ) +[node name="SpawnTarget10" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -19.8583, 7, 28.7073) +script = null -[node name="SpawnTarget11" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -38.368, 7, 10.7172 ) +[node name="SpawnTarget11" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38.368, 7, 10.7172) +script = null -[node name="SpawnTarget12" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -38.368, 7, 28.7073 ) +[node name="SpawnTarget12" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38.368, 7, 28.7073) +script = null -[node name="SpawnTarget13" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -19.8583, 7, -38.798 ) +[node name="SpawnTarget13" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -19.8583, 7, -38.798) +script = null -[node name="SpawnTarget14" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -19.8583, 7, -20.8078 ) +[node name="SpawnTarget14" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -19.8583, 7, -20.8078) +script = null -[node name="SpawnTarget15" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -38.368, 7, -38.798 ) +[node name="SpawnTarget15" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38.368, 7, -38.798) +script = null -[node name="SpawnTarget16" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -38.368, 7, -20.8078 ) +[node name="SpawnTarget16" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -38.368, 7, -20.8078) +script = null -[node name="DynamicShapes" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -26.3192, 1.2359, 38.0117 ) +[node name="DynamicShapes" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26.3192, 1.2359, 38.0117) +script = null -[node name="RigidBodyBox" type="RigidBody" parent="DynamicShapes"] +[node name="RigidBodyBox" type="RigidBody3D" parent="DynamicShapes"] +script = null -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyBox"] -shape = SubResource( 1 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyBox"] +shape = SubResource( "1" ) +script = null -[node name="RigidBodyCapsule" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0 ) +[node name="RigidBodyCapsule" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0) +script = null -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyCapsule"] -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyCapsule"] +shape = SubResource( "2" ) +script = null -[node name="RigidBodyCylinder" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 0 ) +[node name="RigidBodyCylinder" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 0) +script = null -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyCylinder"] -shape = SubResource( 3 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyCylinder"] +shape = SubResource( "3" ) +script = null -[node name="RigidBodyConvex" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 0 ) +[node name="RigidBodyConvex" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 0) +script = null -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyConvex"] -transform = Transform( 0.5, 0, 0, 0, 0.5, 0, 0, 0, 0.5, 0, 0, 0 ) -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyConvex"] +transform = Transform3D(0.5, 0, 0, 0, 0.5, 0, 0, 0, 0.5, 0, 0, 0) +shape = SubResource( "4" ) +script = null -[node name="RigidBodySphere" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 0, 0 ) +[node name="RigidBodySphere" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 0, 0) +script = null -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodySphere"] -shape = SubResource( 5 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodySphere"] +shape = SubResource( "5" ) +script = null -[node name="StaticScene" parent="." instance=ExtResource( 5 )] +[node name="StaticScene" parent="." instance=ExtResource( "5" )] -[node name="StaticBodyWalls" type="StaticBody" parent="."] +[node name="StaticBodyWalls" type="StaticBody3D" parent="."] +script = null -[node name="CollisionShape1" type="CollisionShape" parent="StaticBodyWalls"] -transform = Transform( -1.62921e-07, 1, 0, -1, -1.62921e-07, 0, 0, 0, 1, -50, 0, 0 ) -shape = SubResource( 6 ) +[node name="CollisionShape1" type="CollisionShape3D" parent="StaticBodyWalls"] +transform = Transform3D(-1.62921e-07, 1, 0, -1, -1.62921e-07, 0, 0, 0, 1, -50, 0, 0) +shape = SubResource( "6" ) +script = null -[node name="CollisionShape2" type="CollisionShape" parent="StaticBodyWalls"] -transform = Transform( -1.62921e-07, -1, 0, 1, -1.62921e-07, 0, 0, 0, 1, 50, 0, 0 ) -shape = SubResource( 6 ) +[node name="CollisionShape2" type="CollisionShape3D" parent="StaticBodyWalls"] +transform = Transform3D(-1.62921e-07, -1, 0, 1, -1.62921e-07, 0, 0, 0, 1, 50, 0, 0) +shape = SubResource( "6" ) +script = null -[node name="CollisionShape3" type="CollisionShape" parent="StaticBodyWalls"] -transform = Transform( 2.6543e-14, 1.62921e-07, 1, 1, -1.62921e-07, 1.56125e-19, 1.62921e-07, 1, -1.62921e-07, 0, 0, -50 ) -shape = SubResource( 6 ) +[node name="CollisionShape3" type="CollisionShape3D" parent="StaticBodyWalls"] +transform = Transform3D(2.6543e-14, 1.62921e-07, 1, 1, -1.62921e-07, 1.56125e-19, 1.62921e-07, 1, -1.62921e-07, 0, 0, -50) +shape = SubResource( "6" ) +script = null -[node name="CollisionShape4" type="CollisionShape" parent="StaticBodyWalls"] -transform = Transform( 2.6543e-14, 1.62921e-07, -1, 1, -1.62921e-07, -1.56125e-19, -1.62921e-07, -1, -1.62921e-07, 0, 0, 50 ) -shape = SubResource( 6 ) +[node name="CollisionShape4" type="CollisionShape3D" parent="StaticBodyWalls"] +transform = Transform3D(2.6543e-14, 1.62921e-07, -1, 1, -1.62921e-07, -1.56125e-19, -1.62921e-07, -1, -1.62921e-07, 0, 0, 50) +shape = SubResource( "6" ) +script = null -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 0.881757, 0.471705, 0, -0.471705, 0.881757, 0, 20.4125, 41.0426 ) -script = ExtResource( 3 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 0.881757, 0.471705, 0, -0.471705, 0.881757, 0, 20.4125, 41.0426) +script = ExtResource( "3" ) -[node name="OmniLight" type="OmniLight" parent="Camera"] +[node name="OmniLight" type="OmniLight3D" parent="Camera3D"] omni_range = 80.0 +script = null diff --git a/3d/physics_tests/tests/performance/test_perf_contacts.gd b/3d/physics_tests/tests/performance/test_perf_contacts.gd index 074e39f3aa7..72d1f35b4d3 100644 --- a/3d/physics_tests/tests/performance/test_perf_contacts.gd +++ b/3d/physics_tests/tests/performance/test_perf_contacts.gd @@ -8,9 +8,9 @@ const OPTION_TYPE_CAPSULE = "Shape type/Capsule" const OPTION_TYPE_CYLINDER = "Shape type/Cylinder" const OPTION_TYPE_CONVEX = "Shape type/Convex" -export(Array, NodePath) var spawns = Array() -export(int) var spawn_count = 100 -export(Vector3) var spawn_randomize +@export var spawns = [] +@export var spawn_count = 100 +@export var spawn_randomize = Vector3.ZERO var _object_templates = [] @@ -20,7 +20,7 @@ var _log_physics_time_start = 0 func _ready(): - yield(start_timer(0.5), "timeout") + await start_timer(0.5).timeout if is_timer_canceled(): return @@ -35,9 +35,9 @@ func _ready(): $Options.add_menu_item(OPTION_TYPE_CAPSULE) $Options.add_menu_item(OPTION_TYPE_CYLINDER) $Options.add_menu_item(OPTION_TYPE_CONVEX) - $Options.connect("option_selected", self, "_on_option_selected") + $Options.connect("option_selected", Callable(self, "_on_option_selected")) - _start_all_types() + await _start_all_types() func _exit_tree(): @@ -45,9 +45,11 @@ func _exit_tree(): object_template.free() -func _physics_process(_delta): +func _physics_process(delta): + super._physics_process(delta) + if _log_physics: - var time = OS.get_ticks_usec() + var time = Time.get_ticks_usec() var time_delta = time - _log_physics_time var time_total = time - _log_physics_time_start _log_physics_time = time @@ -56,7 +58,7 @@ func _physics_process(_delta): func _log_physics_start(): _log_physics = true - _log_physics_time_start = OS.get_ticks_usec() + _log_physics_time_start = Time.get_ticks_usec() _log_physics_time = _log_physics_time_start @@ -71,17 +73,17 @@ func _on_option_selected(option): match option: OPTION_TYPE_ALL: - _start_all_types() + await _start_all_types() OPTION_TYPE_BOX: - _start_type(_find_type_index("Box")) + await _start_type(_find_type_index("Box")) OPTION_TYPE_SPHERE: - _start_type(_find_type_index("Sphere")) + await _start_type(_find_type_index("Sphere")) OPTION_TYPE_CAPSULE: - _start_type(_find_type_index("Capsule")) + await _start_type(_find_type_index("Capsule")) OPTION_TYPE_CYLINDER: - _start_type(_find_type_index("Cylinder")) + await _start_type(_find_type_index("Cylinder")) OPTION_TYPE_CONVEX: - _start_type(_find_type_index("Convex")) + await _start_type(_find_type_index("Convex")) func _find_type_index(type_name): @@ -100,7 +102,7 @@ func _start_type(type_index): if type_index >= _object_templates.size(): return - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -108,10 +110,10 @@ func _start_type(type_index): _spawn_objects(type_index) - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout if is_timer_canceled(): return @@ -119,10 +121,10 @@ func _start_type(type_index): _activate_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(5.0), "timeout") + await start_timer(5.0).timeout if is_timer_canceled(): return @@ -130,17 +132,17 @@ func _start_type(type_index): _despawn_objects() - yield(wait_for_physics_ticks(5), "wait_done") + await wait_for_physics_ticks(5).wait_done _log_physics_stop() - yield(start_timer(1.0), "timeout") + await start_timer(1.0).timeout func _start_all_types(): Log.print_log("* Start all types.") for type_index in range(_object_templates.size()): - yield(_start_type(type_index), "completed") + await _start_type(type_index) if is_timer_canceled(): return @@ -150,7 +152,7 @@ func _start_all_types(): func _spawn_objects(type_index): var template_node = _object_templates[type_index] - Log.print_log("* Spawning: " + template_node.name) + Log.print_log("* Spawning: " + String(template_node.name)) for spawn in spawns: var spawn_parent = get_node(spawn) @@ -160,7 +162,7 @@ func _spawn_objects(type_index): var collision = template_node.get_child(0).duplicate() collision.shape = collision.shape.duplicate() var body = template_node.duplicate() - body.transform = Transform.IDENTITY + body.transform = Transform3D.IDENTITY if spawn_randomize != Vector3.ZERO: body.transform.origin.x = randf() * spawn_randomize.x body.transform.origin.y = randf() * spawn_randomize.y @@ -180,7 +182,7 @@ func _activate_objects(): var spawn_parent = get_node(spawn) for node_index in range(spawn_parent.get_child_count()): - var node = spawn_parent.get_child(node_index) as RigidBody + var node = spawn_parent.get_child(node_index) as RigidBody3D node.set_sleeping(false) diff --git a/3d/physics_tests/tests/performance/test_perf_contacts.tscn b/3d/physics_tests/tests/performance/test_perf_contacts.tscn index 1b472b4e5fc..98e04e5aba9 100644 --- a/3d/physics_tests/tests/performance/test_perf_contacts.tscn +++ b/3d/physics_tests/tests/performance/test_perf_contacts.tscn @@ -1,90 +1,109 @@ -[gd_scene load_steps=11 format=2] +[gd_scene load_steps=11 format=3 uid="uid://4wsisagg0r7r"] -[ext_resource path="res://tests/static_scene.tscn" type="PackedScene" id=1] -[ext_resource path="res://tests/performance/test_perf_contacts.gd" type="Script" id=2] -[ext_resource path="res://tests/test_options.tscn" type="PackedScene" id=4] -[ext_resource path="res://utils/camera_orbit.gd" type="Script" id=5] +[ext_resource type="PackedScene" uid="uid://cl2vpuxqgnylc" path="res://tests/static_scene.tscn" id="1"] +[ext_resource type="Script" path="res://tests/performance/test_perf_contacts.gd" id="2"] +[ext_resource type="PackedScene" uid="uid://b1ihqm3x8jru" path="res://tests/test_options.tscn" id="4"] +[ext_resource type="Script" path="res://utils/camera_orbit.gd" id="5"] -[sub_resource type="BoxShape" id=1] +[sub_resource type="BoxShape3D" id="1"] -[sub_resource type="CapsuleShape" id=2] +[sub_resource type="CapsuleShape3D" id="2"] -[sub_resource type="CylinderShape" id=3] +[sub_resource type="CylinderShape3D" id="3"] -[sub_resource type="ConvexPolygonShape" id=4] -points = PoolVector3Array( -0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0 ) +[sub_resource type="ConvexPolygonShape3D" id="4"] +points = PackedVector3Array(-0.7, 0, -0.7, -0.3, 0, 0.8, 0.8, 0, -0.3, 0, -1, 0) -[sub_resource type="SphereShape" id=5] +[sub_resource type="SphereShape3D" id="5"] -[sub_resource type="PlaneShape" id=6] +[sub_resource type="WorldMarginShape3D" id="6"] -[node name="Test" type="Spatial"] -script = ExtResource( 2 ) +[node name="Test" type="Node3D"] +script = ExtResource( "2" ) _enable_debug_collision = false -spawns = [ "SpawnTarget1" ] +spawns = ["SpawnTarget1"] spawn_count = 500 -spawn_randomize = Vector3( 0.2, 0.2, 0.2 ) +spawn_randomize = Vector3(0.2, 0.2, 0.2) -[node name="Options" parent="." instance=ExtResource( 4 )] +[node name="Options" parent="." instance=ExtResource( "4" )] +items = [] -[node name="SpawnTarget1" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7.06418, -1.24693 ) +[node name="SpawnTarget1" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 7.06418, -1.24693) +script = null -[node name="DynamicShapes" type="Spatial" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -26.3192, 1.2359, 38.0117 ) +[node name="DynamicShapes" type="Node3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, -26.3192, 1.2359, 38.0117) +script = null -[node name="RigidBodyBox" type="RigidBody" parent="DynamicShapes"] +[node name="RigidBodyBox" type="RigidBody3D" parent="DynamicShapes"] +script = null -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyBox"] -shape = SubResource( 1 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyBox"] +shape = SubResource( "1" ) +script = null -[node name="RigidBodyCapsule" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0 ) +[node name="RigidBodyCapsule" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 2, 0, 0) +script = null -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyCapsule"] -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyCapsule"] +shape = SubResource( "2" ) +script = null -[node name="RigidBodyCylinder" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 0 ) +[node name="RigidBodyCylinder" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 4, 0, 0) +script = null -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyCylinder"] -shape = SubResource( 3 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyCylinder"] +shape = SubResource( "3" ) +script = null -[node name="RigidBodyConvex" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 0 ) +[node name="RigidBodyConvex" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 6, 0, 0) +script = null -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodyConvex"] -shape = SubResource( 4 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodyConvex"] +shape = SubResource( "4" ) +script = null -[node name="RigidBodySphere" type="RigidBody" parent="DynamicShapes"] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 0, 0 ) +[node name="RigidBodySphere" type="RigidBody3D" parent="DynamicShapes"] +transform = Transform3D(1, 0, 0, 0, 1, 0, 0, 0, 1, 8, 0, 0) +script = null -[node name="CollisionShape" type="CollisionShape" parent="DynamicShapes/RigidBodySphere"] -shape = SubResource( 5 ) +[node name="CollisionShape" type="CollisionShape3D" parent="DynamicShapes/RigidBodySphere"] +shape = SubResource( "5" ) +script = null -[node name="StaticBodyWalls" type="StaticBody" parent="."] +[node name="StaticBodyWalls" type="StaticBody3D" parent="."] +script = null -[node name="CollisionShape1" type="CollisionShape" parent="StaticBodyWalls"] -transform = Transform( -1.62921e-07, 1, 0, -1, -1.62921e-07, 0, 0, 0, 1, -5, 0, 0 ) -shape = SubResource( 6 ) +[node name="CollisionShape1" type="CollisionShape3D" parent="StaticBodyWalls"] +transform = Transform3D(-1.62921e-07, 1, 0, -1, -1.62921e-07, 0, 0, 0, 1, -5, 0, 0) +shape = SubResource( "6" ) +script = null -[node name="CollisionShape2" type="CollisionShape" parent="StaticBodyWalls"] -transform = Transform( -1.62921e-07, -1, 0, 1, -1.62921e-07, 0, 0, 0, 1, 5, 0, 0 ) -shape = SubResource( 6 ) +[node name="CollisionShape2" type="CollisionShape3D" parent="StaticBodyWalls"] +transform = Transform3D(-1.62921e-07, -1, 0, 1, -1.62921e-07, 0, 0, 0, 1, 5, 0, 0) +shape = SubResource( "6" ) +script = null -[node name="CollisionShape3" type="CollisionShape" parent="StaticBodyWalls"] -transform = Transform( 2.6543e-14, 1.62921e-07, 1, 1, -1.62921e-07, 1.56125e-19, 1.62921e-07, 1, -1.62921e-07, 0, 0, -5 ) -shape = SubResource( 6 ) +[node name="CollisionShape3" type="CollisionShape3D" parent="StaticBodyWalls"] +transform = Transform3D(2.6543e-14, 1.62921e-07, 1, 1, -1.62921e-07, 1.56125e-19, 1.62921e-07, 1, -1.62921e-07, 0, 0, -5) +shape = SubResource( "6" ) +script = null -[node name="CollisionShape4" type="CollisionShape" parent="StaticBodyWalls"] -transform = Transform( 2.6543e-14, 1.62921e-07, -1, 1, -1.62921e-07, -1.56125e-19, -1.62921e-07, -1, -1.62921e-07, 0, 0, 5 ) -shape = SubResource( 6 ) +[node name="CollisionShape4" type="CollisionShape3D" parent="StaticBodyWalls"] +transform = Transform3D(2.6543e-14, 1.62921e-07, -1, 1, -1.62921e-07, -1.56125e-19, -1.62921e-07, -1, -1.62921e-07, 0, 0, 5) +shape = SubResource( "6" ) +script = null -[node name="StaticScene" parent="." instance=ExtResource( 1 )] +[node name="StaticScene" parent="." instance=ExtResource( "1" )] -[node name="Camera" type="Camera" parent="."] -transform = Transform( 1, 0, 0, 0, 0.881757, 0.471705, 0, -0.471705, 0.881757, 0, 20.4125, 41.0426 ) -script = ExtResource( 5 ) +[node name="Camera3D" type="Camera3D" parent="."] +transform = Transform3D(1, 0, 0, 0, 0.881757, 0.471705, 0, -0.471705, 0.881757, 0, 20.4125, 41.0426) +script = ExtResource( "5" ) -[node name="OmniLight" type="OmniLight" parent="Camera"] +[node name="OmniLight" type="OmniLight3D" parent="Camera3D"] omni_range = 80.0 +script = null diff --git a/3d/physics_tests/tests/static_scene.tscn b/3d/physics_tests/tests/static_scene.tscn index 3e20b2a090d..d75c6117755 100644 --- a/3d/physics_tests/tests/static_scene.tscn +++ b/3d/physics_tests/tests/static_scene.tscn @@ -1,19 +1,23 @@ -[gd_scene load_steps=4 format=2] +[gd_scene load_steps=4 format=3 uid="uid://cl2vpuxqgnylc"] -[ext_resource path="res://assets/robot_head/godot3_robot_head_collision.tres" type="Shape" id=1] -[ext_resource path="res://assets/robot_head/godot3_robot_head.mesh" type="ArrayMesh" id=2] -[ext_resource path="res://tests/static_scene_plane.tscn" type="PackedScene" id=3] +[ext_resource type="Shape3D" path="res://assets/robot_head/godot3_robot_head_collision.tres" id="1"] +[ext_resource type="ArrayMesh" path="res://assets/robot_head/godot3_robot_head.mesh" id="2"] +[ext_resource type="PackedScene" uid="uid://3gkujifjokqw" path="res://tests/static_scene_plane.tscn" id="3"] -[node name="StaticScene" type="Spatial"] +[node name="StaticScene" type="Node3D"] +script = null -[node name="StaticBodyPlane" parent="." instance=ExtResource( 3 )] +[node name="StaticBodyPlane" parent="." instance=ExtResource( "3" )] -[node name="StaticBodyHead" type="StaticBody" parent="."] -transform = Transform( 10, 0, 0, 0, 8.66025, 5, 0, -5, 8.66025, 0, -11.1389, 2.29332 ) +[node name="StaticBodyHead" type="StaticBody3D" parent="."] +transform = Transform3D(10, 0, 0, 0, 8.66025, 5, 0, -5, 8.66025, 0, -11.1389, 2.29332) +script = null -[node name="RobotHead" type="MeshInstance" parent="StaticBodyHead"] -mesh = ExtResource( 2 ) -material/0 = null +[node name="RobotHead" type="MeshInstance3D" parent="StaticBodyHead"] +mesh = ExtResource( "2" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="StaticBodyHead"] -shape = ExtResource( 1 ) +[node name="CollisionShape" type="CollisionShape3D" parent="StaticBodyHead"] +shape = ExtResource( "1" ) +script = null diff --git a/3d/physics_tests/tests/static_scene_plane.tscn b/3d/physics_tests/tests/static_scene_plane.tscn index c0c35c98bf6..2e39208755b 100644 --- a/3d/physics_tests/tests/static_scene_plane.tscn +++ b/3d/physics_tests/tests/static_scene_plane.tscn @@ -1,17 +1,20 @@ -[gd_scene load_steps=3 format=2] +[gd_scene load_steps=3 format=3 uid="uid://3gkujifjokqw"] -[sub_resource type="PlaneMesh" id=1] +[sub_resource type="PlaneMesh" id="1"] -[sub_resource type="ConcavePolygonShape" id=2] -data = PoolVector3Array( -1, 0, 1, 1, 0, -1, 1, 0, 1, -1, 0, 1, -1, 0, -1, 1, 0, -1 ) +[sub_resource type="ConcavePolygonShape3D" id="2"] +data = PackedVector3Array(-1, 0, 1, 1, 0, -1, 1, 0, 1, -1, 0, 1, -1, 0, -1, 1, 0, -1) -[node name="StaticBodyPlane" type="StaticBody"] +[node name="StaticBodyPlane" type="StaticBody3D"] +script = null -[node name="MeshInstance" type="MeshInstance" parent="."] -transform = Transform( 50, 0, 0, 0, 1, 0, 0, 0, 50, 0, 0, 0 ) -mesh = SubResource( 1 ) -material/0 = null +[node name="MeshInstance3D" type="MeshInstance3D" parent="."] +transform = Transform3D(50, 0, 0, 0, 1, 0, 0, 0, 50, 0, 0, 0) +mesh = SubResource( "1" ) +surface_material_override/0 = null +script = null -[node name="CollisionShape" type="CollisionShape" parent="."] -transform = Transform( 50, 0, 0, 0, 1, 0, 0, 0, 50, 0, 0, 0 ) -shape = SubResource( 2 ) +[node name="CollisionShape" type="CollisionShape3D" parent="."] +transform = Transform3D(50, 0, 0, 0, 1, 0, 0, 0, 50, 0, 0, 0) +shape = SubResource( "2" ) +script = null diff --git a/3d/physics_tests/tests/test_options.tscn b/3d/physics_tests/tests/test_options.tscn index 63d66ee5a7a..05fdce5dd76 100644 --- a/3d/physics_tests/tests/test_options.tscn +++ b/3d/physics_tests/tests/test_options.tscn @@ -1,17 +1,17 @@ -[gd_scene load_steps=2 format=2] +[gd_scene load_steps=2 format=3 uid="uid://b1ihqm3x8jru"] -[ext_resource path="res://utils/option_menu.gd" type="Script" id=1] +[ext_resource type="Script" path="res://utils/option_menu.gd" id="1"] [node name="Options" type="MenuButton"] -pause_mode = 2 -margin_left = 10.0 -margin_top = 106.719 -margin_right = 125.0 -margin_bottom = 126.719 +offset_left = 10.0 +offset_top = 106.719 +offset_right = 125.0 +offset_bottom = 126.719 text = "TEST OPTIONS" flat = false align = 0 -script = ExtResource( 1 ) +items = [] +script = ExtResource( "1" ) __meta__ = { "_edit_use_anchors_": false } diff --git a/3d/physics_tests/tests_menu.gd b/3d/physics_tests/tests_menu.gd index 6b628b1a6d1..647bb50acb9 100644 --- a/3d/physics_tests/tests_menu.gd +++ b/3d/physics_tests/tests_menu.gd @@ -9,11 +9,11 @@ class TestData: var _test_list = [] var _current_test = null -var _current_test_scene = null +var _current_test_scene : Node = null func _ready(): - connect("option_selected", self, "_on_option_selected") + connect("option_selected", Callable(self, "_on_option_selected")) func _process(_delta): @@ -46,7 +46,7 @@ func _start_test(test): Log.print_log("*** STARTING TEST: " + test.id) var scene = load(test.scene_path) - _current_test_scene = scene.instance() + _current_test_scene = scene.instantiate() get_tree().root.add_child(_current_test_scene) var label_test = get_node("../LabelTest") diff --git a/3d/physics_tests/utils/camera_orbit.gd b/3d/physics_tests/utils/camera_orbit.gd index 3e57983ab7a..17154c5a89b 100644 --- a/3d/physics_tests/utils/camera_orbit.gd +++ b/3d/physics_tests/utils/camera_orbit.gd @@ -1,4 +1,4 @@ -extends Camera +extends Camera3D const ROTATION_COEFF = 0.02 @@ -14,7 +14,7 @@ func _ready(): func _unhandled_input(event): var mouse_button_event = event as InputEventMouseButton if mouse_button_event: - if mouse_button_event.button_index == BUTTON_RIGHT: + if mouse_button_event.button_index == MOUSE_BUTTON_RIGHT: _rotation_enabled = mouse_button_event.pressed return @@ -28,7 +28,7 @@ func _unhandled_input(event): func _initialize_pivot(): - _rotation_pivot = Spatial.new() + _rotation_pivot = Node3D.new() var camera_parent = get_parent() camera_parent.add_child(_rotation_pivot) camera_parent.remove_child(self) diff --git a/3d/physics_tests/utils/characterbody_physics.gd b/3d/physics_tests/utils/characterbody_physics.gd new file mode 100644 index 00000000000..174a0cd9d30 --- /dev/null +++ b/3d/physics_tests/utils/characterbody_physics.gd @@ -0,0 +1,19 @@ +extends CharacterBody3D + + +@export var _gravity_on_floor = true +@export var _stop_on_slopes = false +@export var _use_snap = false + +var _gravity = 20.0 + +func _physics_process(delta): + if is_on_floor() and _gravity_on_floor: + linear_velocity += Vector3.DOWN * _gravity * delta + snap = Vector3.DOWN * 0.2 + else: + linear_velocity += Vector3.DOWN * _gravity * delta + snap = Vector3.ZERO + + stop_on_slope = _stop_on_slopes + move_and_slide() diff --git a/3d/physics_tests/utils/container_log.gd b/3d/physics_tests/utils/container_log.gd index 2baff145bd8..47a7a0f33dd 100644 --- a/3d/physics_tests/utils/container_log.gd +++ b/3d/physics_tests/utils/container_log.gd @@ -7,7 +7,7 @@ var _entry_template func _enter_tree(): - Log.connect("entry_logged", self, "_on_log_entry") + Log.connect("entry_logged", Callable(self, "_on_log_entry")) _entry_template = get_child(0) as Label remove_child(_entry_template) @@ -29,9 +29,9 @@ func _on_log_entry(message, type): new_entry.set_text(message) if type == Log.LogType.ERROR: - new_entry.modulate = Color.red + new_entry.modulate = Color.RED else: - new_entry.modulate = Color.white + new_entry.modulate = Color.WHITE if get_child_count() >= MAX_ENTRIES: var first_entry = get_child(0) as Label diff --git a/3d/physics_tests/utils/control3d.gd b/3d/physics_tests/utils/control3d.gd index 0a5ba16595c..6b170e40c27 100644 --- a/3d/physics_tests/utils/control3d.gd +++ b/3d/physics_tests/utils/control3d.gd @@ -1,7 +1,7 @@ extends Control -export(Vector3) var world_offset +@export var world_offset = Vector3.ZERO var _pos_offset var _attachment @@ -9,7 +9,7 @@ var _attachment func _ready(): _pos_offset = rect_position - _attachment = get_parent() as Spatial + _attachment = get_parent() as Node3D func _process(_delta): @@ -20,7 +20,7 @@ func _process(_delta): if viewport == null: return - var camera = viewport.get_camera() + var camera = viewport.get_camera_3d() if camera == null: return diff --git a/3d/physics_tests/utils/kinematicbody_physics.gd b/3d/physics_tests/utils/kinematicbody_physics.gd deleted file mode 100644 index 777e926a543..00000000000 --- a/3d/physics_tests/utils/kinematicbody_physics.gd +++ /dev/null @@ -1,23 +0,0 @@ -extends KinematicBody - - -export(bool) var _gravity_on_floor = true -export(bool) var _stop_on_slopes = false -export(bool) var _use_snap = false - -var _gravity = 20.0 -var _velocity = Vector3.ZERO - - -func _physics_process(delta): - var snap = Vector3.DOWN * 0.2 - if is_on_floor() and _gravity_on_floor: - _velocity += Vector3.DOWN * _gravity * delta - else: - _velocity += Vector3.DOWN * _gravity * delta - snap = Vector3.ZERO - - if _use_snap: - _velocity = move_and_slide_with_snap(_velocity, snap, Vector3.UP, _stop_on_slopes) - else: - _velocity = move_and_slide(_velocity, Vector3.UP, _stop_on_slopes) diff --git a/3d/physics_tests/utils/label_test.gd b/3d/physics_tests/utils/label_test.gd index d5de3d49f2f..01e0c1bca32 100644 --- a/3d/physics_tests/utils/label_test.gd +++ b/3d/physics_tests/utils/label_test.gd @@ -1,13 +1,13 @@ extends Label -var test_name setget _set_test_name +var test_name = "": + set(value): + if (test_name != value): + return + test_name = value + set_text("Test: %s" % test_name) func _ready(): set_text("Select a test from the menu to start it") - - -func _set_test_name(value): - test_name = value - set_text("Test: %s" % test_name) diff --git a/3d/physics_tests/utils/option_menu.gd b/3d/physics_tests/utils/option_menu.gd index 48b812a89d7..912a7839cf6 100644 --- a/3d/physics_tests/utils/option_menu.gd +++ b/3d/physics_tests/utils/option_menu.gd @@ -44,7 +44,7 @@ func _add_popup(parent_popup, path, label): parent_popup.add_child(popup_menu) parent_popup.add_submenu_item(label, label) - popup_menu.connect("index_pressed", self, "_on_item_pressed", [popup_menu, path]) + popup_menu.connect("index_pressed", Callable(self, "_on_item_pressed"), [popup_menu, path]) return popup_menu diff --git a/3d/physics_tests/utils/rigidbody_ground_check.gd b/3d/physics_tests/utils/rigidbody_ground_check.gd index 74976a6e501..492f334ce39 100644 --- a/3d/physics_tests/utils/rigidbody_ground_check.gd +++ b/3d/physics_tests/utils/rigidbody_ground_check.gd @@ -1,9 +1,9 @@ -extends RigidBody +extends RigidBody3D -onready var _forward = - transform.basis.z -onready var _collision_shape = $CollisionShape -onready var _material = $CollisionShape/MeshInstance.get_surface_material(0) +@onready var _forward = -transform.basis.z +@onready var _collision_shape = $CollisionShape +@onready var _material = $CollisionShape/MeshInstance3D.get_active_material(0) var _dir = 1.0 var _distance = 10.0 @@ -13,11 +13,17 @@ var _gravity_impulse = 30.0 var _is_on_floor = false +func _ready(): + if not _material: + _material = StandardMaterial3D.new() + $CollisionShape/MeshInstance3D.set_surface_override_material(0, _material) + + func _process(_delta): if _is_on_floor: - _material.albedo_color = Color.white + _material.albedo_color = Color.WHITE else: - _material.albedo_color = Color.red + _material.albedo_color = Color.RED func _integrate_forces(state): @@ -34,8 +40,8 @@ func _integrate_forces(state): func ground_check(): - var space_state = get_world().direct_space_state - var shape = PhysicsShapeQueryParameters.new() + var space_state = get_world_3d().direct_space_state + var shape = PhysicsShapeQueryParameters3D.new() shape.transform = _collision_shape.global_transform shape.shape_rid = _collision_shape.shape.get_rid() shape.collision_mask = 2 diff --git a/3d/physics_tests/utils/rigidbody_pick.gd b/3d/physics_tests/utils/rigidbody_pick.gd index 5400c071877..0b92de4538c 100644 --- a/3d/physics_tests/utils/rigidbody_pick.gd +++ b/3d/physics_tests/utils/rigidbody_pick.gd @@ -1,4 +1,4 @@ -extends RigidBody +extends RigidBody3D const MOUSE_DELTA_COEFFICIENT = 0.01 @@ -16,7 +16,7 @@ func _ready(): func _input(event): var mouse_event = event as InputEventMouseButton if mouse_event and not mouse_event.pressed: - if mouse_event.button_index == BUTTON_LEFT: + if mouse_event.button_index == MOUSE_BUTTON_LEFT: _picked = false var mouse_motion = event as InputEventMouseMotion @@ -27,7 +27,7 @@ func _input(event): func _input_event(_viewport, event, _click_pos, _click_normal, _shape_idx): var mouse_event = event as InputEventMouseButton if mouse_event and mouse_event.pressed: - if mouse_event.button_index == BUTTON_LEFT: + if mouse_event.button_index == MOUSE_BUTTON_LEFT: _picked = true _mouse_pos = mouse_event.position _last_mouse_pos = _mouse_pos @@ -37,11 +37,11 @@ func _physics_process(delta): if _picked: var mouse_delta = _mouse_pos - _last_mouse_pos - var world_delta = Vector3.ZERO + var world_delta := Vector3.ZERO world_delta.x = mouse_delta.x * MOUSE_DELTA_COEFFICIENT world_delta.y = -mouse_delta.y * MOUSE_DELTA_COEFFICIENT - var camera = get_viewport().get_camera() + var camera = get_viewport().get_camera_3d() if camera: var camera_basis = camera.global_transform.basis world_delta = camera_basis * world_delta diff --git a/3d/physics_tests/utils/scroll_log.gd b/3d/physics_tests/utils/scroll_log.gd index d362a8f21b0..898dc164d7e 100644 --- a/3d/physics_tests/utils/scroll_log.gd +++ b/3d/physics_tests/utils/scroll_log.gd @@ -1,14 +1,10 @@ extends ScrollContainer -export(bool) var auto_scroll = false setget set_auto_scroll +@export var auto_scroll = false func _process(_delta): if auto_scroll: var scrollbar = get_v_scrollbar() scrollbar.value = scrollbar.max_value - - -func set_auto_scroll(value): - auto_scroll = value diff --git a/3d/physics_tests/utils/system.gd b/3d/physics_tests/utils/system.gd index c80a72a637b..70e7704be06 100644 --- a/3d/physics_tests/utils/system.gd +++ b/3d/physics_tests/utils/system.gd @@ -11,7 +11,7 @@ var _engine = PhysicsEngine.OTHER func _enter_tree(): - pause_mode = Node.PAUSE_MODE_PROCESS + process_mode = Node.PROCESS_MODE_ALWAYS get_tree().debug_collisions_hint = true @@ -21,7 +21,7 @@ func _enter_tree(): _engine = PhysicsEngine.BULLET "Bullet": _engine = PhysicsEngine.BULLET - "GodotPhysics": + "GodotPhysics3D": _engine = PhysicsEngine.GODOT_PHYSICS _: _engine = PhysicsEngine.OTHER @@ -29,7 +29,10 @@ func _enter_tree(): func _process(_delta): if Input.is_action_just_pressed("toggle_full_screen"): - OS.window_fullscreen = not OS.window_fullscreen + if DisplayServer.window_get_mode() == DisplayServer.WINDOW_MODE_FULLSCREEN: + DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_WINDOWED) + else: + DisplayServer.window_set_mode(DisplayServer.WINDOW_MODE_FULLSCREEN) if Input.is_action_just_pressed("toggle_debug_collision"): var debug_collision_enabled = not _is_debug_collision_enabled()