file_path
stringlengths
21
224
content
stringlengths
0
80.8M
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/models/__init__.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from .visibility_model import * from .type_model import * from .name_model import *
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/models/type_model.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["TypeModel"] import omni.ui as ui class TypeModel(ui.AbstractValueModel): def __init__(self, stage_item): super().__init__() self.__stage_item = stage_item def destroy(self): self.__stage_item = None def get_value_as_string(self) -> str: return self.__stage_item.type_name def set_value(self, value: str): pass
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/models/visibility_model.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["VisibilityModel"] import omni.ui as ui import omni.usd class VisibilityModel(ui.AbstractValueModel): def __init__(self, stage_item): super().__init__() self.__stage_item = stage_item def destroy(self): self.__stage_item = None def get_value_as_bool(self) -> bool: """Reimplemented get bool""" # Invisible when it's checked. return not self.__stage_item.visible def set_value(self, value: bool): """Reimplemented set bool""" prim = self.__stage_item.prim if not prim: return usd_context = omni.usd.get_context_from_stage(prim.GetStage()) if usd_context: selection_paths = usd_context.get_selection().get_selected_prim_paths() else: selection_paths = [] # If the updating prim path is one of the selection path, we change all selected path. Otherwise, only change itself prim_path = prim.GetPath() stage = prim.GetStage() update_paths = selection_paths if prim_path in selection_paths else [prim_path] omni.kit.commands.execute( "ToggleVisibilitySelectedPrims", selected_paths=update_paths, stage=stage )
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/models/name_model.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["PrimNameModel"] import omni.ui as ui from pxr import Sdf, Tf class PrimNameModel(ui.AbstractValueModel): """The model that changes the prim name""" def __init__(self, stage_item): super().__init__() self.__stage_item = stage_item self.__label_on_begin = None self.__old_label = None self.__name_prefix = None self.__suffix_order = None self.rebuild() self.__refresh_name_prefix_and_suffix() def __refresh_name_prefix_and_suffix(self): parts = self.__stage_item.name.rpartition("_") self.__name_prefix = None self.__suffix_order = None if parts and len(parts) > 1: suffix_order = parts[-1] are_all_digits = True for c in suffix_order: if not c.isdigit(): are_all_digits = False break if are_all_digits and suffix_order: self.__name_prefix = parts[0].lower() self.__suffix_order = int(suffix_order) if self.__suffix_order is None: self.__name_prefix = self.__stage_item.name.lower() self.__suffix_order = 0 @property def _prim_path(self): """DEPRECATED: to ensure back-compatibility.""" return self.path @property def _name_prefix(self): """Name prefix without suffix number, e.g, `abc_01` will return abc. It's used for column sort.""" return self.__name_prefix @property def _suffix_order(self): """Number suffix, e.g, `abc_01` will return 01. It's used for column sort.""" return self.__suffix_order @property def path(self): return self.__stage_item.path def destroy(self): self.__stage_item = None def get_value_as_string(self): """Reimplemented get string""" return self.__label def rebuild(self): if self.__stage_item.stage_model.flat: self.__label = str(self.__stage_item.path) else: if self.__stage_item.path == Sdf.Path.absoluteRootPath: self.__label = "Root:" elif self.__stage_item.stage_model.show_prim_displayname: self.__label = self.__stage_item.display_name else: self.__label = self.__stage_item.name def begin_edit(self): self.__old_label = self.__label self.__label_on_begin = self.__stage_item.name self.__label = self.__label_on_begin if self.__old_label != self.__label: self._value_changed() def set_value(self, value): """Reimplemented set""" try: value = str(value) except ValueError: value = "" if value != self.__label: self.__label = value self._value_changed() def end_edit(self): if self.__label_on_begin == self.__label: if self.__label != self.__old_label: self.__label = self.__old_label self._value_changed() return # Get the unique name # replacing invalid characters with '_' if it's to display path name. parent_path = self.__stage_item.path.GetParentPath() valid_label_identifier = Tf.MakeValidIdentifier(self.__label) new_prim_name = valid_label_identifier counter = 1 while True: created_path = parent_path.AppendElementString(new_prim_name) if not self.__stage_item.stage.GetPrimAtPath(created_path): break new_prim_name = "{}_{:02d}".format(valid_label_identifier, counter) counter += 1 stage_model = self.__stage_item.stage_model if stage_model.rename_prim(self.__stage_item.path, new_prim_name): self.__refresh_name_prefix_and_suffix() self._value_changed() if not stage_model.show_prim_displayname: self.__label = new_prim_name
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/test_drag_drop.py
import pathlib import omni.kit.test from pxr import UsdShade from omni.ui.tests.test_base import OmniUiTest from omni.kit import ui_test from omni.kit.test_suite.helpers import arrange_windows from omni.kit.window.content_browser.test_helper import ContentBrowserTestHelper class TestStageDragDrop(OmniUiTest): async def setUp(self): await super().setUp() extension_path = omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__) self._test_path = pathlib.Path(extension_path).joinpath("data").joinpath("tests") # After running each test async def tearDown(self): await super().tearDown() async def test_prim_reparent(self): app = omni.kit.app.get_app() usd_context = omni.usd.get_context() await usd_context.new_stage_async() stage = usd_context.get_stage() world_prim = stage.DefinePrim("/World2", "Xform") cube_prim = stage.DefinePrim("/cube", "Cube") await app.next_update_async() await app.next_update_async() stage_window = ui_test.find("Stage") await stage_window.focus() stage_window.window._stage_widget._tree_view.root_visible=True await app.next_update_async() await app.next_update_async() stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") absolute_prim_item = stage_tree.find("**/Label[*].text=='Root:'") world_prim_item = stage_tree.find("**/Label[*].text=='World2'") cube_prim_item = stage_tree.find("**/Label[*].text=='cube'") self.assertTrue(absolute_prim_item) self.assertTrue(cube_prim_item) self.assertTrue(world_prim_item) await cube_prim_item.drag_and_drop(world_prim_item.center) await app.next_update_async() await app.next_update_async() self.assertTrue(stage.GetPrimAtPath("/World2/cube")) self.assertFalse(stage.GetPrimAtPath("/cube")) cube_prim_item = stage_tree.find("**/Label[*].text=='cube'") self.assertTrue(cube_prim_item) await cube_prim_item.drag_and_drop(absolute_prim_item.center) await app.next_update_async() await app.next_update_async() self.assertFalse(stage.GetPrimAtPath("/World2/cube")) self.assertTrue(stage.GetPrimAtPath("/cube")) async def test_material_drag_drop_preview(self): await arrange_windows(hide_viewport=True) usd_context = omni.usd.get_context() test_file_path = self._test_path.joinpath("usd/cube.usda").absolute() test_material_path = self._test_path.joinpath("mtl/mahogany_floorboards.mdl").absolute() await usd_context.open_stage_async(str(test_file_path)) await ui_test.human_delay() # get cube prim stage = omni.usd.get_context().get_stage() world_prim = stage.GetPrimAtPath("/World") cube_prim = stage.GetPrimAtPath("/World/Cube") # select cube prim to expand the stage list... usd_context.get_selection().set_selected_prim_paths(["/World/Cube"], True) await ui_test.human_delay() usd_context.get_selection().clear_selected_prim_paths() await ui_test.human_delay() # check bound material bound_material, _ = UsdShade.MaterialBindingAPI(cube_prim).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid()) # drag/drop async with ContentBrowserTestHelper() as content_browser_helper: stage_window = ui_test.find("Stage") drag_target = stage_window.position + ui_test.Vec2(stage_window.size.x / 2, stage_window.size.y - 32) await content_browser_helper.drag_and_drop_tree_view(str(test_material_path), drag_target=drag_target) # select new material prim mahogany_prim = stage.GetPrimAtPath("/World/Looks/mahogany_floorboards") self.assertTrue(mahogany_prim.GetPrim().IsValid()) await ui_test.human_delay() # check /World isn't bound bound_material, _ = UsdShade.MaterialBindingAPI(world_prim).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid()) # check /World/Cube isn't bound bound_material, _ = UsdShade.MaterialBindingAPI(cube_prim).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid()) # drag/drop async with ContentBrowserTestHelper() as content_browser_helper: stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") for widget in stage_tree.find_all("**/Label[*].text=='Cube'"): await content_browser_helper.drag_and_drop_tree_view(str(test_material_path), drag_target=widget.center) break # select cube prim usd_context.get_selection().set_selected_prim_paths(["/World/Cube"], True) await ui_test.human_delay() # check bound material bound_material, _ = UsdShade.MaterialBindingAPI(cube_prim).ComputeBoundMaterial() self.assertTrue(bound_material.GetPrim().IsValid()) self.assertTrue(bound_material.GetPrim().GetPrimPath().pathString == "/World/Looks/mahogany_floorboards_01") # check /World isn't bound bound_material, _ = UsdShade.MaterialBindingAPI(world_prim).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid())
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/drag_drop_path.py
## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import omni.kit.test import os import omni.kit.app import omni.usd import carb from omni.kit.test.async_unittest import AsyncTestCase from omni.kit import ui_test from omni.kit.test_suite.helpers import open_stage, get_test_data_path, wait_stage_loading, arrange_windows from omni.kit.window.content_browser.test_helper import ContentBrowserTestHelper PERSISTENT_SETTINGS_PREFIX = "/persistent" class DragDropFileStagePath(AsyncTestCase): # Before running each test async def setUp(self): await arrange_windows(hide_viewport=True) await open_stage(get_test_data_path(__name__, "usd/cube.usda")) # After running each test async def tearDown(self): await wait_stage_loading() carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "absolute") async def test_l1_drag_drop_path_usd_stage_absolute(self): carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "absolute") usd_context = omni.usd.get_context() stage = usd_context.get_stage() stage_window = ui_test.find("Stage") await stage_window.focus() # drag/drop from content browser to stage window drag_target = stage_window.position + ui_test.Vec2(stage_window.size.x / 2, stage_window.size.y - 32) async with ContentBrowserTestHelper() as content_browser_helper: mdl_path = get_test_data_path(__name__, "mtl/badname.mdl") await content_browser_helper.drag_and_drop_tree_view(mdl_path, drag_target=drag_target) # verify prims shader = omni.usd.get_shader_from_material(stage.GetPrimAtPath('/World/Looks/Ue4basedMDL'), False) self.assertTrue(bool(shader), "/World/Looks/Ue4basedMDL not found") asset = shader.GetSourceAsset("mdl") self.assertTrue(os.path.isabs(asset.path)) async def test_l1_drag_drop_path_usd_stage_relative(self): carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "relative") usd_context = omni.usd.get_context() stage = usd_context.get_stage() stage_window = ui_test.find("Stage") await stage_window.focus() # drag/drop from content browser to stage window drag_target = stage_window.position + ui_test.Vec2(stage_window.size.x / 2, stage_window.size.y - 32) async with ContentBrowserTestHelper() as content_browser_helper: mdl_path = get_test_data_path(__name__, "mtl/badname.mdl") await content_browser_helper.drag_and_drop_tree_view(mdl_path, drag_target=drag_target) # verify prims shader = omni.usd.get_shader_from_material(stage.GetPrimAtPath('/World/Looks/Ue4basedMDL'), False) self.assertTrue(bool(shader), "/World/Looks/Ue4basedMDL not found") asset = shader.GetSourceAsset("mdl") self.assertFalse(os.path.isabs(asset.path))
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/test_export_selected.py
## Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import omni.kit.test import os import omni.kit.app import omni.usd from omni.kit.test.async_unittest import AsyncTestCase from omni.kit import ui_test from omni.kit.test_suite.helpers import open_stage, get_test_data_path, select_prims, wait_stage_loading, arrange_windows from omni.kit.window.file_exporter.test_helper import FileExporterTestHelper from omni.kit.window.file_exporter import get_instance as get_file_exporter class TestExportSelected(AsyncTestCase): # Before running each test async def setUp(self): await arrange_windows() await open_stage(get_test_data_path(__name__, "bound_shapes.usda")) stage_window = ui_test.find("Stage") await stage_window.focus() # After running each test async def tearDown(self): await wait_stage_loading() async def test_l1_stage_menu_export_selected_single_prim(self): stage = omni.usd.get_context().get_stage() to_select = ["/World/Cone"] test_file = os.path.join(omni.kit.test.get_test_output_path(), "save_single_selected_prim.usd") # select prims await select_prims(to_select) # right click on Cube stage_widget = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") await stage_widget.find(f"**/StringField[*].model.path=='{to_select[0]}'").right_click() # click on context menu item & save async with FileExporterTestHelper() as file_export_helper: await ui_test.select_context_menu("Save Selected") await file_export_helper.wait_for_popup() await file_export_helper.click_apply_async(filename_url=test_file) await wait_stage_loading() # load created file await open_stage(test_file) await wait_stage_loading() # verify prims stage = omni.usd.get_context().get_stage() prims = [prim.GetPath().pathString for prim in stage.TraverseAll() if not omni.usd.is_hidden_type(prim)] self.assertEqual(prims, ['/Root', '/Root/Cone']) # close stage & delete file await omni.usd.get_context().new_stage_async() async def test_l1_stage_menu_export_selected_multiple_prims(self): stage = omni.usd.get_context().get_stage() to_select = ["/World/Cone", "/World/Cube", "/World/Sphere", "/World/Cylinder"] test_file = os.path.join(omni.kit.test.get_test_output_path(), "save_multiple_selected_prim.usd") # select prims await select_prims(to_select) # right click on Cube stage_widget = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") await stage_widget.find(f"**/StringField[*].model.path=='{to_select[0]}'").right_click() # click on context menu item & save async with FileExporterTestHelper() as file_export_helper: await ui_test.select_context_menu("Save Selected") await file_export_helper.wait_for_popup() await file_export_helper.click_apply_async(filename_url=test_file) await wait_stage_loading() # load created file await open_stage(test_file) await wait_stage_loading() # verify prims stage = omni.usd.get_context().get_stage() prims = [prim.GetPath().pathString for prim in stage.TraverseAll() if not omni.usd.is_hidden_type(prim)] self.assertEqual(prims, ['/Root', '/Root/Cone', '/Root/Cone/Cone', '/Root/Cube', '/Root/Cube/Cube', '/Root/Sphere', '/Root/Sphere/Sphere', '/Root/Cylinder', '/Root/Cylinder/Cylinder']) # close stage & delete file await omni.usd.get_context().new_stage_async() async def test_l1_stage_menu_export_selected_single_material(self): stage = omni.usd.get_context().get_stage() to_select = ["/World/Looks/OmniPBR"] test_file = os.path.join(omni.kit.test.get_test_output_path(), "save_single_selected_material.usd") # select prims await select_prims(to_select) # right click on Cube stage_widget = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") await stage_widget.find(f"**/StringField[*].model.path=='{to_select[0]}'").right_click() # click on context menu item & save async with FileExporterTestHelper() as file_export_helper: await ui_test.select_context_menu("Save Selected") await file_export_helper.wait_for_popup() await file_export_helper.click_apply_async(filename_url=test_file) await wait_stage_loading() # load created file await open_stage(test_file) await wait_stage_loading() # verify prims stage = omni.usd.get_context().get_stage() prims = [prim.GetPath().pathString for prim in stage.TraverseAll() if not omni.usd.is_hidden_type(prim)] self.assertEqual(prims, ['/Root', '/Root/OmniPBR', '/Root/OmniPBR/Shader']) # close stage & delete file await omni.usd.get_context().new_stage_async() async def test_l1_stage_menu_export_selected_multiple_materials(self): stage = omni.usd.get_context().get_stage() to_select = ["/World/Looks/OmniPBR", "/World/Looks/OmniGlass", "/World/Looks/OmniSurface_Plastic"] test_file = os.path.join(omni.kit.test.get_test_output_path(), "save_multiple_selected_material.usd") # select prims await select_prims(to_select) # right click on Cube stage_widget = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") await stage_widget.find(f"**/StringField[*].model.path=='{to_select[0]}'").right_click() # click on context menu item & save async with FileExporterTestHelper() as file_export_helper: await ui_test.select_context_menu("Save Selected") await file_export_helper.wait_for_popup() await file_export_helper.click_apply_async(filename_url=test_file) await wait_stage_loading() # load created file await open_stage(test_file) await wait_stage_loading() # verify prims stage = omni.usd.get_context().get_stage() prims = [prim.GetPath().pathString for prim in stage.TraverseAll() if not omni.usd.is_hidden_type(prim)] self.assertEqual(prims, ['/Root', '/Root/OmniPBR', '/Root/OmniPBR/Shader', '/Root/OmniGlass', '/Root/OmniGlass/Shader', '/Root/OmniSurface_Plastic', '/Root/OmniSurface_Plastic/Shader']) # close stage & delete file await omni.usd.get_context().new_stage_async() async def test_stage_menu_export_selected_prefill(self): """Test that export selected pre-fill prim name and save directory.""" stage = omni.usd.get_context().get_stage() to_select = ["/World/Cone", "/World/Cube", "/World/Sphere", "/World/Cylinder"] output_dir = omni.kit.test.get_test_output_path() test_file = os.path.join(output_dir, "test_prefill.usd") # select prims await select_prims(to_select) # right click on Cube stage_widget = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") await stage_widget.find(f"**/StringField[*].model.path=='{to_select[0]}'").right_click() # click on context menu item & save async with FileExporterTestHelper() as file_export_helper: await ui_test.select_context_menu("Save Selected") await file_export_helper.wait_for_popup() # check that prim name is pre-fill with the first prim name exporter = get_file_exporter() filename = exporter._dialog.get_filename() self.assertEqual(filename, "Cone") # check that current directory is the same as the stage directory dirname = exporter._dialog.get_current_directory() self.assertEqual(dirname.rstrip("/").lower(), os.path.dirname(stage.GetRootLayer().realPath).replace("\\", "/").lower()) await file_export_helper.click_apply_async(filename_url=test_file) await wait_stage_loading() # right click again, now the default directory for save should update to the last save directory stage_widget = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") await stage_widget.find(f"**/StringField[*].model.path=='{to_select[0]}'").right_click() async with FileExporterTestHelper() as file_export_helper: await ui_test.select_context_menu("Save Selected") await file_export_helper.wait_for_popup() exporter = get_file_exporter() # check that current directory is the same as the stage directory dirname = exporter._dialog.get_current_directory() self.assertEqual(dirname.rstrip("/").lower(), output_dir.replace("\\", "/").lower()) await file_export_helper.click_cancel_async() # load another file output_dir = get_test_data_path(__name__, "usd") await open_stage(os.path.join(output_dir, "cube.usda")) await wait_stage_loading() stage = omni.usd.get_context().get_stage() # check that current directory is the same as the stage directory to_select = ["/World/Cube"] await select_prims(to_select) # right click on Cube stage_widget = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") await stage_widget.find(f"**/StringField[*].model.path=='{to_select[0]}'").right_click() # click on context menu item & save async with FileExporterTestHelper() as file_export_helper: await ui_test.select_context_menu("Save Selected") await file_export_helper.wait_for_popup() # check that prim name is pre-fill with the selected prim name exporter = get_file_exporter() filename = exporter._dialog.get_filename() self.assertEqual(filename, "Cube") # check that current directory is the same as the stage directory dirname = exporter._dialog.get_current_directory() self.assertEqual(dirname.rstrip("/").lower(), os.path.dirname(stage.GetRootLayer().realPath).replace("\\", "/").lower()) await file_export_helper.click_cancel_async() # close stage & delete file await omni.usd.get_context().new_stage_async()
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/drag_drop_single.py
## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import omni.kit.test import omni.kit.app import omni.usd from pxr import UsdGeom from omni.kit.test.async_unittest import AsyncTestCase from omni.kit import ui_test from omni.kit.test_suite.helpers import ( open_stage, get_test_data_path, get_prims, wait_stage_loading, arrange_windows ) from omni.kit.window.content_browser.test_helper import ContentBrowserTestHelper class DragDropFileStageSingle(AsyncTestCase): # Before running each test async def setUp(self): await arrange_windows(hide_viewport=True) await open_stage(get_test_data_path(__name__, "bound_shapes.usda")) # After running each test async def tearDown(self): await wait_stage_loading() async def test_l1_drag_drop_single_usd_stage(self): usd_context = omni.usd.get_context() stage = usd_context.get_stage() await wait_stage_loading() await ui_test.find("Content").focus() await ui_test.find("Stage").focus() # verify prims paths = [prim.GetPath().pathString for prim in get_prims(stage) if not omni.usd.is_hidden_type(prim)] self.assertEqual(paths, ['/World', '/World/defaultLight', '/World/Cone', '/World/Cube', '/World/Sphere', '/World/Cylinder', '/World/Looks', '/World/Looks/OmniPBR', '/World/Looks/OmniPBR/Shader', '/World/Looks/OmniGlass', '/World/Looks/OmniGlass/Shader', '/World/Looks/OmniSurface_Plastic', '/World/Looks/OmniSurface_Plastic/Shader']) # drag/drop files to stage window async with ContentBrowserTestHelper() as content_browser_helper: stage_window = ui_test.find("Stage") drag_target = stage_window.position + ui_test.Vec2(stage_window.size.x / 2, stage_window.size.y - 32) for file_path in ["4Lights.usda", "quatCube.usda"]: await content_browser_helper.drag_and_drop_tree_view(get_test_data_path(__name__, file_path), drag_target=drag_target) # verify prims paths = [prim.GetPath().pathString for prim in get_prims(stage) if not omni.usd.is_hidden_type(prim)] self.assertEqual(paths, ['/World', '/World/defaultLight', '/World/Cone', '/World/Cube', '/World/Sphere', '/World/Cylinder', '/World/Looks', '/World/Looks/OmniPBR', '/World/Looks/OmniPBR/Shader', '/World/Looks/OmniGlass', '/World/Looks/OmniGlass/Shader', '/World/Looks/OmniSurface_Plastic', '/World/Looks/OmniSurface_Plastic/Shader', '/World/_Lights', '/World/_Lights/SphereLight_01', '/World/_Lights/SphereLight_02', '/World/_Lights/SphereLight_03', '/World/_Lights/SphereLight_00', '/World/_Lights/Cube', '/World/quatCube', '/World/quatCube/Cube']) async def test_drag_drop_to_default_prim(self): usd_context = omni.usd.get_context() await usd_context.new_stage_async() await ui_test.find("Content").focus() await ui_test.find("Stage").focus() stage = usd_context.get_stage() prim = stage.DefinePrim("/test", "Xform") prim2 = stage.DefinePrim("/test2", "Xform") prim3 = UsdGeom.Mesh.Define(stage, "/test3").GetPrim() total_root_prims = 3 """ OM-66707 Rules: 1. When it has no default prim, it will create pseudo root prim reference. 2. When it has default prim, it will create reference under default prim. 3. When the default prim is a gprim, it will create reference under pseudo root prim too as gprims cannot have children. """ for default_prim in [None, prim, prim2, prim3]: if default_prim: stage.SetDefaultPrim(default_prim) else: stage.ClearDefaultPrim() # drag/drop files to stage window async with ContentBrowserTestHelper() as content_browser_helper: stage_window = ui_test.find("Stage") drag_target = stage_window.position + ui_test.Vec2(stage_window.size.x / 2, stage_window.size.y - 32) for file_path in ["4Lights.usda", "quatCube.usda"]: await content_browser_helper.drag_and_drop_tree_view(get_test_data_path(__name__, file_path), drag_target=drag_target) if default_prim and default_prim != prim3: self.assertEqual(len(prim.GetChildren()), 2) else: total_root_prims += 2 all_root_prims = [prim for prim in stage.GetPseudoRoot().GetChildren() if not omni.usd.is_hidden_type(prim)] self.assertEqual(len(all_root_prims), total_root_prims)
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/test_stage_widget.py
import carb import omni import omni.kit.test import omni.usd import omni.client import omni.kit.widget.stage import omni.kit.app import omni.kit.ui_test as ui_test from omni.kit.test_suite.helpers import arrange_windows from pxr import UsdGeom class TestStageWidget(omni.kit.test.AsyncTestCase): async def setUp(self): self.app = omni.kit.app.get_app() await arrange_windows("Stage", 800, 600) self.usd_context = omni.usd.get_context() await self.usd_context.new_stage_async() self.stage = omni.usd.get_context().get_stage() async def tearDown(self): pass async def wait(self, frames=4): for i in range(frames): await self.app.next_update_async() async def test_visibility_toggle(self): stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") prim = self.stage.DefinePrim("/prim0", "Xform") await self.wait() prim_visibility_widget = stage_tree.find("**/ToolButton[*].name=='visibility'") self.assertTrue(prim_visibility_widget) await prim_visibility_widget.click() await self.wait() self.assertEqual(UsdGeom.Imageable(prim).ComputeVisibility(), UsdGeom.Tokens.invisible) prim_visibility_widget = stage_tree.find("**/ToolButton[*].name=='visibility'") self.assertTrue(prim_visibility_widget) await prim_visibility_widget.click() await self.wait() self.assertEqual(UsdGeom.Imageable(prim).ComputeVisibility(), UsdGeom.Tokens.inherited) async def test_search_widget(self): stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") self.assertTrue(stage_tree) stage_model = stage_tree.widget.model search_field = ui_test.find("Stage//Frame/**/StringField[*].name=='search'") self.assertTrue(search_field) prim1 = self.stage.DefinePrim("/prim", "Xform") prim2 = self.stage.DefinePrim("/prim/prim1", "Xform") prim3 = self.stage.DefinePrim("/prim/prim2", "Xform") prim4 = self.stage.DefinePrim("/other", "Xform") await self.wait() await search_field.input("prim") await ui_test.emulate_keyboard_press(carb.input.KeyboardInput.ENTER) await self.wait() all_children = stage_model.get_item_children(None) all_names = [child.name for child in all_children] search_field.widget.model.set_value("") await search_field.input("") await self.wait() await ui_test.emulate_keyboard_press(carb.input.KeyboardInput.ENTER) await self.wait() self.assertTrue(prim4.GetName() not in all_names)
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/__init__.py
## Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## from .test_stage import TestStage from .test_drag_drop import TestStageDragDrop from .drag_drop_single import DragDropFileStageSingle from .drag_drop_multi import DragDropFileStageMulti from .test_export_selected import TestExportSelected from .test_stage_model import TestStageModel from .drag_drop_path import DragDropFileStagePath from .test_context_menu import TestContextMenu from .test_header import TestHeader from .test_stage_widget import TestStageWidget
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/test_stage_model.py
import carb import os import tempfile import omni import omni.kit.test import omni.usd import omni.client import string import random import omni.ui as ui # Don't remove. Including those two deprecated modules for code coverage. from omni.kit.widget.stage.stage_helper import * from omni.kit.widget.stage.usd_property_watch import * from omni.kit.widget.stage import StageWidget from omni.kit.widget.stage import StageItem, StageItemSortPolicy from omni.kit.widget.stage import StageColumnDelegateRegistry, AbstractStageColumnDelegate, StageColumnItem from pxr import Sdf, Usd, UsdGeom, Gf SETTINGS_KEEP_CHILDREN_ORDER = "/persistent/ext/omni.usd/keep_children_order" class TestColumnDelegate(AbstractStageColumnDelegate): def __init__(self): super().__init__() def destroy(self): pass @property def initial_width(self): """The width of the column""" return ui.Pixel(20) def build_header(self, **kwargs): """Build the header""" pass async def build_widget(self, item: StageColumnItem, **kwargs): pass class TestStageModel(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): self.usd_context = omni.usd.get_context() await self.usd_context.new_stage_async() self.stage = self.usd_context.get_stage() self.stage.GetRootLayer().Clear() self.stage_widget = StageWidget(self.stage) self.app = omni.kit.app.get_app() self.old_keep_children_order = carb.settings.get_settings().get(SETTINGS_KEEP_CHILDREN_ORDER) async def tearDown(self): if self.old_keep_children_order is not None: carb.settings.get_settings().set(SETTINGS_KEEP_CHILDREN_ORDER, self.old_keep_children_order) self.stage_widget.destroy() self.stage_widget = None await self.usd_context.close_stage_async() async def test_prim_item_api(self): stage_model = self.stage_widget.get_model() root_stage_item = stage_model.root self.assertTrue(root_stage_item.visibility_model) self.assertTrue(root_stage_item.type_model) self.assertTrue(root_stage_item.name_model) async def test_show_prim_displayname(self): self.stage_widget.show_prim_display_name = False prim = self.stage.DefinePrim("/test", "Xform") self.stage.DefinePrim("/test100", "Xform") self.stage.DefinePrim("/test200", "Xform") omni.usd.editor.set_display_name(prim, "display name test") await self.app.next_update_async() stage_model = self.stage_widget.get_model() root_stage_item = stage_model.root stage_items = stage_model.get_item_children(root_stage_item) self.assertTrue(stage_items) prim_item = stage_items[0] self.assertTrue(prim_item) self.assertEqual(prim_item.name, "test") self.assertEqual(prim_item.display_name, "display name test") self.assertEqual(prim_item.name_model.get_value_as_string(), "test") # Change it to display name will show its display name instead self.stage_widget.show_prim_display_name = True await self.app.next_update_async() await self.app.next_update_async() self.assertEqual(prim_item.name, "test") self.assertEqual(prim_item.display_name, "display name test") self.assertEqual(prim_item.name_model.get_value_as_string(), prim_item.display_name) # Empty display name will show path name instead omni.usd.editor.set_display_name(prim, "") await self.app.next_update_async() self.assertEqual(prim_item.name, "test") self.assertEqual(prim_item.display_name, prim_item.name) self.assertEqual(prim_item.name_model.get_value_as_string(), prim_item.display_name) # Emulate rename, it will rename prim name even it shows display name. stage_items = stage_model.get_item_children(root_stage_item) omni.usd.editor.set_display_name(prim, "display name test") await self.app.next_update_async() prim_item.name_model.begin_edit() prim_item.name_model.set_value("test3") prim_item.name_model.end_edit() await self.app.next_update_async() await self.app.next_update_async() stage_items = stage_model.get_item_children(root_stage_item) self.assertTrue(stage_items) prim_item = stage_items[-1] self.assertEqual(prim_item.name, "test3") self.assertEqual(prim_item.display_name, "display name test") self.assertEqual(prim_item.name_model.get_value_as_string(), prim_item.display_name) # Make sure change display name will not influence prim path. self.assertFalse(self.stage.GetPrimAtPath("/test")) self.assertTrue(self.stage.GetPrimAtPath("/test3")) self.assertEqual(stage_items[0].path, Sdf.Path("/test100")) self.assertEqual(stage_items[1].path, Sdf.Path("/test200")) self.assertEqual(stage_items[2].path, Sdf.Path("/test3")) self.stage_widget.show_prim_display_name = False prim_item.name_model.begin_edit() prim_item.name_model.set_value("test2") prim_item.name_model.end_edit() await self.app.next_update_async() await self.app.next_update_async() stage_items = stage_model.get_item_children(root_stage_item) self.assertTrue(stage_items) prim_item = stage_items[-1] self.assertEqual(prim_item.name, "test2") self.assertEqual(prim_item.display_name, "display name test") self.assertEqual(prim_item.name_model.get_value_as_string(), prim_item.name) self.assertFalse(self.stage.GetPrimAtPath("/test3")) self.assertTrue(self.stage.GetPrimAtPath("/test2")) def create_flat_prims(self, stage, parent_path, num): prim_paths = set([]) for i in range(num): prim = stage.DefinePrim(parent_path.AppendElementString(f"xform{i}"), "Xform") translation = Gf.Vec3d(-200, 0.0, 0.0) common_api = UsdGeom.XformCommonAPI(prim) common_api.SetTranslate(translation) prim_paths.add(prim.GetPath()) return prim_paths def get_all_stage_items(self, stage_item: StageItem): stage_items = set([]) q = [stage_item] if stage_item.path != Sdf.Path.absoluteRootPath: stage_items.add(stage_item) while len(q) > 0: item = q.pop() # Populating it if it's not. children = item.stage_model.get_item_children(item) for child in children: stage_items.add(child) q.append(child) return stage_items def get_all_stage_item_paths(self, stage_item): stage_items = self.get_all_stage_items(stage_item) paths = [item.path for item in stage_items] return set(paths) def create_prims(self, stage, parent_prim_path, level=[]): if not level: return set([]) prim_paths = self.create_flat_prims(stage, parent_prim_path, level[0]) all_child_paths = set([]) for prim_path in prim_paths: all_child_paths.update(self.create_prims(stage, prim_path, level[1:])) prim_paths.update(all_child_paths) return prim_paths def check_prim_children(self, prim_item: StageItem, expected_children_prim_paths): paths = set({}) children = prim_item.stage_model.get_item_children(prim_item) for child in children: paths.add(child.path) if children: self.assertTrue(prim_item.stage_model.can_item_have_children(prim_item)) else: self.assertFalse(prim_item.stage_model.can_item_have_children(prim_item)) self.assertEqual(paths, set(expected_children_prim_paths)) def check_prim_tree(self, prim_item: StageItem, expected_prim_paths): paths = self.get_all_stage_item_paths(prim_item) self.assertEqual(set(paths), set(expected_prim_paths)) async def test_prims_create(self): stage_model = self.stage_widget.get_model() root_stage_item = stage_model.root prim_paths = self.create_prims(self.stage, Sdf.Path.absoluteRootPath, [10, 5, 4, 2]) await self.app.next_update_async() await self.app.next_update_async() self.check_prim_tree(root_stage_item, prim_paths) async def test_prims_edits(self): stage_model = self.stage_widget.get_model() root_stage_item = stage_model.root prim_paths = self.create_prims(self.stage, Sdf.Path.absoluteRootPath, [10, 5, 4, 2]) await self.app.next_update_async() await self.app.next_update_async() # Populate children of root prim stage_model.get_item_children(None) prim1_of_root = root_stage_item.children[0].path omni.kit.commands.execute( "DeletePrims", paths=[prim1_of_root] ) await self.app.next_update_async() changed_prims = prim_paths.copy() for path in prim_paths: if path.HasPrefix(prim1_of_root): changed_prims.discard(path) self.check_prim_tree(root_stage_item, changed_prims) omni.kit.undo.undo() await self.app.next_update_async() await self.app.next_update_async() self.check_prim_tree(root_stage_item, prim_paths) async def test_layer_flush(self): stage_model = self.stage_widget.get_model() root_stage_item = stage_model.root prim_paths = self.create_prims(self.stage, Sdf.Path.absoluteRootPath, [10, 5, 4, 2]) await self.app.next_update_async() self.check_prim_tree(root_stage_item, prim_paths) self.stage.GetRootLayer().Clear() await self.app.next_update_async() self.check_prim_tree(root_stage_item, set([])) async def test_parenting_prim_refresh(self): stage_model = self.stage_widget.get_model() root_stage_item = stage_model.root # Creates 3 prims prim_paths = list(self.create_prims(self.stage, Sdf.Path.absoluteRootPath, [3])) await self.app.next_update_async() self.check_prim_tree(root_stage_item, set(prim_paths)) # Moves first two prims as the children of the 3rd one. new_path0 = prim_paths[2].AppendElementString(prim_paths[0].name) new_path1 = prim_paths[2].AppendElementString(prim_paths[1].name) omni.kit.commands.execute("MovePrim", path_from=prim_paths[0], path_to=new_path0) omni.kit.commands.execute("MovePrim", path_from=prim_paths[1], path_to=new_path1) await self.app.next_update_async() await self.app.next_update_async() self.assertEqual(len(root_stage_item.children), 1) self.assertEqual(root_stage_item.children[0].path, prim_paths[2]) self.check_prim_children(root_stage_item.children[0], set([new_path0, new_path1])) omni.kit.undo.undo() await self.app.next_update_async() self.check_prim_children(root_stage_item, set(prim_paths[1:3])) self.check_prim_tree(root_stage_item, set([new_path0, prim_paths[1], prim_paths[2]])) omni.kit.undo.undo() await self.app.next_update_async() await self.app.next_update_async() self.check_prim_tree(root_stage_item, set(prim_paths)) async def test_filter_prim(self): stage_model = self.stage_widget.get_model() root_stage_item = stage_model.root prim_paths = self.create_prims(self.stage, Sdf.Path.absoluteRootPath, [10, 5, 4, 2]) await self.app.next_update_async() await self.app.next_update_async() # Flat search stage_model.flat = True stage_model.filter_by_text("xform") self.check_prim_children(root_stage_item, prim_paths) children = root_stage_item.children for child in children: self.assertTrue(not child.children) children = stage_model.get_item_children(root_stage_item) paths = [] for child in children: paths.append(child.path) self.assertEqual(set(paths), set(prim_paths)) expected_paths = set([]) for path in prim_paths: if str(path).endswith("xform0"): expected_paths.add(path) stage_model.filter_by_text("xform0") children = stage_model.get_item_children(root_stage_item) paths = [] for child in children: paths.append(child.path) self.assertEqual(set(paths), set(expected_paths)) # Non-flat search stage_model.flat = False stage_model.filter_by_text("xform") self.check_prim_tree(root_stage_item, prim_paths) children = root_stage_item.children for child in children: self.assertFalse(not child.children) # Filtering with lambda # Reset all states stage_model.filter_by_text(None) stage_model.filter(add={"Camera" : lambda prim: prim.IsA(UsdGeom.Camera)}) self.check_prim_tree(root_stage_item, []) stage_model.filter(remove=["Camera"]) self.check_prim_tree(root_stage_item, prim_paths) children = root_stage_item.children for child in children: self.assertFalse(not child.children) stage_model.filter(add={"Xform" : lambda prim: prim.IsA(UsdGeom.Xform)}) self.check_prim_tree(root_stage_item, prim_paths) camera = self.stage.DefinePrim("/new_group/camera0", "Camera") await self.app.next_update_async() await self.app.next_update_async() # Adds new camera will still not be filtered as only xform is filtered currently self.check_prim_tree(root_stage_item, prim_paths) # Filters camera also stage_model.filter(add={"Camera" : lambda prim: prim.IsA(UsdGeom.Camera)}) all_paths = [] all_paths.extend(prim_paths) all_paths.append(camera.GetPath()) # Needs to add parent also as it's in non-flat mode all_paths.append(camera.GetPath().GetParentPath()) self.check_prim_tree(root_stage_item, all_paths) # Creates another camera and filter it. camera1 = self.stage.DefinePrim("/new_group2/camera1", "Camera") all_paths.append(camera1.GetPath()) all_paths.append(camera1.GetPath().GetParentPath()) await self.app.next_update_async() await self.app.next_update_async() self.check_prim_tree(root_stage_item, all_paths) # Filters with both types and texts. stage_model.filter_by_text("camera") all_paths = [ camera.GetPath(), camera.GetPath().GetParentPath(), camera1.GetPath(), camera1.GetPath().GetParentPath() ] self.check_prim_tree(root_stage_item, all_paths) # Add new reference layer will be filtered also reference_layer = Sdf.Layer.CreateAnonymous() ref_stage = Usd.Stage.Open(reference_layer) prim = ref_stage.DefinePrim("/root/camera_reference", "Camera") default_prim = prim.GetParent() ref_stage.SetDefaultPrim(default_prim) reference_prim = self.stage.DefinePrim("/root", "Xform") reference_prim.GetReferences().AddReference(reference_layer.identifier) await self.app.next_update_async() await self.app.next_update_async() all_paths.append(prim.GetPath()) all_paths.append(default_prim.GetPath()) self.check_prim_tree(root_stage_item, all_paths) # Add new sublayer too. reference_layer = Sdf.Layer.CreateAnonymous() sublayer_stage = Usd.Stage.Open(reference_layer) prim = sublayer_stage.DefinePrim("/root/camera_sublayer", "Camera") self.stage.GetRootLayer().subLayerPaths.append(reference_layer.identifier) await self.app.next_update_async() await self.app.next_update_async() all_paths.append(prim.GetPath()) self.check_prim_tree(root_stage_item, all_paths) # Clear all stage_model.filter(clear=True) stage_model.filter_by_text("") prim_paths.update(all_paths) self.check_prim_tree(root_stage_item, prim_paths) async def test_find_full_chain(self): stage_model = self.stage_widget.get_model() root_stage_item = stage_model.root prim_paths = self.create_prims(self.stage, Sdf.Path.absoluteRootPath, [10, 5, 4, 2]) await self.app.next_update_async() await self.app.next_update_async() path = Sdf.Path("/xform0/xform0/xform0/xform0") full_chain = stage_model.find_full_chain("/xform0/xform0/xform0/xform0") self.assertEqual(len(full_chain), 5) self.assertEqual(full_chain[0], root_stage_item) prefixes = path.GetPrefixes() for i in range(len(prefixes)): self.assertEqual(full_chain[i + 1].path, prefixes[i]) async def test_has_missing_references(self): stage_model = self.stage_widget.get_model() self.create_prims(self.stage, Sdf.Path.absoluteRootPath, [1]) path = Sdf.Path("/xform0") full_chain = stage_model.find_full_chain(path) self.assertEqual(len(full_chain), 2) # Prim /xform0 prim_item = full_chain[1] self.assertFalse(prim_item.has_missing_references) prim = self.stage.GetPrimAtPath(path) prim.GetReferences().AddReference("./face-invalid-non-existed-file.usd") await self.app.next_update_async() await self.app.next_update_async() self.assertTrue(prim_item.has_missing_references) async def test_instanceable_flag_change(self): # OM-70714: Change instanceable flag will refresh children's instance_proxy flag. with tempfile.TemporaryDirectory() as tmpdirname: # save the file tmp_file_path = os.path.join(tmpdirname, "tmp.usda") result = await omni.usd.get_context().save_as_stage_async(tmp_file_path) self.assertTrue(result) stage = omni.usd.get_context().get_stage() prim = stage.DefinePrim("/World/cube", "Xform") stage.SetDefaultPrim(prim) stage.Save() await omni.usd.get_context().new_stage_async() stage = omni.usd.get_context().get_stage() prim = stage.DefinePrim("/World/Reference", "Xform") prim.GetReferences().AddReference(tmp_file_path) omni.kit.commands.execute("CopyPrim", path_from="/World/Reference", path_to="/World/Reference2") prim2 = stage.GetPrimAtPath("/World/Reference2") self.assertTrue(prim2) prim.SetInstanceable(True) prim2.SetInstanceable(True) await self.app.next_update_async() await self.app.next_update_async() self.stage_widget = StageWidget(stage) stage_model = self.stage_widget.get_model() # Populate all childrens stage_model.find_full_chain("/World/Reference/cube") stage_model.find_full_chain("/World/Reference2/cube") reference_item = stage_model.find("/World/Reference") reference2_item = stage_model.find("/World/Reference2") self.assertTrue(reference_item and reference2_item) for item in [reference_item, reference2_item]: self.assertTrue(item.instanceable) for child in item.children: self.assertTrue(child.instance_proxy) prim2.SetInstanceable(False) await self.app.next_update_async() for child in reference_item.children: self.assertTrue(child.instance_proxy) for child in reference2_item.children: self.assertFalse(child.instance_proxy) async def _test_sorting_internal(self, prim_paths, sort_policy, sort_func, reverse): self.stage_widget = StageWidget(self.stage) stage_model = self.stage_widget.get_model() stage_model.set_items_sort_policy(sort_policy) await self.app.next_update_async() await self.app.next_update_async() # Checkes all items to see if their children are sorted correctly. root_stage_item = stage_model.root queue = [root_stage_item] while queue: item = queue.pop() children = stage_model.get_item_children(item) if not children: continue queue.extend(children) if item == root_stage_item: expected_children_paths = list(prim_paths.keys()) else: expected_children_paths = list(prim_paths[str(item.path)]) if sort_func: expected_children_paths.sort(key=sort_func, reverse=reverse) elif reverse: expected_children_paths.reverse() children_paths = [str(child.path) for child in children] self.assertEqual(children_paths, expected_children_paths) async def test_sorting(self): # Generating test data prim_paths = {} types = ["Cube", "Cone", "Sphere", "Xform", "Cylinder", "Capsule"] prim_types = {} prim_visibilities = {} with Sdf.ChangeBlock(): for i in range(0, 26): letter = random.choice(string.ascii_letters) parent_path = f"/{letter}{i}" prim_type = random.choice(types) spec = Sdf.CreatePrimInLayer(self.stage.GetRootLayer(), parent_path) spec.typeName = prim_type children_paths = [] prim_types[parent_path] = prim_type prim_visibilities[parent_path] = True for j in range(0, 100): letter = random.choice(string.ascii_letters) prim_type = random.choice(types) spec = Sdf.CreatePrimInLayer(self.stage.GetRootLayer(), f"{parent_path}/{letter}{j}") spec.typeName = prim_type children_paths.append(str(spec.path)) prim_types[str(spec.path)] = prim_type visible = random.choice([True, False]) prim_visibilities[str(spec.path)] = visible prim_paths[parent_path] = children_paths for path, value in prim_visibilities.items(): prim = self.stage.GetPrimAtPath(path) if prim: imageable = UsdGeom.Imageable(prim) if not value: imageable.MakeInvisible() visiblity = imageable.ComputeVisibility() await self._test_sorting_internal(prim_paths, StageItemSortPolicy.DEFAULT, None, False) await self._test_sorting_internal(prim_paths, StageItemSortPolicy.NAME_COLUMN_OLD_TO_NEW, None, False) await self._test_sorting_internal(prim_paths, StageItemSortPolicy.NAME_COLUMN_NEW_TO_OLD, None, True) await self._test_sorting_internal( prim_paths, StageItemSortPolicy.NAME_COLUMN_A_TO_Z, lambda x: Sdf.Path(x).name.lower(), False ) await self._test_sorting_internal( prim_paths, StageItemSortPolicy.NAME_COLUMN_Z_TO_A, lambda x: Sdf.Path(x).name.lower(), True ) await self._test_sorting_internal( prim_paths, StageItemSortPolicy.TYPE_COLUMN_A_TO_Z, lambda x, p=prim_types: p[x].lower(), False ) await self._test_sorting_internal( prim_paths, StageItemSortPolicy.TYPE_COLUMN_Z_TO_A, lambda x, p=prim_types: p[x].lower(), True, ) await self._test_sorting_internal( prim_paths, StageItemSortPolicy.VISIBILITY_COLUMN_INVISIBLE_TO_VISIBLE, lambda x, p=prim_visibilities: 1 if p[x] else 0, False ) await self._test_sorting_internal( prim_paths, StageItemSortPolicy.VISIBILITY_COLUMN_VISIBLE_TO_INVISIBLE, lambda x, p=prim_visibilities: 0 if p[x] else 1, False ) async def test_column_delegate(self): sub = StageColumnDelegateRegistry().register_column_delegate("test", TestColumnDelegate) self.assertEqual(StageColumnDelegateRegistry().get_column_delegate("test"), TestColumnDelegate) names = StageColumnDelegateRegistry().get_column_delegate_names() self.assertTrue("test" in names) async def test_item_destroy(self): destroyed_paths = [] def on_items_destroyed(items): nonlocal destroyed_paths for item in items: destroyed_paths.append(item.path) stage_model = self.stage_widget.get_model() prim_paths = list(self.create_prims(self.stage, Sdf.Path.absoluteRootPath, [3])) root_stage_item = stage_model.root # Populate root node stage_model.get_item_children(root_stage_item) sub = stage_model.subscribe_stage_items_destroyed(on_items_destroyed) self.stage.RemovePrim(prim_paths[0]) await self.app.next_update_async() await self.app.next_update_async() self.assertTrue(len(destroyed_paths) == 1) self.assertEqual(destroyed_paths[0], prim_paths[0]) async def test_stage_item_properties(self): stage_model = self.stage_widget.get_model() stage = stage_model.stage xform_prim = stage.DefinePrim("/test_prim", "Xform") await self.app.next_update_async() await self.app.next_update_async() # Populate root node stage_model.get_item_children(stage_model.root) stage_item = stage_model.find(xform_prim.GetPath()) self.assertTrue(stage_item) self.assertEqual(stage_item.name, "test_prim") self.assertEqual(stage_item.type_name, "Xform") self.assertTrue(stage_item.active) self.assertFalse(stage_item.has_missing_references) self.assertFalse(stage_item.payrefs) self.assertFalse(stage_item.is_default) self.assertFalse(stage_item.is_outdated) self.assertFalse(stage_item.in_session) self.assertFalse(stage_item.auto_reload) self.assertEqual(stage_item.root_identifier, stage.GetRootLayer().identifier) self.assertFalse(stage_item.instance_proxy) self.assertFalse(stage_item.instanceable) self.assertTrue(stage_item.visible) self.assertFalse(stage_item.payloads) self.assertFalse(stage_item.references) self.assertTrue(stage_item.prim) stage.SetDefaultPrim(xform_prim) xform_prim.SetInstanceable(True) await self.app.next_update_async() await self.app.next_update_async() self.assertTrue(stage_item.is_default) self.assertTrue(stage_item.instanceable) xform_prim.SetActive(False) await self.app.next_update_async() await self.app.next_update_async() self.assertFalse(stage_item.active) xform_prim = stage.GetPrimAtPath("/test_prim") xform_prim.SetActive(True) xform_prim = stage.GetPrimAtPath("/test_prim") # Changes active property will resync stage_item stage_model.get_item_children(stage_model.root) stage_item = stage_model.find(xform_prim.GetPath()) UsdGeom.Imageable(xform_prim).MakeInvisible() await self.app.next_update_async() await self.app.next_update_async() self.assertFalse(stage_item.visible) UsdGeom.Imageable(xform_prim).MakeVisible() await self.app.next_update_async() await self.app.next_update_async() self.assertTrue(stage_item.visible) xform_prim.GetReferences().AddReference("__non_existed_reference.usd") xform_prim.GetReferences().AddInternalReference("/non_existed_prim") await self.app.next_update_async() await self.app.next_update_async() self.assertTrue(stage_item.has_missing_references) self.assertEqual(stage_item.payrefs, ["__non_existed_reference.usd"]) self.assertTrue(stage_item.references) self.assertFalse(stage_item.payloads) xform_prim.GetPayloads().AddPayload("__non_existed_payload.usd") await self.app.next_update_async() await self.app.next_update_async() self.assertTrue(stage_item.has_missing_references) # Internal references will not be listed. self.assertEqual( set(stage_item.payrefs), set(["__non_existed_reference.usd", "__non_existed_payload.usd"]) ) self.assertTrue(stage_item.references) self.assertTrue(stage_item.payloads) async def test_reorder_prim(self): self.stage_widget.children_reorder_supported = True stage_model = self.stage_widget.get_model() root_stage_item = stage_model.root # Creates 3 prims prim_paths = list(self.create_prims(self.stage, Sdf.Path.absoluteRootPath, [3])) await self.app.next_update_async() self.check_prim_tree(root_stage_item, set(prim_paths)) # Moves first two prims as the children of the 3rd one. self.assertTrue(stage_model.drop_accepted(root_stage_item, root_stage_item.children[0], drop_location=2)) self.assertTrue(stage_model.drop_accepted(root_stage_item, root_stage_item.children[0], drop_location=1)) self.assertFalse(stage_model.drop_accepted(root_stage_item, root_stage_item.children[0], drop_location=-1)) children = root_stage_item.children prim_paths = [item.path for item in children] stage_model.drop(root_stage_item, root_stage_item.children[0], drop_location=2) await self.app.next_update_async() await self.app.next_update_async() stage_items = stage_model.get_item_children(root_stage_item) self.assertEqual(len(stage_items), 3) self.assertEqual(stage_items[0].path, prim_paths[1]) self.assertEqual(stage_items[1].path, prim_paths[0]) self.assertEqual(stage_items[2].path, prim_paths[2]) omni.kit.undo.undo() await self.app.next_update_async() stage_items = stage_model.get_item_children(root_stage_item) self.assertEqual(len(stage_items), 3) self.assertEqual(stage_items[0].path, prim_paths[0]) self.assertEqual(stage_items[1].path, prim_paths[1]) self.assertEqual(stage_items[2].path, prim_paths[2]) # Disable reorder self.stage_widget.children_reorder_supported = False self.assertFalse(stage_model.drop_accepted(root_stage_item, root_stage_item.children[0], drop_location=2)) self.assertFalse(stage_model.drop_accepted(root_stage_item, root_stage_item.children[0], drop_location=1)) self.assertFalse(stage_model.drop_accepted(root_stage_item, root_stage_item.children[0], drop_location=-1)) self.stage_widget.children_reorder_supported = True # Renaming prim will still keep the location of prim. # Enable setting to keep children order after rename. carb.settings.get_settings().set(SETTINGS_KEEP_CHILDREN_ORDER, True) stage_item = root_stage_item.children[0] stage_item.name_model.begin_edit() stage_item.name_model.set_value("renamed_item") stage_item.name_model.end_edit() await self.app.next_update_async() await self.app.next_update_async() stage_items = stage_model.get_item_children(root_stage_item) self.assertEqual(len(stage_items), 3) self.assertEqual(stage_items[0].path, Sdf.Path("/renamed_item")) self.assertEqual(stage_items[1].path, prim_paths[1]) self.assertEqual(stage_items[2].path, prim_paths[2]) omni.kit.undo.undo() await self.app.next_update_async() stage_items = stage_model.get_item_children(root_stage_item) self.assertEqual(len(stage_items), 3) self.assertEqual(stage_items[0].path, prim_paths[0]) self.assertEqual(stage_items[1].path, prim_paths[1]) self.assertEqual(stage_items[2].path, prim_paths[2]) with tempfile.TemporaryDirectory() as tmpdirname: # save the file tmp_file_path = os.path.join(tmpdirname, "tmp.usda") layer = Sdf.Layer.CreateNew(tmp_file_path) stage = Usd.Stage.Open(layer) prim = stage.DefinePrim("/World/cube", "Xform") stage.SetDefaultPrim(prim) stage.Save() stage = None layer = None stage_model.drop(root_stage_item, tmp_file_path, drop_location=3) stage_items = stage_model.get_item_children(root_stage_item) self.assertEqual(len(stage_items), 4) self.assertEqual(stage_items[0].path, prim_paths[0]) self.assertEqual(stage_items[1].path, prim_paths[1]) self.assertEqual(stage_items[2].path, prim_paths[2]) self.assertEqual(stage_items[3].path, Sdf.Path("/tmp")) stage_model.drop(root_stage_item, tmp_file_path, drop_location=1) stage_items = stage_model.get_item_children(root_stage_item) self.assertEqual(len(stage_items), 5) self.assertEqual(stage_items[1].path, Sdf.Path("/tmp_01")) await omni.usd.get_context().new_stage_async()
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/test_helper.py
import unittest import pathlib import carb import omni.kit.test from pxr import UsdShade from omni.ui.tests.test_base import OmniUiTest from .inspector_query import InspectorQuery class TestMouseUIHelper(OmniUiTest): # Before running each test async def setUp(self): await super().setUp() extension_path = omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__) self._test_path = pathlib.Path(extension_path).joinpath("data").joinpath("tests") self._inspector_query = InspectorQuery() # After running each test async def tearDown(self): await super().tearDown() async def wait_for_update(self, usd_context=omni.usd.get_context(), wait_frames=10): max_loops = 0 while max_loops < wait_frames: _, files_loaded, total_files = usd_context.get_stage_loading_status() await omni.kit.app.get_app().next_update_async() if files_loaded or total_files: continue max_loops = max_loops + 1 async def _simulate_mouse(self, data): import omni.appwindow import omni.ui as ui mouse = omni.appwindow.get_default_app_window().get_mouse() input_provider = carb.input.acquire_input_provider() window_width = ui.Workspace.get_main_window_width() window_height = ui.Workspace.get_main_window_height() for type, x, y in data: input_provider.buffer_mouse_event(mouse, type, (x / window_width, y / window_height), 0, (x, y)) await self.wait_for_update() async def _debug_capture(self, image_name: str): from pathlib import Path import omni.renderer_capture capture_next_frame = omni.renderer_capture.acquire_renderer_capture_interface().capture_next_frame_swapchain(image_name) await self.wait_for_update() wait_async_capture = omni.renderer_capture.acquire_renderer_capture_interface().wait_async_capture() await self.wait_for_update()
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/test_context_menu.py
import carb import omni import omni.kit.test import omni.usd import omni.client import omni.kit.widget.stage import omni.kit.app import omni.kit.ui_test as ui_test import pathlib from omni.kit.test_suite.helpers import arrange_windows from pxr import Sdf, UsdShade class TestContextMenu(omni.kit.test.AsyncTestCase): async def setUp(self): await arrange_windows("Stage", 800, 600) self.app = omni.kit.app.get_app() self.usd_context = omni.usd.get_context() await self.usd_context.new_stage_async() self.stage = omni.usd.get_context().get_stage() self.layer = Sdf.Layer.CreateAnonymous() extension_path = omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__) self._test_path = pathlib.Path(extension_path).joinpath("data").joinpath("tests") self._cube_usd_path = str(self._test_path.joinpath("usd/cube.usda")) self.ref_prim = self.stage.DefinePrim("/reference0", "Xform") self.ref_prim.GetReferences().AddReference(self.layer.identifier) self.child_prim = self.stage.DefinePrim("/reference0/child0", "Xform") self.payload_prim = self.stage.DefinePrim("/payload0", "Xform") self.payload_prim.GetPayloads().AddPayload(self.layer.identifier) self.rf_prim = self.stage.DefinePrim("/reference_and_payload0", "Xform") self.rf_prim.GetReferences().AddReference(self.layer.identifier) self.rf_prim.GetPayloads().AddPayload(self.layer.identifier) await self.wait() async def tearDown(self): pass async def wait(self, frames=10): for i in range(frames): await self.app.next_update_async() async def _find_all_prim_items(self): stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") reference_widget = stage_tree.find("**/Label[*].text=='reference0'") payload_widget = stage_tree.find("**/Label[*].text=='payload0'") reference_and_payload_widget = stage_tree.find("**/Label[*].text=='reference_and_payload0'") return reference_widget, payload_widget, reference_and_payload_widget async def test_expand_collapse_tree(self): rf_widget, _, _ = await self._find_all_prim_items() for name in ["All", "Component", "Group", "Assembly", "SubComponent"]: await rf_widget.right_click() await ui_test.select_context_menu(f"Collapse/{name}") await rf_widget.right_click() await ui_test.select_context_menu(f"Expand/{name}") async def test_default_prim(self): rf_widget, _, _ = await self._find_all_prim_items() await rf_widget.right_click() with self.assertRaises(Exception): await ui_test.select_context_menu("Clear Default Prim") await rf_widget.right_click() await ui_test.select_context_menu("Set as Default Prim") await self.wait() stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") ref_widget = stage_tree.find("**/Label[*].text=='reference0 (defaultPrim)'") self.assertTrue(ref_widget) ref_widget_old = stage_tree.find("**/Label[*].text=='reference0'") self.assertFalse(ref_widget_old) with self.assertRaises(Exception): await ui_test.select_context_menu("Set as Default Prim") await rf_widget.right_click() await ui_test.select_context_menu("Clear Default Prim") await self.wait() ref_widget_old = stage_tree.find("**/Label[*].text=='reference0 (defaultPrim)'") self.assertFalse(ref_widget_old) ref_widget = stage_tree.find("**/Label[*].text=='reference0'") self.assertTrue(ref_widget) async def test_find_in_browser(self): self.usd_context.get_selection().set_selected_prim_paths( [str(self.ref_prim.GetPath())], True ) await self.wait() rf_widget, _, _ = await self._find_all_prim_items() await rf_widget.right_click() # If there are no on-disk references with self.assertRaises(Exception): await ui_test.select_context_menu("Find in Content Browser") # Adds a reference that's on disk. self.ref_prim.GetReferences().ClearReferences() self.ref_prim.GetReferences().AddReference(self._cube_usd_path) await self.wait() await rf_widget.right_click() await ui_test.select_context_menu("Find in Content Browser") async def test_group_selected(self): self.usd_context.get_selection().set_selected_prim_paths( [str(self.ref_prim.GetPath()), str(self.payload_prim.GetPath())], True ) await self.wait() old_ref_path = self.ref_prim.GetPath() old_payload_path = self.payload_prim.GetPath() rf_widget, _, _ = await self._find_all_prim_items() await rf_widget.right_click() await ui_test.select_context_menu("Group Selected") await self.wait() new_ref_path = Sdf.Path("/Group").AppendElementString(old_ref_path.name) new_payload_path = Sdf.Path("/Group").AppendElementString(old_payload_path.name) self.assertFalse(self.stage.GetPrimAtPath(old_ref_path)) self.assertFalse(self.stage.GetPrimAtPath(old_payload_path)) self.assertTrue(self.stage.GetPrimAtPath(new_ref_path)) self.assertTrue(self.stage.GetPrimAtPath(new_payload_path)) self.usd_context.get_selection().set_selected_prim_paths( [str(new_ref_path), str(new_payload_path)], True ) await self.wait() stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") ref_widget = stage_tree.find("**/Label[*].text=='reference0'") self.assertTrue(ref_widget) await rf_widget.right_click() await ui_test.select_context_menu("Ungroup Selected") await self.wait() self.assertTrue(self.stage.GetPrimAtPath(old_ref_path)) self.assertTrue(self.stage.GetPrimAtPath(old_payload_path)) self.assertFalse(self.stage.GetPrimAtPath(new_ref_path)) self.assertFalse(self.stage.GetPrimAtPath(new_payload_path)) async def test_duplicate_prim(self): self.usd_context.get_selection().set_selected_prim_paths( [str(self.ref_prim.GetPath()), str(self.payload_prim.GetPath())], True ) await self.wait() rf_widget, _, _ = await self._find_all_prim_items() await rf_widget.right_click() await ui_test.select_context_menu("Duplicate") self.assertTrue(self.stage.GetPrimAtPath("/reference0_01")) self.assertTrue(self.stage.GetPrimAtPath("/payload0_01")) async def test_delete_prim(self): self.usd_context.get_selection().set_selected_prim_paths( [str(self.ref_prim.GetPath()), str(self.payload_prim.GetPath())], True ) await self.wait() rf_widget, _, _ = await self._find_all_prim_items() await rf_widget.right_click() await ui_test.select_context_menu("Delete") self.assertFalse(self.ref_prim) self.assertFalse(self.payload_prim) async def test_refresh_reference_or_payload(self): self.usd_context.get_selection().set_selected_prim_paths( [str(self.ref_prim.GetPath())], True ) await self.wait() rf_widget, _, _ = await self._find_all_prim_items() await rf_widget.right_click() await ui_test.select_context_menu("Refresh Reference") async def test_convert_between_ref_and_payload(self): rf_widget, payload_widget, ref_and_payload_widget = await self._find_all_prim_items() await rf_widget.right_click() with self.assertRaises(Exception): await ui_test.select_context_menu("Convert Payloads to References") await rf_widget.right_click() await ui_test.select_context_menu("Convert References to Payloads") ref_prim = self.stage.GetPrimAtPath("/reference0") ref_and_layers = omni.usd.get_composed_references_from_prim(ref_prim) payload_and_layers = omni.usd.get_composed_payloads_from_prim(ref_prim) self.assertTrue(len(ref_and_layers) == 0) self.assertTrue(len(payload_and_layers) == 1) await payload_widget.right_click() with self.assertRaises(Exception): await ui_test.select_context_menu("Convert References to Payloads") await payload_widget.right_click() await ui_test.select_context_menu("Convert Payloads to References") payload_prim = self.stage.GetPrimAtPath("/payload0") ref_and_layers = omni.usd.get_composed_references_from_prim(payload_prim) payload_and_layers = omni.usd.get_composed_payloads_from_prim(payload_prim) self.assertTrue(len(ref_and_layers) == 1) self.assertTrue(len(payload_and_layers) == 0) await ref_and_payload_widget.right_click() await ui_test.select_context_menu("Convert References to Payloads") prim = self.stage.GetPrimAtPath("/reference_and_payload0") ref_and_layers = omni.usd.get_composed_references_from_prim(prim) payload_and_layers = omni.usd.get_composed_payloads_from_prim(prim) self.assertEqual(len(ref_and_layers), 0) self.assertEqual(len(payload_and_layers), 1) await ref_and_payload_widget.right_click() await ui_test.select_context_menu("Convert Payloads to References") prim = self.stage.GetPrimAtPath("/reference_and_payload0") ref_and_layers = omni.usd.get_composed_references_from_prim(prim) payload_and_layers = omni.usd.get_composed_payloads_from_prim(prim) self.assertEqual(len(ref_and_layers), 1) self.assertEqual(len(payload_and_layers), 0) async def test_select_bound_objects(self): menu_name = "Select Bound Objects" rf_widget, _, _ = await self._find_all_prim_items() await rf_widget.right_click() with self.assertRaises(Exception): await ui_test.select_context_menu(menu_name) material = UsdShade.Material.Define(self.stage, "/material0") UsdShade.MaterialBindingAPI(self.payload_prim).Bind(material) await self.wait() stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") material_widget = stage_tree.find("**/Label[*].text=='material0'") await material_widget.right_click() await ui_test.select_context_menu(menu_name) await self.wait() self.assertEqual(omni.usd.get_context().get_selection().get_selected_prim_paths(), [str(self.payload_prim.GetPath())]) async def test_binding_material(self): menu_name = "Bind Material To Selected Objects" rf_widget, _, _ = await self._find_all_prim_items() await rf_widget.right_click() with self.assertRaises(Exception): await ui_test.select_context_menu(menu_name) material = UsdShade.Material.Define(self.stage, "/material0") UsdShade.MaterialBindingAPI(self.payload_prim).Bind(material) await self.wait() stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") material_widget = stage_tree.find("**/Label[*].text=='material0'") await material_widget.right_click() # No valid selection with self.assertRaises(Exception): await ui_test.select_context_menu(menu_name) self.usd_context.get_selection().set_selected_prim_paths( [str(self.payload_prim.GetPath())], True ) await self.wait() await material_widget.right_click() await ui_test.select_context_menu(menu_name) await self.wait() selected_paths = omni.usd.get_context().get_selection().get_selected_prim_paths() self.assertEqual(selected_paths, [str(self.payload_prim.GetPath())]) async def test_set_kind(self): rf_widget, _, _ = await self._find_all_prim_items() self.usd_context.get_selection().set_selected_prim_paths( [str(self.ref_prim.GetPath())], True ) await self.wait() for name in ["Assembly", "Group", "Component", "Subcomponent"]: await rf_widget.right_click() await ui_test.select_context_menu(f"Set Kind/{name}") async def test_lock_specs(self): rf_widget, _, _ = await self._find_all_prim_items() for menu_name in ["Lock Selected", "Unlock Selected", "Lock Selected Hierarchy", "Unlock Selected Hierarchy"]: await rf_widget.right_click() await ui_test.select_context_menu(f"Locks/{menu_name}") await rf_widget.right_click() await ui_test.select_context_menu("Locks/Lock Selected Hierarchy") await rf_widget.right_click() await ui_test.select_context_menu("Locks/Select Locked Prims") await self.wait() selected_paths = omni.usd.get_context().get_selection().get_selected_prim_paths() self.assertEqual(selected_paths, [str(self.ref_prim.GetPath()), str(self.child_prim.GetPath())]) async def test_assign_material(self): menu_name = "Assign Material" rf_widget, _, _ = await self._find_all_prim_items() material = UsdShade.Material.Define(self.stage, "/material0") UsdShade.MaterialBindingAPI(self.payload_prim).Bind(material) await self.wait() await rf_widget.right_click() await ui_test.select_context_menu(menu_name) dialog = ui_test.find("Bind material to reference0###context_menu_bind") self.assertTrue(dialog) button = dialog.find("**/Button[*].text=='Ok'") self.assertTrue(button) await button.click() async def test_rename_prim(self): await ui_test.find("Stage").focus() menu_name = "Rename" rf_widget, _, _ = await self._find_all_prim_items() stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") await rf_widget.right_click(rf_widget.center) await ui_test.select_context_menu(menu_name) await self.wait(10) string_fields = stage_tree.find_all("**/StringField[*].identifier=='rename_field'") self.assertTrue(len(string_fields) > 0) string_field = string_fields[0] # FIXME: Cannot make it visible in tests, but have to do it manually string_field.widget.visible = True await string_field.input("test") self.assertTrue(self.stage.GetPrimAtPath("/reference0test")) self.assertFalse(self.stage.GetPrimAtPath("/reference0"))
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/test_stage.py
## Copyright (c) 2018-2019, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import omni.kit.test from pathlib import Path from omni.kit.widget.stage import StageWidget from omni.kit.widget.stage.stage_icons import StageIcons from omni.ui.tests.test_base import OmniUiTest from pxr import Usd, UsdGeom from omni.kit import ui_test from omni.kit.test_suite.helpers import arrange_windows, wait_stage_loading import omni.kit.app CURRENT_PATH = Path(__file__).parent REPO_PATH = CURRENT_PATH for i in range(10): REPO_PATH = REPO_PATH.parent BOWL_STAGE = REPO_PATH.joinpath("data/usd/tests/bowl.usd") STYLE = {"Field": {"background_color": 0xFF24211F, "border_radius": 2}} class TestStage(OmniUiTest): # Before running each test async def setUp(self): await arrange_windows(hide_viewport=True) # After running each test async def tearDown(self): await wait_stage_loading() async def test_general(self): """Testing general look of StageWidget""" StageIcons()._icons = {} window = await self.create_test_window() stage = Usd.Stage.Open(f"{BOWL_STAGE}") if not stage: self.fail(f"Stage {BOWL_STAGE} doesn't exist") return with window.frame: stage_widget = StageWidget(stage, style=STYLE) # 5 frames to rasterize the icons for _ in range(5): await omni.kit.app.get_app().next_update_async() await self.finalize_test() async def test_visibility(self): """Testing visibility of StageWidget""" StageIcons()._icons = {} window = await self.create_test_window() stage = Usd.Stage.CreateInMemory("test.usd") with window.frame: stage_widget = StageWidget(stage, style=STYLE) UsdGeom.Mesh.Define(stage, "/A") UsdGeom.Mesh.Define(stage, "/A/B") UsdGeom.Mesh.Define(stage, "/C").MakeInvisible() # 5 frames to rasterize the icons for _ in range(5): await omni.kit.app.get_app().next_update_async() await self.finalize_test() async def test_dynamic(self): """Testing the ability to watch the stage""" StageIcons()._icons = {} window = await self.create_test_window() stage = Usd.Stage.CreateInMemory("test.usd") with window.frame: stage_widget = StageWidget(stage, style=STYLE) UsdGeom.Mesh.Define(stage, "/A") # Wait one frame to be sure other objects created after initialization await omni.kit.app.get_app().next_update_async() UsdGeom.Mesh.Define(stage, "/B") mesh = UsdGeom.Mesh.Define(stage, "/C") # Wait one frame to be sure other objects created after initialization await omni.kit.app.get_app().next_update_async() mesh.MakeInvisible() UsdGeom.Mesh.Define(stage, "/D") # 5 frames to rasterize the icons for _ in range(5): await omni.kit.app.get_app().next_update_async() await self.finalize_test() async def test_instanceable(self): """Testing the ability to watch the instanceable state""" StageIcons()._icons = {} window = await self.create_test_window() stage = Usd.Stage.CreateInMemory("test.usd") with window.frame: stage_widget = StageWidget(stage, style=STYLE) UsdGeom.Xform.Define(stage, "/A") UsdGeom.Mesh.Define(stage, "/A/Shape") prim = UsdGeom.Xform.Define(stage, "/B").GetPrim() prim.GetReferences().AddInternalReference("/A") # Wait one frame to be sure other objects created after initialization await omni.kit.app.get_app().next_update_async() stage_widget.expand("/B") await omni.kit.app.get_app().next_update_async() prim.SetInstanceable(True) # 5 frames to rasterize the icons for _ in range(5): await omni.kit.app.get_app().next_update_async() await self.finalize_test()
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/drag_drop_multi.py
## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import omni.kit.test import omni.kit.app import omni.usd from omni.kit.test.async_unittest import AsyncTestCase from omni.kit import ui_test from pxr import Sdf, UsdShade from omni.kit.test_suite.helpers import ( open_stage, get_test_data_path, get_prims, wait_stage_loading, arrange_windows ) from omni.kit.window.content_browser.test_helper import ContentBrowserTestHelper class DragDropFileStageMulti(AsyncTestCase): # Before running each test async def setUp(self): await arrange_windows() await open_stage(get_test_data_path(__name__, "bound_shapes.usda")) # After running each test async def tearDown(self): await wait_stage_loading() async def test_l1_drag_drop_multi_usd_stage(self): from carb.input import KeyboardInput await ui_test.find("Content").focus() usd_context = omni.usd.get_context() stage = usd_context.get_stage() stage_window = ui_test.find("Stage") await stage_window.focus() # verify prims paths = [prim.GetPath().pathString for prim in get_prims(stage) if not omni.usd.is_hidden_type(prim)] self.assertEqual(paths, ['/World', '/World/defaultLight', '/World/Cone', '/World/Cube', '/World/Sphere', '/World/Cylinder', '/World/Looks', '/World/Looks/OmniPBR', '/World/Looks/OmniPBR/Shader', '/World/Looks/OmniGlass', '/World/Looks/OmniGlass/Shader', '/World/Looks/OmniSurface_Plastic', '/World/Looks/OmniSurface_Plastic/Shader']) # drag/drop files to stage window drag_target = stage_window.position + ui_test.Vec2(stage_window.size.x / 2, stage_window.size.y - 96) async with ContentBrowserTestHelper() as content_browser_helper: usd_path = get_test_data_path(__name__) await content_browser_helper.drag_and_drop_tree_view( usd_path, names=["4Lights.usda", "quatCube.usda"], drag_target=drag_target) # verify prims paths = [prim.GetPath().pathString for prim in get_prims(stage) if not omni.usd.is_hidden_type(prim)] self.assertEqual(paths, ['/World', '/World/defaultLight', '/World/Cone', '/World/Cube', '/World/Sphere', '/World/Cylinder', '/World/Looks', '/World/Looks/OmniPBR', '/World/Looks/OmniPBR/Shader', '/World/Looks/OmniGlass', '/World/Looks/OmniGlass/Shader', '/World/Looks/OmniSurface_Plastic', '/World/Looks/OmniSurface_Plastic/Shader', '/World/_Lights', '/World/_Lights/SphereLight_01', '/World/_Lights/SphereLight_02', '/World/_Lights/SphereLight_03', '/World/_Lights/SphereLight_00', '/World/_Lights/Cube', '/World/quatCube', '/World/quatCube/Cube'])
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/test_header.py
import carb import omni import omni.kit.test import omni.usd import omni.client import omni.kit.widget.stage import omni.kit.app import omni.kit.ui_test as ui_test from omni.kit.test_suite.helpers import arrange_windows from ..stage_model import StageItemSortPolicy class TestHeader(omni.kit.test.AsyncTestCase): async def setUp(self): self.app = omni.kit.app.get_app() await arrange_windows("Stage", 800, 600) async def tearDown(self): pass async def wait(self, frames=4): for i in range(frames): await self.app.next_update_async() async def test_name_header(self): stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") self.assertTrue(stage_tree) stage_model = stage_tree.widget.model stage_model.set_items_sort_policy(StageItemSortPolicy.DEFAULT) name_label = stage_tree.find("**/Label[*].text=='Name (Old to New)'") self.assertTrue(name_label) await name_label.click() await self.wait() name_label = stage_tree.find("**/Label[*].text=='Name (A to Z)'") self.assertTrue(name_label) await name_label.click() await self.wait() name_label = stage_tree.find("**/Label[*].text=='Name (Z to A)'") self.assertTrue(name_label) await name_label.click() await self.wait() name_label = stage_tree.find("**/Label[*].text=='Name (New to Old)'") self.assertTrue(name_label) await name_label.click() await self.wait() name_label = stage_tree.find("**/Label[*].text=='Name (Old to New)'") self.assertTrue(name_label) async def test_visibility_header(self): stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") self.assertTrue(stage_tree) stage_model = stage_tree.widget.model stage_model.set_items_sort_policy(StageItemSortPolicy.DEFAULT) self.assertEqual(stage_model.get_items_sort_policy(), StageItemSortPolicy.DEFAULT) visibility_image = stage_tree.find("**/Image[*].name=='visibility_header'") self.assertTrue(visibility_image) await visibility_image.click() await self.wait() self.assertEqual(stage_model.get_items_sort_policy(), StageItemSortPolicy.VISIBILITY_COLUMN_VISIBLE_TO_INVISIBLE) await visibility_image.click() await self.wait() self.assertEqual(stage_model.get_items_sort_policy(), StageItemSortPolicy.VISIBILITY_COLUMN_INVISIBLE_TO_VISIBLE) await visibility_image.click() await self.wait() self.assertEqual(stage_model.get_items_sort_policy(), StageItemSortPolicy.DEFAULT) async def test_type_header(self): stage_tree = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") self.assertTrue(stage_tree) stage_model = stage_tree.widget.model stage_model.set_items_sort_policy(StageItemSortPolicy.DEFAULT) self.assertEqual(stage_model.get_items_sort_policy(), StageItemSortPolicy.DEFAULT) type_label = stage_tree.find("**/Label[*].text=='Type'") self.assertTrue(type_label) await type_label.click() await self.wait() self.assertEqual(stage_model.get_items_sort_policy(), StageItemSortPolicy.TYPE_COLUMN_A_TO_Z) await type_label.click() await self.wait() self.assertEqual(stage_model.get_items_sort_policy(), StageItemSortPolicy.TYPE_COLUMN_Z_TO_A) await type_label.click() await self.wait() self.assertEqual(stage_model.get_items_sort_policy(), StageItemSortPolicy.DEFAULT)
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/tests/inspector_query.py
from typing import Optional, Union import omni.ui as ui import carb class InspectorQuery: def __init__(self) -> None: pass @classmethod def child_widget(cls, widget: ui.Widget, predicate: str, last=False) -> Union[ui.Widget, None]: adjusted_predicate = predicate # when we don't have index we assume it is the first one index = None if "[" in adjusted_predicate: index = int(adjusted_predicate.split("[")[-1].split("]")[0]) adjusted_predicate = adjusted_predicate.split("[")[0] if last and index is None: if widget.__class__.__name__ == adjusted_predicate: return widget else: carb.log_warn(f"Widget {widget} is not matching predicate {adjusted_predicate}") return None if not widget.__class__.__name__ == adjusted_predicate: carb.log_warn(f"Widget {widget} is not matching predicate {adjusted_predicate}") return None children = ui.Inspector.get_children(widget) if not index: index = 0 if index >= len(children): carb.log_warn(f"Widget {widget} only as {len(children)}, asked for index {index}") return None return children[index] @classmethod def find_widget_path(cls, window: ui.Window, widget: ui.Widget) -> Union[str, None]: def traverse_widget_tree_for_match( location: ui.Widget, current_path: str, searched_widget: ui.Widget ) -> Union[str, None]: current_index = 0 current_children = ui.Inspector.get_children(location) for a_child in current_children: class_name = a_child.__class__.__name__ if a_child == widget: return f"{current_path}[{current_index}]/{class_name}" if isinstance(a_child, ui.Container): path = traverse_widget_tree_for_match( a_child, f"{current_path}[{current_index}]/{class_name}", searched_widget ) if path: return path current_index = current_index + 1 return None if window: start_path = f"{window.title}/Frame" return traverse_widget_tree_for_match(window.frame, start_path, widget) else: return None @classmethod def find_menu_item(cls, query: str) -> Optional[ui.Widget]: from omni.kit.mainwindow import get_main_window main_menu_bar = get_main_window().get_main_menu_bar() if not main_menu_bar: carb.log_warn("Current App doesn't have a MainMenuBar") return None tokens = query.split("/") current_children = main_menu_bar for i in range(1, len(tokens)): last = i == len(tokens) - 1 child = InspectorQuery.child_widget(current_children, tokens[i], last) if not child: carb.log_warn(f"Failed to find Child Widget at level {tokens[i]}") return None current_children = child return current_children @classmethod def find_context_menu_item(cls, query: str, menu_root: ui.Menu) -> Optional[ui.Widget]: menu_items = ui.Inspector.get_children(menu_root) for menu_item in menu_items: if isinstance(menu_item, ui.MenuItem): if query in menu_item.text: return menu_item return None @classmethod def find_widget(cls, query: str) -> Union[ui.Widget, None]: if not query: return None tokens = query.split("/") window = ui.Workspace.get_window(tokens[0]) if not window: carb.log_warn(f"Failed to find window: {tokens[0]}") return None if not isinstance(window, ui.Window): carb.log_warn(f"window: {tokens[0]} is not a ui.Window, query only work on ui.Window") return None if not (tokens[1] == "Frame" or tokens[1] == "Frame[0]"): carb.log_warn("Query currently only Support '<WindowName>/Frame/* or <WindowName>/Frame[0]/ type of query") return None frame = window.frame if len(tokens) == 2: return frame if tokens[-1] == "": tokens = tokens[:-1] current_children = ui.Inspector.get_children(frame)[0] for i in range(2, len(tokens)): last = i == len(tokens) - 1 child = InspectorQuery.child_widget(current_children, tokens[i], last) if not child: carb.log_warn(f"Failed to find Child Widget at level {tokens[i]}") return None current_children = child return current_children
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/delegates/type_column_delegate.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["TypeColumnDelegate"] from ..abstract_stage_column_delegate import AbstractStageColumnDelegate from ..stage_model import StageModel, StageItemSortPolicy from ..stage_item import StageItem from typing import List from enum import Enum import omni.ui as ui class TypeColumnSortPolicy(Enum): DEFAULT = 0 A_TO_Z = 1 Z_TO_A = 2 class TypeColumnDelegate(AbstractStageColumnDelegate): """The column delegate that represents the type column""" def __init__(self): super().__init__() self.__name_label_layout = None self.__name_label = None self.__items_sort_policy = TypeColumnSortPolicy.DEFAULT self.__stage_model: StageModel = None def destroy(self): if self.__name_label_layout: self.__name_label_layout.set_mouse_pressed_fn(None) @property def initial_width(self): """The width of the column""" return ui.Pixel(100) def __initialize_policy_from_model(self): stage_model = self.__stage_model if not stage_model: return if stage_model.get_items_sort_policy() == StageItemSortPolicy.TYPE_COLUMN_A_TO_Z: self.__items_sort_policy = TypeColumnSortPolicy.A_TO_Z elif stage_model.get_items_sort_policy() == StageItemSortPolicy.TYPE_COLUMN_Z_TO_A: self.__items_sort_policy = TypeColumnSortPolicy.Z_TO_A else: self.__items_sort_policy = TypeColumnSortPolicy.DEFAULT self.__update_label_from_policy() def __update_label_from_policy(self): if not self.__name_label: return if self.__name_label: if self.__items_sort_policy == TypeColumnSortPolicy.A_TO_Z: name = "Type (A to Z)" elif self.__items_sort_policy == TypeColumnSortPolicy.Z_TO_A: name = "Type (Z to A)" else: name = "Type" self.__name_label.text = name def __on_policy_changed(self): stage_model = self.__stage_model if not stage_model: return if self.__items_sort_policy == TypeColumnSortPolicy.A_TO_Z: stage_model.set_items_sort_policy(StageItemSortPolicy.TYPE_COLUMN_A_TO_Z) elif self.__items_sort_policy == TypeColumnSortPolicy.Z_TO_A: stage_model.set_items_sort_policy(StageItemSortPolicy.TYPE_COLUMN_Z_TO_A) else: stage_model.set_items_sort_policy(StageItemSortPolicy.DEFAULT) self.__update_label_from_policy() def __on_name_label_clicked(self, x, y, b, m): stage_model = self.__stage_model if b != 0 or not stage_model: return if self.__items_sort_policy == TypeColumnSortPolicy.A_TO_Z: self.__items_sort_policy = TypeColumnSortPolicy.Z_TO_A elif self.__items_sort_policy == TypeColumnSortPolicy.Z_TO_A: self.__items_sort_policy = TypeColumnSortPolicy.DEFAULT else: self.__items_sort_policy = TypeColumnSortPolicy.A_TO_Z self.__on_policy_changed() def build_header(self, **kwargs): """Build the header""" stage_model = kwargs.get("stage_model", None) self.__stage_model = stage_model if stage_model: self.__name_label_layout = ui.HStack() with self.__name_label_layout: ui.Spacer(width=10) self.__name_label = ui.Label( "Type", name="columnname", style_type_name_override="TreeView.Header" ) self.__initialize_policy_from_model() self.__name_label_layout.set_mouse_pressed_fn(self.__on_name_label_clicked) else: self.__name_label_layout.set_mouse_pressed_fn(None) with ui.HStack(): ui.Spacer(width=10) ui.Label("Type", name="columnname", style_type_name_override="TreeView.Header") async def build_widget(self, _, **kwargs): """Build the type widget""" item = kwargs.get("stage_item", None) if not item or not item.stage: return prim = item.stage.GetPrimAtPath(item.path) if not prim or not prim.IsValid(): return with ui.HStack(enabled=not item.instance_proxy, spacing=4, height=20): ui.Spacer(width=4) ui.Label(item.type_name, width=0, name="object_name", style_type_name_override="TreeView.Item") def on_stage_items_destroyed(self, items: List[StageItem]): pass @property def sortable(self): return True @property def order(self): return -100 @property def minimum_width(self): return ui.Pixel(20)
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/delegates/visibility_column_delegate.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["VisibilityColumnDelegate"] from ..abstract_stage_column_delegate import AbstractStageColumnDelegate from ..stage_model import StageModel, StageItemSortPolicy from ..stage_item import StageItem from pxr import UsdGeom from typing import List from functools import partial from enum import Enum import weakref import omni.ui as ui class VisibilityColumnSortPolicy(Enum): DEFAULT = 0 INVISIBLE_TO_VISIBLE = 1 VISIBLE_TO_INVISIBLE = 2 class VisibilityColumnDelegate(AbstractStageColumnDelegate): """The column delegate that represents the visibility column""" def __init__(self): super().__init__() self.__visibility_layout = None self.__items_sort_policy = VisibilityColumnSortPolicy.DEFAULT self.__stage_model: StageModel = None def destroy(self): if self.__visibility_layout: self.__visibility_layout.set_mouse_pressed_fn(None) self.__visibility_layout = None self.__stage_model = None @property def initial_width(self): """The width of the column""" return ui.Pixel(24) def __initialize_policy_from_model(self): stage_model = self.__stage_model if not stage_model: return if stage_model.get_items_sort_policy() == StageItemSortPolicy.VISIBILITY_COLUMN_INVISIBLE_TO_VISIBLE: self.__items_sort_policy = VisibilityColumnSortPolicy.INVISIBLE_TO_VISIBLE elif stage_model.get_items_sort_policy() == StageItemSortPolicy.VISIBILITY_COLUMN_VISIBLE_TO_INVISIBLE: self.__items_sort_policy = VisibilityColumnSortPolicy.VISIBLE_TO_INVISIBLE else: self.__items_sort_policy = VisibilityColumnSortPolicy.DEFAULT def __on_policy_changed(self): stage_model = self.__stage_model if not stage_model: return if self.__items_sort_policy == VisibilityColumnSortPolicy.INVISIBLE_TO_VISIBLE: stage_model.set_items_sort_policy(StageItemSortPolicy.VISIBILITY_COLUMN_INVISIBLE_TO_VISIBLE) elif self.__items_sort_policy == VisibilityColumnSortPolicy.VISIBLE_TO_INVISIBLE: stage_model.set_items_sort_policy(StageItemSortPolicy.VISIBILITY_COLUMN_VISIBLE_TO_INVISIBLE) else: stage_model.set_items_sort_policy(StageItemSortPolicy.DEFAULT) def __on_visiblity_clicked(self, x, y, b, m): if b != 0 or not self.__stage_model: return if self.__items_sort_policy == VisibilityColumnSortPolicy.VISIBLE_TO_INVISIBLE: self.__items_sort_policy = VisibilityColumnSortPolicy.INVISIBLE_TO_VISIBLE elif self.__items_sort_policy == VisibilityColumnSortPolicy.INVISIBLE_TO_VISIBLE: self.__items_sort_policy = VisibilityColumnSortPolicy.DEFAULT else: self.__items_sort_policy = VisibilityColumnSortPolicy.VISIBLE_TO_INVISIBLE self.__on_policy_changed() def build_header(self, **kwargs): """Build the header""" stage_model = kwargs.get("stage_model", None) self.__stage_model = stage_model self.__initialize_policy_from_model() if stage_model: with ui.ZStack(): ui.Rectangle(name="hovering", style_type_name_override="TreeView.Header") self.__visibility_layout = ui.HStack() with self.__visibility_layout: ui.Spacer() with ui.VStack(width=0): ui.Spacer() ui.Image(width=22, height=14, name="visibility_header", style_type_name_override="TreeView.Header") ui.Spacer() ui.Spacer() self.__visibility_layout.set_mouse_pressed_fn(self.__on_visiblity_clicked) else: with ui.HStack(): ui.Spacer() with ui.VStack(width=0): ui.Spacer() ui.Image(width=22, height=14, name="visibility_header", style_type_name_override="TreeView.Header") ui.Spacer() ui.Spacer() async def build_widget(self, _, **kwargs): """Build the eye widget""" item = kwargs.get("stage_item", None) if not item or not item.prim or not item.prim.IsA(UsdGeom.Imageable): return with ui.ZStack(height=20): # Min size ui.Spacer(width=22) # TODO the way to make this widget grayed out ui.ToolButton(item.visibility_model, enabled=not item.instance_proxy, name="visibility") @property def order(self): # Ensure it's always to the leftmost column except the name column. return -101 @property def sortable(self): return True def on_stage_items_destroyed(self, items: List[StageItem]): pass @property def minimum_width(self): return ui.Pixel(20)
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/delegates/__init__.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from .name_column_delegate import * from .type_column_delegate import * from .visibility_column_delegate import *
omniverse-code/kit/exts/omni.kit.widget.stage/omni/kit/widget/stage/delegates/name_column_delegate.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["NameColumnDelegate"] import asyncio import math import omni.ui as ui from ..abstract_stage_column_delegate import AbstractStageColumnDelegate from ..stage_model import StageModel, StageItemSortPolicy from ..stage_item import StageItem from ..stage_icons import StageIcons from functools import partial from typing import List from enum import Enum class NameColumnSortPolicy(Enum): NEW_TO_OLD = 0 OLD_TO_NEW = 1 A_TO_Z = 2 Z_TO_A = 3 def split_selection(text, selection): """ Split given text to substrings to draw selected text. Result starts with unselected text. Example: "helloworld" "o" -> ["hell", "o", "w", "o", "rld"] Example: "helloworld" "helloworld" -> ["", "helloworld"] """ if not selection or text == selection: return ["", text] selection = selection.lower() selection_len = len(selection) result = [] while True: found = text.lower().find(selection) result.append(text if found < 0 else text[:found]) if found < 0: break else: result.append(text[found : found + selection_len]) text = text[found + selection_len :] return result class NameColumnDelegate(AbstractStageColumnDelegate): """The column delegate that represents the type column""" def __init__(self): super().__init__() self.__name_label_layout = None self.__name_label = None self.__drop_down_layout = None self.__name_sort_options_menu = None self.__items_sort_policy = NameColumnSortPolicy.OLD_TO_NEW self.__highlighting_enabled = None # Text that is highlighted in flat mode self.__highlighting_text = None self.__stage_model: StageModel = None def set_highlighting(self, enable: bool = None, text: str = None): """ Specify if the widgets should consider highlighting. Also set the text that should be highlighted in flat mode. """ if enable is not None: self.__highlighting_enabled = enable if text is not None: self.__highlighting_text = text.lower() @property def sort_policy(self): return self.__items_sort_policy @sort_policy.setter def sort_policy(self, value): if self.__items_sort_policy != value: self.__items_sort_policy = value self.__on_policy_changed() def destroy(self): if self.__name_label_layout: self.__name_label_layout.set_mouse_pressed_fn(None) if self.__drop_down_layout: self.__drop_down_layout.set_mouse_pressed_fn(None) self.__drop_down_layout = None self.__name_sort_options_menu = None if self.__name_label_layout: self.__name_label_layout.set_mouse_pressed_fn(None) self.__name_label_layout = None self.__stage_model = None @property def initial_width(self): """The width of the column""" return ui.Fraction(1) def __initialize_policy_from_model(self): stage_model = self.__stage_model if not stage_model: return if stage_model.get_items_sort_policy() == StageItemSortPolicy.NAME_COLUMN_NEW_TO_OLD: self.__items_sort_policy = NameColumnSortPolicy.NEW_TO_OLD elif stage_model.get_items_sort_policy() == StageItemSortPolicy.NAME_COLUMN_A_TO_Z: self.__items_sort_policy = NameColumnSortPolicy.A_TO_Z elif stage_model.get_items_sort_policy() == StageItemSortPolicy.NAME_COLUMN_Z_TO_A: self.__items_sort_policy = NameColumnSortPolicy.Z_TO_A else: self.__items_sort_policy = NameColumnSortPolicy.OLD_TO_NEW self.__update_label_from_policy() def __update_label_from_policy(self): if not self.__name_label: return if self.__items_sort_policy == NameColumnSortPolicy.NEW_TO_OLD: name = "Name (New to Old)" elif self.__items_sort_policy == NameColumnSortPolicy.A_TO_Z: name = "Name (A to Z)" elif self.__items_sort_policy == NameColumnSortPolicy.Z_TO_A: name = "Name (Z to A)" else: name = "Name (Old to New)" self.__name_label.text = name def __on_policy_changed(self): stage_model = self.__stage_model if not stage_model: return if self.__items_sort_policy == NameColumnSortPolicy.NEW_TO_OLD: stage_model.set_items_sort_policy(StageItemSortPolicy.NAME_COLUMN_NEW_TO_OLD) elif self.__items_sort_policy == NameColumnSortPolicy.A_TO_Z: stage_model.set_items_sort_policy(StageItemSortPolicy.NAME_COLUMN_A_TO_Z) elif self.__items_sort_policy == NameColumnSortPolicy.Z_TO_A: stage_model.set_items_sort_policy(StageItemSortPolicy.NAME_COLUMN_Z_TO_A) else: stage_model.set_items_sort_policy(StageItemSortPolicy.NAME_COLUMN_OLD_TO_NEW) self.__update_label_from_policy() def __on_name_label_clicked(self, x, y, b, m): if b != 0 or not self.__stage_model: return if self.__items_sort_policy == NameColumnSortPolicy.A_TO_Z: self.__items_sort_policy = NameColumnSortPolicy.Z_TO_A elif self.__items_sort_policy == NameColumnSortPolicy.Z_TO_A: self.__items_sort_policy = NameColumnSortPolicy.NEW_TO_OLD elif self.__items_sort_policy == NameColumnSortPolicy.NEW_TO_OLD: self.__items_sort_policy = NameColumnSortPolicy.OLD_TO_NEW else: self.__items_sort_policy = NameColumnSortPolicy.A_TO_Z self.__on_policy_changed() def build_header(self, **kwargs): """Build the header""" style_type_name = "TreeView.Header" stage_model = kwargs.get("stage_model", None) self.__stage_model = stage_model if stage_model: with ui.HStack(): self.__name_label_layout = ui.HStack() self.__name_label_layout.set_mouse_pressed_fn(self.__on_name_label_clicked) with self.__name_label_layout: ui.Spacer(width=10) self.__name_label = ui.Label( "Name", name="columnname", style_type_name_override=style_type_name ) self.__initialize_policy_from_model() ui.Spacer() with ui.ZStack(width=16): ui.Rectangle(name="drop_down_hovered_area", style_type_name_override=style_type_name) self.__drop_down_layout = ui.ZStack(width=0) with self.__drop_down_layout: ui.Rectangle(width=16, name="drop_down_background", style_type_name_override=style_type_name) with ui.HStack(): ui.Spacer() with ui.VStack(width=0): ui.Spacer(height=4) ui.Triangle( name="drop_down_button", width=8, height=8, style_type_name_override=style_type_name, alignment=ui.Alignment.CENTER_BOTTOM ) ui.Spacer(height=2) ui.Spacer() ui.Spacer(width=4) def on_sort_policy_changed(policy, value): if self.sort_policy != policy: self.sort_policy = policy self.__on_policy_changed() def on_mouse_pressed_fn(x, y, b, m): if b != 0: return items_sort_policy = self.__items_sort_policy self.__name_sort_options_menu = ui.Menu("Sort Options") with self.__name_sort_options_menu: ui.MenuItem("Sort By", enabled=False) ui.Separator() ui.MenuItem( "New to Old", checkable=True, checked=items_sort_policy == NameColumnSortPolicy.NEW_TO_OLD, checked_changed_fn=partial( on_sort_policy_changed, NameColumnSortPolicy.NEW_TO_OLD ), hide_on_click=False, ) ui.MenuItem( "Old to New", checkable=True, checked=items_sort_policy == NameColumnSortPolicy.OLD_TO_NEW, checked_changed_fn=partial( on_sort_policy_changed, NameColumnSortPolicy.OLD_TO_NEW ), hide_on_click=False, ) ui.MenuItem( "A to Z", checkable=True, checked=items_sort_policy == NameColumnSortPolicy.A_TO_Z, checked_changed_fn=partial( on_sort_policy_changed, NameColumnSortPolicy.A_TO_Z ), hide_on_click=False ) ui.MenuItem( "Z to A", checkable=True, checked=items_sort_policy == NameColumnSortPolicy.Z_TO_A, checked_changed_fn=partial( on_sort_policy_changed, NameColumnSortPolicy.Z_TO_A ), hide_on_click=False ) self.__name_sort_options_menu.show() self.__drop_down_layout.set_mouse_pressed_fn(on_mouse_pressed_fn) self.__drop_down_layout.visible = False else: self.__name_label_layout.set_mouse_pressed_fn(None) with ui.HStack(): ui.Spacer(width=10) ui.Label("Name", name="columnname", style_type_name_override="TreeView.Header") def get_type_icon(self, node_type): """Convert USD Type to icon file name""" icons = StageIcons() if node_type in ["DistantLight", "SphereLight", "RectLight", "DiskLight", "CylinderLight", "DomeLight"]: return icons.get(node_type, "Light") if node_type == "": node_type = "Xform" return icons.get(node_type, "Prim") async def build_widget(self, _, **kwargs): self.build_widget_async(_, **kwargs) def __get_all_icons_to_draw(self, item: StageItem, item_is_native): # Get the node type node_type = item.type_name if item != item.stage_model.root else None icon_filenames = [self.get_type_icon(node_type)] # Get additional icons based on the properties of StageItem if item_is_native: if item.references: icon_filenames.append(StageIcons().get("Reference")) if item.payloads: icon_filenames.append(StageIcons().get("Payload")) if item.instanceable: icon_filenames.append(StageIcons().get("Instance")) return icon_filenames def __draw_all_icons(self, item: StageItem, item_is_native, is_highlighted): icon_filenames = self.__get_all_icons_to_draw(item, item_is_native) # Gray out the icon if the filter string is not in the text iconname = "object_icon" if is_highlighted else "object_icon_grey" parent_layout = ui.ZStack(width=20, height=20) with parent_layout: for icon_filename in icon_filenames: ui.Image(icon_filename, name=iconname, style_type_name_override="TreeView.Image") if item.instance_proxy: parent_layout.set_tooltip("Instance Proxy") def __build_rename_field(self, item: StageItem, name_labels, parent_stack): def on_end_edit(name_labels, field): for label in name_labels: label.visible = True field.visible = False self.end_edit_subscription = None def on_mouse_double_clicked(button, name_labels, field): if button != 0 or item.instance_proxy: return for label in name_labels: label.visible = False field.visible = True self.end_edit_subscription = field.model.subscribe_end_edit_fn(lambda _: on_end_edit(name_labels, field)) import omni.kit.app async def focus(field): await omni.kit.app.get_app().next_update_async() field.focus_keyboard() asyncio.ensure_future(focus(field)) field = ui.StringField(item.name_model, identifier="rename_field", visible=False) parent_stack.set_mouse_double_clicked_fn( lambda x, y, b, _: on_mouse_double_clicked(b, name_labels, field) ) item._ui_widget = parent_stack def build_widget_sync(self, _, **kwargs): """Build the type widget""" # True if it's StageItem. We need it to determine if it's a Root item (which is None). model = kwargs.get("stage_model", None) item = kwargs.get("stage_item", None) if not item: item = model.root item_is_native = False else: item_is_native = True if not item: return # If highlighting disabled completley, all the items should be light is_highlighted = not self.__highlighting_enabled and not self.__highlighting_text if not is_highlighted: # If it's not disabled completley is_highlighted = item_is_native and item.filtered with ui.HStack(enabled=not item.instance_proxy, spacing=4, height=20): # Draw all icons on top of each other self.__draw_all_icons(item, item_is_native, is_highlighted) value_model = item.name_model text = value_model.get_value_as_string() stack = ui.HStack() name_labels = [] # We have three different text draw model depending on the column and on the highlighting state if item_is_native and model.flat: # Flat search mode. We need to highlight only the part that is is the search field selection_chain = split_selection(text, self.__highlighting_text) labelnames_chain = ["object_name_grey", "object_name"] # Extend the label names depending on the size of the selection chain. Example, if it was [a, b] # and selection_chain is [z,y,x,w], it will become [a, b, a, b]. labelnames_chain *= int(math.ceil(len(selection_chain) / len(labelnames_chain))) with stack: for current_text, current_name in zip(selection_chain, labelnames_chain): if not current_text: continue label = ui.Label( current_text, name=current_name, width=0, style_type_name_override="TreeView.Item", hide_text_after_hash=False ) name_labels.append(label) if hasattr(item, "_callback_id"): item._callback_id = None else: with stack: if item.has_missing_references: name = "object_name_missing" else: name = "object_name" if is_highlighted else "object_name_grey" if item.is_outdated: name = "object_name_outdated" if item.in_session: name = "object_name_live" if item.is_outdated: style_override = "TreeView.Item.Outdated" elif item.in_session: style_override = "TreeView.Item.Live" else: style_override = "TreeView.Item" text = value_model.get_value_as_string() if item.is_default: text += " (defaultPrim)" label = ui.Label( text, hide_text_after_hash=False, name=name, style_type_name_override=style_override ) if item.has_missing_references: label.set_tooltip("Missing references found.") name_labels.append(label) # The hidden field for renaming the prim if item != model.root and not item.instance_proxy: self.__build_rename_field(item, name_labels, stack) elif hasattr(item, "_ui_widget"): item._ui_widget = None def rename_item(self, item: StageItem): if not item or not hasattr(item, "_ui_widget") or not item._ui_widget or item.instance_proxy: return item._ui_widget.call_mouse_double_clicked_fn(0, 0, 0, 0) def on_stage_items_destroyed(self, items: List[StageItem]): for item in items: if hasattr(item, "_ui_widget"): item._ui_widget = None def on_header_hovered(self, hovered): self.__drop_down_layout.visible = hovered @property def sortable(self): return True @property def order(self): return -100000 @property def minimum_width(self): return ui.Pixel(40)
omniverse-code/kit/exts/omni.kit.widget.stage/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [2.7.24] - 2023-02-21 ### Fixed - OM-82577: Drag&drop of flowusd presets will call flowusd command to add a reference. ## [2.7.23] - 2023-02-16 ### Fixed - OM-81767: Drag&drop behaviour of sbsar files now consistent with viewport's behaviour. ## [2.7.22] - 2023-01-11 ### Updated - Allow to select children under instance. - Fix selection issue after clearing search text. - Move SelectionWatch from omni.kit.window.stage to provide default implementation. ## [2.7.21] - 2022-12-9 ### Updated - Fixed issue where drag & drop material urls with encoded subidentifiers were not being handled. ## [2.7.20] - 2022-12-14 ### Updated - Improve drag and drop style. ## [2.7.19] - 2022-12-09 ### Updated - Improve filter and search. - Fix issue that creates new prims will not be filtered when it's in filtering mode. - Add support to search with prim path. ## [2.7.18] - 2022-12-08 ### Updated - Fix style of search results in stage window. ## [2.7.17] - 2022-11-29 ### Updated - Don't show context menu for converting references or payloads if they are not in the local layer stack. ## [2.7.16] - 2022-11-29 ### Updated - Don't show context menu for header of stage widget. ## [2.7.15] - 2022-11-15 ### Updated - Fixed issue with context menu & not hovering over label ## [2.7.14] - 2022-11-14 ### Updated - Supports sorting by name/visibility/type. ## [2.7.13] - 2022-11-14 ### Updated - Fix issue to search or filter stage window. ## [2.7.12] - 2022-11-07 ### Updated - Optimize more loading time to avoid populating tree item when it's to get children count. ## [2.7.11] - 2022-11-04 ### Updated - Refresh prim handle when it's resyced to avoid access staled prim. ## [2.7.10] - 2022-11-03 ### Updated - Support to show 'displayName' of prim from metadata. ## [2.7.9] - 2022-11-02 ### Updated - Drag and drop assets to default prim from content browser if default prim is existed. ## [2.7.8] - 2022-11-01 ### Updated - Fix rename issue. ## [2.7.7] - 2022-10-25 ### Updated - More optimization to stage window refresh without traversing. ## [2.7.6] - 2022-09-13 ### Updated - Don't use "use_hovered" for context menu objects when user click nowhere ## [2.7.5] - 2022-09-10 - Add TreeView drop style to show hilighting. ## [2.7.4] - 2022-09-08 ### Updated - Added "use_hovered" to context menu objects so menu can create child prims ## [2.7.3] - 2022-08-31 ### Fixed - Moved eye icon to front of ZStack to receive mouse clicks. ## [2.7.2] - 2022-08-12 ### Fixed - Updated context menu behaviour ## [2.7.1] - 2022-08-13 - Fix prims filter. - Clear prims filter after stage switching. ## [2.7.0] - 2022-08-06 - Refactoring stage model to improve perf and fix issue of refresh. ## [2.6.26] - 2022-08-04 - Support multi-selection for toggling visibility ## [2.6.25] - 2022-08-02 ### Fixed - Show non-defined prims as well. ## [2.6.24] - 2022-07-28 ### Fixed - Fix regression to drag and drop prim to absolute root. ## [2.6.23] - 2022-07-28 ### Fixed - Ensure rename operation non-destructive. ## [2.6.23] - 2022-07-25 ### Changes - Refactored unittests to make use of content_browser test helpers ## [2.6.22] - 2022-07-18 ### Fixed - Restored the arguments of ExportPrimUSD ## [2.6.21] - 2022-07-05 - Replaced filepicker dialog with file exporter ## [2.6.20] - 2022-06-23 - Make material paths relative if "/persistent/app/material/dragDropMaterialPath" is set to "relative" ## [2.6.19] - 2022-06-22 - Multiple drag and drop support. ## [2.6.18] - 2022-05-31 - Changed "Export Selected" to "Save Selected" ## [2.6.17] - 2022-05-20 - Support multi-selection for toggling visibility ## [2.6.16] - 2022-05-17 - Support multi-file drag & drop ## [2.6.15] - 2022-04-28 - Drag & Drop can create payload or reference based on /persistent/app/stage/dragDropImport setting ## [2.6.14] - 2022-03-09 - Updated unittests to retrieve the treeview widget from content browser. ## [2.6.13] - 2022-03-07 - Expand default prim ## [2.6.12] - 2022-02-09 - Fix stage window refresh after sublayer is inserted/removed. ## [2.6.11] - 2022-01-26 - Fix the columns item not able to reorder ## [2.6.10] - 2022-01-05 - Support drag/drop from material browser ## [2.6.9] - 2021-11-03 - Updated to use new omni.kit.material.library `get_subidentifier_from_mdl` ## [2.6.8] - 2021-09-24 - Fix export selected prims if it has external dependences outside of the copy prim tree. ## [2.6.7] - 2021-09-17 - Copy axis after export selected prims. ## [2.6.6] - 2021-08-11 - Updated drag/drop material to no-prim to not bind to /World - Added drag/drop test ## [2.6.5] - 2021-08-11 - Updated to lastest omni.kit.material.library ## [2.6.4] - 2021-07-26 - Added "Refesh Payload" to context menu - Added Payload icon - Added "Convert Payloads to References" to context menu - Added "Convert References to Payloads" to context menu ## [2.6.3] - 2021-07-21 - Added "Refesh Reference" to context menu ## [2.6.2] - 2021-06-30 - Changed "Assign Material" to use async show function as it could be slow on large scenes ## [2.6.1] - 2021-06-02 - Changed export prim as usd, postfix name now lowercase ## [2.6.0] - 2021-06-16 ### Added - "Show Missing Reference" that is off by default. When it's on, missing references are displayed with red color in the tree. ### Changed - Indentation level. There is no offset on the left anymore. ## [2.5.0] - 2021-06-02 - Added export prim as usd ## [2.4.2] - 2021-04-29 - Use sub-material selector on material import ## [2.4.1] - 2021-04-09 ### Fixed - Context menu in extensions that are not omni.kit.window.stage ## [2.4.0] - 2021-03-19 ### Added - Supported accepting drag and drop to create versioned reference. ## [2.3.7] - 2021-03-17 ### Changed - Updated to new context_menu and how custom functions are added ## [2.3.6] - 2021-03-01 ### Changed - Additional check if the stage and prim are still valid ## [2.3.5] - 2021-02-23 ### Added - Exclusion list allows to hide prims of specific types silently. To hide the prims of specific type, set the string array setting `ext/omni.kit.widget.stage/exclusion/types` ``` [settings] ext."omni.kit.widget.stage".exclusion.types = ["Mesh"] ``` ## [2.3.4] - 2021-02-10 ### Changes - Updated StyleUI handling ## [2.3.3] - 2020-11-16 ### Changed - Updated Find In Browser ## [2.3.2] - 2020-11-13 ### Changed - Fixed disappearing the "eye" icon when searched objects are toggled off ## [2.3.1] - 2020-10-22 ### Added - An interface to add and remove the icons in the TreeView dependin on the prim type ### Removed - The standard prim icons are moved to omni.kit.widget.stage_icons ## [2.3.0] - 2020-09-16 ### Changed - Split to two parts: omni.kit.widget.stage and omni.kit.window.stage ## [2.2.0] - 2020-09-15 ### Changed - Detached from Editor and using UsdNotice for notifications
omniverse-code/kit/exts/omni.kit.widget.stage/data/tests/4Lights.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (641.3717781423547, 641.3717781423395, 641.3717781423386) double3 target = (0, 0, 0) } dictionary Right = { double3 position = (-50000, 0, -1.1102230246251565e-11) double radius = 500 } dictionary Top = { double3 position = (-4.329780281177466e-12, 50000, 1.1102230246251565e-11) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "Stage" metersPerUnit = 0.009999999776482582 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "Stage" { def SphereLight "SphereLight_01" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { float intensity = 30000 float radius = 50 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateZYX = (-0, 0, -0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (35.02676, -56.856171, 21.829468) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def SphereLight "SphereLight_02" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { float intensity = 30000 float radius = 50 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateZYX = (-0, 0, -0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-52.752319, 105.505402, -52.753021) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def SphereLight "SphereLight_03" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { float intensity = 30000 float radius = 50 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateZYX = (-0, 0, -0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (99.220299, -3.516879, -95.703514) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def SphereLight "SphereLight_00" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { float intensity = 30000 float radius = 50 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateZYX = (-0, 0, -0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-107.755989, 13.481207, 94.274811) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def Mesh "Cube" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)] float2[] primvars:st = [(1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.kit.widget.stage/data/tests/quatCube.usda
#usda 1.0 ( customLayerData = { dictionary renderSettings = { bool "rtx:ambientOcclusion:enabled" = 1 token "rtx:debugView" = "" bool "rtx:directLighting:enabled" = 1 bool "rtx:forwardLitMode:enabled" = 0 bool "rtx:gbufferRaster:enabled" = 0 bool "rtx:lightsUseUe4Convention" = 0 bool "rtx:materialDb:forceClassCompilation" = 0 bool "rtx:materialDb:generateMipMaps" = 1 bool "rtx:materialDb:syncLoads" = 0 bool "rtx:mdl:useTopAsTextureYorigin" = 0 bool "rtx:nvrtd:shaderReload" = 0 bool "rtx:pathtracing:fireflyFilter:enabled" = 0 float "rtx:pathtracing:fireflyFilter:maxIntensityPerSample" = 50 int "rtx:pathtracing:maxBounces" = 4 int "rtx:pathtracing:maxVolumeBounces" = 4 bool "rtx:pathtracing:optixDenoiser:enabled" = 1 int "rtx:pathtracing:rrDepth" = 4 bool "rtx:post:chromaticAberration:enabled" = 0 float "rtx:post:chromaticAberration:strength" = 0.015 bool "rtx:post:dof:enabled" = 0 float "rtx:post:dof:extentInFocus" = 2.5 float "rtx:post:dof:fNumber" = 1 float "rtx:post:dof:focalLength" = 100 int "rtx:post:dof:settingsType" = 0 float "rtx:post:dof:subjectDistance" = 400 float "rtx:post:filmgrain:coloramount" = 0.6 bool "rtx:post:filmgrain:enabled" = 0 float "rtx:post:filmgrain:grainamount" = 0.05 float "rtx:post:filmgrain:grainsize" = 1.6 float "rtx:post:filmgrain:lumamount" = 1 float "rtx:post:lensFlares:anisoFlareWeight" = 0.6 float "rtx:post:lensFlares:apertureRotation" = 5 int "rtx:post:lensFlares:blades" = 5 bool "rtx:post:lensFlares:enabled" = 0 bool "rtx:post:lensFlares:energyConstrainingBlend" = 0 float "rtx:post:lensFlares:fNumber" = 5 float "rtx:post:lensFlares:flareScale" = 1 float "rtx:post:lensFlares:focalLength" = 35 float "rtx:post:lensFlares:haloFlareWeight" = 0.01 float "rtx:post:lensFlares:isotropicFlareWeight" = 0.4 bool "rtx:post:lensFlares:physicalSettings" = 1 float "rtx:post:lensFlares:sensorAspectRatio" = 1.5 float "rtx:post:lensFlares:sensorDiagonal" = 60 float3 "rtx:post:outline:color" = (1, 0.6, 0) int "rtx:post:outline:width" = 2 float "rtx:post:taa:alpha" = 0.07216878 float "rtx:post:taa:colorBoxSigma" = 2 bool "rtx:post:taa:enabled" = 1 int "rtx:post:taa:samples" = 8 float "rtx:post:tonemap:cameraShutter" = 50 float "rtx:post:tonemap:cm2Factor" = 1 float "rtx:post:tonemap:exposureKey" = 0.25 float "rtx:post:tonemap:fNumber" = 5 float "rtx:post:tonemap:filmIso" = 100 float "rtx:post:tonemap:gamma" = 2.2 float "rtx:post:tonemap:irayReinhard:burnHighlights" = 0.7 bool "rtx:post:tonemap:irayReinhard:burnHighlightsMaxComponent" = 0 bool "rtx:post:tonemap:irayReinhard:burnHighlightsPerComponent" = 1 float "rtx:post:tonemap:irayReinhard:crushBlacks" = 0.5 float "rtx:post:tonemap:irayReinhard:saturation" = 1 float "rtx:post:tonemap:luminanceLod" = 0 float "rtx:post:tonemap:maxWhiteLuminance" = 10 int "rtx:post:tonemap:op" = 6 float "rtx:post:tonemap:whiteScale" = 40.2 bool "rtx:reflections:enabled" = 1 int "rtx:reflections:maxReflectionBounces" = 1 int "rtx:reflections:maxRefractionBounces" = 10 float "rtx:reflections:maxRoughness" = 0.3 token "rtx:rendermode" = "RaytracedLighting" int "rtx:rt:ao:maxSamples" = 9 int "rtx:rt:ao:minSamples" = 1 float "rtx:rt:ao:rayLength" = 250 int "rtx:rt:ao:temporalSqrtLength" = 3 float3 "rtx:sceneDb:ambientLightIntensity" = (0.1, 0.1, 0.1) token "rtx:shaderDb:basepath" = "/../../../shaders/" bool "rtx:shaderDb:flushCache" = 0 token "rtx:shaderDb:shaderCachePath" = "./shadercache" bool "rtx:shadows:enabled" = 1 bool "rtx:translucency:enabled" = 1 } } defaultPrim = "Stage" upAxis = "Y" ) def Xform "Stage" { def Cube "Cube" { quatd xformOp:orient = (0.9291852430612315, -0.005373277377595464, -0.2565586070361253, -0.2660142724049723) double3 xformOp:scale = (0.9999999547743416, 0.9999996652350918, 1.000000505519382) double3 xformOp:translate = (0.04527, -0, -0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.kit.widget.stage/data/tests/bound_shapes.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double3 position = (-50000, 0, -1.1102230246251565e-11) double radius = 500 } dictionary Top = { double3 position = (-4.329780281177466e-12, 50000, 1.1102230246251565e-11) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cone" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 32, 64, 65, 33, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 64, 32, 64, 96, 97, 65, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 96, 64, 96, 128, 129, 97, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 128, 96, 160, 161, 162, 160, 162, 163, 160, 163, 164, 160, 164, 165, 160, 165, 166, 160, 166, 167, 160, 167, 168, 160, 168, 169, 160, 169, 170, 160, 170, 171, 160, 171, 172, 160, 172, 173, 160, 173, 174, 160, 174, 175, 160, 175, 176, 160, 176, 177, 160, 177, 178, 160, 178, 179, 160, 179, 180, 160, 180, 181, 160, 181, 182, 160, 182, 183, 160, 183, 184, 160, 184, 185, 160, 185, 186, 160, 186, 187, 160, 187, 188, 160, 188, 189, 160, 189, 190, 160, 190, 191, 160, 191, 192, 160, 192, 161] rel material:binding = </World/Looks/OmniPBR> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.4472136, 0.17449391), (0.877241, 0.4472136, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721362, 0.4969167), (0.74368936, 0.44721362, 0.4969167), (0.7436893, 0.4472136, 0.49691668), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.44721362, 0.49691904), (-0.7436878, 0.44721362, 0.49691904), (-0.74368775, 0.4472136, 0.496919), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.0000028099257), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.4472136, -0.17449117), (-0.8772417, 0.44721356, -0.17449118), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.63245803, 0.44721362, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721362, -0.87724024), (-0.17449804, 0.44721362, -0.87724024), (-0.17449805, 0.4472136, -0.8772402), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.44721356, -0.8263447), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721362, -0.632459), (0.7436862, 0.4472136, -0.49692136), (0.74368626, 0.44721362, -0.4969214), (0.74368626, 0.44721362, -0.4969214), (0.7436862, 0.4472136, -0.49692136), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.44721356, 0.17449391), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.74368936, 0.44721365, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049631, 0.44721362, 0.89442724), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.7436901), (-0.4969155, 0.44721362, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8944272, 0.4472136, 0.000002809926), (-0.89442724, 0.44721362, 0.0000028099262), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.4472136, -0.17449115), (-0.8772417, 0.44721356, -0.17449118), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.74369085, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228602, 0.4472136, -0.82634145), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.17449804, 0.44721356, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.44721362, -0.87724185), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.17448977, 0.44721362, -0.87724185), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8772411, 0.44721356, 0.17449392), (0.877241, 0.44721356, 0.17449391), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721356, 0.17449392), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.44721356, 0.8772408), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.74368775, 0.44721356, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.3422847), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449668), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.49692017, 0.44721356, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.87724024), (-0.17449804, 0.44721356, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.17449807, 0.4472136, -0.87724024), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.34227827, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.44721356, -0.49692133), (0.74368626, 0.4472136, -0.49692136), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.87724113, 0.4472136, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.87724113, 0.4472136, 0.17449392), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.44721362, 0.34228215), (0.7436893, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.7436893, 0.44721362, 0.49691668), (0.632456, 0.4472136, 0.632455), (0.63245606, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.632455), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263425), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263425), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.0000014049629, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (-0.17449255, 0.4472136, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772413), (-0.17449255, 0.4472136, 0.8772414), (-0.34228086, 0.44721365, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228086, 0.44721365, 0.82634366), (-0.49691546, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691546, 0.4472136, 0.7436901), (-0.6324541, 0.4472136, 0.6324571), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.6324541, 0.4472136, 0.6324571), (-0.74368775, 0.4472136, 0.49691907), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.4472136, 0.49691907), (-0.82634205, 0.44721365, 0.34228477), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721365, 0.34228477), (-0.87724054, 0.4472136, 0.1744967), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.4472136, 0.17449668), (-0.87724054, 0.4472136, 0.1744967), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449117), (-0.82634413, 0.44721356, -0.34227952), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.82634413, 0.44721356, -0.34227952), (-0.74369085, 0.4472136, -0.4969143), (-0.7436909, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.4472136, -0.4969143), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.632458, 0.4472136, -0.632453), (-0.49692023, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692023, 0.4472136, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.8772403), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.8772403), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.4472136, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.4472136, -0.87724185), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.49691314, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691314, 0.4472136, -0.7436916), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.7436862, 0.4472136, -0.4969214), (0.74368626, 0.4472136, -0.49692136), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.4969214), (0.8263409, 0.4472136, -0.3422873), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.3422873), (0.87723994, 0.44721365, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.44721365, -0.17449942), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814), (37.50001, -25.000025, 0), (36.77946, -25.000025, 7.315882), (34.6455, -25.000025, 14.35062), (31.180134, -25.000025, 20.833872), (26.516535, -25.000025, 26.516493), (20.833921, -25.000025, 31.1801), (14.350675, -25.000025, 34.645477), (7.31594, -25.000025, 36.77945), (0.000058904883, -25.000025, 37.50001), (-7.3158245, -25.000025, 36.779472), (-14.350566, -25.000025, 34.645523), (-20.833824, -25.000025, 31.180166), (-26.51645, -25.000025, 26.516575), (-31.180067, -25.000025, 20.833971), (-34.645454, -25.000025, 14.350729), (-36.779438, -25.000025, 7.3159976), (-37.50001, -25.000025, 0.00011780977), (-36.779484, -25.000025, -7.315767), (-34.645546, -25.000025, -14.350511), (-31.180199, -25.000025, -20.833775), (-26.516617, -25.000025, -26.516409), (-20.834019, -25.000025, -31.180035), (-14.350783, -25.000025, -34.64543), (-7.316056, -25.000025, -36.779427), (-0.00017671465, -25.000025, -37.50001), (7.315709, -25.000025, -36.779495), (14.350456, -25.000025, -34.64557), (20.833725, -25.000025, -31.180231), (26.516367, -25.000025, -26.516659), (31.180002, -25.000025, -20.834068), (34.64541, -25.000025, -14.350838), (36.779415, -25.000025, -7.3161135), (25.000025, -0.00005, 0), (24.519657, -0.00005, 4.8772583), (23.097015, -0.00005, 9.567086), (20.78677, -0.00005, 13.889257), (17.677702, -0.00005, 17.677673), (13.88929, -0.00005, 20.786747), (9.567122, -0.00005, 23.097), (4.8772964, -0.00005, 24.51965), (0.000039269948, -0.00005, 25.000025), (-4.8772197, -0.00005, 24.519665), (-9.56705, -0.00005, 23.09703), (-13.889225, -0.00005, 20.78679), (-17.677645, -0.00005, 17.677729), (-20.786726, -0.00005, 13.889323), (-23.096985, -0.00005, 9.567159), (-24.519642, -0.00005, 4.877335), (-25.000025, -0.00005, 0.000078539895), (-24.519672, -0.00005, -4.877181), (-23.097046, -0.00005, -9.567014), (-20.786814, -0.00005, -13.889193), (-17.677757, -0.00005, -17.677618), (-13.889356, -0.00005, -20.786703), (-9.567195, -0.00005, -23.09697), (-4.8773737, -0.00005, -24.519634), (-0.00011780984, -0.00005, -25.000025), (4.8771424, -0.00005, -24.51968), (9.5669775, -0.00005, -23.097061), (13.889159, -0.00005, -20.786835), (17.67759, -0.00005, -17.677784), (20.786682, -0.00005, -13.889388), (23.096954, -0.00005, -9.567231), (24.519627, -0.00005, -4.8774123), (12.500037, 24.999926, 0), (12.259853, 24.999926, 2.438634), (11.548531, 24.999926, 4.7835526), (10.393405, 24.999926, 6.9446425), (8.838868, 24.999926, 8.838855), (6.9446588, 24.999926, 10.393394), (4.783571, 24.999926, 11.548523), (2.4386532, 24.999926, 12.25985), (0.000019635014, 24.999926, 12.500037), (-2.4386146, 24.999926, 12.259857), (-4.7835345, 24.999926, 11.548538), (-6.9446263, 24.999926, 10.393416), (-8.8388405, 24.999926, 8.838882), (-10.393384, 24.999926, 6.9446754), (-11.548515, 24.999926, 4.783589), (-12.259846, 24.999926, 2.4386725), (-12.500037, 24.999926, 0.000039270028), (-12.259861, 24.999926, -2.4385955), (-11.548546, 24.999926, -4.7835164), (-10.393427, 24.999926, -6.94461), (-8.838896, 24.999926, -8.838826), (-6.9446917, 24.999926, -10.393373), (-4.783607, 24.999926, -11.548508), (-2.4386916, 24.999926, -12.259842), (-0.00005890504, 24.999926, -12.500037), (2.4385762, 24.999926, -12.259865), (4.7834983, 24.999926, -11.548553), (6.9445934, 24.999926, -10.393438), (8.838813, 24.999926, -8.83891), (10.393362, 24.999926, -6.944708), (11.548501, 24.999926, -4.783625), (12.259838, 24.999926, -2.438711), (0.00005, 49.9999, 0), (0.000049039267, 49.9999, 0.000009754506), (0.000046193985, 49.9999, 0.000019134153), (0.000041573498, 49.9999, 0.000027778487), (0.000035355366, 49.9999, 0.00003535531), (0.000027778553, 49.9999, 0.000041573454), (0.000019134226, 49.9999, 0.000046193953), (0.0000097545835, 49.9999, 0.000049039252), (7.8539814e-11, 49.9999, 0.00005), (-0.00000975443, 49.9999, 0.00004903928), (-0.00001913408, 49.9999, 0.000046194014), (-0.000027778422, 49.9999, 0.00004157354), (-0.000035355257, 49.9999, 0.00003535542), (-0.00004157341, 49.9999, 0.000027778618), (-0.000046193923, 49.9999, 0.000019134299), (-0.000049039234, 49.9999, 0.000009754661), (-0.00005, 49.9999, 1.5707963e-10), (-0.000049039296, 49.9999, -0.0000097543525), (-0.000046194044, 49.9999, -0.000019134008), (-0.000041573585, 49.9999, -0.000027778357), (-0.00003535548, 49.9999, -0.0000353552), (-0.000027778684, 49.9999, -0.000041573367), (-0.000019134372, 49.9999, -0.000046193894), (-0.000009754737, 49.9999, -0.00004903922), (-2.3561944e-10, 49.9999, -0.00005), (0.000009754275, 49.9999, -0.00004903931), (0.000019133935, 49.9999, -0.000046194073), (0.000027778291, 49.9999, -0.00004157363), (0.000035355144, 49.9999, -0.000035355533), (0.000041573323, 49.9999, -0.000027778748), (0.000046193865, 49.9999, -0.000019134444), (0.000049039205, 49.9999, -0.0000097548145), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814)] float2[] primvars:st = [(1, 0), (1, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0), (0.96875006, 0), (0.96875006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0), (0.93750006, 0), (0.93750006, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0), (0.9062501, 0), (0.9062501, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0), (0.8750001, 0), (0.8750001, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0), (0.8437502, 0), (0.8437502, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0), (0.8125002, 0), (0.8125002, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0), (0.78125024, 0), (0.78125024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0), (0.75000024, 0), (0.75000024, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0), (0.7187503, 0), (0.7187503, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0), (0.6875003, 0), (0.6875003, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0), (0.65625036, 0), (0.65625036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0), (0.62500036, 0), (0.62500036, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0), (0.5937504, 0), (0.5937504, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0), (0.5625004, 0), (0.5625004, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0), (0.5312505, 0), (0.5312505, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0), (0.5000005, 0), (0.5000005, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0), (0.46875054, 0), (0.46875054, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0), (0.43750057, 0), (0.43750057, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0), (0.4062506, 0), (0.4062506, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0), (0.37500063, 0), (0.37500063, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0), (0.34375066, 0), (0.34375066, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0), (0.3125007, 0), (0.3125007, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0), (0.28125072, 0), (0.28125072, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0), (0.25000075, 0), (0.25000075, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0), (0.21875077, 0), (0.21875077, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0), (0.18750082, 0), (0.18750082, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0), (0.15625085, 0), (0.15625085, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0), (0.12500088, 0), (0.12500088, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0), (0.09375091, 0), (0.09375091, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0), (0.06250094, 0), (0.06250094, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0), (0.03125097, 0), (0.03125097, 0.24999975), (0, 0.24999975), (0, 0), (1, 0.24999975), (1, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0.4999995), (0, 0.4999995), (0, 0.24999975), (1, 0.4999995), (1, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.7499992), (0, 0.7499992), (0, 0.4999995), (1, 0.7499992), (1, 0.999999), (0.96875006, 0.999999), (0.96875006, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.999999), (0.93750006, 0.999999), (0.93750006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.999999), (0.9062501, 0.999999), (0.9062501, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.999999), (0.8750001, 0.999999), (0.8750001, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.999999), (0.8437502, 0.999999), (0.8437502, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.999999), (0.8125002, 0.999999), (0.8125002, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.999999), (0.78125024, 0.999999), (0.78125024, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.999999), (0.75000024, 0.999999), (0.75000024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.999999), (0.7187503, 0.999999), (0.7187503, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.999999), (0.6875003, 0.999999), (0.6875003, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.999999), (0.65625036, 0.999999), (0.65625036, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.999999), (0.62500036, 0.999999), (0.62500036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.999999), (0.5937504, 0.999999), (0.5937504, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.999999), (0.5625004, 0.999999), (0.5625004, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.999999), (0.5312505, 0.999999), (0.5312505, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.999999), (0.5000005, 0.999999), (0.5000005, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.999999), (0.46875054, 0.999999), (0.46875054, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.999999), (0.43750057, 0.999999), (0.43750057, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.999999), (0.4062506, 0.999999), (0.4062506, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.999999), (0.37500063, 0.999999), (0.37500063, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.999999), (0.34375066, 0.999999), (0.34375066, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.999999), (0.3125007, 0.999999), (0.3125007, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.999999), (0.28125072, 0.999999), (0.28125072, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.999999), (0.25000075, 0.999999), (0.25000075, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.999999), (0.21875077, 0.999999), (0.21875077, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.999999), (0.18750082, 0.999999), (0.18750082, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.999999), (0.15625085, 0.999999), (0.15625085, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.999999), (0.12500088, 0.999999), (0.12500088, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.999999), (0.09375091, 0.999999), (0.09375091, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.999999), (0.06250094, 0.999999), (0.06250094, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.999999), (0.03125097, 0.999999), (0.03125097, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.999999), (0, 0.999999), (0, 0.7499992), (0.5, 0.5), (1, 0.5), (0.9903927, 0.5975451), (0.5, 0.5), (0.9903927, 0.5975451), (0.9619398, 0.6913415), (0.5, 0.5), (0.9619398, 0.6913415), (0.91573495, 0.7777849), (0.5, 0.5), (0.91573495, 0.7777849), (0.85355365, 0.8535531), (0.5, 0.5), (0.85355365, 0.8535531), (0.77778554, 0.9157345), (0.5, 0.5), (0.77778554, 0.9157345), (0.69134223, 0.9619395), (0.5, 0.5), (0.69134223, 0.9619395), (0.59754586, 0.9903925), (0.5, 0.5), (0.59754586, 0.9903925), (0.5000008, 1), (0.5, 0.5), (0.5000008, 1), (0.40245572, 0.9903928), (0.5, 0.5), (0.40245572, 0.9903928), (0.3086592, 0.96194017), (0.5, 0.5), (0.3086592, 0.96194017), (0.22221579, 0.9157354), (0.5, 0.5), (0.22221579, 0.9157354), (0.14644744, 0.85355425), (0.5, 0.5), (0.14644744, 0.85355425), (0.0842659, 0.7777862), (0.5, 0.5), (0.0842659, 0.7777862), (0.03806076, 0.691343), (0.5, 0.5), (0.03806076, 0.691343), (0.009607648, 0.5975466), (0.5, 0.5), (0.009607648, 0.5975466), (2.4674152e-12, 0.50000155), (0.5, 0.5), (2.4674152e-12, 0.50000155), (0.009607034, 0.40245646), (0.5, 0.5), (0.009607034, 0.40245646), (0.03805956, 0.3086599), (0.5, 0.5), (0.03805956, 0.3086599), (0.08426416, 0.22221643), (0.5, 0.5), (0.08426416, 0.22221643), (0.14644521, 0.146448), (0.5, 0.5), (0.14644521, 0.146448), (0.22221316, 0.08426634), (0.5, 0.5), (0.22221316, 0.08426634), (0.30865628, 0.03806106), (0.5, 0.5), (0.30865628, 0.03806106), (0.40245262, 0.0096078), (0.5, 0.5), (0.40245262, 0.0096078), (0.49999765, 5.5516702e-12), (0.5, 0.5), (0.49999765, 5.5516702e-12), (0.59754276, 0.009606881), (0.5, 0.5), (0.59754276, 0.009606881), (0.6913394, 0.038059257), (0.5, 0.5), (0.6913394, 0.038059257), (0.7777829, 0.08426372), (0.5, 0.5), (0.7777829, 0.08426372), (0.85355145, 0.14644466), (0.5, 0.5), (0.85355145, 0.14644466), (0.9157332, 0.22221252), (0.5, 0.5), (0.9157332, 0.22221252), (0.9619386, 0.30865556), (0.5, 0.5), (0.9619386, 0.30865556), (0.990392, 0.40245184), (0.5, 0.5), (0.990392, 0.40245184), (1, 0.5)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cube" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5] rel material:binding = </World/Looks/OmniGlass> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)] float2[] primvars:st = [(1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (119.899608, -1.138346, -118.761261) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Sphere" { int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 2, 0, 2, 3, 0, 3, 4, 0, 4, 5, 0, 5, 6, 0, 6, 7, 0, 7, 8, 0, 8, 9, 0, 9, 10, 0, 10, 11, 0, 11, 12, 0, 12, 13, 0, 13, 14, 0, 14, 15, 0, 15, 16, 0, 16, 17, 0, 17, 18, 0, 18, 19, 0, 19, 20, 0, 20, 21, 0, 21, 22, 0, 22, 23, 0, 23, 24, 0, 24, 25, 0, 25, 26, 0, 26, 27, 0, 27, 28, 0, 28, 29, 0, 29, 30, 0, 30, 31, 0, 31, 32, 0, 32, 33, 0, 33, 34, 0, 34, 35, 0, 35, 36, 0, 36, 37, 0, 37, 38, 0, 38, 39, 0, 39, 40, 0, 40, 41, 0, 41, 42, 0, 42, 43, 0, 43, 44, 0, 44, 45, 0, 45, 46, 0, 46, 47, 0, 47, 48, 0, 48, 49, 0, 49, 50, 0, 50, 51, 0, 51, 52, 0, 52, 53, 0, 53, 54, 0, 54, 55, 0, 55, 56, 0, 56, 57, 0, 57, 58, 0, 58, 59, 0, 59, 60, 0, 60, 61, 0, 61, 62, 0, 62, 63, 0, 63, 64, 0, 64, 65, 0, 65, 66, 0, 66, 67, 0, 67, 68, 0, 68, 69, 0, 69, 70, 0, 70, 71, 0, 71, 72, 0, 72, 73, 0, 73, 74, 0, 74, 75, 0, 75, 76, 0, 76, 77, 0, 77, 78, 0, 78, 79, 0, 79, 80, 0, 80, 81, 0, 81, 82, 0, 82, 83, 0, 83, 84, 0, 84, 85, 0, 85, 86, 0, 86, 87, 0, 87, 88, 0, 88, 89, 0, 89, 90, 0, 90, 91, 0, 91, 92, 0, 92, 93, 0, 93, 94, 0, 94, 95, 0, 95, 96, 0, 96, 97, 0, 97, 98, 0, 98, 99, 0, 99, 100, 0, 100, 101, 0, 101, 102, 0, 102, 103, 0, 103, 104, 0, 104, 105, 0, 105, 106, 0, 106, 107, 0, 107, 108, 0, 108, 109, 0, 109, 110, 0, 110, 111, 0, 111, 112, 0, 112, 113, 0, 113, 114, 0, 114, 115, 0, 115, 116, 0, 116, 117, 0, 117, 118, 0, 118, 119, 0, 119, 120, 0, 120, 1, 1, 121, 122, 2, 2, 122, 123, 3, 3, 123, 124, 4, 4, 124, 125, 5, 5, 125, 126, 6, 6, 126, 127, 7, 7, 127, 128, 8, 8, 128, 129, 9, 9, 129, 130, 10, 10, 130, 131, 11, 11, 131, 132, 12, 12, 132, 133, 13, 13, 133, 134, 14, 14, 134, 135, 15, 15, 135, 136, 16, 16, 136, 137, 17, 17, 137, 138, 18, 18, 138, 139, 19, 19, 139, 140, 20, 20, 140, 141, 21, 21, 141, 142, 22, 22, 142, 143, 23, 23, 143, 144, 24, 24, 144, 145, 25, 25, 145, 146, 26, 26, 146, 147, 27, 27, 147, 148, 28, 28, 148, 149, 29, 29, 149, 150, 30, 30, 150, 151, 31, 31, 151, 152, 32, 32, 152, 153, 33, 33, 153, 154, 34, 34, 154, 155, 35, 35, 155, 156, 36, 36, 156, 157, 37, 37, 157, 158, 38, 38, 158, 159, 39, 39, 159, 160, 40, 40, 160, 161, 41, 41, 161, 162, 42, 42, 162, 163, 43, 43, 163, 164, 44, 44, 164, 165, 45, 45, 165, 166, 46, 46, 166, 167, 47, 47, 167, 168, 48, 48, 168, 169, 49, 49, 169, 170, 50, 50, 170, 171, 51, 51, 171, 172, 52, 52, 172, 173, 53, 53, 173, 174, 54, 54, 174, 175, 55, 55, 175, 176, 56, 56, 176, 177, 57, 57, 177, 178, 58, 58, 178, 179, 59, 59, 179, 180, 60, 60, 180, 181, 61, 61, 181, 182, 62, 62, 182, 183, 63, 63, 183, 184, 64, 64, 184, 185, 65, 65, 185, 186, 66, 66, 186, 187, 67, 67, 187, 188, 68, 68, 188, 189, 69, 69, 189, 190, 70, 70, 190, 191, 71, 71, 191, 192, 72, 72, 192, 193, 73, 73, 193, 194, 74, 74, 194, 195, 75, 75, 195, 196, 76, 76, 196, 197, 77, 77, 197, 198, 78, 78, 198, 199, 79, 79, 199, 200, 80, 80, 200, 201, 81, 81, 201, 202, 82, 82, 202, 203, 83, 83, 203, 204, 84, 84, 204, 205, 85, 85, 205, 206, 86, 86, 206, 207, 87, 87, 207, 208, 88, 88, 208, 209, 89, 89, 209, 210, 90, 90, 210, 211, 91, 91, 211, 212, 92, 92, 212, 213, 93, 93, 213, 214, 94, 94, 214, 215, 95, 95, 215, 216, 96, 96, 216, 217, 97, 97, 217, 218, 98, 98, 218, 219, 99, 99, 219, 220, 100, 100, 220, 221, 101, 101, 221, 222, 102, 102, 222, 223, 103, 103, 223, 224, 104, 104, 224, 225, 105, 105, 225, 226, 106, 106, 226, 227, 107, 107, 227, 228, 108, 108, 228, 229, 109, 109, 229, 230, 110, 110, 230, 231, 111, 111, 231, 232, 112, 112, 232, 233, 113, 113, 233, 234, 114, 114, 234, 235, 115, 115, 235, 236, 116, 116, 236, 237, 117, 117, 237, 238, 118, 118, 238, 239, 119, 119, 239, 240, 120, 120, 240, 121, 1, 121, 241, 242, 122, 122, 242, 243, 123, 123, 243, 244, 124, 124, 244, 245, 125, 125, 245, 246, 126, 126, 246, 247, 127, 127, 247, 248, 128, 128, 248, 249, 129, 129, 249, 250, 130, 130, 250, 251, 131, 131, 251, 252, 132, 132, 252, 253, 133, 133, 253, 254, 134, 134, 254, 255, 135, 135, 255, 256, 136, 136, 256, 257, 137, 137, 257, 258, 138, 138, 258, 259, 139, 139, 259, 260, 140, 140, 260, 261, 141, 141, 261, 262, 142, 142, 262, 263, 143, 143, 263, 264, 144, 144, 264, 265, 145, 145, 265, 266, 146, 146, 266, 267, 147, 147, 267, 268, 148, 148, 268, 269, 149, 149, 269, 270, 150, 150, 270, 271, 151, 151, 271, 272, 152, 152, 272, 273, 153, 153, 273, 274, 154, 154, 274, 275, 155, 155, 275, 276, 156, 156, 276, 277, 157, 157, 277, 278, 158, 158, 278, 279, 159, 159, 279, 280, 160, 160, 280, 281, 161, 161, 281, 282, 162, 162, 282, 283, 163, 163, 283, 284, 164, 164, 284, 285, 165, 165, 285, 286, 166, 166, 286, 287, 167, 167, 287, 288, 168, 168, 288, 289, 169, 169, 289, 290, 170, 170, 290, 291, 171, 171, 291, 292, 172, 172, 292, 293, 173, 173, 293, 294, 174, 174, 294, 295, 175, 175, 295, 296, 176, 176, 296, 297, 177, 177, 297, 298, 178, 178, 298, 299, 179, 179, 299, 300, 180, 180, 300, 301, 181, 181, 301, 302, 182, 182, 302, 303, 183, 183, 303, 304, 184, 184, 304, 305, 185, 185, 305, 306, 186, 186, 306, 307, 187, 187, 307, 308, 188, 188, 308, 309, 189, 189, 309, 310, 190, 190, 310, 311, 191, 191, 311, 312, 192, 192, 312, 313, 193, 193, 313, 314, 194, 194, 314, 315, 195, 195, 315, 316, 196, 196, 316, 317, 197, 197, 317, 318, 198, 198, 318, 319, 199, 199, 319, 320, 200, 200, 320, 321, 201, 201, 321, 322, 202, 202, 322, 323, 203, 203, 323, 324, 204, 204, 324, 325, 205, 205, 325, 326, 206, 206, 326, 327, 207, 207, 327, 328, 208, 208, 328, 329, 209, 209, 329, 330, 210, 210, 330, 331, 211, 211, 331, 332, 212, 212, 332, 333, 213, 213, 333, 334, 214, 214, 334, 335, 215, 215, 335, 336, 216, 216, 336, 337, 217, 217, 337, 338, 218, 218, 338, 339, 219, 219, 339, 340, 220, 220, 340, 341, 221, 221, 341, 342, 222, 222, 342, 343, 223, 223, 343, 344, 224, 224, 344, 345, 225, 225, 345, 346, 226, 226, 346, 347, 227, 227, 347, 348, 228, 228, 348, 349, 229, 229, 349, 350, 230, 230, 350, 351, 231, 231, 351, 352, 232, 232, 352, 353, 233, 233, 353, 354, 234, 234, 354, 355, 235, 235, 355, 356, 236, 236, 356, 357, 237, 237, 357, 358, 238, 238, 358, 359, 239, 239, 359, 360, 240, 240, 360, 241, 121, 241, 361, 362, 242, 242, 362, 363, 243, 243, 363, 364, 244, 244, 364, 365, 245, 245, 365, 366, 246, 246, 366, 367, 247, 247, 367, 368, 248, 248, 368, 369, 249, 249, 369, 370, 250, 250, 370, 371, 251, 251, 371, 372, 252, 252, 372, 373, 253, 253, 373, 374, 254, 254, 374, 375, 255, 255, 375, 376, 256, 256, 376, 377, 257, 257, 377, 378, 258, 258, 378, 379, 259, 259, 379, 380, 260, 260, 380, 381, 261, 261, 381, 382, 262, 262, 382, 383, 263, 263, 383, 384, 264, 264, 384, 385, 265, 265, 385, 386, 266, 266, 386, 387, 267, 267, 387, 388, 268, 268, 388, 389, 269, 269, 389, 390, 270, 270, 390, 391, 271, 271, 391, 392, 272, 272, 392, 393, 273, 273, 393, 394, 274, 274, 394, 395, 275, 275, 395, 396, 276, 276, 396, 397, 277, 277, 397, 398, 278, 278, 398, 399, 279, 279, 399, 400, 280, 280, 400, 401, 281, 281, 401, 402, 282, 282, 402, 403, 283, 283, 403, 404, 284, 284, 404, 405, 285, 285, 405, 406, 286, 286, 406, 407, 287, 287, 407, 408, 288, 288, 408, 409, 289, 289, 409, 410, 290, 290, 410, 411, 291, 291, 411, 412, 292, 292, 412, 413, 293, 293, 413, 414, 294, 294, 414, 415, 295, 295, 415, 416, 296, 296, 416, 417, 297, 297, 417, 418, 298, 298, 418, 419, 299, 299, 419, 420, 300, 300, 420, 421, 301, 301, 421, 422, 302, 302, 422, 423, 303, 303, 423, 424, 304, 304, 424, 425, 305, 305, 425, 426, 306, 306, 426, 427, 307, 307, 427, 428, 308, 308, 428, 429, 309, 309, 429, 430, 310, 310, 430, 431, 311, 311, 431, 432, 312, 312, 432, 433, 313, 313, 433, 434, 314, 314, 434, 435, 315, 315, 435, 436, 316, 316, 436, 437, 317, 317, 437, 438, 318, 318, 438, 439, 319, 319, 439, 440, 320, 320, 440, 441, 321, 321, 441, 442, 322, 322, 442, 443, 323, 323, 443, 444, 324, 324, 444, 445, 325, 325, 445, 446, 326, 326, 446, 447, 327, 327, 447, 448, 328, 328, 448, 449, 329, 329, 449, 450, 330, 330, 450, 451, 331, 331, 451, 452, 332, 332, 452, 453, 333, 333, 453, 454, 334, 334, 454, 455, 335, 335, 455, 456, 336, 336, 456, 457, 337, 337, 457, 458, 338, 338, 458, 459, 339, 339, 459, 460, 340, 340, 460, 461, 341, 341, 461, 462, 342, 342, 462, 463, 343, 343, 463, 464, 344, 344, 464, 465, 345, 345, 465, 466, 346, 346, 466, 467, 347, 347, 467, 468, 348, 348, 468, 469, 349, 349, 469, 470, 350, 350, 470, 471, 351, 351, 471, 472, 352, 352, 472, 473, 353, 353, 473, 474, 354, 354, 474, 475, 355, 355, 475, 476, 356, 356, 476, 477, 357, 357, 477, 478, 358, 358, 478, 479, 359, 359, 479, 480, 360, 360, 480, 361, 241, 361, 481, 482, 362, 362, 482, 483, 363, 363, 483, 484, 364, 364, 484, 485, 365, 365, 485, 486, 366, 366, 486, 487, 367, 367, 487, 488, 368, 368, 488, 489, 369, 369, 489, 490, 370, 370, 490, 491, 371, 371, 491, 492, 372, 372, 492, 493, 373, 373, 493, 494, 374, 374, 494, 495, 375, 375, 495, 496, 376, 376, 496, 497, 377, 377, 497, 498, 378, 378, 498, 499, 379, 379, 499, 500, 380, 380, 500, 501, 381, 381, 501, 502, 382, 382, 502, 503, 383, 383, 503, 504, 384, 384, 504, 505, 385, 385, 505, 506, 386, 386, 506, 507, 387, 387, 507, 508, 388, 388, 508, 509, 389, 389, 509, 510, 390, 390, 510, 511, 391, 391, 511, 512, 392, 392, 512, 513, 393, 393, 513, 514, 394, 394, 514, 515, 395, 395, 515, 516, 396, 396, 516, 517, 397, 397, 517, 518, 398, 398, 518, 519, 399, 399, 519, 520, 400, 400, 520, 521, 401, 401, 521, 522, 402, 402, 522, 523, 403, 403, 523, 524, 404, 404, 524, 525, 405, 405, 525, 526, 406, 406, 526, 527, 407, 407, 527, 528, 408, 408, 528, 529, 409, 409, 529, 530, 410, 410, 530, 531, 411, 411, 531, 532, 412, 412, 532, 533, 413, 413, 533, 534, 414, 414, 534, 535, 415, 415, 535, 536, 416, 416, 536, 537, 417, 417, 537, 538, 418, 418, 538, 539, 419, 419, 539, 540, 420, 420, 540, 541, 421, 421, 541, 542, 422, 422, 542, 543, 423, 423, 543, 544, 424, 424, 544, 545, 425, 425, 545, 546, 426, 426, 546, 547, 427, 427, 547, 548, 428, 428, 548, 549, 429, 429, 549, 550, 430, 430, 550, 551, 431, 431, 551, 552, 432, 432, 552, 553, 433, 433, 553, 554, 434, 434, 554, 555, 435, 435, 555, 556, 436, 436, 556, 557, 437, 437, 557, 558, 438, 438, 558, 559, 439, 439, 559, 560, 440, 440, 560, 561, 441, 441, 561, 562, 442, 442, 562, 563, 443, 443, 563, 564, 444, 444, 564, 565, 445, 445, 565, 566, 446, 446, 566, 567, 447, 447, 567, 568, 448, 448, 568, 569, 449, 449, 569, 570, 450, 450, 570, 571, 451, 451, 571, 572, 452, 452, 572, 573, 453, 453, 573, 574, 454, 454, 574, 575, 455, 455, 575, 576, 456, 456, 576, 577, 457, 457, 577, 578, 458, 458, 578, 579, 459, 459, 579, 580, 460, 460, 580, 581, 461, 461, 581, 582, 462, 462, 582, 583, 463, 463, 583, 584, 464, 464, 584, 585, 465, 465, 585, 586, 466, 466, 586, 587, 467, 467, 587, 588, 468, 468, 588, 589, 469, 469, 589, 590, 470, 470, 590, 591, 471, 471, 591, 592, 472, 472, 592, 593, 473, 473, 593, 594, 474, 474, 594, 595, 475, 475, 595, 596, 476, 476, 596, 597, 477, 477, 597, 598, 478, 478, 598, 599, 479, 479, 599, 600, 480, 480, 600, 481, 361, 481, 601, 602, 482, 482, 602, 603, 483, 483, 603, 604, 484, 484, 604, 605, 485, 485, 605, 606, 486, 486, 606, 607, 487, 487, 607, 608, 488, 488, 608, 609, 489, 489, 609, 610, 490, 490, 610, 611, 491, 491, 611, 612, 492, 492, 612, 613, 493, 493, 613, 614, 494, 494, 614, 615, 495, 495, 615, 616, 496, 496, 616, 617, 497, 497, 617, 618, 498, 498, 618, 619, 499, 499, 619, 620, 500, 500, 620, 621, 501, 501, 621, 622, 502, 502, 622, 623, 503, 503, 623, 624, 504, 504, 624, 625, 505, 505, 625, 626, 506, 506, 626, 627, 507, 507, 627, 628, 508, 508, 628, 629, 509, 509, 629, 630, 510, 510, 630, 631, 511, 511, 631, 632, 512, 512, 632, 633, 513, 513, 633, 634, 514, 514, 634, 635, 515, 515, 635, 636, 516, 516, 636, 637, 517, 517, 637, 638, 518, 518, 638, 639, 519, 519, 639, 640, 520, 520, 640, 641, 521, 521, 641, 642, 522, 522, 642, 643, 523, 523, 643, 644, 524, 524, 644, 645, 525, 525, 645, 646, 526, 526, 646, 647, 527, 527, 647, 648, 528, 528, 648, 649, 529, 529, 649, 650, 530, 530, 650, 651, 531, 531, 651, 652, 532, 532, 652, 653, 533, 533, 653, 654, 534, 534, 654, 655, 535, 535, 655, 656, 536, 536, 656, 657, 537, 537, 657, 658, 538, 538, 658, 659, 539, 539, 659, 660, 540, 540, 660, 661, 541, 541, 661, 662, 542, 542, 662, 663, 543, 543, 663, 664, 544, 544, 664, 665, 545, 545, 665, 666, 546, 546, 666, 667, 547, 547, 667, 668, 548, 548, 668, 669, 549, 549, 669, 670, 550, 550, 670, 671, 551, 551, 671, 672, 552, 552, 672, 673, 553, 553, 673, 674, 554, 554, 674, 675, 555, 555, 675, 676, 556, 556, 676, 677, 557, 557, 677, 678, 558, 558, 678, 679, 559, 559, 679, 680, 560, 560, 680, 681, 561, 561, 681, 682, 562, 562, 682, 683, 563, 563, 683, 684, 564, 564, 684, 685, 565, 565, 685, 686, 566, 566, 686, 687, 567, 567, 687, 688, 568, 568, 688, 689, 569, 569, 689, 690, 570, 570, 690, 691, 571, 571, 691, 692, 572, 572, 692, 693, 573, 573, 693, 694, 574, 574, 694, 695, 575, 575, 695, 696, 576, 576, 696, 697, 577, 577, 697, 698, 578, 578, 698, 699, 579, 579, 699, 700, 580, 580, 700, 701, 581, 581, 701, 702, 582, 582, 702, 703, 583, 583, 703, 704, 584, 584, 704, 705, 585, 585, 705, 706, 586, 586, 706, 707, 587, 587, 707, 708, 588, 588, 708, 709, 589, 589, 709, 710, 590, 590, 710, 711, 591, 591, 711, 712, 592, 592, 712, 713, 593, 593, 713, 714, 594, 594, 714, 715, 595, 595, 715, 716, 596, 596, 716, 717, 597, 597, 717, 718, 598, 598, 718, 719, 599, 599, 719, 720, 600, 600, 720, 601, 481, 601, 721, 722, 602, 602, 722, 723, 603, 603, 723, 724, 604, 604, 724, 725, 605, 605, 725, 726, 606, 606, 726, 727, 607, 607, 727, 728, 608, 608, 728, 729, 609, 609, 729, 730, 610, 610, 730, 731, 611, 611, 731, 732, 612, 612, 732, 733, 613, 613, 733, 734, 614, 614, 734, 735, 615, 615, 735, 736, 616, 616, 736, 737, 617, 617, 737, 738, 618, 618, 738, 739, 619, 619, 739, 740, 620, 620, 740, 741, 621, 621, 741, 742, 622, 622, 742, 743, 623, 623, 743, 744, 624, 624, 744, 745, 625, 625, 745, 746, 626, 626, 746, 747, 627, 627, 747, 748, 628, 628, 748, 749, 629, 629, 749, 750, 630, 630, 750, 751, 631, 631, 751, 752, 632, 632, 752, 753, 633, 633, 753, 754, 634, 634, 754, 755, 635, 635, 755, 756, 636, 636, 756, 757, 637, 637, 757, 758, 638, 638, 758, 759, 639, 639, 759, 760, 640, 640, 760, 761, 641, 641, 761, 762, 642, 642, 762, 763, 643, 643, 763, 764, 644, 644, 764, 765, 645, 645, 765, 766, 646, 646, 766, 767, 647, 647, 767, 768, 648, 648, 768, 769, 649, 649, 769, 770, 650, 650, 770, 771, 651, 651, 771, 772, 652, 652, 772, 773, 653, 653, 773, 774, 654, 654, 774, 775, 655, 655, 775, 776, 656, 656, 776, 777, 657, 657, 777, 778, 658, 658, 778, 779, 659, 659, 779, 780, 660, 660, 780, 781, 661, 661, 781, 782, 662, 662, 782, 783, 663, 663, 783, 784, 664, 664, 784, 785, 665, 665, 785, 786, 666, 666, 786, 787, 667, 667, 787, 788, 668, 668, 788, 789, 669, 669, 789, 790, 670, 670, 790, 791, 671, 671, 791, 792, 672, 672, 792, 793, 673, 673, 793, 794, 674, 674, 794, 795, 675, 675, 795, 796, 676, 676, 796, 797, 677, 677, 797, 798, 678, 678, 798, 799, 679, 679, 799, 800, 680, 680, 800, 801, 681, 681, 801, 802, 682, 682, 802, 803, 683, 683, 803, 804, 684, 684, 804, 805, 685, 685, 805, 806, 686, 686, 806, 807, 687, 687, 807, 808, 688, 688, 808, 809, 689, 689, 809, 810, 690, 690, 810, 811, 691, 691, 811, 812, 692, 692, 812, 813, 693, 693, 813, 814, 694, 694, 814, 815, 695, 695, 815, 816, 696, 696, 816, 817, 697, 697, 817, 818, 698, 698, 818, 819, 699, 699, 819, 820, 700, 700, 820, 821, 701, 701, 821, 822, 702, 702, 822, 823, 703, 703, 823, 824, 704, 704, 824, 825, 705, 705, 825, 826, 706, 706, 826, 827, 707, 707, 827, 828, 708, 708, 828, 829, 709, 709, 829, 830, 710, 710, 830, 831, 711, 711, 831, 832, 712, 712, 832, 833, 713, 713, 833, 834, 714, 714, 834, 835, 715, 715, 835, 836, 716, 716, 836, 837, 717, 717, 837, 838, 718, 718, 838, 839, 719, 719, 839, 840, 720, 720, 840, 721, 601, 721, 841, 842, 722, 722, 842, 843, 723, 723, 843, 844, 724, 724, 844, 845, 725, 725, 845, 846, 726, 726, 846, 847, 727, 727, 847, 848, 728, 728, 848, 849, 729, 729, 849, 850, 730, 730, 850, 851, 731, 731, 851, 852, 732, 732, 852, 853, 733, 733, 853, 854, 734, 734, 854, 855, 735, 735, 855, 856, 736, 736, 856, 857, 737, 737, 857, 858, 738, 738, 858, 859, 739, 739, 859, 860, 740, 740, 860, 861, 741, 741, 861, 862, 742, 742, 862, 863, 743, 743, 863, 864, 744, 744, 864, 865, 745, 745, 865, 866, 746, 746, 866, 867, 747, 747, 867, 868, 748, 748, 868, 869, 749, 749, 869, 870, 750, 750, 870, 871, 751, 751, 871, 872, 752, 752, 872, 873, 753, 753, 873, 874, 754, 754, 874, 875, 755, 755, 875, 876, 756, 756, 876, 877, 757, 757, 877, 878, 758, 758, 878, 879, 759, 759, 879, 880, 760, 760, 880, 881, 761, 761, 881, 882, 762, 762, 882, 883, 763, 763, 883, 884, 764, 764, 884, 885, 765, 765, 885, 886, 766, 766, 886, 887, 767, 767, 887, 888, 768, 768, 888, 889, 769, 769, 889, 890, 770, 770, 890, 891, 771, 771, 891, 892, 772, 772, 892, 893, 773, 773, 893, 894, 774, 774, 894, 895, 775, 775, 895, 896, 776, 776, 896, 897, 777, 777, 897, 898, 778, 778, 898, 899, 779, 779, 899, 900, 780, 780, 900, 901, 781, 781, 901, 902, 782, 782, 902, 903, 783, 783, 903, 904, 784, 784, 904, 905, 785, 785, 905, 906, 786, 786, 906, 907, 787, 787, 907, 908, 788, 788, 908, 909, 789, 789, 909, 910, 790, 790, 910, 911, 791, 791, 911, 912, 792, 792, 912, 913, 793, 793, 913, 914, 794, 794, 914, 915, 795, 795, 915, 916, 796, 796, 916, 917, 797, 797, 917, 918, 798, 798, 918, 919, 799, 799, 919, 920, 800, 800, 920, 921, 801, 801, 921, 922, 802, 802, 922, 923, 803, 803, 923, 924, 804, 804, 924, 925, 805, 805, 925, 926, 806, 806, 926, 927, 807, 807, 927, 928, 808, 808, 928, 929, 809, 809, 929, 930, 810, 810, 930, 931, 811, 811, 931, 932, 812, 812, 932, 933, 813, 813, 933, 934, 814, 814, 934, 935, 815, 815, 935, 936, 816, 816, 936, 937, 817, 817, 937, 938, 818, 818, 938, 939, 819, 819, 939, 940, 820, 820, 940, 941, 821, 821, 941, 942, 822, 822, 942, 943, 823, 823, 943, 944, 824, 824, 944, 945, 825, 825, 945, 946, 826, 826, 946, 947, 827, 827, 947, 948, 828, 828, 948, 949, 829, 829, 949, 950, 830, 830, 950, 951, 831, 831, 951, 952, 832, 832, 952, 953, 833, 833, 953, 954, 834, 834, 954, 955, 835, 835, 955, 956, 836, 836, 956, 957, 837, 837, 957, 958, 838, 838, 958, 959, 839, 839, 959, 960, 840, 840, 960, 841, 721, 841, 961, 962, 842, 842, 962, 963, 843, 843, 963, 964, 844, 844, 964, 965, 845, 845, 965, 966, 846, 846, 966, 967, 847, 847, 967, 968, 848, 848, 968, 969, 849, 849, 969, 970, 850, 850, 970, 971, 851, 851, 971, 972, 852, 852, 972, 973, 853, 853, 973, 974, 854, 854, 974, 975, 855, 855, 975, 976, 856, 856, 976, 977, 857, 857, 977, 978, 858, 858, 978, 979, 859, 859, 979, 980, 860, 860, 980, 981, 861, 861, 981, 982, 862, 862, 982, 983, 863, 863, 983, 984, 864, 864, 984, 985, 865, 865, 985, 986, 866, 866, 986, 987, 867, 867, 987, 988, 868, 868, 988, 989, 869, 869, 989, 990, 870, 870, 990, 991, 871, 871, 991, 992, 872, 872, 992, 993, 873, 873, 993, 994, 874, 874, 994, 995, 875, 875, 995, 996, 876, 876, 996, 997, 877, 877, 997, 998, 878, 878, 998, 999, 879, 879, 999, 1000, 880, 880, 1000, 1001, 881, 881, 1001, 1002, 882, 882, 1002, 1003, 883, 883, 1003, 1004, 884, 884, 1004, 1005, 885, 885, 1005, 1006, 886, 886, 1006, 1007, 887, 887, 1007, 1008, 888, 888, 1008, 1009, 889, 889, 1009, 1010, 890, 890, 1010, 1011, 891, 891, 1011, 1012, 892, 892, 1012, 1013, 893, 893, 1013, 1014, 894, 894, 1014, 1015, 895, 895, 1015, 1016, 896, 896, 1016, 1017, 897, 897, 1017, 1018, 898, 898, 1018, 1019, 899, 899, 1019, 1020, 900, 900, 1020, 1021, 901, 901, 1021, 1022, 902, 902, 1022, 1023, 903, 903, 1023, 1024, 904, 904, 1024, 1025, 905, 905, 1025, 1026, 906, 906, 1026, 1027, 907, 907, 1027, 1028, 908, 908, 1028, 1029, 909, 909, 1029, 1030, 910, 910, 1030, 1031, 911, 911, 1031, 1032, 912, 912, 1032, 1033, 913, 913, 1033, 1034, 914, 914, 1034, 1035, 915, 915, 1035, 1036, 916, 916, 1036, 1037, 917, 917, 1037, 1038, 918, 918, 1038, 1039, 919, 919, 1039, 1040, 920, 920, 1040, 1041, 921, 921, 1041, 1042, 922, 922, 1042, 1043, 923, 923, 1043, 1044, 924, 924, 1044, 1045, 925, 925, 1045, 1046, 926, 926, 1046, 1047, 927, 927, 1047, 1048, 928, 928, 1048, 1049, 929, 929, 1049, 1050, 930, 930, 1050, 1051, 931, 931, 1051, 1052, 932, 932, 1052, 1053, 933, 933, 1053, 1054, 934, 934, 1054, 1055, 935, 935, 1055, 1056, 936, 936, 1056, 1057, 937, 937, 1057, 1058, 938, 938, 1058, 1059, 939, 939, 1059, 1060, 940, 940, 1060, 1061, 941, 941, 1061, 1062, 942, 942, 1062, 1063, 943, 943, 1063, 1064, 944, 944, 1064, 1065, 945, 945, 1065, 1066, 946, 946, 1066, 1067, 947, 947, 1067, 1068, 948, 948, 1068, 1069, 949, 949, 1069, 1070, 950, 950, 1070, 1071, 951, 951, 1071, 1072, 952, 952, 1072, 1073, 953, 953, 1073, 1074, 954, 954, 1074, 1075, 955, 955, 1075, 1076, 956, 956, 1076, 1077, 957, 957, 1077, 1078, 958, 958, 1078, 1079, 959, 959, 1079, 1080, 960, 960, 1080, 961, 841, 961, 1081, 1082, 962, 962, 1082, 1083, 963, 963, 1083, 1084, 964, 964, 1084, 1085, 965, 965, 1085, 1086, 966, 966, 1086, 1087, 967, 967, 1087, 1088, 968, 968, 1088, 1089, 969, 969, 1089, 1090, 970, 970, 1090, 1091, 971, 971, 1091, 1092, 972, 972, 1092, 1093, 973, 973, 1093, 1094, 974, 974, 1094, 1095, 975, 975, 1095, 1096, 976, 976, 1096, 1097, 977, 977, 1097, 1098, 978, 978, 1098, 1099, 979, 979, 1099, 1100, 980, 980, 1100, 1101, 981, 981, 1101, 1102, 982, 982, 1102, 1103, 983, 983, 1103, 1104, 984, 984, 1104, 1105, 985, 985, 1105, 1106, 986, 986, 1106, 1107, 987, 987, 1107, 1108, 988, 988, 1108, 1109, 989, 989, 1109, 1110, 990, 990, 1110, 1111, 991, 991, 1111, 1112, 992, 992, 1112, 1113, 993, 993, 1113, 1114, 994, 994, 1114, 1115, 995, 995, 1115, 1116, 996, 996, 1116, 1117, 997, 997, 1117, 1118, 998, 998, 1118, 1119, 999, 999, 1119, 1120, 1000, 1000, 1120, 1121, 1001, 1001, 1121, 1122, 1002, 1002, 1122, 1123, 1003, 1003, 1123, 1124, 1004, 1004, 1124, 1125, 1005, 1005, 1125, 1126, 1006, 1006, 1126, 1127, 1007, 1007, 1127, 1128, 1008, 1008, 1128, 1129, 1009, 1009, 1129, 1130, 1010, 1010, 1130, 1131, 1011, 1011, 1131, 1132, 1012, 1012, 1132, 1133, 1013, 1013, 1133, 1134, 1014, 1014, 1134, 1135, 1015, 1015, 1135, 1136, 1016, 1016, 1136, 1137, 1017, 1017, 1137, 1138, 1018, 1018, 1138, 1139, 1019, 1019, 1139, 1140, 1020, 1020, 1140, 1141, 1021, 1021, 1141, 1142, 1022, 1022, 1142, 1143, 1023, 1023, 1143, 1144, 1024, 1024, 1144, 1145, 1025, 1025, 1145, 1146, 1026, 1026, 1146, 1147, 1027, 1027, 1147, 1148, 1028, 1028, 1148, 1149, 1029, 1029, 1149, 1150, 1030, 1030, 1150, 1151, 1031, 1031, 1151, 1152, 1032, 1032, 1152, 1153, 1033, 1033, 1153, 1154, 1034, 1034, 1154, 1155, 1035, 1035, 1155, 1156, 1036, 1036, 1156, 1157, 1037, 1037, 1157, 1158, 1038, 1038, 1158, 1159, 1039, 1039, 1159, 1160, 1040, 1040, 1160, 1161, 1041, 1041, 1161, 1162, 1042, 1042, 1162, 1163, 1043, 1043, 1163, 1164, 1044, 1044, 1164, 1165, 1045, 1045, 1165, 1166, 1046, 1046, 1166, 1167, 1047, 1047, 1167, 1168, 1048, 1048, 1168, 1169, 1049, 1049, 1169, 1170, 1050, 1050, 1170, 1171, 1051, 1051, 1171, 1172, 1052, 1052, 1172, 1173, 1053, 1053, 1173, 1174, 1054, 1054, 1174, 1175, 1055, 1055, 1175, 1176, 1056, 1056, 1176, 1177, 1057, 1057, 1177, 1178, 1058, 1058, 1178, 1179, 1059, 1059, 1179, 1180, 1060, 1060, 1180, 1181, 1061, 1061, 1181, 1182, 1062, 1062, 1182, 1183, 1063, 1063, 1183, 1184, 1064, 1064, 1184, 1185, 1065, 1065, 1185, 1186, 1066, 1066, 1186, 1187, 1067, 1067, 1187, 1188, 1068, 1068, 1188, 1189, 1069, 1069, 1189, 1190, 1070, 1070, 1190, 1191, 1071, 1071, 1191, 1192, 1072, 1072, 1192, 1193, 1073, 1073, 1193, 1194, 1074, 1074, 1194, 1195, 1075, 1075, 1195, 1196, 1076, 1076, 1196, 1197, 1077, 1077, 1197, 1198, 1078, 1078, 1198, 1199, 1079, 1079, 1199, 1200, 1080, 1080, 1200, 1081, 961, 1081, 1201, 1202, 1082, 1082, 1202, 1203, 1083, 1083, 1203, 1204, 1084, 1084, 1204, 1205, 1085, 1085, 1205, 1206, 1086, 1086, 1206, 1207, 1087, 1087, 1207, 1208, 1088, 1088, 1208, 1209, 1089, 1089, 1209, 1210, 1090, 1090, 1210, 1211, 1091, 1091, 1211, 1212, 1092, 1092, 1212, 1213, 1093, 1093, 1213, 1214, 1094, 1094, 1214, 1215, 1095, 1095, 1215, 1216, 1096, 1096, 1216, 1217, 1097, 1097, 1217, 1218, 1098, 1098, 1218, 1219, 1099, 1099, 1219, 1220, 1100, 1100, 1220, 1221, 1101, 1101, 1221, 1222, 1102, 1102, 1222, 1223, 1103, 1103, 1223, 1224, 1104, 1104, 1224, 1225, 1105, 1105, 1225, 1226, 1106, 1106, 1226, 1227, 1107, 1107, 1227, 1228, 1108, 1108, 1228, 1229, 1109, 1109, 1229, 1230, 1110, 1110, 1230, 1231, 1111, 1111, 1231, 1232, 1112, 1112, 1232, 1233, 1113, 1113, 1233, 1234, 1114, 1114, 1234, 1235, 1115, 1115, 1235, 1236, 1116, 1116, 1236, 1237, 1117, 1117, 1237, 1238, 1118, 1118, 1238, 1239, 1119, 1119, 1239, 1240, 1120, 1120, 1240, 1241, 1121, 1121, 1241, 1242, 1122, 1122, 1242, 1243, 1123, 1123, 1243, 1244, 1124, 1124, 1244, 1245, 1125, 1125, 1245, 1246, 1126, 1126, 1246, 1247, 1127, 1127, 1247, 1248, 1128, 1128, 1248, 1249, 1129, 1129, 1249, 1250, 1130, 1130, 1250, 1251, 1131, 1131, 1251, 1252, 1132, 1132, 1252, 1253, 1133, 1133, 1253, 1254, 1134, 1134, 1254, 1255, 1135, 1135, 1255, 1256, 1136, 1136, 1256, 1257, 1137, 1137, 1257, 1258, 1138, 1138, 1258, 1259, 1139, 1139, 1259, 1260, 1140, 1140, 1260, 1261, 1141, 1141, 1261, 1262, 1142, 1142, 1262, 1263, 1143, 1143, 1263, 1264, 1144, 1144, 1264, 1265, 1145, 1145, 1265, 1266, 1146, 1146, 1266, 1267, 1147, 1147, 1267, 1268, 1148, 1148, 1268, 1269, 1149, 1149, 1269, 1270, 1150, 1150, 1270, 1271, 1151, 1151, 1271, 1272, 1152, 1152, 1272, 1273, 1153, 1153, 1273, 1274, 1154, 1154, 1274, 1275, 1155, 1155, 1275, 1276, 1156, 1156, 1276, 1277, 1157, 1157, 1277, 1278, 1158, 1158, 1278, 1279, 1159, 1159, 1279, 1280, 1160, 1160, 1280, 1281, 1161, 1161, 1281, 1282, 1162, 1162, 1282, 1283, 1163, 1163, 1283, 1284, 1164, 1164, 1284, 1285, 1165, 1165, 1285, 1286, 1166, 1166, 1286, 1287, 1167, 1167, 1287, 1288, 1168, 1168, 1288, 1289, 1169, 1169, 1289, 1290, 1170, 1170, 1290, 1291, 1171, 1171, 1291, 1292, 1172, 1172, 1292, 1293, 1173, 1173, 1293, 1294, 1174, 1174, 1294, 1295, 1175, 1175, 1295, 1296, 1176, 1176, 1296, 1297, 1177, 1177, 1297, 1298, 1178, 1178, 1298, 1299, 1179, 1179, 1299, 1300, 1180, 1180, 1300, 1301, 1181, 1181, 1301, 1302, 1182, 1182, 1302, 1303, 1183, 1183, 1303, 1304, 1184, 1184, 1304, 1305, 1185, 1185, 1305, 1306, 1186, 1186, 1306, 1307, 1187, 1187, 1307, 1308, 1188, 1188, 1308, 1309, 1189, 1189, 1309, 1310, 1190, 1190, 1310, 1311, 1191, 1191, 1311, 1312, 1192, 1192, 1312, 1313, 1193, 1193, 1313, 1314, 1194, 1194, 1314, 1315, 1195, 1195, 1315, 1316, 1196, 1196, 1316, 1317, 1197, 1197, 1317, 1318, 1198, 1198, 1318, 1319, 1199, 1199, 1319, 1320, 1200, 1200, 1320, 1201, 1081, 1201, 1321, 1322, 1202, 1202, 1322, 1323, 1203, 1203, 1323, 1324, 1204, 1204, 1324, 1325, 1205, 1205, 1325, 1326, 1206, 1206, 1326, 1327, 1207, 1207, 1327, 1328, 1208, 1208, 1328, 1329, 1209, 1209, 1329, 1330, 1210, 1210, 1330, 1331, 1211, 1211, 1331, 1332, 1212, 1212, 1332, 1333, 1213, 1213, 1333, 1334, 1214, 1214, 1334, 1335, 1215, 1215, 1335, 1336, 1216, 1216, 1336, 1337, 1217, 1217, 1337, 1338, 1218, 1218, 1338, 1339, 1219, 1219, 1339, 1340, 1220, 1220, 1340, 1341, 1221, 1221, 1341, 1342, 1222, 1222, 1342, 1343, 1223, 1223, 1343, 1344, 1224, 1224, 1344, 1345, 1225, 1225, 1345, 1346, 1226, 1226, 1346, 1347, 1227, 1227, 1347, 1348, 1228, 1228, 1348, 1349, 1229, 1229, 1349, 1350, 1230, 1230, 1350, 1351, 1231, 1231, 1351, 1352, 1232, 1232, 1352, 1353, 1233, 1233, 1353, 1354, 1234, 1234, 1354, 1355, 1235, 1235, 1355, 1356, 1236, 1236, 1356, 1357, 1237, 1237, 1357, 1358, 1238, 1238, 1358, 1359, 1239, 1239, 1359, 1360, 1240, 1240, 1360, 1361, 1241, 1241, 1361, 1362, 1242, 1242, 1362, 1363, 1243, 1243, 1363, 1364, 1244, 1244, 1364, 1365, 1245, 1245, 1365, 1366, 1246, 1246, 1366, 1367, 1247, 1247, 1367, 1368, 1248, 1248, 1368, 1369, 1249, 1249, 1369, 1370, 1250, 1250, 1370, 1371, 1251, 1251, 1371, 1372, 1252, 1252, 1372, 1373, 1253, 1253, 1373, 1374, 1254, 1254, 1374, 1375, 1255, 1255, 1375, 1376, 1256, 1256, 1376, 1377, 1257, 1257, 1377, 1378, 1258, 1258, 1378, 1379, 1259, 1259, 1379, 1380, 1260, 1260, 1380, 1381, 1261, 1261, 1381, 1382, 1262, 1262, 1382, 1383, 1263, 1263, 1383, 1384, 1264, 1264, 1384, 1385, 1265, 1265, 1385, 1386, 1266, 1266, 1386, 1387, 1267, 1267, 1387, 1388, 1268, 1268, 1388, 1389, 1269, 1269, 1389, 1390, 1270, 1270, 1390, 1391, 1271, 1271, 1391, 1392, 1272, 1272, 1392, 1393, 1273, 1273, 1393, 1394, 1274, 1274, 1394, 1395, 1275, 1275, 1395, 1396, 1276, 1276, 1396, 1397, 1277, 1277, 1397, 1398, 1278, 1278, 1398, 1399, 1279, 1279, 1399, 1400, 1280, 1280, 1400, 1401, 1281, 1281, 1401, 1402, 1282, 1282, 1402, 1403, 1283, 1283, 1403, 1404, 1284, 1284, 1404, 1405, 1285, 1285, 1405, 1406, 1286, 1286, 1406, 1407, 1287, 1287, 1407, 1408, 1288, 1288, 1408, 1409, 1289, 1289, 1409, 1410, 1290, 1290, 1410, 1411, 1291, 1291, 1411, 1412, 1292, 1292, 1412, 1413, 1293, 1293, 1413, 1414, 1294, 1294, 1414, 1415, 1295, 1295, 1415, 1416, 1296, 1296, 1416, 1417, 1297, 1297, 1417, 1418, 1298, 1298, 1418, 1419, 1299, 1299, 1419, 1420, 1300, 1300, 1420, 1421, 1301, 1301, 1421, 1422, 1302, 1302, 1422, 1423, 1303, 1303, 1423, 1424, 1304, 1304, 1424, 1425, 1305, 1305, 1425, 1426, 1306, 1306, 1426, 1427, 1307, 1307, 1427, 1428, 1308, 1308, 1428, 1429, 1309, 1309, 1429, 1430, 1310, 1310, 1430, 1431, 1311, 1311, 1431, 1432, 1312, 1312, 1432, 1433, 1313, 1313, 1433, 1434, 1314, 1314, 1434, 1435, 1315, 1315, 1435, 1436, 1316, 1316, 1436, 1437, 1317, 1317, 1437, 1438, 1318, 1318, 1438, 1439, 1319, 1319, 1439, 1440, 1320, 1320, 1440, 1321, 1201, 1321, 1441, 1442, 1322, 1322, 1442, 1443, 1323, 1323, 1443, 1444, 1324, 1324, 1444, 1445, 1325, 1325, 1445, 1446, 1326, 1326, 1446, 1447, 1327, 1327, 1447, 1448, 1328, 1328, 1448, 1449, 1329, 1329, 1449, 1450, 1330, 1330, 1450, 1451, 1331, 1331, 1451, 1452, 1332, 1332, 1452, 1453, 1333, 1333, 1453, 1454, 1334, 1334, 1454, 1455, 1335, 1335, 1455, 1456, 1336, 1336, 1456, 1457, 1337, 1337, 1457, 1458, 1338, 1338, 1458, 1459, 1339, 1339, 1459, 1460, 1340, 1340, 1460, 1461, 1341, 1341, 1461, 1462, 1342, 1342, 1462, 1463, 1343, 1343, 1463, 1464, 1344, 1344, 1464, 1465, 1345, 1345, 1465, 1466, 1346, 1346, 1466, 1467, 1347, 1347, 1467, 1468, 1348, 1348, 1468, 1469, 1349, 1349, 1469, 1470, 1350, 1350, 1470, 1471, 1351, 1351, 1471, 1472, 1352, 1352, 1472, 1473, 1353, 1353, 1473, 1474, 1354, 1354, 1474, 1475, 1355, 1355, 1475, 1476, 1356, 1356, 1476, 1477, 1357, 1357, 1477, 1478, 1358, 1358, 1478, 1479, 1359, 1359, 1479, 1480, 1360, 1360, 1480, 1481, 1361, 1361, 1481, 1482, 1362, 1362, 1482, 1483, 1363, 1363, 1483, 1484, 1364, 1364, 1484, 1485, 1365, 1365, 1485, 1486, 1366, 1366, 1486, 1487, 1367, 1367, 1487, 1488, 1368, 1368, 1488, 1489, 1369, 1369, 1489, 1490, 1370, 1370, 1490, 1491, 1371, 1371, 1491, 1492, 1372, 1372, 1492, 1493, 1373, 1373, 1493, 1494, 1374, 1374, 1494, 1495, 1375, 1375, 1495, 1496, 1376, 1376, 1496, 1497, 1377, 1377, 1497, 1498, 1378, 1378, 1498, 1499, 1379, 1379, 1499, 1500, 1380, 1380, 1500, 1501, 1381, 1381, 1501, 1502, 1382, 1382, 1502, 1503, 1383, 1383, 1503, 1504, 1384, 1384, 1504, 1505, 1385, 1385, 1505, 1506, 1386, 1386, 1506, 1507, 1387, 1387, 1507, 1508, 1388, 1388, 1508, 1509, 1389, 1389, 1509, 1510, 1390, 1390, 1510, 1511, 1391, 1391, 1511, 1512, 1392, 1392, 1512, 1513, 1393, 1393, 1513, 1514, 1394, 1394, 1514, 1515, 1395, 1395, 1515, 1516, 1396, 1396, 1516, 1517, 1397, 1397, 1517, 1518, 1398, 1398, 1518, 1519, 1399, 1399, 1519, 1520, 1400, 1400, 1520, 1521, 1401, 1401, 1521, 1522, 1402, 1402, 1522, 1523, 1403, 1403, 1523, 1524, 1404, 1404, 1524, 1525, 1405, 1405, 1525, 1526, 1406, 1406, 1526, 1527, 1407, 1407, 1527, 1528, 1408, 1408, 1528, 1529, 1409, 1409, 1529, 1530, 1410, 1410, 1530, 1531, 1411, 1411, 1531, 1532, 1412, 1412, 1532, 1533, 1413, 1413, 1533, 1534, 1414, 1414, 1534, 1535, 1415, 1415, 1535, 1536, 1416, 1416, 1536, 1537, 1417, 1417, 1537, 1538, 1418, 1418, 1538, 1539, 1419, 1419, 1539, 1540, 1420, 1420, 1540, 1541, 1421, 1421, 1541, 1542, 1422, 1422, 1542, 1543, 1423, 1423, 1543, 1544, 1424, 1424, 1544, 1545, 1425, 1425, 1545, 1546, 1426, 1426, 1546, 1547, 1427, 1427, 1547, 1548, 1428, 1428, 1548, 1549, 1429, 1429, 1549, 1550, 1430, 1430, 1550, 1551, 1431, 1431, 1551, 1552, 1432, 1432, 1552, 1553, 1433, 1433, 1553, 1554, 1434, 1434, 1554, 1555, 1435, 1435, 1555, 1556, 1436, 1436, 1556, 1557, 1437, 1437, 1557, 1558, 1438, 1438, 1558, 1559, 1439, 1439, 1559, 1560, 1440, 1440, 1560, 1441, 1321, 1441, 1561, 1562, 1442, 1442, 1562, 1563, 1443, 1443, 1563, 1564, 1444, 1444, 1564, 1565, 1445, 1445, 1565, 1566, 1446, 1446, 1566, 1567, 1447, 1447, 1567, 1568, 1448, 1448, 1568, 1569, 1449, 1449, 1569, 1570, 1450, 1450, 1570, 1571, 1451, 1451, 1571, 1572, 1452, 1452, 1572, 1573, 1453, 1453, 1573, 1574, 1454, 1454, 1574, 1575, 1455, 1455, 1575, 1576, 1456, 1456, 1576, 1577, 1457, 1457, 1577, 1578, 1458, 1458, 1578, 1579, 1459, 1459, 1579, 1580, 1460, 1460, 1580, 1581, 1461, 1461, 1581, 1582, 1462, 1462, 1582, 1583, 1463, 1463, 1583, 1584, 1464, 1464, 1584, 1585, 1465, 1465, 1585, 1586, 1466, 1466, 1586, 1587, 1467, 1467, 1587, 1588, 1468, 1468, 1588, 1589, 1469, 1469, 1589, 1590, 1470, 1470, 1590, 1591, 1471, 1471, 1591, 1592, 1472, 1472, 1592, 1593, 1473, 1473, 1593, 1594, 1474, 1474, 1594, 1595, 1475, 1475, 1595, 1596, 1476, 1476, 1596, 1597, 1477, 1477, 1597, 1598, 1478, 1478, 1598, 1599, 1479, 1479, 1599, 1600, 1480, 1480, 1600, 1601, 1481, 1481, 1601, 1602, 1482, 1482, 1602, 1603, 1483, 1483, 1603, 1604, 1484, 1484, 1604, 1605, 1485, 1485, 1605, 1606, 1486, 1486, 1606, 1607, 1487, 1487, 1607, 1608, 1488, 1488, 1608, 1609, 1489, 1489, 1609, 1610, 1490, 1490, 1610, 1611, 1491, 1491, 1611, 1612, 1492, 1492, 1612, 1613, 1493, 1493, 1613, 1614, 1494, 1494, 1614, 1615, 1495, 1495, 1615, 1616, 1496, 1496, 1616, 1617, 1497, 1497, 1617, 1618, 1498, 1498, 1618, 1619, 1499, 1499, 1619, 1620, 1500, 1500, 1620, 1621, 1501, 1501, 1621, 1622, 1502, 1502, 1622, 1623, 1503, 1503, 1623, 1624, 1504, 1504, 1624, 1625, 1505, 1505, 1625, 1626, 1506, 1506, 1626, 1627, 1507, 1507, 1627, 1628, 1508, 1508, 1628, 1629, 1509, 1509, 1629, 1630, 1510, 1510, 1630, 1631, 1511, 1511, 1631, 1632, 1512, 1512, 1632, 1633, 1513, 1513, 1633, 1634, 1514, 1514, 1634, 1635, 1515, 1515, 1635, 1636, 1516, 1516, 1636, 1637, 1517, 1517, 1637, 1638, 1518, 1518, 1638, 1639, 1519, 1519, 1639, 1640, 1520, 1520, 1640, 1641, 1521, 1521, 1641, 1642, 1522, 1522, 1642, 1643, 1523, 1523, 1643, 1644, 1524, 1524, 1644, 1645, 1525, 1525, 1645, 1646, 1526, 1526, 1646, 1647, 1527, 1527, 1647, 1648, 1528, 1528, 1648, 1649, 1529, 1529, 1649, 1650, 1530, 1530, 1650, 1651, 1531, 1531, 1651, 1652, 1532, 1532, 1652, 1653, 1533, 1533, 1653, 1654, 1534, 1534, 1654, 1655, 1535, 1535, 1655, 1656, 1536, 1536, 1656, 1657, 1537, 1537, 1657, 1658, 1538, 1538, 1658, 1659, 1539, 1539, 1659, 1660, 1540, 1540, 1660, 1661, 1541, 1541, 1661, 1662, 1542, 1542, 1662, 1663, 1543, 1543, 1663, 1664, 1544, 1544, 1664, 1665, 1545, 1545, 1665, 1666, 1546, 1546, 1666, 1667, 1547, 1547, 1667, 1668, 1548, 1548, 1668, 1669, 1549, 1549, 1669, 1670, 1550, 1550, 1670, 1671, 1551, 1551, 1671, 1672, 1552, 1552, 1672, 1673, 1553, 1553, 1673, 1674, 1554, 1554, 1674, 1675, 1555, 1555, 1675, 1676, 1556, 1556, 1676, 1677, 1557, 1557, 1677, 1678, 1558, 1558, 1678, 1679, 1559, 1559, 1679, 1680, 1560, 1560, 1680, 1561, 1441, 1561, 1681, 1682, 1562, 1562, 1682, 1683, 1563, 1563, 1683, 1684, 1564, 1564, 1684, 1685, 1565, 1565, 1685, 1686, 1566, 1566, 1686, 1687, 1567, 1567, 1687, 1688, 1568, 1568, 1688, 1689, 1569, 1569, 1689, 1690, 1570, 1570, 1690, 1691, 1571, 1571, 1691, 1692, 1572, 1572, 1692, 1693, 1573, 1573, 1693, 1694, 1574, 1574, 1694, 1695, 1575, 1575, 1695, 1696, 1576, 1576, 1696, 1697, 1577, 1577, 1697, 1698, 1578, 1578, 1698, 1699, 1579, 1579, 1699, 1700, 1580, 1580, 1700, 1701, 1581, 1581, 1701, 1702, 1582, 1582, 1702, 1703, 1583, 1583, 1703, 1704, 1584, 1584, 1704, 1705, 1585, 1585, 1705, 1706, 1586, 1586, 1706, 1707, 1587, 1587, 1707, 1708, 1588, 1588, 1708, 1709, 1589, 1589, 1709, 1710, 1590, 1590, 1710, 1711, 1591, 1591, 1711, 1712, 1592, 1592, 1712, 1713, 1593, 1593, 1713, 1714, 1594, 1594, 1714, 1715, 1595, 1595, 1715, 1716, 1596, 1596, 1716, 1717, 1597, 1597, 1717, 1718, 1598, 1598, 1718, 1719, 1599, 1599, 1719, 1720, 1600, 1600, 1720, 1721, 1601, 1601, 1721, 1722, 1602, 1602, 1722, 1723, 1603, 1603, 1723, 1724, 1604, 1604, 1724, 1725, 1605, 1605, 1725, 1726, 1606, 1606, 1726, 1727, 1607, 1607, 1727, 1728, 1608, 1608, 1728, 1729, 1609, 1609, 1729, 1730, 1610, 1610, 1730, 1731, 1611, 1611, 1731, 1732, 1612, 1612, 1732, 1733, 1613, 1613, 1733, 1734, 1614, 1614, 1734, 1735, 1615, 1615, 1735, 1736, 1616, 1616, 1736, 1737, 1617, 1617, 1737, 1738, 1618, 1618, 1738, 1739, 1619, 1619, 1739, 1740, 1620, 1620, 1740, 1741, 1621, 1621, 1741, 1742, 1622, 1622, 1742, 1743, 1623, 1623, 1743, 1744, 1624, 1624, 1744, 1745, 1625, 1625, 1745, 1746, 1626, 1626, 1746, 1747, 1627, 1627, 1747, 1748, 1628, 1628, 1748, 1749, 1629, 1629, 1749, 1750, 1630, 1630, 1750, 1751, 1631, 1631, 1751, 1752, 1632, 1632, 1752, 1753, 1633, 1633, 1753, 1754, 1634, 1634, 1754, 1755, 1635, 1635, 1755, 1756, 1636, 1636, 1756, 1757, 1637, 1637, 1757, 1758, 1638, 1638, 1758, 1759, 1639, 1639, 1759, 1760, 1640, 1640, 1760, 1761, 1641, 1641, 1761, 1762, 1642, 1642, 1762, 1763, 1643, 1643, 1763, 1764, 1644, 1644, 1764, 1765, 1645, 1645, 1765, 1766, 1646, 1646, 1766, 1767, 1647, 1647, 1767, 1768, 1648, 1648, 1768, 1769, 1649, 1649, 1769, 1770, 1650, 1650, 1770, 1771, 1651, 1651, 1771, 1772, 1652, 1652, 1772, 1773, 1653, 1653, 1773, 1774, 1654, 1654, 1774, 1775, 1655, 1655, 1775, 1776, 1656, 1656, 1776, 1777, 1657, 1657, 1777, 1778, 1658, 1658, 1778, 1779, 1659, 1659, 1779, 1780, 1660, 1660, 1780, 1781, 1661, 1661, 1781, 1782, 1662, 1662, 1782, 1783, 1663, 1663, 1783, 1784, 1664, 1664, 1784, 1785, 1665, 1665, 1785, 1786, 1666, 1666, 1786, 1787, 1667, 1667, 1787, 1788, 1668, 1668, 1788, 1789, 1669, 1669, 1789, 1790, 1670, 1670, 1790, 1791, 1671, 1671, 1791, 1792, 1672, 1672, 1792, 1793, 1673, 1673, 1793, 1794, 1674, 1674, 1794, 1795, 1675, 1675, 1795, 1796, 1676, 1676, 1796, 1797, 1677, 1677, 1797, 1798, 1678, 1678, 1798, 1799, 1679, 1679, 1799, 1800, 1680, 1680, 1800, 1681, 1561, 1681, 1801, 1802, 1682, 1682, 1802, 1803, 1683, 1683, 1803, 1804, 1684, 1684, 1804, 1805, 1685, 1685, 1805, 1806, 1686, 1686, 1806, 1807, 1687, 1687, 1807, 1808, 1688, 1688, 1808, 1809, 1689, 1689, 1809, 1810, 1690, 1690, 1810, 1811, 1691, 1691, 1811, 1812, 1692, 1692, 1812, 1813, 1693, 1693, 1813, 1814, 1694, 1694, 1814, 1815, 1695, 1695, 1815, 1816, 1696, 1696, 1816, 1817, 1697, 1697, 1817, 1818, 1698, 1698, 1818, 1819, 1699, 1699, 1819, 1820, 1700, 1700, 1820, 1821, 1701, 1701, 1821, 1822, 1702, 1702, 1822, 1823, 1703, 1703, 1823, 1824, 1704, 1704, 1824, 1825, 1705, 1705, 1825, 1826, 1706, 1706, 1826, 1827, 1707, 1707, 1827, 1828, 1708, 1708, 1828, 1829, 1709, 1709, 1829, 1830, 1710, 1710, 1830, 1831, 1711, 1711, 1831, 1832, 1712, 1712, 1832, 1833, 1713, 1713, 1833, 1834, 1714, 1714, 1834, 1835, 1715, 1715, 1835, 1836, 1716, 1716, 1836, 1837, 1717, 1717, 1837, 1838, 1718, 1718, 1838, 1839, 1719, 1719, 1839, 1840, 1720, 1720, 1840, 1841, 1721, 1721, 1841, 1842, 1722, 1722, 1842, 1843, 1723, 1723, 1843, 1844, 1724, 1724, 1844, 1845, 1725, 1725, 1845, 1846, 1726, 1726, 1846, 1847, 1727, 1727, 1847, 1848, 1728, 1728, 1848, 1849, 1729, 1729, 1849, 1850, 1730, 1730, 1850, 1851, 1731, 1731, 1851, 1852, 1732, 1732, 1852, 1853, 1733, 1733, 1853, 1854, 1734, 1734, 1854, 1855, 1735, 1735, 1855, 1856, 1736, 1736, 1856, 1857, 1737, 1737, 1857, 1858, 1738, 1738, 1858, 1859, 1739, 1739, 1859, 1860, 1740, 1740, 1860, 1861, 1741, 1741, 1861, 1862, 1742, 1742, 1862, 1863, 1743, 1743, 1863, 1864, 1744, 1744, 1864, 1865, 1745, 1745, 1865, 1866, 1746, 1746, 1866, 1867, 1747, 1747, 1867, 1868, 1748, 1748, 1868, 1869, 1749, 1749, 1869, 1870, 1750, 1750, 1870, 1871, 1751, 1751, 1871, 1872, 1752, 1752, 1872, 1873, 1753, 1753, 1873, 1874, 1754, 1754, 1874, 1875, 1755, 1755, 1875, 1876, 1756, 1756, 1876, 1877, 1757, 1757, 1877, 1878, 1758, 1758, 1878, 1879, 1759, 1759, 1879, 1880, 1760, 1760, 1880, 1881, 1761, 1761, 1881, 1882, 1762, 1762, 1882, 1883, 1763, 1763, 1883, 1884, 1764, 1764, 1884, 1885, 1765, 1765, 1885, 1886, 1766, 1766, 1886, 1887, 1767, 1767, 1887, 1888, 1768, 1768, 1888, 1889, 1769, 1769, 1889, 1890, 1770, 1770, 1890, 1891, 1771, 1771, 1891, 1892, 1772, 1772, 1892, 1893, 1773, 1773, 1893, 1894, 1774, 1774, 1894, 1895, 1775, 1775, 1895, 1896, 1776, 1776, 1896, 1897, 1777, 1777, 1897, 1898, 1778, 1778, 1898, 1899, 1779, 1779, 1899, 1900, 1780, 1780, 1900, 1901, 1781, 1781, 1901, 1902, 1782, 1782, 1902, 1903, 1783, 1783, 1903, 1904, 1784, 1784, 1904, 1905, 1785, 1785, 1905, 1906, 1786, 1786, 1906, 1907, 1787, 1787, 1907, 1908, 1788, 1788, 1908, 1909, 1789, 1789, 1909, 1910, 1790, 1790, 1910, 1911, 1791, 1791, 1911, 1912, 1792, 1792, 1912, 1913, 1793, 1793, 1913, 1914, 1794, 1794, 1914, 1915, 1795, 1795, 1915, 1916, 1796, 1796, 1916, 1917, 1797, 1797, 1917, 1918, 1798, 1798, 1918, 1919, 1799, 1799, 1919, 1920, 1800, 1800, 1920, 1801, 1681, 1801, 1921, 1922, 1802, 1802, 1922, 1923, 1803, 1803, 1923, 1924, 1804, 1804, 1924, 1925, 1805, 1805, 1925, 1926, 1806, 1806, 1926, 1927, 1807, 1807, 1927, 1928, 1808, 1808, 1928, 1929, 1809, 1809, 1929, 1930, 1810, 1810, 1930, 1931, 1811, 1811, 1931, 1932, 1812, 1812, 1932, 1933, 1813, 1813, 1933, 1934, 1814, 1814, 1934, 1935, 1815, 1815, 1935, 1936, 1816, 1816, 1936, 1937, 1817, 1817, 1937, 1938, 1818, 1818, 1938, 1939, 1819, 1819, 1939, 1940, 1820, 1820, 1940, 1941, 1821, 1821, 1941, 1942, 1822, 1822, 1942, 1943, 1823, 1823, 1943, 1944, 1824, 1824, 1944, 1945, 1825, 1825, 1945, 1946, 1826, 1826, 1946, 1947, 1827, 1827, 1947, 1948, 1828, 1828, 1948, 1949, 1829, 1829, 1949, 1950, 1830, 1830, 1950, 1951, 1831, 1831, 1951, 1952, 1832, 1832, 1952, 1953, 1833, 1833, 1953, 1954, 1834, 1834, 1954, 1955, 1835, 1835, 1955, 1956, 1836, 1836, 1956, 1957, 1837, 1837, 1957, 1958, 1838, 1838, 1958, 1959, 1839, 1839, 1959, 1960, 1840, 1840, 1960, 1961, 1841, 1841, 1961, 1962, 1842, 1842, 1962, 1963, 1843, 1843, 1963, 1964, 1844, 1844, 1964, 1965, 1845, 1845, 1965, 1966, 1846, 1846, 1966, 1967, 1847, 1847, 1967, 1968, 1848, 1848, 1968, 1969, 1849, 1849, 1969, 1970, 1850, 1850, 1970, 1971, 1851, 1851, 1971, 1972, 1852, 1852, 1972, 1973, 1853, 1853, 1973, 1974, 1854, 1854, 1974, 1975, 1855, 1855, 1975, 1976, 1856, 1856, 1976, 1977, 1857, 1857, 1977, 1978, 1858, 1858, 1978, 1979, 1859, 1859, 1979, 1980, 1860, 1860, 1980, 1981, 1861, 1861, 1981, 1982, 1862, 1862, 1982, 1983, 1863, 1863, 1983, 1984, 1864, 1864, 1984, 1985, 1865, 1865, 1985, 1986, 1866, 1866, 1986, 1987, 1867, 1867, 1987, 1988, 1868, 1868, 1988, 1989, 1869, 1869, 1989, 1990, 1870, 1870, 1990, 1991, 1871, 1871, 1991, 1992, 1872, 1872, 1992, 1993, 1873, 1873, 1993, 1994, 1874, 1874, 1994, 1995, 1875, 1875, 1995, 1996, 1876, 1876, 1996, 1997, 1877, 1877, 1997, 1998, 1878, 1878, 1998, 1999, 1879, 1879, 1999, 2000, 1880, 1880, 2000, 2001, 1881, 1881, 2001, 2002, 1882, 1882, 2002, 2003, 1883, 1883, 2003, 2004, 1884, 1884, 2004, 2005, 1885, 1885, 2005, 2006, 1886, 1886, 2006, 2007, 1887, 1887, 2007, 2008, 1888, 1888, 2008, 2009, 1889, 1889, 2009, 2010, 1890, 1890, 2010, 2011, 1891, 1891, 2011, 2012, 1892, 1892, 2012, 2013, 1893, 1893, 2013, 2014, 1894, 1894, 2014, 2015, 1895, 1895, 2015, 2016, 1896, 1896, 2016, 2017, 1897, 1897, 2017, 2018, 1898, 1898, 2018, 2019, 1899, 1899, 2019, 2020, 1900, 1900, 2020, 2021, 1901, 1901, 2021, 2022, 1902, 1902, 2022, 2023, 1903, 1903, 2023, 2024, 1904, 1904, 2024, 2025, 1905, 1905, 2025, 2026, 1906, 1906, 2026, 2027, 1907, 1907, 2027, 2028, 1908, 1908, 2028, 2029, 1909, 1909, 2029, 2030, 1910, 1910, 2030, 2031, 1911, 1911, 2031, 2032, 1912, 1912, 2032, 2033, 1913, 1913, 2033, 2034, 1914, 1914, 2034, 2035, 1915, 1915, 2035, 2036, 1916, 1916, 2036, 2037, 1917, 1917, 2037, 2038, 1918, 1918, 2038, 2039, 1919, 1919, 2039, 2040, 1920, 1920, 2040, 1921, 1801, 1921, 2041, 2042, 1922, 1922, 2042, 2043, 1923, 1923, 2043, 2044, 1924, 1924, 2044, 2045, 1925, 1925, 2045, 2046, 1926, 1926, 2046, 2047, 1927, 1927, 2047, 2048, 1928, 1928, 2048, 2049, 1929, 1929, 2049, 2050, 1930, 1930, 2050, 2051, 1931, 1931, 2051, 2052, 1932, 1932, 2052, 2053, 1933, 1933, 2053, 2054, 1934, 1934, 2054, 2055, 1935, 1935, 2055, 2056, 1936, 1936, 2056, 2057, 1937, 1937, 2057, 2058, 1938, 1938, 2058, 2059, 1939, 1939, 2059, 2060, 1940, 1940, 2060, 2061, 1941, 1941, 2061, 2062, 1942, 1942, 2062, 2063, 1943, 1943, 2063, 2064, 1944, 1944, 2064, 2065, 1945, 1945, 2065, 2066, 1946, 1946, 2066, 2067, 1947, 1947, 2067, 2068, 1948, 1948, 2068, 2069, 1949, 1949, 2069, 2070, 1950, 1950, 2070, 2071, 1951, 1951, 2071, 2072, 1952, 1952, 2072, 2073, 1953, 1953, 2073, 2074, 1954, 1954, 2074, 2075, 1955, 1955, 2075, 2076, 1956, 1956, 2076, 2077, 1957, 1957, 2077, 2078, 1958, 1958, 2078, 2079, 1959, 1959, 2079, 2080, 1960, 1960, 2080, 2081, 1961, 1961, 2081, 2082, 1962, 1962, 2082, 2083, 1963, 1963, 2083, 2084, 1964, 1964, 2084, 2085, 1965, 1965, 2085, 2086, 1966, 1966, 2086, 2087, 1967, 1967, 2087, 2088, 1968, 1968, 2088, 2089, 1969, 1969, 2089, 2090, 1970, 1970, 2090, 2091, 1971, 1971, 2091, 2092, 1972, 1972, 2092, 2093, 1973, 1973, 2093, 2094, 1974, 1974, 2094, 2095, 1975, 1975, 2095, 2096, 1976, 1976, 2096, 2097, 1977, 1977, 2097, 2098, 1978, 1978, 2098, 2099, 1979, 1979, 2099, 2100, 1980, 1980, 2100, 2101, 1981, 1981, 2101, 2102, 1982, 1982, 2102, 2103, 1983, 1983, 2103, 2104, 1984, 1984, 2104, 2105, 1985, 1985, 2105, 2106, 1986, 1986, 2106, 2107, 1987, 1987, 2107, 2108, 1988, 1988, 2108, 2109, 1989, 1989, 2109, 2110, 1990, 1990, 2110, 2111, 1991, 1991, 2111, 2112, 1992, 1992, 2112, 2113, 1993, 1993, 2113, 2114, 1994, 1994, 2114, 2115, 1995, 1995, 2115, 2116, 1996, 1996, 2116, 2117, 1997, 1997, 2117, 2118, 1998, 1998, 2118, 2119, 1999, 1999, 2119, 2120, 2000, 2000, 2120, 2121, 2001, 2001, 2121, 2122, 2002, 2002, 2122, 2123, 2003, 2003, 2123, 2124, 2004, 2004, 2124, 2125, 2005, 2005, 2125, 2126, 2006, 2006, 2126, 2127, 2007, 2007, 2127, 2128, 2008, 2008, 2128, 2129, 2009, 2009, 2129, 2130, 2010, 2010, 2130, 2131, 2011, 2011, 2131, 2132, 2012, 2012, 2132, 2133, 2013, 2013, 2133, 2134, 2014, 2014, 2134, 2135, 2015, 2015, 2135, 2136, 2016, 2016, 2136, 2137, 2017, 2017, 2137, 2138, 2018, 2018, 2138, 2139, 2019, 2019, 2139, 2140, 2020, 2020, 2140, 2141, 2021, 2021, 2141, 2142, 2022, 2022, 2142, 2143, 2023, 2023, 2143, 2144, 2024, 2024, 2144, 2145, 2025, 2025, 2145, 2146, 2026, 2026, 2146, 2147, 2027, 2027, 2147, 2148, 2028, 2028, 2148, 2149, 2029, 2029, 2149, 2150, 2030, 2030, 2150, 2151, 2031, 2031, 2151, 2152, 2032, 2032, 2152, 2153, 2033, 2033, 2153, 2154, 2034, 2034, 2154, 2155, 2035, 2035, 2155, 2156, 2036, 2036, 2156, 2157, 2037, 2037, 2157, 2158, 2038, 2038, 2158, 2159, 2039, 2039, 2159, 2160, 2040, 2040, 2160, 2041, 1921, 2041, 2161, 2162, 2042, 2042, 2162, 2163, 2043, 2043, 2163, 2164, 2044, 2044, 2164, 2165, 2045, 2045, 2165, 2166, 2046, 2046, 2166, 2167, 2047, 2047, 2167, 2168, 2048, 2048, 2168, 2169, 2049, 2049, 2169, 2170, 2050, 2050, 2170, 2171, 2051, 2051, 2171, 2172, 2052, 2052, 2172, 2173, 2053, 2053, 2173, 2174, 2054, 2054, 2174, 2175, 2055, 2055, 2175, 2176, 2056, 2056, 2176, 2177, 2057, 2057, 2177, 2178, 2058, 2058, 2178, 2179, 2059, 2059, 2179, 2180, 2060, 2060, 2180, 2181, 2061, 2061, 2181, 2182, 2062, 2062, 2182, 2183, 2063, 2063, 2183, 2184, 2064, 2064, 2184, 2185, 2065, 2065, 2185, 2186, 2066, 2066, 2186, 2187, 2067, 2067, 2187, 2188, 2068, 2068, 2188, 2189, 2069, 2069, 2189, 2190, 2070, 2070, 2190, 2191, 2071, 2071, 2191, 2192, 2072, 2072, 2192, 2193, 2073, 2073, 2193, 2194, 2074, 2074, 2194, 2195, 2075, 2075, 2195, 2196, 2076, 2076, 2196, 2197, 2077, 2077, 2197, 2198, 2078, 2078, 2198, 2199, 2079, 2079, 2199, 2200, 2080, 2080, 2200, 2201, 2081, 2081, 2201, 2202, 2082, 2082, 2202, 2203, 2083, 2083, 2203, 2204, 2084, 2084, 2204, 2205, 2085, 2085, 2205, 2206, 2086, 2086, 2206, 2207, 2087, 2087, 2207, 2208, 2088, 2088, 2208, 2209, 2089, 2089, 2209, 2210, 2090, 2090, 2210, 2211, 2091, 2091, 2211, 2212, 2092, 2092, 2212, 2213, 2093, 2093, 2213, 2214, 2094, 2094, 2214, 2215, 2095, 2095, 2215, 2216, 2096, 2096, 2216, 2217, 2097, 2097, 2217, 2218, 2098, 2098, 2218, 2219, 2099, 2099, 2219, 2220, 2100, 2100, 2220, 2221, 2101, 2101, 2221, 2222, 2102, 2102, 2222, 2223, 2103, 2103, 2223, 2224, 2104, 2104, 2224, 2225, 2105, 2105, 2225, 2226, 2106, 2106, 2226, 2227, 2107, 2107, 2227, 2228, 2108, 2108, 2228, 2229, 2109, 2109, 2229, 2230, 2110, 2110, 2230, 2231, 2111, 2111, 2231, 2232, 2112, 2112, 2232, 2233, 2113, 2113, 2233, 2234, 2114, 2114, 2234, 2235, 2115, 2115, 2235, 2236, 2116, 2116, 2236, 2237, 2117, 2117, 2237, 2238, 2118, 2118, 2238, 2239, 2119, 2119, 2239, 2240, 2120, 2120, 2240, 2241, 2121, 2121, 2241, 2242, 2122, 2122, 2242, 2243, 2123, 2123, 2243, 2244, 2124, 2124, 2244, 2245, 2125, 2125, 2245, 2246, 2126, 2126, 2246, 2247, 2127, 2127, 2247, 2248, 2128, 2128, 2248, 2249, 2129, 2129, 2249, 2250, 2130, 2130, 2250, 2251, 2131, 2131, 2251, 2252, 2132, 2132, 2252, 2253, 2133, 2133, 2253, 2254, 2134, 2134, 2254, 2255, 2135, 2135, 2255, 2256, 2136, 2136, 2256, 2257, 2137, 2137, 2257, 2258, 2138, 2138, 2258, 2259, 2139, 2139, 2259, 2260, 2140, 2140, 2260, 2261, 2141, 2141, 2261, 2262, 2142, 2142, 2262, 2263, 2143, 2143, 2263, 2264, 2144, 2144, 2264, 2265, 2145, 2145, 2265, 2266, 2146, 2146, 2266, 2267, 2147, 2147, 2267, 2268, 2148, 2148, 2268, 2269, 2149, 2149, 2269, 2270, 2150, 2150, 2270, 2271, 2151, 2151, 2271, 2272, 2152, 2152, 2272, 2273, 2153, 2153, 2273, 2274, 2154, 2154, 2274, 2275, 2155, 2155, 2275, 2276, 2156, 2156, 2276, 2277, 2157, 2157, 2277, 2278, 2158, 2158, 2278, 2279, 2159, 2159, 2279, 2280, 2160, 2160, 2280, 2161, 2041, 2161, 2281, 2282, 2162, 2162, 2282, 2283, 2163, 2163, 2283, 2284, 2164, 2164, 2284, 2285, 2165, 2165, 2285, 2286, 2166, 2166, 2286, 2287, 2167, 2167, 2287, 2288, 2168, 2168, 2288, 2289, 2169, 2169, 2289, 2290, 2170, 2170, 2290, 2291, 2171, 2171, 2291, 2292, 2172, 2172, 2292, 2293, 2173, 2173, 2293, 2294, 2174, 2174, 2294, 2295, 2175, 2175, 2295, 2296, 2176, 2176, 2296, 2297, 2177, 2177, 2297, 2298, 2178, 2178, 2298, 2299, 2179, 2179, 2299, 2300, 2180, 2180, 2300, 2301, 2181, 2181, 2301, 2302, 2182, 2182, 2302, 2303, 2183, 2183, 2303, 2304, 2184, 2184, 2304, 2305, 2185, 2185, 2305, 2306, 2186, 2186, 2306, 2307, 2187, 2187, 2307, 2308, 2188, 2188, 2308, 2309, 2189, 2189, 2309, 2310, 2190, 2190, 2310, 2311, 2191, 2191, 2311, 2312, 2192, 2192, 2312, 2313, 2193, 2193, 2313, 2314, 2194, 2194, 2314, 2315, 2195, 2195, 2315, 2316, 2196, 2196, 2316, 2317, 2197, 2197, 2317, 2318, 2198, 2198, 2318, 2319, 2199, 2199, 2319, 2320, 2200, 2200, 2320, 2321, 2201, 2201, 2321, 2322, 2202, 2202, 2322, 2323, 2203, 2203, 2323, 2324, 2204, 2204, 2324, 2325, 2205, 2205, 2325, 2326, 2206, 2206, 2326, 2327, 2207, 2207, 2327, 2328, 2208, 2208, 2328, 2329, 2209, 2209, 2329, 2330, 2210, 2210, 2330, 2331, 2211, 2211, 2331, 2332, 2212, 2212, 2332, 2333, 2213, 2213, 2333, 2334, 2214, 2214, 2334, 2335, 2215, 2215, 2335, 2336, 2216, 2216, 2336, 2337, 2217, 2217, 2337, 2338, 2218, 2218, 2338, 2339, 2219, 2219, 2339, 2340, 2220, 2220, 2340, 2341, 2221, 2221, 2341, 2342, 2222, 2222, 2342, 2343, 2223, 2223, 2343, 2344, 2224, 2224, 2344, 2345, 2225, 2225, 2345, 2346, 2226, 2226, 2346, 2347, 2227, 2227, 2347, 2348, 2228, 2228, 2348, 2349, 2229, 2229, 2349, 2350, 2230, 2230, 2350, 2351, 2231, 2231, 2351, 2352, 2232, 2232, 2352, 2353, 2233, 2233, 2353, 2354, 2234, 2234, 2354, 2355, 2235, 2235, 2355, 2356, 2236, 2236, 2356, 2357, 2237, 2237, 2357, 2358, 2238, 2238, 2358, 2359, 2239, 2239, 2359, 2360, 2240, 2240, 2360, 2361, 2241, 2241, 2361, 2362, 2242, 2242, 2362, 2363, 2243, 2243, 2363, 2364, 2244, 2244, 2364, 2365, 2245, 2245, 2365, 2366, 2246, 2246, 2366, 2367, 2247, 2247, 2367, 2368, 2248, 2248, 2368, 2369, 2249, 2249, 2369, 2370, 2250, 2250, 2370, 2371, 2251, 2251, 2371, 2372, 2252, 2252, 2372, 2373, 2253, 2253, 2373, 2374, 2254, 2254, 2374, 2375, 2255, 2255, 2375, 2376, 2256, 2256, 2376, 2377, 2257, 2257, 2377, 2378, 2258, 2258, 2378, 2379, 2259, 2259, 2379, 2380, 2260, 2260, 2380, 2381, 2261, 2261, 2381, 2382, 2262, 2262, 2382, 2383, 2263, 2263, 2383, 2384, 2264, 2264, 2384, 2385, 2265, 2265, 2385, 2386, 2266, 2266, 2386, 2387, 2267, 2267, 2387, 2388, 2268, 2268, 2388, 2389, 2269, 2269, 2389, 2390, 2270, 2270, 2390, 2391, 2271, 2271, 2391, 2392, 2272, 2272, 2392, 2393, 2273, 2273, 2393, 2394, 2274, 2274, 2394, 2395, 2275, 2275, 2395, 2396, 2276, 2276, 2396, 2397, 2277, 2277, 2397, 2398, 2278, 2278, 2398, 2399, 2279, 2279, 2399, 2400, 2280, 2280, 2400, 2281, 2161, 2281, 2401, 2402, 2282, 2282, 2402, 2403, 2283, 2283, 2403, 2404, 2284, 2284, 2404, 2405, 2285, 2285, 2405, 2406, 2286, 2286, 2406, 2407, 2287, 2287, 2407, 2408, 2288, 2288, 2408, 2409, 2289, 2289, 2409, 2410, 2290, 2290, 2410, 2411, 2291, 2291, 2411, 2412, 2292, 2292, 2412, 2413, 2293, 2293, 2413, 2414, 2294, 2294, 2414, 2415, 2295, 2295, 2415, 2416, 2296, 2296, 2416, 2417, 2297, 2297, 2417, 2418, 2298, 2298, 2418, 2419, 2299, 2299, 2419, 2420, 2300, 2300, 2420, 2421, 2301, 2301, 2421, 2422, 2302, 2302, 2422, 2423, 2303, 2303, 2423, 2424, 2304, 2304, 2424, 2425, 2305, 2305, 2425, 2426, 2306, 2306, 2426, 2427, 2307, 2307, 2427, 2428, 2308, 2308, 2428, 2429, 2309, 2309, 2429, 2430, 2310, 2310, 2430, 2431, 2311, 2311, 2431, 2432, 2312, 2312, 2432, 2433, 2313, 2313, 2433, 2434, 2314, 2314, 2434, 2435, 2315, 2315, 2435, 2436, 2316, 2316, 2436, 2437, 2317, 2317, 2437, 2438, 2318, 2318, 2438, 2439, 2319, 2319, 2439, 2440, 2320, 2320, 2440, 2441, 2321, 2321, 2441, 2442, 2322, 2322, 2442, 2443, 2323, 2323, 2443, 2444, 2324, 2324, 2444, 2445, 2325, 2325, 2445, 2446, 2326, 2326, 2446, 2447, 2327, 2327, 2447, 2448, 2328, 2328, 2448, 2449, 2329, 2329, 2449, 2450, 2330, 2330, 2450, 2451, 2331, 2331, 2451, 2452, 2332, 2332, 2452, 2453, 2333, 2333, 2453, 2454, 2334, 2334, 2454, 2455, 2335, 2335, 2455, 2456, 2336, 2336, 2456, 2457, 2337, 2337, 2457, 2458, 2338, 2338, 2458, 2459, 2339, 2339, 2459, 2460, 2340, 2340, 2460, 2461, 2341, 2341, 2461, 2462, 2342, 2342, 2462, 2463, 2343, 2343, 2463, 2464, 2344, 2344, 2464, 2465, 2345, 2345, 2465, 2466, 2346, 2346, 2466, 2467, 2347, 2347, 2467, 2468, 2348, 2348, 2468, 2469, 2349, 2349, 2469, 2470, 2350, 2350, 2470, 2471, 2351, 2351, 2471, 2472, 2352, 2352, 2472, 2473, 2353, 2353, 2473, 2474, 2354, 2354, 2474, 2475, 2355, 2355, 2475, 2476, 2356, 2356, 2476, 2477, 2357, 2357, 2477, 2478, 2358, 2358, 2478, 2479, 2359, 2359, 2479, 2480, 2360, 2360, 2480, 2481, 2361, 2361, 2481, 2482, 2362, 2362, 2482, 2483, 2363, 2363, 2483, 2484, 2364, 2364, 2484, 2485, 2365, 2365, 2485, 2486, 2366, 2366, 2486, 2487, 2367, 2367, 2487, 2488, 2368, 2368, 2488, 2489, 2369, 2369, 2489, 2490, 2370, 2370, 2490, 2491, 2371, 2371, 2491, 2492, 2372, 2372, 2492, 2493, 2373, 2373, 2493, 2494, 2374, 2374, 2494, 2495, 2375, 2375, 2495, 2496, 2376, 2376, 2496, 2497, 2377, 2377, 2497, 2498, 2378, 2378, 2498, 2499, 2379, 2379, 2499, 2500, 2380, 2380, 2500, 2501, 2381, 2381, 2501, 2502, 2382, 2382, 2502, 2503, 2383, 2383, 2503, 2504, 2384, 2384, 2504, 2505, 2385, 2385, 2505, 2506, 2386, 2386, 2506, 2507, 2387, 2387, 2507, 2508, 2388, 2388, 2508, 2509, 2389, 2389, 2509, 2510, 2390, 2390, 2510, 2511, 2391, 2391, 2511, 2512, 2392, 2392, 2512, 2513, 2393, 2393, 2513, 2514, 2394, 2394, 2514, 2515, 2395, 2395, 2515, 2516, 2396, 2396, 2516, 2517, 2397, 2397, 2517, 2518, 2398, 2398, 2518, 2519, 2399, 2399, 2519, 2520, 2400, 2400, 2520, 2401, 2281, 2401, 2521, 2522, 2402, 2402, 2522, 2523, 2403, 2403, 2523, 2524, 2404, 2404, 2524, 2525, 2405, 2405, 2525, 2526, 2406, 2406, 2526, 2527, 2407, 2407, 2527, 2528, 2408, 2408, 2528, 2529, 2409, 2409, 2529, 2530, 2410, 2410, 2530, 2531, 2411, 2411, 2531, 2532, 2412, 2412, 2532, 2533, 2413, 2413, 2533, 2534, 2414, 2414, 2534, 2535, 2415, 2415, 2535, 2536, 2416, 2416, 2536, 2537, 2417, 2417, 2537, 2538, 2418, 2418, 2538, 2539, 2419, 2419, 2539, 2540, 2420, 2420, 2540, 2541, 2421, 2421, 2541, 2542, 2422, 2422, 2542, 2543, 2423, 2423, 2543, 2544, 2424, 2424, 2544, 2545, 2425, 2425, 2545, 2546, 2426, 2426, 2546, 2547, 2427, 2427, 2547, 2548, 2428, 2428, 2548, 2549, 2429, 2429, 2549, 2550, 2430, 2430, 2550, 2551, 2431, 2431, 2551, 2552, 2432, 2432, 2552, 2553, 2433, 2433, 2553, 2554, 2434, 2434, 2554, 2555, 2435, 2435, 2555, 2556, 2436, 2436, 2556, 2557, 2437, 2437, 2557, 2558, 2438, 2438, 2558, 2559, 2439, 2439, 2559, 2560, 2440, 2440, 2560, 2561, 2441, 2441, 2561, 2562, 2442, 2442, 2562, 2563, 2443, 2443, 2563, 2564, 2444, 2444, 2564, 2565, 2445, 2445, 2565, 2566, 2446, 2446, 2566, 2567, 2447, 2447, 2567, 2568, 2448, 2448, 2568, 2569, 2449, 2449, 2569, 2570, 2450, 2450, 2570, 2571, 2451, 2451, 2571, 2572, 2452, 2452, 2572, 2573, 2453, 2453, 2573, 2574, 2454, 2454, 2574, 2575, 2455, 2455, 2575, 2576, 2456, 2456, 2576, 2577, 2457, 2457, 2577, 2578, 2458, 2458, 2578, 2579, 2459, 2459, 2579, 2580, 2460, 2460, 2580, 2581, 2461, 2461, 2581, 2582, 2462, 2462, 2582, 2583, 2463, 2463, 2583, 2584, 2464, 2464, 2584, 2585, 2465, 2465, 2585, 2586, 2466, 2466, 2586, 2587, 2467, 2467, 2587, 2588, 2468, 2468, 2588, 2589, 2469, 2469, 2589, 2590, 2470, 2470, 2590, 2591, 2471, 2471, 2591, 2592, 2472, 2472, 2592, 2593, 2473, 2473, 2593, 2594, 2474, 2474, 2594, 2595, 2475, 2475, 2595, 2596, 2476, 2476, 2596, 2597, 2477, 2477, 2597, 2598, 2478, 2478, 2598, 2599, 2479, 2479, 2599, 2600, 2480, 2480, 2600, 2601, 2481, 2481, 2601, 2602, 2482, 2482, 2602, 2603, 2483, 2483, 2603, 2604, 2484, 2484, 2604, 2605, 2485, 2485, 2605, 2606, 2486, 2486, 2606, 2607, 2487, 2487, 2607, 2608, 2488, 2488, 2608, 2609, 2489, 2489, 2609, 2610, 2490, 2490, 2610, 2611, 2491, 2491, 2611, 2612, 2492, 2492, 2612, 2613, 2493, 2493, 2613, 2614, 2494, 2494, 2614, 2615, 2495, 2495, 2615, 2616, 2496, 2496, 2616, 2617, 2497, 2497, 2617, 2618, 2498, 2498, 2618, 2619, 2499, 2499, 2619, 2620, 2500, 2500, 2620, 2621, 2501, 2501, 2621, 2622, 2502, 2502, 2622, 2623, 2503, 2503, 2623, 2624, 2504, 2504, 2624, 2625, 2505, 2505, 2625, 2626, 2506, 2506, 2626, 2627, 2507, 2507, 2627, 2628, 2508, 2508, 2628, 2629, 2509, 2509, 2629, 2630, 2510, 2510, 2630, 2631, 2511, 2511, 2631, 2632, 2512, 2512, 2632, 2633, 2513, 2513, 2633, 2634, 2514, 2514, 2634, 2635, 2515, 2515, 2635, 2636, 2516, 2516, 2636, 2637, 2517, 2517, 2637, 2638, 2518, 2518, 2638, 2639, 2519, 2519, 2639, 2640, 2520, 2520, 2640, 2521, 2401, 2521, 2641, 2642, 2522, 2522, 2642, 2643, 2523, 2523, 2643, 2644, 2524, 2524, 2644, 2645, 2525, 2525, 2645, 2646, 2526, 2526, 2646, 2647, 2527, 2527, 2647, 2648, 2528, 2528, 2648, 2649, 2529, 2529, 2649, 2650, 2530, 2530, 2650, 2651, 2531, 2531, 2651, 2652, 2532, 2532, 2652, 2653, 2533, 2533, 2653, 2654, 2534, 2534, 2654, 2655, 2535, 2535, 2655, 2656, 2536, 2536, 2656, 2657, 2537, 2537, 2657, 2658, 2538, 2538, 2658, 2659, 2539, 2539, 2659, 2660, 2540, 2540, 2660, 2661, 2541, 2541, 2661, 2662, 2542, 2542, 2662, 2663, 2543, 2543, 2663, 2664, 2544, 2544, 2664, 2665, 2545, 2545, 2665, 2666, 2546, 2546, 2666, 2667, 2547, 2547, 2667, 2668, 2548, 2548, 2668, 2669, 2549, 2549, 2669, 2670, 2550, 2550, 2670, 2671, 2551, 2551, 2671, 2672, 2552, 2552, 2672, 2673, 2553, 2553, 2673, 2674, 2554, 2554, 2674, 2675, 2555, 2555, 2675, 2676, 2556, 2556, 2676, 2677, 2557, 2557, 2677, 2678, 2558, 2558, 2678, 2679, 2559, 2559, 2679, 2680, 2560, 2560, 2680, 2681, 2561, 2561, 2681, 2682, 2562, 2562, 2682, 2683, 2563, 2563, 2683, 2684, 2564, 2564, 2684, 2685, 2565, 2565, 2685, 2686, 2566, 2566, 2686, 2687, 2567, 2567, 2687, 2688, 2568, 2568, 2688, 2689, 2569, 2569, 2689, 2690, 2570, 2570, 2690, 2691, 2571, 2571, 2691, 2692, 2572, 2572, 2692, 2693, 2573, 2573, 2693, 2694, 2574, 2574, 2694, 2695, 2575, 2575, 2695, 2696, 2576, 2576, 2696, 2697, 2577, 2577, 2697, 2698, 2578, 2578, 2698, 2699, 2579, 2579, 2699, 2700, 2580, 2580, 2700, 2701, 2581, 2581, 2701, 2702, 2582, 2582, 2702, 2703, 2583, 2583, 2703, 2704, 2584, 2584, 2704, 2705, 2585, 2585, 2705, 2706, 2586, 2586, 2706, 2707, 2587, 2587, 2707, 2708, 2588, 2588, 2708, 2709, 2589, 2589, 2709, 2710, 2590, 2590, 2710, 2711, 2591, 2591, 2711, 2712, 2592, 2592, 2712, 2713, 2593, 2593, 2713, 2714, 2594, 2594, 2714, 2715, 2595, 2595, 2715, 2716, 2596, 2596, 2716, 2717, 2597, 2597, 2717, 2718, 2598, 2598, 2718, 2719, 2599, 2599, 2719, 2720, 2600, 2600, 2720, 2721, 2601, 2601, 2721, 2722, 2602, 2602, 2722, 2723, 2603, 2603, 2723, 2724, 2604, 2604, 2724, 2725, 2605, 2605, 2725, 2726, 2606, 2606, 2726, 2727, 2607, 2607, 2727, 2728, 2608, 2608, 2728, 2729, 2609, 2609, 2729, 2730, 2610, 2610, 2730, 2731, 2611, 2611, 2731, 2732, 2612, 2612, 2732, 2733, 2613, 2613, 2733, 2734, 2614, 2614, 2734, 2735, 2615, 2615, 2735, 2736, 2616, 2616, 2736, 2737, 2617, 2617, 2737, 2738, 2618, 2618, 2738, 2739, 2619, 2619, 2739, 2740, 2620, 2620, 2740, 2741, 2621, 2621, 2741, 2742, 2622, 2622, 2742, 2743, 2623, 2623, 2743, 2744, 2624, 2624, 2744, 2745, 2625, 2625, 2745, 2746, 2626, 2626, 2746, 2747, 2627, 2627, 2747, 2748, 2628, 2628, 2748, 2749, 2629, 2629, 2749, 2750, 2630, 2630, 2750, 2751, 2631, 2631, 2751, 2752, 2632, 2632, 2752, 2753, 2633, 2633, 2753, 2754, 2634, 2634, 2754, 2755, 2635, 2635, 2755, 2756, 2636, 2636, 2756, 2757, 2637, 2637, 2757, 2758, 2638, 2638, 2758, 2759, 2639, 2639, 2759, 2760, 2640, 2640, 2760, 2641, 2521, 2641, 2761, 2762, 2642, 2642, 2762, 2763, 2643, 2643, 2763, 2764, 2644, 2644, 2764, 2765, 2645, 2645, 2765, 2766, 2646, 2646, 2766, 2767, 2647, 2647, 2767, 2768, 2648, 2648, 2768, 2769, 2649, 2649, 2769, 2770, 2650, 2650, 2770, 2771, 2651, 2651, 2771, 2772, 2652, 2652, 2772, 2773, 2653, 2653, 2773, 2774, 2654, 2654, 2774, 2775, 2655, 2655, 2775, 2776, 2656, 2656, 2776, 2777, 2657, 2657, 2777, 2778, 2658, 2658, 2778, 2779, 2659, 2659, 2779, 2780, 2660, 2660, 2780, 2781, 2661, 2661, 2781, 2782, 2662, 2662, 2782, 2783, 2663, 2663, 2783, 2784, 2664, 2664, 2784, 2785, 2665, 2665, 2785, 2786, 2666, 2666, 2786, 2787, 2667, 2667, 2787, 2788, 2668, 2668, 2788, 2789, 2669, 2669, 2789, 2790, 2670, 2670, 2790, 2791, 2671, 2671, 2791, 2792, 2672, 2672, 2792, 2793, 2673, 2673, 2793, 2794, 2674, 2674, 2794, 2795, 2675, 2675, 2795, 2796, 2676, 2676, 2796, 2797, 2677, 2677, 2797, 2798, 2678, 2678, 2798, 2799, 2679, 2679, 2799, 2800, 2680, 2680, 2800, 2801, 2681, 2681, 2801, 2802, 2682, 2682, 2802, 2803, 2683, 2683, 2803, 2804, 2684, 2684, 2804, 2805, 2685, 2685, 2805, 2806, 2686, 2686, 2806, 2807, 2687, 2687, 2807, 2808, 2688, 2688, 2808, 2809, 2689, 2689, 2809, 2810, 2690, 2690, 2810, 2811, 2691, 2691, 2811, 2812, 2692, 2692, 2812, 2813, 2693, 2693, 2813, 2814, 2694, 2694, 2814, 2815, 2695, 2695, 2815, 2816, 2696, 2696, 2816, 2817, 2697, 2697, 2817, 2818, 2698, 2698, 2818, 2819, 2699, 2699, 2819, 2820, 2700, 2700, 2820, 2821, 2701, 2701, 2821, 2822, 2702, 2702, 2822, 2823, 2703, 2703, 2823, 2824, 2704, 2704, 2824, 2825, 2705, 2705, 2825, 2826, 2706, 2706, 2826, 2827, 2707, 2707, 2827, 2828, 2708, 2708, 2828, 2829, 2709, 2709, 2829, 2830, 2710, 2710, 2830, 2831, 2711, 2711, 2831, 2832, 2712, 2712, 2832, 2833, 2713, 2713, 2833, 2834, 2714, 2714, 2834, 2835, 2715, 2715, 2835, 2836, 2716, 2716, 2836, 2837, 2717, 2717, 2837, 2838, 2718, 2718, 2838, 2839, 2719, 2719, 2839, 2840, 2720, 2720, 2840, 2841, 2721, 2721, 2841, 2842, 2722, 2722, 2842, 2843, 2723, 2723, 2843, 2844, 2724, 2724, 2844, 2845, 2725, 2725, 2845, 2846, 2726, 2726, 2846, 2847, 2727, 2727, 2847, 2848, 2728, 2728, 2848, 2849, 2729, 2729, 2849, 2850, 2730, 2730, 2850, 2851, 2731, 2731, 2851, 2852, 2732, 2732, 2852, 2853, 2733, 2733, 2853, 2854, 2734, 2734, 2854, 2855, 2735, 2735, 2855, 2856, 2736, 2736, 2856, 2857, 2737, 2737, 2857, 2858, 2738, 2738, 2858, 2859, 2739, 2739, 2859, 2860, 2740, 2740, 2860, 2861, 2741, 2741, 2861, 2862, 2742, 2742, 2862, 2863, 2743, 2743, 2863, 2864, 2744, 2744, 2864, 2865, 2745, 2745, 2865, 2866, 2746, 2746, 2866, 2867, 2747, 2747, 2867, 2868, 2748, 2748, 2868, 2869, 2749, 2749, 2869, 2870, 2750, 2750, 2870, 2871, 2751, 2751, 2871, 2872, 2752, 2752, 2872, 2873, 2753, 2753, 2873, 2874, 2754, 2754, 2874, 2875, 2755, 2755, 2875, 2876, 2756, 2756, 2876, 2877, 2757, 2757, 2877, 2878, 2758, 2758, 2878, 2879, 2759, 2759, 2879, 2880, 2760, 2760, 2880, 2761, 2641, 2761, 2881, 2882, 2762, 2762, 2882, 2883, 2763, 2763, 2883, 2884, 2764, 2764, 2884, 2885, 2765, 2765, 2885, 2886, 2766, 2766, 2886, 2887, 2767, 2767, 2887, 2888, 2768, 2768, 2888, 2889, 2769, 2769, 2889, 2890, 2770, 2770, 2890, 2891, 2771, 2771, 2891, 2892, 2772, 2772, 2892, 2893, 2773, 2773, 2893, 2894, 2774, 2774, 2894, 2895, 2775, 2775, 2895, 2896, 2776, 2776, 2896, 2897, 2777, 2777, 2897, 2898, 2778, 2778, 2898, 2899, 2779, 2779, 2899, 2900, 2780, 2780, 2900, 2901, 2781, 2781, 2901, 2902, 2782, 2782, 2902, 2903, 2783, 2783, 2903, 2904, 2784, 2784, 2904, 2905, 2785, 2785, 2905, 2906, 2786, 2786, 2906, 2907, 2787, 2787, 2907, 2908, 2788, 2788, 2908, 2909, 2789, 2789, 2909, 2910, 2790, 2790, 2910, 2911, 2791, 2791, 2911, 2912, 2792, 2792, 2912, 2913, 2793, 2793, 2913, 2914, 2794, 2794, 2914, 2915, 2795, 2795, 2915, 2916, 2796, 2796, 2916, 2917, 2797, 2797, 2917, 2918, 2798, 2798, 2918, 2919, 2799, 2799, 2919, 2920, 2800, 2800, 2920, 2921, 2801, 2801, 2921, 2922, 2802, 2802, 2922, 2923, 2803, 2803, 2923, 2924, 2804, 2804, 2924, 2925, 2805, 2805, 2925, 2926, 2806, 2806, 2926, 2927, 2807, 2807, 2927, 2928, 2808, 2808, 2928, 2929, 2809, 2809, 2929, 2930, 2810, 2810, 2930, 2931, 2811, 2811, 2931, 2932, 2812, 2812, 2932, 2933, 2813, 2813, 2933, 2934, 2814, 2814, 2934, 2935, 2815, 2815, 2935, 2936, 2816, 2816, 2936, 2937, 2817, 2817, 2937, 2938, 2818, 2818, 2938, 2939, 2819, 2819, 2939, 2940, 2820, 2820, 2940, 2941, 2821, 2821, 2941, 2942, 2822, 2822, 2942, 2943, 2823, 2823, 2943, 2944, 2824, 2824, 2944, 2945, 2825, 2825, 2945, 2946, 2826, 2826, 2946, 2947, 2827, 2827, 2947, 2948, 2828, 2828, 2948, 2949, 2829, 2829, 2949, 2950, 2830, 2830, 2950, 2951, 2831, 2831, 2951, 2952, 2832, 2832, 2952, 2953, 2833, 2833, 2953, 2954, 2834, 2834, 2954, 2955, 2835, 2835, 2955, 2956, 2836, 2836, 2956, 2957, 2837, 2837, 2957, 2958, 2838, 2838, 2958, 2959, 2839, 2839, 2959, 2960, 2840, 2840, 2960, 2961, 2841, 2841, 2961, 2962, 2842, 2842, 2962, 2963, 2843, 2843, 2963, 2964, 2844, 2844, 2964, 2965, 2845, 2845, 2965, 2966, 2846, 2846, 2966, 2967, 2847, 2847, 2967, 2968, 2848, 2848, 2968, 2969, 2849, 2849, 2969, 2970, 2850, 2850, 2970, 2971, 2851, 2851, 2971, 2972, 2852, 2852, 2972, 2973, 2853, 2853, 2973, 2974, 2854, 2854, 2974, 2975, 2855, 2855, 2975, 2976, 2856, 2856, 2976, 2977, 2857, 2857, 2977, 2978, 2858, 2858, 2978, 2979, 2859, 2859, 2979, 2980, 2860, 2860, 2980, 2981, 2861, 2861, 2981, 2982, 2862, 2862, 2982, 2983, 2863, 2863, 2983, 2984, 2864, 2864, 2984, 2985, 2865, 2865, 2985, 2986, 2866, 2866, 2986, 2987, 2867, 2867, 2987, 2988, 2868, 2868, 2988, 2989, 2869, 2869, 2989, 2990, 2870, 2870, 2990, 2991, 2871, 2871, 2991, 2992, 2872, 2872, 2992, 2993, 2873, 2873, 2993, 2994, 2874, 2874, 2994, 2995, 2875, 2875, 2995, 2996, 2876, 2876, 2996, 2997, 2877, 2877, 2997, 2998, 2878, 2878, 2998, 2999, 2879, 2879, 2999, 3000, 2880, 2880, 3000, 2881, 2761, 2881, 3001, 3002, 2882, 2882, 3002, 3003, 2883, 2883, 3003, 3004, 2884, 2884, 3004, 3005, 2885, 2885, 3005, 3006, 2886, 2886, 3006, 3007, 2887, 2887, 3007, 3008, 2888, 2888, 3008, 3009, 2889, 2889, 3009, 3010, 2890, 2890, 3010, 3011, 2891, 2891, 3011, 3012, 2892, 2892, 3012, 3013, 2893, 2893, 3013, 3014, 2894, 2894, 3014, 3015, 2895, 2895, 3015, 3016, 2896, 2896, 3016, 3017, 2897, 2897, 3017, 3018, 2898, 2898, 3018, 3019, 2899, 2899, 3019, 3020, 2900, 2900, 3020, 3021, 2901, 2901, 3021, 3022, 2902, 2902, 3022, 3023, 2903, 2903, 3023, 3024, 2904, 2904, 3024, 3025, 2905, 2905, 3025, 3026, 2906, 2906, 3026, 3027, 2907, 2907, 3027, 3028, 2908, 2908, 3028, 3029, 2909, 2909, 3029, 3030, 2910, 2910, 3030, 3031, 2911, 2911, 3031, 3032, 2912, 2912, 3032, 3033, 2913, 2913, 3033, 3034, 2914, 2914, 3034, 3035, 2915, 2915, 3035, 3036, 2916, 2916, 3036, 3037, 2917, 2917, 3037, 3038, 2918, 2918, 3038, 3039, 2919, 2919, 3039, 3040, 2920, 2920, 3040, 3041, 2921, 2921, 3041, 3042, 2922, 2922, 3042, 3043, 2923, 2923, 3043, 3044, 2924, 2924, 3044, 3045, 2925, 2925, 3045, 3046, 2926, 2926, 3046, 3047, 2927, 2927, 3047, 3048, 2928, 2928, 3048, 3049, 2929, 2929, 3049, 3050, 2930, 2930, 3050, 3051, 2931, 2931, 3051, 3052, 2932, 2932, 3052, 3053, 2933, 2933, 3053, 3054, 2934, 2934, 3054, 3055, 2935, 2935, 3055, 3056, 2936, 2936, 3056, 3057, 2937, 2937, 3057, 3058, 2938, 2938, 3058, 3059, 2939, 2939, 3059, 3060, 2940, 2940, 3060, 3061, 2941, 2941, 3061, 3062, 2942, 2942, 3062, 3063, 2943, 2943, 3063, 3064, 2944, 2944, 3064, 3065, 2945, 2945, 3065, 3066, 2946, 2946, 3066, 3067, 2947, 2947, 3067, 3068, 2948, 2948, 3068, 3069, 2949, 2949, 3069, 3070, 2950, 2950, 3070, 3071, 2951, 2951, 3071, 3072, 2952, 2952, 3072, 3073, 2953, 2953, 3073, 3074, 2954, 2954, 3074, 3075, 2955, 2955, 3075, 3076, 2956, 2956, 3076, 3077, 2957, 2957, 3077, 3078, 2958, 2958, 3078, 3079, 2959, 2959, 3079, 3080, 2960, 2960, 3080, 3081, 2961, 2961, 3081, 3082, 2962, 2962, 3082, 3083, 2963, 2963, 3083, 3084, 2964, 2964, 3084, 3085, 2965, 2965, 3085, 3086, 2966, 2966, 3086, 3087, 2967, 2967, 3087, 3088, 2968, 2968, 3088, 3089, 2969, 2969, 3089, 3090, 2970, 2970, 3090, 3091, 2971, 2971, 3091, 3092, 2972, 2972, 3092, 3093, 2973, 2973, 3093, 3094, 2974, 2974, 3094, 3095, 2975, 2975, 3095, 3096, 2976, 2976, 3096, 3097, 2977, 2977, 3097, 3098, 2978, 2978, 3098, 3099, 2979, 2979, 3099, 3100, 2980, 2980, 3100, 3101, 2981, 2981, 3101, 3102, 2982, 2982, 3102, 3103, 2983, 2983, 3103, 3104, 2984, 2984, 3104, 3105, 2985, 2985, 3105, 3106, 2986, 2986, 3106, 3107, 2987, 2987, 3107, 3108, 2988, 2988, 3108, 3109, 2989, 2989, 3109, 3110, 2990, 2990, 3110, 3111, 2991, 2991, 3111, 3112, 2992, 2992, 3112, 3113, 2993, 2993, 3113, 3114, 2994, 2994, 3114, 3115, 2995, 2995, 3115, 3116, 2996, 2996, 3116, 3117, 2997, 2997, 3117, 3118, 2998, 2998, 3118, 3119, 2999, 2999, 3119, 3120, 3000, 3000, 3120, 3001, 2881, 3001, 3121, 3122, 3002, 3002, 3122, 3123, 3003, 3003, 3123, 3124, 3004, 3004, 3124, 3125, 3005, 3005, 3125, 3126, 3006, 3006, 3126, 3127, 3007, 3007, 3127, 3128, 3008, 3008, 3128, 3129, 3009, 3009, 3129, 3130, 3010, 3010, 3130, 3131, 3011, 3011, 3131, 3132, 3012, 3012, 3132, 3133, 3013, 3013, 3133, 3134, 3014, 3014, 3134, 3135, 3015, 3015, 3135, 3136, 3016, 3016, 3136, 3137, 3017, 3017, 3137, 3138, 3018, 3018, 3138, 3139, 3019, 3019, 3139, 3140, 3020, 3020, 3140, 3141, 3021, 3021, 3141, 3142, 3022, 3022, 3142, 3143, 3023, 3023, 3143, 3144, 3024, 3024, 3144, 3145, 3025, 3025, 3145, 3146, 3026, 3026, 3146, 3147, 3027, 3027, 3147, 3148, 3028, 3028, 3148, 3149, 3029, 3029, 3149, 3150, 3030, 3030, 3150, 3151, 3031, 3031, 3151, 3152, 3032, 3032, 3152, 3153, 3033, 3033, 3153, 3154, 3034, 3034, 3154, 3155, 3035, 3035, 3155, 3156, 3036, 3036, 3156, 3157, 3037, 3037, 3157, 3158, 3038, 3038, 3158, 3159, 3039, 3039, 3159, 3160, 3040, 3040, 3160, 3161, 3041, 3041, 3161, 3162, 3042, 3042, 3162, 3163, 3043, 3043, 3163, 3164, 3044, 3044, 3164, 3165, 3045, 3045, 3165, 3166, 3046, 3046, 3166, 3167, 3047, 3047, 3167, 3168, 3048, 3048, 3168, 3169, 3049, 3049, 3169, 3170, 3050, 3050, 3170, 3171, 3051, 3051, 3171, 3172, 3052, 3052, 3172, 3173, 3053, 3053, 3173, 3174, 3054, 3054, 3174, 3175, 3055, 3055, 3175, 3176, 3056, 3056, 3176, 3177, 3057, 3057, 3177, 3178, 3058, 3058, 3178, 3179, 3059, 3059, 3179, 3180, 3060, 3060, 3180, 3181, 3061, 3061, 3181, 3182, 3062, 3062, 3182, 3183, 3063, 3063, 3183, 3184, 3064, 3064, 3184, 3185, 3065, 3065, 3185, 3186, 3066, 3066, 3186, 3187, 3067, 3067, 3187, 3188, 3068, 3068, 3188, 3189, 3069, 3069, 3189, 3190, 3070, 3070, 3190, 3191, 3071, 3071, 3191, 3192, 3072, 3072, 3192, 3193, 3073, 3073, 3193, 3194, 3074, 3074, 3194, 3195, 3075, 3075, 3195, 3196, 3076, 3076, 3196, 3197, 3077, 3077, 3197, 3198, 3078, 3078, 3198, 3199, 3079, 3079, 3199, 3200, 3080, 3080, 3200, 3201, 3081, 3081, 3201, 3202, 3082, 3082, 3202, 3203, 3083, 3083, 3203, 3204, 3084, 3084, 3204, 3205, 3085, 3085, 3205, 3206, 3086, 3086, 3206, 3207, 3087, 3087, 3207, 3208, 3088, 3088, 3208, 3209, 3089, 3089, 3209, 3210, 3090, 3090, 3210, 3211, 3091, 3091, 3211, 3212, 3092, 3092, 3212, 3213, 3093, 3093, 3213, 3214, 3094, 3094, 3214, 3215, 3095, 3095, 3215, 3216, 3096, 3096, 3216, 3217, 3097, 3097, 3217, 3218, 3098, 3098, 3218, 3219, 3099, 3099, 3219, 3220, 3100, 3100, 3220, 3221, 3101, 3101, 3221, 3222, 3102, 3102, 3222, 3223, 3103, 3103, 3223, 3224, 3104, 3104, 3224, 3225, 3105, 3105, 3225, 3226, 3106, 3106, 3226, 3227, 3107, 3107, 3227, 3228, 3108, 3108, 3228, 3229, 3109, 3109, 3229, 3230, 3110, 3110, 3230, 3231, 3111, 3111, 3231, 3232, 3112, 3112, 3232, 3233, 3113, 3113, 3233, 3234, 3114, 3114, 3234, 3235, 3115, 3115, 3235, 3236, 3116, 3116, 3236, 3237, 3117, 3117, 3237, 3238, 3118, 3118, 3238, 3239, 3119, 3119, 3239, 3240, 3120, 3120, 3240, 3121, 3001, 3121, 3241, 3242, 3122, 3122, 3242, 3243, 3123, 3123, 3243, 3244, 3124, 3124, 3244, 3245, 3125, 3125, 3245, 3246, 3126, 3126, 3246, 3247, 3127, 3127, 3247, 3248, 3128, 3128, 3248, 3249, 3129, 3129, 3249, 3250, 3130, 3130, 3250, 3251, 3131, 3131, 3251, 3252, 3132, 3132, 3252, 3253, 3133, 3133, 3253, 3254, 3134, 3134, 3254, 3255, 3135, 3135, 3255, 3256, 3136, 3136, 3256, 3257, 3137, 3137, 3257, 3258, 3138, 3138, 3258, 3259, 3139, 3139, 3259, 3260, 3140, 3140, 3260, 3261, 3141, 3141, 3261, 3262, 3142, 3142, 3262, 3263, 3143, 3143, 3263, 3264, 3144, 3144, 3264, 3265, 3145, 3145, 3265, 3266, 3146, 3146, 3266, 3267, 3147, 3147, 3267, 3268, 3148, 3148, 3268, 3269, 3149, 3149, 3269, 3270, 3150, 3150, 3270, 3271, 3151, 3151, 3271, 3272, 3152, 3152, 3272, 3273, 3153, 3153, 3273, 3274, 3154, 3154, 3274, 3275, 3155, 3155, 3275, 3276, 3156, 3156, 3276, 3277, 3157, 3157, 3277, 3278, 3158, 3158, 3278, 3279, 3159, 3159, 3279, 3280, 3160, 3160, 3280, 3281, 3161, 3161, 3281, 3282, 3162, 3162, 3282, 3283, 3163, 3163, 3283, 3284, 3164, 3164, 3284, 3285, 3165, 3165, 3285, 3286, 3166, 3166, 3286, 3287, 3167, 3167, 3287, 3288, 3168, 3168, 3288, 3289, 3169, 3169, 3289, 3290, 3170, 3170, 3290, 3291, 3171, 3171, 3291, 3292, 3172, 3172, 3292, 3293, 3173, 3173, 3293, 3294, 3174, 3174, 3294, 3295, 3175, 3175, 3295, 3296, 3176, 3176, 3296, 3297, 3177, 3177, 3297, 3298, 3178, 3178, 3298, 3299, 3179, 3179, 3299, 3300, 3180, 3180, 3300, 3301, 3181, 3181, 3301, 3302, 3182, 3182, 3302, 3303, 3183, 3183, 3303, 3304, 3184, 3184, 3304, 3305, 3185, 3185, 3305, 3306, 3186, 3186, 3306, 3307, 3187, 3187, 3307, 3308, 3188, 3188, 3308, 3309, 3189, 3189, 3309, 3310, 3190, 3190, 3310, 3311, 3191, 3191, 3311, 3312, 3192, 3192, 3312, 3313, 3193, 3193, 3313, 3314, 3194, 3194, 3314, 3315, 3195, 3195, 3315, 3316, 3196, 3196, 3316, 3317, 3197, 3197, 3317, 3318, 3198, 3198, 3318, 3319, 3199, 3199, 3319, 3320, 3200, 3200, 3320, 3321, 3201, 3201, 3321, 3322, 3202, 3202, 3322, 3323, 3203, 3203, 3323, 3324, 3204, 3204, 3324, 3325, 3205, 3205, 3325, 3326, 3206, 3206, 3326, 3327, 3207, 3207, 3327, 3328, 3208, 3208, 3328, 3329, 3209, 3209, 3329, 3330, 3210, 3210, 3330, 3331, 3211, 3211, 3331, 3332, 3212, 3212, 3332, 3333, 3213, 3213, 3333, 3334, 3214, 3214, 3334, 3335, 3215, 3215, 3335, 3336, 3216, 3216, 3336, 3337, 3217, 3217, 3337, 3338, 3218, 3218, 3338, 3339, 3219, 3219, 3339, 3340, 3220, 3220, 3340, 3341, 3221, 3221, 3341, 3342, 3222, 3222, 3342, 3343, 3223, 3223, 3343, 3344, 3224, 3224, 3344, 3345, 3225, 3225, 3345, 3346, 3226, 3226, 3346, 3347, 3227, 3227, 3347, 3348, 3228, 3228, 3348, 3349, 3229, 3229, 3349, 3350, 3230, 3230, 3350, 3351, 3231, 3231, 3351, 3352, 3232, 3232, 3352, 3353, 3233, 3233, 3353, 3354, 3234, 3234, 3354, 3355, 3235, 3235, 3355, 3356, 3236, 3236, 3356, 3357, 3237, 3237, 3357, 3358, 3238, 3238, 3358, 3359, 3239, 3239, 3359, 3360, 3240, 3240, 3360, 3241, 3121, 3241, 3361, 3362, 3242, 3242, 3362, 3363, 3243, 3243, 3363, 3364, 3244, 3244, 3364, 3365, 3245, 3245, 3365, 3366, 3246, 3246, 3366, 3367, 3247, 3247, 3367, 3368, 3248, 3248, 3368, 3369, 3249, 3249, 3369, 3370, 3250, 3250, 3370, 3371, 3251, 3251, 3371, 3372, 3252, 3252, 3372, 3373, 3253, 3253, 3373, 3374, 3254, 3254, 3374, 3375, 3255, 3255, 3375, 3376, 3256, 3256, 3376, 3377, 3257, 3257, 3377, 3378, 3258, 3258, 3378, 3379, 3259, 3259, 3379, 3380, 3260, 3260, 3380, 3381, 3261, 3261, 3381, 3382, 3262, 3262, 3382, 3383, 3263, 3263, 3383, 3384, 3264, 3264, 3384, 3385, 3265, 3265, 3385, 3386, 3266, 3266, 3386, 3387, 3267, 3267, 3387, 3388, 3268, 3268, 3388, 3389, 3269, 3269, 3389, 3390, 3270, 3270, 3390, 3391, 3271, 3271, 3391, 3392, 3272, 3272, 3392, 3393, 3273, 3273, 3393, 3394, 3274, 3274, 3394, 3395, 3275, 3275, 3395, 3396, 3276, 3276, 3396, 3397, 3277, 3277, 3397, 3398, 3278, 3278, 3398, 3399, 3279, 3279, 3399, 3400, 3280, 3280, 3400, 3401, 3281, 3281, 3401, 3402, 3282, 3282, 3402, 3403, 3283, 3283, 3403, 3404, 3284, 3284, 3404, 3405, 3285, 3285, 3405, 3406, 3286, 3286, 3406, 3407, 3287, 3287, 3407, 3408, 3288, 3288, 3408, 3409, 3289, 3289, 3409, 3410, 3290, 3290, 3410, 3411, 3291, 3291, 3411, 3412, 3292, 3292, 3412, 3413, 3293, 3293, 3413, 3414, 3294, 3294, 3414, 3415, 3295, 3295, 3415, 3416, 3296, 3296, 3416, 3417, 3297, 3297, 3417, 3418, 3298, 3298, 3418, 3419, 3299, 3299, 3419, 3420, 3300, 3300, 3420, 3421, 3301, 3301, 3421, 3422, 3302, 3302, 3422, 3423, 3303, 3303, 3423, 3424, 3304, 3304, 3424, 3425, 3305, 3305, 3425, 3426, 3306, 3306, 3426, 3427, 3307, 3307, 3427, 3428, 3308, 3308, 3428, 3429, 3309, 3309, 3429, 3430, 3310, 3310, 3430, 3431, 3311, 3311, 3431, 3432, 3312, 3312, 3432, 3433, 3313, 3313, 3433, 3434, 3314, 3314, 3434, 3435, 3315, 3315, 3435, 3436, 3316, 3316, 3436, 3437, 3317, 3317, 3437, 3438, 3318, 3318, 3438, 3439, 3319, 3319, 3439, 3440, 3320, 3320, 3440, 3441, 3321, 3321, 3441, 3442, 3322, 3322, 3442, 3443, 3323, 3323, 3443, 3444, 3324, 3324, 3444, 3445, 3325, 3325, 3445, 3446, 3326, 3326, 3446, 3447, 3327, 3327, 3447, 3448, 3328, 3328, 3448, 3449, 3329, 3329, 3449, 3450, 3330, 3330, 3450, 3451, 3331, 3331, 3451, 3452, 3332, 3332, 3452, 3453, 3333, 3333, 3453, 3454, 3334, 3334, 3454, 3455, 3335, 3335, 3455, 3456, 3336, 3336, 3456, 3457, 3337, 3337, 3457, 3458, 3338, 3338, 3458, 3459, 3339, 3339, 3459, 3460, 3340, 3340, 3460, 3461, 3341, 3341, 3461, 3462, 3342, 3342, 3462, 3463, 3343, 3343, 3463, 3464, 3344, 3344, 3464, 3465, 3345, 3345, 3465, 3466, 3346, 3346, 3466, 3467, 3347, 3347, 3467, 3468, 3348, 3348, 3468, 3469, 3349, 3349, 3469, 3470, 3350, 3350, 3470, 3471, 3351, 3351, 3471, 3472, 3352, 3352, 3472, 3473, 3353, 3353, 3473, 3474, 3354, 3354, 3474, 3475, 3355, 3355, 3475, 3476, 3356, 3356, 3476, 3477, 3357, 3357, 3477, 3478, 3358, 3358, 3478, 3479, 3359, 3359, 3479, 3480, 3360, 3360, 3480, 3361, 3241, 3361, 3481, 3482, 3362, 3362, 3482, 3483, 3363, 3363, 3483, 3484, 3364, 3364, 3484, 3485, 3365, 3365, 3485, 3486, 3366, 3366, 3486, 3487, 3367, 3367, 3487, 3488, 3368, 3368, 3488, 3489, 3369, 3369, 3489, 3490, 3370, 3370, 3490, 3491, 3371, 3371, 3491, 3492, 3372, 3372, 3492, 3493, 3373, 3373, 3493, 3494, 3374, 3374, 3494, 3495, 3375, 3375, 3495, 3496, 3376, 3376, 3496, 3497, 3377, 3377, 3497, 3498, 3378, 3378, 3498, 3499, 3379, 3379, 3499, 3500, 3380, 3380, 3500, 3501, 3381, 3381, 3501, 3502, 3382, 3382, 3502, 3503, 3383, 3383, 3503, 3504, 3384, 3384, 3504, 3505, 3385, 3385, 3505, 3506, 3386, 3386, 3506, 3507, 3387, 3387, 3507, 3508, 3388, 3388, 3508, 3509, 3389, 3389, 3509, 3510, 3390, 3390, 3510, 3511, 3391, 3391, 3511, 3512, 3392, 3392, 3512, 3513, 3393, 3393, 3513, 3514, 3394, 3394, 3514, 3515, 3395, 3395, 3515, 3516, 3396, 3396, 3516, 3517, 3397, 3397, 3517, 3518, 3398, 3398, 3518, 3519, 3399, 3399, 3519, 3520, 3400, 3400, 3520, 3521, 3401, 3401, 3521, 3522, 3402, 3402, 3522, 3523, 3403, 3403, 3523, 3524, 3404, 3404, 3524, 3525, 3405, 3405, 3525, 3526, 3406, 3406, 3526, 3527, 3407, 3407, 3527, 3528, 3408, 3408, 3528, 3529, 3409, 3409, 3529, 3530, 3410, 3410, 3530, 3531, 3411, 3411, 3531, 3532, 3412, 3412, 3532, 3533, 3413, 3413, 3533, 3534, 3414, 3414, 3534, 3535, 3415, 3415, 3535, 3536, 3416, 3416, 3536, 3537, 3417, 3417, 3537, 3538, 3418, 3418, 3538, 3539, 3419, 3419, 3539, 3540, 3420, 3420, 3540, 3541, 3421, 3421, 3541, 3542, 3422, 3422, 3542, 3543, 3423, 3423, 3543, 3544, 3424, 3424, 3544, 3545, 3425, 3425, 3545, 3546, 3426, 3426, 3546, 3547, 3427, 3427, 3547, 3548, 3428, 3428, 3548, 3549, 3429, 3429, 3549, 3550, 3430, 3430, 3550, 3551, 3431, 3431, 3551, 3552, 3432, 3432, 3552, 3553, 3433, 3433, 3553, 3554, 3434, 3434, 3554, 3555, 3435, 3435, 3555, 3556, 3436, 3436, 3556, 3557, 3437, 3437, 3557, 3558, 3438, 3438, 3558, 3559, 3439, 3439, 3559, 3560, 3440, 3440, 3560, 3561, 3441, 3441, 3561, 3562, 3442, 3442, 3562, 3563, 3443, 3443, 3563, 3564, 3444, 3444, 3564, 3565, 3445, 3445, 3565, 3566, 3446, 3446, 3566, 3567, 3447, 3447, 3567, 3568, 3448, 3448, 3568, 3569, 3449, 3449, 3569, 3570, 3450, 3450, 3570, 3571, 3451, 3451, 3571, 3572, 3452, 3452, 3572, 3573, 3453, 3453, 3573, 3574, 3454, 3454, 3574, 3575, 3455, 3455, 3575, 3576, 3456, 3456, 3576, 3577, 3457, 3457, 3577, 3578, 3458, 3458, 3578, 3579, 3459, 3459, 3579, 3580, 3460, 3460, 3580, 3581, 3461, 3461, 3581, 3582, 3462, 3462, 3582, 3583, 3463, 3463, 3583, 3584, 3464, 3464, 3584, 3585, 3465, 3465, 3585, 3586, 3466, 3466, 3586, 3587, 3467, 3467, 3587, 3588, 3468, 3468, 3588, 3589, 3469, 3469, 3589, 3590, 3470, 3470, 3590, 3591, 3471, 3471, 3591, 3592, 3472, 3472, 3592, 3593, 3473, 3473, 3593, 3594, 3474, 3474, 3594, 3595, 3475, 3475, 3595, 3596, 3476, 3476, 3596, 3597, 3477, 3477, 3597, 3598, 3478, 3478, 3598, 3599, 3479, 3479, 3599, 3600, 3480, 3480, 3600, 3481, 3361, 3481, 3601, 3602, 3482, 3482, 3602, 3603, 3483, 3483, 3603, 3604, 3484, 3484, 3604, 3605, 3485, 3485, 3605, 3606, 3486, 3486, 3606, 3607, 3487, 3487, 3607, 3608, 3488, 3488, 3608, 3609, 3489, 3489, 3609, 3610, 3490, 3490, 3610, 3611, 3491, 3491, 3611, 3612, 3492, 3492, 3612, 3613, 3493, 3493, 3613, 3614, 3494, 3494, 3614, 3615, 3495, 3495, 3615, 3616, 3496, 3496, 3616, 3617, 3497, 3497, 3617, 3618, 3498, 3498, 3618, 3619, 3499, 3499, 3619, 3620, 3500, 3500, 3620, 3621, 3501, 3501, 3621, 3622, 3502, 3502, 3622, 3623, 3503, 3503, 3623, 3624, 3504, 3504, 3624, 3625, 3505, 3505, 3625, 3626, 3506, 3506, 3626, 3627, 3507, 3507, 3627, 3628, 3508, 3508, 3628, 3629, 3509, 3509, 3629, 3630, 3510, 3510, 3630, 3631, 3511, 3511, 3631, 3632, 3512, 3512, 3632, 3633, 3513, 3513, 3633, 3634, 3514, 3514, 3634, 3635, 3515, 3515, 3635, 3636, 3516, 3516, 3636, 3637, 3517, 3517, 3637, 3638, 3518, 3518, 3638, 3639, 3519, 3519, 3639, 3640, 3520, 3520, 3640, 3641, 3521, 3521, 3641, 3642, 3522, 3522, 3642, 3643, 3523, 3523, 3643, 3644, 3524, 3524, 3644, 3645, 3525, 3525, 3645, 3646, 3526, 3526, 3646, 3647, 3527, 3527, 3647, 3648, 3528, 3528, 3648, 3649, 3529, 3529, 3649, 3650, 3530, 3530, 3650, 3651, 3531, 3531, 3651, 3652, 3532, 3532, 3652, 3653, 3533, 3533, 3653, 3654, 3534, 3534, 3654, 3655, 3535, 3535, 3655, 3656, 3536, 3536, 3656, 3657, 3537, 3537, 3657, 3658, 3538, 3538, 3658, 3659, 3539, 3539, 3659, 3660, 3540, 3540, 3660, 3661, 3541, 3541, 3661, 3662, 3542, 3542, 3662, 3663, 3543, 3543, 3663, 3664, 3544, 3544, 3664, 3665, 3545, 3545, 3665, 3666, 3546, 3546, 3666, 3667, 3547, 3547, 3667, 3668, 3548, 3548, 3668, 3669, 3549, 3549, 3669, 3670, 3550, 3550, 3670, 3671, 3551, 3551, 3671, 3672, 3552, 3552, 3672, 3673, 3553, 3553, 3673, 3674, 3554, 3554, 3674, 3675, 3555, 3555, 3675, 3676, 3556, 3556, 3676, 3677, 3557, 3557, 3677, 3678, 3558, 3558, 3678, 3679, 3559, 3559, 3679, 3680, 3560, 3560, 3680, 3681, 3561, 3561, 3681, 3682, 3562, 3562, 3682, 3683, 3563, 3563, 3683, 3684, 3564, 3564, 3684, 3685, 3565, 3565, 3685, 3686, 3566, 3566, 3686, 3687, 3567, 3567, 3687, 3688, 3568, 3568, 3688, 3689, 3569, 3569, 3689, 3690, 3570, 3570, 3690, 3691, 3571, 3571, 3691, 3692, 3572, 3572, 3692, 3693, 3573, 3573, 3693, 3694, 3574, 3574, 3694, 3695, 3575, 3575, 3695, 3696, 3576, 3576, 3696, 3697, 3577, 3577, 3697, 3698, 3578, 3578, 3698, 3699, 3579, 3579, 3699, 3700, 3580, 3580, 3700, 3701, 3581, 3581, 3701, 3702, 3582, 3582, 3702, 3703, 3583, 3583, 3703, 3704, 3584, 3584, 3704, 3705, 3585, 3585, 3705, 3706, 3586, 3586, 3706, 3707, 3587, 3587, 3707, 3708, 3588, 3588, 3708, 3709, 3589, 3589, 3709, 3710, 3590, 3590, 3710, 3711, 3591, 3591, 3711, 3712, 3592, 3592, 3712, 3713, 3593, 3593, 3713, 3714, 3594, 3594, 3714, 3715, 3595, 3595, 3715, 3716, 3596, 3596, 3716, 3717, 3597, 3597, 3717, 3718, 3598, 3598, 3718, 3719, 3599, 3599, 3719, 3720, 3600, 3600, 3720, 3601, 3481, 3601, 3721, 3722, 3602, 3602, 3722, 3723, 3603, 3603, 3723, 3724, 3604, 3604, 3724, 3725, 3605, 3605, 3725, 3726, 3606, 3606, 3726, 3727, 3607, 3607, 3727, 3728, 3608, 3608, 3728, 3729, 3609, 3609, 3729, 3730, 3610, 3610, 3730, 3731, 3611, 3611, 3731, 3732, 3612, 3612, 3732, 3733, 3613, 3613, 3733, 3734, 3614, 3614, 3734, 3735, 3615, 3615, 3735, 3736, 3616, 3616, 3736, 3737, 3617, 3617, 3737, 3738, 3618, 3618, 3738, 3739, 3619, 3619, 3739, 3740, 3620, 3620, 3740, 3741, 3621, 3621, 3741, 3742, 3622, 3622, 3742, 3743, 3623, 3623, 3743, 3744, 3624, 3624, 3744, 3745, 3625, 3625, 3745, 3746, 3626, 3626, 3746, 3747, 3627, 3627, 3747, 3748, 3628, 3628, 3748, 3749, 3629, 3629, 3749, 3750, 3630, 3630, 3750, 3751, 3631, 3631, 3751, 3752, 3632, 3632, 3752, 3753, 3633, 3633, 3753, 3754, 3634, 3634, 3754, 3755, 3635, 3635, 3755, 3756, 3636, 3636, 3756, 3757, 3637, 3637, 3757, 3758, 3638, 3638, 3758, 3759, 3639, 3639, 3759, 3760, 3640, 3640, 3760, 3761, 3641, 3641, 3761, 3762, 3642, 3642, 3762, 3763, 3643, 3643, 3763, 3764, 3644, 3644, 3764, 3765, 3645, 3645, 3765, 3766, 3646, 3646, 3766, 3767, 3647, 3647, 3767, 3768, 3648, 3648, 3768, 3769, 3649, 3649, 3769, 3770, 3650, 3650, 3770, 3771, 3651, 3651, 3771, 3772, 3652, 3652, 3772, 3773, 3653, 3653, 3773, 3774, 3654, 3654, 3774, 3775, 3655, 3655, 3775, 3776, 3656, 3656, 3776, 3777, 3657, 3657, 3777, 3778, 3658, 3658, 3778, 3779, 3659, 3659, 3779, 3780, 3660, 3660, 3780, 3781, 3661, 3661, 3781, 3782, 3662, 3662, 3782, 3783, 3663, 3663, 3783, 3784, 3664, 3664, 3784, 3785, 3665, 3665, 3785, 3786, 3666, 3666, 3786, 3787, 3667, 3667, 3787, 3788, 3668, 3668, 3788, 3789, 3669, 3669, 3789, 3790, 3670, 3670, 3790, 3791, 3671, 3671, 3791, 3792, 3672, 3672, 3792, 3793, 3673, 3673, 3793, 3794, 3674, 3674, 3794, 3795, 3675, 3675, 3795, 3796, 3676, 3676, 3796, 3797, 3677, 3677, 3797, 3798, 3678, 3678, 3798, 3799, 3679, 3679, 3799, 3800, 3680, 3680, 3800, 3801, 3681, 3681, 3801, 3802, 3682, 3682, 3802, 3803, 3683, 3683, 3803, 3804, 3684, 3684, 3804, 3805, 3685, 3685, 3805, 3806, 3686, 3686, 3806, 3807, 3687, 3687, 3807, 3808, 3688, 3688, 3808, 3809, 3689, 3689, 3809, 3810, 3690, 3690, 3810, 3811, 3691, 3691, 3811, 3812, 3692, 3692, 3812, 3813, 3693, 3693, 3813, 3814, 3694, 3694, 3814, 3815, 3695, 3695, 3815, 3816, 3696, 3696, 3816, 3817, 3697, 3697, 3817, 3818, 3698, 3698, 3818, 3819, 3699, 3699, 3819, 3820, 3700, 3700, 3820, 3821, 3701, 3701, 3821, 3822, 3702, 3702, 3822, 3823, 3703, 3703, 3823, 3824, 3704, 3704, 3824, 3825, 3705, 3705, 3825, 3826, 3706, 3706, 3826, 3827, 3707, 3707, 3827, 3828, 3708, 3708, 3828, 3829, 3709, 3709, 3829, 3830, 3710, 3710, 3830, 3831, 3711, 3711, 3831, 3832, 3712, 3712, 3832, 3833, 3713, 3713, 3833, 3834, 3714, 3714, 3834, 3835, 3715, 3715, 3835, 3836, 3716, 3716, 3836, 3837, 3717, 3717, 3837, 3838, 3718, 3718, 3838, 3839, 3719, 3719, 3839, 3840, 3720, 3720, 3840, 3721, 3601, 3721, 3841, 3842, 3722, 3722, 3842, 3843, 3723, 3723, 3843, 3844, 3724, 3724, 3844, 3845, 3725, 3725, 3845, 3846, 3726, 3726, 3846, 3847, 3727, 3727, 3847, 3848, 3728, 3728, 3848, 3849, 3729, 3729, 3849, 3850, 3730, 3730, 3850, 3851, 3731, 3731, 3851, 3852, 3732, 3732, 3852, 3853, 3733, 3733, 3853, 3854, 3734, 3734, 3854, 3855, 3735, 3735, 3855, 3856, 3736, 3736, 3856, 3857, 3737, 3737, 3857, 3858, 3738, 3738, 3858, 3859, 3739, 3739, 3859, 3860, 3740, 3740, 3860, 3861, 3741, 3741, 3861, 3862, 3742, 3742, 3862, 3863, 3743, 3743, 3863, 3864, 3744, 3744, 3864, 3865, 3745, 3745, 3865, 3866, 3746, 3746, 3866, 3867, 3747, 3747, 3867, 3868, 3748, 3748, 3868, 3869, 3749, 3749, 3869, 3870, 3750, 3750, 3870, 3871, 3751, 3751, 3871, 3872, 3752, 3752, 3872, 3873, 3753, 3753, 3873, 3874, 3754, 3754, 3874, 3875, 3755, 3755, 3875, 3876, 3756, 3756, 3876, 3877, 3757, 3757, 3877, 3878, 3758, 3758, 3878, 3879, 3759, 3759, 3879, 3880, 3760, 3760, 3880, 3881, 3761, 3761, 3881, 3882, 3762, 3762, 3882, 3883, 3763, 3763, 3883, 3884, 3764, 3764, 3884, 3885, 3765, 3765, 3885, 3886, 3766, 3766, 3886, 3887, 3767, 3767, 3887, 3888, 3768, 3768, 3888, 3889, 3769, 3769, 3889, 3890, 3770, 3770, 3890, 3891, 3771, 3771, 3891, 3892, 3772, 3772, 3892, 3893, 3773, 3773, 3893, 3894, 3774, 3774, 3894, 3895, 3775, 3775, 3895, 3896, 3776, 3776, 3896, 3897, 3777, 3777, 3897, 3898, 3778, 3778, 3898, 3899, 3779, 3779, 3899, 3900, 3780, 3780, 3900, 3901, 3781, 3781, 3901, 3902, 3782, 3782, 3902, 3903, 3783, 3783, 3903, 3904, 3784, 3784, 3904, 3905, 3785, 3785, 3905, 3906, 3786, 3786, 3906, 3907, 3787, 3787, 3907, 3908, 3788, 3788, 3908, 3909, 3789, 3789, 3909, 3910, 3790, 3790, 3910, 3911, 3791, 3791, 3911, 3912, 3792, 3792, 3912, 3913, 3793, 3793, 3913, 3914, 3794, 3794, 3914, 3915, 3795, 3795, 3915, 3916, 3796, 3796, 3916, 3917, 3797, 3797, 3917, 3918, 3798, 3798, 3918, 3919, 3799, 3799, 3919, 3920, 3800, 3800, 3920, 3921, 3801, 3801, 3921, 3922, 3802, 3802, 3922, 3923, 3803, 3803, 3923, 3924, 3804, 3804, 3924, 3925, 3805, 3805, 3925, 3926, 3806, 3806, 3926, 3927, 3807, 3807, 3927, 3928, 3808, 3808, 3928, 3929, 3809, 3809, 3929, 3930, 3810, 3810, 3930, 3931, 3811, 3811, 3931, 3932, 3812, 3812, 3932, 3933, 3813, 3813, 3933, 3934, 3814, 3814, 3934, 3935, 3815, 3815, 3935, 3936, 3816, 3816, 3936, 3937, 3817, 3817, 3937, 3938, 3818, 3818, 3938, 3939, 3819, 3819, 3939, 3940, 3820, 3820, 3940, 3941, 3821, 3821, 3941, 3942, 3822, 3822, 3942, 3943, 3823, 3823, 3943, 3944, 3824, 3824, 3944, 3945, 3825, 3825, 3945, 3946, 3826, 3826, 3946, 3947, 3827, 3827, 3947, 3948, 3828, 3828, 3948, 3949, 3829, 3829, 3949, 3950, 3830, 3830, 3950, 3951, 3831, 3831, 3951, 3952, 3832, 3832, 3952, 3953, 3833, 3833, 3953, 3954, 3834, 3834, 3954, 3955, 3835, 3835, 3955, 3956, 3836, 3836, 3956, 3957, 3837, 3837, 3957, 3958, 3838, 3838, 3958, 3959, 3839, 3839, 3959, 3960, 3840, 3840, 3960, 3841, 3721, 3841, 3961, 3962, 3842, 3842, 3962, 3963, 3843, 3843, 3963, 3964, 3844, 3844, 3964, 3965, 3845, 3845, 3965, 3966, 3846, 3846, 3966, 3967, 3847, 3847, 3967, 3968, 3848, 3848, 3968, 3969, 3849, 3849, 3969, 3970, 3850, 3850, 3970, 3971, 3851, 3851, 3971, 3972, 3852, 3852, 3972, 3973, 3853, 3853, 3973, 3974, 3854, 3854, 3974, 3975, 3855, 3855, 3975, 3976, 3856, 3856, 3976, 3977, 3857, 3857, 3977, 3978, 3858, 3858, 3978, 3979, 3859, 3859, 3979, 3980, 3860, 3860, 3980, 3981, 3861, 3861, 3981, 3982, 3862, 3862, 3982, 3983, 3863, 3863, 3983, 3984, 3864, 3864, 3984, 3985, 3865, 3865, 3985, 3986, 3866, 3866, 3986, 3987, 3867, 3867, 3987, 3988, 3868, 3868, 3988, 3989, 3869, 3869, 3989, 3990, 3870, 3870, 3990, 3991, 3871, 3871, 3991, 3992, 3872, 3872, 3992, 3993, 3873, 3873, 3993, 3994, 3874, 3874, 3994, 3995, 3875, 3875, 3995, 3996, 3876, 3876, 3996, 3997, 3877, 3877, 3997, 3998, 3878, 3878, 3998, 3999, 3879, 3879, 3999, 4000, 3880, 3880, 4000, 4001, 3881, 3881, 4001, 4002, 3882, 3882, 4002, 4003, 3883, 3883, 4003, 4004, 3884, 3884, 4004, 4005, 3885, 3885, 4005, 4006, 3886, 3886, 4006, 4007, 3887, 3887, 4007, 4008, 3888, 3888, 4008, 4009, 3889, 3889, 4009, 4010, 3890, 3890, 4010, 4011, 3891, 3891, 4011, 4012, 3892, 3892, 4012, 4013, 3893, 3893, 4013, 4014, 3894, 3894, 4014, 4015, 3895, 3895, 4015, 4016, 3896, 3896, 4016, 4017, 3897, 3897, 4017, 4018, 3898, 3898, 4018, 4019, 3899, 3899, 4019, 4020, 3900, 3900, 4020, 4021, 3901, 3901, 4021, 4022, 3902, 3902, 4022, 4023, 3903, 3903, 4023, 4024, 3904, 3904, 4024, 4025, 3905, 3905, 4025, 4026, 3906, 3906, 4026, 4027, 3907, 3907, 4027, 4028, 3908, 3908, 4028, 4029, 3909, 3909, 4029, 4030, 3910, 3910, 4030, 4031, 3911, 3911, 4031, 4032, 3912, 3912, 4032, 4033, 3913, 3913, 4033, 4034, 3914, 3914, 4034, 4035, 3915, 3915, 4035, 4036, 3916, 3916, 4036, 4037, 3917, 3917, 4037, 4038, 3918, 3918, 4038, 4039, 3919, 3919, 4039, 4040, 3920, 3920, 4040, 4041, 3921, 3921, 4041, 4042, 3922, 3922, 4042, 4043, 3923, 3923, 4043, 4044, 3924, 3924, 4044, 4045, 3925, 3925, 4045, 4046, 3926, 3926, 4046, 4047, 3927, 3927, 4047, 4048, 3928, 3928, 4048, 4049, 3929, 3929, 4049, 4050, 3930, 3930, 4050, 4051, 3931, 3931, 4051, 4052, 3932, 3932, 4052, 4053, 3933, 3933, 4053, 4054, 3934, 3934, 4054, 4055, 3935, 3935, 4055, 4056, 3936, 3936, 4056, 4057, 3937, 3937, 4057, 4058, 3938, 3938, 4058, 4059, 3939, 3939, 4059, 4060, 3940, 3940, 4060, 4061, 3941, 3941, 4061, 4062, 3942, 3942, 4062, 4063, 3943, 3943, 4063, 4064, 3944, 3944, 4064, 4065, 3945, 3945, 4065, 4066, 3946, 3946, 4066, 4067, 3947, 3947, 4067, 4068, 3948, 3948, 4068, 4069, 3949, 3949, 4069, 4070, 3950, 3950, 4070, 4071, 3951, 3951, 4071, 4072, 3952, 3952, 4072, 4073, 3953, 3953, 4073, 4074, 3954, 3954, 4074, 4075, 3955, 3955, 4075, 4076, 3956, 3956, 4076, 4077, 3957, 3957, 4077, 4078, 3958, 3958, 4078, 4079, 3959, 3959, 4079, 4080, 3960, 3960, 4080, 3961, 3841, 3961, 4081, 4082, 3962, 3962, 4082, 4083, 3963, 3963, 4083, 4084, 3964, 3964, 4084, 4085, 3965, 3965, 4085, 4086, 3966, 3966, 4086, 4087, 3967, 3967, 4087, 4088, 3968, 3968, 4088, 4089, 3969, 3969, 4089, 4090, 3970, 3970, 4090, 4091, 3971, 3971, 4091, 4092, 3972, 3972, 4092, 4093, 3973, 3973, 4093, 4094, 3974, 3974, 4094, 4095, 3975, 3975, 4095, 4096, 3976, 3976, 4096, 4097, 3977, 3977, 4097, 4098, 3978, 3978, 4098, 4099, 3979, 3979, 4099, 4100, 3980, 3980, 4100, 4101, 3981, 3981, 4101, 4102, 3982, 3982, 4102, 4103, 3983, 3983, 4103, 4104, 3984, 3984, 4104, 4105, 3985, 3985, 4105, 4106, 3986, 3986, 4106, 4107, 3987, 3987, 4107, 4108, 3988, 3988, 4108, 4109, 3989, 3989, 4109, 4110, 3990, 3990, 4110, 4111, 3991, 3991, 4111, 4112, 3992, 3992, 4112, 4113, 3993, 3993, 4113, 4114, 3994, 3994, 4114, 4115, 3995, 3995, 4115, 4116, 3996, 3996, 4116, 4117, 3997, 3997, 4117, 4118, 3998, 3998, 4118, 4119, 3999, 3999, 4119, 4120, 4000, 4000, 4120, 4121, 4001, 4001, 4121, 4122, 4002, 4002, 4122, 4123, 4003, 4003, 4123, 4124, 4004, 4004, 4124, 4125, 4005, 4005, 4125, 4126, 4006, 4006, 4126, 4127, 4007, 4007, 4127, 4128, 4008, 4008, 4128, 4129, 4009, 4009, 4129, 4130, 4010, 4010, 4130, 4131, 4011, 4011, 4131, 4132, 4012, 4012, 4132, 4133, 4013, 4013, 4133, 4134, 4014, 4014, 4134, 4135, 4015, 4015, 4135, 4136, 4016, 4016, 4136, 4137, 4017, 4017, 4137, 4138, 4018, 4018, 4138, 4139, 4019, 4019, 4139, 4140, 4020, 4020, 4140, 4141, 4021, 4021, 4141, 4142, 4022, 4022, 4142, 4143, 4023, 4023, 4143, 4144, 4024, 4024, 4144, 4145, 4025, 4025, 4145, 4146, 4026, 4026, 4146, 4147, 4027, 4027, 4147, 4148, 4028, 4028, 4148, 4149, 4029, 4029, 4149, 4150, 4030, 4030, 4150, 4151, 4031, 4031, 4151, 4152, 4032, 4032, 4152, 4153, 4033, 4033, 4153, 4154, 4034, 4034, 4154, 4155, 4035, 4035, 4155, 4156, 4036, 4036, 4156, 4157, 4037, 4037, 4157, 4158, 4038, 4038, 4158, 4159, 4039, 4039, 4159, 4160, 4040, 4040, 4160, 4161, 4041, 4041, 4161, 4162, 4042, 4042, 4162, 4163, 4043, 4043, 4163, 4164, 4044, 4044, 4164, 4165, 4045, 4045, 4165, 4166, 4046, 4046, 4166, 4167, 4047, 4047, 4167, 4168, 4048, 4048, 4168, 4169, 4049, 4049, 4169, 4170, 4050, 4050, 4170, 4171, 4051, 4051, 4171, 4172, 4052, 4052, 4172, 4173, 4053, 4053, 4173, 4174, 4054, 4054, 4174, 4175, 4055, 4055, 4175, 4176, 4056, 4056, 4176, 4177, 4057, 4057, 4177, 4178, 4058, 4058, 4178, 4179, 4059, 4059, 4179, 4180, 4060, 4060, 4180, 4181, 4061, 4061, 4181, 4182, 4062, 4062, 4182, 4183, 4063, 4063, 4183, 4184, 4064, 4064, 4184, 4185, 4065, 4065, 4185, 4186, 4066, 4066, 4186, 4187, 4067, 4067, 4187, 4188, 4068, 4068, 4188, 4189, 4069, 4069, 4189, 4190, 4070, 4070, 4190, 4191, 4071, 4071, 4191, 4192, 4072, 4072, 4192, 4193, 4073, 4073, 4193, 4194, 4074, 4074, 4194, 4195, 4075, 4075, 4195, 4196, 4076, 4076, 4196, 4197, 4077, 4077, 4197, 4198, 4078, 4078, 4198, 4199, 4079, 4079, 4199, 4200, 4080, 4080, 4200, 4081, 3961, 4081, 4201, 4202, 4082, 4082, 4202, 4203, 4083, 4083, 4203, 4204, 4084, 4084, 4204, 4205, 4085, 4085, 4205, 4206, 4086, 4086, 4206, 4207, 4087, 4087, 4207, 4208, 4088, 4088, 4208, 4209, 4089, 4089, 4209, 4210, 4090, 4090, 4210, 4211, 4091, 4091, 4211, 4212, 4092, 4092, 4212, 4213, 4093, 4093, 4213, 4214, 4094, 4094, 4214, 4215, 4095, 4095, 4215, 4216, 4096, 4096, 4216, 4217, 4097, 4097, 4217, 4218, 4098, 4098, 4218, 4219, 4099, 4099, 4219, 4220, 4100, 4100, 4220, 4221, 4101, 4101, 4221, 4222, 4102, 4102, 4222, 4223, 4103, 4103, 4223, 4224, 4104, 4104, 4224, 4225, 4105, 4105, 4225, 4226, 4106, 4106, 4226, 4227, 4107, 4107, 4227, 4228, 4108, 4108, 4228, 4229, 4109, 4109, 4229, 4230, 4110, 4110, 4230, 4231, 4111, 4111, 4231, 4232, 4112, 4112, 4232, 4233, 4113, 4113, 4233, 4234, 4114, 4114, 4234, 4235, 4115, 4115, 4235, 4236, 4116, 4116, 4236, 4237, 4117, 4117, 4237, 4238, 4118, 4118, 4238, 4239, 4119, 4119, 4239, 4240, 4120, 4120, 4240, 4241, 4121, 4121, 4241, 4242, 4122, 4122, 4242, 4243, 4123, 4123, 4243, 4244, 4124, 4124, 4244, 4245, 4125, 4125, 4245, 4246, 4126, 4126, 4246, 4247, 4127, 4127, 4247, 4248, 4128, 4128, 4248, 4249, 4129, 4129, 4249, 4250, 4130, 4130, 4250, 4251, 4131, 4131, 4251, 4252, 4132, 4132, 4252, 4253, 4133, 4133, 4253, 4254, 4134, 4134, 4254, 4255, 4135, 4135, 4255, 4256, 4136, 4136, 4256, 4257, 4137, 4137, 4257, 4258, 4138, 4138, 4258, 4259, 4139, 4139, 4259, 4260, 4140, 4140, 4260, 4261, 4141, 4141, 4261, 4262, 4142, 4142, 4262, 4263, 4143, 4143, 4263, 4264, 4144, 4144, 4264, 4265, 4145, 4145, 4265, 4266, 4146, 4146, 4266, 4267, 4147, 4147, 4267, 4268, 4148, 4148, 4268, 4269, 4149, 4149, 4269, 4270, 4150, 4150, 4270, 4271, 4151, 4151, 4271, 4272, 4152, 4152, 4272, 4273, 4153, 4153, 4273, 4274, 4154, 4154, 4274, 4275, 4155, 4155, 4275, 4276, 4156, 4156, 4276, 4277, 4157, 4157, 4277, 4278, 4158, 4158, 4278, 4279, 4159, 4159, 4279, 4280, 4160, 4160, 4280, 4281, 4161, 4161, 4281, 4282, 4162, 4162, 4282, 4283, 4163, 4163, 4283, 4284, 4164, 4164, 4284, 4285, 4165, 4165, 4285, 4286, 4166, 4166, 4286, 4287, 4167, 4167, 4287, 4288, 4168, 4168, 4288, 4289, 4169, 4169, 4289, 4290, 4170, 4170, 4290, 4291, 4171, 4171, 4291, 4292, 4172, 4172, 4292, 4293, 4173, 4173, 4293, 4294, 4174, 4174, 4294, 4295, 4175, 4175, 4295, 4296, 4176, 4176, 4296, 4297, 4177, 4177, 4297, 4298, 4178, 4178, 4298, 4299, 4179, 4179, 4299, 4300, 4180, 4180, 4300, 4301, 4181, 4181, 4301, 4302, 4182, 4182, 4302, 4303, 4183, 4183, 4303, 4304, 4184, 4184, 4304, 4305, 4185, 4185, 4305, 4306, 4186, 4186, 4306, 4307, 4187, 4187, 4307, 4308, 4188, 4188, 4308, 4309, 4189, 4189, 4309, 4310, 4190, 4190, 4310, 4311, 4191, 4191, 4311, 4312, 4192, 4192, 4312, 4313, 4193, 4193, 4313, 4314, 4194, 4194, 4314, 4315, 4195, 4195, 4315, 4316, 4196, 4196, 4316, 4317, 4197, 4197, 4317, 4318, 4198, 4198, 4318, 4319, 4199, 4199, 4319, 4320, 4200, 4200, 4320, 4201, 4081, 4201, 4321, 4322, 4202, 4202, 4322, 4323, 4203, 4203, 4323, 4324, 4204, 4204, 4324, 4325, 4205, 4205, 4325, 4326, 4206, 4206, 4326, 4327, 4207, 4207, 4327, 4328, 4208, 4208, 4328, 4329, 4209, 4209, 4329, 4330, 4210, 4210, 4330, 4331, 4211, 4211, 4331, 4332, 4212, 4212, 4332, 4333, 4213, 4213, 4333, 4334, 4214, 4214, 4334, 4335, 4215, 4215, 4335, 4336, 4216, 4216, 4336, 4337, 4217, 4217, 4337, 4338, 4218, 4218, 4338, 4339, 4219, 4219, 4339, 4340, 4220, 4220, 4340, 4341, 4221, 4221, 4341, 4342, 4222, 4222, 4342, 4343, 4223, 4223, 4343, 4344, 4224, 4224, 4344, 4345, 4225, 4225, 4345, 4346, 4226, 4226, 4346, 4347, 4227, 4227, 4347, 4348, 4228, 4228, 4348, 4349, 4229, 4229, 4349, 4350, 4230, 4230, 4350, 4351, 4231, 4231, 4351, 4352, 4232, 4232, 4352, 4353, 4233, 4233, 4353, 4354, 4234, 4234, 4354, 4355, 4235, 4235, 4355, 4356, 4236, 4236, 4356, 4357, 4237, 4237, 4357, 4358, 4238, 4238, 4358, 4359, 4239, 4239, 4359, 4360, 4240, 4240, 4360, 4361, 4241, 4241, 4361, 4362, 4242, 4242, 4362, 4363, 4243, 4243, 4363, 4364, 4244, 4244, 4364, 4365, 4245, 4245, 4365, 4366, 4246, 4246, 4366, 4367, 4247, 4247, 4367, 4368, 4248, 4248, 4368, 4369, 4249, 4249, 4369, 4370, 4250, 4250, 4370, 4371, 4251, 4251, 4371, 4372, 4252, 4252, 4372, 4373, 4253, 4253, 4373, 4374, 4254, 4254, 4374, 4375, 4255, 4255, 4375, 4376, 4256, 4256, 4376, 4377, 4257, 4257, 4377, 4378, 4258, 4258, 4378, 4379, 4259, 4259, 4379, 4380, 4260, 4260, 4380, 4381, 4261, 4261, 4381, 4382, 4262, 4262, 4382, 4383, 4263, 4263, 4383, 4384, 4264, 4264, 4384, 4385, 4265, 4265, 4385, 4386, 4266, 4266, 4386, 4387, 4267, 4267, 4387, 4388, 4268, 4268, 4388, 4389, 4269, 4269, 4389, 4390, 4270, 4270, 4390, 4391, 4271, 4271, 4391, 4392, 4272, 4272, 4392, 4393, 4273, 4273, 4393, 4394, 4274, 4274, 4394, 4395, 4275, 4275, 4395, 4396, 4276, 4276, 4396, 4397, 4277, 4277, 4397, 4398, 4278, 4278, 4398, 4399, 4279, 4279, 4399, 4400, 4280, 4280, 4400, 4401, 4281, 4281, 4401, 4402, 4282, 4282, 4402, 4403, 4283, 4283, 4403, 4404, 4284, 4284, 4404, 4405, 4285, 4285, 4405, 4406, 4286, 4286, 4406, 4407, 4287, 4287, 4407, 4408, 4288, 4288, 4408, 4409, 4289, 4289, 4409, 4410, 4290, 4290, 4410, 4411, 4291, 4291, 4411, 4412, 4292, 4292, 4412, 4413, 4293, 4293, 4413, 4414, 4294, 4294, 4414, 4415, 4295, 4295, 4415, 4416, 4296, 4296, 4416, 4417, 4297, 4297, 4417, 4418, 4298, 4298, 4418, 4419, 4299, 4299, 4419, 4420, 4300, 4300, 4420, 4421, 4301, 4301, 4421, 4422, 4302, 4302, 4422, 4423, 4303, 4303, 4423, 4424, 4304, 4304, 4424, 4425, 4305, 4305, 4425, 4426, 4306, 4306, 4426, 4427, 4307, 4307, 4427, 4428, 4308, 4308, 4428, 4429, 4309, 4309, 4429, 4430, 4310, 4310, 4430, 4431, 4311, 4311, 4431, 4432, 4312, 4312, 4432, 4433, 4313, 4313, 4433, 4434, 4314, 4314, 4434, 4435, 4315, 4315, 4435, 4436, 4316, 4316, 4436, 4437, 4317, 4317, 4437, 4438, 4318, 4318, 4438, 4439, 4319, 4319, 4439, 4440, 4320, 4320, 4440, 4321, 4201, 4321, 4441, 4442, 4322, 4322, 4442, 4443, 4323, 4323, 4443, 4444, 4324, 4324, 4444, 4445, 4325, 4325, 4445, 4446, 4326, 4326, 4446, 4447, 4327, 4327, 4447, 4448, 4328, 4328, 4448, 4449, 4329, 4329, 4449, 4450, 4330, 4330, 4450, 4451, 4331, 4331, 4451, 4452, 4332, 4332, 4452, 4453, 4333, 4333, 4453, 4454, 4334, 4334, 4454, 4455, 4335, 4335, 4455, 4456, 4336, 4336, 4456, 4457, 4337, 4337, 4457, 4458, 4338, 4338, 4458, 4459, 4339, 4339, 4459, 4460, 4340, 4340, 4460, 4461, 4341, 4341, 4461, 4462, 4342, 4342, 4462, 4463, 4343, 4343, 4463, 4464, 4344, 4344, 4464, 4465, 4345, 4345, 4465, 4466, 4346, 4346, 4466, 4467, 4347, 4347, 4467, 4468, 4348, 4348, 4468, 4469, 4349, 4349, 4469, 4470, 4350, 4350, 4470, 4471, 4351, 4351, 4471, 4472, 4352, 4352, 4472, 4473, 4353, 4353, 4473, 4474, 4354, 4354, 4474, 4475, 4355, 4355, 4475, 4476, 4356, 4356, 4476, 4477, 4357, 4357, 4477, 4478, 4358, 4358, 4478, 4479, 4359, 4359, 4479, 4480, 4360, 4360, 4480, 4481, 4361, 4361, 4481, 4482, 4362, 4362, 4482, 4483, 4363, 4363, 4483, 4484, 4364, 4364, 4484, 4485, 4365, 4365, 4485, 4486, 4366, 4366, 4486, 4487, 4367, 4367, 4487, 4488, 4368, 4368, 4488, 4489, 4369, 4369, 4489, 4490, 4370, 4370, 4490, 4491, 4371, 4371, 4491, 4492, 4372, 4372, 4492, 4493, 4373, 4373, 4493, 4494, 4374, 4374, 4494, 4495, 4375, 4375, 4495, 4496, 4376, 4376, 4496, 4497, 4377, 4377, 4497, 4498, 4378, 4378, 4498, 4499, 4379, 4379, 4499, 4500, 4380, 4380, 4500, 4501, 4381, 4381, 4501, 4502, 4382, 4382, 4502, 4503, 4383, 4383, 4503, 4504, 4384, 4384, 4504, 4505, 4385, 4385, 4505, 4506, 4386, 4386, 4506, 4507, 4387, 4387, 4507, 4508, 4388, 4388, 4508, 4509, 4389, 4389, 4509, 4510, 4390, 4390, 4510, 4511, 4391, 4391, 4511, 4512, 4392, 4392, 4512, 4513, 4393, 4393, 4513, 4514, 4394, 4394, 4514, 4515, 4395, 4395, 4515, 4516, 4396, 4396, 4516, 4517, 4397, 4397, 4517, 4518, 4398, 4398, 4518, 4519, 4399, 4399, 4519, 4520, 4400, 4400, 4520, 4521, 4401, 4401, 4521, 4522, 4402, 4402, 4522, 4523, 4403, 4403, 4523, 4524, 4404, 4404, 4524, 4525, 4405, 4405, 4525, 4526, 4406, 4406, 4526, 4527, 4407, 4407, 4527, 4528, 4408, 4408, 4528, 4529, 4409, 4409, 4529, 4530, 4410, 4410, 4530, 4531, 4411, 4411, 4531, 4532, 4412, 4412, 4532, 4533, 4413, 4413, 4533, 4534, 4414, 4414, 4534, 4535, 4415, 4415, 4535, 4536, 4416, 4416, 4536, 4537, 4417, 4417, 4537, 4538, 4418, 4418, 4538, 4539, 4419, 4419, 4539, 4540, 4420, 4420, 4540, 4541, 4421, 4421, 4541, 4542, 4422, 4422, 4542, 4543, 4423, 4423, 4543, 4544, 4424, 4424, 4544, 4545, 4425, 4425, 4545, 4546, 4426, 4426, 4546, 4547, 4427, 4427, 4547, 4548, 4428, 4428, 4548, 4549, 4429, 4429, 4549, 4550, 4430, 4430, 4550, 4551, 4431, 4431, 4551, 4552, 4432, 4432, 4552, 4553, 4433, 4433, 4553, 4554, 4434, 4434, 4554, 4555, 4435, 4435, 4555, 4556, 4436, 4436, 4556, 4557, 4437, 4437, 4557, 4558, 4438, 4438, 4558, 4559, 4439, 4439, 4559, 4560, 4440, 4440, 4560, 4441, 4321, 4441, 4561, 4562, 4442, 4442, 4562, 4563, 4443, 4443, 4563, 4564, 4444, 4444, 4564, 4565, 4445, 4445, 4565, 4566, 4446, 4446, 4566, 4567, 4447, 4447, 4567, 4568, 4448, 4448, 4568, 4569, 4449, 4449, 4569, 4570, 4450, 4450, 4570, 4571, 4451, 4451, 4571, 4572, 4452, 4452, 4572, 4573, 4453, 4453, 4573, 4574, 4454, 4454, 4574, 4575, 4455, 4455, 4575, 4576, 4456, 4456, 4576, 4577, 4457, 4457, 4577, 4578, 4458, 4458, 4578, 4579, 4459, 4459, 4579, 4580, 4460, 4460, 4580, 4581, 4461, 4461, 4581, 4582, 4462, 4462, 4582, 4583, 4463, 4463, 4583, 4584, 4464, 4464, 4584, 4585, 4465, 4465, 4585, 4586, 4466, 4466, 4586, 4587, 4467, 4467, 4587, 4588, 4468, 4468, 4588, 4589, 4469, 4469, 4589, 4590, 4470, 4470, 4590, 4591, 4471, 4471, 4591, 4592, 4472, 4472, 4592, 4593, 4473, 4473, 4593, 4594, 4474, 4474, 4594, 4595, 4475, 4475, 4595, 4596, 4476, 4476, 4596, 4597, 4477, 4477, 4597, 4598, 4478, 4478, 4598, 4599, 4479, 4479, 4599, 4600, 4480, 4480, 4600, 4601, 4481, 4481, 4601, 4602, 4482, 4482, 4602, 4603, 4483, 4483, 4603, 4604, 4484, 4484, 4604, 4605, 4485, 4485, 4605, 4606, 4486, 4486, 4606, 4607, 4487, 4487, 4607, 4608, 4488, 4488, 4608, 4609, 4489, 4489, 4609, 4610, 4490, 4490, 4610, 4611, 4491, 4491, 4611, 4612, 4492, 4492, 4612, 4613, 4493, 4493, 4613, 4614, 4494, 4494, 4614, 4615, 4495, 4495, 4615, 4616, 4496, 4496, 4616, 4617, 4497, 4497, 4617, 4618, 4498, 4498, 4618, 4619, 4499, 4499, 4619, 4620, 4500, 4500, 4620, 4621, 4501, 4501, 4621, 4622, 4502, 4502, 4622, 4623, 4503, 4503, 4623, 4624, 4504, 4504, 4624, 4625, 4505, 4505, 4625, 4626, 4506, 4506, 4626, 4627, 4507, 4507, 4627, 4628, 4508, 4508, 4628, 4629, 4509, 4509, 4629, 4630, 4510, 4510, 4630, 4631, 4511, 4511, 4631, 4632, 4512, 4512, 4632, 4633, 4513, 4513, 4633, 4634, 4514, 4514, 4634, 4635, 4515, 4515, 4635, 4636, 4516, 4516, 4636, 4637, 4517, 4517, 4637, 4638, 4518, 4518, 4638, 4639, 4519, 4519, 4639, 4640, 4520, 4520, 4640, 4641, 4521, 4521, 4641, 4642, 4522, 4522, 4642, 4643, 4523, 4523, 4643, 4644, 4524, 4524, 4644, 4645, 4525, 4525, 4645, 4646, 4526, 4526, 4646, 4647, 4527, 4527, 4647, 4648, 4528, 4528, 4648, 4649, 4529, 4529, 4649, 4650, 4530, 4530, 4650, 4651, 4531, 4531, 4651, 4652, 4532, 4532, 4652, 4653, 4533, 4533, 4653, 4654, 4534, 4534, 4654, 4655, 4535, 4535, 4655, 4656, 4536, 4536, 4656, 4657, 4537, 4537, 4657, 4658, 4538, 4538, 4658, 4659, 4539, 4539, 4659, 4660, 4540, 4540, 4660, 4661, 4541, 4541, 4661, 4662, 4542, 4542, 4662, 4663, 4543, 4543, 4663, 4664, 4544, 4544, 4664, 4665, 4545, 4545, 4665, 4666, 4546, 4546, 4666, 4667, 4547, 4547, 4667, 4668, 4548, 4548, 4668, 4669, 4549, 4549, 4669, 4670, 4550, 4550, 4670, 4671, 4551, 4551, 4671, 4672, 4552, 4552, 4672, 4673, 4553, 4553, 4673, 4674, 4554, 4554, 4674, 4675, 4555, 4555, 4675, 4676, 4556, 4556, 4676, 4677, 4557, 4557, 4677, 4678, 4558, 4558, 4678, 4679, 4559, 4559, 4679, 4680, 4560, 4560, 4680, 4561, 4441, 4561, 4681, 4682, 4562, 4562, 4682, 4683, 4563, 4563, 4683, 4684, 4564, 4564, 4684, 4685, 4565, 4565, 4685, 4686, 4566, 4566, 4686, 4687, 4567, 4567, 4687, 4688, 4568, 4568, 4688, 4689, 4569, 4569, 4689, 4690, 4570, 4570, 4690, 4691, 4571, 4571, 4691, 4692, 4572, 4572, 4692, 4693, 4573, 4573, 4693, 4694, 4574, 4574, 4694, 4695, 4575, 4575, 4695, 4696, 4576, 4576, 4696, 4697, 4577, 4577, 4697, 4698, 4578, 4578, 4698, 4699, 4579, 4579, 4699, 4700, 4580, 4580, 4700, 4701, 4581, 4581, 4701, 4702, 4582, 4582, 4702, 4703, 4583, 4583, 4703, 4704, 4584, 4584, 4704, 4705, 4585, 4585, 4705, 4706, 4586, 4586, 4706, 4707, 4587, 4587, 4707, 4708, 4588, 4588, 4708, 4709, 4589, 4589, 4709, 4710, 4590, 4590, 4710, 4711, 4591, 4591, 4711, 4712, 4592, 4592, 4712, 4713, 4593, 4593, 4713, 4714, 4594, 4594, 4714, 4715, 4595, 4595, 4715, 4716, 4596, 4596, 4716, 4717, 4597, 4597, 4717, 4718, 4598, 4598, 4718, 4719, 4599, 4599, 4719, 4720, 4600, 4600, 4720, 4721, 4601, 4601, 4721, 4722, 4602, 4602, 4722, 4723, 4603, 4603, 4723, 4724, 4604, 4604, 4724, 4725, 4605, 4605, 4725, 4726, 4606, 4606, 4726, 4727, 4607, 4607, 4727, 4728, 4608, 4608, 4728, 4729, 4609, 4609, 4729, 4730, 4610, 4610, 4730, 4731, 4611, 4611, 4731, 4732, 4612, 4612, 4732, 4733, 4613, 4613, 4733, 4734, 4614, 4614, 4734, 4735, 4615, 4615, 4735, 4736, 4616, 4616, 4736, 4737, 4617, 4617, 4737, 4738, 4618, 4618, 4738, 4739, 4619, 4619, 4739, 4740, 4620, 4620, 4740, 4741, 4621, 4621, 4741, 4742, 4622, 4622, 4742, 4743, 4623, 4623, 4743, 4744, 4624, 4624, 4744, 4745, 4625, 4625, 4745, 4746, 4626, 4626, 4746, 4747, 4627, 4627, 4747, 4748, 4628, 4628, 4748, 4749, 4629, 4629, 4749, 4750, 4630, 4630, 4750, 4751, 4631, 4631, 4751, 4752, 4632, 4632, 4752, 4753, 4633, 4633, 4753, 4754, 4634, 4634, 4754, 4755, 4635, 4635, 4755, 4756, 4636, 4636, 4756, 4757, 4637, 4637, 4757, 4758, 4638, 4638, 4758, 4759, 4639, 4639, 4759, 4760, 4640, 4640, 4760, 4761, 4641, 4641, 4761, 4762, 4642, 4642, 4762, 4763, 4643, 4643, 4763, 4764, 4644, 4644, 4764, 4765, 4645, 4645, 4765, 4766, 4646, 4646, 4766, 4767, 4647, 4647, 4767, 4768, 4648, 4648, 4768, 4769, 4649, 4649, 4769, 4770, 4650, 4650, 4770, 4771, 4651, 4651, 4771, 4772, 4652, 4652, 4772, 4773, 4653, 4653, 4773, 4774, 4654, 4654, 4774, 4775, 4655, 4655, 4775, 4776, 4656, 4656, 4776, 4777, 4657, 4657, 4777, 4778, 4658, 4658, 4778, 4779, 4659, 4659, 4779, 4780, 4660, 4660, 4780, 4781, 4661, 4661, 4781, 4782, 4662, 4662, 4782, 4783, 4663, 4663, 4783, 4784, 4664, 4664, 4784, 4785, 4665, 4665, 4785, 4786, 4666, 4666, 4786, 4787, 4667, 4667, 4787, 4788, 4668, 4668, 4788, 4789, 4669, 4669, 4789, 4790, 4670, 4670, 4790, 4791, 4671, 4671, 4791, 4792, 4672, 4672, 4792, 4793, 4673, 4673, 4793, 4794, 4674, 4674, 4794, 4795, 4675, 4675, 4795, 4796, 4676, 4676, 4796, 4797, 4677, 4677, 4797, 4798, 4678, 4678, 4798, 4799, 4679, 4679, 4799, 4800, 4680, 4680, 4800, 4681, 4561, 4681, 4801, 4802, 4682, 4682, 4802, 4803, 4683, 4683, 4803, 4804, 4684, 4684, 4804, 4805, 4685, 4685, 4805, 4806, 4686, 4686, 4806, 4807, 4687, 4687, 4807, 4808, 4688, 4688, 4808, 4809, 4689, 4689, 4809, 4810, 4690, 4690, 4810, 4811, 4691, 4691, 4811, 4812, 4692, 4692, 4812, 4813, 4693, 4693, 4813, 4814, 4694, 4694, 4814, 4815, 4695, 4695, 4815, 4816, 4696, 4696, 4816, 4817, 4697, 4697, 4817, 4818, 4698, 4698, 4818, 4819, 4699, 4699, 4819, 4820, 4700, 4700, 4820, 4821, 4701, 4701, 4821, 4822, 4702, 4702, 4822, 4823, 4703, 4703, 4823, 4824, 4704, 4704, 4824, 4825, 4705, 4705, 4825, 4826, 4706, 4706, 4826, 4827, 4707, 4707, 4827, 4828, 4708, 4708, 4828, 4829, 4709, 4709, 4829, 4830, 4710, 4710, 4830, 4831, 4711, 4711, 4831, 4832, 4712, 4712, 4832, 4833, 4713, 4713, 4833, 4834, 4714, 4714, 4834, 4835, 4715, 4715, 4835, 4836, 4716, 4716, 4836, 4837, 4717, 4717, 4837, 4838, 4718, 4718, 4838, 4839, 4719, 4719, 4839, 4840, 4720, 4720, 4840, 4841, 4721, 4721, 4841, 4842, 4722, 4722, 4842, 4843, 4723, 4723, 4843, 4844, 4724, 4724, 4844, 4845, 4725, 4725, 4845, 4846, 4726, 4726, 4846, 4847, 4727, 4727, 4847, 4848, 4728, 4728, 4848, 4849, 4729, 4729, 4849, 4850, 4730, 4730, 4850, 4851, 4731, 4731, 4851, 4852, 4732, 4732, 4852, 4853, 4733, 4733, 4853, 4854, 4734, 4734, 4854, 4855, 4735, 4735, 4855, 4856, 4736, 4736, 4856, 4857, 4737, 4737, 4857, 4858, 4738, 4738, 4858, 4859, 4739, 4739, 4859, 4860, 4740, 4740, 4860, 4861, 4741, 4741, 4861, 4862, 4742, 4742, 4862, 4863, 4743, 4743, 4863, 4864, 4744, 4744, 4864, 4865, 4745, 4745, 4865, 4866, 4746, 4746, 4866, 4867, 4747, 4747, 4867, 4868, 4748, 4748, 4868, 4869, 4749, 4749, 4869, 4870, 4750, 4750, 4870, 4871, 4751, 4751, 4871, 4872, 4752, 4752, 4872, 4873, 4753, 4753, 4873, 4874, 4754, 4754, 4874, 4875, 4755, 4755, 4875, 4876, 4756, 4756, 4876, 4877, 4757, 4757, 4877, 4878, 4758, 4758, 4878, 4879, 4759, 4759, 4879, 4880, 4760, 4760, 4880, 4881, 4761, 4761, 4881, 4882, 4762, 4762, 4882, 4883, 4763, 4763, 4883, 4884, 4764, 4764, 4884, 4885, 4765, 4765, 4885, 4886, 4766, 4766, 4886, 4887, 4767, 4767, 4887, 4888, 4768, 4768, 4888, 4889, 4769, 4769, 4889, 4890, 4770, 4770, 4890, 4891, 4771, 4771, 4891, 4892, 4772, 4772, 4892, 4893, 4773, 4773, 4893, 4894, 4774, 4774, 4894, 4895, 4775, 4775, 4895, 4896, 4776, 4776, 4896, 4897, 4777, 4777, 4897, 4898, 4778, 4778, 4898, 4899, 4779, 4779, 4899, 4900, 4780, 4780, 4900, 4901, 4781, 4781, 4901, 4902, 4782, 4782, 4902, 4903, 4783, 4783, 4903, 4904, 4784, 4784, 4904, 4905, 4785, 4785, 4905, 4906, 4786, 4786, 4906, 4907, 4787, 4787, 4907, 4908, 4788, 4788, 4908, 4909, 4789, 4789, 4909, 4910, 4790, 4790, 4910, 4911, 4791, 4791, 4911, 4912, 4792, 4792, 4912, 4913, 4793, 4793, 4913, 4914, 4794, 4794, 4914, 4915, 4795, 4795, 4915, 4916, 4796, 4796, 4916, 4917, 4797, 4797, 4917, 4918, 4798, 4798, 4918, 4919, 4799, 4799, 4919, 4920, 4800, 4800, 4920, 4801, 4681, 4801, 4921, 4922, 4802, 4802, 4922, 4923, 4803, 4803, 4923, 4924, 4804, 4804, 4924, 4925, 4805, 4805, 4925, 4926, 4806, 4806, 4926, 4927, 4807, 4807, 4927, 4928, 4808, 4808, 4928, 4929, 4809, 4809, 4929, 4930, 4810, 4810, 4930, 4931, 4811, 4811, 4931, 4932, 4812, 4812, 4932, 4933, 4813, 4813, 4933, 4934, 4814, 4814, 4934, 4935, 4815, 4815, 4935, 4936, 4816, 4816, 4936, 4937, 4817, 4817, 4937, 4938, 4818, 4818, 4938, 4939, 4819, 4819, 4939, 4940, 4820, 4820, 4940, 4941, 4821, 4821, 4941, 4942, 4822, 4822, 4942, 4943, 4823, 4823, 4943, 4944, 4824, 4824, 4944, 4945, 4825, 4825, 4945, 4946, 4826, 4826, 4946, 4947, 4827, 4827, 4947, 4948, 4828, 4828, 4948, 4949, 4829, 4829, 4949, 4950, 4830, 4830, 4950, 4951, 4831, 4831, 4951, 4952, 4832, 4832, 4952, 4953, 4833, 4833, 4953, 4954, 4834, 4834, 4954, 4955, 4835, 4835, 4955, 4956, 4836, 4836, 4956, 4957, 4837, 4837, 4957, 4958, 4838, 4838, 4958, 4959, 4839, 4839, 4959, 4960, 4840, 4840, 4960, 4961, 4841, 4841, 4961, 4962, 4842, 4842, 4962, 4963, 4843, 4843, 4963, 4964, 4844, 4844, 4964, 4965, 4845, 4845, 4965, 4966, 4846, 4846, 4966, 4967, 4847, 4847, 4967, 4968, 4848, 4848, 4968, 4969, 4849, 4849, 4969, 4970, 4850, 4850, 4970, 4971, 4851, 4851, 4971, 4972, 4852, 4852, 4972, 4973, 4853, 4853, 4973, 4974, 4854, 4854, 4974, 4975, 4855, 4855, 4975, 4976, 4856, 4856, 4976, 4977, 4857, 4857, 4977, 4978, 4858, 4858, 4978, 4979, 4859, 4859, 4979, 4980, 4860, 4860, 4980, 4981, 4861, 4861, 4981, 4982, 4862, 4862, 4982, 4983, 4863, 4863, 4983, 4984, 4864, 4864, 4984, 4985, 4865, 4865, 4985, 4986, 4866, 4866, 4986, 4987, 4867, 4867, 4987, 4988, 4868, 4868, 4988, 4989, 4869, 4869, 4989, 4990, 4870, 4870, 4990, 4991, 4871, 4871, 4991, 4992, 4872, 4872, 4992, 4993, 4873, 4873, 4993, 4994, 4874, 4874, 4994, 4995, 4875, 4875, 4995, 4996, 4876, 4876, 4996, 4997, 4877, 4877, 4997, 4998, 4878, 4878, 4998, 4999, 4879, 4879, 4999, 5000, 4880, 4880, 5000, 5001, 4881, 4881, 5001, 5002, 4882, 4882, 5002, 5003, 4883, 4883, 5003, 5004, 4884, 4884, 5004, 5005, 4885, 4885, 5005, 5006, 4886, 4886, 5006, 5007, 4887, 4887, 5007, 5008, 4888, 4888, 5008, 5009, 4889, 4889, 5009, 5010, 4890, 4890, 5010, 5011, 4891, 4891, 5011, 5012, 4892, 4892, 5012, 5013, 4893, 4893, 5013, 5014, 4894, 4894, 5014, 5015, 4895, 4895, 5015, 5016, 4896, 4896, 5016, 5017, 4897, 4897, 5017, 5018, 4898, 4898, 5018, 5019, 4899, 4899, 5019, 5020, 4900, 4900, 5020, 5021, 4901, 4901, 5021, 5022, 4902, 4902, 5022, 5023, 4903, 4903, 5023, 5024, 4904, 4904, 5024, 5025, 4905, 4905, 5025, 5026, 4906, 4906, 5026, 5027, 4907, 4907, 5027, 5028, 4908, 4908, 5028, 5029, 4909, 4909, 5029, 5030, 4910, 4910, 5030, 5031, 4911, 4911, 5031, 5032, 4912, 4912, 5032, 5033, 4913, 4913, 5033, 5034, 4914, 4914, 5034, 5035, 4915, 4915, 5035, 5036, 4916, 4916, 5036, 5037, 4917, 4917, 5037, 5038, 4918, 4918, 5038, 5039, 4919, 4919, 5039, 5040, 4920, 4920, 5040, 4921, 4801, 4921, 5041, 5042, 4922, 4922, 5042, 5043, 4923, 4923, 5043, 5044, 4924, 4924, 5044, 5045, 4925, 4925, 5045, 5046, 4926, 4926, 5046, 5047, 4927, 4927, 5047, 5048, 4928, 4928, 5048, 5049, 4929, 4929, 5049, 5050, 4930, 4930, 5050, 5051, 4931, 4931, 5051, 5052, 4932, 4932, 5052, 5053, 4933, 4933, 5053, 5054, 4934, 4934, 5054, 5055, 4935, 4935, 5055, 5056, 4936, 4936, 5056, 5057, 4937, 4937, 5057, 5058, 4938, 4938, 5058, 5059, 4939, 4939, 5059, 5060, 4940, 4940, 5060, 5061, 4941, 4941, 5061, 5062, 4942, 4942, 5062, 5063, 4943, 4943, 5063, 5064, 4944, 4944, 5064, 5065, 4945, 4945, 5065, 5066, 4946, 4946, 5066, 5067, 4947, 4947, 5067, 5068, 4948, 4948, 5068, 5069, 4949, 4949, 5069, 5070, 4950, 4950, 5070, 5071, 4951, 4951, 5071, 5072, 4952, 4952, 5072, 5073, 4953, 4953, 5073, 5074, 4954, 4954, 5074, 5075, 4955, 4955, 5075, 5076, 4956, 4956, 5076, 5077, 4957, 4957, 5077, 5078, 4958, 4958, 5078, 5079, 4959, 4959, 5079, 5080, 4960, 4960, 5080, 5081, 4961, 4961, 5081, 5082, 4962, 4962, 5082, 5083, 4963, 4963, 5083, 5084, 4964, 4964, 5084, 5085, 4965, 4965, 5085, 5086, 4966, 4966, 5086, 5087, 4967, 4967, 5087, 5088, 4968, 4968, 5088, 5089, 4969, 4969, 5089, 5090, 4970, 4970, 5090, 5091, 4971, 4971, 5091, 5092, 4972, 4972, 5092, 5093, 4973, 4973, 5093, 5094, 4974, 4974, 5094, 5095, 4975, 4975, 5095, 5096, 4976, 4976, 5096, 5097, 4977, 4977, 5097, 5098, 4978, 4978, 5098, 5099, 4979, 4979, 5099, 5100, 4980, 4980, 5100, 5101, 4981, 4981, 5101, 5102, 4982, 4982, 5102, 5103, 4983, 4983, 5103, 5104, 4984, 4984, 5104, 5105, 4985, 4985, 5105, 5106, 4986, 4986, 5106, 5107, 4987, 4987, 5107, 5108, 4988, 4988, 5108, 5109, 4989, 4989, 5109, 5110, 4990, 4990, 5110, 5111, 4991, 4991, 5111, 5112, 4992, 4992, 5112, 5113, 4993, 4993, 5113, 5114, 4994, 4994, 5114, 5115, 4995, 4995, 5115, 5116, 4996, 4996, 5116, 5117, 4997, 4997, 5117, 5118, 4998, 4998, 5118, 5119, 4999, 4999, 5119, 5120, 5000, 5000, 5120, 5121, 5001, 5001, 5121, 5122, 5002, 5002, 5122, 5123, 5003, 5003, 5123, 5124, 5004, 5004, 5124, 5125, 5005, 5005, 5125, 5126, 5006, 5006, 5126, 5127, 5007, 5007, 5127, 5128, 5008, 5008, 5128, 5129, 5009, 5009, 5129, 5130, 5010, 5010, 5130, 5131, 5011, 5011, 5131, 5132, 5012, 5012, 5132, 5133, 5013, 5013, 5133, 5134, 5014, 5014, 5134, 5135, 5015, 5015, 5135, 5136, 5016, 5016, 5136, 5137, 5017, 5017, 5137, 5138, 5018, 5018, 5138, 5139, 5019, 5019, 5139, 5140, 5020, 5020, 5140, 5141, 5021, 5021, 5141, 5142, 5022, 5022, 5142, 5143, 5023, 5023, 5143, 5144, 5024, 5024, 5144, 5145, 5025, 5025, 5145, 5146, 5026, 5026, 5146, 5147, 5027, 5027, 5147, 5148, 5028, 5028, 5148, 5149, 5029, 5029, 5149, 5150, 5030, 5030, 5150, 5151, 5031, 5031, 5151, 5152, 5032, 5032, 5152, 5153, 5033, 5033, 5153, 5154, 5034, 5034, 5154, 5155, 5035, 5035, 5155, 5156, 5036, 5036, 5156, 5157, 5037, 5037, 5157, 5158, 5038, 5038, 5158, 5159, 5039, 5039, 5159, 5160, 5040, 5040, 5160, 5041, 4921, 5041, 5161, 5162, 5042, 5042, 5162, 5163, 5043, 5043, 5163, 5164, 5044, 5044, 5164, 5165, 5045, 5045, 5165, 5166, 5046, 5046, 5166, 5167, 5047, 5047, 5167, 5168, 5048, 5048, 5168, 5169, 5049, 5049, 5169, 5170, 5050, 5050, 5170, 5171, 5051, 5051, 5171, 5172, 5052, 5052, 5172, 5173, 5053, 5053, 5173, 5174, 5054, 5054, 5174, 5175, 5055, 5055, 5175, 5176, 5056, 5056, 5176, 5177, 5057, 5057, 5177, 5178, 5058, 5058, 5178, 5179, 5059, 5059, 5179, 5180, 5060, 5060, 5180, 5181, 5061, 5061, 5181, 5182, 5062, 5062, 5182, 5183, 5063, 5063, 5183, 5184, 5064, 5064, 5184, 5185, 5065, 5065, 5185, 5186, 5066, 5066, 5186, 5187, 5067, 5067, 5187, 5188, 5068, 5068, 5188, 5189, 5069, 5069, 5189, 5190, 5070, 5070, 5190, 5191, 5071, 5071, 5191, 5192, 5072, 5072, 5192, 5193, 5073, 5073, 5193, 5194, 5074, 5074, 5194, 5195, 5075, 5075, 5195, 5196, 5076, 5076, 5196, 5197, 5077, 5077, 5197, 5198, 5078, 5078, 5198, 5199, 5079, 5079, 5199, 5200, 5080, 5080, 5200, 5201, 5081, 5081, 5201, 5202, 5082, 5082, 5202, 5203, 5083, 5083, 5203, 5204, 5084, 5084, 5204, 5205, 5085, 5085, 5205, 5206, 5086, 5086, 5206, 5207, 5087, 5087, 5207, 5208, 5088, 5088, 5208, 5209, 5089, 5089, 5209, 5210, 5090, 5090, 5210, 5211, 5091, 5091, 5211, 5212, 5092, 5092, 5212, 5213, 5093, 5093, 5213, 5214, 5094, 5094, 5214, 5215, 5095, 5095, 5215, 5216, 5096, 5096, 5216, 5217, 5097, 5097, 5217, 5218, 5098, 5098, 5218, 5219, 5099, 5099, 5219, 5220, 5100, 5100, 5220, 5221, 5101, 5101, 5221, 5222, 5102, 5102, 5222, 5223, 5103, 5103, 5223, 5224, 5104, 5104, 5224, 5225, 5105, 5105, 5225, 5226, 5106, 5106, 5226, 5227, 5107, 5107, 5227, 5228, 5108, 5108, 5228, 5229, 5109, 5109, 5229, 5230, 5110, 5110, 5230, 5231, 5111, 5111, 5231, 5232, 5112, 5112, 5232, 5233, 5113, 5113, 5233, 5234, 5114, 5114, 5234, 5235, 5115, 5115, 5235, 5236, 5116, 5116, 5236, 5237, 5117, 5117, 5237, 5238, 5118, 5118, 5238, 5239, 5119, 5119, 5239, 5240, 5120, 5120, 5240, 5241, 5121, 5121, 5241, 5242, 5122, 5122, 5242, 5243, 5123, 5123, 5243, 5244, 5124, 5124, 5244, 5245, 5125, 5125, 5245, 5246, 5126, 5126, 5246, 5247, 5127, 5127, 5247, 5248, 5128, 5128, 5248, 5249, 5129, 5129, 5249, 5250, 5130, 5130, 5250, 5251, 5131, 5131, 5251, 5252, 5132, 5132, 5252, 5253, 5133, 5133, 5253, 5254, 5134, 5134, 5254, 5255, 5135, 5135, 5255, 5256, 5136, 5136, 5256, 5257, 5137, 5137, 5257, 5258, 5138, 5138, 5258, 5259, 5139, 5139, 5259, 5260, 5140, 5140, 5260, 5261, 5141, 5141, 5261, 5262, 5142, 5142, 5262, 5263, 5143, 5143, 5263, 5264, 5144, 5144, 5264, 5265, 5145, 5145, 5265, 5266, 5146, 5146, 5266, 5267, 5147, 5147, 5267, 5268, 5148, 5148, 5268, 5269, 5149, 5149, 5269, 5270, 5150, 5150, 5270, 5271, 5151, 5151, 5271, 5272, 5152, 5152, 5272, 5273, 5153, 5153, 5273, 5274, 5154, 5154, 5274, 5275, 5155, 5155, 5275, 5276, 5156, 5156, 5276, 5277, 5157, 5157, 5277, 5278, 5158, 5158, 5278, 5279, 5159, 5159, 5279, 5280, 5160, 5160, 5280, 5161, 5041, 5161, 5281, 5282, 5162, 5162, 5282, 5283, 5163, 5163, 5283, 5284, 5164, 5164, 5284, 5285, 5165, 5165, 5285, 5286, 5166, 5166, 5286, 5287, 5167, 5167, 5287, 5288, 5168, 5168, 5288, 5289, 5169, 5169, 5289, 5290, 5170, 5170, 5290, 5291, 5171, 5171, 5291, 5292, 5172, 5172, 5292, 5293, 5173, 5173, 5293, 5294, 5174, 5174, 5294, 5295, 5175, 5175, 5295, 5296, 5176, 5176, 5296, 5297, 5177, 5177, 5297, 5298, 5178, 5178, 5298, 5299, 5179, 5179, 5299, 5300, 5180, 5180, 5300, 5301, 5181, 5181, 5301, 5302, 5182, 5182, 5302, 5303, 5183, 5183, 5303, 5304, 5184, 5184, 5304, 5305, 5185, 5185, 5305, 5306, 5186, 5186, 5306, 5307, 5187, 5187, 5307, 5308, 5188, 5188, 5308, 5309, 5189, 5189, 5309, 5310, 5190, 5190, 5310, 5311, 5191, 5191, 5311, 5312, 5192, 5192, 5312, 5313, 5193, 5193, 5313, 5314, 5194, 5194, 5314, 5315, 5195, 5195, 5315, 5316, 5196, 5196, 5316, 5317, 5197, 5197, 5317, 5318, 5198, 5198, 5318, 5319, 5199, 5199, 5319, 5320, 5200, 5200, 5320, 5321, 5201, 5201, 5321, 5322, 5202, 5202, 5322, 5323, 5203, 5203, 5323, 5324, 5204, 5204, 5324, 5325, 5205, 5205, 5325, 5326, 5206, 5206, 5326, 5327, 5207, 5207, 5327, 5328, 5208, 5208, 5328, 5329, 5209, 5209, 5329, 5330, 5210, 5210, 5330, 5331, 5211, 5211, 5331, 5332, 5212, 5212, 5332, 5333, 5213, 5213, 5333, 5334, 5214, 5214, 5334, 5335, 5215, 5215, 5335, 5336, 5216, 5216, 5336, 5337, 5217, 5217, 5337, 5338, 5218, 5218, 5338, 5339, 5219, 5219, 5339, 5340, 5220, 5220, 5340, 5341, 5221, 5221, 5341, 5342, 5222, 5222, 5342, 5343, 5223, 5223, 5343, 5344, 5224, 5224, 5344, 5345, 5225, 5225, 5345, 5346, 5226, 5226, 5346, 5347, 5227, 5227, 5347, 5348, 5228, 5228, 5348, 5349, 5229, 5229, 5349, 5350, 5230, 5230, 5350, 5351, 5231, 5231, 5351, 5352, 5232, 5232, 5352, 5353, 5233, 5233, 5353, 5354, 5234, 5234, 5354, 5355, 5235, 5235, 5355, 5356, 5236, 5236, 5356, 5357, 5237, 5237, 5357, 5358, 5238, 5238, 5358, 5359, 5239, 5239, 5359, 5360, 5240, 5240, 5360, 5361, 5241, 5241, 5361, 5362, 5242, 5242, 5362, 5363, 5243, 5243, 5363, 5364, 5244, 5244, 5364, 5365, 5245, 5245, 5365, 5366, 5246, 5246, 5366, 5367, 5247, 5247, 5367, 5368, 5248, 5248, 5368, 5369, 5249, 5249, 5369, 5370, 5250, 5250, 5370, 5371, 5251, 5251, 5371, 5372, 5252, 5252, 5372, 5373, 5253, 5253, 5373, 5374, 5254, 5254, 5374, 5375, 5255, 5255, 5375, 5376, 5256, 5256, 5376, 5377, 5257, 5257, 5377, 5378, 5258, 5258, 5378, 5379, 5259, 5259, 5379, 5380, 5260, 5260, 5380, 5381, 5261, 5261, 5381, 5382, 5262, 5262, 5382, 5383, 5263, 5263, 5383, 5384, 5264, 5264, 5384, 5385, 5265, 5265, 5385, 5386, 5266, 5266, 5386, 5387, 5267, 5267, 5387, 5388, 5268, 5268, 5388, 5389, 5269, 5269, 5389, 5390, 5270, 5270, 5390, 5391, 5271, 5271, 5391, 5392, 5272, 5272, 5392, 5393, 5273, 5273, 5393, 5394, 5274, 5274, 5394, 5395, 5275, 5275, 5395, 5396, 5276, 5276, 5396, 5397, 5277, 5277, 5397, 5398, 5278, 5278, 5398, 5399, 5279, 5279, 5399, 5400, 5280, 5280, 5400, 5281, 5161, 5281, 5401, 5402, 5282, 5282, 5402, 5403, 5283, 5283, 5403, 5404, 5284, 5284, 5404, 5405, 5285, 5285, 5405, 5406, 5286, 5286, 5406, 5407, 5287, 5287, 5407, 5408, 5288, 5288, 5408, 5409, 5289, 5289, 5409, 5410, 5290, 5290, 5410, 5411, 5291, 5291, 5411, 5412, 5292, 5292, 5412, 5413, 5293, 5293, 5413, 5414, 5294, 5294, 5414, 5415, 5295, 5295, 5415, 5416, 5296, 5296, 5416, 5417, 5297, 5297, 5417, 5418, 5298, 5298, 5418, 5419, 5299, 5299, 5419, 5420, 5300, 5300, 5420, 5421, 5301, 5301, 5421, 5422, 5302, 5302, 5422, 5423, 5303, 5303, 5423, 5424, 5304, 5304, 5424, 5425, 5305, 5305, 5425, 5426, 5306, 5306, 5426, 5427, 5307, 5307, 5427, 5428, 5308, 5308, 5428, 5429, 5309, 5309, 5429, 5430, 5310, 5310, 5430, 5431, 5311, 5311, 5431, 5432, 5312, 5312, 5432, 5433, 5313, 5313, 5433, 5434, 5314, 5314, 5434, 5435, 5315, 5315, 5435, 5436, 5316, 5316, 5436, 5437, 5317, 5317, 5437, 5438, 5318, 5318, 5438, 5439, 5319, 5319, 5439, 5440, 5320, 5320, 5440, 5441, 5321, 5321, 5441, 5442, 5322, 5322, 5442, 5443, 5323, 5323, 5443, 5444, 5324, 5324, 5444, 5445, 5325, 5325, 5445, 5446, 5326, 5326, 5446, 5447, 5327, 5327, 5447, 5448, 5328, 5328, 5448, 5449, 5329, 5329, 5449, 5450, 5330, 5330, 5450, 5451, 5331, 5331, 5451, 5452, 5332, 5332, 5452, 5453, 5333, 5333, 5453, 5454, 5334, 5334, 5454, 5455, 5335, 5335, 5455, 5456, 5336, 5336, 5456, 5457, 5337, 5337, 5457, 5458, 5338, 5338, 5458, 5459, 5339, 5339, 5459, 5460, 5340, 5340, 5460, 5461, 5341, 5341, 5461, 5462, 5342, 5342, 5462, 5463, 5343, 5343, 5463, 5464, 5344, 5344, 5464, 5465, 5345, 5345, 5465, 5466, 5346, 5346, 5466, 5467, 5347, 5347, 5467, 5468, 5348, 5348, 5468, 5469, 5349, 5349, 5469, 5470, 5350, 5350, 5470, 5471, 5351, 5351, 5471, 5472, 5352, 5352, 5472, 5473, 5353, 5353, 5473, 5474, 5354, 5354, 5474, 5475, 5355, 5355, 5475, 5476, 5356, 5356, 5476, 5477, 5357, 5357, 5477, 5478, 5358, 5358, 5478, 5479, 5359, 5359, 5479, 5480, 5360, 5360, 5480, 5481, 5361, 5361, 5481, 5482, 5362, 5362, 5482, 5483, 5363, 5363, 5483, 5484, 5364, 5364, 5484, 5485, 5365, 5365, 5485, 5486, 5366, 5366, 5486, 5487, 5367, 5367, 5487, 5488, 5368, 5368, 5488, 5489, 5369, 5369, 5489, 5490, 5370, 5370, 5490, 5491, 5371, 5371, 5491, 5492, 5372, 5372, 5492, 5493, 5373, 5373, 5493, 5494, 5374, 5374, 5494, 5495, 5375, 5375, 5495, 5496, 5376, 5376, 5496, 5497, 5377, 5377, 5497, 5498, 5378, 5378, 5498, 5499, 5379, 5379, 5499, 5500, 5380, 5380, 5500, 5501, 5381, 5381, 5501, 5502, 5382, 5382, 5502, 5503, 5383, 5383, 5503, 5504, 5384, 5384, 5504, 5505, 5385, 5385, 5505, 5506, 5386, 5386, 5506, 5507, 5387, 5387, 5507, 5508, 5388, 5388, 5508, 5509, 5389, 5389, 5509, 5510, 5390, 5390, 5510, 5511, 5391, 5391, 5511, 5512, 5392, 5392, 5512, 5513, 5393, 5393, 5513, 5514, 5394, 5394, 5514, 5515, 5395, 5395, 5515, 5516, 5396, 5396, 5516, 5517, 5397, 5397, 5517, 5518, 5398, 5398, 5518, 5519, 5399, 5399, 5519, 5520, 5400, 5400, 5520, 5401, 5281, 5401, 5521, 5522, 5402, 5402, 5522, 5523, 5403, 5403, 5523, 5524, 5404, 5404, 5524, 5525, 5405, 5405, 5525, 5526, 5406, 5406, 5526, 5527, 5407, 5407, 5527, 5528, 5408, 5408, 5528, 5529, 5409, 5409, 5529, 5530, 5410, 5410, 5530, 5531, 5411, 5411, 5531, 5532, 5412, 5412, 5532, 5533, 5413, 5413, 5533, 5534, 5414, 5414, 5534, 5535, 5415, 5415, 5535, 5536, 5416, 5416, 5536, 5537, 5417, 5417, 5537, 5538, 5418, 5418, 5538, 5539, 5419, 5419, 5539, 5540, 5420, 5420, 5540, 5541, 5421, 5421, 5541, 5542, 5422, 5422, 5542, 5543, 5423, 5423, 5543, 5544, 5424, 5424, 5544, 5545, 5425, 5425, 5545, 5546, 5426, 5426, 5546, 5547, 5427, 5427, 5547, 5548, 5428, 5428, 5548, 5549, 5429, 5429, 5549, 5550, 5430, 5430, 5550, 5551, 5431, 5431, 5551, 5552, 5432, 5432, 5552, 5553, 5433, 5433, 5553, 5554, 5434, 5434, 5554, 5555, 5435, 5435, 5555, 5556, 5436, 5436, 5556, 5557, 5437, 5437, 5557, 5558, 5438, 5438, 5558, 5559, 5439, 5439, 5559, 5560, 5440, 5440, 5560, 5561, 5441, 5441, 5561, 5562, 5442, 5442, 5562, 5563, 5443, 5443, 5563, 5564, 5444, 5444, 5564, 5565, 5445, 5445, 5565, 5566, 5446, 5446, 5566, 5567, 5447, 5447, 5567, 5568, 5448, 5448, 5568, 5569, 5449, 5449, 5569, 5570, 5450, 5450, 5570, 5571, 5451, 5451, 5571, 5572, 5452, 5452, 5572, 5573, 5453, 5453, 5573, 5574, 5454, 5454, 5574, 5575, 5455, 5455, 5575, 5576, 5456, 5456, 5576, 5577, 5457, 5457, 5577, 5578, 5458, 5458, 5578, 5579, 5459, 5459, 5579, 5580, 5460, 5460, 5580, 5581, 5461, 5461, 5581, 5582, 5462, 5462, 5582, 5583, 5463, 5463, 5583, 5584, 5464, 5464, 5584, 5585, 5465, 5465, 5585, 5586, 5466, 5466, 5586, 5587, 5467, 5467, 5587, 5588, 5468, 5468, 5588, 5589, 5469, 5469, 5589, 5590, 5470, 5470, 5590, 5591, 5471, 5471, 5591, 5592, 5472, 5472, 5592, 5593, 5473, 5473, 5593, 5594, 5474, 5474, 5594, 5595, 5475, 5475, 5595, 5596, 5476, 5476, 5596, 5597, 5477, 5477, 5597, 5598, 5478, 5478, 5598, 5599, 5479, 5479, 5599, 5600, 5480, 5480, 5600, 5601, 5481, 5481, 5601, 5602, 5482, 5482, 5602, 5603, 5483, 5483, 5603, 5604, 5484, 5484, 5604, 5605, 5485, 5485, 5605, 5606, 5486, 5486, 5606, 5607, 5487, 5487, 5607, 5608, 5488, 5488, 5608, 5609, 5489, 5489, 5609, 5610, 5490, 5490, 5610, 5611, 5491, 5491, 5611, 5612, 5492, 5492, 5612, 5613, 5493, 5493, 5613, 5614, 5494, 5494, 5614, 5615, 5495, 5495, 5615, 5616, 5496, 5496, 5616, 5617, 5497, 5497, 5617, 5618, 5498, 5498, 5618, 5619, 5499, 5499, 5619, 5620, 5500, 5500, 5620, 5621, 5501, 5501, 5621, 5622, 5502, 5502, 5622, 5623, 5503, 5503, 5623, 5624, 5504, 5504, 5624, 5625, 5505, 5505, 5625, 5626, 5506, 5506, 5626, 5627, 5507, 5507, 5627, 5628, 5508, 5508, 5628, 5629, 5509, 5509, 5629, 5630, 5510, 5510, 5630, 5631, 5511, 5511, 5631, 5632, 5512, 5512, 5632, 5633, 5513, 5513, 5633, 5634, 5514, 5514, 5634, 5635, 5515, 5515, 5635, 5636, 5516, 5516, 5636, 5637, 5517, 5517, 5637, 5638, 5518, 5518, 5638, 5639, 5519, 5519, 5639, 5640, 5520, 5520, 5640, 5521, 5401, 5521, 5641, 5642, 5522, 5522, 5642, 5643, 5523, 5523, 5643, 5644, 5524, 5524, 5644, 5645, 5525, 5525, 5645, 5646, 5526, 5526, 5646, 5647, 5527, 5527, 5647, 5648, 5528, 5528, 5648, 5649, 5529, 5529, 5649, 5650, 5530, 5530, 5650, 5651, 5531, 5531, 5651, 5652, 5532, 5532, 5652, 5653, 5533, 5533, 5653, 5654, 5534, 5534, 5654, 5655, 5535, 5535, 5655, 5656, 5536, 5536, 5656, 5657, 5537, 5537, 5657, 5658, 5538, 5538, 5658, 5659, 5539, 5539, 5659, 5660, 5540, 5540, 5660, 5661, 5541, 5541, 5661, 5662, 5542, 5542, 5662, 5663, 5543, 5543, 5663, 5664, 5544, 5544, 5664, 5665, 5545, 5545, 5665, 5666, 5546, 5546, 5666, 5667, 5547, 5547, 5667, 5668, 5548, 5548, 5668, 5669, 5549, 5549, 5669, 5670, 5550, 5550, 5670, 5671, 5551, 5551, 5671, 5672, 5552, 5552, 5672, 5673, 5553, 5553, 5673, 5674, 5554, 5554, 5674, 5675, 5555, 5555, 5675, 5676, 5556, 5556, 5676, 5677, 5557, 5557, 5677, 5678, 5558, 5558, 5678, 5679, 5559, 5559, 5679, 5680, 5560, 5560, 5680, 5681, 5561, 5561, 5681, 5682, 5562, 5562, 5682, 5683, 5563, 5563, 5683, 5684, 5564, 5564, 5684, 5685, 5565, 5565, 5685, 5686, 5566, 5566, 5686, 5687, 5567, 5567, 5687, 5688, 5568, 5568, 5688, 5689, 5569, 5569, 5689, 5690, 5570, 5570, 5690, 5691, 5571, 5571, 5691, 5692, 5572, 5572, 5692, 5693, 5573, 5573, 5693, 5694, 5574, 5574, 5694, 5695, 5575, 5575, 5695, 5696, 5576, 5576, 5696, 5697, 5577, 5577, 5697, 5698, 5578, 5578, 5698, 5699, 5579, 5579, 5699, 5700, 5580, 5580, 5700, 5701, 5581, 5581, 5701, 5702, 5582, 5582, 5702, 5703, 5583, 5583, 5703, 5704, 5584, 5584, 5704, 5705, 5585, 5585, 5705, 5706, 5586, 5586, 5706, 5707, 5587, 5587, 5707, 5708, 5588, 5588, 5708, 5709, 5589, 5589, 5709, 5710, 5590, 5590, 5710, 5711, 5591, 5591, 5711, 5712, 5592, 5592, 5712, 5713, 5593, 5593, 5713, 5714, 5594, 5594, 5714, 5715, 5595, 5595, 5715, 5716, 5596, 5596, 5716, 5717, 5597, 5597, 5717, 5718, 5598, 5598, 5718, 5719, 5599, 5599, 5719, 5720, 5600, 5600, 5720, 5721, 5601, 5601, 5721, 5722, 5602, 5602, 5722, 5723, 5603, 5603, 5723, 5724, 5604, 5604, 5724, 5725, 5605, 5605, 5725, 5726, 5606, 5606, 5726, 5727, 5607, 5607, 5727, 5728, 5608, 5608, 5728, 5729, 5609, 5609, 5729, 5730, 5610, 5610, 5730, 5731, 5611, 5611, 5731, 5732, 5612, 5612, 5732, 5733, 5613, 5613, 5733, 5734, 5614, 5614, 5734, 5735, 5615, 5615, 5735, 5736, 5616, 5616, 5736, 5737, 5617, 5617, 5737, 5738, 5618, 5618, 5738, 5739, 5619, 5619, 5739, 5740, 5620, 5620, 5740, 5741, 5621, 5621, 5741, 5742, 5622, 5622, 5742, 5743, 5623, 5623, 5743, 5744, 5624, 5624, 5744, 5745, 5625, 5625, 5745, 5746, 5626, 5626, 5746, 5747, 5627, 5627, 5747, 5748, 5628, 5628, 5748, 5749, 5629, 5629, 5749, 5750, 5630, 5630, 5750, 5751, 5631, 5631, 5751, 5752, 5632, 5632, 5752, 5753, 5633, 5633, 5753, 5754, 5634, 5634, 5754, 5755, 5635, 5635, 5755, 5756, 5636, 5636, 5756, 5757, 5637, 5637, 5757, 5758, 5638, 5638, 5758, 5759, 5639, 5639, 5759, 5760, 5640, 5640, 5760, 5641, 5521, 5641, 5761, 5762, 5642, 5642, 5762, 5763, 5643, 5643, 5763, 5764, 5644, 5644, 5764, 5765, 5645, 5645, 5765, 5766, 5646, 5646, 5766, 5767, 5647, 5647, 5767, 5768, 5648, 5648, 5768, 5769, 5649, 5649, 5769, 5770, 5650, 5650, 5770, 5771, 5651, 5651, 5771, 5772, 5652, 5652, 5772, 5773, 5653, 5653, 5773, 5774, 5654, 5654, 5774, 5775, 5655, 5655, 5775, 5776, 5656, 5656, 5776, 5777, 5657, 5657, 5777, 5778, 5658, 5658, 5778, 5779, 5659, 5659, 5779, 5780, 5660, 5660, 5780, 5781, 5661, 5661, 5781, 5782, 5662, 5662, 5782, 5783, 5663, 5663, 5783, 5784, 5664, 5664, 5784, 5785, 5665, 5665, 5785, 5786, 5666, 5666, 5786, 5787, 5667, 5667, 5787, 5788, 5668, 5668, 5788, 5789, 5669, 5669, 5789, 5790, 5670, 5670, 5790, 5791, 5671, 5671, 5791, 5792, 5672, 5672, 5792, 5793, 5673, 5673, 5793, 5794, 5674, 5674, 5794, 5795, 5675, 5675, 5795, 5796, 5676, 5676, 5796, 5797, 5677, 5677, 5797, 5798, 5678, 5678, 5798, 5799, 5679, 5679, 5799, 5800, 5680, 5680, 5800, 5801, 5681, 5681, 5801, 5802, 5682, 5682, 5802, 5803, 5683, 5683, 5803, 5804, 5684, 5684, 5804, 5805, 5685, 5685, 5805, 5806, 5686, 5686, 5806, 5807, 5687, 5687, 5807, 5808, 5688, 5688, 5808, 5809, 5689, 5689, 5809, 5810, 5690, 5690, 5810, 5811, 5691, 5691, 5811, 5812, 5692, 5692, 5812, 5813, 5693, 5693, 5813, 5814, 5694, 5694, 5814, 5815, 5695, 5695, 5815, 5816, 5696, 5696, 5816, 5817, 5697, 5697, 5817, 5818, 5698, 5698, 5818, 5819, 5699, 5699, 5819, 5820, 5700, 5700, 5820, 5821, 5701, 5701, 5821, 5822, 5702, 5702, 5822, 5823, 5703, 5703, 5823, 5824, 5704, 5704, 5824, 5825, 5705, 5705, 5825, 5826, 5706, 5706, 5826, 5827, 5707, 5707, 5827, 5828, 5708, 5708, 5828, 5829, 5709, 5709, 5829, 5830, 5710, 5710, 5830, 5831, 5711, 5711, 5831, 5832, 5712, 5712, 5832, 5833, 5713, 5713, 5833, 5834, 5714, 5714, 5834, 5835, 5715, 5715, 5835, 5836, 5716, 5716, 5836, 5837, 5717, 5717, 5837, 5838, 5718, 5718, 5838, 5839, 5719, 5719, 5839, 5840, 5720, 5720, 5840, 5841, 5721, 5721, 5841, 5842, 5722, 5722, 5842, 5843, 5723, 5723, 5843, 5844, 5724, 5724, 5844, 5845, 5725, 5725, 5845, 5846, 5726, 5726, 5846, 5847, 5727, 5727, 5847, 5848, 5728, 5728, 5848, 5849, 5729, 5729, 5849, 5850, 5730, 5730, 5850, 5851, 5731, 5731, 5851, 5852, 5732, 5732, 5852, 5853, 5733, 5733, 5853, 5854, 5734, 5734, 5854, 5855, 5735, 5735, 5855, 5856, 5736, 5736, 5856, 5857, 5737, 5737, 5857, 5858, 5738, 5738, 5858, 5859, 5739, 5739, 5859, 5860, 5740, 5740, 5860, 5861, 5741, 5741, 5861, 5862, 5742, 5742, 5862, 5863, 5743, 5743, 5863, 5864, 5744, 5744, 5864, 5865, 5745, 5745, 5865, 5866, 5746, 5746, 5866, 5867, 5747, 5747, 5867, 5868, 5748, 5748, 5868, 5869, 5749, 5749, 5869, 5870, 5750, 5750, 5870, 5871, 5751, 5751, 5871, 5872, 5752, 5752, 5872, 5873, 5753, 5753, 5873, 5874, 5754, 5754, 5874, 5875, 5755, 5755, 5875, 5876, 5756, 5756, 5876, 5877, 5757, 5757, 5877, 5878, 5758, 5758, 5878, 5879, 5759, 5759, 5879, 5880, 5760, 5760, 5880, 5761, 5641, 5761, 5881, 5882, 5762, 5762, 5882, 5883, 5763, 5763, 5883, 5884, 5764, 5764, 5884, 5885, 5765, 5765, 5885, 5886, 5766, 5766, 5886, 5887, 5767, 5767, 5887, 5888, 5768, 5768, 5888, 5889, 5769, 5769, 5889, 5890, 5770, 5770, 5890, 5891, 5771, 5771, 5891, 5892, 5772, 5772, 5892, 5893, 5773, 5773, 5893, 5894, 5774, 5774, 5894, 5895, 5775, 5775, 5895, 5896, 5776, 5776, 5896, 5897, 5777, 5777, 5897, 5898, 5778, 5778, 5898, 5899, 5779, 5779, 5899, 5900, 5780, 5780, 5900, 5901, 5781, 5781, 5901, 5902, 5782, 5782, 5902, 5903, 5783, 5783, 5903, 5904, 5784, 5784, 5904, 5905, 5785, 5785, 5905, 5906, 5786, 5786, 5906, 5907, 5787, 5787, 5907, 5908, 5788, 5788, 5908, 5909, 5789, 5789, 5909, 5910, 5790, 5790, 5910, 5911, 5791, 5791, 5911, 5912, 5792, 5792, 5912, 5913, 5793, 5793, 5913, 5914, 5794, 5794, 5914, 5915, 5795, 5795, 5915, 5916, 5796, 5796, 5916, 5917, 5797, 5797, 5917, 5918, 5798, 5798, 5918, 5919, 5799, 5799, 5919, 5920, 5800, 5800, 5920, 5921, 5801, 5801, 5921, 5922, 5802, 5802, 5922, 5923, 5803, 5803, 5923, 5924, 5804, 5804, 5924, 5925, 5805, 5805, 5925, 5926, 5806, 5806, 5926, 5927, 5807, 5807, 5927, 5928, 5808, 5808, 5928, 5929, 5809, 5809, 5929, 5930, 5810, 5810, 5930, 5931, 5811, 5811, 5931, 5932, 5812, 5812, 5932, 5933, 5813, 5813, 5933, 5934, 5814, 5814, 5934, 5935, 5815, 5815, 5935, 5936, 5816, 5816, 5936, 5937, 5817, 5817, 5937, 5938, 5818, 5818, 5938, 5939, 5819, 5819, 5939, 5940, 5820, 5820, 5940, 5941, 5821, 5821, 5941, 5942, 5822, 5822, 5942, 5943, 5823, 5823, 5943, 5944, 5824, 5824, 5944, 5945, 5825, 5825, 5945, 5946, 5826, 5826, 5946, 5947, 5827, 5827, 5947, 5948, 5828, 5828, 5948, 5949, 5829, 5829, 5949, 5950, 5830, 5830, 5950, 5951, 5831, 5831, 5951, 5952, 5832, 5832, 5952, 5953, 5833, 5833, 5953, 5954, 5834, 5834, 5954, 5955, 5835, 5835, 5955, 5956, 5836, 5836, 5956, 5957, 5837, 5837, 5957, 5958, 5838, 5838, 5958, 5959, 5839, 5839, 5959, 5960, 5840, 5840, 5960, 5961, 5841, 5841, 5961, 5962, 5842, 5842, 5962, 5963, 5843, 5843, 5963, 5964, 5844, 5844, 5964, 5965, 5845, 5845, 5965, 5966, 5846, 5846, 5966, 5967, 5847, 5847, 5967, 5968, 5848, 5848, 5968, 5969, 5849, 5849, 5969, 5970, 5850, 5850, 5970, 5971, 5851, 5851, 5971, 5972, 5852, 5852, 5972, 5973, 5853, 5853, 5973, 5974, 5854, 5854, 5974, 5975, 5855, 5855, 5975, 5976, 5856, 5856, 5976, 5977, 5857, 5857, 5977, 5978, 5858, 5858, 5978, 5979, 5859, 5859, 5979, 5980, 5860, 5860, 5980, 5981, 5861, 5861, 5981, 5982, 5862, 5862, 5982, 5983, 5863, 5863, 5983, 5984, 5864, 5864, 5984, 5985, 5865, 5865, 5985, 5986, 5866, 5866, 5986, 5987, 5867, 5867, 5987, 5988, 5868, 5868, 5988, 5989, 5869, 5869, 5989, 5990, 5870, 5870, 5990, 5991, 5871, 5871, 5991, 5992, 5872, 5872, 5992, 5993, 5873, 5873, 5993, 5994, 5874, 5874, 5994, 5995, 5875, 5875, 5995, 5996, 5876, 5876, 5996, 5997, 5877, 5877, 5997, 5998, 5878, 5878, 5998, 5999, 5879, 5879, 5999, 6000, 5880, 5880, 6000, 5881, 5761, 5881, 6001, 6002, 5882, 5882, 6002, 6003, 5883, 5883, 6003, 6004, 5884, 5884, 6004, 6005, 5885, 5885, 6005, 6006, 5886, 5886, 6006, 6007, 5887, 5887, 6007, 6008, 5888, 5888, 6008, 6009, 5889, 5889, 6009, 6010, 5890, 5890, 6010, 6011, 5891, 5891, 6011, 6012, 5892, 5892, 6012, 6013, 5893, 5893, 6013, 6014, 5894, 5894, 6014, 6015, 5895, 5895, 6015, 6016, 5896, 5896, 6016, 6017, 5897, 5897, 6017, 6018, 5898, 5898, 6018, 6019, 5899, 5899, 6019, 6020, 5900, 5900, 6020, 6021, 5901, 5901, 6021, 6022, 5902, 5902, 6022, 6023, 5903, 5903, 6023, 6024, 5904, 5904, 6024, 6025, 5905, 5905, 6025, 6026, 5906, 5906, 6026, 6027, 5907, 5907, 6027, 6028, 5908, 5908, 6028, 6029, 5909, 5909, 6029, 6030, 5910, 5910, 6030, 6031, 5911, 5911, 6031, 6032, 5912, 5912, 6032, 6033, 5913, 5913, 6033, 6034, 5914, 5914, 6034, 6035, 5915, 5915, 6035, 6036, 5916, 5916, 6036, 6037, 5917, 5917, 6037, 6038, 5918, 5918, 6038, 6039, 5919, 5919, 6039, 6040, 5920, 5920, 6040, 6041, 5921, 5921, 6041, 6042, 5922, 5922, 6042, 6043, 5923, 5923, 6043, 6044, 5924, 5924, 6044, 6045, 5925, 5925, 6045, 6046, 5926, 5926, 6046, 6047, 5927, 5927, 6047, 6048, 5928, 5928, 6048, 6049, 5929, 5929, 6049, 6050, 5930, 5930, 6050, 6051, 5931, 5931, 6051, 6052, 5932, 5932, 6052, 6053, 5933, 5933, 6053, 6054, 5934, 5934, 6054, 6055, 5935, 5935, 6055, 6056, 5936, 5936, 6056, 6057, 5937, 5937, 6057, 6058, 5938, 5938, 6058, 6059, 5939, 5939, 6059, 6060, 5940, 5940, 6060, 6061, 5941, 5941, 6061, 6062, 5942, 5942, 6062, 6063, 5943, 5943, 6063, 6064, 5944, 5944, 6064, 6065, 5945, 5945, 6065, 6066, 5946, 5946, 6066, 6067, 5947, 5947, 6067, 6068, 5948, 5948, 6068, 6069, 5949, 5949, 6069, 6070, 5950, 5950, 6070, 6071, 5951, 5951, 6071, 6072, 5952, 5952, 6072, 6073, 5953, 5953, 6073, 6074, 5954, 5954, 6074, 6075, 5955, 5955, 6075, 6076, 5956, 5956, 6076, 6077, 5957, 5957, 6077, 6078, 5958, 5958, 6078, 6079, 5959, 5959, 6079, 6080, 5960, 5960, 6080, 6081, 5961, 5961, 6081, 6082, 5962, 5962, 6082, 6083, 5963, 5963, 6083, 6084, 5964, 5964, 6084, 6085, 5965, 5965, 6085, 6086, 5966, 5966, 6086, 6087, 5967, 5967, 6087, 6088, 5968, 5968, 6088, 6089, 5969, 5969, 6089, 6090, 5970, 5970, 6090, 6091, 5971, 5971, 6091, 6092, 5972, 5972, 6092, 6093, 5973, 5973, 6093, 6094, 5974, 5974, 6094, 6095, 5975, 5975, 6095, 6096, 5976, 5976, 6096, 6097, 5977, 5977, 6097, 6098, 5978, 5978, 6098, 6099, 5979, 5979, 6099, 6100, 5980, 5980, 6100, 6101, 5981, 5981, 6101, 6102, 5982, 5982, 6102, 6103, 5983, 5983, 6103, 6104, 5984, 5984, 6104, 6105, 5985, 5985, 6105, 6106, 5986, 5986, 6106, 6107, 5987, 5987, 6107, 6108, 5988, 5988, 6108, 6109, 5989, 5989, 6109, 6110, 5990, 5990, 6110, 6111, 5991, 5991, 6111, 6112, 5992, 5992, 6112, 6113, 5993, 5993, 6113, 6114, 5994, 5994, 6114, 6115, 5995, 5995, 6115, 6116, 5996, 5996, 6116, 6117, 5997, 5997, 6117, 6118, 5998, 5998, 6118, 6119, 5999, 5999, 6119, 6120, 6000, 6000, 6120, 6001, 5881, 6001, 6121, 6122, 6002, 6002, 6122, 6123, 6003, 6003, 6123, 6124, 6004, 6004, 6124, 6125, 6005, 6005, 6125, 6126, 6006, 6006, 6126, 6127, 6007, 6007, 6127, 6128, 6008, 6008, 6128, 6129, 6009, 6009, 6129, 6130, 6010, 6010, 6130, 6131, 6011, 6011, 6131, 6132, 6012, 6012, 6132, 6133, 6013, 6013, 6133, 6134, 6014, 6014, 6134, 6135, 6015, 6015, 6135, 6136, 6016, 6016, 6136, 6137, 6017, 6017, 6137, 6138, 6018, 6018, 6138, 6139, 6019, 6019, 6139, 6140, 6020, 6020, 6140, 6141, 6021, 6021, 6141, 6142, 6022, 6022, 6142, 6143, 6023, 6023, 6143, 6144, 6024, 6024, 6144, 6145, 6025, 6025, 6145, 6146, 6026, 6026, 6146, 6147, 6027, 6027, 6147, 6148, 6028, 6028, 6148, 6149, 6029, 6029, 6149, 6150, 6030, 6030, 6150, 6151, 6031, 6031, 6151, 6152, 6032, 6032, 6152, 6153, 6033, 6033, 6153, 6154, 6034, 6034, 6154, 6155, 6035, 6035, 6155, 6156, 6036, 6036, 6156, 6157, 6037, 6037, 6157, 6158, 6038, 6038, 6158, 6159, 6039, 6039, 6159, 6160, 6040, 6040, 6160, 6161, 6041, 6041, 6161, 6162, 6042, 6042, 6162, 6163, 6043, 6043, 6163, 6164, 6044, 6044, 6164, 6165, 6045, 6045, 6165, 6166, 6046, 6046, 6166, 6167, 6047, 6047, 6167, 6168, 6048, 6048, 6168, 6169, 6049, 6049, 6169, 6170, 6050, 6050, 6170, 6171, 6051, 6051, 6171, 6172, 6052, 6052, 6172, 6173, 6053, 6053, 6173, 6174, 6054, 6054, 6174, 6175, 6055, 6055, 6175, 6176, 6056, 6056, 6176, 6177, 6057, 6057, 6177, 6178, 6058, 6058, 6178, 6179, 6059, 6059, 6179, 6180, 6060, 6060, 6180, 6181, 6061, 6061, 6181, 6182, 6062, 6062, 6182, 6183, 6063, 6063, 6183, 6184, 6064, 6064, 6184, 6185, 6065, 6065, 6185, 6186, 6066, 6066, 6186, 6187, 6067, 6067, 6187, 6188, 6068, 6068, 6188, 6189, 6069, 6069, 6189, 6190, 6070, 6070, 6190, 6191, 6071, 6071, 6191, 6192, 6072, 6072, 6192, 6193, 6073, 6073, 6193, 6194, 6074, 6074, 6194, 6195, 6075, 6075, 6195, 6196, 6076, 6076, 6196, 6197, 6077, 6077, 6197, 6198, 6078, 6078, 6198, 6199, 6079, 6079, 6199, 6200, 6080, 6080, 6200, 6201, 6081, 6081, 6201, 6202, 6082, 6082, 6202, 6203, 6083, 6083, 6203, 6204, 6084, 6084, 6204, 6205, 6085, 6085, 6205, 6206, 6086, 6086, 6206, 6207, 6087, 6087, 6207, 6208, 6088, 6088, 6208, 6209, 6089, 6089, 6209, 6210, 6090, 6090, 6210, 6211, 6091, 6091, 6211, 6212, 6092, 6092, 6212, 6213, 6093, 6093, 6213, 6214, 6094, 6094, 6214, 6215, 6095, 6095, 6215, 6216, 6096, 6096, 6216, 6217, 6097, 6097, 6217, 6218, 6098, 6098, 6218, 6219, 6099, 6099, 6219, 6220, 6100, 6100, 6220, 6221, 6101, 6101, 6221, 6222, 6102, 6102, 6222, 6223, 6103, 6103, 6223, 6224, 6104, 6104, 6224, 6225, 6105, 6105, 6225, 6226, 6106, 6106, 6226, 6227, 6107, 6107, 6227, 6228, 6108, 6108, 6228, 6229, 6109, 6109, 6229, 6230, 6110, 6110, 6230, 6231, 6111, 6111, 6231, 6232, 6112, 6112, 6232, 6233, 6113, 6113, 6233, 6234, 6114, 6114, 6234, 6235, 6115, 6115, 6235, 6236, 6116, 6116, 6236, 6237, 6117, 6117, 6237, 6238, 6118, 6118, 6238, 6239, 6119, 6119, 6239, 6240, 6120, 6120, 6240, 6121, 6001, 6121, 6241, 6242, 6122, 6122, 6242, 6243, 6123, 6123, 6243, 6244, 6124, 6124, 6244, 6245, 6125, 6125, 6245, 6246, 6126, 6126, 6246, 6247, 6127, 6127, 6247, 6248, 6128, 6128, 6248, 6249, 6129, 6129, 6249, 6250, 6130, 6130, 6250, 6251, 6131, 6131, 6251, 6252, 6132, 6132, 6252, 6253, 6133, 6133, 6253, 6254, 6134, 6134, 6254, 6255, 6135, 6135, 6255, 6256, 6136, 6136, 6256, 6257, 6137, 6137, 6257, 6258, 6138, 6138, 6258, 6259, 6139, 6139, 6259, 6260, 6140, 6140, 6260, 6261, 6141, 6141, 6261, 6262, 6142, 6142, 6262, 6263, 6143, 6143, 6263, 6264, 6144, 6144, 6264, 6265, 6145, 6145, 6265, 6266, 6146, 6146, 6266, 6267, 6147, 6147, 6267, 6268, 6148, 6148, 6268, 6269, 6149, 6149, 6269, 6270, 6150, 6150, 6270, 6271, 6151, 6151, 6271, 6272, 6152, 6152, 6272, 6273, 6153, 6153, 6273, 6274, 6154, 6154, 6274, 6275, 6155, 6155, 6275, 6276, 6156, 6156, 6276, 6277, 6157, 6157, 6277, 6278, 6158, 6158, 6278, 6279, 6159, 6159, 6279, 6280, 6160, 6160, 6280, 6281, 6161, 6161, 6281, 6282, 6162, 6162, 6282, 6283, 6163, 6163, 6283, 6284, 6164, 6164, 6284, 6285, 6165, 6165, 6285, 6286, 6166, 6166, 6286, 6287, 6167, 6167, 6287, 6288, 6168, 6168, 6288, 6289, 6169, 6169, 6289, 6290, 6170, 6170, 6290, 6291, 6171, 6171, 6291, 6292, 6172, 6172, 6292, 6293, 6173, 6173, 6293, 6294, 6174, 6174, 6294, 6295, 6175, 6175, 6295, 6296, 6176, 6176, 6296, 6297, 6177, 6177, 6297, 6298, 6178, 6178, 6298, 6299, 6179, 6179, 6299, 6300, 6180, 6180, 6300, 6301, 6181, 6181, 6301, 6302, 6182, 6182, 6302, 6303, 6183, 6183, 6303, 6304, 6184, 6184, 6304, 6305, 6185, 6185, 6305, 6306, 6186, 6186, 6306, 6307, 6187, 6187, 6307, 6308, 6188, 6188, 6308, 6309, 6189, 6189, 6309, 6310, 6190, 6190, 6310, 6311, 6191, 6191, 6311, 6312, 6192, 6192, 6312, 6313, 6193, 6193, 6313, 6314, 6194, 6194, 6314, 6315, 6195, 6195, 6315, 6316, 6196, 6196, 6316, 6317, 6197, 6197, 6317, 6318, 6198, 6198, 6318, 6319, 6199, 6199, 6319, 6320, 6200, 6200, 6320, 6321, 6201, 6201, 6321, 6322, 6202, 6202, 6322, 6323, 6203, 6203, 6323, 6324, 6204, 6204, 6324, 6325, 6205, 6205, 6325, 6326, 6206, 6206, 6326, 6327, 6207, 6207, 6327, 6328, 6208, 6208, 6328, 6329, 6209, 6209, 6329, 6330, 6210, 6210, 6330, 6331, 6211, 6211, 6331, 6332, 6212, 6212, 6332, 6333, 6213, 6213, 6333, 6334, 6214, 6214, 6334, 6335, 6215, 6215, 6335, 6336, 6216, 6216, 6336, 6337, 6217, 6217, 6337, 6338, 6218, 6218, 6338, 6339, 6219, 6219, 6339, 6340, 6220, 6220, 6340, 6341, 6221, 6221, 6341, 6342, 6222, 6222, 6342, 6343, 6223, 6223, 6343, 6344, 6224, 6224, 6344, 6345, 6225, 6225, 6345, 6346, 6226, 6226, 6346, 6347, 6227, 6227, 6347, 6348, 6228, 6228, 6348, 6349, 6229, 6229, 6349, 6350, 6230, 6230, 6350, 6351, 6231, 6231, 6351, 6352, 6232, 6232, 6352, 6353, 6233, 6233, 6353, 6354, 6234, 6234, 6354, 6355, 6235, 6235, 6355, 6356, 6236, 6236, 6356, 6357, 6237, 6237, 6357, 6358, 6238, 6238, 6358, 6359, 6239, 6239, 6359, 6360, 6240, 6240, 6360, 6241, 6121, 6241, 6361, 6362, 6242, 6242, 6362, 6363, 6243, 6243, 6363, 6364, 6244, 6244, 6364, 6365, 6245, 6245, 6365, 6366, 6246, 6246, 6366, 6367, 6247, 6247, 6367, 6368, 6248, 6248, 6368, 6369, 6249, 6249, 6369, 6370, 6250, 6250, 6370, 6371, 6251, 6251, 6371, 6372, 6252, 6252, 6372, 6373, 6253, 6253, 6373, 6374, 6254, 6254, 6374, 6375, 6255, 6255, 6375, 6376, 6256, 6256, 6376, 6377, 6257, 6257, 6377, 6378, 6258, 6258, 6378, 6379, 6259, 6259, 6379, 6380, 6260, 6260, 6380, 6381, 6261, 6261, 6381, 6382, 6262, 6262, 6382, 6383, 6263, 6263, 6383, 6384, 6264, 6264, 6384, 6385, 6265, 6265, 6385, 6386, 6266, 6266, 6386, 6387, 6267, 6267, 6387, 6388, 6268, 6268, 6388, 6389, 6269, 6269, 6389, 6390, 6270, 6270, 6390, 6391, 6271, 6271, 6391, 6392, 6272, 6272, 6392, 6393, 6273, 6273, 6393, 6394, 6274, 6274, 6394, 6395, 6275, 6275, 6395, 6396, 6276, 6276, 6396, 6397, 6277, 6277, 6397, 6398, 6278, 6278, 6398, 6399, 6279, 6279, 6399, 6400, 6280, 6280, 6400, 6401, 6281, 6281, 6401, 6402, 6282, 6282, 6402, 6403, 6283, 6283, 6403, 6404, 6284, 6284, 6404, 6405, 6285, 6285, 6405, 6406, 6286, 6286, 6406, 6407, 6287, 6287, 6407, 6408, 6288, 6288, 6408, 6409, 6289, 6289, 6409, 6410, 6290, 6290, 6410, 6411, 6291, 6291, 6411, 6412, 6292, 6292, 6412, 6413, 6293, 6293, 6413, 6414, 6294, 6294, 6414, 6415, 6295, 6295, 6415, 6416, 6296, 6296, 6416, 6417, 6297, 6297, 6417, 6418, 6298, 6298, 6418, 6419, 6299, 6299, 6419, 6420, 6300, 6300, 6420, 6421, 6301, 6301, 6421, 6422, 6302, 6302, 6422, 6423, 6303, 6303, 6423, 6424, 6304, 6304, 6424, 6425, 6305, 6305, 6425, 6426, 6306, 6306, 6426, 6427, 6307, 6307, 6427, 6428, 6308, 6308, 6428, 6429, 6309, 6309, 6429, 6430, 6310, 6310, 6430, 6431, 6311, 6311, 6431, 6432, 6312, 6312, 6432, 6433, 6313, 6313, 6433, 6434, 6314, 6314, 6434, 6435, 6315, 6315, 6435, 6436, 6316, 6316, 6436, 6437, 6317, 6317, 6437, 6438, 6318, 6318, 6438, 6439, 6319, 6319, 6439, 6440, 6320, 6320, 6440, 6441, 6321, 6321, 6441, 6442, 6322, 6322, 6442, 6443, 6323, 6323, 6443, 6444, 6324, 6324, 6444, 6445, 6325, 6325, 6445, 6446, 6326, 6326, 6446, 6447, 6327, 6327, 6447, 6448, 6328, 6328, 6448, 6449, 6329, 6329, 6449, 6450, 6330, 6330, 6450, 6451, 6331, 6331, 6451, 6452, 6332, 6332, 6452, 6453, 6333, 6333, 6453, 6454, 6334, 6334, 6454, 6455, 6335, 6335, 6455, 6456, 6336, 6336, 6456, 6457, 6337, 6337, 6457, 6458, 6338, 6338, 6458, 6459, 6339, 6339, 6459, 6460, 6340, 6340, 6460, 6461, 6341, 6341, 6461, 6462, 6342, 6342, 6462, 6463, 6343, 6343, 6463, 6464, 6344, 6344, 6464, 6465, 6345, 6345, 6465, 6466, 6346, 6346, 6466, 6467, 6347, 6347, 6467, 6468, 6348, 6348, 6468, 6469, 6349, 6349, 6469, 6470, 6350, 6350, 6470, 6471, 6351, 6351, 6471, 6472, 6352, 6352, 6472, 6473, 6353, 6353, 6473, 6474, 6354, 6354, 6474, 6475, 6355, 6355, 6475, 6476, 6356, 6356, 6476, 6477, 6357, 6357, 6477, 6478, 6358, 6358, 6478, 6479, 6359, 6359, 6479, 6480, 6360, 6360, 6480, 6361, 6241, 6361, 6481, 6482, 6362, 6362, 6482, 6483, 6363, 6363, 6483, 6484, 6364, 6364, 6484, 6485, 6365, 6365, 6485, 6486, 6366, 6366, 6486, 6487, 6367, 6367, 6487, 6488, 6368, 6368, 6488, 6489, 6369, 6369, 6489, 6490, 6370, 6370, 6490, 6491, 6371, 6371, 6491, 6492, 6372, 6372, 6492, 6493, 6373, 6373, 6493, 6494, 6374, 6374, 6494, 6495, 6375, 6375, 6495, 6496, 6376, 6376, 6496, 6497, 6377, 6377, 6497, 6498, 6378, 6378, 6498, 6499, 6379, 6379, 6499, 6500, 6380, 6380, 6500, 6501, 6381, 6381, 6501, 6502, 6382, 6382, 6502, 6503, 6383, 6383, 6503, 6504, 6384, 6384, 6504, 6505, 6385, 6385, 6505, 6506, 6386, 6386, 6506, 6507, 6387, 6387, 6507, 6508, 6388, 6388, 6508, 6509, 6389, 6389, 6509, 6510, 6390, 6390, 6510, 6511, 6391, 6391, 6511, 6512, 6392, 6392, 6512, 6513, 6393, 6393, 6513, 6514, 6394, 6394, 6514, 6515, 6395, 6395, 6515, 6516, 6396, 6396, 6516, 6517, 6397, 6397, 6517, 6518, 6398, 6398, 6518, 6519, 6399, 6399, 6519, 6520, 6400, 6400, 6520, 6521, 6401, 6401, 6521, 6522, 6402, 6402, 6522, 6523, 6403, 6403, 6523, 6524, 6404, 6404, 6524, 6525, 6405, 6405, 6525, 6526, 6406, 6406, 6526, 6527, 6407, 6407, 6527, 6528, 6408, 6408, 6528, 6529, 6409, 6409, 6529, 6530, 6410, 6410, 6530, 6531, 6411, 6411, 6531, 6532, 6412, 6412, 6532, 6533, 6413, 6413, 6533, 6534, 6414, 6414, 6534, 6535, 6415, 6415, 6535, 6536, 6416, 6416, 6536, 6537, 6417, 6417, 6537, 6538, 6418, 6418, 6538, 6539, 6419, 6419, 6539, 6540, 6420, 6420, 6540, 6541, 6421, 6421, 6541, 6542, 6422, 6422, 6542, 6543, 6423, 6423, 6543, 6544, 6424, 6424, 6544, 6545, 6425, 6425, 6545, 6546, 6426, 6426, 6546, 6547, 6427, 6427, 6547, 6548, 6428, 6428, 6548, 6549, 6429, 6429, 6549, 6550, 6430, 6430, 6550, 6551, 6431, 6431, 6551, 6552, 6432, 6432, 6552, 6553, 6433, 6433, 6553, 6554, 6434, 6434, 6554, 6555, 6435, 6435, 6555, 6556, 6436, 6436, 6556, 6557, 6437, 6437, 6557, 6558, 6438, 6438, 6558, 6559, 6439, 6439, 6559, 6560, 6440, 6440, 6560, 6561, 6441, 6441, 6561, 6562, 6442, 6442, 6562, 6563, 6443, 6443, 6563, 6564, 6444, 6444, 6564, 6565, 6445, 6445, 6565, 6566, 6446, 6446, 6566, 6567, 6447, 6447, 6567, 6568, 6448, 6448, 6568, 6569, 6449, 6449, 6569, 6570, 6450, 6450, 6570, 6571, 6451, 6451, 6571, 6572, 6452, 6452, 6572, 6573, 6453, 6453, 6573, 6574, 6454, 6454, 6574, 6575, 6455, 6455, 6575, 6576, 6456, 6456, 6576, 6577, 6457, 6457, 6577, 6578, 6458, 6458, 6578, 6579, 6459, 6459, 6579, 6580, 6460, 6460, 6580, 6581, 6461, 6461, 6581, 6582, 6462, 6462, 6582, 6583, 6463, 6463, 6583, 6584, 6464, 6464, 6584, 6585, 6465, 6465, 6585, 6586, 6466, 6466, 6586, 6587, 6467, 6467, 6587, 6588, 6468, 6468, 6588, 6589, 6469, 6469, 6589, 6590, 6470, 6470, 6590, 6591, 6471, 6471, 6591, 6592, 6472, 6472, 6592, 6593, 6473, 6473, 6593, 6594, 6474, 6474, 6594, 6595, 6475, 6475, 6595, 6596, 6476, 6476, 6596, 6597, 6477, 6477, 6597, 6598, 6478, 6478, 6598, 6599, 6479, 6479, 6599, 6600, 6480, 6480, 6600, 6481, 6361, 6481, 6601, 6602, 6482, 6482, 6602, 6603, 6483, 6483, 6603, 6604, 6484, 6484, 6604, 6605, 6485, 6485, 6605, 6606, 6486, 6486, 6606, 6607, 6487, 6487, 6607, 6608, 6488, 6488, 6608, 6609, 6489, 6489, 6609, 6610, 6490, 6490, 6610, 6611, 6491, 6491, 6611, 6612, 6492, 6492, 6612, 6613, 6493, 6493, 6613, 6614, 6494, 6494, 6614, 6615, 6495, 6495, 6615, 6616, 6496, 6496, 6616, 6617, 6497, 6497, 6617, 6618, 6498, 6498, 6618, 6619, 6499, 6499, 6619, 6620, 6500, 6500, 6620, 6621, 6501, 6501, 6621, 6622, 6502, 6502, 6622, 6623, 6503, 6503, 6623, 6624, 6504, 6504, 6624, 6625, 6505, 6505, 6625, 6626, 6506, 6506, 6626, 6627, 6507, 6507, 6627, 6628, 6508, 6508, 6628, 6629, 6509, 6509, 6629, 6630, 6510, 6510, 6630, 6631, 6511, 6511, 6631, 6632, 6512, 6512, 6632, 6633, 6513, 6513, 6633, 6634, 6514, 6514, 6634, 6635, 6515, 6515, 6635, 6636, 6516, 6516, 6636, 6637, 6517, 6517, 6637, 6638, 6518, 6518, 6638, 6639, 6519, 6519, 6639, 6640, 6520, 6520, 6640, 6641, 6521, 6521, 6641, 6642, 6522, 6522, 6642, 6643, 6523, 6523, 6643, 6644, 6524, 6524, 6644, 6645, 6525, 6525, 6645, 6646, 6526, 6526, 6646, 6647, 6527, 6527, 6647, 6648, 6528, 6528, 6648, 6649, 6529, 6529, 6649, 6650, 6530, 6530, 6650, 6651, 6531, 6531, 6651, 6652, 6532, 6532, 6652, 6653, 6533, 6533, 6653, 6654, 6534, 6534, 6654, 6655, 6535, 6535, 6655, 6656, 6536, 6536, 6656, 6657, 6537, 6537, 6657, 6658, 6538, 6538, 6658, 6659, 6539, 6539, 6659, 6660, 6540, 6540, 6660, 6661, 6541, 6541, 6661, 6662, 6542, 6542, 6662, 6663, 6543, 6543, 6663, 6664, 6544, 6544, 6664, 6665, 6545, 6545, 6665, 6666, 6546, 6546, 6666, 6667, 6547, 6547, 6667, 6668, 6548, 6548, 6668, 6669, 6549, 6549, 6669, 6670, 6550, 6550, 6670, 6671, 6551, 6551, 6671, 6672, 6552, 6552, 6672, 6673, 6553, 6553, 6673, 6674, 6554, 6554, 6674, 6675, 6555, 6555, 6675, 6676, 6556, 6556, 6676, 6677, 6557, 6557, 6677, 6678, 6558, 6558, 6678, 6679, 6559, 6559, 6679, 6680, 6560, 6560, 6680, 6681, 6561, 6561, 6681, 6682, 6562, 6562, 6682, 6683, 6563, 6563, 6683, 6684, 6564, 6564, 6684, 6685, 6565, 6565, 6685, 6686, 6566, 6566, 6686, 6687, 6567, 6567, 6687, 6688, 6568, 6568, 6688, 6689, 6569, 6569, 6689, 6690, 6570, 6570, 6690, 6691, 6571, 6571, 6691, 6692, 6572, 6572, 6692, 6693, 6573, 6573, 6693, 6694, 6574, 6574, 6694, 6695, 6575, 6575, 6695, 6696, 6576, 6576, 6696, 6697, 6577, 6577, 6697, 6698, 6578, 6578, 6698, 6699, 6579, 6579, 6699, 6700, 6580, 6580, 6700, 6701, 6581, 6581, 6701, 6702, 6582, 6582, 6702, 6703, 6583, 6583, 6703, 6704, 6584, 6584, 6704, 6705, 6585, 6585, 6705, 6706, 6586, 6586, 6706, 6707, 6587, 6587, 6707, 6708, 6588, 6588, 6708, 6709, 6589, 6589, 6709, 6710, 6590, 6590, 6710, 6711, 6591, 6591, 6711, 6712, 6592, 6592, 6712, 6713, 6593, 6593, 6713, 6714, 6594, 6594, 6714, 6715, 6595, 6595, 6715, 6716, 6596, 6596, 6716, 6717, 6597, 6597, 6717, 6718, 6598, 6598, 6718, 6719, 6599, 6599, 6719, 6720, 6600, 6600, 6720, 6601, 6481, 6601, 6721, 6722, 6602, 6602, 6722, 6723, 6603, 6603, 6723, 6724, 6604, 6604, 6724, 6725, 6605, 6605, 6725, 6726, 6606, 6606, 6726, 6727, 6607, 6607, 6727, 6728, 6608, 6608, 6728, 6729, 6609, 6609, 6729, 6730, 6610, 6610, 6730, 6731, 6611, 6611, 6731, 6732, 6612, 6612, 6732, 6733, 6613, 6613, 6733, 6734, 6614, 6614, 6734, 6735, 6615, 6615, 6735, 6736, 6616, 6616, 6736, 6737, 6617, 6617, 6737, 6738, 6618, 6618, 6738, 6739, 6619, 6619, 6739, 6740, 6620, 6620, 6740, 6741, 6621, 6621, 6741, 6742, 6622, 6622, 6742, 6743, 6623, 6623, 6743, 6744, 6624, 6624, 6744, 6745, 6625, 6625, 6745, 6746, 6626, 6626, 6746, 6747, 6627, 6627, 6747, 6748, 6628, 6628, 6748, 6749, 6629, 6629, 6749, 6750, 6630, 6630, 6750, 6751, 6631, 6631, 6751, 6752, 6632, 6632, 6752, 6753, 6633, 6633, 6753, 6754, 6634, 6634, 6754, 6755, 6635, 6635, 6755, 6756, 6636, 6636, 6756, 6757, 6637, 6637, 6757, 6758, 6638, 6638, 6758, 6759, 6639, 6639, 6759, 6760, 6640, 6640, 6760, 6761, 6641, 6641, 6761, 6762, 6642, 6642, 6762, 6763, 6643, 6643, 6763, 6764, 6644, 6644, 6764, 6765, 6645, 6645, 6765, 6766, 6646, 6646, 6766, 6767, 6647, 6647, 6767, 6768, 6648, 6648, 6768, 6769, 6649, 6649, 6769, 6770, 6650, 6650, 6770, 6771, 6651, 6651, 6771, 6772, 6652, 6652, 6772, 6773, 6653, 6653, 6773, 6774, 6654, 6654, 6774, 6775, 6655, 6655, 6775, 6776, 6656, 6656, 6776, 6777, 6657, 6657, 6777, 6778, 6658, 6658, 6778, 6779, 6659, 6659, 6779, 6780, 6660, 6660, 6780, 6781, 6661, 6661, 6781, 6782, 6662, 6662, 6782, 6783, 6663, 6663, 6783, 6784, 6664, 6664, 6784, 6785, 6665, 6665, 6785, 6786, 6666, 6666, 6786, 6787, 6667, 6667, 6787, 6788, 6668, 6668, 6788, 6789, 6669, 6669, 6789, 6790, 6670, 6670, 6790, 6791, 6671, 6671, 6791, 6792, 6672, 6672, 6792, 6793, 6673, 6673, 6793, 6794, 6674, 6674, 6794, 6795, 6675, 6675, 6795, 6796, 6676, 6676, 6796, 6797, 6677, 6677, 6797, 6798, 6678, 6678, 6798, 6799, 6679, 6679, 6799, 6800, 6680, 6680, 6800, 6801, 6681, 6681, 6801, 6802, 6682, 6682, 6802, 6803, 6683, 6683, 6803, 6804, 6684, 6684, 6804, 6805, 6685, 6685, 6805, 6806, 6686, 6686, 6806, 6807, 6687, 6687, 6807, 6808, 6688, 6688, 6808, 6809, 6689, 6689, 6809, 6810, 6690, 6690, 6810, 6811, 6691, 6691, 6811, 6812, 6692, 6692, 6812, 6813, 6693, 6693, 6813, 6814, 6694, 6694, 6814, 6815, 6695, 6695, 6815, 6816, 6696, 6696, 6816, 6817, 6697, 6697, 6817, 6818, 6698, 6698, 6818, 6819, 6699, 6699, 6819, 6820, 6700, 6700, 6820, 6821, 6701, 6701, 6821, 6822, 6702, 6702, 6822, 6823, 6703, 6703, 6823, 6824, 6704, 6704, 6824, 6825, 6705, 6705, 6825, 6826, 6706, 6706, 6826, 6827, 6707, 6707, 6827, 6828, 6708, 6708, 6828, 6829, 6709, 6709, 6829, 6830, 6710, 6710, 6830, 6831, 6711, 6711, 6831, 6832, 6712, 6712, 6832, 6833, 6713, 6713, 6833, 6834, 6714, 6714, 6834, 6835, 6715, 6715, 6835, 6836, 6716, 6716, 6836, 6837, 6717, 6717, 6837, 6838, 6718, 6718, 6838, 6839, 6719, 6719, 6839, 6840, 6720, 6720, 6840, 6721, 6601, 6721, 6841, 6842, 6722, 6722, 6842, 6843, 6723, 6723, 6843, 6844, 6724, 6724, 6844, 6845, 6725, 6725, 6845, 6846, 6726, 6726, 6846, 6847, 6727, 6727, 6847, 6848, 6728, 6728, 6848, 6849, 6729, 6729, 6849, 6850, 6730, 6730, 6850, 6851, 6731, 6731, 6851, 6852, 6732, 6732, 6852, 6853, 6733, 6733, 6853, 6854, 6734, 6734, 6854, 6855, 6735, 6735, 6855, 6856, 6736, 6736, 6856, 6857, 6737, 6737, 6857, 6858, 6738, 6738, 6858, 6859, 6739, 6739, 6859, 6860, 6740, 6740, 6860, 6861, 6741, 6741, 6861, 6862, 6742, 6742, 6862, 6863, 6743, 6743, 6863, 6864, 6744, 6744, 6864, 6865, 6745, 6745, 6865, 6866, 6746, 6746, 6866, 6867, 6747, 6747, 6867, 6868, 6748, 6748, 6868, 6869, 6749, 6749, 6869, 6870, 6750, 6750, 6870, 6871, 6751, 6751, 6871, 6872, 6752, 6752, 6872, 6873, 6753, 6753, 6873, 6874, 6754, 6754, 6874, 6875, 6755, 6755, 6875, 6876, 6756, 6756, 6876, 6877, 6757, 6757, 6877, 6878, 6758, 6758, 6878, 6879, 6759, 6759, 6879, 6880, 6760, 6760, 6880, 6881, 6761, 6761, 6881, 6882, 6762, 6762, 6882, 6883, 6763, 6763, 6883, 6884, 6764, 6764, 6884, 6885, 6765, 6765, 6885, 6886, 6766, 6766, 6886, 6887, 6767, 6767, 6887, 6888, 6768, 6768, 6888, 6889, 6769, 6769, 6889, 6890, 6770, 6770, 6890, 6891, 6771, 6771, 6891, 6892, 6772, 6772, 6892, 6893, 6773, 6773, 6893, 6894, 6774, 6774, 6894, 6895, 6775, 6775, 6895, 6896, 6776, 6776, 6896, 6897, 6777, 6777, 6897, 6898, 6778, 6778, 6898, 6899, 6779, 6779, 6899, 6900, 6780, 6780, 6900, 6901, 6781, 6781, 6901, 6902, 6782, 6782, 6902, 6903, 6783, 6783, 6903, 6904, 6784, 6784, 6904, 6905, 6785, 6785, 6905, 6906, 6786, 6786, 6906, 6907, 6787, 6787, 6907, 6908, 6788, 6788, 6908, 6909, 6789, 6789, 6909, 6910, 6790, 6790, 6910, 6911, 6791, 6791, 6911, 6912, 6792, 6792, 6912, 6913, 6793, 6793, 6913, 6914, 6794, 6794, 6914, 6915, 6795, 6795, 6915, 6916, 6796, 6796, 6916, 6917, 6797, 6797, 6917, 6918, 6798, 6798, 6918, 6919, 6799, 6799, 6919, 6920, 6800, 6800, 6920, 6921, 6801, 6801, 6921, 6922, 6802, 6802, 6922, 6923, 6803, 6803, 6923, 6924, 6804, 6804, 6924, 6925, 6805, 6805, 6925, 6926, 6806, 6806, 6926, 6927, 6807, 6807, 6927, 6928, 6808, 6808, 6928, 6929, 6809, 6809, 6929, 6930, 6810, 6810, 6930, 6931, 6811, 6811, 6931, 6932, 6812, 6812, 6932, 6933, 6813, 6813, 6933, 6934, 6814, 6814, 6934, 6935, 6815, 6815, 6935, 6936, 6816, 6816, 6936, 6937, 6817, 6817, 6937, 6938, 6818, 6818, 6938, 6939, 6819, 6819, 6939, 6940, 6820, 6820, 6940, 6941, 6821, 6821, 6941, 6942, 6822, 6822, 6942, 6943, 6823, 6823, 6943, 6944, 6824, 6824, 6944, 6945, 6825, 6825, 6945, 6946, 6826, 6826, 6946, 6947, 6827, 6827, 6947, 6948, 6828, 6828, 6948, 6949, 6829, 6829, 6949, 6950, 6830, 6830, 6950, 6951, 6831, 6831, 6951, 6952, 6832, 6832, 6952, 6953, 6833, 6833, 6953, 6954, 6834, 6834, 6954, 6955, 6835, 6835, 6955, 6956, 6836, 6836, 6956, 6957, 6837, 6837, 6957, 6958, 6838, 6838, 6958, 6959, 6839, 6839, 6959, 6960, 6840, 6840, 6960, 6841, 6721, 6841, 6961, 6962, 6842, 6842, 6962, 6963, 6843, 6843, 6963, 6964, 6844, 6844, 6964, 6965, 6845, 6845, 6965, 6966, 6846, 6846, 6966, 6967, 6847, 6847, 6967, 6968, 6848, 6848, 6968, 6969, 6849, 6849, 6969, 6970, 6850, 6850, 6970, 6971, 6851, 6851, 6971, 6972, 6852, 6852, 6972, 6973, 6853, 6853, 6973, 6974, 6854, 6854, 6974, 6975, 6855, 6855, 6975, 6976, 6856, 6856, 6976, 6977, 6857, 6857, 6977, 6978, 6858, 6858, 6978, 6979, 6859, 6859, 6979, 6980, 6860, 6860, 6980, 6981, 6861, 6861, 6981, 6982, 6862, 6862, 6982, 6983, 6863, 6863, 6983, 6984, 6864, 6864, 6984, 6985, 6865, 6865, 6985, 6986, 6866, 6866, 6986, 6987, 6867, 6867, 6987, 6988, 6868, 6868, 6988, 6989, 6869, 6869, 6989, 6990, 6870, 6870, 6990, 6991, 6871, 6871, 6991, 6992, 6872, 6872, 6992, 6993, 6873, 6873, 6993, 6994, 6874, 6874, 6994, 6995, 6875, 6875, 6995, 6996, 6876, 6876, 6996, 6997, 6877, 6877, 6997, 6998, 6878, 6878, 6998, 6999, 6879, 6879, 6999, 7000, 6880, 6880, 7000, 7001, 6881, 6881, 7001, 7002, 6882, 6882, 7002, 7003, 6883, 6883, 7003, 7004, 6884, 6884, 7004, 7005, 6885, 6885, 7005, 7006, 6886, 6886, 7006, 7007, 6887, 6887, 7007, 7008, 6888, 6888, 7008, 7009, 6889, 6889, 7009, 7010, 6890, 6890, 7010, 7011, 6891, 6891, 7011, 7012, 6892, 6892, 7012, 7013, 6893, 6893, 7013, 7014, 6894, 6894, 7014, 7015, 6895, 6895, 7015, 7016, 6896, 6896, 7016, 7017, 6897, 6897, 7017, 7018, 6898, 6898, 7018, 7019, 6899, 6899, 7019, 7020, 6900, 6900, 7020, 7021, 6901, 6901, 7021, 7022, 6902, 6902, 7022, 7023, 6903, 6903, 7023, 7024, 6904, 6904, 7024, 7025, 6905, 6905, 7025, 7026, 6906, 6906, 7026, 7027, 6907, 6907, 7027, 7028, 6908, 6908, 7028, 7029, 6909, 6909, 7029, 7030, 6910, 6910, 7030, 7031, 6911, 6911, 7031, 7032, 6912, 6912, 7032, 7033, 6913, 6913, 7033, 7034, 6914, 6914, 7034, 7035, 6915, 6915, 7035, 7036, 6916, 6916, 7036, 7037, 6917, 6917, 7037, 7038, 6918, 6918, 7038, 7039, 6919, 6919, 7039, 7040, 6920, 6920, 7040, 7041, 6921, 6921, 7041, 7042, 6922, 6922, 7042, 7043, 6923, 6923, 7043, 7044, 6924, 6924, 7044, 7045, 6925, 6925, 7045, 7046, 6926, 6926, 7046, 7047, 6927, 6927, 7047, 7048, 6928, 6928, 7048, 7049, 6929, 6929, 7049, 7050, 6930, 6930, 7050, 7051, 6931, 6931, 7051, 7052, 6932, 6932, 7052, 7053, 6933, 6933, 7053, 7054, 6934, 6934, 7054, 7055, 6935, 6935, 7055, 7056, 6936, 6936, 7056, 7057, 6937, 6937, 7057, 7058, 6938, 6938, 7058, 7059, 6939, 6939, 7059, 7060, 6940, 6940, 7060, 7061, 6941, 6941, 7061, 7062, 6942, 6942, 7062, 7063, 6943, 6943, 7063, 7064, 6944, 6944, 7064, 7065, 6945, 6945, 7065, 7066, 6946, 6946, 7066, 7067, 6947, 6947, 7067, 7068, 6948, 6948, 7068, 7069, 6949, 6949, 7069, 7070, 6950, 6950, 7070, 7071, 6951, 6951, 7071, 7072, 6952, 6952, 7072, 7073, 6953, 6953, 7073, 7074, 6954, 6954, 7074, 7075, 6955, 6955, 7075, 7076, 6956, 6956, 7076, 7077, 6957, 6957, 7077, 7078, 6958, 6958, 7078, 7079, 6959, 6959, 7079, 7080, 6960, 6960, 7080, 6961, 6841, 7081, 6962, 6961, 7081, 6963, 6962, 7081, 6964, 6963, 7081, 6965, 6964, 7081, 6966, 6965, 7081, 6967, 6966, 7081, 6968, 6967, 7081, 6969, 6968, 7081, 6970, 6969, 7081, 6971, 6970, 7081, 6972, 6971, 7081, 6973, 6972, 7081, 6974, 6973, 7081, 6975, 6974, 7081, 6976, 6975, 7081, 6977, 6976, 7081, 6978, 6977, 7081, 6979, 6978, 7081, 6980, 6979, 7081, 6981, 6980, 7081, 6982, 6981, 7081, 6983, 6982, 7081, 6984, 6983, 7081, 6985, 6984, 7081, 6986, 6985, 7081, 6987, 6986, 7081, 6988, 6987, 7081, 6989, 6988, 7081, 6990, 6989, 7081, 6991, 6990, 7081, 6992, 6991, 7081, 6993, 6992, 7081, 6994, 6993, 7081, 6995, 6994, 7081, 6996, 6995, 7081, 6997, 6996, 7081, 6998, 6997, 7081, 6999, 6998, 7081, 7000, 6999, 7081, 7001, 7000, 7081, 7002, 7001, 7081, 7003, 7002, 7081, 7004, 7003, 7081, 7005, 7004, 7081, 7006, 7005, 7081, 7007, 7006, 7081, 7008, 7007, 7081, 7009, 7008, 7081, 7010, 7009, 7081, 7011, 7010, 7081, 7012, 7011, 7081, 7013, 7012, 7081, 7014, 7013, 7081, 7015, 7014, 7081, 7016, 7015, 7081, 7017, 7016, 7081, 7018, 7017, 7081, 7019, 7018, 7081, 7020, 7019, 7081, 7021, 7020, 7081, 7022, 7021, 7081, 7023, 7022, 7081, 7024, 7023, 7081, 7025, 7024, 7081, 7026, 7025, 7081, 7027, 7026, 7081, 7028, 7027, 7081, 7029, 7028, 7081, 7030, 7029, 7081, 7031, 7030, 7081, 7032, 7031, 7081, 7033, 7032, 7081, 7034, 7033, 7081, 7035, 7034, 7081, 7036, 7035, 7081, 7037, 7036, 7081, 7038, 7037, 7081, 7039, 7038, 7081, 7040, 7039, 7081, 7041, 7040, 7081, 7042, 7041, 7081, 7043, 7042, 7081, 7044, 7043, 7081, 7045, 7044, 7081, 7046, 7045, 7081, 7047, 7046, 7081, 7048, 7047, 7081, 7049, 7048, 7081, 7050, 7049, 7081, 7051, 7050, 7081, 7052, 7051, 7081, 7053, 7052, 7081, 7054, 7053, 7081, 7055, 7054, 7081, 7056, 7055, 7081, 7057, 7056, 7081, 7058, 7057, 7081, 7059, 7058, 7081, 7060, 7059, 7081, 7061, 7060, 7081, 7062, 7061, 7081, 7063, 7062, 7081, 7064, 7063, 7081, 7065, 7064, 7081, 7066, 7065, 7081, 7067, 7066, 7081, 7068, 7067, 7081, 7069, 7068, 7081, 7070, 7069, 7081, 7071, 7070, 7081, 7072, 7071, 7081, 7073, 7072, 7081, 7074, 7073, 7081, 7075, 7074, 7081, 7076, 7075, 7081, 7077, 7076, 7081, 7078, 7077, 7081, 7079, 7078, 7081, 7080, 7079, 7081, 6961, 7080] rel material:binding = </World/Looks/OmniGlass> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, -50, 0), (2.616798, -49.931477, 0), (2.6132116, -49.931477, 0.13695261), (0, -50, 0), (2.6132116, -49.931477, 0.13695261), (2.6024628, -49.931477, 0.27352986), (0, -50, 0), (2.6024628, -49.931477, 0.27352986), (2.5845807, -49.931477, 0.40935737), (0, -50, 0), (2.5845807, -49.931477, 0.40935737), (2.5596144, -49.931477, 0.54406285), (0, -50, 0), (2.5596144, -49.931477, 0.54406285), (2.5276325, -49.931477, 0.6772771), (0, -50, 0), (2.5276325, -49.931477, 0.6772771), (2.4887226, -49.931477, 0.808635), (0, -50, 0), (2.4887226, -49.931477, 0.808635), (2.4429913, -49.931477, 0.93777645), (0, -50, 0), (2.4429913, -49.931477, 0.93777645), (2.3905637, -49.931477, 1.0643475), (0, -50, 0), (2.3905637, -49.931477, 1.0643475), (2.331584, -49.931477, 1.1880014), (0, -50, 0), (2.331584, -49.931477, 1.1880014), (2.2662134, -49.931477, 1.308399), (0, -50, 0), (2.2662134, -49.931477, 1.308399), (2.1946313, -49.931477, 1.4252102), (0, -50, 0), (2.1946313, -49.931477, 1.4252102), (2.117034, -49.931477, 1.5381151), (0, -50, 0), (2.117034, -49.931477, 1.5381151), (2.033634, -49.931477, 1.6468042), (0, -50, 0), (2.033634, -49.931477, 1.6468042), (1.9446597, -49.931477, 1.7509795), (0, -50, 0), (1.9446597, -49.931477, 1.7509795), (1.8503555, -49.931477, 1.8503555), (0, -50, 0), (1.8503555, -49.931477, 1.8503555), (1.7509795, -49.931477, 1.9446597), (0, -50, 0), (1.7509795, -49.931477, 1.9446597), (1.6468042, -49.931477, 2.033634), (0, -50, 0), (1.6468042, -49.931477, 2.033634), (1.5381151, -49.931477, 2.117034), (0, -50, 0), (1.5381151, -49.931477, 2.117034), (1.4252102, -49.931477, 2.1946313), (0, -50, 0), (1.4252102, -49.931477, 2.1946313), (1.308399, -49.931477, 2.2662134), (0, -50, 0), (1.308399, -49.931477, 2.2662134), (1.1880014, -49.931477, 2.331584), (0, -50, 0), (1.1880014, -49.931477, 2.331584), (1.0643475, -49.931477, 2.3905637), (0, -50, 0), (1.0643475, -49.931477, 2.3905637), (0.93777645, -49.931477, 2.4429913), (0, -50, 0), (0.93777645, -49.931477, 2.4429913), (0.808635, -49.931477, 2.4887226), (0, -50, 0), (0.808635, -49.931477, 2.4887226), (0.6772771, -49.931477, 2.5276325), (0, -50, 0), (0.6772771, -49.931477, 2.5276325), (0.54406285, -49.931477, 2.5596144), (0, -50, 0), (0.54406285, -49.931477, 2.5596144), (0.40935737, -49.931477, 2.5845807), (0, -50, 0), (0.40935737, -49.931477, 2.5845807), (0.27352986, -49.931477, 2.6024628), (0, -50, 0), (0.27352986, -49.931477, 2.6024628), (0.13695261, -49.931477, 2.6132116), (0, -50, 0), (0.13695261, -49.931477, 2.6132116), (1.6023265e-16, -49.931477, 2.616798), (0, -50, 0), (1.6023265e-16, -49.931477, 2.616798), (-0.13695261, -49.931477, 2.6132116), (0, -50, 0), (-0.13695261, -49.931477, 2.6132116), (-0.27352986, -49.931477, 2.6024628), (0, -50, 0), (-0.27352986, -49.931477, 2.6024628), (-0.40935737, -49.931477, 2.5845807), (0, -50, 0), (-0.40935737, -49.931477, 2.5845807), (-0.54406285, -49.931477, 2.5596144), (0, -50, 0), (-0.54406285, -49.931477, 2.5596144), (-0.6772771, -49.931477, 2.5276325), (0, -50, 0), (-0.6772771, -49.931477, 2.5276325), (-0.808635, -49.931477, 2.4887226), (0, -50, 0), (-0.808635, -49.931477, 2.4887226), (-0.93777645, -49.931477, 2.4429913), (0, -50, 0), (-0.93777645, -49.931477, 2.4429913), (-1.0643475, -49.931477, 2.3905637), (0, -50, 0), (-1.0643475, -49.931477, 2.3905637), (-1.1880014, -49.931477, 2.331584), (0, -50, 0), (-1.1880014, -49.931477, 2.331584), (-1.308399, -49.931477, 2.2662134), (0, -50, 0), (-1.308399, -49.931477, 2.2662134), (-1.4252102, -49.931477, 2.1946313), (0, -50, 0), (-1.4252102, -49.931477, 2.1946313), (-1.5381151, -49.931477, 2.117034), (0, -50, 0), (-1.5381151, -49.931477, 2.117034), (-1.6468042, -49.931477, 2.033634), (0, -50, 0), (-1.6468042, -49.931477, 2.033634), (-1.7509795, -49.931477, 1.9446597), (0, -50, 0), (-1.7509795, -49.931477, 1.9446597), (-1.8503555, -49.931477, 1.8503555), (0, -50, 0), (-1.8503555, -49.931477, 1.8503555), (-1.9446597, -49.931477, 1.7509795), (0, -50, 0), (-1.9446597, -49.931477, 1.7509795), (-2.033634, -49.931477, 1.6468042), (0, -50, 0), (-2.033634, -49.931477, 1.6468042), (-2.117034, -49.931477, 1.5381151), (0, -50, 0), (-2.117034, -49.931477, 1.5381151), (-2.1946313, -49.931477, 1.4252102), (0, -50, 0), (-2.1946313, -49.931477, 1.4252102), (-2.2662134, -49.931477, 1.308399), (0, -50, 0), (-2.2662134, -49.931477, 1.308399), (-2.331584, -49.931477, 1.1880014), (0, -50, 0), (-2.331584, -49.931477, 1.1880014), (-2.3905637, -49.931477, 1.0643475), (0, -50, 0), (-2.3905637, -49.931477, 1.0643475), (-2.4429913, -49.931477, 0.93777645), (0, -50, 0), (-2.4429913, -49.931477, 0.93777645), (-2.4887226, -49.931477, 0.808635), (0, -50, 0), (-2.4887226, -49.931477, 0.808635), (-2.5276325, -49.931477, 0.6772771), (0, -50, 0), (-2.5276325, -49.931477, 0.6772771), (-2.5596144, -49.931477, 0.54406285), (0, -50, 0), (-2.5596144, -49.931477, 0.54406285), (-2.5845807, -49.931477, 0.40935737), (0, -50, 0), (-2.5845807, -49.931477, 0.40935737), (-2.6024628, -49.931477, 0.27352986), (0, -50, 0), (-2.6024628, -49.931477, 0.27352986), (-2.6132116, -49.931477, 0.13695261), (0, -50, 0), (-2.6132116, -49.931477, 0.13695261), (-2.616798, -49.931477, 3.204653e-16), (0, -50, 0), (-2.616798, -49.931477, 3.204653e-16), (-2.6132116, -49.931477, -0.13695261), (0, -50, 0), (-2.6132116, -49.931477, -0.13695261), (-2.6024628, -49.931477, -0.27352986), (0, -50, 0), (-2.6024628, -49.931477, -0.27352986), (-2.5845807, -49.931477, -0.40935737), (0, -50, 0), (-2.5845807, -49.931477, -0.40935737), (-2.5596144, -49.931477, -0.54406285), (0, -50, 0), (-2.5596144, -49.931477, -0.54406285), (-2.5276325, -49.931477, -0.6772771), (0, -50, 0), (-2.5276325, -49.931477, -0.6772771), (-2.4887226, -49.931477, -0.808635), (0, -50, 0), (-2.4887226, -49.931477, -0.808635), (-2.4429913, -49.931477, -0.93777645), (0, -50, 0), (-2.4429913, -49.931477, -0.93777645), (-2.3905637, -49.931477, -1.0643475), (0, -50, 0), (-2.3905637, -49.931477, -1.0643475), (-2.331584, -49.931477, -1.1880014), (0, -50, 0), (-2.331584, -49.931477, -1.1880014), (-2.2662134, -49.931477, -1.308399), (0, -50, 0), (-2.2662134, -49.931477, -1.308399), (-2.1946313, -49.931477, -1.4252102), (0, -50, 0), (-2.1946313, -49.931477, -1.4252102), (-2.117034, -49.931477, -1.5381151), (0, -50, 0), (-2.117034, -49.931477, -1.5381151), (-2.033634, -49.931477, -1.6468042), (0, -50, 0), (-2.033634, -49.931477, -1.6468042), (-1.9446597, -49.931477, -1.7509795), (0, -50, 0), (-1.9446597, -49.931477, -1.7509795), (-1.8503555, -49.931477, -1.8503555), (0, -50, 0), (-1.8503555, -49.931477, -1.8503555), (-1.7509795, -49.931477, -1.9446597), (0, -50, 0), (-1.7509795, -49.931477, -1.9446597), (-1.6468042, -49.931477, -2.033634), (0, -50, 0), (-1.6468042, -49.931477, -2.033634), (-1.5381151, -49.931477, -2.117034), (0, -50, 0), (-1.5381151, -49.931477, -2.117034), (-1.4252102, -49.931477, -2.1946313), (0, -50, 0), (-1.4252102, -49.931477, -2.1946313), (-1.308399, -49.931477, -2.2662134), (0, -50, 0), (-1.308399, -49.931477, -2.2662134), (-1.1880014, -49.931477, -2.331584), (0, -50, 0), (-1.1880014, -49.931477, -2.331584), (-1.0643475, -49.931477, -2.3905637), (0, -50, 0), (-1.0643475, -49.931477, -2.3905637), (-0.93777645, -49.931477, -2.4429913), (0, -50, 0), (-0.93777645, -49.931477, -2.4429913), (-0.808635, -49.931477, -2.4887226), (0, -50, 0), (-0.808635, -49.931477, -2.4887226), (-0.6772771, -49.931477, -2.5276325), (0, -50, 0), (-0.6772771, -49.931477, -2.5276325), (-0.54406285, -49.931477, -2.5596144), (0, -50, 0), (-0.54406285, -49.931477, -2.5596144), (-0.40935737, -49.931477, -2.5845807), (0, -50, 0), (-0.40935737, -49.931477, -2.5845807), (-0.27352986, -49.931477, -2.6024628), (0, -50, 0), (-0.27352986, -49.931477, -2.6024628), (-0.13695261, -49.931477, -2.6132116), (0, -50, 0), (-0.13695261, -49.931477, -2.6132116), (-4.80698e-16, -49.931477, -2.616798), (0, -50, 0), (-4.80698e-16, -49.931477, -2.616798), (0.13695261, -49.931477, -2.6132116), (0, -50, 0), (0.13695261, -49.931477, -2.6132116), (0.27352986, -49.931477, -2.6024628), (0, -50, 0), (0.27352986, -49.931477, -2.6024628), (0.40935737, -49.931477, -2.5845807), (0, -50, 0), (0.40935737, -49.931477, -2.5845807), (0.54406285, -49.931477, -2.5596144), (0, -50, 0), (0.54406285, -49.931477, -2.5596144), (0.6772771, -49.931477, -2.5276325), (0, -50, 0), (0.6772771, -49.931477, -2.5276325), (0.808635, -49.931477, -2.4887226), (0, -50, 0), (0.808635, -49.931477, -2.4887226), (0.93777645, -49.931477, -2.4429913), (0, -50, 0), (0.93777645, -49.931477, -2.4429913), (1.0643475, -49.931477, -2.3905637), (0, -50, 0), (1.0643475, -49.931477, -2.3905637), (1.1880014, -49.931477, -2.331584), (0, -50, 0), (1.1880014, -49.931477, -2.331584), (1.308399, -49.931477, -2.2662134), (0, -50, 0), (1.308399, -49.931477, -2.2662134), (1.4252102, -49.931477, -2.1946313), (0, -50, 0), (1.4252102, -49.931477, -2.1946313), (1.5381151, -49.931477, -2.117034), (0, -50, 0), (1.5381151, -49.931477, -2.117034), (1.6468042, -49.931477, -2.033634), (0, -50, 0), (1.6468042, -49.931477, -2.033634), (1.7509795, -49.931477, -1.9446597), (0, -50, 0), (1.7509795, -49.931477, -1.9446597), (1.8503555, -49.931477, -1.8503555), (0, -50, 0), (1.8503555, -49.931477, -1.8503555), (1.9446597, -49.931477, -1.7509795), (0, -50, 0), (1.9446597, -49.931477, -1.7509795), (2.033634, -49.931477, -1.6468042), (0, -50, 0), (2.033634, -49.931477, -1.6468042), (2.117034, -49.931477, -1.5381151), (0, -50, 0), (2.117034, -49.931477, -1.5381151), (2.1946313, -49.931477, -1.4252102), (0, -50, 0), (2.1946313, -49.931477, -1.4252102), (2.2662134, -49.931477, -1.308399), (0, -50, 0), (2.2662134, -49.931477, -1.308399), (2.331584, -49.931477, -1.1880014), (0, -50, 0), (2.331584, -49.931477, -1.1880014), (2.3905637, -49.931477, -1.0643475), (0, -50, 0), (2.3905637, -49.931477, -1.0643475), (2.4429913, -49.931477, -0.93777645), (0, -50, 0), (2.4429913, -49.931477, -0.93777645), (2.4887226, -49.931477, -0.808635), (0, -50, 0), (2.4887226, -49.931477, -0.808635), (2.5276325, -49.931477, -0.6772771), (0, -50, 0), (2.5276325, -49.931477, -0.6772771), (2.5596144, -49.931477, -0.54406285), (0, -50, 0), (2.5596144, -49.931477, -0.54406285), (2.5845807, -49.931477, -0.40935737), (0, -50, 0), (2.5845807, -49.931477, -0.40935737), (2.6024628, -49.931477, -0.27352986), (0, -50, 0), (2.6024628, -49.931477, -0.27352986), (2.6132116, -49.931477, -0.13695261), (0, -50, 0), (2.6132116, -49.931477, -0.13695261), (2.616798, -49.931477, 0), (2.616798, -49.931477, 0), (5.2264233, -49.726093, 0), (5.2192607, -49.726093, 0.27352986), (2.6132116, -49.931477, 0.13695261), (2.6132116, -49.931477, 0.13695261), (5.2192607, -49.726093, 0.27352986), (5.197792, -49.726093, 0.54631), (2.6024628, -49.931477, 0.27352986), (2.6024628, -49.931477, 0.27352986), (5.197792, -49.726093, 0.54631), (5.1620774, -49.726093, 0.81759274), (2.5845807, -49.931477, 0.40935737), (2.5845807, -49.931477, 0.40935737), (5.1620774, -49.726093, 0.81759274), (5.112213, -49.726093, 1.0866345), (2.5596144, -49.931477, 0.54406285), (2.5596144, -49.931477, 0.54406285), (5.112213, -49.726093, 1.0866345), (5.048337, -49.726093, 1.3526978), (2.5276325, -49.931477, 0.6772771), (2.5276325, -49.931477, 0.6772771), (5.048337, -49.726093, 1.3526978), (4.970624, -49.726093, 1.6150535), (2.4887226, -49.931477, 0.808635), (2.4887226, -49.931477, 0.808635), (4.970624, -49.726093, 1.6150535), (4.8792863, -49.726093, 1.8729825), (2.4429913, -49.931477, 0.93777645), (2.4429913, -49.931477, 0.93777645), (4.8792863, -49.726093, 1.8729825), (4.774575, -49.726093, 2.1257777), (2.3905637, -49.931477, 1.0643475), (2.3905637, -49.931477, 1.0643475), (4.774575, -49.726093, 2.1257777), (4.656777, -49.726093, 2.3727465), (2.331584, -49.931477, 1.1880014), (2.331584, -49.931477, 1.1880014), (4.656777, -49.726093, 2.3727465), (4.526215, -49.726093, 2.6132116), (2.2662134, -49.931477, 1.308399), (2.2662134, -49.931477, 1.308399), (4.526215, -49.726093, 2.6132116), (4.3832474, -49.726093, 2.846514), (2.1946313, -49.931477, 1.4252102), (2.1946313, -49.931477, 1.4252102), (4.3832474, -49.726093, 2.846514), (4.2282653, -49.726093, 3.0720146), (2.117034, -49.931477, 1.5381151), (2.117034, -49.931477, 1.5381151), (4.2282653, -49.726093, 3.0720146), (4.0616937, -49.726093, 3.2890947), (2.033634, -49.931477, 1.6468042), (2.033634, -49.931477, 1.6468042), (4.0616937, -49.726093, 3.2890947), (3.8839893, -49.726093, 3.4971597), (1.9446597, -49.931477, 1.7509795), (1.9446597, -49.931477, 1.7509795), (3.8839893, -49.726093, 3.4971597), (3.6956394, -49.726093, 3.6956394), (1.8503555, -49.931477, 1.8503555), (1.8503555, -49.931477, 1.8503555), (3.6956394, -49.726093, 3.6956394), (3.4971597, -49.726093, 3.8839893), (1.7509795, -49.931477, 1.9446597), (1.7509795, -49.931477, 1.9446597), (3.4971597, -49.726093, 3.8839893), (3.2890947, -49.726093, 4.0616937), (1.6468042, -49.931477, 2.033634), (1.6468042, -49.931477, 2.033634), (3.2890947, -49.726093, 4.0616937), (3.0720146, -49.726093, 4.2282653), (1.5381151, -49.931477, 2.117034), (1.5381151, -49.931477, 2.117034), (3.0720146, -49.726093, 4.2282653), (2.846514, -49.726093, 4.3832474), (1.4252102, -49.931477, 2.1946313), (1.4252102, -49.931477, 2.1946313), (2.846514, -49.726093, 4.3832474), (2.6132116, -49.726093, 4.526215), (1.308399, -49.931477, 2.2662134), (1.308399, -49.931477, 2.2662134), (2.6132116, -49.726093, 4.526215), (2.3727465, -49.726093, 4.656777), (1.1880014, -49.931477, 2.331584), (1.1880014, -49.931477, 2.331584), (2.3727465, -49.726093, 4.656777), (2.1257777, -49.726093, 4.774575), (1.0643475, -49.931477, 2.3905637), (1.0643475, -49.931477, 2.3905637), (2.1257777, -49.726093, 4.774575), (1.8729825, -49.726093, 4.8792863), (0.93777645, -49.931477, 2.4429913), (0.93777645, -49.931477, 2.4429913), (1.8729825, -49.726093, 4.8792863), (1.6150535, -49.726093, 4.970624), (0.808635, -49.931477, 2.4887226), (0.808635, -49.931477, 2.4887226), (1.6150535, -49.726093, 4.970624), (1.3526978, -49.726093, 5.048337), (0.6772771, -49.931477, 2.5276325), (0.6772771, -49.931477, 2.5276325), (1.3526978, -49.726093, 5.048337), (1.0866345, -49.726093, 5.112213), (0.54406285, -49.931477, 2.5596144), (0.54406285, -49.931477, 2.5596144), (1.0866345, -49.726093, 5.112213), (0.81759274, -49.726093, 5.1620774), (0.40935737, -49.931477, 2.5845807), (0.40935737, -49.931477, 2.5845807), (0.81759274, -49.726093, 5.1620774), (0.54631, -49.726093, 5.197792), (0.27352986, -49.931477, 2.6024628), (0.27352986, -49.931477, 2.6024628), (0.54631, -49.726093, 5.197792), (0.27352986, -49.726093, 5.2192607), (0.13695261, -49.931477, 2.6132116), (0.13695261, -49.931477, 2.6132116), (0.27352986, -49.726093, 5.2192607), (3.2002612e-16, -49.726093, 5.2264233), (1.6023265e-16, -49.931477, 2.616798), (1.6023265e-16, -49.931477, 2.616798), (3.2002612e-16, -49.726093, 5.2264233), (-0.27352986, -49.726093, 5.2192607), (-0.13695261, -49.931477, 2.6132116), (-0.13695261, -49.931477, 2.6132116), (-0.27352986, -49.726093, 5.2192607), (-0.54631, -49.726093, 5.197792), (-0.27352986, -49.931477, 2.6024628), (-0.27352986, -49.931477, 2.6024628), (-0.54631, -49.726093, 5.197792), (-0.81759274, -49.726093, 5.1620774), (-0.40935737, -49.931477, 2.5845807), (-0.40935737, -49.931477, 2.5845807), (-0.81759274, -49.726093, 5.1620774), (-1.0866345, -49.726093, 5.112213), (-0.54406285, -49.931477, 2.5596144), (-0.54406285, -49.931477, 2.5596144), (-1.0866345, -49.726093, 5.112213), (-1.3526978, -49.726093, 5.048337), (-0.6772771, -49.931477, 2.5276325), (-0.6772771, -49.931477, 2.5276325), (-1.3526978, -49.726093, 5.048337), (-1.6150535, -49.726093, 4.970624), (-0.808635, -49.931477, 2.4887226), (-0.808635, -49.931477, 2.4887226), (-1.6150535, -49.726093, 4.970624), (-1.8729825, -49.726093, 4.8792863), (-0.93777645, -49.931477, 2.4429913), (-0.93777645, -49.931477, 2.4429913), (-1.8729825, -49.726093, 4.8792863), (-2.1257777, -49.726093, 4.774575), (-1.0643475, -49.931477, 2.3905637), (-1.0643475, -49.931477, 2.3905637), (-2.1257777, -49.726093, 4.774575), (-2.3727465, -49.726093, 4.656777), (-1.1880014, -49.931477, 2.331584), (-1.1880014, -49.931477, 2.331584), (-2.3727465, -49.726093, 4.656777), (-2.6132116, -49.726093, 4.526215), (-1.308399, -49.931477, 2.2662134), (-1.308399, -49.931477, 2.2662134), (-2.6132116, -49.726093, 4.526215), (-2.846514, -49.726093, 4.3832474), (-1.4252102, -49.931477, 2.1946313), (-1.4252102, -49.931477, 2.1946313), (-2.846514, -49.726093, 4.3832474), (-3.0720146, -49.726093, 4.2282653), (-1.5381151, -49.931477, 2.117034), (-1.5381151, -49.931477, 2.117034), (-3.0720146, -49.726093, 4.2282653), (-3.2890947, -49.726093, 4.0616937), (-1.6468042, -49.931477, 2.033634), (-1.6468042, -49.931477, 2.033634), (-3.2890947, -49.726093, 4.0616937), (-3.4971597, -49.726093, 3.8839893), (-1.7509795, -49.931477, 1.9446597), (-1.7509795, -49.931477, 1.9446597), (-3.4971597, -49.726093, 3.8839893), (-3.6956394, -49.726093, 3.6956394), (-1.8503555, -49.931477, 1.8503555), (-1.8503555, -49.931477, 1.8503555), (-3.6956394, -49.726093, 3.6956394), (-3.8839893, -49.726093, 3.4971597), (-1.9446597, -49.931477, 1.7509795), (-1.9446597, -49.931477, 1.7509795), (-3.8839893, -49.726093, 3.4971597), (-4.0616937, -49.726093, 3.2890947), (-2.033634, -49.931477, 1.6468042), (-2.033634, -49.931477, 1.6468042), (-4.0616937, -49.726093, 3.2890947), (-4.2282653, -49.726093, 3.0720146), (-2.117034, -49.931477, 1.5381151), (-2.117034, -49.931477, 1.5381151), (-4.2282653, -49.726093, 3.0720146), (-4.3832474, -49.726093, 2.846514), (-2.1946313, -49.931477, 1.4252102), (-2.1946313, -49.931477, 1.4252102), (-4.3832474, -49.726093, 2.846514), (-4.526215, -49.726093, 2.6132116), (-2.2662134, -49.931477, 1.308399), (-2.2662134, -49.931477, 1.308399), (-4.526215, -49.726093, 2.6132116), (-4.656777, -49.726093, 2.3727465), (-2.331584, -49.931477, 1.1880014), (-2.331584, -49.931477, 1.1880014), (-4.656777, -49.726093, 2.3727465), (-4.774575, -49.726093, 2.1257777), (-2.3905637, -49.931477, 1.0643475), (-2.3905637, -49.931477, 1.0643475), (-4.774575, -49.726093, 2.1257777), (-4.8792863, -49.726093, 1.8729825), (-2.4429913, -49.931477, 0.93777645), (-2.4429913, -49.931477, 0.93777645), (-4.8792863, -49.726093, 1.8729825), (-4.970624, -49.726093, 1.6150535), (-2.4887226, -49.931477, 0.808635), (-2.4887226, -49.931477, 0.808635), (-4.970624, -49.726093, 1.6150535), (-5.048337, -49.726093, 1.3526978), (-2.5276325, -49.931477, 0.6772771), (-2.5276325, -49.931477, 0.6772771), (-5.048337, -49.726093, 1.3526978), (-5.112213, -49.726093, 1.0866345), (-2.5596144, -49.931477, 0.54406285), (-2.5596144, -49.931477, 0.54406285), (-5.112213, -49.726093, 1.0866345), (-5.1620774, -49.726093, 0.81759274), (-2.5845807, -49.931477, 0.40935737), (-2.5845807, -49.931477, 0.40935737), (-5.1620774, -49.726093, 0.81759274), (-5.197792, -49.726093, 0.54631), (-2.6024628, -49.931477, 0.27352986), (-2.6024628, -49.931477, 0.27352986), (-5.197792, -49.726093, 0.54631), (-5.2192607, -49.726093, 0.27352986), (-2.6132116, -49.931477, 0.13695261), (-2.6132116, -49.931477, 0.13695261), (-5.2192607, -49.726093, 0.27352986), (-5.2264233, -49.726093, 6.4005224e-16), (-2.616798, -49.931477, 3.204653e-16), (-2.616798, -49.931477, 3.204653e-16), (-5.2264233, -49.726093, 6.4005224e-16), (-5.2192607, -49.726093, -0.27352986), (-2.6132116, -49.931477, -0.13695261), (-2.6132116, -49.931477, -0.13695261), (-5.2192607, -49.726093, -0.27352986), (-5.197792, -49.726093, -0.54631), (-2.6024628, -49.931477, -0.27352986), (-2.6024628, -49.931477, -0.27352986), (-5.197792, -49.726093, -0.54631), (-5.1620774, -49.726093, -0.81759274), (-2.5845807, -49.931477, -0.40935737), (-2.5845807, -49.931477, -0.40935737), (-5.1620774, -49.726093, -0.81759274), (-5.112213, -49.726093, -1.0866345), (-2.5596144, -49.931477, -0.54406285), (-2.5596144, -49.931477, -0.54406285), (-5.112213, -49.726093, -1.0866345), (-5.048337, -49.726093, -1.3526978), (-2.5276325, -49.931477, -0.6772771), (-2.5276325, -49.931477, -0.6772771), (-5.048337, -49.726093, -1.3526978), (-4.970624, -49.726093, -1.6150535), (-2.4887226, -49.931477, -0.808635), (-2.4887226, -49.931477, -0.808635), (-4.970624, -49.726093, -1.6150535), (-4.8792863, -49.726093, -1.8729825), (-2.4429913, -49.931477, -0.93777645), (-2.4429913, -49.931477, -0.93777645), (-4.8792863, -49.726093, -1.8729825), (-4.774575, -49.726093, -2.1257777), (-2.3905637, -49.931477, -1.0643475), (-2.3905637, -49.931477, -1.0643475), (-4.774575, -49.726093, -2.1257777), (-4.656777, -49.726093, -2.3727465), (-2.331584, -49.931477, -1.1880014), (-2.331584, -49.931477, -1.1880014), (-4.656777, -49.726093, -2.3727465), (-4.526215, -49.726093, -2.6132116), (-2.2662134, -49.931477, -1.308399), (-2.2662134, -49.931477, -1.308399), (-4.526215, -49.726093, -2.6132116), (-4.3832474, -49.726093, -2.846514), (-2.1946313, -49.931477, -1.4252102), (-2.1946313, -49.931477, -1.4252102), (-4.3832474, -49.726093, -2.846514), (-4.2282653, -49.726093, -3.0720146), (-2.117034, -49.931477, -1.5381151), (-2.117034, -49.931477, -1.5381151), (-4.2282653, -49.726093, -3.0720146), (-4.0616937, -49.726093, -3.2890947), (-2.033634, -49.931477, -1.6468042), (-2.033634, -49.931477, -1.6468042), (-4.0616937, -49.726093, -3.2890947), (-3.8839893, -49.726093, -3.4971597), (-1.9446597, -49.931477, -1.7509795), (-1.9446597, -49.931477, -1.7509795), (-3.8839893, -49.726093, -3.4971597), (-3.6956394, -49.726093, -3.6956394), (-1.8503555, -49.931477, -1.8503555), (-1.8503555, -49.931477, -1.8503555), (-3.6956394, -49.726093, -3.6956394), (-3.4971597, -49.726093, -3.8839893), (-1.7509795, -49.931477, -1.9446597), (-1.7509795, -49.931477, -1.9446597), (-3.4971597, -49.726093, -3.8839893), (-3.2890947, -49.726093, -4.0616937), (-1.6468042, -49.931477, -2.033634), (-1.6468042, -49.931477, -2.033634), (-3.2890947, -49.726093, -4.0616937), (-3.0720146, -49.726093, -4.2282653), (-1.5381151, -49.931477, -2.117034), (-1.5381151, -49.931477, -2.117034), (-3.0720146, -49.726093, -4.2282653), (-2.846514, -49.726093, -4.3832474), (-1.4252102, -49.931477, -2.1946313), (-1.4252102, -49.931477, -2.1946313), (-2.846514, -49.726093, -4.3832474), (-2.6132116, -49.726093, -4.526215), (-1.308399, -49.931477, -2.2662134), (-1.308399, -49.931477, -2.2662134), (-2.6132116, -49.726093, -4.526215), (-2.3727465, -49.726093, -4.656777), (-1.1880014, -49.931477, -2.331584), (-1.1880014, -49.931477, -2.331584), (-2.3727465, -49.726093, -4.656777), (-2.1257777, -49.726093, -4.774575), (-1.0643475, -49.931477, -2.3905637), (-1.0643475, -49.931477, -2.3905637), (-2.1257777, -49.726093, -4.774575), (-1.8729825, -49.726093, -4.8792863), (-0.93777645, -49.931477, -2.4429913), (-0.93777645, -49.931477, -2.4429913), (-1.8729825, -49.726093, -4.8792863), (-1.6150535, -49.726093, -4.970624), (-0.808635, -49.931477, -2.4887226), (-0.808635, -49.931477, -2.4887226), (-1.6150535, -49.726093, -4.970624), (-1.3526978, -49.726093, -5.048337), (-0.6772771, -49.931477, -2.5276325), (-0.6772771, -49.931477, -2.5276325), (-1.3526978, -49.726093, -5.048337), (-1.0866345, -49.726093, -5.112213), (-0.54406285, -49.931477, -2.5596144), (-0.54406285, -49.931477, -2.5596144), (-1.0866345, -49.726093, -5.112213), (-0.81759274, -49.726093, -5.1620774), (-0.40935737, -49.931477, -2.5845807), (-0.40935737, -49.931477, -2.5845807), (-0.81759274, -49.726093, -5.1620774), (-0.54631, -49.726093, -5.197792), (-0.27352986, -49.931477, -2.6024628), (-0.27352986, -49.931477, -2.6024628), (-0.54631, -49.726093, -5.197792), (-0.27352986, -49.726093, -5.2192607), (-0.13695261, -49.931477, -2.6132116), (-0.13695261, -49.931477, -2.6132116), (-0.27352986, -49.726093, -5.2192607), (-9.600784e-16, -49.726093, -5.2264233), (-4.80698e-16, -49.931477, -2.616798), (-4.80698e-16, -49.931477, -2.616798), (-9.600784e-16, -49.726093, -5.2264233), (0.27352986, -49.726093, -5.2192607), (0.13695261, -49.931477, -2.6132116), (0.13695261, -49.931477, -2.6132116), (0.27352986, -49.726093, -5.2192607), (0.54631, -49.726093, -5.197792), (0.27352986, -49.931477, -2.6024628), (0.27352986, -49.931477, -2.6024628), (0.54631, -49.726093, -5.197792), (0.81759274, -49.726093, -5.1620774), (0.40935737, -49.931477, -2.5845807), (0.40935737, -49.931477, -2.5845807), (0.81759274, -49.726093, -5.1620774), (1.0866345, -49.726093, -5.112213), (0.54406285, -49.931477, -2.5596144), (0.54406285, -49.931477, -2.5596144), (1.0866345, -49.726093, -5.112213), (1.3526978, -49.726093, -5.048337), (0.6772771, -49.931477, -2.5276325), (0.6772771, -49.931477, -2.5276325), (1.3526978, -49.726093, -5.048337), (1.6150535, -49.726093, -4.970624), (0.808635, -49.931477, -2.4887226), (0.808635, -49.931477, -2.4887226), (1.6150535, -49.726093, -4.970624), (1.8729825, -49.726093, -4.8792863), (0.93777645, -49.931477, -2.4429913), (0.93777645, -49.931477, -2.4429913), (1.8729825, -49.726093, -4.8792863), (2.1257777, -49.726093, -4.774575), (1.0643475, -49.931477, -2.3905637), (1.0643475, -49.931477, -2.3905637), (2.1257777, -49.726093, -4.774575), (2.3727465, -49.726093, -4.656777), (1.1880014, -49.931477, -2.331584), (1.1880014, -49.931477, -2.331584), (2.3727465, -49.726093, -4.656777), (2.6132116, -49.726093, -4.526215), (1.308399, -49.931477, -2.2662134), (1.308399, -49.931477, -2.2662134), (2.6132116, -49.726093, -4.526215), (2.846514, -49.726093, -4.3832474), (1.4252102, -49.931477, -2.1946313), (1.4252102, -49.931477, -2.1946313), (2.846514, -49.726093, -4.3832474), (3.0720146, -49.726093, -4.2282653), (1.5381151, -49.931477, -2.117034), (1.5381151, -49.931477, -2.117034), (3.0720146, -49.726093, -4.2282653), (3.2890947, -49.726093, -4.0616937), (1.6468042, -49.931477, -2.033634), (1.6468042, -49.931477, -2.033634), (3.2890947, -49.726093, -4.0616937), (3.4971597, -49.726093, -3.8839893), (1.7509795, -49.931477, -1.9446597), (1.7509795, -49.931477, -1.9446597), (3.4971597, -49.726093, -3.8839893), (3.6956394, -49.726093, -3.6956394), (1.8503555, -49.931477, -1.8503555), (1.8503555, -49.931477, -1.8503555), (3.6956394, -49.726093, -3.6956394), (3.8839893, -49.726093, -3.4971597), (1.9446597, -49.931477, -1.7509795), (1.9446597, -49.931477, -1.7509795), (3.8839893, -49.726093, -3.4971597), (4.0616937, -49.726093, -3.2890947), (2.033634, -49.931477, -1.6468042), (2.033634, -49.931477, -1.6468042), (4.0616937, -49.726093, -3.2890947), (4.2282653, -49.726093, -3.0720146), (2.117034, -49.931477, -1.5381151), (2.117034, -49.931477, -1.5381151), (4.2282653, -49.726093, -3.0720146), (4.3832474, -49.726093, -2.846514), (2.1946313, -49.931477, -1.4252102), (2.1946313, -49.931477, -1.4252102), (4.3832474, -49.726093, -2.846514), (4.526215, -49.726093, -2.6132116), (2.2662134, -49.931477, -1.308399), (2.2662134, -49.931477, -1.308399), (4.526215, -49.726093, -2.6132116), (4.656777, -49.726093, -2.3727465), (2.331584, -49.931477, -1.1880014), (2.331584, -49.931477, -1.1880014), (4.656777, -49.726093, -2.3727465), (4.774575, -49.726093, -2.1257777), (2.3905637, -49.931477, -1.0643475), (2.3905637, -49.931477, -1.0643475), (4.774575, -49.726093, -2.1257777), (4.8792863, -49.726093, -1.8729825), (2.4429913, -49.931477, -0.93777645), (2.4429913, -49.931477, -0.93777645), (4.8792863, -49.726093, -1.8729825), (4.970624, -49.726093, -1.6150535), (2.4887226, -49.931477, -0.808635), (2.4887226, -49.931477, -0.808635), (4.970624, -49.726093, -1.6150535), (5.048337, -49.726093, -1.3526978), (2.5276325, -49.931477, -0.6772771), (2.5276325, -49.931477, -0.6772771), (5.048337, -49.726093, -1.3526978), (5.112213, -49.726093, -1.0866345), (2.5596144, -49.931477, -0.54406285), (2.5596144, -49.931477, -0.54406285), (5.112213, -49.726093, -1.0866345), (5.1620774, -49.726093, -0.81759274), (2.5845807, -49.931477, -0.40935737), (2.5845807, -49.931477, -0.40935737), (5.1620774, -49.726093, -0.81759274), (5.197792, -49.726093, -0.54631), (2.6024628, -49.931477, -0.27352986), (2.6024628, -49.931477, -0.27352986), (5.197792, -49.726093, -0.54631), (5.2192607, -49.726093, -0.27352986), (2.6132116, -49.931477, -0.13695261), (2.6132116, -49.931477, -0.13695261), (5.2192607, -49.726093, -0.27352986), (5.2264233, -49.726093, 0), (2.616798, -49.931477, 0), (5.2264233, -49.726093, 0), (7.8217235, -49.38442, 0), (7.8110037, -49.38442, 0.40935737), (5.2192607, -49.726093, 0.27352986), (5.2192607, -49.726093, 0.27352986), (7.8110037, -49.38442, 0.40935737), (7.778875, -49.38442, 0.81759274), (5.197792, -49.726093, 0.54631), (5.197792, -49.726093, 0.54631), (7.778875, -49.38442, 0.81759274), (7.725425, -49.38442, 1.223587), (5.1620774, -49.726093, 0.81759274), (5.1620774, -49.726093, 0.81759274), (7.725425, -49.38442, 1.223587), (7.6507998, -49.38442, 1.6262277), (5.112213, -49.726093, 1.0866345), (5.112213, -49.726093, 1.0866345), (7.6507998, -49.38442, 1.6262277), (7.5552044, -49.38442, 2.024411), (5.048337, -49.726093, 1.3526978), (5.048337, -49.726093, 1.3526978), (7.5552044, -49.38442, 2.024411), (7.438901, -49.38442, 2.4170454), (4.970624, -49.726093, 1.6150535), (4.970624, -49.726093, 1.6150535), (7.438901, -49.38442, 2.4170454), (7.302208, -49.38442, 2.8030548), (4.8792863, -49.726093, 1.8729825), (4.8792863, -49.726093, 1.8729825), (7.302208, -49.38442, 2.8030548), (7.1454997, -49.38442, 3.1813815), (4.774575, -49.726093, 2.1257777), (4.774575, -49.726093, 2.1257777), (7.1454997, -49.38442, 3.1813815), (6.9692063, -49.38442, 3.550988), (4.656777, -49.726093, 2.3727465), (4.656777, -49.726093, 2.3727465), (6.9692063, -49.38442, 3.550988), (6.773811, -49.38442, 3.9108617), (4.526215, -49.726093, 2.6132116), (4.526215, -49.726093, 2.6132116), (6.773811, -49.38442, 3.9108617), (6.5598493, -49.38442, 4.260016), (4.3832474, -49.726093, 2.846514), (4.3832474, -49.726093, 2.846514), (6.5598493, -49.38442, 4.260016), (6.327907, -49.38442, 4.5974936), (4.2282653, -49.726093, 3.0720146), (4.2282653, -49.726093, 3.0720146), (6.327907, -49.38442, 4.5974936), (6.0786204, -49.38442, 4.92237), (4.0616937, -49.726093, 3.2890947), (4.0616937, -49.726093, 3.2890947), (6.0786204, -49.38442, 4.92237), (5.812673, -49.38442, 5.2337546), (3.8839893, -49.726093, 3.4971597), (3.8839893, -49.726093, 3.4971597), (5.812673, -49.38442, 5.2337546), (5.5307937, -49.38442, 5.5307937), (3.6956394, -49.726093, 3.6956394), (3.6956394, -49.726093, 3.6956394), (5.5307937, -49.38442, 5.5307937), (5.2337546, -49.38442, 5.812673), (3.4971597, -49.726093, 3.8839893), (3.4971597, -49.726093, 3.8839893), (5.2337546, -49.38442, 5.812673), (4.92237, -49.38442, 6.0786204), (3.2890947, -49.726093, 4.0616937), (3.2890947, -49.726093, 4.0616937), (4.92237, -49.38442, 6.0786204), (4.5974936, -49.38442, 6.327907), (3.0720146, -49.726093, 4.2282653), (3.0720146, -49.726093, 4.2282653), (4.5974936, -49.38442, 6.327907), (4.260016, -49.38442, 6.5598493), (2.846514, -49.726093, 4.3832474), (2.846514, -49.726093, 4.3832474), (4.260016, -49.38442, 6.5598493), (3.9108617, -49.38442, 6.773811), (2.6132116, -49.726093, 4.526215), (2.6132116, -49.726093, 4.526215), (3.9108617, -49.38442, 6.773811), (3.550988, -49.38442, 6.9692063), (2.3727465, -49.726093, 4.656777), (2.3727465, -49.726093, 4.656777), (3.550988, -49.38442, 6.9692063), (3.1813815, -49.38442, 7.1454997), (2.1257777, -49.726093, 4.774575), (2.1257777, -49.726093, 4.774575), (3.1813815, -49.38442, 7.1454997), (2.8030548, -49.38442, 7.302208), (1.8729825, -49.726093, 4.8792863), (1.8729825, -49.726093, 4.8792863), (2.8030548, -49.38442, 7.302208), (2.4170454, -49.38442, 7.438901), (1.6150535, -49.726093, 4.970624), (1.6150535, -49.726093, 4.970624), (2.4170454, -49.38442, 7.438901), (2.024411, -49.38442, 7.5552044), (1.3526978, -49.726093, 5.048337), (1.3526978, -49.726093, 5.048337), (2.024411, -49.38442, 7.5552044), (1.6262277, -49.38442, 7.6507998), (1.0866345, -49.726093, 5.112213), (1.0866345, -49.726093, 5.112213), (1.6262277, -49.38442, 7.6507998), (1.223587, -49.38442, 7.725425), (0.81759274, -49.726093, 5.1620774), (0.81759274, -49.726093, 5.1620774), (1.223587, -49.38442, 7.725425), (0.81759274, -49.38442, 7.778875), (0.54631, -49.726093, 5.197792), (0.54631, -49.726093, 5.197792), (0.81759274, -49.38442, 7.778875), (0.40935737, -49.38442, 7.8110037), (0.27352986, -49.726093, 5.2192607), (0.27352986, -49.726093, 5.2192607), (0.40935737, -49.38442, 7.8110037), (4.789424e-16, -49.38442, 7.8217235), (3.2002612e-16, -49.726093, 5.2264233), (3.2002612e-16, -49.726093, 5.2264233), (4.789424e-16, -49.38442, 7.8217235), (-0.40935737, -49.38442, 7.8110037), (-0.27352986, -49.726093, 5.2192607), (-0.27352986, -49.726093, 5.2192607), (-0.40935737, -49.38442, 7.8110037), (-0.81759274, -49.38442, 7.778875), (-0.54631, -49.726093, 5.197792), (-0.54631, -49.726093, 5.197792), (-0.81759274, -49.38442, 7.778875), (-1.223587, -49.38442, 7.725425), (-0.81759274, -49.726093, 5.1620774), (-0.81759274, -49.726093, 5.1620774), (-1.223587, -49.38442, 7.725425), (-1.6262277, -49.38442, 7.6507998), (-1.0866345, -49.726093, 5.112213), (-1.0866345, -49.726093, 5.112213), (-1.6262277, -49.38442, 7.6507998), (-2.024411, -49.38442, 7.5552044), (-1.3526978, -49.726093, 5.048337), (-1.3526978, -49.726093, 5.048337), (-2.024411, -49.38442, 7.5552044), (-2.4170454, -49.38442, 7.438901), (-1.6150535, -49.726093, 4.970624), (-1.6150535, -49.726093, 4.970624), (-2.4170454, -49.38442, 7.438901), (-2.8030548, -49.38442, 7.302208), (-1.8729825, -49.726093, 4.8792863), (-1.8729825, -49.726093, 4.8792863), (-2.8030548, -49.38442, 7.302208), (-3.1813815, -49.38442, 7.1454997), (-2.1257777, -49.726093, 4.774575), (-2.1257777, -49.726093, 4.774575), (-3.1813815, -49.38442, 7.1454997), (-3.550988, -49.38442, 6.9692063), (-2.3727465, -49.726093, 4.656777), (-2.3727465, -49.726093, 4.656777), (-3.550988, -49.38442, 6.9692063), (-3.9108617, -49.38442, 6.773811), (-2.6132116, -49.726093, 4.526215), (-2.6132116, -49.726093, 4.526215), (-3.9108617, -49.38442, 6.773811), (-4.260016, -49.38442, 6.5598493), (-2.846514, -49.726093, 4.3832474), (-2.846514, -49.726093, 4.3832474), (-4.260016, -49.38442, 6.5598493), (-4.5974936, -49.38442, 6.327907), (-3.0720146, -49.726093, 4.2282653), (-3.0720146, -49.726093, 4.2282653), (-4.5974936, -49.38442, 6.327907), (-4.92237, -49.38442, 6.0786204), (-3.2890947, -49.726093, 4.0616937), (-3.2890947, -49.726093, 4.0616937), (-4.92237, -49.38442, 6.0786204), (-5.2337546, -49.38442, 5.812673), (-3.4971597, -49.726093, 3.8839893), (-3.4971597, -49.726093, 3.8839893), (-5.2337546, -49.38442, 5.812673), (-5.5307937, -49.38442, 5.5307937), (-3.6956394, -49.726093, 3.6956394), (-3.6956394, -49.726093, 3.6956394), (-5.5307937, -49.38442, 5.5307937), (-5.812673, -49.38442, 5.2337546), (-3.8839893, -49.726093, 3.4971597), (-3.8839893, -49.726093, 3.4971597), (-5.812673, -49.38442, 5.2337546), (-6.0786204, -49.38442, 4.92237), (-4.0616937, -49.726093, 3.2890947), (-4.0616937, -49.726093, 3.2890947), (-6.0786204, -49.38442, 4.92237), (-6.327907, -49.38442, 4.5974936), (-4.2282653, -49.726093, 3.0720146), (-4.2282653, -49.726093, 3.0720146), (-6.327907, -49.38442, 4.5974936), (-6.5598493, -49.38442, 4.260016), (-4.3832474, -49.726093, 2.846514), (-4.3832474, -49.726093, 2.846514), (-6.5598493, -49.38442, 4.260016), (-6.773811, -49.38442, 3.9108617), (-4.526215, -49.726093, 2.6132116), (-4.526215, -49.726093, 2.6132116), (-6.773811, -49.38442, 3.9108617), (-6.9692063, -49.38442, 3.550988), (-4.656777, -49.726093, 2.3727465), (-4.656777, -49.726093, 2.3727465), (-6.9692063, -49.38442, 3.550988), (-7.1454997, -49.38442, 3.1813815), (-4.774575, -49.726093, 2.1257777), (-4.774575, -49.726093, 2.1257777), (-7.1454997, -49.38442, 3.1813815), (-7.302208, -49.38442, 2.8030548), (-4.8792863, -49.726093, 1.8729825), (-4.8792863, -49.726093, 1.8729825), (-7.302208, -49.38442, 2.8030548), (-7.438901, -49.38442, 2.4170454), (-4.970624, -49.726093, 1.6150535), (-4.970624, -49.726093, 1.6150535), (-7.438901, -49.38442, 2.4170454), (-7.5552044, -49.38442, 2.024411), (-5.048337, -49.726093, 1.3526978), (-5.048337, -49.726093, 1.3526978), (-7.5552044, -49.38442, 2.024411), (-7.6507998, -49.38442, 1.6262277), (-5.112213, -49.726093, 1.0866345), (-5.112213, -49.726093, 1.0866345), (-7.6507998, -49.38442, 1.6262277), (-7.725425, -49.38442, 1.223587), (-5.1620774, -49.726093, 0.81759274), (-5.1620774, -49.726093, 0.81759274), (-7.725425, -49.38442, 1.223587), (-7.778875, -49.38442, 0.81759274), (-5.197792, -49.726093, 0.54631), (-5.197792, -49.726093, 0.54631), (-7.778875, -49.38442, 0.81759274), (-7.8110037, -49.38442, 0.40935737), (-5.2192607, -49.726093, 0.27352986), (-5.2192607, -49.726093, 0.27352986), (-7.8110037, -49.38442, 0.40935737), (-7.8217235, -49.38442, 9.578848e-16), (-5.2264233, -49.726093, 6.4005224e-16), (-5.2264233, -49.726093, 6.4005224e-16), (-7.8217235, -49.38442, 9.578848e-16), (-7.8110037, -49.38442, -0.40935737), (-5.2192607, -49.726093, -0.27352986), (-5.2192607, -49.726093, -0.27352986), (-7.8110037, -49.38442, -0.40935737), (-7.778875, -49.38442, -0.81759274), (-5.197792, -49.726093, -0.54631), (-5.197792, -49.726093, -0.54631), (-7.778875, -49.38442, -0.81759274), (-7.725425, -49.38442, -1.223587), (-5.1620774, -49.726093, -0.81759274), (-5.1620774, -49.726093, -0.81759274), (-7.725425, -49.38442, -1.223587), (-7.6507998, -49.38442, -1.6262277), (-5.112213, -49.726093, -1.0866345), (-5.112213, -49.726093, -1.0866345), (-7.6507998, -49.38442, -1.6262277), (-7.5552044, -49.38442, -2.024411), (-5.048337, -49.726093, -1.3526978), (-5.048337, -49.726093, -1.3526978), (-7.5552044, -49.38442, -2.024411), (-7.438901, -49.38442, -2.4170454), (-4.970624, -49.726093, -1.6150535), (-4.970624, -49.726093, -1.6150535), (-7.438901, -49.38442, -2.4170454), (-7.302208, -49.38442, -2.8030548), (-4.8792863, -49.726093, -1.8729825), (-4.8792863, -49.726093, -1.8729825), (-7.302208, -49.38442, -2.8030548), (-7.1454997, -49.38442, -3.1813815), (-4.774575, -49.726093, -2.1257777), (-4.774575, -49.726093, -2.1257777), (-7.1454997, -49.38442, -3.1813815), (-6.9692063, -49.38442, -3.550988), (-4.656777, -49.726093, -2.3727465), (-4.656777, -49.726093, -2.3727465), (-6.9692063, -49.38442, -3.550988), (-6.773811, -49.38442, -3.9108617), (-4.526215, -49.726093, -2.6132116), (-4.526215, -49.726093, -2.6132116), (-6.773811, -49.38442, -3.9108617), (-6.5598493, -49.38442, -4.260016), (-4.3832474, -49.726093, -2.846514), (-4.3832474, -49.726093, -2.846514), (-6.5598493, -49.38442, -4.260016), (-6.327907, -49.38442, -4.5974936), (-4.2282653, -49.726093, -3.0720146), (-4.2282653, -49.726093, -3.0720146), (-6.327907, -49.38442, -4.5974936), (-6.0786204, -49.38442, -4.92237), (-4.0616937, -49.726093, -3.2890947), (-4.0616937, -49.726093, -3.2890947), (-6.0786204, -49.38442, -4.92237), (-5.812673, -49.38442, -5.2337546), (-3.8839893, -49.726093, -3.4971597), (-3.8839893, -49.726093, -3.4971597), (-5.812673, -49.38442, -5.2337546), (-5.5307937, -49.38442, -5.5307937), (-3.6956394, -49.726093, -3.6956394), (-3.6956394, -49.726093, -3.6956394), (-5.5307937, -49.38442, -5.5307937), (-5.2337546, -49.38442, -5.812673), (-3.4971597, -49.726093, -3.8839893), (-3.4971597, -49.726093, -3.8839893), (-5.2337546, -49.38442, -5.812673), (-4.92237, -49.38442, -6.0786204), (-3.2890947, -49.726093, -4.0616937), (-3.2890947, -49.726093, -4.0616937), (-4.92237, -49.38442, -6.0786204), (-4.5974936, -49.38442, -6.327907), (-3.0720146, -49.726093, -4.2282653), (-3.0720146, -49.726093, -4.2282653), (-4.5974936, -49.38442, -6.327907), (-4.260016, -49.38442, -6.5598493), (-2.846514, -49.726093, -4.3832474), (-2.846514, -49.726093, -4.3832474), (-4.260016, -49.38442, -6.5598493), (-3.9108617, -49.38442, -6.773811), (-2.6132116, -49.726093, -4.526215), (-2.6132116, -49.726093, -4.526215), (-3.9108617, -49.38442, -6.773811), (-3.550988, -49.38442, -6.9692063), (-2.3727465, -49.726093, -4.656777), (-2.3727465, -49.726093, -4.656777), (-3.550988, -49.38442, -6.9692063), (-3.1813815, -49.38442, -7.1454997), (-2.1257777, -49.726093, -4.774575), (-2.1257777, -49.726093, -4.774575), (-3.1813815, -49.38442, -7.1454997), (-2.8030548, -49.38442, -7.302208), (-1.8729825, -49.726093, -4.8792863), (-1.8729825, -49.726093, -4.8792863), (-2.8030548, -49.38442, -7.302208), (-2.4170454, -49.38442, -7.438901), (-1.6150535, -49.726093, -4.970624), (-1.6150535, -49.726093, -4.970624), (-2.4170454, -49.38442, -7.438901), (-2.024411, -49.38442, -7.5552044), (-1.3526978, -49.726093, -5.048337), (-1.3526978, -49.726093, -5.048337), (-2.024411, -49.38442, -7.5552044), (-1.6262277, -49.38442, -7.6507998), (-1.0866345, -49.726093, -5.112213), (-1.0866345, -49.726093, -5.112213), (-1.6262277, -49.38442, -7.6507998), (-1.223587, -49.38442, -7.725425), (-0.81759274, -49.726093, -5.1620774), (-0.81759274, -49.726093, -5.1620774), (-1.223587, -49.38442, -7.725425), (-0.81759274, -49.38442, -7.778875), (-0.54631, -49.726093, -5.197792), (-0.54631, -49.726093, -5.197792), (-0.81759274, -49.38442, -7.778875), (-0.40935737, -49.38442, -7.8110037), (-0.27352986, -49.726093, -5.2192607), (-0.27352986, -49.726093, -5.2192607), (-0.40935737, -49.38442, -7.8110037), (-1.4368273e-15, -49.38442, -7.8217235), (-9.600784e-16, -49.726093, -5.2264233), (-9.600784e-16, -49.726093, -5.2264233), (-1.4368273e-15, -49.38442, -7.8217235), (0.40935737, -49.38442, -7.8110037), (0.27352986, -49.726093, -5.2192607), (0.27352986, -49.726093, -5.2192607), (0.40935737, -49.38442, -7.8110037), (0.81759274, -49.38442, -7.778875), (0.54631, -49.726093, -5.197792), (0.54631, -49.726093, -5.197792), (0.81759274, -49.38442, -7.778875), (1.223587, -49.38442, -7.725425), (0.81759274, -49.726093, -5.1620774), (0.81759274, -49.726093, -5.1620774), (1.223587, -49.38442, -7.725425), (1.6262277, -49.38442, -7.6507998), (1.0866345, -49.726093, -5.112213), (1.0866345, -49.726093, -5.112213), (1.6262277, -49.38442, -7.6507998), (2.024411, -49.38442, -7.5552044), (1.3526978, -49.726093, -5.048337), (1.3526978, -49.726093, -5.048337), (2.024411, -49.38442, -7.5552044), (2.4170454, -49.38442, -7.438901), (1.6150535, -49.726093, -4.970624), (1.6150535, -49.726093, -4.970624), (2.4170454, -49.38442, -7.438901), (2.8030548, -49.38442, -7.302208), (1.8729825, -49.726093, -4.8792863), (1.8729825, -49.726093, -4.8792863), (2.8030548, -49.38442, -7.302208), (3.1813815, -49.38442, -7.1454997), (2.1257777, -49.726093, -4.774575), (2.1257777, -49.726093, -4.774575), (3.1813815, -49.38442, -7.1454997), (3.550988, -49.38442, -6.9692063), (2.3727465, -49.726093, -4.656777), (2.3727465, -49.726093, -4.656777), (3.550988, -49.38442, -6.9692063), (3.9108617, -49.38442, -6.773811), (2.6132116, -49.726093, -4.526215), (2.6132116, -49.726093, -4.526215), (3.9108617, -49.38442, -6.773811), (4.260016, -49.38442, -6.5598493), (2.846514, -49.726093, -4.3832474), (2.846514, -49.726093, -4.3832474), (4.260016, -49.38442, -6.5598493), (4.5974936, -49.38442, -6.327907), (3.0720146, -49.726093, -4.2282653), (3.0720146, -49.726093, -4.2282653), (4.5974936, -49.38442, -6.327907), (4.92237, -49.38442, -6.0786204), (3.2890947, -49.726093, -4.0616937), (3.2890947, -49.726093, -4.0616937), (4.92237, -49.38442, -6.0786204), (5.2337546, -49.38442, -5.812673), (3.4971597, -49.726093, -3.8839893), (3.4971597, -49.726093, -3.8839893), (5.2337546, -49.38442, -5.812673), (5.5307937, -49.38442, -5.5307937), (3.6956394, -49.726093, -3.6956394), (3.6956394, -49.726093, -3.6956394), (5.5307937, -49.38442, -5.5307937), (5.812673, -49.38442, -5.2337546), (3.8839893, -49.726093, -3.4971597), (3.8839893, -49.726093, -3.4971597), (5.812673, -49.38442, -5.2337546), (6.0786204, -49.38442, -4.92237), (4.0616937, -49.726093, -3.2890947), (4.0616937, -49.726093, -3.2890947), (6.0786204, -49.38442, -4.92237), (6.327907, -49.38442, -4.5974936), (4.2282653, -49.726093, -3.0720146), (4.2282653, -49.726093, -3.0720146), (6.327907, -49.38442, -4.5974936), (6.5598493, -49.38442, -4.260016), (4.3832474, -49.726093, -2.846514), (4.3832474, -49.726093, -2.846514), (6.5598493, -49.38442, -4.260016), (6.773811, -49.38442, -3.9108617), (4.526215, -49.726093, -2.6132116), (4.526215, -49.726093, -2.6132116), (6.773811, -49.38442, -3.9108617), (6.9692063, -49.38442, -3.550988), (4.656777, -49.726093, -2.3727465), (4.656777, -49.726093, -2.3727465), (6.9692063, -49.38442, -3.550988), (7.1454997, -49.38442, -3.1813815), (4.774575, -49.726093, -2.1257777), (4.774575, -49.726093, -2.1257777), (7.1454997, -49.38442, -3.1813815), (7.302208, -49.38442, -2.8030548), (4.8792863, -49.726093, -1.8729825), (4.8792863, -49.726093, -1.8729825), (7.302208, -49.38442, -2.8030548), (7.438901, -49.38442, -2.4170454), (4.970624, -49.726093, -1.6150535), (4.970624, -49.726093, -1.6150535), (7.438901, -49.38442, -2.4170454), (7.5552044, -49.38442, -2.024411), (5.048337, -49.726093, -1.3526978), (5.048337, -49.726093, -1.3526978), (7.5552044, -49.38442, -2.024411), (7.6507998, -49.38442, -1.6262277), (5.112213, -49.726093, -1.0866345), (5.112213, -49.726093, -1.0866345), (7.6507998, -49.38442, -1.6262277), (7.725425, -49.38442, -1.223587), (5.1620774, -49.726093, -0.81759274), (5.1620774, -49.726093, -0.81759274), (7.725425, -49.38442, -1.223587), (7.778875, -49.38442, -0.81759274), (5.197792, -49.726093, -0.54631), (5.197792, -49.726093, -0.54631), (7.778875, -49.38442, -0.81759274), (7.8110037, -49.38442, -0.40935737), (5.2192607, -49.726093, -0.27352986), (5.2192607, -49.726093, -0.27352986), (7.8110037, -49.38442, -0.40935737), (7.8217235, -49.38442, 0), (5.2264233, -49.726093, 0), (7.8217235, -49.38442, 0), (10.395584, -48.90738, 0), (10.381338, -48.90738, 0.54406285), (7.8110037, -49.38442, 0.40935737), (7.8110037, -49.38442, 0.40935737), (10.381338, -48.90738, 0.54406285), (10.338636, -48.90738, 1.0866345), (7.778875, -49.38442, 0.81759274), (7.778875, -49.38442, 0.81759274), (10.338636, -48.90738, 1.0866345), (10.267597, -48.90738, 1.6262277), (7.725425, -49.38442, 1.223587), (7.725425, -49.38442, 1.223587), (10.267597, -48.90738, 1.6262277), (10.168416, -48.90738, 2.1613636), (7.6507998, -49.38442, 1.6262277), (7.6507998, -49.38442, 1.6262277), (10.168416, -48.90738, 2.1613636), (10.041364, -48.90738, 2.6905754), (7.5552044, -49.38442, 2.024411), (7.5552044, -49.38442, 2.024411), (10.041364, -48.90738, 2.6905754), (9.886788, -48.90738, 3.2124124), (7.438901, -49.38442, 2.4170454), (7.438901, -49.38442, 2.4170454), (9.886788, -48.90738, 3.2124124), (9.705114, -48.90738, 3.7254443), (7.302208, -49.38442, 2.8030548), (7.302208, -49.38442, 2.8030548), (9.705114, -48.90738, 3.7254443), (9.496839, -48.90738, 4.2282653), (7.1454997, -49.38442, 3.1813815), (7.1454997, -49.38442, 3.1813815), (9.496839, -48.90738, 4.2282653), (9.262533, -48.90738, 4.7194967), (6.9692063, -49.38442, 3.550988), (6.9692063, -49.38442, 3.550988), (9.262533, -48.90738, 4.7194967), (9.00284, -48.90738, 5.197792), (6.773811, -49.38442, 3.9108617), (6.773811, -49.38442, 3.9108617), (9.00284, -48.90738, 5.197792), (8.718471, -48.90738, 5.661841), (6.5598493, -49.38442, 4.260016), (6.5598493, -49.38442, 4.260016), (8.718471, -48.90738, 5.661841), (8.410205, -48.90738, 6.110371), (6.327907, -49.38442, 4.5974936), (6.327907, -49.38442, 4.5974936), (8.410205, -48.90738, 6.110371), (8.078887, -48.90738, 6.5421534), (6.0786204, -49.38442, 4.92237), (6.0786204, -49.38442, 4.92237), (8.078887, -48.90738, 6.5421534), (7.725425, -48.90738, 6.9560037), (5.812673, -49.38442, 5.2337546), (5.812673, -49.38442, 5.2337546), (7.725425, -48.90738, 6.9560037), (7.350788, -48.90738, 7.350788), (5.5307937, -49.38442, 5.5307937), (5.5307937, -49.38442, 5.5307937), (7.350788, -48.90738, 7.350788), (6.9560037, -48.90738, 7.725425), (5.2337546, -49.38442, 5.812673), (5.2337546, -49.38442, 5.812673), (6.9560037, -48.90738, 7.725425), (6.5421534, -48.90738, 8.078887), (4.92237, -49.38442, 6.0786204), (4.92237, -49.38442, 6.0786204), (6.5421534, -48.90738, 8.078887), (6.110371, -48.90738, 8.410205), (4.5974936, -49.38442, 6.327907), (4.5974936, -49.38442, 6.327907), (6.110371, -48.90738, 8.410205), (5.661841, -48.90738, 8.718471), (4.260016, -49.38442, 6.5598493), (4.260016, -49.38442, 6.5598493), (5.661841, -48.90738, 8.718471), (5.197792, -48.90738, 9.00284), (3.9108617, -49.38442, 6.773811), (3.9108617, -49.38442, 6.773811), (5.197792, -48.90738, 9.00284), (4.7194967, -48.90738, 9.262533), (3.550988, -49.38442, 6.9692063), (3.550988, -49.38442, 6.9692063), (4.7194967, -48.90738, 9.262533), (4.2282653, -48.90738, 9.496839), (3.1813815, -49.38442, 7.1454997), (3.1813815, -49.38442, 7.1454997), (4.2282653, -48.90738, 9.496839), (3.7254443, -48.90738, 9.705114), (2.8030548, -49.38442, 7.302208), (2.8030548, -49.38442, 7.302208), (3.7254443, -48.90738, 9.705114), (3.2124124, -48.90738, 9.886788), (2.4170454, -49.38442, 7.438901), (2.4170454, -49.38442, 7.438901), (3.2124124, -48.90738, 9.886788), (2.6905754, -48.90738, 10.041364), (2.024411, -49.38442, 7.5552044), (2.024411, -49.38442, 7.5552044), (2.6905754, -48.90738, 10.041364), (2.1613636, -48.90738, 10.168416), (1.6262277, -49.38442, 7.6507998), (1.6262277, -49.38442, 7.6507998), (2.1613636, -48.90738, 10.168416), (1.6262277, -48.90738, 10.267597), (1.223587, -49.38442, 7.725425), (1.223587, -49.38442, 7.725425), (1.6262277, -48.90738, 10.267597), (1.0866345, -48.90738, 10.338636), (0.81759274, -49.38442, 7.778875), (0.81759274, -49.38442, 7.778875), (1.0866345, -48.90738, 10.338636), (0.54406285, -48.90738, 10.381338), (0.40935737, -49.38442, 7.8110037), (0.40935737, -49.38442, 7.8110037), (0.54406285, -48.90738, 10.381338), (6.3654595e-16, -48.90738, 10.395584), (4.789424e-16, -49.38442, 7.8217235), (4.789424e-16, -49.38442, 7.8217235), (6.3654595e-16, -48.90738, 10.395584), (-0.54406285, -48.90738, 10.381338), (-0.40935737, -49.38442, 7.8110037), (-0.40935737, -49.38442, 7.8110037), (-0.54406285, -48.90738, 10.381338), (-1.0866345, -48.90738, 10.338636), (-0.81759274, -49.38442, 7.778875), (-0.81759274, -49.38442, 7.778875), (-1.0866345, -48.90738, 10.338636), (-1.6262277, -48.90738, 10.267597), (-1.223587, -49.38442, 7.725425), (-1.223587, -49.38442, 7.725425), (-1.6262277, -48.90738, 10.267597), (-2.1613636, -48.90738, 10.168416), (-1.6262277, -49.38442, 7.6507998), (-1.6262277, -49.38442, 7.6507998), (-2.1613636, -48.90738, 10.168416), (-2.6905754, -48.90738, 10.041364), (-2.024411, -49.38442, 7.5552044), (-2.024411, -49.38442, 7.5552044), (-2.6905754, -48.90738, 10.041364), (-3.2124124, -48.90738, 9.886788), (-2.4170454, -49.38442, 7.438901), (-2.4170454, -49.38442, 7.438901), (-3.2124124, -48.90738, 9.886788), (-3.7254443, -48.90738, 9.705114), (-2.8030548, -49.38442, 7.302208), (-2.8030548, -49.38442, 7.302208), (-3.7254443, -48.90738, 9.705114), (-4.2282653, -48.90738, 9.496839), (-3.1813815, -49.38442, 7.1454997), (-3.1813815, -49.38442, 7.1454997), (-4.2282653, -48.90738, 9.496839), (-4.7194967, -48.90738, 9.262533), (-3.550988, -49.38442, 6.9692063), (-3.550988, -49.38442, 6.9692063), (-4.7194967, -48.90738, 9.262533), (-5.197792, -48.90738, 9.00284), (-3.9108617, -49.38442, 6.773811), (-3.9108617, -49.38442, 6.773811), (-5.197792, -48.90738, 9.00284), (-5.661841, -48.90738, 8.718471), (-4.260016, -49.38442, 6.5598493), (-4.260016, -49.38442, 6.5598493), (-5.661841, -48.90738, 8.718471), (-6.110371, -48.90738, 8.410205), (-4.5974936, -49.38442, 6.327907), (-4.5974936, -49.38442, 6.327907), (-6.110371, -48.90738, 8.410205), (-6.5421534, -48.90738, 8.078887), (-4.92237, -49.38442, 6.0786204), (-4.92237, -49.38442, 6.0786204), (-6.5421534, -48.90738, 8.078887), (-6.9560037, -48.90738, 7.725425), (-5.2337546, -49.38442, 5.812673), (-5.2337546, -49.38442, 5.812673), (-6.9560037, -48.90738, 7.725425), (-7.350788, -48.90738, 7.350788), (-5.5307937, -49.38442, 5.5307937), (-5.5307937, -49.38442, 5.5307937), (-7.350788, -48.90738, 7.350788), (-7.725425, -48.90738, 6.9560037), (-5.812673, -49.38442, 5.2337546), (-5.812673, -49.38442, 5.2337546), (-7.725425, -48.90738, 6.9560037), (-8.078887, -48.90738, 6.5421534), (-6.0786204, -49.38442, 4.92237), (-6.0786204, -49.38442, 4.92237), (-8.078887, -48.90738, 6.5421534), (-8.410205, -48.90738, 6.110371), (-6.327907, -49.38442, 4.5974936), (-6.327907, -49.38442, 4.5974936), (-8.410205, -48.90738, 6.110371), (-8.718471, -48.90738, 5.661841), (-6.5598493, -49.38442, 4.260016), (-6.5598493, -49.38442, 4.260016), (-8.718471, -48.90738, 5.661841), (-9.00284, -48.90738, 5.197792), (-6.773811, -49.38442, 3.9108617), (-6.773811, -49.38442, 3.9108617), (-9.00284, -48.90738, 5.197792), (-9.262533, -48.90738, 4.7194967), (-6.9692063, -49.38442, 3.550988), (-6.9692063, -49.38442, 3.550988), (-9.262533, -48.90738, 4.7194967), (-9.496839, -48.90738, 4.2282653), (-7.1454997, -49.38442, 3.1813815), (-7.1454997, -49.38442, 3.1813815), (-9.496839, -48.90738, 4.2282653), (-9.705114, -48.90738, 3.7254443), (-7.302208, -49.38442, 2.8030548), (-7.302208, -49.38442, 2.8030548), (-9.705114, -48.90738, 3.7254443), (-9.886788, -48.90738, 3.2124124), (-7.438901, -49.38442, 2.4170454), (-7.438901, -49.38442, 2.4170454), (-9.886788, -48.90738, 3.2124124), (-10.041364, -48.90738, 2.6905754), (-7.5552044, -49.38442, 2.024411), (-7.5552044, -49.38442, 2.024411), (-10.041364, -48.90738, 2.6905754), (-10.168416, -48.90738, 2.1613636), (-7.6507998, -49.38442, 1.6262277), (-7.6507998, -49.38442, 1.6262277), (-10.168416, -48.90738, 2.1613636), (-10.267597, -48.90738, 1.6262277), (-7.725425, -49.38442, 1.223587), (-7.725425, -49.38442, 1.223587), (-10.267597, -48.90738, 1.6262277), (-10.338636, -48.90738, 1.0866345), (-7.778875, -49.38442, 0.81759274), (-7.778875, -49.38442, 0.81759274), (-10.338636, -48.90738, 1.0866345), (-10.381338, -48.90738, 0.54406285), (-7.8110037, -49.38442, 0.40935737), (-7.8110037, -49.38442, 0.40935737), (-10.381338, -48.90738, 0.54406285), (-10.395584, -48.90738, 1.2730919e-15), (-7.8217235, -49.38442, 9.578848e-16), (-7.8217235, -49.38442, 9.578848e-16), (-10.395584, -48.90738, 1.2730919e-15), (-10.381338, -48.90738, -0.54406285), (-7.8110037, -49.38442, -0.40935737), (-7.8110037, -49.38442, -0.40935737), (-10.381338, -48.90738, -0.54406285), (-10.338636, -48.90738, -1.0866345), (-7.778875, -49.38442, -0.81759274), (-7.778875, -49.38442, -0.81759274), (-10.338636, -48.90738, -1.0866345), (-10.267597, -48.90738, -1.6262277), (-7.725425, -49.38442, -1.223587), (-7.725425, -49.38442, -1.223587), (-10.267597, -48.90738, -1.6262277), (-10.168416, -48.90738, -2.1613636), (-7.6507998, -49.38442, -1.6262277), (-7.6507998, -49.38442, -1.6262277), (-10.168416, -48.90738, -2.1613636), (-10.041364, -48.90738, -2.6905754), (-7.5552044, -49.38442, -2.024411), (-7.5552044, -49.38442, -2.024411), (-10.041364, -48.90738, -2.6905754), (-9.886788, -48.90738, -3.2124124), (-7.438901, -49.38442, -2.4170454), (-7.438901, -49.38442, -2.4170454), (-9.886788, -48.90738, -3.2124124), (-9.705114, -48.90738, -3.7254443), (-7.302208, -49.38442, -2.8030548), (-7.302208, -49.38442, -2.8030548), (-9.705114, -48.90738, -3.7254443), (-9.496839, -48.90738, -4.2282653), (-7.1454997, -49.38442, -3.1813815), (-7.1454997, -49.38442, -3.1813815), (-9.496839, -48.90738, -4.2282653), (-9.262533, -48.90738, -4.7194967), (-6.9692063, -49.38442, -3.550988), (-6.9692063, -49.38442, -3.550988), (-9.262533, -48.90738, -4.7194967), (-9.00284, -48.90738, -5.197792), (-6.773811, -49.38442, -3.9108617), (-6.773811, -49.38442, -3.9108617), (-9.00284, -48.90738, -5.197792), (-8.718471, -48.90738, -5.661841), (-6.5598493, -49.38442, -4.260016), (-6.5598493, -49.38442, -4.260016), (-8.718471, -48.90738, -5.661841), (-8.410205, -48.90738, -6.110371), (-6.327907, -49.38442, -4.5974936), (-6.327907, -49.38442, -4.5974936), (-8.410205, -48.90738, -6.110371), (-8.078887, -48.90738, -6.5421534), (-6.0786204, -49.38442, -4.92237), (-6.0786204, -49.38442, -4.92237), (-8.078887, -48.90738, -6.5421534), (-7.725425, -48.90738, -6.9560037), (-5.812673, -49.38442, -5.2337546), (-5.812673, -49.38442, -5.2337546), (-7.725425, -48.90738, -6.9560037), (-7.350788, -48.90738, -7.350788), (-5.5307937, -49.38442, -5.5307937), (-5.5307937, -49.38442, -5.5307937), (-7.350788, -48.90738, -7.350788), (-6.9560037, -48.90738, -7.725425), (-5.2337546, -49.38442, -5.812673), (-5.2337546, -49.38442, -5.812673), (-6.9560037, -48.90738, -7.725425), (-6.5421534, -48.90738, -8.078887), (-4.92237, -49.38442, -6.0786204), (-4.92237, -49.38442, -6.0786204), (-6.5421534, -48.90738, -8.078887), (-6.110371, -48.90738, -8.410205), (-4.5974936, -49.38442, -6.327907), (-4.5974936, -49.38442, -6.327907), (-6.110371, -48.90738, -8.410205), (-5.661841, -48.90738, -8.718471), (-4.260016, -49.38442, -6.5598493), (-4.260016, -49.38442, -6.5598493), (-5.661841, -48.90738, -8.718471), (-5.197792, -48.90738, -9.00284), (-3.9108617, -49.38442, -6.773811), (-3.9108617, -49.38442, -6.773811), (-5.197792, -48.90738, -9.00284), (-4.7194967, -48.90738, -9.262533), (-3.550988, -49.38442, -6.9692063), (-3.550988, -49.38442, -6.9692063), (-4.7194967, -48.90738, -9.262533), (-4.2282653, -48.90738, -9.496839), (-3.1813815, -49.38442, -7.1454997), (-3.1813815, -49.38442, -7.1454997), (-4.2282653, -48.90738, -9.496839), (-3.7254443, -48.90738, -9.705114), (-2.8030548, -49.38442, -7.302208), (-2.8030548, -49.38442, -7.302208), (-3.7254443, -48.90738, -9.705114), (-3.2124124, -48.90738, -9.886788), (-2.4170454, -49.38442, -7.438901), (-2.4170454, -49.38442, -7.438901), (-3.2124124, -48.90738, -9.886788), (-2.6905754, -48.90738, -10.041364), (-2.024411, -49.38442, -7.5552044), (-2.024411, -49.38442, -7.5552044), (-2.6905754, -48.90738, -10.041364), (-2.1613636, -48.90738, -10.168416), (-1.6262277, -49.38442, -7.6507998), (-1.6262277, -49.38442, -7.6507998), (-2.1613636, -48.90738, -10.168416), (-1.6262277, -48.90738, -10.267597), (-1.223587, -49.38442, -7.725425), (-1.223587, -49.38442, -7.725425), (-1.6262277, -48.90738, -10.267597), (-1.0866345, -48.90738, -10.338636), (-0.81759274, -49.38442, -7.778875), (-0.81759274, -49.38442, -7.778875), (-1.0866345, -48.90738, -10.338636), (-0.54406285, -48.90738, -10.381338), (-0.40935737, -49.38442, -7.8110037), (-0.40935737, -49.38442, -7.8110037), (-0.54406285, -48.90738, -10.381338), (-1.909638e-15, -48.90738, -10.395584), (-1.4368273e-15, -49.38442, -7.8217235), (-1.4368273e-15, -49.38442, -7.8217235), (-1.909638e-15, -48.90738, -10.395584), (0.54406285, -48.90738, -10.381338), (0.40935737, -49.38442, -7.8110037), (0.40935737, -49.38442, -7.8110037), (0.54406285, -48.90738, -10.381338), (1.0866345, -48.90738, -10.338636), (0.81759274, -49.38442, -7.778875), (0.81759274, -49.38442, -7.778875), (1.0866345, -48.90738, -10.338636), (1.6262277, -48.90738, -10.267597), (1.223587, -49.38442, -7.725425), (1.223587, -49.38442, -7.725425), (1.6262277, -48.90738, -10.267597), (2.1613636, -48.90738, -10.168416), (1.6262277, -49.38442, -7.6507998), (1.6262277, -49.38442, -7.6507998), (2.1613636, -48.90738, -10.168416), (2.6905754, -48.90738, -10.041364), (2.024411, -49.38442, -7.5552044), (2.024411, -49.38442, -7.5552044), (2.6905754, -48.90738, -10.041364), (3.2124124, -48.90738, -9.886788), (2.4170454, -49.38442, -7.438901), (2.4170454, -49.38442, -7.438901), (3.2124124, -48.90738, -9.886788), (3.7254443, -48.90738, -9.705114), (2.8030548, -49.38442, -7.302208), (2.8030548, -49.38442, -7.302208), (3.7254443, -48.90738, -9.705114), (4.2282653, -48.90738, -9.496839), (3.1813815, -49.38442, -7.1454997), (3.1813815, -49.38442, -7.1454997), (4.2282653, -48.90738, -9.496839), (4.7194967, -48.90738, -9.262533), (3.550988, -49.38442, -6.9692063), (3.550988, -49.38442, -6.9692063), (4.7194967, -48.90738, -9.262533), (5.197792, -48.90738, -9.00284), (3.9108617, -49.38442, -6.773811), (3.9108617, -49.38442, -6.773811), (5.197792, -48.90738, -9.00284), (5.661841, -48.90738, -8.718471), (4.260016, -49.38442, -6.5598493), (4.260016, -49.38442, -6.5598493), (5.661841, -48.90738, -8.718471), (6.110371, -48.90738, -8.410205), (4.5974936, -49.38442, -6.327907), (4.5974936, -49.38442, -6.327907), (6.110371, -48.90738, -8.410205), (6.5421534, -48.90738, -8.078887), (4.92237, -49.38442, -6.0786204), (4.92237, -49.38442, -6.0786204), (6.5421534, -48.90738, -8.078887), (6.9560037, -48.90738, -7.725425), (5.2337546, -49.38442, -5.812673), (5.2337546, -49.38442, -5.812673), (6.9560037, -48.90738, -7.725425), (7.350788, -48.90738, -7.350788), (5.5307937, -49.38442, -5.5307937), (5.5307937, -49.38442, -5.5307937), (7.350788, -48.90738, -7.350788), (7.725425, -48.90738, -6.9560037), (5.812673, -49.38442, -5.2337546), (5.812673, -49.38442, -5.2337546), (7.725425, -48.90738, -6.9560037), (8.078887, -48.90738, -6.5421534), (6.0786204, -49.38442, -4.92237), (6.0786204, -49.38442, -4.92237), (8.078887, -48.90738, -6.5421534), (8.410205, -48.90738, -6.110371), (6.327907, -49.38442, -4.5974936), (6.327907, -49.38442, -4.5974936), (8.410205, -48.90738, -6.110371), (8.718471, -48.90738, -5.661841), (6.5598493, -49.38442, -4.260016), (6.5598493, -49.38442, -4.260016), (8.718471, -48.90738, -5.661841), (9.00284, -48.90738, -5.197792), (6.773811, -49.38442, -3.9108617), (6.773811, -49.38442, -3.9108617), (9.00284, -48.90738, -5.197792), (9.262533, -48.90738, -4.7194967), (6.9692063, -49.38442, -3.550988), (6.9692063, -49.38442, -3.550988), (9.262533, -48.90738, -4.7194967), (9.496839, -48.90738, -4.2282653), (7.1454997, -49.38442, -3.1813815), (7.1454997, -49.38442, -3.1813815), (9.496839, -48.90738, -4.2282653), (9.705114, -48.90738, -3.7254443), (7.302208, -49.38442, -2.8030548), (7.302208, -49.38442, -2.8030548), (9.705114, -48.90738, -3.7254443), (9.886788, -48.90738, -3.2124124), (7.438901, -49.38442, -2.4170454), (7.438901, -49.38442, -2.4170454), (9.886788, -48.90738, -3.2124124), (10.041364, -48.90738, -2.6905754), (7.5552044, -49.38442, -2.024411), (7.5552044, -49.38442, -2.024411), (10.041364, -48.90738, -2.6905754), (10.168416, -48.90738, -2.1613636), (7.6507998, -49.38442, -1.6262277), (7.6507998, -49.38442, -1.6262277), (10.168416, -48.90738, -2.1613636), (10.267597, -48.90738, -1.6262277), (7.725425, -49.38442, -1.223587), (7.725425, -49.38442, -1.223587), (10.267597, -48.90738, -1.6262277), (10.338636, -48.90738, -1.0866345), (7.778875, -49.38442, -0.81759274), (7.778875, -49.38442, -0.81759274), (10.338636, -48.90738, -1.0866345), (10.381338, -48.90738, -0.54406285), (7.8110037, -49.38442, -0.40935737), (7.8110037, -49.38442, -0.40935737), (10.381338, -48.90738, -0.54406285), (10.395584, -48.90738, 0), (7.8217235, -49.38442, 0), (10.395584, -48.90738, 0), (12.940952, -48.29629, 0), (12.923217, -48.29629, 0.6772771), (10.381338, -48.90738, 0.54406285), (10.381338, -48.90738, 0.54406285), (12.923217, -48.29629, 0.6772771), (12.87006, -48.29629, 1.3526978), (10.338636, -48.90738, 1.0866345), (10.338636, -48.90738, 1.0866345), (12.87006, -48.29629, 1.3526978), (12.781628, -48.29629, 2.024411), (10.267597, -48.90738, 1.6262277), (10.267597, -48.90738, 1.6262277), (12.781628, -48.29629, 2.024411), (12.658161, -48.29629, 2.6905754), (10.168416, -48.90738, 2.1613636), (10.168416, -48.90738, 2.1613636), (12.658161, -48.29629, 2.6905754), (12.5, -48.29629, 3.349365), (10.041364, -48.90738, 2.6905754), (10.041364, -48.90738, 2.6905754), (12.5, -48.29629, 3.349365), (12.307577, -48.29629, 3.998974), (9.886788, -48.90738, 3.2124124), (9.886788, -48.90738, 3.2124124), (12.307577, -48.29629, 3.998974), (12.08142, -48.29629, 4.6376224), (9.705114, -48.90738, 3.7254443), (9.705114, -48.90738, 3.7254443), (12.08142, -48.29629, 4.6376224), (11.822148, -48.29629, 5.2635593), (9.496839, -48.90738, 4.2282653), (9.496839, -48.90738, 4.2282653), (11.822148, -48.29629, 5.2635593), (11.530473, -48.29629, 5.8750696), (9.262533, -48.90738, 4.7194967), (9.262533, -48.90738, 4.7194967), (11.530473, -48.29629, 5.8750696), (11.207193, -48.29629, 6.470476), (9.00284, -48.90738, 5.197792), (9.00284, -48.90738, 5.197792), (11.207193, -48.29629, 6.470476), (10.853196, -48.29629, 7.0481477), (8.718471, -48.90738, 5.661841), (8.718471, -48.90738, 5.661841), (10.853196, -48.29629, 7.0481477), (10.46945, -48.29629, 7.606501), (8.410205, -48.90738, 6.110371), (8.410205, -48.90738, 6.110371), (10.46945, -48.29629, 7.606501), (10.057009, -48.29629, 8.144005), (8.078887, -48.90738, 6.5421534), (8.078887, -48.90738, 6.5421534), (10.057009, -48.29629, 8.144005), (9.617002, -48.29629, 8.659187), (7.725425, -48.90738, 6.9560037), (7.725425, -48.90738, 6.9560037), (9.617002, -48.29629, 8.659187), (9.150635, -48.29629, 9.150635), (7.350788, -48.90738, 7.350788), (7.350788, -48.90738, 7.350788), (9.150635, -48.29629, 9.150635), (8.659187, -48.29629, 9.617002), (6.9560037, -48.90738, 7.725425), (6.9560037, -48.90738, 7.725425), (8.659187, -48.29629, 9.617002), (8.144005, -48.29629, 10.057009), (6.5421534, -48.90738, 8.078887), (6.5421534, -48.90738, 8.078887), (8.144005, -48.29629, 10.057009), (7.606501, -48.29629, 10.46945), (6.110371, -48.90738, 8.410205), (6.110371, -48.90738, 8.410205), (7.606501, -48.29629, 10.46945), (7.0481477, -48.29629, 10.853196), (5.661841, -48.90738, 8.718471), (5.661841, -48.90738, 8.718471), (7.0481477, -48.29629, 10.853196), (6.470476, -48.29629, 11.207193), (5.197792, -48.90738, 9.00284), (5.197792, -48.90738, 9.00284), (6.470476, -48.29629, 11.207193), (5.8750696, -48.29629, 11.530473), (4.7194967, -48.90738, 9.262533), (4.7194967, -48.90738, 9.262533), (5.8750696, -48.29629, 11.530473), (5.2635593, -48.29629, 11.822148), (4.2282653, -48.90738, 9.496839), (4.2282653, -48.90738, 9.496839), (5.2635593, -48.29629, 11.822148), (4.6376224, -48.29629, 12.08142), (3.7254443, -48.90738, 9.705114), (3.7254443, -48.90738, 9.705114), (4.6376224, -48.29629, 12.08142), (3.998974, -48.29629, 12.307577), (3.2124124, -48.90738, 9.886788), (3.2124124, -48.90738, 9.886788), (3.998974, -48.29629, 12.307577), (3.349365, -48.29629, 12.5), (2.6905754, -48.90738, 10.041364), (2.6905754, -48.90738, 10.041364), (3.349365, -48.29629, 12.5), (2.6905754, -48.29629, 12.658161), (2.1613636, -48.90738, 10.168416), (2.1613636, -48.90738, 10.168416), (2.6905754, -48.29629, 12.658161), (2.024411, -48.29629, 12.781628), (1.6262277, -48.90738, 10.267597), (1.6262277, -48.90738, 10.267597), (2.024411, -48.29629, 12.781628), (1.3526978, -48.29629, 12.87006), (1.0866345, -48.90738, 10.338636), (1.0866345, -48.90738, 10.338636), (1.3526978, -48.29629, 12.87006), (0.6772771, -48.29629, 12.923217), (0.54406285, -48.90738, 10.381338), (0.54406285, -48.90738, 10.381338), (0.6772771, -48.29629, 12.923217), (7.924048e-16, -48.29629, 12.940952), (6.3654595e-16, -48.90738, 10.395584), (6.3654595e-16, -48.90738, 10.395584), (7.924048e-16, -48.29629, 12.940952), (-0.6772771, -48.29629, 12.923217), (-0.54406285, -48.90738, 10.381338), (-0.54406285, -48.90738, 10.381338), (-0.6772771, -48.29629, 12.923217), (-1.3526978, -48.29629, 12.87006), (-1.0866345, -48.90738, 10.338636), (-1.0866345, -48.90738, 10.338636), (-1.3526978, -48.29629, 12.87006), (-2.024411, -48.29629, 12.781628), (-1.6262277, -48.90738, 10.267597), (-1.6262277, -48.90738, 10.267597), (-2.024411, -48.29629, 12.781628), (-2.6905754, -48.29629, 12.658161), (-2.1613636, -48.90738, 10.168416), (-2.1613636, -48.90738, 10.168416), (-2.6905754, -48.29629, 12.658161), (-3.349365, -48.29629, 12.5), (-2.6905754, -48.90738, 10.041364), (-2.6905754, -48.90738, 10.041364), (-3.349365, -48.29629, 12.5), (-3.998974, -48.29629, 12.307577), (-3.2124124, -48.90738, 9.886788), (-3.2124124, -48.90738, 9.886788), (-3.998974, -48.29629, 12.307577), (-4.6376224, -48.29629, 12.08142), (-3.7254443, -48.90738, 9.705114), (-3.7254443, -48.90738, 9.705114), (-4.6376224, -48.29629, 12.08142), (-5.2635593, -48.29629, 11.822148), (-4.2282653, -48.90738, 9.496839), (-4.2282653, -48.90738, 9.496839), (-5.2635593, -48.29629, 11.822148), (-5.8750696, -48.29629, 11.530473), (-4.7194967, -48.90738, 9.262533), (-4.7194967, -48.90738, 9.262533), (-5.8750696, -48.29629, 11.530473), (-6.470476, -48.29629, 11.207193), (-5.197792, -48.90738, 9.00284), (-5.197792, -48.90738, 9.00284), (-6.470476, -48.29629, 11.207193), (-7.0481477, -48.29629, 10.853196), (-5.661841, -48.90738, 8.718471), (-5.661841, -48.90738, 8.718471), (-7.0481477, -48.29629, 10.853196), (-7.606501, -48.29629, 10.46945), (-6.110371, -48.90738, 8.410205), (-6.110371, -48.90738, 8.410205), (-7.606501, -48.29629, 10.46945), (-8.144005, -48.29629, 10.057009), (-6.5421534, -48.90738, 8.078887), (-6.5421534, -48.90738, 8.078887), (-8.144005, -48.29629, 10.057009), (-8.659187, -48.29629, 9.617002), (-6.9560037, -48.90738, 7.725425), (-6.9560037, -48.90738, 7.725425), (-8.659187, -48.29629, 9.617002), (-9.150635, -48.29629, 9.150635), (-7.350788, -48.90738, 7.350788), (-7.350788, -48.90738, 7.350788), (-9.150635, -48.29629, 9.150635), (-9.617002, -48.29629, 8.659187), (-7.725425, -48.90738, 6.9560037), (-7.725425, -48.90738, 6.9560037), (-9.617002, -48.29629, 8.659187), (-10.057009, -48.29629, 8.144005), (-8.078887, -48.90738, 6.5421534), (-8.078887, -48.90738, 6.5421534), (-10.057009, -48.29629, 8.144005), (-10.46945, -48.29629, 7.606501), (-8.410205, -48.90738, 6.110371), (-8.410205, -48.90738, 6.110371), (-10.46945, -48.29629, 7.606501), (-10.853196, -48.29629, 7.0481477), (-8.718471, -48.90738, 5.661841), (-8.718471, -48.90738, 5.661841), (-10.853196, -48.29629, 7.0481477), (-11.207193, -48.29629, 6.470476), (-9.00284, -48.90738, 5.197792), (-9.00284, -48.90738, 5.197792), (-11.207193, -48.29629, 6.470476), (-11.530473, -48.29629, 5.8750696), (-9.262533, -48.90738, 4.7194967), (-9.262533, -48.90738, 4.7194967), (-11.530473, -48.29629, 5.8750696), (-11.822148, -48.29629, 5.2635593), (-9.496839, -48.90738, 4.2282653), (-9.496839, -48.90738, 4.2282653), (-11.822148, -48.29629, 5.2635593), (-12.08142, -48.29629, 4.6376224), (-9.705114, -48.90738, 3.7254443), (-9.705114, -48.90738, 3.7254443), (-12.08142, -48.29629, 4.6376224), (-12.307577, -48.29629, 3.998974), (-9.886788, -48.90738, 3.2124124), (-9.886788, -48.90738, 3.2124124), (-12.307577, -48.29629, 3.998974), (-12.5, -48.29629, 3.349365), (-10.041364, -48.90738, 2.6905754), (-10.041364, -48.90738, 2.6905754), (-12.5, -48.29629, 3.349365), (-12.658161, -48.29629, 2.6905754), (-10.168416, -48.90738, 2.1613636), (-10.168416, -48.90738, 2.1613636), (-12.658161, -48.29629, 2.6905754), (-12.781628, -48.29629, 2.024411), (-10.267597, -48.90738, 1.6262277), (-10.267597, -48.90738, 1.6262277), (-12.781628, -48.29629, 2.024411), (-12.87006, -48.29629, 1.3526978), (-10.338636, -48.90738, 1.0866345), (-10.338636, -48.90738, 1.0866345), (-12.87006, -48.29629, 1.3526978), (-12.923217, -48.29629, 0.6772771), (-10.381338, -48.90738, 0.54406285), (-10.381338, -48.90738, 0.54406285), (-12.923217, -48.29629, 0.6772771), (-12.940952, -48.29629, 1.5848095e-15), (-10.395584, -48.90738, 1.2730919e-15), (-10.395584, -48.90738, 1.2730919e-15), (-12.940952, -48.29629, 1.5848095e-15), (-12.923217, -48.29629, -0.6772771), (-10.381338, -48.90738, -0.54406285), (-10.381338, -48.90738, -0.54406285), (-12.923217, -48.29629, -0.6772771), (-12.87006, -48.29629, -1.3526978), (-10.338636, -48.90738, -1.0866345), (-10.338636, -48.90738, -1.0866345), (-12.87006, -48.29629, -1.3526978), (-12.781628, -48.29629, -2.024411), (-10.267597, -48.90738, -1.6262277), (-10.267597, -48.90738, -1.6262277), (-12.781628, -48.29629, -2.024411), (-12.658161, -48.29629, -2.6905754), (-10.168416, -48.90738, -2.1613636), (-10.168416, -48.90738, -2.1613636), (-12.658161, -48.29629, -2.6905754), (-12.5, -48.29629, -3.349365), (-10.041364, -48.90738, -2.6905754), (-10.041364, -48.90738, -2.6905754), (-12.5, -48.29629, -3.349365), (-12.307577, -48.29629, -3.998974), (-9.886788, -48.90738, -3.2124124), (-9.886788, -48.90738, -3.2124124), (-12.307577, -48.29629, -3.998974), (-12.08142, -48.29629, -4.6376224), (-9.705114, -48.90738, -3.7254443), (-9.705114, -48.90738, -3.7254443), (-12.08142, -48.29629, -4.6376224), (-11.822148, -48.29629, -5.2635593), (-9.496839, -48.90738, -4.2282653), (-9.496839, -48.90738, -4.2282653), (-11.822148, -48.29629, -5.2635593), (-11.530473, -48.29629, -5.8750696), (-9.262533, -48.90738, -4.7194967), (-9.262533, -48.90738, -4.7194967), (-11.530473, -48.29629, -5.8750696), (-11.207193, -48.29629, -6.470476), (-9.00284, -48.90738, -5.197792), (-9.00284, -48.90738, -5.197792), (-11.207193, -48.29629, -6.470476), (-10.853196, -48.29629, -7.0481477), (-8.718471, -48.90738, -5.661841), (-8.718471, -48.90738, -5.661841), (-10.853196, -48.29629, -7.0481477), (-10.46945, -48.29629, -7.606501), (-8.410205, -48.90738, -6.110371), (-8.410205, -48.90738, -6.110371), (-10.46945, -48.29629, -7.606501), (-10.057009, -48.29629, -8.144005), (-8.078887, -48.90738, -6.5421534), (-8.078887, -48.90738, -6.5421534), (-10.057009, -48.29629, -8.144005), (-9.617002, -48.29629, -8.659187), (-7.725425, -48.90738, -6.9560037), (-7.725425, -48.90738, -6.9560037), (-9.617002, -48.29629, -8.659187), (-9.150635, -48.29629, -9.150635), (-7.350788, -48.90738, -7.350788), (-7.350788, -48.90738, -7.350788), (-9.150635, -48.29629, -9.150635), (-8.659187, -48.29629, -9.617002), (-6.9560037, -48.90738, -7.725425), (-6.9560037, -48.90738, -7.725425), (-8.659187, -48.29629, -9.617002), (-8.144005, -48.29629, -10.057009), (-6.5421534, -48.90738, -8.078887), (-6.5421534, -48.90738, -8.078887), (-8.144005, -48.29629, -10.057009), (-7.606501, -48.29629, -10.46945), (-6.110371, -48.90738, -8.410205), (-6.110371, -48.90738, -8.410205), (-7.606501, -48.29629, -10.46945), (-7.0481477, -48.29629, -10.853196), (-5.661841, -48.90738, -8.718471), (-5.661841, -48.90738, -8.718471), (-7.0481477, -48.29629, -10.853196), (-6.470476, -48.29629, -11.207193), (-5.197792, -48.90738, -9.00284), (-5.197792, -48.90738, -9.00284), (-6.470476, -48.29629, -11.207193), (-5.8750696, -48.29629, -11.530473), (-4.7194967, -48.90738, -9.262533), (-4.7194967, -48.90738, -9.262533), (-5.8750696, -48.29629, -11.530473), (-5.2635593, -48.29629, -11.822148), (-4.2282653, -48.90738, -9.496839), (-4.2282653, -48.90738, -9.496839), (-5.2635593, -48.29629, -11.822148), (-4.6376224, -48.29629, -12.08142), (-3.7254443, -48.90738, -9.705114), (-3.7254443, -48.90738, -9.705114), (-4.6376224, -48.29629, -12.08142), (-3.998974, -48.29629, -12.307577), (-3.2124124, -48.90738, -9.886788), (-3.2124124, -48.90738, -9.886788), (-3.998974, -48.29629, -12.307577), (-3.349365, -48.29629, -12.5), (-2.6905754, -48.90738, -10.041364), (-2.6905754, -48.90738, -10.041364), (-3.349365, -48.29629, -12.5), (-2.6905754, -48.29629, -12.658161), (-2.1613636, -48.90738, -10.168416), (-2.1613636, -48.90738, -10.168416), (-2.6905754, -48.29629, -12.658161), (-2.024411, -48.29629, -12.781628), (-1.6262277, -48.90738, -10.267597), (-1.6262277, -48.90738, -10.267597), (-2.024411, -48.29629, -12.781628), (-1.3526978, -48.29629, -12.87006), (-1.0866345, -48.90738, -10.338636), (-1.0866345, -48.90738, -10.338636), (-1.3526978, -48.29629, -12.87006), (-0.6772771, -48.29629, -12.923217), (-0.54406285, -48.90738, -10.381338), (-0.54406285, -48.90738, -10.381338), (-0.6772771, -48.29629, -12.923217), (-2.3772143e-15, -48.29629, -12.940952), (-1.909638e-15, -48.90738, -10.395584), (-1.909638e-15, -48.90738, -10.395584), (-2.3772143e-15, -48.29629, -12.940952), (0.6772771, -48.29629, -12.923217), (0.54406285, -48.90738, -10.381338), (0.54406285, -48.90738, -10.381338), (0.6772771, -48.29629, -12.923217), (1.3526978, -48.29629, -12.87006), (1.0866345, -48.90738, -10.338636), (1.0866345, -48.90738, -10.338636), (1.3526978, -48.29629, -12.87006), (2.024411, -48.29629, -12.781628), (1.6262277, -48.90738, -10.267597), (1.6262277, -48.90738, -10.267597), (2.024411, -48.29629, -12.781628), (2.6905754, -48.29629, -12.658161), (2.1613636, -48.90738, -10.168416), (2.1613636, -48.90738, -10.168416), (2.6905754, -48.29629, -12.658161), (3.349365, -48.29629, -12.5), (2.6905754, -48.90738, -10.041364), (2.6905754, -48.90738, -10.041364), (3.349365, -48.29629, -12.5), (3.998974, -48.29629, -12.307577), (3.2124124, -48.90738, -9.886788), (3.2124124, -48.90738, -9.886788), (3.998974, -48.29629, -12.307577), (4.6376224, -48.29629, -12.08142), (3.7254443, -48.90738, -9.705114), (3.7254443, -48.90738, -9.705114), (4.6376224, -48.29629, -12.08142), (5.2635593, -48.29629, -11.822148), (4.2282653, -48.90738, -9.496839), (4.2282653, -48.90738, -9.496839), (5.2635593, -48.29629, -11.822148), (5.8750696, -48.29629, -11.530473), (4.7194967, -48.90738, -9.262533), (4.7194967, -48.90738, -9.262533), (5.8750696, -48.29629, -11.530473), (6.470476, -48.29629, -11.207193), (5.197792, -48.90738, -9.00284), (5.197792, -48.90738, -9.00284), (6.470476, -48.29629, -11.207193), (7.0481477, -48.29629, -10.853196), (5.661841, -48.90738, -8.718471), (5.661841, -48.90738, -8.718471), (7.0481477, -48.29629, -10.853196), (7.606501, -48.29629, -10.46945), (6.110371, -48.90738, -8.410205), (6.110371, -48.90738, -8.410205), (7.606501, -48.29629, -10.46945), (8.144005, -48.29629, -10.057009), (6.5421534, -48.90738, -8.078887), (6.5421534, -48.90738, -8.078887), (8.144005, -48.29629, -10.057009), (8.659187, -48.29629, -9.617002), (6.9560037, -48.90738, -7.725425), (6.9560037, -48.90738, -7.725425), (8.659187, -48.29629, -9.617002), (9.150635, -48.29629, -9.150635), (7.350788, -48.90738, -7.350788), (7.350788, -48.90738, -7.350788), (9.150635, -48.29629, -9.150635), (9.617002, -48.29629, -8.659187), (7.725425, -48.90738, -6.9560037), (7.725425, -48.90738, -6.9560037), (9.617002, -48.29629, -8.659187), (10.057009, -48.29629, -8.144005), (8.078887, -48.90738, -6.5421534), (8.078887, -48.90738, -6.5421534), (10.057009, -48.29629, -8.144005), (10.46945, -48.29629, -7.606501), (8.410205, -48.90738, -6.110371), (8.410205, -48.90738, -6.110371), (10.46945, -48.29629, -7.606501), (10.853196, -48.29629, -7.0481477), (8.718471, -48.90738, -5.661841), (8.718471, -48.90738, -5.661841), (10.853196, -48.29629, -7.0481477), (11.207193, -48.29629, -6.470476), (9.00284, -48.90738, -5.197792), (9.00284, -48.90738, -5.197792), (11.207193, -48.29629, -6.470476), (11.530473, -48.29629, -5.8750696), (9.262533, -48.90738, -4.7194967), (9.262533, -48.90738, -4.7194967), (11.530473, -48.29629, -5.8750696), (11.822148, -48.29629, -5.2635593), (9.496839, -48.90738, -4.2282653), (9.496839, -48.90738, -4.2282653), (11.822148, -48.29629, -5.2635593), (12.08142, -48.29629, -4.6376224), (9.705114, -48.90738, -3.7254443), (9.705114, -48.90738, -3.7254443), (12.08142, -48.29629, -4.6376224), (12.307577, -48.29629, -3.998974), (9.886788, -48.90738, -3.2124124), (9.886788, -48.90738, -3.2124124), (12.307577, -48.29629, -3.998974), (12.5, -48.29629, -3.349365), (10.041364, -48.90738, -2.6905754), (10.041364, -48.90738, -2.6905754), (12.5, -48.29629, -3.349365), (12.658161, -48.29629, -2.6905754), (10.168416, -48.90738, -2.1613636), (10.168416, -48.90738, -2.1613636), (12.658161, -48.29629, -2.6905754), (12.781628, -48.29629, -2.024411), (10.267597, -48.90738, -1.6262277), (10.267597, -48.90738, -1.6262277), (12.781628, -48.29629, -2.024411), (12.87006, -48.29629, -1.3526978), (10.338636, -48.90738, -1.0866345), (10.338636, -48.90738, -1.0866345), (12.87006, -48.29629, -1.3526978), (12.923217, -48.29629, -0.6772771), (10.381338, -48.90738, -0.54406285), (10.381338, -48.90738, -0.54406285), (12.923217, -48.29629, -0.6772771), (12.940952, -48.29629, 0), (10.395584, -48.90738, 0), (12.940952, -48.29629, 0), (15.45085, -47.552826, 0), (15.429675, -47.552826, 0.808635), (12.923217, -48.29629, 0.6772771), (12.923217, -48.29629, 0.6772771), (15.429675, -47.552826, 0.808635), (15.366208, -47.552826, 1.6150535), (12.87006, -48.29629, 1.3526978), (12.87006, -48.29629, 1.3526978), (15.366208, -47.552826, 1.6150535), (15.260624, -47.552826, 2.4170454), (12.781628, -48.29629, 2.024411), (12.781628, -48.29629, 2.024411), (15.260624, -47.552826, 2.4170454), (15.113212, -47.552826, 3.2124124), (12.658161, -48.29629, 2.6905754), (12.658161, -48.29629, 2.6905754), (15.113212, -47.552826, 3.2124124), (14.924375, -47.552826, 3.998974), (12.5, -48.29629, 3.349365), (12.5, -48.29629, 3.349365), (14.924375, -47.552826, 3.998974), (14.694632, -47.552826, 4.774575), (12.307577, -48.29629, 3.998974), (12.307577, -48.29629, 3.998974), (14.694632, -47.552826, 4.774575), (14.424611, -47.552826, 5.5370893), (12.08142, -48.29629, 4.6376224), (12.08142, -48.29629, 4.6376224), (14.424611, -47.552826, 5.5370893), (14.115053, -47.552826, 6.2844267), (11.822148, -48.29629, 5.2635593), (11.822148, -48.29629, 5.2635593), (14.115053, -47.552826, 6.2844267), (13.766808, -47.552826, 7.014539), (11.530473, -48.29629, 5.8750696), (11.530473, -48.29629, 5.8750696), (13.766808, -47.552826, 7.014539), (13.380828, -47.552826, 7.725425), (11.207193, -48.29629, 6.470476), (11.207193, -48.29629, 6.470476), (13.380828, -47.552826, 7.725425), (12.958173, -47.552826, 8.415136), (10.853196, -48.29629, 7.0481477), (10.853196, -48.29629, 7.0481477), (12.958173, -47.552826, 8.415136), (12.5, -47.552826, 9.081781), (10.46945, -48.29629, 7.606501), (10.46945, -48.29629, 7.606501), (12.5, -47.552826, 9.081781), (12.0075655, -47.552826, 9.723535), (10.057009, -48.29629, 8.144005), (10.057009, -48.29629, 8.144005), (12.0075655, -47.552826, 9.723535), (11.482219, -47.552826, 10.338636), (9.617002, -48.29629, 8.659187), (9.617002, -48.29629, 8.659187), (11.482219, -47.552826, 10.338636), (10.925401, -47.552826, 10.925401), (9.150635, -48.29629, 9.150635), (9.150635, -48.29629, 9.150635), (10.925401, -47.552826, 10.925401), (10.338636, -47.552826, 11.482219), (8.659187, -48.29629, 9.617002), (8.659187, -48.29629, 9.617002), (10.338636, -47.552826, 11.482219), (9.723535, -47.552826, 12.0075655), (8.144005, -48.29629, 10.057009), (8.144005, -48.29629, 10.057009), (9.723535, -47.552826, 12.0075655), (9.081781, -47.552826, 12.5), (7.606501, -48.29629, 10.46945), (7.606501, -48.29629, 10.46945), (9.081781, -47.552826, 12.5), (8.415136, -47.552826, 12.958173), (7.0481477, -48.29629, 10.853196), (7.0481477, -48.29629, 10.853196), (8.415136, -47.552826, 12.958173), (7.725425, -47.552826, 13.380828), (6.470476, -48.29629, 11.207193), (6.470476, -48.29629, 11.207193), (7.725425, -47.552826, 13.380828), (7.014539, -47.552826, 13.766808), (5.8750696, -48.29629, 11.530473), (5.8750696, -48.29629, 11.530473), (7.014539, -47.552826, 13.766808), (6.2844267, -47.552826, 14.115053), (5.2635593, -48.29629, 11.822148), (5.2635593, -48.29629, 11.822148), (6.2844267, -47.552826, 14.115053), (5.5370893, -47.552826, 14.424611), (4.6376224, -48.29629, 12.08142), (4.6376224, -48.29629, 12.08142), (5.5370893, -47.552826, 14.424611), (4.774575, -47.552826, 14.694632), (3.998974, -48.29629, 12.307577), (3.998974, -48.29629, 12.307577), (4.774575, -47.552826, 14.694632), (3.998974, -47.552826, 14.924375), (3.349365, -48.29629, 12.5), (3.349365, -48.29629, 12.5), (3.998974, -47.552826, 14.924375), (3.2124124, -47.552826, 15.113212), (2.6905754, -48.29629, 12.658161), (2.6905754, -48.29629, 12.658161), (3.2124124, -47.552826, 15.113212), (2.4170454, -47.552826, 15.260624), (2.024411, -48.29629, 12.781628), (2.024411, -48.29629, 12.781628), (2.4170454, -47.552826, 15.260624), (1.6150535, -47.552826, 15.366208), (1.3526978, -48.29629, 12.87006), (1.3526978, -48.29629, 12.87006), (1.6150535, -47.552826, 15.366208), (0.808635, -47.552826, 15.429675), (0.6772771, -48.29629, 12.923217), (0.6772771, -48.29629, 12.923217), (0.808635, -47.552826, 15.429675), (9.460917e-16, -47.552826, 15.45085), (7.924048e-16, -48.29629, 12.940952), (7.924048e-16, -48.29629, 12.940952), (9.460917e-16, -47.552826, 15.45085), (-0.808635, -47.552826, 15.429675), (-0.6772771, -48.29629, 12.923217), (-0.6772771, -48.29629, 12.923217), (-0.808635, -47.552826, 15.429675), (-1.6150535, -47.552826, 15.366208), (-1.3526978, -48.29629, 12.87006), (-1.3526978, -48.29629, 12.87006), (-1.6150535, -47.552826, 15.366208), (-2.4170454, -47.552826, 15.260624), (-2.024411, -48.29629, 12.781628), (-2.024411, -48.29629, 12.781628), (-2.4170454, -47.552826, 15.260624), (-3.2124124, -47.552826, 15.113212), (-2.6905754, -48.29629, 12.658161), (-2.6905754, -48.29629, 12.658161), (-3.2124124, -47.552826, 15.113212), (-3.998974, -47.552826, 14.924375), (-3.349365, -48.29629, 12.5), (-3.349365, -48.29629, 12.5), (-3.998974, -47.552826, 14.924375), (-4.774575, -47.552826, 14.694632), (-3.998974, -48.29629, 12.307577), (-3.998974, -48.29629, 12.307577), (-4.774575, -47.552826, 14.694632), (-5.5370893, -47.552826, 14.424611), (-4.6376224, -48.29629, 12.08142), (-4.6376224, -48.29629, 12.08142), (-5.5370893, -47.552826, 14.424611), (-6.2844267, -47.552826, 14.115053), (-5.2635593, -48.29629, 11.822148), (-5.2635593, -48.29629, 11.822148), (-6.2844267, -47.552826, 14.115053), (-7.014539, -47.552826, 13.766808), (-5.8750696, -48.29629, 11.530473), (-5.8750696, -48.29629, 11.530473), (-7.014539, -47.552826, 13.766808), (-7.725425, -47.552826, 13.380828), (-6.470476, -48.29629, 11.207193), (-6.470476, -48.29629, 11.207193), (-7.725425, -47.552826, 13.380828), (-8.415136, -47.552826, 12.958173), (-7.0481477, -48.29629, 10.853196), (-7.0481477, -48.29629, 10.853196), (-8.415136, -47.552826, 12.958173), (-9.081781, -47.552826, 12.5), (-7.606501, -48.29629, 10.46945), (-7.606501, -48.29629, 10.46945), (-9.081781, -47.552826, 12.5), (-9.723535, -47.552826, 12.0075655), (-8.144005, -48.29629, 10.057009), (-8.144005, -48.29629, 10.057009), (-9.723535, -47.552826, 12.0075655), (-10.338636, -47.552826, 11.482219), (-8.659187, -48.29629, 9.617002), (-8.659187, -48.29629, 9.617002), (-10.338636, -47.552826, 11.482219), (-10.925401, -47.552826, 10.925401), (-9.150635, -48.29629, 9.150635), (-9.150635, -48.29629, 9.150635), (-10.925401, -47.552826, 10.925401), (-11.482219, -47.552826, 10.338636), (-9.617002, -48.29629, 8.659187), (-9.617002, -48.29629, 8.659187), (-11.482219, -47.552826, 10.338636), (-12.0075655, -47.552826, 9.723535), (-10.057009, -48.29629, 8.144005), (-10.057009, -48.29629, 8.144005), (-12.0075655, -47.552826, 9.723535), (-12.5, -47.552826, 9.081781), (-10.46945, -48.29629, 7.606501), (-10.46945, -48.29629, 7.606501), (-12.5, -47.552826, 9.081781), (-12.958173, -47.552826, 8.415136), (-10.853196, -48.29629, 7.0481477), (-10.853196, -48.29629, 7.0481477), (-12.958173, -47.552826, 8.415136), (-13.380828, -47.552826, 7.725425), (-11.207193, -48.29629, 6.470476), (-11.207193, -48.29629, 6.470476), (-13.380828, -47.552826, 7.725425), (-13.766808, -47.552826, 7.014539), (-11.530473, -48.29629, 5.8750696), (-11.530473, -48.29629, 5.8750696), (-13.766808, -47.552826, 7.014539), (-14.115053, -47.552826, 6.2844267), (-11.822148, -48.29629, 5.2635593), (-11.822148, -48.29629, 5.2635593), (-14.115053, -47.552826, 6.2844267), (-14.424611, -47.552826, 5.5370893), (-12.08142, -48.29629, 4.6376224), (-12.08142, -48.29629, 4.6376224), (-14.424611, -47.552826, 5.5370893), (-14.694632, -47.552826, 4.774575), (-12.307577, -48.29629, 3.998974), (-12.307577, -48.29629, 3.998974), (-14.694632, -47.552826, 4.774575), (-14.924375, -47.552826, 3.998974), (-12.5, -48.29629, 3.349365), (-12.5, -48.29629, 3.349365), (-14.924375, -47.552826, 3.998974), (-15.113212, -47.552826, 3.2124124), (-12.658161, -48.29629, 2.6905754), (-12.658161, -48.29629, 2.6905754), (-15.113212, -47.552826, 3.2124124), (-15.260624, -47.552826, 2.4170454), (-12.781628, -48.29629, 2.024411), (-12.781628, -48.29629, 2.024411), (-15.260624, -47.552826, 2.4170454), (-15.366208, -47.552826, 1.6150535), (-12.87006, -48.29629, 1.3526978), (-12.87006, -48.29629, 1.3526978), (-15.366208, -47.552826, 1.6150535), (-15.429675, -47.552826, 0.808635), (-12.923217, -48.29629, 0.6772771), (-12.923217, -48.29629, 0.6772771), (-15.429675, -47.552826, 0.808635), (-15.45085, -47.552826, 1.8921833e-15), (-12.940952, -48.29629, 1.5848095e-15), (-12.940952, -48.29629, 1.5848095e-15), (-15.45085, -47.552826, 1.8921833e-15), (-15.429675, -47.552826, -0.808635), (-12.923217, -48.29629, -0.6772771), (-12.923217, -48.29629, -0.6772771), (-15.429675, -47.552826, -0.808635), (-15.366208, -47.552826, -1.6150535), (-12.87006, -48.29629, -1.3526978), (-12.87006, -48.29629, -1.3526978), (-15.366208, -47.552826, -1.6150535), (-15.260624, -47.552826, -2.4170454), (-12.781628, -48.29629, -2.024411), (-12.781628, -48.29629, -2.024411), (-15.260624, -47.552826, -2.4170454), (-15.113212, -47.552826, -3.2124124), (-12.658161, -48.29629, -2.6905754), (-12.658161, -48.29629, -2.6905754), (-15.113212, -47.552826, -3.2124124), (-14.924375, -47.552826, -3.998974), (-12.5, -48.29629, -3.349365), (-12.5, -48.29629, -3.349365), (-14.924375, -47.552826, -3.998974), (-14.694632, -47.552826, -4.774575), (-12.307577, -48.29629, -3.998974), (-12.307577, -48.29629, -3.998974), (-14.694632, -47.552826, -4.774575), (-14.424611, -47.552826, -5.5370893), (-12.08142, -48.29629, -4.6376224), (-12.08142, -48.29629, -4.6376224), (-14.424611, -47.552826, -5.5370893), (-14.115053, -47.552826, -6.2844267), (-11.822148, -48.29629, -5.2635593), (-11.822148, -48.29629, -5.2635593), (-14.115053, -47.552826, -6.2844267), (-13.766808, -47.552826, -7.014539), (-11.530473, -48.29629, -5.8750696), (-11.530473, -48.29629, -5.8750696), (-13.766808, -47.552826, -7.014539), (-13.380828, -47.552826, -7.725425), (-11.207193, -48.29629, -6.470476), (-11.207193, -48.29629, -6.470476), (-13.380828, -47.552826, -7.725425), (-12.958173, -47.552826, -8.415136), (-10.853196, -48.29629, -7.0481477), (-10.853196, -48.29629, -7.0481477), (-12.958173, -47.552826, -8.415136), (-12.5, -47.552826, -9.081781), (-10.46945, -48.29629, -7.606501), (-10.46945, -48.29629, -7.606501), (-12.5, -47.552826, -9.081781), (-12.0075655, -47.552826, -9.723535), (-10.057009, -48.29629, -8.144005), (-10.057009, -48.29629, -8.144005), (-12.0075655, -47.552826, -9.723535), (-11.482219, -47.552826, -10.338636), (-9.617002, -48.29629, -8.659187), (-9.617002, -48.29629, -8.659187), (-11.482219, -47.552826, -10.338636), (-10.925401, -47.552826, -10.925401), (-9.150635, -48.29629, -9.150635), (-9.150635, -48.29629, -9.150635), (-10.925401, -47.552826, -10.925401), (-10.338636, -47.552826, -11.482219), (-8.659187, -48.29629, -9.617002), (-8.659187, -48.29629, -9.617002), (-10.338636, -47.552826, -11.482219), (-9.723535, -47.552826, -12.0075655), (-8.144005, -48.29629, -10.057009), (-8.144005, -48.29629, -10.057009), (-9.723535, -47.552826, -12.0075655), (-9.081781, -47.552826, -12.5), (-7.606501, -48.29629, -10.46945), (-7.606501, -48.29629, -10.46945), (-9.081781, -47.552826, -12.5), (-8.415136, -47.552826, -12.958173), (-7.0481477, -48.29629, -10.853196), (-7.0481477, -48.29629, -10.853196), (-8.415136, -47.552826, -12.958173), (-7.725425, -47.552826, -13.380828), (-6.470476, -48.29629, -11.207193), (-6.470476, -48.29629, -11.207193), (-7.725425, -47.552826, -13.380828), (-7.014539, -47.552826, -13.766808), (-5.8750696, -48.29629, -11.530473), (-5.8750696, -48.29629, -11.530473), (-7.014539, -47.552826, -13.766808), (-6.2844267, -47.552826, -14.115053), (-5.2635593, -48.29629, -11.822148), (-5.2635593, -48.29629, -11.822148), (-6.2844267, -47.552826, -14.115053), (-5.5370893, -47.552826, -14.424611), (-4.6376224, -48.29629, -12.08142), (-4.6376224, -48.29629, -12.08142), (-5.5370893, -47.552826, -14.424611), (-4.774575, -47.552826, -14.694632), (-3.998974, -48.29629, -12.307577), (-3.998974, -48.29629, -12.307577), (-4.774575, -47.552826, -14.694632), (-3.998974, -47.552826, -14.924375), (-3.349365, -48.29629, -12.5), (-3.349365, -48.29629, -12.5), (-3.998974, -47.552826, -14.924375), (-3.2124124, -47.552826, -15.113212), (-2.6905754, -48.29629, -12.658161), (-2.6905754, -48.29629, -12.658161), (-3.2124124, -47.552826, -15.113212), (-2.4170454, -47.552826, -15.260624), (-2.024411, -48.29629, -12.781628), (-2.024411, -48.29629, -12.781628), (-2.4170454, -47.552826, -15.260624), (-1.6150535, -47.552826, -15.366208), (-1.3526978, -48.29629, -12.87006), (-1.3526978, -48.29629, -12.87006), (-1.6150535, -47.552826, -15.366208), (-0.808635, -47.552826, -15.429675), (-0.6772771, -48.29629, -12.923217), (-0.6772771, -48.29629, -12.923217), (-0.808635, -47.552826, -15.429675), (-2.838275e-15, -47.552826, -15.45085), (-2.3772143e-15, -48.29629, -12.940952), (-2.3772143e-15, -48.29629, -12.940952), (-2.838275e-15, -47.552826, -15.45085), (0.808635, -47.552826, -15.429675), (0.6772771, -48.29629, -12.923217), (0.6772771, -48.29629, -12.923217), (0.808635, -47.552826, -15.429675), (1.6150535, -47.552826, -15.366208), (1.3526978, -48.29629, -12.87006), (1.3526978, -48.29629, -12.87006), (1.6150535, -47.552826, -15.366208), (2.4170454, -47.552826, -15.260624), (2.024411, -48.29629, -12.781628), (2.024411, -48.29629, -12.781628), (2.4170454, -47.552826, -15.260624), (3.2124124, -47.552826, -15.113212), (2.6905754, -48.29629, -12.658161), (2.6905754, -48.29629, -12.658161), (3.2124124, -47.552826, -15.113212), (3.998974, -47.552826, -14.924375), (3.349365, -48.29629, -12.5), (3.349365, -48.29629, -12.5), (3.998974, -47.552826, -14.924375), (4.774575, -47.552826, -14.694632), (3.998974, -48.29629, -12.307577), (3.998974, -48.29629, -12.307577), (4.774575, -47.552826, -14.694632), (5.5370893, -47.552826, -14.424611), (4.6376224, -48.29629, -12.08142), (4.6376224, -48.29629, -12.08142), (5.5370893, -47.552826, -14.424611), (6.2844267, -47.552826, -14.115053), (5.2635593, -48.29629, -11.822148), (5.2635593, -48.29629, -11.822148), (6.2844267, -47.552826, -14.115053), (7.014539, -47.552826, -13.766808), (5.8750696, -48.29629, -11.530473), (5.8750696, -48.29629, -11.530473), (7.014539, -47.552826, -13.766808), (7.725425, -47.552826, -13.380828), (6.470476, -48.29629, -11.207193), (6.470476, -48.29629, -11.207193), (7.725425, -47.552826, -13.380828), (8.415136, -47.552826, -12.958173), (7.0481477, -48.29629, -10.853196), (7.0481477, -48.29629, -10.853196), (8.415136, -47.552826, -12.958173), (9.081781, -47.552826, -12.5), (7.606501, -48.29629, -10.46945), (7.606501, -48.29629, -10.46945), (9.081781, -47.552826, -12.5), (9.723535, -47.552826, -12.0075655), (8.144005, -48.29629, -10.057009), (8.144005, -48.29629, -10.057009), (9.723535, -47.552826, -12.0075655), (10.338636, -47.552826, -11.482219), (8.659187, -48.29629, -9.617002), (8.659187, -48.29629, -9.617002), (10.338636, -47.552826, -11.482219), (10.925401, -47.552826, -10.925401), (9.150635, -48.29629, -9.150635), (9.150635, -48.29629, -9.150635), (10.925401, -47.552826, -10.925401), (11.482219, -47.552826, -10.338636), (9.617002, -48.29629, -8.659187), (9.617002, -48.29629, -8.659187), (11.482219, -47.552826, -10.338636), (12.0075655, -47.552826, -9.723535), (10.057009, -48.29629, -8.144005), (10.057009, -48.29629, -8.144005), (12.0075655, -47.552826, -9.723535), (12.5, -47.552826, -9.081781), (10.46945, -48.29629, -7.606501), (10.46945, -48.29629, -7.606501), (12.5, -47.552826, -9.081781), (12.958173, -47.552826, -8.415136), (10.853196, -48.29629, -7.0481477), (10.853196, -48.29629, -7.0481477), (12.958173, -47.552826, -8.415136), (13.380828, -47.552826, -7.725425), (11.207193, -48.29629, -6.470476), (11.207193, -48.29629, -6.470476), (13.380828, -47.552826, -7.725425), (13.766808, -47.552826, -7.014539), (11.530473, -48.29629, -5.8750696), (11.530473, -48.29629, -5.8750696), (13.766808, -47.552826, -7.014539), (14.115053, -47.552826, -6.2844267), (11.822148, -48.29629, -5.2635593), (11.822148, -48.29629, -5.2635593), (14.115053, -47.552826, -6.2844267), (14.424611, -47.552826, -5.5370893), (12.08142, -48.29629, -4.6376224), (12.08142, -48.29629, -4.6376224), (14.424611, -47.552826, -5.5370893), (14.694632, -47.552826, -4.774575), (12.307577, -48.29629, -3.998974), (12.307577, -48.29629, -3.998974), (14.694632, -47.552826, -4.774575), (14.924375, -47.552826, -3.998974), (12.5, -48.29629, -3.349365), (12.5, -48.29629, -3.349365), (14.924375, -47.552826, -3.998974), (15.113212, -47.552826, -3.2124124), (12.658161, -48.29629, -2.6905754), (12.658161, -48.29629, -2.6905754), (15.113212, -47.552826, -3.2124124), (15.260624, -47.552826, -2.4170454), (12.781628, -48.29629, -2.024411), (12.781628, -48.29629, -2.024411), (15.260624, -47.552826, -2.4170454), (15.366208, -47.552826, -1.6150535), (12.87006, -48.29629, -1.3526978), (12.87006, -48.29629, -1.3526978), (15.366208, -47.552826, -1.6150535), (15.429675, -47.552826, -0.808635), (12.923217, -48.29629, -0.6772771), (12.923217, -48.29629, -0.6772771), (15.429675, -47.552826, -0.808635), (15.45085, -47.552826, 0), (12.940952, -48.29629, 0), (15.45085, -47.552826, 0), (17.918398, -46.67902, 0), (17.89384, -46.67902, 0.93777645), (15.429675, -47.552826, 0.808635), (15.429675, -47.552826, 0.808635), (17.89384, -46.67902, 0.93777645), (17.820238, -46.67902, 1.8729825), (15.366208, -47.552826, 1.6150535), (15.366208, -47.552826, 1.6150535), (17.820238, -46.67902, 1.8729825), (17.697792, -46.67902, 2.8030548), (15.260624, -47.552826, 2.4170454), (15.260624, -47.552826, 2.4170454), (17.697792, -46.67902, 2.8030548), (17.526838, -46.67902, 3.7254443), (15.113212, -47.552826, 3.2124124), (15.113212, -47.552826, 3.2124124), (17.526838, -46.67902, 3.7254443), (17.307842, -46.67902, 4.6376224), (14.924375, -47.552826, 3.998974), (14.924375, -47.552826, 3.998974), (17.307842, -46.67902, 4.6376224), (17.041409, -46.67902, 5.5370893), (14.694632, -47.552826, 4.774575), (14.694632, -47.552826, 4.774575), (17.041409, -46.67902, 5.5370893), (16.728266, -46.67902, 6.4213796), (14.424611, -47.552826, 5.5370893), (14.424611, -47.552826, 5.5370893), (16.728266, -46.67902, 6.4213796), (16.36927, -46.67902, 7.288069), (14.115053, -47.552826, 6.2844267), (14.115053, -47.552826, 6.2844267), (16.36927, -46.67902, 7.288069), (15.965409, -46.67902, 8.134782), (13.766808, -47.552826, 7.014539), (13.766808, -47.552826, 7.014539), (15.965409, -46.67902, 8.134782), (15.517787, -46.67902, 8.959199), (13.380828, -47.552826, 7.725425), (13.380828, -47.552826, 7.725425), (15.517787, -46.67902, 8.959199), (15.027633, -46.67902, 9.759059), (12.958173, -47.552826, 8.415136), (12.958173, -47.552826, 8.415136), (15.027633, -46.67902, 9.759059), (14.496288, -46.67902, 10.532169), (12.5, -47.552826, 9.081781), (12.5, -47.552826, 9.081781), (14.496288, -46.67902, 10.532169), (13.92521, -46.67902, 11.276413), (12.0075655, -47.552826, 9.723535), (12.0075655, -47.552826, 9.723535), (13.92521, -46.67902, 11.276413), (13.315965, -46.67902, 11.989748), (11.482219, -47.552826, 10.338636), (11.482219, -47.552826, 10.338636), (13.315965, -46.67902, 11.989748), (12.67022, -46.67902, 12.67022), (10.925401, -47.552826, 10.925401), (10.925401, -47.552826, 10.925401), (12.67022, -46.67902, 12.67022), (11.989748, -46.67902, 13.315965), (10.338636, -47.552826, 11.482219), (10.338636, -47.552826, 11.482219), (11.989748, -46.67902, 13.315965), (11.276413, -46.67902, 13.92521), (9.723535, -47.552826, 12.0075655), (9.723535, -47.552826, 12.0075655), (11.276413, -46.67902, 13.92521), (10.532169, -46.67902, 14.496288), (9.081781, -47.552826, 12.5), (9.081781, -47.552826, 12.5), (10.532169, -46.67902, 14.496288), (9.759059, -46.67902, 15.027633), (8.415136, -47.552826, 12.958173), (8.415136, -47.552826, 12.958173), (9.759059, -46.67902, 15.027633), (8.959199, -46.67902, 15.517787), (7.725425, -47.552826, 13.380828), (7.725425, -47.552826, 13.380828), (8.959199, -46.67902, 15.517787), (8.134782, -46.67902, 15.965409), (7.014539, -47.552826, 13.766808), (7.014539, -47.552826, 13.766808), (8.134782, -46.67902, 15.965409), (7.288069, -46.67902, 16.36927), (6.2844267, -47.552826, 14.115053), (6.2844267, -47.552826, 14.115053), (7.288069, -46.67902, 16.36927), (6.4213796, -46.67902, 16.728266), (5.5370893, -47.552826, 14.424611), (5.5370893, -47.552826, 14.424611), (6.4213796, -46.67902, 16.728266), (5.5370893, -46.67902, 17.041409), (4.774575, -47.552826, 14.694632), (4.774575, -47.552826, 14.694632), (5.5370893, -46.67902, 17.041409), (4.6376224, -46.67902, 17.307842), (3.998974, -47.552826, 14.924375), (3.998974, -47.552826, 14.924375), (4.6376224, -46.67902, 17.307842), (3.7254443, -46.67902, 17.526838), (3.2124124, -47.552826, 15.113212), (3.2124124, -47.552826, 15.113212), (3.7254443, -46.67902, 17.526838), (2.8030548, -46.67902, 17.697792), (2.4170454, -47.552826, 15.260624), (2.4170454, -47.552826, 15.260624), (2.8030548, -46.67902, 17.697792), (1.8729825, -46.67902, 17.820238), (1.6150535, -47.552826, 15.366208), (1.6150535, -47.552826, 15.366208), (1.8729825, -46.67902, 17.820238), (0.93777645, -46.67902, 17.89384), (0.808635, -47.552826, 15.429675), (0.808635, -47.552826, 15.429675), (0.93777645, -46.67902, 17.89384), (1.0971854e-15, -46.67902, 17.918398), (9.460917e-16, -47.552826, 15.45085), (9.460917e-16, -47.552826, 15.45085), (1.0971854e-15, -46.67902, 17.918398), (-0.93777645, -46.67902, 17.89384), (-0.808635, -47.552826, 15.429675), (-0.808635, -47.552826, 15.429675), (-0.93777645, -46.67902, 17.89384), (-1.8729825, -46.67902, 17.820238), (-1.6150535, -47.552826, 15.366208), (-1.6150535, -47.552826, 15.366208), (-1.8729825, -46.67902, 17.820238), (-2.8030548, -46.67902, 17.697792), (-2.4170454, -47.552826, 15.260624), (-2.4170454, -47.552826, 15.260624), (-2.8030548, -46.67902, 17.697792), (-3.7254443, -46.67902, 17.526838), (-3.2124124, -47.552826, 15.113212), (-3.2124124, -47.552826, 15.113212), (-3.7254443, -46.67902, 17.526838), (-4.6376224, -46.67902, 17.307842), (-3.998974, -47.552826, 14.924375), (-3.998974, -47.552826, 14.924375), (-4.6376224, -46.67902, 17.307842), (-5.5370893, -46.67902, 17.041409), (-4.774575, -47.552826, 14.694632), (-4.774575, -47.552826, 14.694632), (-5.5370893, -46.67902, 17.041409), (-6.4213796, -46.67902, 16.728266), (-5.5370893, -47.552826, 14.424611), (-5.5370893, -47.552826, 14.424611), (-6.4213796, -46.67902, 16.728266), (-7.288069, -46.67902, 16.36927), (-6.2844267, -47.552826, 14.115053), (-6.2844267, -47.552826, 14.115053), (-7.288069, -46.67902, 16.36927), (-8.134782, -46.67902, 15.965409), (-7.014539, -47.552826, 13.766808), (-7.014539, -47.552826, 13.766808), (-8.134782, -46.67902, 15.965409), (-8.959199, -46.67902, 15.517787), (-7.725425, -47.552826, 13.380828), (-7.725425, -47.552826, 13.380828), (-8.959199, -46.67902, 15.517787), (-9.759059, -46.67902, 15.027633), (-8.415136, -47.552826, 12.958173), (-8.415136, -47.552826, 12.958173), (-9.759059, -46.67902, 15.027633), (-10.532169, -46.67902, 14.496288), (-9.081781, -47.552826, 12.5), (-9.081781, -47.552826, 12.5), (-10.532169, -46.67902, 14.496288), (-11.276413, -46.67902, 13.92521), (-9.723535, -47.552826, 12.0075655), (-9.723535, -47.552826, 12.0075655), (-11.276413, -46.67902, 13.92521), (-11.989748, -46.67902, 13.315965), (-10.338636, -47.552826, 11.482219), (-10.338636, -47.552826, 11.482219), (-11.989748, -46.67902, 13.315965), (-12.67022, -46.67902, 12.67022), (-10.925401, -47.552826, 10.925401), (-10.925401, -47.552826, 10.925401), (-12.67022, -46.67902, 12.67022), (-13.315965, -46.67902, 11.989748), (-11.482219, -47.552826, 10.338636), (-11.482219, -47.552826, 10.338636), (-13.315965, -46.67902, 11.989748), (-13.92521, -46.67902, 11.276413), (-12.0075655, -47.552826, 9.723535), (-12.0075655, -47.552826, 9.723535), (-13.92521, -46.67902, 11.276413), (-14.496288, -46.67902, 10.532169), (-12.5, -47.552826, 9.081781), (-12.5, -47.552826, 9.081781), (-14.496288, -46.67902, 10.532169), (-15.027633, -46.67902, 9.759059), (-12.958173, -47.552826, 8.415136), (-12.958173, -47.552826, 8.415136), (-15.027633, -46.67902, 9.759059), (-15.517787, -46.67902, 8.959199), (-13.380828, -47.552826, 7.725425), (-13.380828, -47.552826, 7.725425), (-15.517787, -46.67902, 8.959199), (-15.965409, -46.67902, 8.134782), (-13.766808, -47.552826, 7.014539), (-13.766808, -47.552826, 7.014539), (-15.965409, -46.67902, 8.134782), (-16.36927, -46.67902, 7.288069), (-14.115053, -47.552826, 6.2844267), (-14.115053, -47.552826, 6.2844267), (-16.36927, -46.67902, 7.288069), (-16.728266, -46.67902, 6.4213796), (-14.424611, -47.552826, 5.5370893), (-14.424611, -47.552826, 5.5370893), (-16.728266, -46.67902, 6.4213796), (-17.041409, -46.67902, 5.5370893), (-14.694632, -47.552826, 4.774575), (-14.694632, -47.552826, 4.774575), (-17.041409, -46.67902, 5.5370893), (-17.307842, -46.67902, 4.6376224), (-14.924375, -47.552826, 3.998974), (-14.924375, -47.552826, 3.998974), (-17.307842, -46.67902, 4.6376224), (-17.526838, -46.67902, 3.7254443), (-15.113212, -47.552826, 3.2124124), (-15.113212, -47.552826, 3.2124124), (-17.526838, -46.67902, 3.7254443), (-17.697792, -46.67902, 2.8030548), (-15.260624, -47.552826, 2.4170454), (-15.260624, -47.552826, 2.4170454), (-17.697792, -46.67902, 2.8030548), (-17.820238, -46.67902, 1.8729825), (-15.366208, -47.552826, 1.6150535), (-15.366208, -47.552826, 1.6150535), (-17.820238, -46.67902, 1.8729825), (-17.89384, -46.67902, 0.93777645), (-15.429675, -47.552826, 0.808635), (-15.429675, -47.552826, 0.808635), (-17.89384, -46.67902, 0.93777645), (-17.918398, -46.67902, 2.1943708e-15), (-15.45085, -47.552826, 1.8921833e-15), (-15.45085, -47.552826, 1.8921833e-15), (-17.918398, -46.67902, 2.1943708e-15), (-17.89384, -46.67902, -0.93777645), (-15.429675, -47.552826, -0.808635), (-15.429675, -47.552826, -0.808635), (-17.89384, -46.67902, -0.93777645), (-17.820238, -46.67902, -1.8729825), (-15.366208, -47.552826, -1.6150535), (-15.366208, -47.552826, -1.6150535), (-17.820238, -46.67902, -1.8729825), (-17.697792, -46.67902, -2.8030548), (-15.260624, -47.552826, -2.4170454), (-15.260624, -47.552826, -2.4170454), (-17.697792, -46.67902, -2.8030548), (-17.526838, -46.67902, -3.7254443), (-15.113212, -47.552826, -3.2124124), (-15.113212, -47.552826, -3.2124124), (-17.526838, -46.67902, -3.7254443), (-17.307842, -46.67902, -4.6376224), (-14.924375, -47.552826, -3.998974), (-14.924375, -47.552826, -3.998974), (-17.307842, -46.67902, -4.6376224), (-17.041409, -46.67902, -5.5370893), (-14.694632, -47.552826, -4.774575), (-14.694632, -47.552826, -4.774575), (-17.041409, -46.67902, -5.5370893), (-16.728266, -46.67902, -6.4213796), (-14.424611, -47.552826, -5.5370893), (-14.424611, -47.552826, -5.5370893), (-16.728266, -46.67902, -6.4213796), (-16.36927, -46.67902, -7.288069), (-14.115053, -47.552826, -6.2844267), (-14.115053, -47.552826, -6.2844267), (-16.36927, -46.67902, -7.288069), (-15.965409, -46.67902, -8.134782), (-13.766808, -47.552826, -7.014539), (-13.766808, -47.552826, -7.014539), (-15.965409, -46.67902, -8.134782), (-15.517787, -46.67902, -8.959199), (-13.380828, -47.552826, -7.725425), (-13.380828, -47.552826, -7.725425), (-15.517787, -46.67902, -8.959199), (-15.027633, -46.67902, -9.759059), (-12.958173, -47.552826, -8.415136), (-12.958173, -47.552826, -8.415136), (-15.027633, -46.67902, -9.759059), (-14.496288, -46.67902, -10.532169), (-12.5, -47.552826, -9.081781), (-12.5, -47.552826, -9.081781), (-14.496288, -46.67902, -10.532169), (-13.92521, -46.67902, -11.276413), (-12.0075655, -47.552826, -9.723535), (-12.0075655, -47.552826, -9.723535), (-13.92521, -46.67902, -11.276413), (-13.315965, -46.67902, -11.989748), (-11.482219, -47.552826, -10.338636), (-11.482219, -47.552826, -10.338636), (-13.315965, -46.67902, -11.989748), (-12.67022, -46.67902, -12.67022), (-10.925401, -47.552826, -10.925401), (-10.925401, -47.552826, -10.925401), (-12.67022, -46.67902, -12.67022), (-11.989748, -46.67902, -13.315965), (-10.338636, -47.552826, -11.482219), (-10.338636, -47.552826, -11.482219), (-11.989748, -46.67902, -13.315965), (-11.276413, -46.67902, -13.92521), (-9.723535, -47.552826, -12.0075655), (-9.723535, -47.552826, -12.0075655), (-11.276413, -46.67902, -13.92521), (-10.532169, -46.67902, -14.496288), (-9.081781, -47.552826, -12.5), (-9.081781, -47.552826, -12.5), (-10.532169, -46.67902, -14.496288), (-9.759059, -46.67902, -15.027633), (-8.415136, -47.552826, -12.958173), (-8.415136, -47.552826, -12.958173), (-9.759059, -46.67902, -15.027633), (-8.959199, -46.67902, -15.517787), (-7.725425, -47.552826, -13.380828), (-7.725425, -47.552826, -13.380828), (-8.959199, -46.67902, -15.517787), (-8.134782, -46.67902, -15.965409), (-7.014539, -47.552826, -13.766808), (-7.014539, -47.552826, -13.766808), (-8.134782, -46.67902, -15.965409), (-7.288069, -46.67902, -16.36927), (-6.2844267, -47.552826, -14.115053), (-6.2844267, -47.552826, -14.115053), (-7.288069, -46.67902, -16.36927), (-6.4213796, -46.67902, -16.728266), (-5.5370893, -47.552826, -14.424611), (-5.5370893, -47.552826, -14.424611), (-6.4213796, -46.67902, -16.728266), (-5.5370893, -46.67902, -17.041409), (-4.774575, -47.552826, -14.694632), (-4.774575, -47.552826, -14.694632), (-5.5370893, -46.67902, -17.041409), (-4.6376224, -46.67902, -17.307842), (-3.998974, -47.552826, -14.924375), (-3.998974, -47.552826, -14.924375), (-4.6376224, -46.67902, -17.307842), (-3.7254443, -46.67902, -17.526838), (-3.2124124, -47.552826, -15.113212), (-3.2124124, -47.552826, -15.113212), (-3.7254443, -46.67902, -17.526838), (-2.8030548, -46.67902, -17.697792), (-2.4170454, -47.552826, -15.260624), (-2.4170454, -47.552826, -15.260624), (-2.8030548, -46.67902, -17.697792), (-1.8729825, -46.67902, -17.820238), (-1.6150535, -47.552826, -15.366208), (-1.6150535, -47.552826, -15.366208), (-1.8729825, -46.67902, -17.820238), (-0.93777645, -46.67902, -17.89384), (-0.808635, -47.552826, -15.429675), (-0.808635, -47.552826, -15.429675), (-0.93777645, -46.67902, -17.89384), (-3.2915563e-15, -46.67902, -17.918398), (-2.838275e-15, -47.552826, -15.45085), (-2.838275e-15, -47.552826, -15.45085), (-3.2915563e-15, -46.67902, -17.918398), (0.93777645, -46.67902, -17.89384), (0.808635, -47.552826, -15.429675), (0.808635, -47.552826, -15.429675), (0.93777645, -46.67902, -17.89384), (1.8729825, -46.67902, -17.820238), (1.6150535, -47.552826, -15.366208), (1.6150535, -47.552826, -15.366208), (1.8729825, -46.67902, -17.820238), (2.8030548, -46.67902, -17.697792), (2.4170454, -47.552826, -15.260624), (2.4170454, -47.552826, -15.260624), (2.8030548, -46.67902, -17.697792), (3.7254443, -46.67902, -17.526838), (3.2124124, -47.552826, -15.113212), (3.2124124, -47.552826, -15.113212), (3.7254443, -46.67902, -17.526838), (4.6376224, -46.67902, -17.307842), (3.998974, -47.552826, -14.924375), (3.998974, -47.552826, -14.924375), (4.6376224, -46.67902, -17.307842), (5.5370893, -46.67902, -17.041409), (4.774575, -47.552826, -14.694632), (4.774575, -47.552826, -14.694632), (5.5370893, -46.67902, -17.041409), (6.4213796, -46.67902, -16.728266), (5.5370893, -47.552826, -14.424611), (5.5370893, -47.552826, -14.424611), (6.4213796, -46.67902, -16.728266), (7.288069, -46.67902, -16.36927), (6.2844267, -47.552826, -14.115053), (6.2844267, -47.552826, -14.115053), (7.288069, -46.67902, -16.36927), (8.134782, -46.67902, -15.965409), (7.014539, -47.552826, -13.766808), (7.014539, -47.552826, -13.766808), (8.134782, -46.67902, -15.965409), (8.959199, -46.67902, -15.517787), (7.725425, -47.552826, -13.380828), (7.725425, -47.552826, -13.380828), (8.959199, -46.67902, -15.517787), (9.759059, -46.67902, -15.027633), (8.415136, -47.552826, -12.958173), (8.415136, -47.552826, -12.958173), (9.759059, -46.67902, -15.027633), (10.532169, -46.67902, -14.496288), (9.081781, -47.552826, -12.5), (9.081781, -47.552826, -12.5), (10.532169, -46.67902, -14.496288), (11.276413, -46.67902, -13.92521), (9.723535, -47.552826, -12.0075655), (9.723535, -47.552826, -12.0075655), (11.276413, -46.67902, -13.92521), (11.989748, -46.67902, -13.315965), (10.338636, -47.552826, -11.482219), (10.338636, -47.552826, -11.482219), (11.989748, -46.67902, -13.315965), (12.67022, -46.67902, -12.67022), (10.925401, -47.552826, -10.925401), (10.925401, -47.552826, -10.925401), (12.67022, -46.67902, -12.67022), (13.315965, -46.67902, -11.989748), (11.482219, -47.552826, -10.338636), (11.482219, -47.552826, -10.338636), (13.315965, -46.67902, -11.989748), (13.92521, -46.67902, -11.276413), (12.0075655, -47.552826, -9.723535), (12.0075655, -47.552826, -9.723535), (13.92521, -46.67902, -11.276413), (14.496288, -46.67902, -10.532169), (12.5, -47.552826, -9.081781), (12.5, -47.552826, -9.081781), (14.496288, -46.67902, -10.532169), (15.027633, -46.67902, -9.759059), (12.958173, -47.552826, -8.415136), (12.958173, -47.552826, -8.415136), (15.027633, -46.67902, -9.759059), (15.517787, -46.67902, -8.959199), (13.380828, -47.552826, -7.725425), (13.380828, -47.552826, -7.725425), (15.517787, -46.67902, -8.959199), (15.965409, -46.67902, -8.134782), (13.766808, -47.552826, -7.014539), (13.766808, -47.552826, -7.014539), (15.965409, -46.67902, -8.134782), (16.36927, -46.67902, -7.288069), (14.115053, -47.552826, -6.2844267), (14.115053, -47.552826, -6.2844267), (16.36927, -46.67902, -7.288069), (16.728266, -46.67902, -6.4213796), (14.424611, -47.552826, -5.5370893), (14.424611, -47.552826, -5.5370893), (16.728266, -46.67902, -6.4213796), (17.041409, -46.67902, -5.5370893), (14.694632, -47.552826, -4.774575), (14.694632, -47.552826, -4.774575), (17.041409, -46.67902, -5.5370893), (17.307842, -46.67902, -4.6376224), (14.924375, -47.552826, -3.998974), (14.924375, -47.552826, -3.998974), (17.307842, -46.67902, -4.6376224), (17.526838, -46.67902, -3.7254443), (15.113212, -47.552826, -3.2124124), (15.113212, -47.552826, -3.2124124), (17.526838, -46.67902, -3.7254443), (17.697792, -46.67902, -2.8030548), (15.260624, -47.552826, -2.4170454), (15.260624, -47.552826, -2.4170454), (17.697792, -46.67902, -2.8030548), (17.820238, -46.67902, -1.8729825), (15.366208, -47.552826, -1.6150535), (15.366208, -47.552826, -1.6150535), (17.820238, -46.67902, -1.8729825), (17.89384, -46.67902, -0.93777645), (15.429675, -47.552826, -0.808635), (15.429675, -47.552826, -0.808635), (17.89384, -46.67902, -0.93777645), (17.918398, -46.67902, 0), (15.45085, -47.552826, 0), (17.918398, -46.67902, 0), (20.336832, -45.677273, 0), (20.308962, -45.677273, 1.0643475), (17.89384, -46.67902, 0.93777645), (17.89384, -46.67902, 0.93777645), (20.308962, -45.677273, 1.0643475), (20.225426, -45.677273, 2.1257777), (17.820238, -46.67902, 1.8729825), (17.820238, -46.67902, 1.8729825), (20.225426, -45.677273, 2.1257777), (20.086452, -45.677273, 3.1813815), (17.697792, -46.67902, 2.8030548), (17.697792, -46.67902, 2.8030548), (20.086452, -45.677273, 3.1813815), (19.892424, -45.677273, 4.2282653), (17.526838, -46.67902, 3.7254443), (17.526838, -46.67902, 3.7254443), (19.892424, -45.677273, 4.2282653), (19.643871, -45.677273, 5.2635593), (17.307842, -46.67902, 4.6376224), (17.307842, -46.67902, 4.6376224), (19.643871, -45.677273, 5.2635593), (19.341476, -45.677273, 6.2844267), (17.041409, -46.67902, 5.5370893), (17.041409, -46.67902, 5.5370893), (19.341476, -45.677273, 6.2844267), (18.986069, -45.677273, 7.288069), (16.728266, -46.67902, 6.4213796), (16.728266, -46.67902, 6.4213796), (18.986069, -45.677273, 7.288069), (18.57862, -45.677273, 8.271735), (16.36927, -46.67902, 7.288069), (16.36927, -46.67902, 7.288069), (18.57862, -45.677273, 8.271735), (18.12025, -45.677273, 9.232729), (15.965409, -46.67902, 8.134782), (15.965409, -46.67902, 8.134782), (18.12025, -45.677273, 9.232729), (17.612213, -45.677273, 10.168416), (15.517787, -46.67902, 8.959199), (15.517787, -46.67902, 8.959199), (17.612213, -45.677273, 10.168416), (17.055902, -45.677273, 11.076233), (15.027633, -46.67902, 9.759059), (15.027633, -46.67902, 9.759059), (17.055902, -45.677273, 11.076233), (16.452843, -45.677273, 11.95369), (14.496288, -46.67902, 10.532169), (14.496288, -46.67902, 10.532169), (16.452843, -45.677273, 11.95369), (15.804687, -45.677273, 12.798383), (13.92521, -46.67902, 11.276413), (13.92521, -46.67902, 11.276413), (15.804687, -45.677273, 12.798383), (15.113212, -45.677273, 13.607997), (13.315965, -46.67902, 11.989748), (13.315965, -46.67902, 11.989748), (15.113212, -45.677273, 13.607997), (14.380312, -45.677273, 14.380312), (12.67022, -46.67902, 12.67022), (12.67022, -46.67902, 12.67022), (14.380312, -45.677273, 14.380312), (13.607997, -45.677273, 15.113212), (11.989748, -46.67902, 13.315965), (11.989748, -46.67902, 13.315965), (13.607997, -45.677273, 15.113212), (12.798383, -45.677273, 15.804687), (11.276413, -46.67902, 13.92521), (11.276413, -46.67902, 13.92521), (12.798383, -45.677273, 15.804687), (11.95369, -45.677273, 16.452843), (10.532169, -46.67902, 14.496288), (10.532169, -46.67902, 14.496288), (11.95369, -45.677273, 16.452843), (11.076233, -45.677273, 17.055902), (9.759059, -46.67902, 15.027633), (9.759059, -46.67902, 15.027633), (11.076233, -45.677273, 17.055902), (10.168416, -45.677273, 17.612213), (8.959199, -46.67902, 15.517787), (8.959199, -46.67902, 15.517787), (10.168416, -45.677273, 17.612213), (9.232729, -45.677273, 18.12025), (8.134782, -46.67902, 15.965409), (8.134782, -46.67902, 15.965409), (9.232729, -45.677273, 18.12025), (8.271735, -45.677273, 18.57862), (7.288069, -46.67902, 16.36927), (7.288069, -46.67902, 16.36927), (8.271735, -45.677273, 18.57862), (7.288069, -45.677273, 18.986069), (6.4213796, -46.67902, 16.728266), (6.4213796, -46.67902, 16.728266), (7.288069, -45.677273, 18.986069), (6.2844267, -45.677273, 19.341476), (5.5370893, -46.67902, 17.041409), (5.5370893, -46.67902, 17.041409), (6.2844267, -45.677273, 19.341476), (5.2635593, -45.677273, 19.643871), (4.6376224, -46.67902, 17.307842), (4.6376224, -46.67902, 17.307842), (5.2635593, -45.677273, 19.643871), (4.2282653, -45.677273, 19.892424), (3.7254443, -46.67902, 17.526838), (3.7254443, -46.67902, 17.526838), (4.2282653, -45.677273, 19.892424), (3.1813815, -45.677273, 20.086452), (2.8030548, -46.67902, 17.697792), (2.8030548, -46.67902, 17.697792), (3.1813815, -45.677273, 20.086452), (2.1257777, -45.677273, 20.225426), (1.8729825, -46.67902, 17.820238), (1.8729825, -46.67902, 17.820238), (2.1257777, -45.677273, 20.225426), (1.0643475, -45.677273, 20.308962), (0.93777645, -46.67902, 17.89384), (0.93777645, -46.67902, 17.89384), (1.0643475, -45.677273, 20.308962), (1.2452718e-15, -45.677273, 20.336832), (1.0971854e-15, -46.67902, 17.918398), (1.0971854e-15, -46.67902, 17.918398), (1.2452718e-15, -45.677273, 20.336832), (-1.0643475, -45.677273, 20.308962), (-0.93777645, -46.67902, 17.89384), (-0.93777645, -46.67902, 17.89384), (-1.0643475, -45.677273, 20.308962), (-2.1257777, -45.677273, 20.225426), (-1.8729825, -46.67902, 17.820238), (-1.8729825, -46.67902, 17.820238), (-2.1257777, -45.677273, 20.225426), (-3.1813815, -45.677273, 20.086452), (-2.8030548, -46.67902, 17.697792), (-2.8030548, -46.67902, 17.697792), (-3.1813815, -45.677273, 20.086452), (-4.2282653, -45.677273, 19.892424), (-3.7254443, -46.67902, 17.526838), (-3.7254443, -46.67902, 17.526838), (-4.2282653, -45.677273, 19.892424), (-5.2635593, -45.677273, 19.643871), (-4.6376224, -46.67902, 17.307842), (-4.6376224, -46.67902, 17.307842), (-5.2635593, -45.677273, 19.643871), (-6.2844267, -45.677273, 19.341476), (-5.5370893, -46.67902, 17.041409), (-5.5370893, -46.67902, 17.041409), (-6.2844267, -45.677273, 19.341476), (-7.288069, -45.677273, 18.986069), (-6.4213796, -46.67902, 16.728266), (-6.4213796, -46.67902, 16.728266), (-7.288069, -45.677273, 18.986069), (-8.271735, -45.677273, 18.57862), (-7.288069, -46.67902, 16.36927), (-7.288069, -46.67902, 16.36927), (-8.271735, -45.677273, 18.57862), (-9.232729, -45.677273, 18.12025), (-8.134782, -46.67902, 15.965409), (-8.134782, -46.67902, 15.965409), (-9.232729, -45.677273, 18.12025), (-10.168416, -45.677273, 17.612213), (-8.959199, -46.67902, 15.517787), (-8.959199, -46.67902, 15.517787), (-10.168416, -45.677273, 17.612213), (-11.076233, -45.677273, 17.055902), (-9.759059, -46.67902, 15.027633), (-9.759059, -46.67902, 15.027633), (-11.076233, -45.677273, 17.055902), (-11.95369, -45.677273, 16.452843), (-10.532169, -46.67902, 14.496288), (-10.532169, -46.67902, 14.496288), (-11.95369, -45.677273, 16.452843), (-12.798383, -45.677273, 15.804687), (-11.276413, -46.67902, 13.92521), (-11.276413, -46.67902, 13.92521), (-12.798383, -45.677273, 15.804687), (-13.607997, -45.677273, 15.113212), (-11.989748, -46.67902, 13.315965), (-11.989748, -46.67902, 13.315965), (-13.607997, -45.677273, 15.113212), (-14.380312, -45.677273, 14.380312), (-12.67022, -46.67902, 12.67022), (-12.67022, -46.67902, 12.67022), (-14.380312, -45.677273, 14.380312), (-15.113212, -45.677273, 13.607997), (-13.315965, -46.67902, 11.989748), (-13.315965, -46.67902, 11.989748), (-15.113212, -45.677273, 13.607997), (-15.804687, -45.677273, 12.798383), (-13.92521, -46.67902, 11.276413), (-13.92521, -46.67902, 11.276413), (-15.804687, -45.677273, 12.798383), (-16.452843, -45.677273, 11.95369), (-14.496288, -46.67902, 10.532169), (-14.496288, -46.67902, 10.532169), (-16.452843, -45.677273, 11.95369), (-17.055902, -45.677273, 11.076233), (-15.027633, -46.67902, 9.759059), (-15.027633, -46.67902, 9.759059), (-17.055902, -45.677273, 11.076233), (-17.612213, -45.677273, 10.168416), (-15.517787, -46.67902, 8.959199), (-15.517787, -46.67902, 8.959199), (-17.612213, -45.677273, 10.168416), (-18.12025, -45.677273, 9.232729), (-15.965409, -46.67902, 8.134782), (-15.965409, -46.67902, 8.134782), (-18.12025, -45.677273, 9.232729), (-18.57862, -45.677273, 8.271735), (-16.36927, -46.67902, 7.288069), (-16.36927, -46.67902, 7.288069), (-18.57862, -45.677273, 8.271735), (-18.986069, -45.677273, 7.288069), (-16.728266, -46.67902, 6.4213796), (-16.728266, -46.67902, 6.4213796), (-18.986069, -45.677273, 7.288069), (-19.341476, -45.677273, 6.2844267), (-17.041409, -46.67902, 5.5370893), (-17.041409, -46.67902, 5.5370893), (-19.341476, -45.677273, 6.2844267), (-19.643871, -45.677273, 5.2635593), (-17.307842, -46.67902, 4.6376224), (-17.307842, -46.67902, 4.6376224), (-19.643871, -45.677273, 5.2635593), (-19.892424, -45.677273, 4.2282653), (-17.526838, -46.67902, 3.7254443), (-17.526838, -46.67902, 3.7254443), (-19.892424, -45.677273, 4.2282653), (-20.086452, -45.677273, 3.1813815), (-17.697792, -46.67902, 2.8030548), (-17.697792, -46.67902, 2.8030548), (-20.086452, -45.677273, 3.1813815), (-20.225426, -45.677273, 2.1257777), (-17.820238, -46.67902, 1.8729825), (-17.820238, -46.67902, 1.8729825), (-20.225426, -45.677273, 2.1257777), (-20.308962, -45.677273, 1.0643475), (-17.89384, -46.67902, 0.93777645), (-17.89384, -46.67902, 0.93777645), (-20.308962, -45.677273, 1.0643475), (-20.336832, -45.677273, 2.4905437e-15), (-17.918398, -46.67902, 2.1943708e-15), (-17.918398, -46.67902, 2.1943708e-15), (-20.336832, -45.677273, 2.4905437e-15), (-20.308962, -45.677273, -1.0643475), (-17.89384, -46.67902, -0.93777645), (-17.89384, -46.67902, -0.93777645), (-20.308962, -45.677273, -1.0643475), (-20.225426, -45.677273, -2.1257777), (-17.820238, -46.67902, -1.8729825), (-17.820238, -46.67902, -1.8729825), (-20.225426, -45.677273, -2.1257777), (-20.086452, -45.677273, -3.1813815), (-17.697792, -46.67902, -2.8030548), (-17.697792, -46.67902, -2.8030548), (-20.086452, -45.677273, -3.1813815), (-19.892424, -45.677273, -4.2282653), (-17.526838, -46.67902, -3.7254443), (-17.526838, -46.67902, -3.7254443), (-19.892424, -45.677273, -4.2282653), (-19.643871, -45.677273, -5.2635593), (-17.307842, -46.67902, -4.6376224), (-17.307842, -46.67902, -4.6376224), (-19.643871, -45.677273, -5.2635593), (-19.341476, -45.677273, -6.2844267), (-17.041409, -46.67902, -5.5370893), (-17.041409, -46.67902, -5.5370893), (-19.341476, -45.677273, -6.2844267), (-18.986069, -45.677273, -7.288069), (-16.728266, -46.67902, -6.4213796), (-16.728266, -46.67902, -6.4213796), (-18.986069, -45.677273, -7.288069), (-18.57862, -45.677273, -8.271735), (-16.36927, -46.67902, -7.288069), (-16.36927, -46.67902, -7.288069), (-18.57862, -45.677273, -8.271735), (-18.12025, -45.677273, -9.232729), (-15.965409, -46.67902, -8.134782), (-15.965409, -46.67902, -8.134782), (-18.12025, -45.677273, -9.232729), (-17.612213, -45.677273, -10.168416), (-15.517787, -46.67902, -8.959199), (-15.517787, -46.67902, -8.959199), (-17.612213, -45.677273, -10.168416), (-17.055902, -45.677273, -11.076233), (-15.027633, -46.67902, -9.759059), (-15.027633, -46.67902, -9.759059), (-17.055902, -45.677273, -11.076233), (-16.452843, -45.677273, -11.95369), (-14.496288, -46.67902, -10.532169), (-14.496288, -46.67902, -10.532169), (-16.452843, -45.677273, -11.95369), (-15.804687, -45.677273, -12.798383), (-13.92521, -46.67902, -11.276413), (-13.92521, -46.67902, -11.276413), (-15.804687, -45.677273, -12.798383), (-15.113212, -45.677273, -13.607997), (-13.315965, -46.67902, -11.989748), (-13.315965, -46.67902, -11.989748), (-15.113212, -45.677273, -13.607997), (-14.380312, -45.677273, -14.380312), (-12.67022, -46.67902, -12.67022), (-12.67022, -46.67902, -12.67022), (-14.380312, -45.677273, -14.380312), (-13.607997, -45.677273, -15.113212), (-11.989748, -46.67902, -13.315965), (-11.989748, -46.67902, -13.315965), (-13.607997, -45.677273, -15.113212), (-12.798383, -45.677273, -15.804687), (-11.276413, -46.67902, -13.92521), (-11.276413, -46.67902, -13.92521), (-12.798383, -45.677273, -15.804687), (-11.95369, -45.677273, -16.452843), (-10.532169, -46.67902, -14.496288), (-10.532169, -46.67902, -14.496288), (-11.95369, -45.677273, -16.452843), (-11.076233, -45.677273, -17.055902), (-9.759059, -46.67902, -15.027633), (-9.759059, -46.67902, -15.027633), (-11.076233, -45.677273, -17.055902), (-10.168416, -45.677273, -17.612213), (-8.959199, -46.67902, -15.517787), (-8.959199, -46.67902, -15.517787), (-10.168416, -45.677273, -17.612213), (-9.232729, -45.677273, -18.12025), (-8.134782, -46.67902, -15.965409), (-8.134782, -46.67902, -15.965409), (-9.232729, -45.677273, -18.12025), (-8.271735, -45.677273, -18.57862), (-7.288069, -46.67902, -16.36927), (-7.288069, -46.67902, -16.36927), (-8.271735, -45.677273, -18.57862), (-7.288069, -45.677273, -18.986069), (-6.4213796, -46.67902, -16.728266), (-6.4213796, -46.67902, -16.728266), (-7.288069, -45.677273, -18.986069), (-6.2844267, -45.677273, -19.341476), (-5.5370893, -46.67902, -17.041409), (-5.5370893, -46.67902, -17.041409), (-6.2844267, -45.677273, -19.341476), (-5.2635593, -45.677273, -19.643871), (-4.6376224, -46.67902, -17.307842), (-4.6376224, -46.67902, -17.307842), (-5.2635593, -45.677273, -19.643871), (-4.2282653, -45.677273, -19.892424), (-3.7254443, -46.67902, -17.526838), (-3.7254443, -46.67902, -17.526838), (-4.2282653, -45.677273, -19.892424), (-3.1813815, -45.677273, -20.086452), (-2.8030548, -46.67902, -17.697792), (-2.8030548, -46.67902, -17.697792), (-3.1813815, -45.677273, -20.086452), (-2.1257777, -45.677273, -20.225426), (-1.8729825, -46.67902, -17.820238), (-1.8729825, -46.67902, -17.820238), (-2.1257777, -45.677273, -20.225426), (-1.0643475, -45.677273, -20.308962), (-0.93777645, -46.67902, -17.89384), (-0.93777645, -46.67902, -17.89384), (-1.0643475, -45.677273, -20.308962), (-3.7358155e-15, -45.677273, -20.336832), (-3.2915563e-15, -46.67902, -17.918398), (-3.2915563e-15, -46.67902, -17.918398), (-3.7358155e-15, -45.677273, -20.336832), (1.0643475, -45.677273, -20.308962), (0.93777645, -46.67902, -17.89384), (0.93777645, -46.67902, -17.89384), (1.0643475, -45.677273, -20.308962), (2.1257777, -45.677273, -20.225426), (1.8729825, -46.67902, -17.820238), (1.8729825, -46.67902, -17.820238), (2.1257777, -45.677273, -20.225426), (3.1813815, -45.677273, -20.086452), (2.8030548, -46.67902, -17.697792), (2.8030548, -46.67902, -17.697792), (3.1813815, -45.677273, -20.086452), (4.2282653, -45.677273, -19.892424), (3.7254443, -46.67902, -17.526838), (3.7254443, -46.67902, -17.526838), (4.2282653, -45.677273, -19.892424), (5.2635593, -45.677273, -19.643871), (4.6376224, -46.67902, -17.307842), (4.6376224, -46.67902, -17.307842), (5.2635593, -45.677273, -19.643871), (6.2844267, -45.677273, -19.341476), (5.5370893, -46.67902, -17.041409), (5.5370893, -46.67902, -17.041409), (6.2844267, -45.677273, -19.341476), (7.288069, -45.677273, -18.986069), (6.4213796, -46.67902, -16.728266), (6.4213796, -46.67902, -16.728266), (7.288069, -45.677273, -18.986069), (8.271735, -45.677273, -18.57862), (7.288069, -46.67902, -16.36927), (7.288069, -46.67902, -16.36927), (8.271735, -45.677273, -18.57862), (9.232729, -45.677273, -18.12025), (8.134782, -46.67902, -15.965409), (8.134782, -46.67902, -15.965409), (9.232729, -45.677273, -18.12025), (10.168416, -45.677273, -17.612213), (8.959199, -46.67902, -15.517787), (8.959199, -46.67902, -15.517787), (10.168416, -45.677273, -17.612213), (11.076233, -45.677273, -17.055902), (9.759059, -46.67902, -15.027633), (9.759059, -46.67902, -15.027633), (11.076233, -45.677273, -17.055902), (11.95369, -45.677273, -16.452843), (10.532169, -46.67902, -14.496288), (10.532169, -46.67902, -14.496288), (11.95369, -45.677273, -16.452843), (12.798383, -45.677273, -15.804687), (11.276413, -46.67902, -13.92521), (11.276413, -46.67902, -13.92521), (12.798383, -45.677273, -15.804687), (13.607997, -45.677273, -15.113212), (11.989748, -46.67902, -13.315965), (11.989748, -46.67902, -13.315965), (13.607997, -45.677273, -15.113212), (14.380312, -45.677273, -14.380312), (12.67022, -46.67902, -12.67022), (12.67022, -46.67902, -12.67022), (14.380312, -45.677273, -14.380312), (15.113212, -45.677273, -13.607997), (13.315965, -46.67902, -11.989748), (13.315965, -46.67902, -11.989748), (15.113212, -45.677273, -13.607997), (15.804687, -45.677273, -12.798383), (13.92521, -46.67902, -11.276413), (13.92521, -46.67902, -11.276413), (15.804687, -45.677273, -12.798383), (16.452843, -45.677273, -11.95369), (14.496288, -46.67902, -10.532169), (14.496288, -46.67902, -10.532169), (16.452843, -45.677273, -11.95369), (17.055902, -45.677273, -11.076233), (15.027633, -46.67902, -9.759059), (15.027633, -46.67902, -9.759059), (17.055902, -45.677273, -11.076233), (17.612213, -45.677273, -10.168416), (15.517787, -46.67902, -8.959199), (15.517787, -46.67902, -8.959199), (17.612213, -45.677273, -10.168416), (18.12025, -45.677273, -9.232729), (15.965409, -46.67902, -8.134782), (15.965409, -46.67902, -8.134782), (18.12025, -45.677273, -9.232729), (18.57862, -45.677273, -8.271735), (16.36927, -46.67902, -7.288069), (16.36927, -46.67902, -7.288069), (18.57862, -45.677273, -8.271735), (18.986069, -45.677273, -7.288069), (16.728266, -46.67902, -6.4213796), (16.728266, -46.67902, -6.4213796), (18.986069, -45.677273, -7.288069), (19.341476, -45.677273, -6.2844267), (17.041409, -46.67902, -5.5370893), (17.041409, -46.67902, -5.5370893), (19.341476, -45.677273, -6.2844267), (19.643871, -45.677273, -5.2635593), (17.307842, -46.67902, -4.6376224), (17.307842, -46.67902, -4.6376224), (19.643871, -45.677273, -5.2635593), (19.892424, -45.677273, -4.2282653), (17.526838, -46.67902, -3.7254443), (17.526838, -46.67902, -3.7254443), (19.892424, -45.677273, -4.2282653), (20.086452, -45.677273, -3.1813815), (17.697792, -46.67902, -2.8030548), (17.697792, -46.67902, -2.8030548), (20.086452, -45.677273, -3.1813815), (20.225426, -45.677273, -2.1257777), (17.820238, -46.67902, -1.8729825), (17.820238, -46.67902, -1.8729825), (20.225426, -45.677273, -2.1257777), (20.308962, -45.677273, -1.0643475), (17.89384, -46.67902, -0.93777645), (17.89384, -46.67902, -0.93777645), (20.308962, -45.677273, -1.0643475), (20.336832, -45.677273, 0), (17.918398, -46.67902, 0), (20.336832, -45.677273, 0), (22.699526, -44.550327, 0), (22.668417, -44.550327, 1.1880014), (20.308962, -45.677273, 1.0643475), (20.308962, -45.677273, 1.0643475), (22.668417, -44.550327, 1.1880014), (22.575174, -44.550327, 2.3727465), (20.225426, -45.677273, 2.1257777), (20.225426, -45.677273, 2.1257777), (22.575174, -44.550327, 2.3727465), (22.420055, -44.550327, 3.550988), (20.086452, -45.677273, 3.1813815), (20.086452, -45.677273, 3.1813815), (22.420055, -44.550327, 3.550988), (22.203485, -44.550327, 4.7194967), (19.892424, -45.677273, 4.2282653), (19.892424, -45.677273, 4.2282653), (22.203485, -44.550327, 4.7194967), (21.926058, -44.550327, 5.8750696), (19.643871, -45.677273, 5.2635593), (19.643871, -45.677273, 5.2635593), (21.926058, -44.550327, 5.8750696), (21.588531, -44.550327, 7.014539), (19.341476, -45.677273, 6.2844267), (19.341476, -45.677273, 6.2844267), (21.588531, -44.550327, 7.014539), (21.191832, -44.550327, 8.134782), (18.986069, -45.677273, 7.288069), (18.986069, -45.677273, 7.288069), (21.191832, -44.550327, 8.134782), (20.737047, -44.550327, 9.232729), (18.57862, -45.677273, 8.271735), (18.57862, -45.677273, 8.271735), (20.737047, -44.550327, 9.232729), (20.225426, -44.550327, 10.305368), (18.12025, -45.677273, 9.232729), (18.12025, -45.677273, 9.232729), (20.225426, -44.550327, 10.305368), (19.658365, -44.550327, 11.349763), (17.612213, -45.677273, 10.168416), (17.612213, -45.677273, 10.168416), (19.658365, -44.550327, 11.349763), (19.037424, -44.550327, 12.363048), (17.055902, -45.677273, 11.076233), (17.055902, -45.677273, 11.076233), (19.037424, -44.550327, 12.363048), (18.364302, -44.550327, 13.342446), (16.452843, -45.677273, 11.95369), (16.452843, -45.677273, 11.95369), (18.364302, -44.550327, 13.342446), (17.640844, -44.550327, 14.285274), (15.804687, -45.677273, 12.798383), (15.804687, -45.677273, 12.798383), (17.640844, -44.550327, 14.285274), (16.869034, -44.550327, 15.188947), (15.113212, -45.677273, 13.607997), (15.113212, -45.677273, 13.607997), (16.869034, -44.550327, 15.188947), (16.050987, -44.550327, 16.050987), (14.380312, -45.677273, 14.380312), (14.380312, -45.677273, 14.380312), (16.050987, -44.550327, 16.050987), (15.188947, -44.550327, 16.869034), (13.607997, -45.677273, 15.113212), (13.607997, -45.677273, 15.113212), (15.188947, -44.550327, 16.869034), (14.285274, -44.550327, 17.640844), (12.798383, -45.677273, 15.804687), (12.798383, -45.677273, 15.804687), (14.285274, -44.550327, 17.640844), (13.342446, -44.550327, 18.364302), (11.95369, -45.677273, 16.452843), (11.95369, -45.677273, 16.452843), (13.342446, -44.550327, 18.364302), (12.363048, -44.550327, 19.037424), (11.076233, -45.677273, 17.055902), (11.076233, -45.677273, 17.055902), (12.363048, -44.550327, 19.037424), (11.349763, -44.550327, 19.658365), (10.168416, -45.677273, 17.612213), (10.168416, -45.677273, 17.612213), (11.349763, -44.550327, 19.658365), (10.305368, -44.550327, 20.225426), (9.232729, -45.677273, 18.12025), (9.232729, -45.677273, 18.12025), (10.305368, -44.550327, 20.225426), (9.232729, -44.550327, 20.737047), (8.271735, -45.677273, 18.57862), (8.271735, -45.677273, 18.57862), (9.232729, -44.550327, 20.737047), (8.134782, -44.550327, 21.191832), (7.288069, -45.677273, 18.986069), (7.288069, -45.677273, 18.986069), (8.134782, -44.550327, 21.191832), (7.014539, -44.550327, 21.588531), (6.2844267, -45.677273, 19.341476), (6.2844267, -45.677273, 19.341476), (7.014539, -44.550327, 21.588531), (5.8750696, -44.550327, 21.926058), (5.2635593, -45.677273, 19.643871), (5.2635593, -45.677273, 19.643871), (5.8750696, -44.550327, 21.926058), (4.7194967, -44.550327, 22.203485), (4.2282653, -45.677273, 19.892424), (4.2282653, -45.677273, 19.892424), (4.7194967, -44.550327, 22.203485), (3.550988, -44.550327, 22.420055), (3.1813815, -45.677273, 20.086452), (3.1813815, -45.677273, 20.086452), (3.550988, -44.550327, 22.420055), (2.3727465, -44.550327, 22.575174), (2.1257777, -45.677273, 20.225426), (2.1257777, -45.677273, 20.225426), (2.3727465, -44.550327, 22.575174), (1.1880014, -44.550327, 22.668417), (1.0643475, -45.677273, 20.308962), (1.0643475, -45.677273, 20.308962), (1.1880014, -44.550327, 22.668417), (1.3899451e-15, -44.550327, 22.699526), (1.2452718e-15, -45.677273, 20.336832), (1.2452718e-15, -45.677273, 20.336832), (1.3899451e-15, -44.550327, 22.699526), (-1.1880014, -44.550327, 22.668417), (-1.0643475, -45.677273, 20.308962), (-1.0643475, -45.677273, 20.308962), (-1.1880014, -44.550327, 22.668417), (-2.3727465, -44.550327, 22.575174), (-2.1257777, -45.677273, 20.225426), (-2.1257777, -45.677273, 20.225426), (-2.3727465, -44.550327, 22.575174), (-3.550988, -44.550327, 22.420055), (-3.1813815, -45.677273, 20.086452), (-3.1813815, -45.677273, 20.086452), (-3.550988, -44.550327, 22.420055), (-4.7194967, -44.550327, 22.203485), (-4.2282653, -45.677273, 19.892424), (-4.2282653, -45.677273, 19.892424), (-4.7194967, -44.550327, 22.203485), (-5.8750696, -44.550327, 21.926058), (-5.2635593, -45.677273, 19.643871), (-5.2635593, -45.677273, 19.643871), (-5.8750696, -44.550327, 21.926058), (-7.014539, -44.550327, 21.588531), (-6.2844267, -45.677273, 19.341476), (-6.2844267, -45.677273, 19.341476), (-7.014539, -44.550327, 21.588531), (-8.134782, -44.550327, 21.191832), (-7.288069, -45.677273, 18.986069), (-7.288069, -45.677273, 18.986069), (-8.134782, -44.550327, 21.191832), (-9.232729, -44.550327, 20.737047), (-8.271735, -45.677273, 18.57862), (-8.271735, -45.677273, 18.57862), (-9.232729, -44.550327, 20.737047), (-10.305368, -44.550327, 20.225426), (-9.232729, -45.677273, 18.12025), (-9.232729, -45.677273, 18.12025), (-10.305368, -44.550327, 20.225426), (-11.349763, -44.550327, 19.658365), (-10.168416, -45.677273, 17.612213), (-10.168416, -45.677273, 17.612213), (-11.349763, -44.550327, 19.658365), (-12.363048, -44.550327, 19.037424), (-11.076233, -45.677273, 17.055902), (-11.076233, -45.677273, 17.055902), (-12.363048, -44.550327, 19.037424), (-13.342446, -44.550327, 18.364302), (-11.95369, -45.677273, 16.452843), (-11.95369, -45.677273, 16.452843), (-13.342446, -44.550327, 18.364302), (-14.285274, -44.550327, 17.640844), (-12.798383, -45.677273, 15.804687), (-12.798383, -45.677273, 15.804687), (-14.285274, -44.550327, 17.640844), (-15.188947, -44.550327, 16.869034), (-13.607997, -45.677273, 15.113212), (-13.607997, -45.677273, 15.113212), (-15.188947, -44.550327, 16.869034), (-16.050987, -44.550327, 16.050987), (-14.380312, -45.677273, 14.380312), (-14.380312, -45.677273, 14.380312), (-16.050987, -44.550327, 16.050987), (-16.869034, -44.550327, 15.188947), (-15.113212, -45.677273, 13.607997), (-15.113212, -45.677273, 13.607997), (-16.869034, -44.550327, 15.188947), (-17.640844, -44.550327, 14.285274), (-15.804687, -45.677273, 12.798383), (-15.804687, -45.677273, 12.798383), (-17.640844, -44.550327, 14.285274), (-18.364302, -44.550327, 13.342446), (-16.452843, -45.677273, 11.95369), (-16.452843, -45.677273, 11.95369), (-18.364302, -44.550327, 13.342446), (-19.037424, -44.550327, 12.363048), (-17.055902, -45.677273, 11.076233), (-17.055902, -45.677273, 11.076233), (-19.037424, -44.550327, 12.363048), (-19.658365, -44.550327, 11.349763), (-17.612213, -45.677273, 10.168416), (-17.612213, -45.677273, 10.168416), (-19.658365, -44.550327, 11.349763), (-20.225426, -44.550327, 10.305368), (-18.12025, -45.677273, 9.232729), (-18.12025, -45.677273, 9.232729), (-20.225426, -44.550327, 10.305368), (-20.737047, -44.550327, 9.232729), (-18.57862, -45.677273, 8.271735), (-18.57862, -45.677273, 8.271735), (-20.737047, -44.550327, 9.232729), (-21.191832, -44.550327, 8.134782), (-18.986069, -45.677273, 7.288069), (-18.986069, -45.677273, 7.288069), (-21.191832, -44.550327, 8.134782), (-21.588531, -44.550327, 7.014539), (-19.341476, -45.677273, 6.2844267), (-19.341476, -45.677273, 6.2844267), (-21.588531, -44.550327, 7.014539), (-21.926058, -44.550327, 5.8750696), (-19.643871, -45.677273, 5.2635593), (-19.643871, -45.677273, 5.2635593), (-21.926058, -44.550327, 5.8750696), (-22.203485, -44.550327, 4.7194967), (-19.892424, -45.677273, 4.2282653), (-19.892424, -45.677273, 4.2282653), (-22.203485, -44.550327, 4.7194967), (-22.420055, -44.550327, 3.550988), (-20.086452, -45.677273, 3.1813815), (-20.086452, -45.677273, 3.1813815), (-22.420055, -44.550327, 3.550988), (-22.575174, -44.550327, 2.3727465), (-20.225426, -45.677273, 2.1257777), (-20.225426, -45.677273, 2.1257777), (-22.575174, -44.550327, 2.3727465), (-22.668417, -44.550327, 1.1880014), (-20.308962, -45.677273, 1.0643475), (-20.308962, -45.677273, 1.0643475), (-22.668417, -44.550327, 1.1880014), (-22.699526, -44.550327, 2.7798901e-15), (-20.336832, -45.677273, 2.4905437e-15), (-20.336832, -45.677273, 2.4905437e-15), (-22.699526, -44.550327, 2.7798901e-15), (-22.668417, -44.550327, -1.1880014), (-20.308962, -45.677273, -1.0643475), (-20.308962, -45.677273, -1.0643475), (-22.668417, -44.550327, -1.1880014), (-22.575174, -44.550327, -2.3727465), (-20.225426, -45.677273, -2.1257777), (-20.225426, -45.677273, -2.1257777), (-22.575174, -44.550327, -2.3727465), (-22.420055, -44.550327, -3.550988), (-20.086452, -45.677273, -3.1813815), (-20.086452, -45.677273, -3.1813815), (-22.420055, -44.550327, -3.550988), (-22.203485, -44.550327, -4.7194967), (-19.892424, -45.677273, -4.2282653), (-19.892424, -45.677273, -4.2282653), (-22.203485, -44.550327, -4.7194967), (-21.926058, -44.550327, -5.8750696), (-19.643871, -45.677273, -5.2635593), (-19.643871, -45.677273, -5.2635593), (-21.926058, -44.550327, -5.8750696), (-21.588531, -44.550327, -7.014539), (-19.341476, -45.677273, -6.2844267), (-19.341476, -45.677273, -6.2844267), (-21.588531, -44.550327, -7.014539), (-21.191832, -44.550327, -8.134782), (-18.986069, -45.677273, -7.288069), (-18.986069, -45.677273, -7.288069), (-21.191832, -44.550327, -8.134782), (-20.737047, -44.550327, -9.232729), (-18.57862, -45.677273, -8.271735), (-18.57862, -45.677273, -8.271735), (-20.737047, -44.550327, -9.232729), (-20.225426, -44.550327, -10.305368), (-18.12025, -45.677273, -9.232729), (-18.12025, -45.677273, -9.232729), (-20.225426, -44.550327, -10.305368), (-19.658365, -44.550327, -11.349763), (-17.612213, -45.677273, -10.168416), (-17.612213, -45.677273, -10.168416), (-19.658365, -44.550327, -11.349763), (-19.037424, -44.550327, -12.363048), (-17.055902, -45.677273, -11.076233), (-17.055902, -45.677273, -11.076233), (-19.037424, -44.550327, -12.363048), (-18.364302, -44.550327, -13.342446), (-16.452843, -45.677273, -11.95369), (-16.452843, -45.677273, -11.95369), (-18.364302, -44.550327, -13.342446), (-17.640844, -44.550327, -14.285274), (-15.804687, -45.677273, -12.798383), (-15.804687, -45.677273, -12.798383), (-17.640844, -44.550327, -14.285274), (-16.869034, -44.550327, -15.188947), (-15.113212, -45.677273, -13.607997), (-15.113212, -45.677273, -13.607997), (-16.869034, -44.550327, -15.188947), (-16.050987, -44.550327, -16.050987), (-14.380312, -45.677273, -14.380312), (-14.380312, -45.677273, -14.380312), (-16.050987, -44.550327, -16.050987), (-15.188947, -44.550327, -16.869034), (-13.607997, -45.677273, -15.113212), (-13.607997, -45.677273, -15.113212), (-15.188947, -44.550327, -16.869034), (-14.285274, -44.550327, -17.640844), (-12.798383, -45.677273, -15.804687), (-12.798383, -45.677273, -15.804687), (-14.285274, -44.550327, -17.640844), (-13.342446, -44.550327, -18.364302), (-11.95369, -45.677273, -16.452843), (-11.95369, -45.677273, -16.452843), (-13.342446, -44.550327, -18.364302), (-12.363048, -44.550327, -19.037424), (-11.076233, -45.677273, -17.055902), (-11.076233, -45.677273, -17.055902), (-12.363048, -44.550327, -19.037424), (-11.349763, -44.550327, -19.658365), (-10.168416, -45.677273, -17.612213), (-10.168416, -45.677273, -17.612213), (-11.349763, -44.550327, -19.658365), (-10.305368, -44.550327, -20.225426), (-9.232729, -45.677273, -18.12025), (-9.232729, -45.677273, -18.12025), (-10.305368, -44.550327, -20.225426), (-9.232729, -44.550327, -20.737047), (-8.271735, -45.677273, -18.57862), (-8.271735, -45.677273, -18.57862), (-9.232729, -44.550327, -20.737047), (-8.134782, -44.550327, -21.191832), (-7.288069, -45.677273, -18.986069), (-7.288069, -45.677273, -18.986069), (-8.134782, -44.550327, -21.191832), (-7.014539, -44.550327, -21.588531), (-6.2844267, -45.677273, -19.341476), (-6.2844267, -45.677273, -19.341476), (-7.014539, -44.550327, -21.588531), (-5.8750696, -44.550327, -21.926058), (-5.2635593, -45.677273, -19.643871), (-5.2635593, -45.677273, -19.643871), (-5.8750696, -44.550327, -21.926058), (-4.7194967, -44.550327, -22.203485), (-4.2282653, -45.677273, -19.892424), (-4.2282653, -45.677273, -19.892424), (-4.7194967, -44.550327, -22.203485), (-3.550988, -44.550327, -22.420055), (-3.1813815, -45.677273, -20.086452), (-3.1813815, -45.677273, -20.086452), (-3.550988, -44.550327, -22.420055), (-2.3727465, -44.550327, -22.575174), (-2.1257777, -45.677273, -20.225426), (-2.1257777, -45.677273, -20.225426), (-2.3727465, -44.550327, -22.575174), (-1.1880014, -44.550327, -22.668417), (-1.0643475, -45.677273, -20.308962), (-1.0643475, -45.677273, -20.308962), (-1.1880014, -44.550327, -22.668417), (-4.169835e-15, -44.550327, -22.699526), (-3.7358155e-15, -45.677273, -20.336832), (-3.7358155e-15, -45.677273, -20.336832), (-4.169835e-15, -44.550327, -22.699526), (1.1880014, -44.550327, -22.668417), (1.0643475, -45.677273, -20.308962), (1.0643475, -45.677273, -20.308962), (1.1880014, -44.550327, -22.668417), (2.3727465, -44.550327, -22.575174), (2.1257777, -45.677273, -20.225426), (2.1257777, -45.677273, -20.225426), (2.3727465, -44.550327, -22.575174), (3.550988, -44.550327, -22.420055), (3.1813815, -45.677273, -20.086452), (3.1813815, -45.677273, -20.086452), (3.550988, -44.550327, -22.420055), (4.7194967, -44.550327, -22.203485), (4.2282653, -45.677273, -19.892424), (4.2282653, -45.677273, -19.892424), (4.7194967, -44.550327, -22.203485), (5.8750696, -44.550327, -21.926058), (5.2635593, -45.677273, -19.643871), (5.2635593, -45.677273, -19.643871), (5.8750696, -44.550327, -21.926058), (7.014539, -44.550327, -21.588531), (6.2844267, -45.677273, -19.341476), (6.2844267, -45.677273, -19.341476), (7.014539, -44.550327, -21.588531), (8.134782, -44.550327, -21.191832), (7.288069, -45.677273, -18.986069), (7.288069, -45.677273, -18.986069), (8.134782, -44.550327, -21.191832), (9.232729, -44.550327, -20.737047), (8.271735, -45.677273, -18.57862), (8.271735, -45.677273, -18.57862), (9.232729, -44.550327, -20.737047), (10.305368, -44.550327, -20.225426), (9.232729, -45.677273, -18.12025), (9.232729, -45.677273, -18.12025), (10.305368, -44.550327, -20.225426), (11.349763, -44.550327, -19.658365), (10.168416, -45.677273, -17.612213), (10.168416, -45.677273, -17.612213), (11.349763, -44.550327, -19.658365), (12.363048, -44.550327, -19.037424), (11.076233, -45.677273, -17.055902), (11.076233, -45.677273, -17.055902), (12.363048, -44.550327, -19.037424), (13.342446, -44.550327, -18.364302), (11.95369, -45.677273, -16.452843), (11.95369, -45.677273, -16.452843), (13.342446, -44.550327, -18.364302), (14.285274, -44.550327, -17.640844), (12.798383, -45.677273, -15.804687), (12.798383, -45.677273, -15.804687), (14.285274, -44.550327, -17.640844), (15.188947, -44.550327, -16.869034), (13.607997, -45.677273, -15.113212), (13.607997, -45.677273, -15.113212), (15.188947, -44.550327, -16.869034), (16.050987, -44.550327, -16.050987), (14.380312, -45.677273, -14.380312), (14.380312, -45.677273, -14.380312), (16.050987, -44.550327, -16.050987), (16.869034, -44.550327, -15.188947), (15.113212, -45.677273, -13.607997), (15.113212, -45.677273, -13.607997), (16.869034, -44.550327, -15.188947), (17.640844, -44.550327, -14.285274), (15.804687, -45.677273, -12.798383), (15.804687, -45.677273, -12.798383), (17.640844, -44.550327, -14.285274), (18.364302, -44.550327, -13.342446), (16.452843, -45.677273, -11.95369), (16.452843, -45.677273, -11.95369), (18.364302, -44.550327, -13.342446), (19.037424, -44.550327, -12.363048), (17.055902, -45.677273, -11.076233), (17.055902, -45.677273, -11.076233), (19.037424, -44.550327, -12.363048), (19.658365, -44.550327, -11.349763), (17.612213, -45.677273, -10.168416), (17.612213, -45.677273, -10.168416), (19.658365, -44.550327, -11.349763), (20.225426, -44.550327, -10.305368), (18.12025, -45.677273, -9.232729), (18.12025, -45.677273, -9.232729), (20.225426, -44.550327, -10.305368), (20.737047, -44.550327, -9.232729), (18.57862, -45.677273, -8.271735), (18.57862, -45.677273, -8.271735), (20.737047, -44.550327, -9.232729), (21.191832, -44.550327, -8.134782), (18.986069, -45.677273, -7.288069), (18.986069, -45.677273, -7.288069), (21.191832, -44.550327, -8.134782), (21.588531, -44.550327, -7.014539), (19.341476, -45.677273, -6.2844267), (19.341476, -45.677273, -6.2844267), (21.588531, -44.550327, -7.014539), (21.926058, -44.550327, -5.8750696), (19.643871, -45.677273, -5.2635593), (19.643871, -45.677273, -5.2635593), (21.926058, -44.550327, -5.8750696), (22.203485, -44.550327, -4.7194967), (19.892424, -45.677273, -4.2282653), (19.892424, -45.677273, -4.2282653), (22.203485, -44.550327, -4.7194967), (22.420055, -44.550327, -3.550988), (20.086452, -45.677273, -3.1813815), (20.086452, -45.677273, -3.1813815), (22.420055, -44.550327, -3.550988), (22.575174, -44.550327, -2.3727465), (20.225426, -45.677273, -2.1257777), (20.225426, -45.677273, -2.1257777), (22.575174, -44.550327, -2.3727465), (22.668417, -44.550327, -1.1880014), (20.308962, -45.677273, -1.0643475), (20.308962, -45.677273, -1.0643475), (22.668417, -44.550327, -1.1880014), (22.699526, -44.550327, 0), (20.336832, -45.677273, 0), (22.699526, -44.550327, 0), (25, -43.30127, 0), (24.965738, -43.30127, 1.308399), (22.668417, -44.550327, 1.1880014), (22.668417, -44.550327, 1.1880014), (24.965738, -43.30127, 1.308399), (24.863047, -43.30127, 2.6132116), (22.575174, -44.550327, 2.3727465), (22.575174, -44.550327, 2.3727465), (24.863047, -43.30127, 2.6132116), (24.69221, -43.30127, 3.9108617), (22.420055, -44.550327, 3.550988), (22.420055, -44.550327, 3.550988), (24.69221, -43.30127, 3.9108617), (24.45369, -43.30127, 5.197792), (22.203485, -44.550327, 4.7194967), (22.203485, -44.550327, 4.7194967), (24.45369, -43.30127, 5.197792), (24.148146, -43.30127, 6.470476), (21.926058, -44.550327, 5.8750696), (21.926058, -44.550327, 5.8750696), (24.148146, -43.30127, 6.470476), (23.776413, -43.30127, 7.725425), (21.588531, -44.550327, 7.014539), (21.588531, -44.550327, 7.014539), (23.776413, -43.30127, 7.725425), (23.33951, -43.30127, 8.959199), (21.191832, -44.550327, 8.134782), (21.191832, -44.550327, 8.134782), (23.33951, -43.30127, 8.959199), (22.838636, -43.30127, 10.168416), (20.737047, -44.550327, 9.232729), (20.737047, -44.550327, 9.232729), (22.838636, -43.30127, 10.168416), (22.275164, -43.30127, 11.349763), (20.225426, -44.550327, 10.305368), (20.225426, -44.550327, 10.305368), (22.275164, -43.30127, 11.349763), (21.650635, -43.30127, 12.5), (19.658365, -44.550327, 11.349763), (19.658365, -44.550327, 11.349763), (21.650635, -43.30127, 12.5), (20.966764, -43.30127, 13.615976), (19.037424, -44.550327, 12.363048), (19.037424, -44.550327, 12.363048), (20.966764, -43.30127, 13.615976), (20.225426, -43.30127, 14.694632), (18.364302, -44.550327, 13.342446), (18.364302, -44.550327, 13.342446), (20.225426, -43.30127, 14.694632), (19.42865, -43.30127, 15.733009), (17.640844, -44.550327, 14.285274), (17.640844, -44.550327, 14.285274), (19.42865, -43.30127, 15.733009), (18.57862, -43.30127, 16.728266), (16.869034, -44.550327, 15.188947), (16.869034, -44.550327, 15.188947), (18.57862, -43.30127, 16.728266), (17.67767, -43.30127, 17.67767), (16.050987, -44.550327, 16.050987), (16.050987, -44.550327, 16.050987), (17.67767, -43.30127, 17.67767), (16.728266, -43.30127, 18.57862), (15.188947, -44.550327, 16.869034), (15.188947, -44.550327, 16.869034), (16.728266, -43.30127, 18.57862), (15.733009, -43.30127, 19.42865), (14.285274, -44.550327, 17.640844), (14.285274, -44.550327, 17.640844), (15.733009, -43.30127, 19.42865), (14.694632, -43.30127, 20.225426), (13.342446, -44.550327, 18.364302), (13.342446, -44.550327, 18.364302), (14.694632, -43.30127, 20.225426), (13.615976, -43.30127, 20.966764), (12.363048, -44.550327, 19.037424), (12.363048, -44.550327, 19.037424), (13.615976, -43.30127, 20.966764), (12.5, -43.30127, 21.650635), (11.349763, -44.550327, 19.658365), (11.349763, -44.550327, 19.658365), (12.5, -43.30127, 21.650635), (11.349763, -43.30127, 22.275164), (10.305368, -44.550327, 20.225426), (10.305368, -44.550327, 20.225426), (11.349763, -43.30127, 22.275164), (10.168416, -43.30127, 22.838636), (9.232729, -44.550327, 20.737047), (9.232729, -44.550327, 20.737047), (10.168416, -43.30127, 22.838636), (8.959199, -43.30127, 23.33951), (8.134782, -44.550327, 21.191832), (8.134782, -44.550327, 21.191832), (8.959199, -43.30127, 23.33951), (7.725425, -43.30127, 23.776413), (7.014539, -44.550327, 21.588531), (7.014539, -44.550327, 21.588531), (7.725425, -43.30127, 23.776413), (6.470476, -43.30127, 24.148146), (5.8750696, -44.550327, 21.926058), (5.8750696, -44.550327, 21.926058), (6.470476, -43.30127, 24.148146), (5.197792, -43.30127, 24.45369), (4.7194967, -44.550327, 22.203485), (4.7194967, -44.550327, 22.203485), (5.197792, -43.30127, 24.45369), (3.9108617, -43.30127, 24.69221), (3.550988, -44.550327, 22.420055), (3.550988, -44.550327, 22.420055), (3.9108617, -43.30127, 24.69221), (2.6132116, -43.30127, 24.863047), (2.3727465, -44.550327, 22.575174), (2.3727465, -44.550327, 22.575174), (2.6132116, -43.30127, 24.863047), (1.308399, -43.30127, 24.965738), (1.1880014, -44.550327, 22.668417), (1.1880014, -44.550327, 22.668417), (1.308399, -43.30127, 24.965738), (1.5308084e-15, -43.30127, 25), (1.3899451e-15, -44.550327, 22.699526), (1.3899451e-15, -44.550327, 22.699526), (1.5308084e-15, -43.30127, 25), (-1.308399, -43.30127, 24.965738), (-1.1880014, -44.550327, 22.668417), (-1.1880014, -44.550327, 22.668417), (-1.308399, -43.30127, 24.965738), (-2.6132116, -43.30127, 24.863047), (-2.3727465, -44.550327, 22.575174), (-2.3727465, -44.550327, 22.575174), (-2.6132116, -43.30127, 24.863047), (-3.9108617, -43.30127, 24.69221), (-3.550988, -44.550327, 22.420055), (-3.550988, -44.550327, 22.420055), (-3.9108617, -43.30127, 24.69221), (-5.197792, -43.30127, 24.45369), (-4.7194967, -44.550327, 22.203485), (-4.7194967, -44.550327, 22.203485), (-5.197792, -43.30127, 24.45369), (-6.470476, -43.30127, 24.148146), (-5.8750696, -44.550327, 21.926058), (-5.8750696, -44.550327, 21.926058), (-6.470476, -43.30127, 24.148146), (-7.725425, -43.30127, 23.776413), (-7.014539, -44.550327, 21.588531), (-7.014539, -44.550327, 21.588531), (-7.725425, -43.30127, 23.776413), (-8.959199, -43.30127, 23.33951), (-8.134782, -44.550327, 21.191832), (-8.134782, -44.550327, 21.191832), (-8.959199, -43.30127, 23.33951), (-10.168416, -43.30127, 22.838636), (-9.232729, -44.550327, 20.737047), (-9.232729, -44.550327, 20.737047), (-10.168416, -43.30127, 22.838636), (-11.349763, -43.30127, 22.275164), (-10.305368, -44.550327, 20.225426), (-10.305368, -44.550327, 20.225426), (-11.349763, -43.30127, 22.275164), (-12.5, -43.30127, 21.650635), (-11.349763, -44.550327, 19.658365), (-11.349763, -44.550327, 19.658365), (-12.5, -43.30127, 21.650635), (-13.615976, -43.30127, 20.966764), (-12.363048, -44.550327, 19.037424), (-12.363048, -44.550327, 19.037424), (-13.615976, -43.30127, 20.966764), (-14.694632, -43.30127, 20.225426), (-13.342446, -44.550327, 18.364302), (-13.342446, -44.550327, 18.364302), (-14.694632, -43.30127, 20.225426), (-15.733009, -43.30127, 19.42865), (-14.285274, -44.550327, 17.640844), (-14.285274, -44.550327, 17.640844), (-15.733009, -43.30127, 19.42865), (-16.728266, -43.30127, 18.57862), (-15.188947, -44.550327, 16.869034), (-15.188947, -44.550327, 16.869034), (-16.728266, -43.30127, 18.57862), (-17.67767, -43.30127, 17.67767), (-16.050987, -44.550327, 16.050987), (-16.050987, -44.550327, 16.050987), (-17.67767, -43.30127, 17.67767), (-18.57862, -43.30127, 16.728266), (-16.869034, -44.550327, 15.188947), (-16.869034, -44.550327, 15.188947), (-18.57862, -43.30127, 16.728266), (-19.42865, -43.30127, 15.733009), (-17.640844, -44.550327, 14.285274), (-17.640844, -44.550327, 14.285274), (-19.42865, -43.30127, 15.733009), (-20.225426, -43.30127, 14.694632), (-18.364302, -44.550327, 13.342446), (-18.364302, -44.550327, 13.342446), (-20.225426, -43.30127, 14.694632), (-20.966764, -43.30127, 13.615976), (-19.037424, -44.550327, 12.363048), (-19.037424, -44.550327, 12.363048), (-20.966764, -43.30127, 13.615976), (-21.650635, -43.30127, 12.5), (-19.658365, -44.550327, 11.349763), (-19.658365, -44.550327, 11.349763), (-21.650635, -43.30127, 12.5), (-22.275164, -43.30127, 11.349763), (-20.225426, -44.550327, 10.305368), (-20.225426, -44.550327, 10.305368), (-22.275164, -43.30127, 11.349763), (-22.838636, -43.30127, 10.168416), (-20.737047, -44.550327, 9.232729), (-20.737047, -44.550327, 9.232729), (-22.838636, -43.30127, 10.168416), (-23.33951, -43.30127, 8.959199), (-21.191832, -44.550327, 8.134782), (-21.191832, -44.550327, 8.134782), (-23.33951, -43.30127, 8.959199), (-23.776413, -43.30127, 7.725425), (-21.588531, -44.550327, 7.014539), (-21.588531, -44.550327, 7.014539), (-23.776413, -43.30127, 7.725425), (-24.148146, -43.30127, 6.470476), (-21.926058, -44.550327, 5.8750696), (-21.926058, -44.550327, 5.8750696), (-24.148146, -43.30127, 6.470476), (-24.45369, -43.30127, 5.197792), (-22.203485, -44.550327, 4.7194967), (-22.203485, -44.550327, 4.7194967), (-24.45369, -43.30127, 5.197792), (-24.69221, -43.30127, 3.9108617), (-22.420055, -44.550327, 3.550988), (-22.420055, -44.550327, 3.550988), (-24.69221, -43.30127, 3.9108617), (-24.863047, -43.30127, 2.6132116), (-22.575174, -44.550327, 2.3727465), (-22.575174, -44.550327, 2.3727465), (-24.863047, -43.30127, 2.6132116), (-24.965738, -43.30127, 1.308399), (-22.668417, -44.550327, 1.1880014), (-22.668417, -44.550327, 1.1880014), (-24.965738, -43.30127, 1.308399), (-25, -43.30127, 3.0616169e-15), (-22.699526, -44.550327, 2.7798901e-15), (-22.699526, -44.550327, 2.7798901e-15), (-25, -43.30127, 3.0616169e-15), (-24.965738, -43.30127, -1.308399), (-22.668417, -44.550327, -1.1880014), (-22.668417, -44.550327, -1.1880014), (-24.965738, -43.30127, -1.308399), (-24.863047, -43.30127, -2.6132116), (-22.575174, -44.550327, -2.3727465), (-22.575174, -44.550327, -2.3727465), (-24.863047, -43.30127, -2.6132116), (-24.69221, -43.30127, -3.9108617), (-22.420055, -44.550327, -3.550988), (-22.420055, -44.550327, -3.550988), (-24.69221, -43.30127, -3.9108617), (-24.45369, -43.30127, -5.197792), (-22.203485, -44.550327, -4.7194967), (-22.203485, -44.550327, -4.7194967), (-24.45369, -43.30127, -5.197792), (-24.148146, -43.30127, -6.470476), (-21.926058, -44.550327, -5.8750696), (-21.926058, -44.550327, -5.8750696), (-24.148146, -43.30127, -6.470476), (-23.776413, -43.30127, -7.725425), (-21.588531, -44.550327, -7.014539), (-21.588531, -44.550327, -7.014539), (-23.776413, -43.30127, -7.725425), (-23.33951, -43.30127, -8.959199), (-21.191832, -44.550327, -8.134782), (-21.191832, -44.550327, -8.134782), (-23.33951, -43.30127, -8.959199), (-22.838636, -43.30127, -10.168416), (-20.737047, -44.550327, -9.232729), (-20.737047, -44.550327, -9.232729), (-22.838636, -43.30127, -10.168416), (-22.275164, -43.30127, -11.349763), (-20.225426, -44.550327, -10.305368), (-20.225426, -44.550327, -10.305368), (-22.275164, -43.30127, -11.349763), (-21.650635, -43.30127, -12.5), (-19.658365, -44.550327, -11.349763), (-19.658365, -44.550327, -11.349763), (-21.650635, -43.30127, -12.5), (-20.966764, -43.30127, -13.615976), (-19.037424, -44.550327, -12.363048), (-19.037424, -44.550327, -12.363048), (-20.966764, -43.30127, -13.615976), (-20.225426, -43.30127, -14.694632), (-18.364302, -44.550327, -13.342446), (-18.364302, -44.550327, -13.342446), (-20.225426, -43.30127, -14.694632), (-19.42865, -43.30127, -15.733009), (-17.640844, -44.550327, -14.285274), (-17.640844, -44.550327, -14.285274), (-19.42865, -43.30127, -15.733009), (-18.57862, -43.30127, -16.728266), (-16.869034, -44.550327, -15.188947), (-16.869034, -44.550327, -15.188947), (-18.57862, -43.30127, -16.728266), (-17.67767, -43.30127, -17.67767), (-16.050987, -44.550327, -16.050987), (-16.050987, -44.550327, -16.050987), (-17.67767, -43.30127, -17.67767), (-16.728266, -43.30127, -18.57862), (-15.188947, -44.550327, -16.869034), (-15.188947, -44.550327, -16.869034), (-16.728266, -43.30127, -18.57862), (-15.733009, -43.30127, -19.42865), (-14.285274, -44.550327, -17.640844), (-14.285274, -44.550327, -17.640844), (-15.733009, -43.30127, -19.42865), (-14.694632, -43.30127, -20.225426), (-13.342446, -44.550327, -18.364302), (-13.342446, -44.550327, -18.364302), (-14.694632, -43.30127, -20.225426), (-13.615976, -43.30127, -20.966764), (-12.363048, -44.550327, -19.037424), (-12.363048, -44.550327, -19.037424), (-13.615976, -43.30127, -20.966764), (-12.5, -43.30127, -21.650635), (-11.349763, -44.550327, -19.658365), (-11.349763, -44.550327, -19.658365), (-12.5, -43.30127, -21.650635), (-11.349763, -43.30127, -22.275164), (-10.305368, -44.550327, -20.225426), (-10.305368, -44.550327, -20.225426), (-11.349763, -43.30127, -22.275164), (-10.168416, -43.30127, -22.838636), (-9.232729, -44.550327, -20.737047), (-9.232729, -44.550327, -20.737047), (-10.168416, -43.30127, -22.838636), (-8.959199, -43.30127, -23.33951), (-8.134782, -44.550327, -21.191832), (-8.134782, -44.550327, -21.191832), (-8.959199, -43.30127, -23.33951), (-7.725425, -43.30127, -23.776413), (-7.014539, -44.550327, -21.588531), (-7.014539, -44.550327, -21.588531), (-7.725425, -43.30127, -23.776413), (-6.470476, -43.30127, -24.148146), (-5.8750696, -44.550327, -21.926058), (-5.8750696, -44.550327, -21.926058), (-6.470476, -43.30127, -24.148146), (-5.197792, -43.30127, -24.45369), (-4.7194967, -44.550327, -22.203485), (-4.7194967, -44.550327, -22.203485), (-5.197792, -43.30127, -24.45369), (-3.9108617, -43.30127, -24.69221), (-3.550988, -44.550327, -22.420055), (-3.550988, -44.550327, -22.420055), (-3.9108617, -43.30127, -24.69221), (-2.6132116, -43.30127, -24.863047), (-2.3727465, -44.550327, -22.575174), (-2.3727465, -44.550327, -22.575174), (-2.6132116, -43.30127, -24.863047), (-1.308399, -43.30127, -24.965738), (-1.1880014, -44.550327, -22.668417), (-1.1880014, -44.550327, -22.668417), (-1.308399, -43.30127, -24.965738), (-4.5924254e-15, -43.30127, -25), (-4.169835e-15, -44.550327, -22.699526), (-4.169835e-15, -44.550327, -22.699526), (-4.5924254e-15, -43.30127, -25), (1.308399, -43.30127, -24.965738), (1.1880014, -44.550327, -22.668417), (1.1880014, -44.550327, -22.668417), (1.308399, -43.30127, -24.965738), (2.6132116, -43.30127, -24.863047), (2.3727465, -44.550327, -22.575174), (2.3727465, -44.550327, -22.575174), (2.6132116, -43.30127, -24.863047), (3.9108617, -43.30127, -24.69221), (3.550988, -44.550327, -22.420055), (3.550988, -44.550327, -22.420055), (3.9108617, -43.30127, -24.69221), (5.197792, -43.30127, -24.45369), (4.7194967, -44.550327, -22.203485), (4.7194967, -44.550327, -22.203485), (5.197792, -43.30127, -24.45369), (6.470476, -43.30127, -24.148146), (5.8750696, -44.550327, -21.926058), (5.8750696, -44.550327, -21.926058), (6.470476, -43.30127, -24.148146), (7.725425, -43.30127, -23.776413), (7.014539, -44.550327, -21.588531), (7.014539, -44.550327, -21.588531), (7.725425, -43.30127, -23.776413), (8.959199, -43.30127, -23.33951), (8.134782, -44.550327, -21.191832), (8.134782, -44.550327, -21.191832), (8.959199, -43.30127, -23.33951), (10.168416, -43.30127, -22.838636), (9.232729, -44.550327, -20.737047), (9.232729, -44.550327, -20.737047), (10.168416, -43.30127, -22.838636), (11.349763, -43.30127, -22.275164), (10.305368, -44.550327, -20.225426), (10.305368, -44.550327, -20.225426), (11.349763, -43.30127, -22.275164), (12.5, -43.30127, -21.650635), (11.349763, -44.550327, -19.658365), (11.349763, -44.550327, -19.658365), (12.5, -43.30127, -21.650635), (13.615976, -43.30127, -20.966764), (12.363048, -44.550327, -19.037424), (12.363048, -44.550327, -19.037424), (13.615976, -43.30127, -20.966764), (14.694632, -43.30127, -20.225426), (13.342446, -44.550327, -18.364302), (13.342446, -44.550327, -18.364302), (14.694632, -43.30127, -20.225426), (15.733009, -43.30127, -19.42865), (14.285274, -44.550327, -17.640844), (14.285274, -44.550327, -17.640844), (15.733009, -43.30127, -19.42865), (16.728266, -43.30127, -18.57862), (15.188947, -44.550327, -16.869034), (15.188947, -44.550327, -16.869034), (16.728266, -43.30127, -18.57862), (17.67767, -43.30127, -17.67767), (16.050987, -44.550327, -16.050987), (16.050987, -44.550327, -16.050987), (17.67767, -43.30127, -17.67767), (18.57862, -43.30127, -16.728266), (16.869034, -44.550327, -15.188947), (16.869034, -44.550327, -15.188947), (18.57862, -43.30127, -16.728266), (19.42865, -43.30127, -15.733009), (17.640844, -44.550327, -14.285274), (17.640844, -44.550327, -14.285274), (19.42865, -43.30127, -15.733009), (20.225426, -43.30127, -14.694632), (18.364302, -44.550327, -13.342446), (18.364302, -44.550327, -13.342446), (20.225426, -43.30127, -14.694632), (20.966764, -43.30127, -13.615976), (19.037424, -44.550327, -12.363048), (19.037424, -44.550327, -12.363048), (20.966764, -43.30127, -13.615976), (21.650635, -43.30127, -12.5), (19.658365, -44.550327, -11.349763), (19.658365, -44.550327, -11.349763), (21.650635, -43.30127, -12.5), (22.275164, -43.30127, -11.349763), (20.225426, -44.550327, -10.305368), (20.225426, -44.550327, -10.305368), (22.275164, -43.30127, -11.349763), (22.838636, -43.30127, -10.168416), (20.737047, -44.550327, -9.232729), (20.737047, -44.550327, -9.232729), (22.838636, -43.30127, -10.168416), (23.33951, -43.30127, -8.959199), (21.191832, -44.550327, -8.134782), (21.191832, -44.550327, -8.134782), (23.33951, -43.30127, -8.959199), (23.776413, -43.30127, -7.725425), (21.588531, -44.550327, -7.014539), (21.588531, -44.550327, -7.014539), (23.776413, -43.30127, -7.725425), (24.148146, -43.30127, -6.470476), (21.926058, -44.550327, -5.8750696), (21.926058, -44.550327, -5.8750696), (24.148146, -43.30127, -6.470476), (24.45369, -43.30127, -5.197792), (22.203485, -44.550327, -4.7194967), (22.203485, -44.550327, -4.7194967), (24.45369, -43.30127, -5.197792), (24.69221, -43.30127, -3.9108617), (22.420055, -44.550327, -3.550988), (22.420055, -44.550327, -3.550988), (24.69221, -43.30127, -3.9108617), (24.863047, -43.30127, -2.6132116), (22.575174, -44.550327, -2.3727465), (22.575174, -44.550327, -2.3727465), (24.863047, -43.30127, -2.6132116), (24.965738, -43.30127, -1.308399), (22.668417, -44.550327, -1.1880014), (22.668417, -44.550327, -1.1880014), (24.965738, -43.30127, -1.308399), (25, -43.30127, 0), (22.699526, -44.550327, 0), (25, -43.30127, 0), (27.231953, -41.93353, 0), (27.194632, -41.93353, 1.4252102), (24.965738, -43.30127, 1.308399), (24.965738, -43.30127, 1.308399), (27.194632, -41.93353, 1.4252102), (27.082773, -41.93353, 2.846514), (24.863047, -43.30127, 2.6132116), (24.863047, -43.30127, 2.6132116), (27.082773, -41.93353, 2.846514), (26.89668, -41.93353, 4.260016), (24.69221, -43.30127, 3.9108617), (24.69221, -43.30127, 3.9108617), (26.89668, -41.93353, 4.260016), (26.636868, -41.93353, 5.661841), (24.45369, -43.30127, 5.197792), (24.45369, -43.30127, 5.197792), (26.636868, -41.93353, 5.661841), (26.304045, -41.93353, 7.0481477), (24.148146, -43.30127, 6.470476), (24.148146, -43.30127, 6.470476), (26.304045, -41.93353, 7.0481477), (25.899126, -41.93353, 8.415136), (23.776413, -43.30127, 7.725425), (23.776413, -43.30127, 7.725425), (25.899126, -41.93353, 8.415136), (25.423218, -41.93353, 9.759059), (23.33951, -43.30127, 8.959199), (23.33951, -43.30127, 8.959199), (25.423218, -41.93353, 9.759059), (24.877626, -41.93353, 11.076233), (22.838636, -43.30127, 10.168416), (22.838636, -43.30127, 10.168416), (24.877626, -41.93353, 11.076233), (24.263847, -41.93353, 12.363048), (22.275164, -43.30127, 11.349763), (22.275164, -43.30127, 11.349763), (24.263847, -41.93353, 12.363048), (23.583563, -41.93353, 13.615976), (21.650635, -43.30127, 12.5), (21.650635, -43.30127, 12.5), (23.583563, -41.93353, 13.615976), (22.838636, -41.93353, 14.831584), (20.966764, -43.30127, 13.615976), (20.966764, -43.30127, 13.615976), (22.838636, -41.93353, 14.831584), (22.031113, -41.93353, 16.00654), (20.225426, -43.30127, 14.694632), (20.225426, -43.30127, 14.694632), (22.031113, -41.93353, 16.00654), (21.1632, -41.93353, 17.137623), (19.42865, -43.30127, 15.733009), (19.42865, -43.30127, 15.733009), (21.1632, -41.93353, 17.137623), (20.237284, -41.93353, 18.221733), (18.57862, -43.30127, 16.728266), (18.57862, -43.30127, 16.728266), (20.237284, -41.93353, 18.221733), (19.255898, -41.93353, 19.255898), (17.67767, -43.30127, 17.67767), (17.67767, -43.30127, 17.67767), (19.255898, -41.93353, 19.255898), (18.221733, -41.93353, 20.237284), (16.728266, -43.30127, 18.57862), (16.728266, -43.30127, 18.57862), (18.221733, -41.93353, 20.237284), (17.137623, -41.93353, 21.1632), (15.733009, -43.30127, 19.42865), (15.733009, -43.30127, 19.42865), (17.137623, -41.93353, 21.1632), (16.00654, -41.93353, 22.031113), (14.694632, -43.30127, 20.225426), (14.694632, -43.30127, 20.225426), (16.00654, -41.93353, 22.031113), (14.831584, -41.93353, 22.838636), (13.615976, -43.30127, 20.966764), (13.615976, -43.30127, 20.966764), (14.831584, -41.93353, 22.838636), (13.615976, -41.93353, 23.583563), (12.5, -43.30127, 21.650635), (12.5, -43.30127, 21.650635), (13.615976, -41.93353, 23.583563), (12.363048, -41.93353, 24.263847), (11.349763, -43.30127, 22.275164), (11.349763, -43.30127, 22.275164), (12.363048, -41.93353, 24.263847), (11.076233, -41.93353, 24.877626), (10.168416, -43.30127, 22.838636), (10.168416, -43.30127, 22.838636), (11.076233, -41.93353, 24.877626), (9.759059, -41.93353, 25.423218), (8.959199, -43.30127, 23.33951), (8.959199, -43.30127, 23.33951), (9.759059, -41.93353, 25.423218), (8.415136, -41.93353, 25.899126), (7.725425, -43.30127, 23.776413), (7.725425, -43.30127, 23.776413), (8.415136, -41.93353, 25.899126), (7.0481477, -41.93353, 26.304045), (6.470476, -43.30127, 24.148146), (6.470476, -43.30127, 24.148146), (7.0481477, -41.93353, 26.304045), (5.661841, -41.93353, 26.636868), (5.197792, -43.30127, 24.45369), (5.197792, -43.30127, 24.45369), (5.661841, -41.93353, 26.636868), (4.260016, -41.93353, 26.89668), (3.9108617, -43.30127, 24.69221), (3.9108617, -43.30127, 24.69221), (4.260016, -41.93353, 26.89668), (2.846514, -41.93353, 27.082773), (2.6132116, -43.30127, 24.863047), (2.6132116, -43.30127, 24.863047), (2.846514, -41.93353, 27.082773), (1.4252102, -41.93353, 27.194632), (1.308399, -43.30127, 24.965738), (1.308399, -43.30127, 24.965738), (1.4252102, -41.93353, 27.194632), (1.6674762e-15, -41.93353, 27.231953), (1.5308084e-15, -43.30127, 25), (1.5308084e-15, -43.30127, 25), (1.6674762e-15, -41.93353, 27.231953), (-1.4252102, -41.93353, 27.194632), (-1.308399, -43.30127, 24.965738), (-1.308399, -43.30127, 24.965738), (-1.4252102, -41.93353, 27.194632), (-2.846514, -41.93353, 27.082773), (-2.6132116, -43.30127, 24.863047), (-2.6132116, -43.30127, 24.863047), (-2.846514, -41.93353, 27.082773), (-4.260016, -41.93353, 26.89668), (-3.9108617, -43.30127, 24.69221), (-3.9108617, -43.30127, 24.69221), (-4.260016, -41.93353, 26.89668), (-5.661841, -41.93353, 26.636868), (-5.197792, -43.30127, 24.45369), (-5.197792, -43.30127, 24.45369), (-5.661841, -41.93353, 26.636868), (-7.0481477, -41.93353, 26.304045), (-6.470476, -43.30127, 24.148146), (-6.470476, -43.30127, 24.148146), (-7.0481477, -41.93353, 26.304045), (-8.415136, -41.93353, 25.899126), (-7.725425, -43.30127, 23.776413), (-7.725425, -43.30127, 23.776413), (-8.415136, -41.93353, 25.899126), (-9.759059, -41.93353, 25.423218), (-8.959199, -43.30127, 23.33951), (-8.959199, -43.30127, 23.33951), (-9.759059, -41.93353, 25.423218), (-11.076233, -41.93353, 24.877626), (-10.168416, -43.30127, 22.838636), (-10.168416, -43.30127, 22.838636), (-11.076233, -41.93353, 24.877626), (-12.363048, -41.93353, 24.263847), (-11.349763, -43.30127, 22.275164), (-11.349763, -43.30127, 22.275164), (-12.363048, -41.93353, 24.263847), (-13.615976, -41.93353, 23.583563), (-12.5, -43.30127, 21.650635), (-12.5, -43.30127, 21.650635), (-13.615976, -41.93353, 23.583563), (-14.831584, -41.93353, 22.838636), (-13.615976, -43.30127, 20.966764), (-13.615976, -43.30127, 20.966764), (-14.831584, -41.93353, 22.838636), (-16.00654, -41.93353, 22.031113), (-14.694632, -43.30127, 20.225426), (-14.694632, -43.30127, 20.225426), (-16.00654, -41.93353, 22.031113), (-17.137623, -41.93353, 21.1632), (-15.733009, -43.30127, 19.42865), (-15.733009, -43.30127, 19.42865), (-17.137623, -41.93353, 21.1632), (-18.221733, -41.93353, 20.237284), (-16.728266, -43.30127, 18.57862), (-16.728266, -43.30127, 18.57862), (-18.221733, -41.93353, 20.237284), (-19.255898, -41.93353, 19.255898), (-17.67767, -43.30127, 17.67767), (-17.67767, -43.30127, 17.67767), (-19.255898, -41.93353, 19.255898), (-20.237284, -41.93353, 18.221733), (-18.57862, -43.30127, 16.728266), (-18.57862, -43.30127, 16.728266), (-20.237284, -41.93353, 18.221733), (-21.1632, -41.93353, 17.137623), (-19.42865, -43.30127, 15.733009), (-19.42865, -43.30127, 15.733009), (-21.1632, -41.93353, 17.137623), (-22.031113, -41.93353, 16.00654), (-20.225426, -43.30127, 14.694632), (-20.225426, -43.30127, 14.694632), (-22.031113, -41.93353, 16.00654), (-22.838636, -41.93353, 14.831584), (-20.966764, -43.30127, 13.615976), (-20.966764, -43.30127, 13.615976), (-22.838636, -41.93353, 14.831584), (-23.583563, -41.93353, 13.615976), (-21.650635, -43.30127, 12.5), (-21.650635, -43.30127, 12.5), (-23.583563, -41.93353, 13.615976), (-24.263847, -41.93353, 12.363048), (-22.275164, -43.30127, 11.349763), (-22.275164, -43.30127, 11.349763), (-24.263847, -41.93353, 12.363048), (-24.877626, -41.93353, 11.076233), (-22.838636, -43.30127, 10.168416), (-22.838636, -43.30127, 10.168416), (-24.877626, -41.93353, 11.076233), (-25.423218, -41.93353, 9.759059), (-23.33951, -43.30127, 8.959199), (-23.33951, -43.30127, 8.959199), (-25.423218, -41.93353, 9.759059), (-25.899126, -41.93353, 8.415136), (-23.776413, -43.30127, 7.725425), (-23.776413, -43.30127, 7.725425), (-25.899126, -41.93353, 8.415136), (-26.304045, -41.93353, 7.0481477), (-24.148146, -43.30127, 6.470476), (-24.148146, -43.30127, 6.470476), (-26.304045, -41.93353, 7.0481477), (-26.636868, -41.93353, 5.661841), (-24.45369, -43.30127, 5.197792), (-24.45369, -43.30127, 5.197792), (-26.636868, -41.93353, 5.661841), (-26.89668, -41.93353, 4.260016), (-24.69221, -43.30127, 3.9108617), (-24.69221, -43.30127, 3.9108617), (-26.89668, -41.93353, 4.260016), (-27.082773, -41.93353, 2.846514), (-24.863047, -43.30127, 2.6132116), (-24.863047, -43.30127, 2.6132116), (-27.082773, -41.93353, 2.846514), (-27.194632, -41.93353, 1.4252102), (-24.965738, -43.30127, 1.308399), (-24.965738, -43.30127, 1.308399), (-27.194632, -41.93353, 1.4252102), (-27.231953, -41.93353, 3.3349523e-15), (-25, -43.30127, 3.0616169e-15), (-25, -43.30127, 3.0616169e-15), (-27.231953, -41.93353, 3.3349523e-15), (-27.194632, -41.93353, -1.4252102), (-24.965738, -43.30127, -1.308399), (-24.965738, -43.30127, -1.308399), (-27.194632, -41.93353, -1.4252102), (-27.082773, -41.93353, -2.846514), (-24.863047, -43.30127, -2.6132116), (-24.863047, -43.30127, -2.6132116), (-27.082773, -41.93353, -2.846514), (-26.89668, -41.93353, -4.260016), (-24.69221, -43.30127, -3.9108617), (-24.69221, -43.30127, -3.9108617), (-26.89668, -41.93353, -4.260016), (-26.636868, -41.93353, -5.661841), (-24.45369, -43.30127, -5.197792), (-24.45369, -43.30127, -5.197792), (-26.636868, -41.93353, -5.661841), (-26.304045, -41.93353, -7.0481477), (-24.148146, -43.30127, -6.470476), (-24.148146, -43.30127, -6.470476), (-26.304045, -41.93353, -7.0481477), (-25.899126, -41.93353, -8.415136), (-23.776413, -43.30127, -7.725425), (-23.776413, -43.30127, -7.725425), (-25.899126, -41.93353, -8.415136), (-25.423218, -41.93353, -9.759059), (-23.33951, -43.30127, -8.959199), (-23.33951, -43.30127, -8.959199), (-25.423218, -41.93353, -9.759059), (-24.877626, -41.93353, -11.076233), (-22.838636, -43.30127, -10.168416), (-22.838636, -43.30127, -10.168416), (-24.877626, -41.93353, -11.076233), (-24.263847, -41.93353, -12.363048), (-22.275164, -43.30127, -11.349763), (-22.275164, -43.30127, -11.349763), (-24.263847, -41.93353, -12.363048), (-23.583563, -41.93353, -13.615976), (-21.650635, -43.30127, -12.5), (-21.650635, -43.30127, -12.5), (-23.583563, -41.93353, -13.615976), (-22.838636, -41.93353, -14.831584), (-20.966764, -43.30127, -13.615976), (-20.966764, -43.30127, -13.615976), (-22.838636, -41.93353, -14.831584), (-22.031113, -41.93353, -16.00654), (-20.225426, -43.30127, -14.694632), (-20.225426, -43.30127, -14.694632), (-22.031113, -41.93353, -16.00654), (-21.1632, -41.93353, -17.137623), (-19.42865, -43.30127, -15.733009), (-19.42865, -43.30127, -15.733009), (-21.1632, -41.93353, -17.137623), (-20.237284, -41.93353, -18.221733), (-18.57862, -43.30127, -16.728266), (-18.57862, -43.30127, -16.728266), (-20.237284, -41.93353, -18.221733), (-19.255898, -41.93353, -19.255898), (-17.67767, -43.30127, -17.67767), (-17.67767, -43.30127, -17.67767), (-19.255898, -41.93353, -19.255898), (-18.221733, -41.93353, -20.237284), (-16.728266, -43.30127, -18.57862), (-16.728266, -43.30127, -18.57862), (-18.221733, -41.93353, -20.237284), (-17.137623, -41.93353, -21.1632), (-15.733009, -43.30127, -19.42865), (-15.733009, -43.30127, -19.42865), (-17.137623, -41.93353, -21.1632), (-16.00654, -41.93353, -22.031113), (-14.694632, -43.30127, -20.225426), (-14.694632, -43.30127, -20.225426), (-16.00654, -41.93353, -22.031113), (-14.831584, -41.93353, -22.838636), (-13.615976, -43.30127, -20.966764), (-13.615976, -43.30127, -20.966764), (-14.831584, -41.93353, -22.838636), (-13.615976, -41.93353, -23.583563), (-12.5, -43.30127, -21.650635), (-12.5, -43.30127, -21.650635), (-13.615976, -41.93353, -23.583563), (-12.363048, -41.93353, -24.263847), (-11.349763, -43.30127, -22.275164), (-11.349763, -43.30127, -22.275164), (-12.363048, -41.93353, -24.263847), (-11.076233, -41.93353, -24.877626), (-10.168416, -43.30127, -22.838636), (-10.168416, -43.30127, -22.838636), (-11.076233, -41.93353, -24.877626), (-9.759059, -41.93353, -25.423218), (-8.959199, -43.30127, -23.33951), (-8.959199, -43.30127, -23.33951), (-9.759059, -41.93353, -25.423218), (-8.415136, -41.93353, -25.899126), (-7.725425, -43.30127, -23.776413), (-7.725425, -43.30127, -23.776413), (-8.415136, -41.93353, -25.899126), (-7.0481477, -41.93353, -26.304045), (-6.470476, -43.30127, -24.148146), (-6.470476, -43.30127, -24.148146), (-7.0481477, -41.93353, -26.304045), (-5.661841, -41.93353, -26.636868), (-5.197792, -43.30127, -24.45369), (-5.197792, -43.30127, -24.45369), (-5.661841, -41.93353, -26.636868), (-4.260016, -41.93353, -26.89668), (-3.9108617, -43.30127, -24.69221), (-3.9108617, -43.30127, -24.69221), (-4.260016, -41.93353, -26.89668), (-2.846514, -41.93353, -27.082773), (-2.6132116, -43.30127, -24.863047), (-2.6132116, -43.30127, -24.863047), (-2.846514, -41.93353, -27.082773), (-1.4252102, -41.93353, -27.194632), (-1.308399, -43.30127, -24.965738), (-1.308399, -43.30127, -24.965738), (-1.4252102, -41.93353, -27.194632), (-5.0024284e-15, -41.93353, -27.231953), (-4.5924254e-15, -43.30127, -25), (-4.5924254e-15, -43.30127, -25), (-5.0024284e-15, -41.93353, -27.231953), (1.4252102, -41.93353, -27.194632), (1.308399, -43.30127, -24.965738), (1.308399, -43.30127, -24.965738), (1.4252102, -41.93353, -27.194632), (2.846514, -41.93353, -27.082773), (2.6132116, -43.30127, -24.863047), (2.6132116, -43.30127, -24.863047), (2.846514, -41.93353, -27.082773), (4.260016, -41.93353, -26.89668), (3.9108617, -43.30127, -24.69221), (3.9108617, -43.30127, -24.69221), (4.260016, -41.93353, -26.89668), (5.661841, -41.93353, -26.636868), (5.197792, -43.30127, -24.45369), (5.197792, -43.30127, -24.45369), (5.661841, -41.93353, -26.636868), (7.0481477, -41.93353, -26.304045), (6.470476, -43.30127, -24.148146), (6.470476, -43.30127, -24.148146), (7.0481477, -41.93353, -26.304045), (8.415136, -41.93353, -25.899126), (7.725425, -43.30127, -23.776413), (7.725425, -43.30127, -23.776413), (8.415136, -41.93353, -25.899126), (9.759059, -41.93353, -25.423218), (8.959199, -43.30127, -23.33951), (8.959199, -43.30127, -23.33951), (9.759059, -41.93353, -25.423218), (11.076233, -41.93353, -24.877626), (10.168416, -43.30127, -22.838636), (10.168416, -43.30127, -22.838636), (11.076233, -41.93353, -24.877626), (12.363048, -41.93353, -24.263847), (11.349763, -43.30127, -22.275164), (11.349763, -43.30127, -22.275164), (12.363048, -41.93353, -24.263847), (13.615976, -41.93353, -23.583563), (12.5, -43.30127, -21.650635), (12.5, -43.30127, -21.650635), (13.615976, -41.93353, -23.583563), (14.831584, -41.93353, -22.838636), (13.615976, -43.30127, -20.966764), (13.615976, -43.30127, -20.966764), (14.831584, -41.93353, -22.838636), (16.00654, -41.93353, -22.031113), (14.694632, -43.30127, -20.225426), (14.694632, -43.30127, -20.225426), (16.00654, -41.93353, -22.031113), (17.137623, -41.93353, -21.1632), (15.733009, -43.30127, -19.42865), (15.733009, -43.30127, -19.42865), (17.137623, -41.93353, -21.1632), (18.221733, -41.93353, -20.237284), (16.728266, -43.30127, -18.57862), (16.728266, -43.30127, -18.57862), (18.221733, -41.93353, -20.237284), (19.255898, -41.93353, -19.255898), (17.67767, -43.30127, -17.67767), (17.67767, -43.30127, -17.67767), (19.255898, -41.93353, -19.255898), (20.237284, -41.93353, -18.221733), (18.57862, -43.30127, -16.728266), (18.57862, -43.30127, -16.728266), (20.237284, -41.93353, -18.221733), (21.1632, -41.93353, -17.137623), (19.42865, -43.30127, -15.733009), (19.42865, -43.30127, -15.733009), (21.1632, -41.93353, -17.137623), (22.031113, -41.93353, -16.00654), (20.225426, -43.30127, -14.694632), (20.225426, -43.30127, -14.694632), (22.031113, -41.93353, -16.00654), (22.838636, -41.93353, -14.831584), (20.966764, -43.30127, -13.615976), (20.966764, -43.30127, -13.615976), (22.838636, -41.93353, -14.831584), (23.583563, -41.93353, -13.615976), (21.650635, -43.30127, -12.5), (21.650635, -43.30127, -12.5), (23.583563, -41.93353, -13.615976), (24.263847, -41.93353, -12.363048), (22.275164, -43.30127, -11.349763), (22.275164, -43.30127, -11.349763), (24.263847, -41.93353, -12.363048), (24.877626, -41.93353, -11.076233), (22.838636, -43.30127, -10.168416), (22.838636, -43.30127, -10.168416), (24.877626, -41.93353, -11.076233), (25.423218, -41.93353, -9.759059), (23.33951, -43.30127, -8.959199), (23.33951, -43.30127, -8.959199), (25.423218, -41.93353, -9.759059), (25.899126, -41.93353, -8.415136), (23.776413, -43.30127, -7.725425), (23.776413, -43.30127, -7.725425), (25.899126, -41.93353, -8.415136), (26.304045, -41.93353, -7.0481477), (24.148146, -43.30127, -6.470476), (24.148146, -43.30127, -6.470476), (26.304045, -41.93353, -7.0481477), (26.636868, -41.93353, -5.661841), (24.45369, -43.30127, -5.197792), (24.45369, -43.30127, -5.197792), (26.636868, -41.93353, -5.661841), (26.89668, -41.93353, -4.260016), (24.69221, -43.30127, -3.9108617), (24.69221, -43.30127, -3.9108617), (26.89668, -41.93353, -4.260016), (27.082773, -41.93353, -2.846514), (24.863047, -43.30127, -2.6132116), (24.863047, -43.30127, -2.6132116), (27.082773, -41.93353, -2.846514), (27.194632, -41.93353, -1.4252102), (24.965738, -43.30127, -1.308399), (24.965738, -43.30127, -1.308399), (27.194632, -41.93353, -1.4252102), (27.231953, -41.93353, 0), (25, -43.30127, 0), (27.231953, -41.93353, 0), (29.389263, -40.45085, 0), (29.348986, -40.45085, 1.5381151), (27.194632, -41.93353, 1.4252102), (27.194632, -41.93353, 1.4252102), (29.348986, -40.45085, 1.5381151), (29.228266, -40.45085, 3.0720146), (27.082773, -41.93353, 2.846514), (27.082773, -41.93353, 2.846514), (29.228266, -40.45085, 3.0720146), (29.027431, -40.45085, 4.5974936), (26.89668, -41.93353, 4.260016), (26.89668, -41.93353, 4.260016), (29.027431, -40.45085, 4.5974936), (28.747036, -40.45085, 6.110371), (26.636868, -41.93353, 5.661841), (26.636868, -41.93353, 5.661841), (28.747036, -40.45085, 6.110371), (28.387848, -40.45085, 7.606501), (26.304045, -41.93353, 7.0481477), (26.304045, -41.93353, 7.0481477), (28.387848, -40.45085, 7.606501), (27.95085, -40.45085, 9.081781), (25.899126, -41.93353, 8.415136), (25.899126, -41.93353, 8.415136), (27.95085, -40.45085, 9.081781), (27.43724, -40.45085, 10.532169), (25.423218, -41.93353, 9.759059), (25.423218, -41.93353, 9.759059), (27.43724, -40.45085, 10.532169), (26.848427, -40.45085, 11.95369), (24.877626, -41.93353, 11.076233), (24.877626, -41.93353, 11.076233), (26.848427, -40.45085, 11.95369), (26.186026, -40.45085, 13.342446), (24.263847, -41.93353, 12.363048), (24.263847, -41.93353, 12.363048), (26.186026, -40.45085, 13.342446), (25.451847, -40.45085, 14.694632), (23.583563, -41.93353, 13.615976), (23.583563, -41.93353, 13.615976), (25.451847, -40.45085, 14.694632), (24.64791, -40.45085, 16.00654), (22.838636, -41.93353, 14.831584), (22.838636, -41.93353, 14.831584), (24.64791, -40.45085, 16.00654), (23.776413, -40.45085, 17.274574), (22.031113, -41.93353, 16.00654), (22.031113, -41.93353, 16.00654), (23.776413, -40.45085, 17.274574), (22.839746, -40.45085, 18.495262), (21.1632, -41.93353, 17.137623), (21.1632, -41.93353, 17.137623), (22.839746, -40.45085, 18.495262), (21.840479, -40.45085, 19.665255), (20.237284, -41.93353, 18.221733), (20.237284, -41.93353, 18.221733), (21.840479, -40.45085, 19.665255), (20.781347, -40.45085, 20.781347), (19.255898, -41.93353, 19.255898), (19.255898, -41.93353, 19.255898), (20.781347, -40.45085, 20.781347), (19.665255, -40.45085, 21.840479), (18.221733, -41.93353, 20.237284), (18.221733, -41.93353, 20.237284), (19.665255, -40.45085, 21.840479), (18.495262, -40.45085, 22.839746), (17.137623, -41.93353, 21.1632), (17.137623, -41.93353, 21.1632), (18.495262, -40.45085, 22.839746), (17.274574, -40.45085, 23.776413), (16.00654, -41.93353, 22.031113), (16.00654, -41.93353, 22.031113), (17.274574, -40.45085, 23.776413), (16.00654, -40.45085, 24.64791), (14.831584, -41.93353, 22.838636), (14.831584, -41.93353, 22.838636), (16.00654, -40.45085, 24.64791), (14.694632, -40.45085, 25.451847), (13.615976, -41.93353, 23.583563), (13.615976, -41.93353, 23.583563), (14.694632, -40.45085, 25.451847), (13.342446, -40.45085, 26.186026), (12.363048, -41.93353, 24.263847), (12.363048, -41.93353, 24.263847), (13.342446, -40.45085, 26.186026), (11.95369, -40.45085, 26.848427), (11.076233, -41.93353, 24.877626), (11.076233, -41.93353, 24.877626), (11.95369, -40.45085, 26.848427), (10.532169, -40.45085, 27.43724), (9.759059, -41.93353, 25.423218), (9.759059, -41.93353, 25.423218), (10.532169, -40.45085, 27.43724), (9.081781, -40.45085, 27.95085), (8.415136, -41.93353, 25.899126), (8.415136, -41.93353, 25.899126), (9.081781, -40.45085, 27.95085), (7.606501, -40.45085, 28.387848), (7.0481477, -41.93353, 26.304045), (7.0481477, -41.93353, 26.304045), (7.606501, -40.45085, 28.387848), (6.110371, -40.45085, 28.747036), (5.661841, -41.93353, 26.636868), (5.661841, -41.93353, 26.636868), (6.110371, -40.45085, 28.747036), (4.5974936, -40.45085, 29.027431), (4.260016, -41.93353, 26.89668), (4.260016, -41.93353, 26.89668), (4.5974936, -40.45085, 29.027431), (3.0720146, -40.45085, 29.228266), (2.846514, -41.93353, 27.082773), (2.846514, -41.93353, 27.082773), (3.0720146, -40.45085, 29.228266), (1.5381151, -40.45085, 29.348986), (1.4252102, -41.93353, 27.194632), (1.4252102, -41.93353, 27.194632), (1.5381151, -40.45085, 29.348986), (1.7995734e-15, -40.45085, 29.389263), (1.6674762e-15, -41.93353, 27.231953), (1.6674762e-15, -41.93353, 27.231953), (1.7995734e-15, -40.45085, 29.389263), (-1.5381151, -40.45085, 29.348986), (-1.4252102, -41.93353, 27.194632), (-1.4252102, -41.93353, 27.194632), (-1.5381151, -40.45085, 29.348986), (-3.0720146, -40.45085, 29.228266), (-2.846514, -41.93353, 27.082773), (-2.846514, -41.93353, 27.082773), (-3.0720146, -40.45085, 29.228266), (-4.5974936, -40.45085, 29.027431), (-4.260016, -41.93353, 26.89668), (-4.260016, -41.93353, 26.89668), (-4.5974936, -40.45085, 29.027431), (-6.110371, -40.45085, 28.747036), (-5.661841, -41.93353, 26.636868), (-5.661841, -41.93353, 26.636868), (-6.110371, -40.45085, 28.747036), (-7.606501, -40.45085, 28.387848), (-7.0481477, -41.93353, 26.304045), (-7.0481477, -41.93353, 26.304045), (-7.606501, -40.45085, 28.387848), (-9.081781, -40.45085, 27.95085), (-8.415136, -41.93353, 25.899126), (-8.415136, -41.93353, 25.899126), (-9.081781, -40.45085, 27.95085), (-10.532169, -40.45085, 27.43724), (-9.759059, -41.93353, 25.423218), (-9.759059, -41.93353, 25.423218), (-10.532169, -40.45085, 27.43724), (-11.95369, -40.45085, 26.848427), (-11.076233, -41.93353, 24.877626), (-11.076233, -41.93353, 24.877626), (-11.95369, -40.45085, 26.848427), (-13.342446, -40.45085, 26.186026), (-12.363048, -41.93353, 24.263847), (-12.363048, -41.93353, 24.263847), (-13.342446, -40.45085, 26.186026), (-14.694632, -40.45085, 25.451847), (-13.615976, -41.93353, 23.583563), (-13.615976, -41.93353, 23.583563), (-14.694632, -40.45085, 25.451847), (-16.00654, -40.45085, 24.64791), (-14.831584, -41.93353, 22.838636), (-14.831584, -41.93353, 22.838636), (-16.00654, -40.45085, 24.64791), (-17.274574, -40.45085, 23.776413), (-16.00654, -41.93353, 22.031113), (-16.00654, -41.93353, 22.031113), (-17.274574, -40.45085, 23.776413), (-18.495262, -40.45085, 22.839746), (-17.137623, -41.93353, 21.1632), (-17.137623, -41.93353, 21.1632), (-18.495262, -40.45085, 22.839746), (-19.665255, -40.45085, 21.840479), (-18.221733, -41.93353, 20.237284), (-18.221733, -41.93353, 20.237284), (-19.665255, -40.45085, 21.840479), (-20.781347, -40.45085, 20.781347), (-19.255898, -41.93353, 19.255898), (-19.255898, -41.93353, 19.255898), (-20.781347, -40.45085, 20.781347), (-21.840479, -40.45085, 19.665255), (-20.237284, -41.93353, 18.221733), (-20.237284, -41.93353, 18.221733), (-21.840479, -40.45085, 19.665255), (-22.839746, -40.45085, 18.495262), (-21.1632, -41.93353, 17.137623), (-21.1632, -41.93353, 17.137623), (-22.839746, -40.45085, 18.495262), (-23.776413, -40.45085, 17.274574), (-22.031113, -41.93353, 16.00654), (-22.031113, -41.93353, 16.00654), (-23.776413, -40.45085, 17.274574), (-24.64791, -40.45085, 16.00654), (-22.838636, -41.93353, 14.831584), (-22.838636, -41.93353, 14.831584), (-24.64791, -40.45085, 16.00654), (-25.451847, -40.45085, 14.694632), (-23.583563, -41.93353, 13.615976), (-23.583563, -41.93353, 13.615976), (-25.451847, -40.45085, 14.694632), (-26.186026, -40.45085, 13.342446), (-24.263847, -41.93353, 12.363048), (-24.263847, -41.93353, 12.363048), (-26.186026, -40.45085, 13.342446), (-26.848427, -40.45085, 11.95369), (-24.877626, -41.93353, 11.076233), (-24.877626, -41.93353, 11.076233), (-26.848427, -40.45085, 11.95369), (-27.43724, -40.45085, 10.532169), (-25.423218, -41.93353, 9.759059), (-25.423218, -41.93353, 9.759059), (-27.43724, -40.45085, 10.532169), (-27.95085, -40.45085, 9.081781), (-25.899126, -41.93353, 8.415136), (-25.899126, -41.93353, 8.415136), (-27.95085, -40.45085, 9.081781), (-28.387848, -40.45085, 7.606501), (-26.304045, -41.93353, 7.0481477), (-26.304045, -41.93353, 7.0481477), (-28.387848, -40.45085, 7.606501), (-28.747036, -40.45085, 6.110371), (-26.636868, -41.93353, 5.661841), (-26.636868, -41.93353, 5.661841), (-28.747036, -40.45085, 6.110371), (-29.027431, -40.45085, 4.5974936), (-26.89668, -41.93353, 4.260016), (-26.89668, -41.93353, 4.260016), (-29.027431, -40.45085, 4.5974936), (-29.228266, -40.45085, 3.0720146), (-27.082773, -41.93353, 2.846514), (-27.082773, -41.93353, 2.846514), (-29.228266, -40.45085, 3.0720146), (-29.348986, -40.45085, 1.5381151), (-27.194632, -41.93353, 1.4252102), (-27.194632, -41.93353, 1.4252102), (-29.348986, -40.45085, 1.5381151), (-29.389263, -40.45085, 3.5991468e-15), (-27.231953, -41.93353, 3.3349523e-15), (-27.231953, -41.93353, 3.3349523e-15), (-29.389263, -40.45085, 3.5991468e-15), (-29.348986, -40.45085, -1.5381151), (-27.194632, -41.93353, -1.4252102), (-27.194632, -41.93353, -1.4252102), (-29.348986, -40.45085, -1.5381151), (-29.228266, -40.45085, -3.0720146), (-27.082773, -41.93353, -2.846514), (-27.082773, -41.93353, -2.846514), (-29.228266, -40.45085, -3.0720146), (-29.027431, -40.45085, -4.5974936), (-26.89668, -41.93353, -4.260016), (-26.89668, -41.93353, -4.260016), (-29.027431, -40.45085, -4.5974936), (-28.747036, -40.45085, -6.110371), (-26.636868, -41.93353, -5.661841), (-26.636868, -41.93353, -5.661841), (-28.747036, -40.45085, -6.110371), (-28.387848, -40.45085, -7.606501), (-26.304045, -41.93353, -7.0481477), (-26.304045, -41.93353, -7.0481477), (-28.387848, -40.45085, -7.606501), (-27.95085, -40.45085, -9.081781), (-25.899126, -41.93353, -8.415136), (-25.899126, -41.93353, -8.415136), (-27.95085, -40.45085, -9.081781), (-27.43724, -40.45085, -10.532169), (-25.423218, -41.93353, -9.759059), (-25.423218, -41.93353, -9.759059), (-27.43724, -40.45085, -10.532169), (-26.848427, -40.45085, -11.95369), (-24.877626, -41.93353, -11.076233), (-24.877626, -41.93353, -11.076233), (-26.848427, -40.45085, -11.95369), (-26.186026, -40.45085, -13.342446), (-24.263847, -41.93353, -12.363048), (-24.263847, -41.93353, -12.363048), (-26.186026, -40.45085, -13.342446), (-25.451847, -40.45085, -14.694632), (-23.583563, -41.93353, -13.615976), (-23.583563, -41.93353, -13.615976), (-25.451847, -40.45085, -14.694632), (-24.64791, -40.45085, -16.00654), (-22.838636, -41.93353, -14.831584), (-22.838636, -41.93353, -14.831584), (-24.64791, -40.45085, -16.00654), (-23.776413, -40.45085, -17.274574), (-22.031113, -41.93353, -16.00654), (-22.031113, -41.93353, -16.00654), (-23.776413, -40.45085, -17.274574), (-22.839746, -40.45085, -18.495262), (-21.1632, -41.93353, -17.137623), (-21.1632, -41.93353, -17.137623), (-22.839746, -40.45085, -18.495262), (-21.840479, -40.45085, -19.665255), (-20.237284, -41.93353, -18.221733), (-20.237284, -41.93353, -18.221733), (-21.840479, -40.45085, -19.665255), (-20.781347, -40.45085, -20.781347), (-19.255898, -41.93353, -19.255898), (-19.255898, -41.93353, -19.255898), (-20.781347, -40.45085, -20.781347), (-19.665255, -40.45085, -21.840479), (-18.221733, -41.93353, -20.237284), (-18.221733, -41.93353, -20.237284), (-19.665255, -40.45085, -21.840479), (-18.495262, -40.45085, -22.839746), (-17.137623, -41.93353, -21.1632), (-17.137623, -41.93353, -21.1632), (-18.495262, -40.45085, -22.839746), (-17.274574, -40.45085, -23.776413), (-16.00654, -41.93353, -22.031113), (-16.00654, -41.93353, -22.031113), (-17.274574, -40.45085, -23.776413), (-16.00654, -40.45085, -24.64791), (-14.831584, -41.93353, -22.838636), (-14.831584, -41.93353, -22.838636), (-16.00654, -40.45085, -24.64791), (-14.694632, -40.45085, -25.451847), (-13.615976, -41.93353, -23.583563), (-13.615976, -41.93353, -23.583563), (-14.694632, -40.45085, -25.451847), (-13.342446, -40.45085, -26.186026), (-12.363048, -41.93353, -24.263847), (-12.363048, -41.93353, -24.263847), (-13.342446, -40.45085, -26.186026), (-11.95369, -40.45085, -26.848427), (-11.076233, -41.93353, -24.877626), (-11.076233, -41.93353, -24.877626), (-11.95369, -40.45085, -26.848427), (-10.532169, -40.45085, -27.43724), (-9.759059, -41.93353, -25.423218), (-9.759059, -41.93353, -25.423218), (-10.532169, -40.45085, -27.43724), (-9.081781, -40.45085, -27.95085), (-8.415136, -41.93353, -25.899126), (-8.415136, -41.93353, -25.899126), (-9.081781, -40.45085, -27.95085), (-7.606501, -40.45085, -28.387848), (-7.0481477, -41.93353, -26.304045), (-7.0481477, -41.93353, -26.304045), (-7.606501, -40.45085, -28.387848), (-6.110371, -40.45085, -28.747036), (-5.661841, -41.93353, -26.636868), (-5.661841, -41.93353, -26.636868), (-6.110371, -40.45085, -28.747036), (-4.5974936, -40.45085, -29.027431), (-4.260016, -41.93353, -26.89668), (-4.260016, -41.93353, -26.89668), (-4.5974936, -40.45085, -29.027431), (-3.0720146, -40.45085, -29.228266), (-2.846514, -41.93353, -27.082773), (-2.846514, -41.93353, -27.082773), (-3.0720146, -40.45085, -29.228266), (-1.5381151, -40.45085, -29.348986), (-1.4252102, -41.93353, -27.194632), (-1.4252102, -41.93353, -27.194632), (-1.5381151, -40.45085, -29.348986), (-5.39872e-15, -40.45085, -29.389263), (-5.0024284e-15, -41.93353, -27.231953), (-5.0024284e-15, -41.93353, -27.231953), (-5.39872e-15, -40.45085, -29.389263), (1.5381151, -40.45085, -29.348986), (1.4252102, -41.93353, -27.194632), (1.4252102, -41.93353, -27.194632), (1.5381151, -40.45085, -29.348986), (3.0720146, -40.45085, -29.228266), (2.846514, -41.93353, -27.082773), (2.846514, -41.93353, -27.082773), (3.0720146, -40.45085, -29.228266), (4.5974936, -40.45085, -29.027431), (4.260016, -41.93353, -26.89668), (4.260016, -41.93353, -26.89668), (4.5974936, -40.45085, -29.027431), (6.110371, -40.45085, -28.747036), (5.661841, -41.93353, -26.636868), (5.661841, -41.93353, -26.636868), (6.110371, -40.45085, -28.747036), (7.606501, -40.45085, -28.387848), (7.0481477, -41.93353, -26.304045), (7.0481477, -41.93353, -26.304045), (7.606501, -40.45085, -28.387848), (9.081781, -40.45085, -27.95085), (8.415136, -41.93353, -25.899126), (8.415136, -41.93353, -25.899126), (9.081781, -40.45085, -27.95085), (10.532169, -40.45085, -27.43724), (9.759059, -41.93353, -25.423218), (9.759059, -41.93353, -25.423218), (10.532169, -40.45085, -27.43724), (11.95369, -40.45085, -26.848427), (11.076233, -41.93353, -24.877626), (11.076233, -41.93353, -24.877626), (11.95369, -40.45085, -26.848427), (13.342446, -40.45085, -26.186026), (12.363048, -41.93353, -24.263847), (12.363048, -41.93353, -24.263847), (13.342446, -40.45085, -26.186026), (14.694632, -40.45085, -25.451847), (13.615976, -41.93353, -23.583563), (13.615976, -41.93353, -23.583563), (14.694632, -40.45085, -25.451847), (16.00654, -40.45085, -24.64791), (14.831584, -41.93353, -22.838636), (14.831584, -41.93353, -22.838636), (16.00654, -40.45085, -24.64791), (17.274574, -40.45085, -23.776413), (16.00654, -41.93353, -22.031113), (16.00654, -41.93353, -22.031113), (17.274574, -40.45085, -23.776413), (18.495262, -40.45085, -22.839746), (17.137623, -41.93353, -21.1632), (17.137623, -41.93353, -21.1632), (18.495262, -40.45085, -22.839746), (19.665255, -40.45085, -21.840479), (18.221733, -41.93353, -20.237284), (18.221733, -41.93353, -20.237284), (19.665255, -40.45085, -21.840479), (20.781347, -40.45085, -20.781347), (19.255898, -41.93353, -19.255898), (19.255898, -41.93353, -19.255898), (20.781347, -40.45085, -20.781347), (21.840479, -40.45085, -19.665255), (20.237284, -41.93353, -18.221733), (20.237284, -41.93353, -18.221733), (21.840479, -40.45085, -19.665255), (22.839746, -40.45085, -18.495262), (21.1632, -41.93353, -17.137623), (21.1632, -41.93353, -17.137623), (22.839746, -40.45085, -18.495262), (23.776413, -40.45085, -17.274574), (22.031113, -41.93353, -16.00654), (22.031113, -41.93353, -16.00654), (23.776413, -40.45085, -17.274574), (24.64791, -40.45085, -16.00654), (22.838636, -41.93353, -14.831584), (22.838636, -41.93353, -14.831584), (24.64791, -40.45085, -16.00654), (25.451847, -40.45085, -14.694632), (23.583563, -41.93353, -13.615976), (23.583563, -41.93353, -13.615976), (25.451847, -40.45085, -14.694632), (26.186026, -40.45085, -13.342446), (24.263847, -41.93353, -12.363048), (24.263847, -41.93353, -12.363048), (26.186026, -40.45085, -13.342446), (26.848427, -40.45085, -11.95369), (24.877626, -41.93353, -11.076233), (24.877626, -41.93353, -11.076233), (26.848427, -40.45085, -11.95369), (27.43724, -40.45085, -10.532169), (25.423218, -41.93353, -9.759059), (25.423218, -41.93353, -9.759059), (27.43724, -40.45085, -10.532169), (27.95085, -40.45085, -9.081781), (25.899126, -41.93353, -8.415136), (25.899126, -41.93353, -8.415136), (27.95085, -40.45085, -9.081781), (28.387848, -40.45085, -7.606501), (26.304045, -41.93353, -7.0481477), (26.304045, -41.93353, -7.0481477), (28.387848, -40.45085, -7.606501), (28.747036, -40.45085, -6.110371), (26.636868, -41.93353, -5.661841), (26.636868, -41.93353, -5.661841), (28.747036, -40.45085, -6.110371), (29.027431, -40.45085, -4.5974936), (26.89668, -41.93353, -4.260016), (26.89668, -41.93353, -4.260016), (29.027431, -40.45085, -4.5974936), (29.228266, -40.45085, -3.0720146), (27.082773, -41.93353, -2.846514), (27.082773, -41.93353, -2.846514), (29.228266, -40.45085, -3.0720146), (29.348986, -40.45085, -1.5381151), (27.194632, -41.93353, -1.4252102), (27.194632, -41.93353, -1.4252102), (29.348986, -40.45085, -1.5381151), (29.389263, -40.45085, 0), (27.231953, -41.93353, 0), (29.389263, -40.45085, 0), (31.466019, -38.8573, 0), (31.422897, -38.8573, 1.6468042), (29.348986, -40.45085, 1.5381151), (29.348986, -40.45085, 1.5381151), (31.422897, -38.8573, 1.6468042), (31.293646, -38.8573, 3.2890947), (29.228266, -40.45085, 3.0720146), (29.228266, -40.45085, 3.0720146), (31.293646, -38.8573, 3.2890947), (31.07862, -38.8573, 4.92237), (29.027431, -40.45085, 4.5974936), (29.027431, -40.45085, 4.5974936), (31.07862, -38.8573, 4.92237), (30.778412, -38.8573, 6.5421534), (28.747036, -40.45085, 6.110371), (28.747036, -40.45085, 6.110371), (30.778412, -38.8573, 6.5421534), (30.39384, -38.8573, 8.144005), (28.387848, -40.45085, 7.606501), (28.387848, -40.45085, 7.606501), (30.39384, -38.8573, 8.144005), (29.925962, -38.8573, 9.723535), (27.95085, -40.45085, 9.081781), (27.95085, -40.45085, 9.081781), (29.925962, -38.8573, 9.723535), (29.37606, -38.8573, 11.276413), (27.43724, -40.45085, 10.532169), (27.43724, -40.45085, 10.532169), (29.37606, -38.8573, 11.276413), (28.74564, -38.8573, 12.798383), (26.848427, -40.45085, 11.95369), (26.848427, -40.45085, 11.95369), (28.74564, -38.8573, 12.798383), (28.036428, -38.8573, 14.285274), (26.186026, -40.45085, 13.342446), (26.186026, -40.45085, 13.342446), (28.036428, -38.8573, 14.285274), (27.250372, -38.8573, 15.733009), (25.451847, -40.45085, 14.694632), (25.451847, -40.45085, 14.694632), (27.250372, -38.8573, 15.733009), (26.389624, -38.8573, 17.137623), (24.64791, -40.45085, 16.00654), (24.64791, -40.45085, 16.00654), (26.389624, -38.8573, 17.137623), (25.456545, -38.8573, 18.495262), (23.776413, -40.45085, 17.274574), (23.776413, -40.45085, 17.274574), (25.456545, -38.8573, 18.495262), (24.45369, -38.8573, 19.802208), (22.839746, -40.45085, 18.495262), (22.839746, -40.45085, 18.495262), (24.45369, -38.8573, 19.802208), (23.38381, -38.8573, 21.054876), (21.840479, -40.45085, 19.665255), (21.840479, -40.45085, 19.665255), (23.38381, -38.8573, 21.054876), (22.249836, -38.8573, 22.249836), (20.781347, -40.45085, 20.781347), (20.781347, -40.45085, 20.781347), (22.249836, -38.8573, 22.249836), (21.054876, -38.8573, 23.38381), (19.665255, -40.45085, 21.840479), (19.665255, -40.45085, 21.840479), (21.054876, -38.8573, 23.38381), (19.802208, -38.8573, 24.45369), (18.495262, -40.45085, 22.839746), (18.495262, -40.45085, 22.839746), (19.802208, -38.8573, 24.45369), (18.495262, -38.8573, 25.456545), (17.274574, -40.45085, 23.776413), (17.274574, -40.45085, 23.776413), (18.495262, -38.8573, 25.456545), (17.137623, -38.8573, 26.389624), (16.00654, -40.45085, 24.64791), (16.00654, -40.45085, 24.64791), (17.137623, -38.8573, 26.389624), (15.733009, -38.8573, 27.250372), (14.694632, -40.45085, 25.451847), (14.694632, -40.45085, 25.451847), (15.733009, -38.8573, 27.250372), (14.285274, -38.8573, 28.036428), (13.342446, -40.45085, 26.186026), (13.342446, -40.45085, 26.186026), (14.285274, -38.8573, 28.036428), (12.798383, -38.8573, 28.74564), (11.95369, -40.45085, 26.848427), (11.95369, -40.45085, 26.848427), (12.798383, -38.8573, 28.74564), (11.276413, -38.8573, 29.37606), (10.532169, -40.45085, 27.43724), (10.532169, -40.45085, 27.43724), (11.276413, -38.8573, 29.37606), (9.723535, -38.8573, 29.925962), (9.081781, -40.45085, 27.95085), (9.081781, -40.45085, 27.95085), (9.723535, -38.8573, 29.925962), (8.144005, -38.8573, 30.39384), (7.606501, -40.45085, 28.387848), (7.606501, -40.45085, 28.387848), (8.144005, -38.8573, 30.39384), (6.5421534, -38.8573, 30.778412), (6.110371, -40.45085, 28.747036), (6.110371, -40.45085, 28.747036), (6.5421534, -38.8573, 30.778412), (4.92237, -38.8573, 31.07862), (4.5974936, -40.45085, 29.027431), (4.5974936, -40.45085, 29.027431), (4.92237, -38.8573, 31.07862), (3.2890947, -38.8573, 31.293646), (3.0720146, -40.45085, 29.228266), (3.0720146, -40.45085, 29.228266), (3.2890947, -38.8573, 31.293646), (1.6468042, -38.8573, 31.422897), (1.5381151, -40.45085, 29.348986), (1.5381151, -40.45085, 29.348986), (1.6468042, -38.8573, 31.422897), (1.926738e-15, -38.8573, 31.466019), (1.7995734e-15, -40.45085, 29.389263), (1.7995734e-15, -40.45085, 29.389263), (1.926738e-15, -38.8573, 31.466019), (-1.6468042, -38.8573, 31.422897), (-1.5381151, -40.45085, 29.348986), (-1.5381151, -40.45085, 29.348986), (-1.6468042, -38.8573, 31.422897), (-3.2890947, -38.8573, 31.293646), (-3.0720146, -40.45085, 29.228266), (-3.0720146, -40.45085, 29.228266), (-3.2890947, -38.8573, 31.293646), (-4.92237, -38.8573, 31.07862), (-4.5974936, -40.45085, 29.027431), (-4.5974936, -40.45085, 29.027431), (-4.92237, -38.8573, 31.07862), (-6.5421534, -38.8573, 30.778412), (-6.110371, -40.45085, 28.747036), (-6.110371, -40.45085, 28.747036), (-6.5421534, -38.8573, 30.778412), (-8.144005, -38.8573, 30.39384), (-7.606501, -40.45085, 28.387848), (-7.606501, -40.45085, 28.387848), (-8.144005, -38.8573, 30.39384), (-9.723535, -38.8573, 29.925962), (-9.081781, -40.45085, 27.95085), (-9.081781, -40.45085, 27.95085), (-9.723535, -38.8573, 29.925962), (-11.276413, -38.8573, 29.37606), (-10.532169, -40.45085, 27.43724), (-10.532169, -40.45085, 27.43724), (-11.276413, -38.8573, 29.37606), (-12.798383, -38.8573, 28.74564), (-11.95369, -40.45085, 26.848427), (-11.95369, -40.45085, 26.848427), (-12.798383, -38.8573, 28.74564), (-14.285274, -38.8573, 28.036428), (-13.342446, -40.45085, 26.186026), (-13.342446, -40.45085, 26.186026), (-14.285274, -38.8573, 28.036428), (-15.733009, -38.8573, 27.250372), (-14.694632, -40.45085, 25.451847), (-14.694632, -40.45085, 25.451847), (-15.733009, -38.8573, 27.250372), (-17.137623, -38.8573, 26.389624), (-16.00654, -40.45085, 24.64791), (-16.00654, -40.45085, 24.64791), (-17.137623, -38.8573, 26.389624), (-18.495262, -38.8573, 25.456545), (-17.274574, -40.45085, 23.776413), (-17.274574, -40.45085, 23.776413), (-18.495262, -38.8573, 25.456545), (-19.802208, -38.8573, 24.45369), (-18.495262, -40.45085, 22.839746), (-18.495262, -40.45085, 22.839746), (-19.802208, -38.8573, 24.45369), (-21.054876, -38.8573, 23.38381), (-19.665255, -40.45085, 21.840479), (-19.665255, -40.45085, 21.840479), (-21.054876, -38.8573, 23.38381), (-22.249836, -38.8573, 22.249836), (-20.781347, -40.45085, 20.781347), (-20.781347, -40.45085, 20.781347), (-22.249836, -38.8573, 22.249836), (-23.38381, -38.8573, 21.054876), (-21.840479, -40.45085, 19.665255), (-21.840479, -40.45085, 19.665255), (-23.38381, -38.8573, 21.054876), (-24.45369, -38.8573, 19.802208), (-22.839746, -40.45085, 18.495262), (-22.839746, -40.45085, 18.495262), (-24.45369, -38.8573, 19.802208), (-25.456545, -38.8573, 18.495262), (-23.776413, -40.45085, 17.274574), (-23.776413, -40.45085, 17.274574), (-25.456545, -38.8573, 18.495262), (-26.389624, -38.8573, 17.137623), (-24.64791, -40.45085, 16.00654), (-24.64791, -40.45085, 16.00654), (-26.389624, -38.8573, 17.137623), (-27.250372, -38.8573, 15.733009), (-25.451847, -40.45085, 14.694632), (-25.451847, -40.45085, 14.694632), (-27.250372, -38.8573, 15.733009), (-28.036428, -38.8573, 14.285274), (-26.186026, -40.45085, 13.342446), (-26.186026, -40.45085, 13.342446), (-28.036428, -38.8573, 14.285274), (-28.74564, -38.8573, 12.798383), (-26.848427, -40.45085, 11.95369), (-26.848427, -40.45085, 11.95369), (-28.74564, -38.8573, 12.798383), (-29.37606, -38.8573, 11.276413), (-27.43724, -40.45085, 10.532169), (-27.43724, -40.45085, 10.532169), (-29.37606, -38.8573, 11.276413), (-29.925962, -38.8573, 9.723535), (-27.95085, -40.45085, 9.081781), (-27.95085, -40.45085, 9.081781), (-29.925962, -38.8573, 9.723535), (-30.39384, -38.8573, 8.144005), (-28.387848, -40.45085, 7.606501), (-28.387848, -40.45085, 7.606501), (-30.39384, -38.8573, 8.144005), (-30.778412, -38.8573, 6.5421534), (-28.747036, -40.45085, 6.110371), (-28.747036, -40.45085, 6.110371), (-30.778412, -38.8573, 6.5421534), (-31.07862, -38.8573, 4.92237), (-29.027431, -40.45085, 4.5974936), (-29.027431, -40.45085, 4.5974936), (-31.07862, -38.8573, 4.92237), (-31.293646, -38.8573, 3.2890947), (-29.228266, -40.45085, 3.0720146), (-29.228266, -40.45085, 3.0720146), (-31.293646, -38.8573, 3.2890947), (-31.422897, -38.8573, 1.6468042), (-29.348986, -40.45085, 1.5381151), (-29.348986, -40.45085, 1.5381151), (-31.422897, -38.8573, 1.6468042), (-31.466019, -38.8573, 3.853476e-15), (-29.389263, -40.45085, 3.5991468e-15), (-29.389263, -40.45085, 3.5991468e-15), (-31.466019, -38.8573, 3.853476e-15), (-31.422897, -38.8573, -1.6468042), (-29.348986, -40.45085, -1.5381151), (-29.348986, -40.45085, -1.5381151), (-31.422897, -38.8573, -1.6468042), (-31.293646, -38.8573, -3.2890947), (-29.228266, -40.45085, -3.0720146), (-29.228266, -40.45085, -3.0720146), (-31.293646, -38.8573, -3.2890947), (-31.07862, -38.8573, -4.92237), (-29.027431, -40.45085, -4.5974936), (-29.027431, -40.45085, -4.5974936), (-31.07862, -38.8573, -4.92237), (-30.778412, -38.8573, -6.5421534), (-28.747036, -40.45085, -6.110371), (-28.747036, -40.45085, -6.110371), (-30.778412, -38.8573, -6.5421534), (-30.39384, -38.8573, -8.144005), (-28.387848, -40.45085, -7.606501), (-28.387848, -40.45085, -7.606501), (-30.39384, -38.8573, -8.144005), (-29.925962, -38.8573, -9.723535), (-27.95085, -40.45085, -9.081781), (-27.95085, -40.45085, -9.081781), (-29.925962, -38.8573, -9.723535), (-29.37606, -38.8573, -11.276413), (-27.43724, -40.45085, -10.532169), (-27.43724, -40.45085, -10.532169), (-29.37606, -38.8573, -11.276413), (-28.74564, -38.8573, -12.798383), (-26.848427, -40.45085, -11.95369), (-26.848427, -40.45085, -11.95369), (-28.74564, -38.8573, -12.798383), (-28.036428, -38.8573, -14.285274), (-26.186026, -40.45085, -13.342446), (-26.186026, -40.45085, -13.342446), (-28.036428, -38.8573, -14.285274), (-27.250372, -38.8573, -15.733009), (-25.451847, -40.45085, -14.694632), (-25.451847, -40.45085, -14.694632), (-27.250372, -38.8573, -15.733009), (-26.389624, -38.8573, -17.137623), (-24.64791, -40.45085, -16.00654), (-24.64791, -40.45085, -16.00654), (-26.389624, -38.8573, -17.137623), (-25.456545, -38.8573, -18.495262), (-23.776413, -40.45085, -17.274574), (-23.776413, -40.45085, -17.274574), (-25.456545, -38.8573, -18.495262), (-24.45369, -38.8573, -19.802208), (-22.839746, -40.45085, -18.495262), (-22.839746, -40.45085, -18.495262), (-24.45369, -38.8573, -19.802208), (-23.38381, -38.8573, -21.054876), (-21.840479, -40.45085, -19.665255), (-21.840479, -40.45085, -19.665255), (-23.38381, -38.8573, -21.054876), (-22.249836, -38.8573, -22.249836), (-20.781347, -40.45085, -20.781347), (-20.781347, -40.45085, -20.781347), (-22.249836, -38.8573, -22.249836), (-21.054876, -38.8573, -23.38381), (-19.665255, -40.45085, -21.840479), (-19.665255, -40.45085, -21.840479), (-21.054876, -38.8573, -23.38381), (-19.802208, -38.8573, -24.45369), (-18.495262, -40.45085, -22.839746), (-18.495262, -40.45085, -22.839746), (-19.802208, -38.8573, -24.45369), (-18.495262, -38.8573, -25.456545), (-17.274574, -40.45085, -23.776413), (-17.274574, -40.45085, -23.776413), (-18.495262, -38.8573, -25.456545), (-17.137623, -38.8573, -26.389624), (-16.00654, -40.45085, -24.64791), (-16.00654, -40.45085, -24.64791), (-17.137623, -38.8573, -26.389624), (-15.733009, -38.8573, -27.250372), (-14.694632, -40.45085, -25.451847), (-14.694632, -40.45085, -25.451847), (-15.733009, -38.8573, -27.250372), (-14.285274, -38.8573, -28.036428), (-13.342446, -40.45085, -26.186026), (-13.342446, -40.45085, -26.186026), (-14.285274, -38.8573, -28.036428), (-12.798383, -38.8573, -28.74564), (-11.95369, -40.45085, -26.848427), (-11.95369, -40.45085, -26.848427), (-12.798383, -38.8573, -28.74564), (-11.276413, -38.8573, -29.37606), (-10.532169, -40.45085, -27.43724), (-10.532169, -40.45085, -27.43724), (-11.276413, -38.8573, -29.37606), (-9.723535, -38.8573, -29.925962), (-9.081781, -40.45085, -27.95085), (-9.081781, -40.45085, -27.95085), (-9.723535, -38.8573, -29.925962), (-8.144005, -38.8573, -30.39384), (-7.606501, -40.45085, -28.387848), (-7.606501, -40.45085, -28.387848), (-8.144005, -38.8573, -30.39384), (-6.5421534, -38.8573, -30.778412), (-6.110371, -40.45085, -28.747036), (-6.110371, -40.45085, -28.747036), (-6.5421534, -38.8573, -30.778412), (-4.92237, -38.8573, -31.07862), (-4.5974936, -40.45085, -29.027431), (-4.5974936, -40.45085, -29.027431), (-4.92237, -38.8573, -31.07862), (-3.2890947, -38.8573, -31.293646), (-3.0720146, -40.45085, -29.228266), (-3.0720146, -40.45085, -29.228266), (-3.2890947, -38.8573, -31.293646), (-1.6468042, -38.8573, -31.422897), (-1.5381151, -40.45085, -29.348986), (-1.5381151, -40.45085, -29.348986), (-1.6468042, -38.8573, -31.422897), (-5.780214e-15, -38.8573, -31.466019), (-5.39872e-15, -40.45085, -29.389263), (-5.39872e-15, -40.45085, -29.389263), (-5.780214e-15, -38.8573, -31.466019), (1.6468042, -38.8573, -31.422897), (1.5381151, -40.45085, -29.348986), (1.5381151, -40.45085, -29.348986), (1.6468042, -38.8573, -31.422897), (3.2890947, -38.8573, -31.293646), (3.0720146, -40.45085, -29.228266), (3.0720146, -40.45085, -29.228266), (3.2890947, -38.8573, -31.293646), (4.92237, -38.8573, -31.07862), (4.5974936, -40.45085, -29.027431), (4.5974936, -40.45085, -29.027431), (4.92237, -38.8573, -31.07862), (6.5421534, -38.8573, -30.778412), (6.110371, -40.45085, -28.747036), (6.110371, -40.45085, -28.747036), (6.5421534, -38.8573, -30.778412), (8.144005, -38.8573, -30.39384), (7.606501, -40.45085, -28.387848), (7.606501, -40.45085, -28.387848), (8.144005, -38.8573, -30.39384), (9.723535, -38.8573, -29.925962), (9.081781, -40.45085, -27.95085), (9.081781, -40.45085, -27.95085), (9.723535, -38.8573, -29.925962), (11.276413, -38.8573, -29.37606), (10.532169, -40.45085, -27.43724), (10.532169, -40.45085, -27.43724), (11.276413, -38.8573, -29.37606), (12.798383, -38.8573, -28.74564), (11.95369, -40.45085, -26.848427), (11.95369, -40.45085, -26.848427), (12.798383, -38.8573, -28.74564), (14.285274, -38.8573, -28.036428), (13.342446, -40.45085, -26.186026), (13.342446, -40.45085, -26.186026), (14.285274, -38.8573, -28.036428), (15.733009, -38.8573, -27.250372), (14.694632, -40.45085, -25.451847), (14.694632, -40.45085, -25.451847), (15.733009, -38.8573, -27.250372), (17.137623, -38.8573, -26.389624), (16.00654, -40.45085, -24.64791), (16.00654, -40.45085, -24.64791), (17.137623, -38.8573, -26.389624), (18.495262, -38.8573, -25.456545), (17.274574, -40.45085, -23.776413), (17.274574, -40.45085, -23.776413), (18.495262, -38.8573, -25.456545), (19.802208, -38.8573, -24.45369), (18.495262, -40.45085, -22.839746), (18.495262, -40.45085, -22.839746), (19.802208, -38.8573, -24.45369), (21.054876, -38.8573, -23.38381), (19.665255, -40.45085, -21.840479), (19.665255, -40.45085, -21.840479), (21.054876, -38.8573, -23.38381), (22.249836, -38.8573, -22.249836), (20.781347, -40.45085, -20.781347), (20.781347, -40.45085, -20.781347), (22.249836, -38.8573, -22.249836), (23.38381, -38.8573, -21.054876), (21.840479, -40.45085, -19.665255), (21.840479, -40.45085, -19.665255), (23.38381, -38.8573, -21.054876), (24.45369, -38.8573, -19.802208), (22.839746, -40.45085, -18.495262), (22.839746, -40.45085, -18.495262), (24.45369, -38.8573, -19.802208), (25.456545, -38.8573, -18.495262), (23.776413, -40.45085, -17.274574), (23.776413, -40.45085, -17.274574), (25.456545, -38.8573, -18.495262), (26.389624, -38.8573, -17.137623), (24.64791, -40.45085, -16.00654), (24.64791, -40.45085, -16.00654), (26.389624, -38.8573, -17.137623), (27.250372, -38.8573, -15.733009), (25.451847, -40.45085, -14.694632), (25.451847, -40.45085, -14.694632), (27.250372, -38.8573, -15.733009), (28.036428, -38.8573, -14.285274), (26.186026, -40.45085, -13.342446), (26.186026, -40.45085, -13.342446), (28.036428, -38.8573, -14.285274), (28.74564, -38.8573, -12.798383), (26.848427, -40.45085, -11.95369), (26.848427, -40.45085, -11.95369), (28.74564, -38.8573, -12.798383), (29.37606, -38.8573, -11.276413), (27.43724, -40.45085, -10.532169), (27.43724, -40.45085, -10.532169), (29.37606, -38.8573, -11.276413), (29.925962, -38.8573, -9.723535), (27.95085, -40.45085, -9.081781), (27.95085, -40.45085, -9.081781), (29.925962, -38.8573, -9.723535), (30.39384, -38.8573, -8.144005), (28.387848, -40.45085, -7.606501), (28.387848, -40.45085, -7.606501), (30.39384, -38.8573, -8.144005), (30.778412, -38.8573, -6.5421534), (28.747036, -40.45085, -6.110371), (28.747036, -40.45085, -6.110371), (30.778412, -38.8573, -6.5421534), (31.07862, -38.8573, -4.92237), (29.027431, -40.45085, -4.5974936), (29.027431, -40.45085, -4.5974936), (31.07862, -38.8573, -4.92237), (31.293646, -38.8573, -3.2890947), (29.228266, -40.45085, -3.0720146), (29.228266, -40.45085, -3.0720146), (31.293646, -38.8573, -3.2890947), (31.422897, -38.8573, -1.6468042), (29.348986, -40.45085, -1.5381151), (29.348986, -40.45085, -1.5381151), (31.422897, -38.8573, -1.6468042), (31.466019, -38.8573, 0), (29.389263, -40.45085, 0), (31.466019, -38.8573, 0), (33.45653, -37.15724, 0), (33.41068, -37.15724, 1.7509795), (31.422897, -38.8573, 1.6468042), (31.422897, -38.8573, 1.6468042), (33.41068, -37.15724, 1.7509795), (33.27325, -37.15724, 3.4971597), (31.293646, -38.8573, 3.2890947), (31.293646, -38.8573, 3.2890947), (33.27325, -37.15724, 3.4971597), (33.044624, -37.15724, 5.2337546), (31.07862, -38.8573, 4.92237), (31.07862, -38.8573, 4.92237), (33.044624, -37.15724, 5.2337546), (32.725426, -37.15724, 6.9560037), (30.778412, -38.8573, 6.5421534), (30.778412, -38.8573, 6.5421534), (32.725426, -37.15724, 6.9560037), (32.31653, -37.15724, 8.659187), (30.39384, -38.8573, 8.144005), (30.39384, -38.8573, 8.144005), (32.31653, -37.15724, 8.659187), (31.819052, -37.15724, 10.338636), (29.925962, -38.8573, 9.723535), (29.925962, -38.8573, 9.723535), (31.819052, -37.15724, 10.338636), (31.234362, -37.15724, 11.989748), (29.37606, -38.8573, 11.276413), (29.37606, -38.8573, 11.276413), (31.234362, -37.15724, 11.989748), (30.564062, -37.15724, 13.607997), (28.74564, -38.8573, 12.798383), (28.74564, -38.8573, 12.798383), (30.564062, -37.15724, 13.607997), (29.809986, -37.15724, 15.188947), (28.036428, -38.8573, 14.285274), (28.036428, -38.8573, 14.285274), (29.809986, -37.15724, 15.188947), (28.974205, -37.15724, 16.728266), (27.250372, -38.8573, 15.733009), (27.250372, -38.8573, 15.733009), (28.974205, -37.15724, 16.728266), (28.059008, -37.15724, 18.221733), (26.389624, -38.8573, 17.137623), (26.389624, -38.8573, 17.137623), (28.059008, -37.15724, 18.221733), (27.066902, -37.15724, 19.665255), (25.456545, -38.8573, 18.495262), (25.456545, -38.8573, 18.495262), (27.066902, -37.15724, 19.665255), (26.000607, -37.15724, 21.054876), (24.45369, -38.8573, 19.802208), (24.45369, -38.8573, 19.802208), (26.000607, -37.15724, 21.054876), (24.863047, -37.15724, 22.38679), (23.38381, -38.8573, 21.054876), (23.38381, -38.8573, 21.054876), (24.863047, -37.15724, 22.38679), (23.65734, -37.15724, 23.65734), (22.249836, -38.8573, 22.249836), (22.249836, -38.8573, 22.249836), (23.65734, -37.15724, 23.65734), (22.38679, -37.15724, 24.863047), (21.054876, -38.8573, 23.38381), (21.054876, -38.8573, 23.38381), (22.38679, -37.15724, 24.863047), (21.054876, -37.15724, 26.000607), (19.802208, -38.8573, 24.45369), (19.802208, -38.8573, 24.45369), (21.054876, -37.15724, 26.000607), (19.665255, -37.15724, 27.066902), (18.495262, -38.8573, 25.456545), (18.495262, -38.8573, 25.456545), (19.665255, -37.15724, 27.066902), (18.221733, -37.15724, 28.059008), (17.137623, -38.8573, 26.389624), (17.137623, -38.8573, 26.389624), (18.221733, -37.15724, 28.059008), (16.728266, -37.15724, 28.974205), (15.733009, -38.8573, 27.250372), (15.733009, -38.8573, 27.250372), (16.728266, -37.15724, 28.974205), (15.188947, -37.15724, 29.809986), (14.285274, -38.8573, 28.036428), (14.285274, -38.8573, 28.036428), (15.188947, -37.15724, 29.809986), (13.607997, -37.15724, 30.564062), (12.798383, -38.8573, 28.74564), (12.798383, -38.8573, 28.74564), (13.607997, -37.15724, 30.564062), (11.989748, -37.15724, 31.234362), (11.276413, -38.8573, 29.37606), (11.276413, -38.8573, 29.37606), (11.989748, -37.15724, 31.234362), (10.338636, -37.15724, 31.819052), (9.723535, -38.8573, 29.925962), (9.723535, -38.8573, 29.925962), (10.338636, -37.15724, 31.819052), (8.659187, -37.15724, 32.31653), (8.144005, -38.8573, 30.39384), (8.144005, -38.8573, 30.39384), (8.659187, -37.15724, 32.31653), (6.9560037, -37.15724, 32.725426), (6.5421534, -38.8573, 30.778412), (6.5421534, -38.8573, 30.778412), (6.9560037, -37.15724, 32.725426), (5.2337546, -37.15724, 33.044624), (4.92237, -38.8573, 31.07862), (4.92237, -38.8573, 31.07862), (5.2337546, -37.15724, 33.044624), (3.4971597, -37.15724, 33.27325), (3.2890947, -38.8573, 31.293646), (3.2890947, -38.8573, 31.293646), (3.4971597, -37.15724, 33.27325), (1.7509795, -37.15724, 33.41068), (1.6468042, -38.8573, 31.422897), (1.6468042, -38.8573, 31.422897), (1.7509795, -37.15724, 33.41068), (2.0486216e-15, -37.15724, 33.45653), (1.926738e-15, -38.8573, 31.466019), (1.926738e-15, -38.8573, 31.466019), (2.0486216e-15, -37.15724, 33.45653), (-1.7509795, -37.15724, 33.41068), (-1.6468042, -38.8573, 31.422897), (-1.6468042, -38.8573, 31.422897), (-1.7509795, -37.15724, 33.41068), (-3.4971597, -37.15724, 33.27325), (-3.2890947, -38.8573, 31.293646), (-3.2890947, -38.8573, 31.293646), (-3.4971597, -37.15724, 33.27325), (-5.2337546, -37.15724, 33.044624), (-4.92237, -38.8573, 31.07862), (-4.92237, -38.8573, 31.07862), (-5.2337546, -37.15724, 33.044624), (-6.9560037, -37.15724, 32.725426), (-6.5421534, -38.8573, 30.778412), (-6.5421534, -38.8573, 30.778412), (-6.9560037, -37.15724, 32.725426), (-8.659187, -37.15724, 32.31653), (-8.144005, -38.8573, 30.39384), (-8.144005, -38.8573, 30.39384), (-8.659187, -37.15724, 32.31653), (-10.338636, -37.15724, 31.819052), (-9.723535, -38.8573, 29.925962), (-9.723535, -38.8573, 29.925962), (-10.338636, -37.15724, 31.819052), (-11.989748, -37.15724, 31.234362), (-11.276413, -38.8573, 29.37606), (-11.276413, -38.8573, 29.37606), (-11.989748, -37.15724, 31.234362), (-13.607997, -37.15724, 30.564062), (-12.798383, -38.8573, 28.74564), (-12.798383, -38.8573, 28.74564), (-13.607997, -37.15724, 30.564062), (-15.188947, -37.15724, 29.809986), (-14.285274, -38.8573, 28.036428), (-14.285274, -38.8573, 28.036428), (-15.188947, -37.15724, 29.809986), (-16.728266, -37.15724, 28.974205), (-15.733009, -38.8573, 27.250372), (-15.733009, -38.8573, 27.250372), (-16.728266, -37.15724, 28.974205), (-18.221733, -37.15724, 28.059008), (-17.137623, -38.8573, 26.389624), (-17.137623, -38.8573, 26.389624), (-18.221733, -37.15724, 28.059008), (-19.665255, -37.15724, 27.066902), (-18.495262, -38.8573, 25.456545), (-18.495262, -38.8573, 25.456545), (-19.665255, -37.15724, 27.066902), (-21.054876, -37.15724, 26.000607), (-19.802208, -38.8573, 24.45369), (-19.802208, -38.8573, 24.45369), (-21.054876, -37.15724, 26.000607), (-22.38679, -37.15724, 24.863047), (-21.054876, -38.8573, 23.38381), (-21.054876, -38.8573, 23.38381), (-22.38679, -37.15724, 24.863047), (-23.65734, -37.15724, 23.65734), (-22.249836, -38.8573, 22.249836), (-22.249836, -38.8573, 22.249836), (-23.65734, -37.15724, 23.65734), (-24.863047, -37.15724, 22.38679), (-23.38381, -38.8573, 21.054876), (-23.38381, -38.8573, 21.054876), (-24.863047, -37.15724, 22.38679), (-26.000607, -37.15724, 21.054876), (-24.45369, -38.8573, 19.802208), (-24.45369, -38.8573, 19.802208), (-26.000607, -37.15724, 21.054876), (-27.066902, -37.15724, 19.665255), (-25.456545, -38.8573, 18.495262), (-25.456545, -38.8573, 18.495262), (-27.066902, -37.15724, 19.665255), (-28.059008, -37.15724, 18.221733), (-26.389624, -38.8573, 17.137623), (-26.389624, -38.8573, 17.137623), (-28.059008, -37.15724, 18.221733), (-28.974205, -37.15724, 16.728266), (-27.250372, -38.8573, 15.733009), (-27.250372, -38.8573, 15.733009), (-28.974205, -37.15724, 16.728266), (-29.809986, -37.15724, 15.188947), (-28.036428, -38.8573, 14.285274), (-28.036428, -38.8573, 14.285274), (-29.809986, -37.15724, 15.188947), (-30.564062, -37.15724, 13.607997), (-28.74564, -38.8573, 12.798383), (-28.74564, -38.8573, 12.798383), (-30.564062, -37.15724, 13.607997), (-31.234362, -37.15724, 11.989748), (-29.37606, -38.8573, 11.276413), (-29.37606, -38.8573, 11.276413), (-31.234362, -37.15724, 11.989748), (-31.819052, -37.15724, 10.338636), (-29.925962, -38.8573, 9.723535), (-29.925962, -38.8573, 9.723535), (-31.819052, -37.15724, 10.338636), (-32.31653, -37.15724, 8.659187), (-30.39384, -38.8573, 8.144005), (-30.39384, -38.8573, 8.144005), (-32.31653, -37.15724, 8.659187), (-32.725426, -37.15724, 6.9560037), (-30.778412, -38.8573, 6.5421534), (-30.778412, -38.8573, 6.5421534), (-32.725426, -37.15724, 6.9560037), (-33.044624, -37.15724, 5.2337546), (-31.07862, -38.8573, 4.92237), (-31.07862, -38.8573, 4.92237), (-33.044624, -37.15724, 5.2337546), (-33.27325, -37.15724, 3.4971597), (-31.293646, -38.8573, 3.2890947), (-31.293646, -38.8573, 3.2890947), (-33.27325, -37.15724, 3.4971597), (-33.41068, -37.15724, 1.7509795), (-31.422897, -38.8573, 1.6468042), (-31.422897, -38.8573, 1.6468042), (-33.41068, -37.15724, 1.7509795), (-33.45653, -37.15724, 4.097243e-15), (-31.466019, -38.8573, 3.853476e-15), (-31.466019, -38.8573, 3.853476e-15), (-33.45653, -37.15724, 4.097243e-15), (-33.41068, -37.15724, -1.7509795), (-31.422897, -38.8573, -1.6468042), (-31.422897, -38.8573, -1.6468042), (-33.41068, -37.15724, -1.7509795), (-33.27325, -37.15724, -3.4971597), (-31.293646, -38.8573, -3.2890947), (-31.293646, -38.8573, -3.2890947), (-33.27325, -37.15724, -3.4971597), (-33.044624, -37.15724, -5.2337546), (-31.07862, -38.8573, -4.92237), (-31.07862, -38.8573, -4.92237), (-33.044624, -37.15724, -5.2337546), (-32.725426, -37.15724, -6.9560037), (-30.778412, -38.8573, -6.5421534), (-30.778412, -38.8573, -6.5421534), (-32.725426, -37.15724, -6.9560037), (-32.31653, -37.15724, -8.659187), (-30.39384, -38.8573, -8.144005), (-30.39384, -38.8573, -8.144005), (-32.31653, -37.15724, -8.659187), (-31.819052, -37.15724, -10.338636), (-29.925962, -38.8573, -9.723535), (-29.925962, -38.8573, -9.723535), (-31.819052, -37.15724, -10.338636), (-31.234362, -37.15724, -11.989748), (-29.37606, -38.8573, -11.276413), (-29.37606, -38.8573, -11.276413), (-31.234362, -37.15724, -11.989748), (-30.564062, -37.15724, -13.607997), (-28.74564, -38.8573, -12.798383), (-28.74564, -38.8573, -12.798383), (-30.564062, -37.15724, -13.607997), (-29.809986, -37.15724, -15.188947), (-28.036428, -38.8573, -14.285274), (-28.036428, -38.8573, -14.285274), (-29.809986, -37.15724, -15.188947), (-28.974205, -37.15724, -16.728266), (-27.250372, -38.8573, -15.733009), (-27.250372, -38.8573, -15.733009), (-28.974205, -37.15724, -16.728266), (-28.059008, -37.15724, -18.221733), (-26.389624, -38.8573, -17.137623), (-26.389624, -38.8573, -17.137623), (-28.059008, -37.15724, -18.221733), (-27.066902, -37.15724, -19.665255), (-25.456545, -38.8573, -18.495262), (-25.456545, -38.8573, -18.495262), (-27.066902, -37.15724, -19.665255), (-26.000607, -37.15724, -21.054876), (-24.45369, -38.8573, -19.802208), (-24.45369, -38.8573, -19.802208), (-26.000607, -37.15724, -21.054876), (-24.863047, -37.15724, -22.38679), (-23.38381, -38.8573, -21.054876), (-23.38381, -38.8573, -21.054876), (-24.863047, -37.15724, -22.38679), (-23.65734, -37.15724, -23.65734), (-22.249836, -38.8573, -22.249836), (-22.249836, -38.8573, -22.249836), (-23.65734, -37.15724, -23.65734), (-22.38679, -37.15724, -24.863047), (-21.054876, -38.8573, -23.38381), (-21.054876, -38.8573, -23.38381), (-22.38679, -37.15724, -24.863047), (-21.054876, -37.15724, -26.000607), (-19.802208, -38.8573, -24.45369), (-19.802208, -38.8573, -24.45369), (-21.054876, -37.15724, -26.000607), (-19.665255, -37.15724, -27.066902), (-18.495262, -38.8573, -25.456545), (-18.495262, -38.8573, -25.456545), (-19.665255, -37.15724, -27.066902), (-18.221733, -37.15724, -28.059008), (-17.137623, -38.8573, -26.389624), (-17.137623, -38.8573, -26.389624), (-18.221733, -37.15724, -28.059008), (-16.728266, -37.15724, -28.974205), (-15.733009, -38.8573, -27.250372), (-15.733009, -38.8573, -27.250372), (-16.728266, -37.15724, -28.974205), (-15.188947, -37.15724, -29.809986), (-14.285274, -38.8573, -28.036428), (-14.285274, -38.8573, -28.036428), (-15.188947, -37.15724, -29.809986), (-13.607997, -37.15724, -30.564062), (-12.798383, -38.8573, -28.74564), (-12.798383, -38.8573, -28.74564), (-13.607997, -37.15724, -30.564062), (-11.989748, -37.15724, -31.234362), (-11.276413, -38.8573, -29.37606), (-11.276413, -38.8573, -29.37606), (-11.989748, -37.15724, -31.234362), (-10.338636, -37.15724, -31.819052), (-9.723535, -38.8573, -29.925962), (-9.723535, -38.8573, -29.925962), (-10.338636, -37.15724, -31.819052), (-8.659187, -37.15724, -32.31653), (-8.144005, -38.8573, -30.39384), (-8.144005, -38.8573, -30.39384), (-8.659187, -37.15724, -32.31653), (-6.9560037, -37.15724, -32.725426), (-6.5421534, -38.8573, -30.778412), (-6.5421534, -38.8573, -30.778412), (-6.9560037, -37.15724, -32.725426), (-5.2337546, -37.15724, -33.044624), (-4.92237, -38.8573, -31.07862), (-4.92237, -38.8573, -31.07862), (-5.2337546, -37.15724, -33.044624), (-3.4971597, -37.15724, -33.27325), (-3.2890947, -38.8573, -31.293646), (-3.2890947, -38.8573, -31.293646), (-3.4971597, -37.15724, -33.27325), (-1.7509795, -37.15724, -33.41068), (-1.6468042, -38.8573, -31.422897), (-1.6468042, -38.8573, -31.422897), (-1.7509795, -37.15724, -33.41068), (-6.145865e-15, -37.15724, -33.45653), (-5.780214e-15, -38.8573, -31.466019), (-5.780214e-15, -38.8573, -31.466019), (-6.145865e-15, -37.15724, -33.45653), (1.7509795, -37.15724, -33.41068), (1.6468042, -38.8573, -31.422897), (1.6468042, -38.8573, -31.422897), (1.7509795, -37.15724, -33.41068), (3.4971597, -37.15724, -33.27325), (3.2890947, -38.8573, -31.293646), (3.2890947, -38.8573, -31.293646), (3.4971597, -37.15724, -33.27325), (5.2337546, -37.15724, -33.044624), (4.92237, -38.8573, -31.07862), (4.92237, -38.8573, -31.07862), (5.2337546, -37.15724, -33.044624), (6.9560037, -37.15724, -32.725426), (6.5421534, -38.8573, -30.778412), (6.5421534, -38.8573, -30.778412), (6.9560037, -37.15724, -32.725426), (8.659187, -37.15724, -32.31653), (8.144005, -38.8573, -30.39384), (8.144005, -38.8573, -30.39384), (8.659187, -37.15724, -32.31653), (10.338636, -37.15724, -31.819052), (9.723535, -38.8573, -29.925962), (9.723535, -38.8573, -29.925962), (10.338636, -37.15724, -31.819052), (11.989748, -37.15724, -31.234362), (11.276413, -38.8573, -29.37606), (11.276413, -38.8573, -29.37606), (11.989748, -37.15724, -31.234362), (13.607997, -37.15724, -30.564062), (12.798383, -38.8573, -28.74564), (12.798383, -38.8573, -28.74564), (13.607997, -37.15724, -30.564062), (15.188947, -37.15724, -29.809986), (14.285274, -38.8573, -28.036428), (14.285274, -38.8573, -28.036428), (15.188947, -37.15724, -29.809986), (16.728266, -37.15724, -28.974205), (15.733009, -38.8573, -27.250372), (15.733009, -38.8573, -27.250372), (16.728266, -37.15724, -28.974205), (18.221733, -37.15724, -28.059008), (17.137623, -38.8573, -26.389624), (17.137623, -38.8573, -26.389624), (18.221733, -37.15724, -28.059008), (19.665255, -37.15724, -27.066902), (18.495262, -38.8573, -25.456545), (18.495262, -38.8573, -25.456545), (19.665255, -37.15724, -27.066902), (21.054876, -37.15724, -26.000607), (19.802208, -38.8573, -24.45369), (19.802208, -38.8573, -24.45369), (21.054876, -37.15724, -26.000607), (22.38679, -37.15724, -24.863047), (21.054876, -38.8573, -23.38381), (21.054876, -38.8573, -23.38381), (22.38679, -37.15724, -24.863047), (23.65734, -37.15724, -23.65734), (22.249836, -38.8573, -22.249836), (22.249836, -38.8573, -22.249836), (23.65734, -37.15724, -23.65734), (24.863047, -37.15724, -22.38679), (23.38381, -38.8573, -21.054876), (23.38381, -38.8573, -21.054876), (24.863047, -37.15724, -22.38679), (26.000607, -37.15724, -21.054876), (24.45369, -38.8573, -19.802208), (24.45369, -38.8573, -19.802208), (26.000607, -37.15724, -21.054876), (27.066902, -37.15724, -19.665255), (25.456545, -38.8573, -18.495262), (25.456545, -38.8573, -18.495262), (27.066902, -37.15724, -19.665255), (28.059008, -37.15724, -18.221733), (26.389624, -38.8573, -17.137623), (26.389624, -38.8573, -17.137623), (28.059008, -37.15724, -18.221733), (28.974205, -37.15724, -16.728266), (27.250372, -38.8573, -15.733009), (27.250372, -38.8573, -15.733009), (28.974205, -37.15724, -16.728266), (29.809986, -37.15724, -15.188947), (28.036428, -38.8573, -14.285274), (28.036428, -38.8573, -14.285274), (29.809986, -37.15724, -15.188947), (30.564062, -37.15724, -13.607997), (28.74564, -38.8573, -12.798383), (28.74564, -38.8573, -12.798383), (30.564062, -37.15724, -13.607997), (31.234362, -37.15724, -11.989748), (29.37606, -38.8573, -11.276413), (29.37606, -38.8573, -11.276413), (31.234362, -37.15724, -11.989748), (31.819052, -37.15724, -10.338636), (29.925962, -38.8573, -9.723535), (29.925962, -38.8573, -9.723535), (31.819052, -37.15724, -10.338636), (32.31653, -37.15724, -8.659187), (30.39384, -38.8573, -8.144005), (30.39384, -38.8573, -8.144005), (32.31653, -37.15724, -8.659187), (32.725426, -37.15724, -6.9560037), (30.778412, -38.8573, -6.5421534), (30.778412, -38.8573, -6.5421534), (32.725426, -37.15724, -6.9560037), (33.044624, -37.15724, -5.2337546), (31.07862, -38.8573, -4.92237), (31.07862, -38.8573, -4.92237), (33.044624, -37.15724, -5.2337546), (33.27325, -37.15724, -3.4971597), (31.293646, -38.8573, -3.2890947), (31.293646, -38.8573, -3.2890947), (33.27325, -37.15724, -3.4971597), (33.41068, -37.15724, -1.7509795), (31.422897, -38.8573, -1.6468042), (31.422897, -38.8573, -1.6468042), (33.41068, -37.15724, -1.7509795), (33.45653, -37.15724, 0), (31.466019, -38.8573, 0), (33.45653, -37.15724, 0), (35.35534, -35.35534, 0), (35.306885, -35.35534, 1.8503555), (33.41068, -37.15724, 1.7509795), (33.41068, -37.15724, 1.7509795), (35.306885, -35.35534, 1.8503555), (35.16166, -35.35534, 3.6956394), (33.27325, -37.15724, 3.4971597), (33.27325, -37.15724, 3.4971597), (35.16166, -35.35534, 3.6956394), (34.920055, -35.35534, 5.5307937), (33.044624, -37.15724, 5.2337546), (33.044624, -37.15724, 5.2337546), (34.920055, -35.35534, 5.5307937), (34.58274, -35.35534, 7.350788), (32.725426, -37.15724, 6.9560037), (32.725426, -37.15724, 6.9560037), (34.58274, -35.35534, 7.350788), (34.150635, -35.35534, 9.150635), (32.31653, -37.15724, 8.659187), (32.31653, -37.15724, 8.659187), (34.150635, -35.35534, 9.150635), (33.624924, -35.35534, 10.925401), (31.819052, -37.15724, 10.338636), (31.819052, -37.15724, 10.338636), (33.624924, -35.35534, 10.925401), (33.007053, -35.35534, 12.67022), (31.234362, -37.15724, 11.989748), (31.234362, -37.15724, 11.989748), (33.007053, -35.35534, 12.67022), (32.29871, -35.35534, 14.380312), (30.564062, -37.15724, 13.607997), (30.564062, -37.15724, 13.607997), (32.29871, -35.35534, 14.380312), (31.501839, -35.35534, 16.050987), (29.809986, -37.15724, 15.188947), (29.809986, -37.15724, 15.188947), (31.501839, -35.35534, 16.050987), (30.618622, -35.35534, 17.67767), (28.974205, -37.15724, 16.728266), (28.974205, -37.15724, 16.728266), (30.618622, -35.35534, 17.67767), (29.651482, -35.35534, 19.255898), (28.059008, -37.15724, 18.221733), (28.059008, -37.15724, 18.221733), (29.651482, -35.35534, 19.255898), (28.60307, -35.35534, 20.781347), (27.066902, -37.15724, 19.665255), (27.066902, -37.15724, 19.665255), (28.60307, -35.35534, 20.781347), (27.47626, -35.35534, 22.249836), (26.000607, -37.15724, 21.054876), (26.000607, -37.15724, 21.054876), (27.47626, -35.35534, 22.249836), (26.274137, -35.35534, 23.65734), (24.863047, -37.15724, 22.38679), (24.863047, -37.15724, 22.38679), (26.274137, -35.35534, 23.65734), (25, -35.35534, 25), (23.65734, -37.15724, 23.65734), (23.65734, -37.15724, 23.65734), (25, -35.35534, 25), (23.65734, -35.35534, 26.274137), (22.38679, -37.15724, 24.863047), (22.38679, -37.15724, 24.863047), (23.65734, -35.35534, 26.274137), (22.249836, -35.35534, 27.47626), (21.054876, -37.15724, 26.000607), (21.054876, -37.15724, 26.000607), (22.249836, -35.35534, 27.47626), (20.781347, -35.35534, 28.60307), (19.665255, -37.15724, 27.066902), (19.665255, -37.15724, 27.066902), (20.781347, -35.35534, 28.60307), (19.255898, -35.35534, 29.651482), (18.221733, -37.15724, 28.059008), (18.221733, -37.15724, 28.059008), (19.255898, -35.35534, 29.651482), (17.67767, -35.35534, 30.618622), (16.728266, -37.15724, 28.974205), (16.728266, -37.15724, 28.974205), (17.67767, -35.35534, 30.618622), (16.050987, -35.35534, 31.501839), (15.188947, -37.15724, 29.809986), (15.188947, -37.15724, 29.809986), (16.050987, -35.35534, 31.501839), (14.380312, -35.35534, 32.29871), (13.607997, -37.15724, 30.564062), (13.607997, -37.15724, 30.564062), (14.380312, -35.35534, 32.29871), (12.67022, -35.35534, 33.007053), (11.989748, -37.15724, 31.234362), (11.989748, -37.15724, 31.234362), (12.67022, -35.35534, 33.007053), (10.925401, -35.35534, 33.624924), (10.338636, -37.15724, 31.819052), (10.338636, -37.15724, 31.819052), (10.925401, -35.35534, 33.624924), (9.150635, -35.35534, 34.150635), (8.659187, -37.15724, 32.31653), (8.659187, -37.15724, 32.31653), (9.150635, -35.35534, 34.150635), (7.350788, -35.35534, 34.58274), (6.9560037, -37.15724, 32.725426), (6.9560037, -37.15724, 32.725426), (7.350788, -35.35534, 34.58274), (5.5307937, -35.35534, 34.920055), (5.2337546, -37.15724, 33.044624), (5.2337546, -37.15724, 33.044624), (5.5307937, -35.35534, 34.920055), (3.6956394, -35.35534, 35.16166), (3.4971597, -37.15724, 33.27325), (3.4971597, -37.15724, 33.27325), (3.6956394, -35.35534, 35.16166), (1.8503555, -35.35534, 35.306885), (1.7509795, -37.15724, 33.41068), (1.7509795, -37.15724, 33.41068), (1.8503555, -35.35534, 35.306885), (2.1648902e-15, -35.35534, 35.35534), (2.0486216e-15, -37.15724, 33.45653), (2.0486216e-15, -37.15724, 33.45653), (2.1648902e-15, -35.35534, 35.35534), (-1.8503555, -35.35534, 35.306885), (-1.7509795, -37.15724, 33.41068), (-1.7509795, -37.15724, 33.41068), (-1.8503555, -35.35534, 35.306885), (-3.6956394, -35.35534, 35.16166), (-3.4971597, -37.15724, 33.27325), (-3.4971597, -37.15724, 33.27325), (-3.6956394, -35.35534, 35.16166), (-5.5307937, -35.35534, 34.920055), (-5.2337546, -37.15724, 33.044624), (-5.2337546, -37.15724, 33.044624), (-5.5307937, -35.35534, 34.920055), (-7.350788, -35.35534, 34.58274), (-6.9560037, -37.15724, 32.725426), (-6.9560037, -37.15724, 32.725426), (-7.350788, -35.35534, 34.58274), (-9.150635, -35.35534, 34.150635), (-8.659187, -37.15724, 32.31653), (-8.659187, -37.15724, 32.31653), (-9.150635, -35.35534, 34.150635), (-10.925401, -35.35534, 33.624924), (-10.338636, -37.15724, 31.819052), (-10.338636, -37.15724, 31.819052), (-10.925401, -35.35534, 33.624924), (-12.67022, -35.35534, 33.007053), (-11.989748, -37.15724, 31.234362), (-11.989748, -37.15724, 31.234362), (-12.67022, -35.35534, 33.007053), (-14.380312, -35.35534, 32.29871), (-13.607997, -37.15724, 30.564062), (-13.607997, -37.15724, 30.564062), (-14.380312, -35.35534, 32.29871), (-16.050987, -35.35534, 31.501839), (-15.188947, -37.15724, 29.809986), (-15.188947, -37.15724, 29.809986), (-16.050987, -35.35534, 31.501839), (-17.67767, -35.35534, 30.618622), (-16.728266, -37.15724, 28.974205), (-16.728266, -37.15724, 28.974205), (-17.67767, -35.35534, 30.618622), (-19.255898, -35.35534, 29.651482), (-18.221733, -37.15724, 28.059008), (-18.221733, -37.15724, 28.059008), (-19.255898, -35.35534, 29.651482), (-20.781347, -35.35534, 28.60307), (-19.665255, -37.15724, 27.066902), (-19.665255, -37.15724, 27.066902), (-20.781347, -35.35534, 28.60307), (-22.249836, -35.35534, 27.47626), (-21.054876, -37.15724, 26.000607), (-21.054876, -37.15724, 26.000607), (-22.249836, -35.35534, 27.47626), (-23.65734, -35.35534, 26.274137), (-22.38679, -37.15724, 24.863047), (-22.38679, -37.15724, 24.863047), (-23.65734, -35.35534, 26.274137), (-25, -35.35534, 25), (-23.65734, -37.15724, 23.65734), (-23.65734, -37.15724, 23.65734), (-25, -35.35534, 25), (-26.274137, -35.35534, 23.65734), (-24.863047, -37.15724, 22.38679), (-24.863047, -37.15724, 22.38679), (-26.274137, -35.35534, 23.65734), (-27.47626, -35.35534, 22.249836), (-26.000607, -37.15724, 21.054876), (-26.000607, -37.15724, 21.054876), (-27.47626, -35.35534, 22.249836), (-28.60307, -35.35534, 20.781347), (-27.066902, -37.15724, 19.665255), (-27.066902, -37.15724, 19.665255), (-28.60307, -35.35534, 20.781347), (-29.651482, -35.35534, 19.255898), (-28.059008, -37.15724, 18.221733), (-28.059008, -37.15724, 18.221733), (-29.651482, -35.35534, 19.255898), (-30.618622, -35.35534, 17.67767), (-28.974205, -37.15724, 16.728266), (-28.974205, -37.15724, 16.728266), (-30.618622, -35.35534, 17.67767), (-31.501839, -35.35534, 16.050987), (-29.809986, -37.15724, 15.188947), (-29.809986, -37.15724, 15.188947), (-31.501839, -35.35534, 16.050987), (-32.29871, -35.35534, 14.380312), (-30.564062, -37.15724, 13.607997), (-30.564062, -37.15724, 13.607997), (-32.29871, -35.35534, 14.380312), (-33.007053, -35.35534, 12.67022), (-31.234362, -37.15724, 11.989748), (-31.234362, -37.15724, 11.989748), (-33.007053, -35.35534, 12.67022), (-33.624924, -35.35534, 10.925401), (-31.819052, -37.15724, 10.338636), (-31.819052, -37.15724, 10.338636), (-33.624924, -35.35534, 10.925401), (-34.150635, -35.35534, 9.150635), (-32.31653, -37.15724, 8.659187), (-32.31653, -37.15724, 8.659187), (-34.150635, -35.35534, 9.150635), (-34.58274, -35.35534, 7.350788), (-32.725426, -37.15724, 6.9560037), (-32.725426, -37.15724, 6.9560037), (-34.58274, -35.35534, 7.350788), (-34.920055, -35.35534, 5.5307937), (-33.044624, -37.15724, 5.2337546), (-33.044624, -37.15724, 5.2337546), (-34.920055, -35.35534, 5.5307937), (-35.16166, -35.35534, 3.6956394), (-33.27325, -37.15724, 3.4971597), (-33.27325, -37.15724, 3.4971597), (-35.16166, -35.35534, 3.6956394), (-35.306885, -35.35534, 1.8503555), (-33.41068, -37.15724, 1.7509795), (-33.41068, -37.15724, 1.7509795), (-35.306885, -35.35534, 1.8503555), (-35.35534, -35.35534, 4.3297804e-15), (-33.45653, -37.15724, 4.097243e-15), (-33.45653, -37.15724, 4.097243e-15), (-35.35534, -35.35534, 4.3297804e-15), (-35.306885, -35.35534, -1.8503555), (-33.41068, -37.15724, -1.7509795), (-33.41068, -37.15724, -1.7509795), (-35.306885, -35.35534, -1.8503555), (-35.16166, -35.35534, -3.6956394), (-33.27325, -37.15724, -3.4971597), (-33.27325, -37.15724, -3.4971597), (-35.16166, -35.35534, -3.6956394), (-34.920055, -35.35534, -5.5307937), (-33.044624, -37.15724, -5.2337546), (-33.044624, -37.15724, -5.2337546), (-34.920055, -35.35534, -5.5307937), (-34.58274, -35.35534, -7.350788), (-32.725426, -37.15724, -6.9560037), (-32.725426, -37.15724, -6.9560037), (-34.58274, -35.35534, -7.350788), (-34.150635, -35.35534, -9.150635), (-32.31653, -37.15724, -8.659187), (-32.31653, -37.15724, -8.659187), (-34.150635, -35.35534, -9.150635), (-33.624924, -35.35534, -10.925401), (-31.819052, -37.15724, -10.338636), (-31.819052, -37.15724, -10.338636), (-33.624924, -35.35534, -10.925401), (-33.007053, -35.35534, -12.67022), (-31.234362, -37.15724, -11.989748), (-31.234362, -37.15724, -11.989748), (-33.007053, -35.35534, -12.67022), (-32.29871, -35.35534, -14.380312), (-30.564062, -37.15724, -13.607997), (-30.564062, -37.15724, -13.607997), (-32.29871, -35.35534, -14.380312), (-31.501839, -35.35534, -16.050987), (-29.809986, -37.15724, -15.188947), (-29.809986, -37.15724, -15.188947), (-31.501839, -35.35534, -16.050987), (-30.618622, -35.35534, -17.67767), (-28.974205, -37.15724, -16.728266), (-28.974205, -37.15724, -16.728266), (-30.618622, -35.35534, -17.67767), (-29.651482, -35.35534, -19.255898), (-28.059008, -37.15724, -18.221733), (-28.059008, -37.15724, -18.221733), (-29.651482, -35.35534, -19.255898), (-28.60307, -35.35534, -20.781347), (-27.066902, -37.15724, -19.665255), (-27.066902, -37.15724, -19.665255), (-28.60307, -35.35534, -20.781347), (-27.47626, -35.35534, -22.249836), (-26.000607, -37.15724, -21.054876), (-26.000607, -37.15724, -21.054876), (-27.47626, -35.35534, -22.249836), (-26.274137, -35.35534, -23.65734), (-24.863047, -37.15724, -22.38679), (-24.863047, -37.15724, -22.38679), (-26.274137, -35.35534, -23.65734), (-25, -35.35534, -25), (-23.65734, -37.15724, -23.65734), (-23.65734, -37.15724, -23.65734), (-25, -35.35534, -25), (-23.65734, -35.35534, -26.274137), (-22.38679, -37.15724, -24.863047), (-22.38679, -37.15724, -24.863047), (-23.65734, -35.35534, -26.274137), (-22.249836, -35.35534, -27.47626), (-21.054876, -37.15724, -26.000607), (-21.054876, -37.15724, -26.000607), (-22.249836, -35.35534, -27.47626), (-20.781347, -35.35534, -28.60307), (-19.665255, -37.15724, -27.066902), (-19.665255, -37.15724, -27.066902), (-20.781347, -35.35534, -28.60307), (-19.255898, -35.35534, -29.651482), (-18.221733, -37.15724, -28.059008), (-18.221733, -37.15724, -28.059008), (-19.255898, -35.35534, -29.651482), (-17.67767, -35.35534, -30.618622), (-16.728266, -37.15724, -28.974205), (-16.728266, -37.15724, -28.974205), (-17.67767, -35.35534, -30.618622), (-16.050987, -35.35534, -31.501839), (-15.188947, -37.15724, -29.809986), (-15.188947, -37.15724, -29.809986), (-16.050987, -35.35534, -31.501839), (-14.380312, -35.35534, -32.29871), (-13.607997, -37.15724, -30.564062), (-13.607997, -37.15724, -30.564062), (-14.380312, -35.35534, -32.29871), (-12.67022, -35.35534, -33.007053), (-11.989748, -37.15724, -31.234362), (-11.989748, -37.15724, -31.234362), (-12.67022, -35.35534, -33.007053), (-10.925401, -35.35534, -33.624924), (-10.338636, -37.15724, -31.819052), (-10.338636, -37.15724, -31.819052), (-10.925401, -35.35534, -33.624924), (-9.150635, -35.35534, -34.150635), (-8.659187, -37.15724, -32.31653), (-8.659187, -37.15724, -32.31653), (-9.150635, -35.35534, -34.150635), (-7.350788, -35.35534, -34.58274), (-6.9560037, -37.15724, -32.725426), (-6.9560037, -37.15724, -32.725426), (-7.350788, -35.35534, -34.58274), (-5.5307937, -35.35534, -34.920055), (-5.2337546, -37.15724, -33.044624), (-5.2337546, -37.15724, -33.044624), (-5.5307937, -35.35534, -34.920055), (-3.6956394, -35.35534, -35.16166), (-3.4971597, -37.15724, -33.27325), (-3.4971597, -37.15724, -33.27325), (-3.6956394, -35.35534, -35.16166), (-1.8503555, -35.35534, -35.306885), (-1.7509795, -37.15724, -33.41068), (-1.7509795, -37.15724, -33.41068), (-1.8503555, -35.35534, -35.306885), (-6.4946704e-15, -35.35534, -35.35534), (-6.145865e-15, -37.15724, -33.45653), (-6.145865e-15, -37.15724, -33.45653), (-6.4946704e-15, -35.35534, -35.35534), (1.8503555, -35.35534, -35.306885), (1.7509795, -37.15724, -33.41068), (1.7509795, -37.15724, -33.41068), (1.8503555, -35.35534, -35.306885), (3.6956394, -35.35534, -35.16166), (3.4971597, -37.15724, -33.27325), (3.4971597, -37.15724, -33.27325), (3.6956394, -35.35534, -35.16166), (5.5307937, -35.35534, -34.920055), (5.2337546, -37.15724, -33.044624), (5.2337546, -37.15724, -33.044624), (5.5307937, -35.35534, -34.920055), (7.350788, -35.35534, -34.58274), (6.9560037, -37.15724, -32.725426), (6.9560037, -37.15724, -32.725426), (7.350788, -35.35534, -34.58274), (9.150635, -35.35534, -34.150635), (8.659187, -37.15724, -32.31653), (8.659187, -37.15724, -32.31653), (9.150635, -35.35534, -34.150635), (10.925401, -35.35534, -33.624924), (10.338636, -37.15724, -31.819052), (10.338636, -37.15724, -31.819052), (10.925401, -35.35534, -33.624924), (12.67022, -35.35534, -33.007053), (11.989748, -37.15724, -31.234362), (11.989748, -37.15724, -31.234362), (12.67022, -35.35534, -33.007053), (14.380312, -35.35534, -32.29871), (13.607997, -37.15724, -30.564062), (13.607997, -37.15724, -30.564062), (14.380312, -35.35534, -32.29871), (16.050987, -35.35534, -31.501839), (15.188947, -37.15724, -29.809986), (15.188947, -37.15724, -29.809986), (16.050987, -35.35534, -31.501839), (17.67767, -35.35534, -30.618622), (16.728266, -37.15724, -28.974205), (16.728266, -37.15724, -28.974205), (17.67767, -35.35534, -30.618622), (19.255898, -35.35534, -29.651482), (18.221733, -37.15724, -28.059008), (18.221733, -37.15724, -28.059008), (19.255898, -35.35534, -29.651482), (20.781347, -35.35534, -28.60307), (19.665255, -37.15724, -27.066902), (19.665255, -37.15724, -27.066902), (20.781347, -35.35534, -28.60307), (22.249836, -35.35534, -27.47626), (21.054876, -37.15724, -26.000607), (21.054876, -37.15724, -26.000607), (22.249836, -35.35534, -27.47626), (23.65734, -35.35534, -26.274137), (22.38679, -37.15724, -24.863047), (22.38679, -37.15724, -24.863047), (23.65734, -35.35534, -26.274137), (25, -35.35534, -25), (23.65734, -37.15724, -23.65734), (23.65734, -37.15724, -23.65734), (25, -35.35534, -25), (26.274137, -35.35534, -23.65734), (24.863047, -37.15724, -22.38679), (24.863047, -37.15724, -22.38679), (26.274137, -35.35534, -23.65734), (27.47626, -35.35534, -22.249836), (26.000607, -37.15724, -21.054876), (26.000607, -37.15724, -21.054876), (27.47626, -35.35534, -22.249836), (28.60307, -35.35534, -20.781347), (27.066902, -37.15724, -19.665255), (27.066902, -37.15724, -19.665255), (28.60307, -35.35534, -20.781347), (29.651482, -35.35534, -19.255898), (28.059008, -37.15724, -18.221733), (28.059008, -37.15724, -18.221733), (29.651482, -35.35534, -19.255898), (30.618622, -35.35534, -17.67767), (28.974205, -37.15724, -16.728266), (28.974205, -37.15724, -16.728266), (30.618622, -35.35534, -17.67767), (31.501839, -35.35534, -16.050987), (29.809986, -37.15724, -15.188947), (29.809986, -37.15724, -15.188947), (31.501839, -35.35534, -16.050987), (32.29871, -35.35534, -14.380312), (30.564062, -37.15724, -13.607997), (30.564062, -37.15724, -13.607997), (32.29871, -35.35534, -14.380312), (33.007053, -35.35534, -12.67022), (31.234362, -37.15724, -11.989748), (31.234362, -37.15724, -11.989748), (33.007053, -35.35534, -12.67022), (33.624924, -35.35534, -10.925401), (31.819052, -37.15724, -10.338636), (31.819052, -37.15724, -10.338636), (33.624924, -35.35534, -10.925401), (34.150635, -35.35534, -9.150635), (32.31653, -37.15724, -8.659187), (32.31653, -37.15724, -8.659187), (34.150635, -35.35534, -9.150635), (34.58274, -35.35534, -7.350788), (32.725426, -37.15724, -6.9560037), (32.725426, -37.15724, -6.9560037), (34.58274, -35.35534, -7.350788), (34.920055, -35.35534, -5.5307937), (33.044624, -37.15724, -5.2337546), (33.044624, -37.15724, -5.2337546), (34.920055, -35.35534, -5.5307937), (35.16166, -35.35534, -3.6956394), (33.27325, -37.15724, -3.4971597), (33.27325, -37.15724, -3.4971597), (35.16166, -35.35534, -3.6956394), (35.306885, -35.35534, -1.8503555), (33.41068, -37.15724, -1.7509795), (33.41068, -37.15724, -1.7509795), (35.306885, -35.35534, -1.8503555), (35.35534, -35.35534, 0), (33.45653, -37.15724, 0), (35.35534, -35.35534, 0), (37.15724, -33.45653, 0), (37.10632, -33.45653, 1.9446597), (35.306885, -35.35534, 1.8503555), (35.306885, -35.35534, 1.8503555), (37.10632, -33.45653, 1.9446597), (36.95369, -33.45653, 3.8839893), (35.16166, -35.35534, 3.6956394), (35.16166, -35.35534, 3.6956394), (36.95369, -33.45653, 3.8839893), (36.699776, -33.45653, 5.812673), (34.920055, -35.35534, 5.5307937), (34.920055, -35.35534, 5.5307937), (36.699776, -33.45653, 5.812673), (36.34527, -33.45653, 7.725425), (34.58274, -35.35534, 7.350788), (34.58274, -35.35534, 7.350788), (36.34527, -33.45653, 7.725425), (35.89114, -33.45653, 9.617002), (34.150635, -35.35534, 9.150635), (34.150635, -35.35534, 9.150635), (35.89114, -33.45653, 9.617002), (35.33864, -33.45653, 11.482219), (33.624924, -35.35534, 10.925401), (33.624924, -35.35534, 10.925401), (35.33864, -33.45653, 11.482219), (34.689274, -33.45653, 13.315965), (33.007053, -35.35534, 12.67022), (33.007053, -35.35534, 12.67022), (34.689274, -33.45653, 13.315965), (33.944828, -33.45653, 15.113212), (32.29871, -35.35534, 14.380312), (32.29871, -35.35534, 14.380312), (33.944828, -33.45653, 15.113212), (33.107346, -33.45653, 16.869034), (31.501839, -35.35534, 16.050987), (31.501839, -35.35534, 16.050987), (33.107346, -33.45653, 16.869034), (32.179115, -33.45653, 18.57862), (30.618622, -35.35534, 17.67767), (30.618622, -35.35534, 17.67767), (32.179115, -33.45653, 18.57862), (31.162685, -33.45653, 20.237284), (29.651482, -35.35534, 19.255898), (29.651482, -35.35534, 19.255898), (31.162685, -33.45653, 20.237284), (30.06084, -33.45653, 21.840479), (28.60307, -35.35534, 20.781347), (28.60307, -35.35534, 20.781347), (30.06084, -33.45653, 21.840479), (28.8766, -33.45653, 23.38381), (27.47626, -35.35534, 22.249836), (27.47626, -35.35534, 22.249836), (28.8766, -33.45653, 23.38381), (27.61321, -33.45653, 24.863047), (26.274137, -35.35534, 23.65734), (26.274137, -35.35534, 23.65734), (27.61321, -33.45653, 24.863047), (26.274137, -33.45653, 26.274137), (25, -35.35534, 25), (25, -35.35534, 25), (26.274137, -33.45653, 26.274137), (24.863047, -33.45653, 27.61321), (23.65734, -35.35534, 26.274137), (23.65734, -35.35534, 26.274137), (24.863047, -33.45653, 27.61321), (23.38381, -33.45653, 28.8766), (22.249836, -35.35534, 27.47626), (22.249836, -35.35534, 27.47626), (23.38381, -33.45653, 28.8766), (21.840479, -33.45653, 30.06084), (20.781347, -35.35534, 28.60307), (20.781347, -35.35534, 28.60307), (21.840479, -33.45653, 30.06084), (20.237284, -33.45653, 31.162685), (19.255898, -35.35534, 29.651482), (19.255898, -35.35534, 29.651482), (20.237284, -33.45653, 31.162685), (18.57862, -33.45653, 32.179115), (17.67767, -35.35534, 30.618622), (17.67767, -35.35534, 30.618622), (18.57862, -33.45653, 32.179115), (16.869034, -33.45653, 33.107346), (16.050987, -35.35534, 31.501839), (16.050987, -35.35534, 31.501839), (16.869034, -33.45653, 33.107346), (15.113212, -33.45653, 33.944828), (14.380312, -35.35534, 32.29871), (14.380312, -35.35534, 32.29871), (15.113212, -33.45653, 33.944828), (13.315965, -33.45653, 34.689274), (12.67022, -35.35534, 33.007053), (12.67022, -35.35534, 33.007053), (13.315965, -33.45653, 34.689274), (11.482219, -33.45653, 35.33864), (10.925401, -35.35534, 33.624924), (10.925401, -35.35534, 33.624924), (11.482219, -33.45653, 35.33864), (9.617002, -33.45653, 35.89114), (9.150635, -35.35534, 34.150635), (9.150635, -35.35534, 34.150635), (9.617002, -33.45653, 35.89114), (7.725425, -33.45653, 36.34527), (7.350788, -35.35534, 34.58274), (7.350788, -35.35534, 34.58274), (7.725425, -33.45653, 36.34527), (5.812673, -33.45653, 36.699776), (5.5307937, -35.35534, 34.920055), (5.5307937, -35.35534, 34.920055), (5.812673, -33.45653, 36.699776), (3.8839893, -33.45653, 36.95369), (3.6956394, -35.35534, 35.16166), (3.6956394, -35.35534, 35.16166), (3.8839893, -33.45653, 36.95369), (1.9446597, -33.45653, 37.10632), (1.8503555, -35.35534, 35.306885), (1.8503555, -35.35534, 35.306885), (1.9446597, -33.45653, 37.10632), (2.2752247e-15, -33.45653, 37.15724), (2.1648902e-15, -35.35534, 35.35534), (2.1648902e-15, -35.35534, 35.35534), (2.2752247e-15, -33.45653, 37.15724), (-1.9446597, -33.45653, 37.10632), (-1.8503555, -35.35534, 35.306885), (-1.8503555, -35.35534, 35.306885), (-1.9446597, -33.45653, 37.10632), (-3.8839893, -33.45653, 36.95369), (-3.6956394, -35.35534, 35.16166), (-3.6956394, -35.35534, 35.16166), (-3.8839893, -33.45653, 36.95369), (-5.812673, -33.45653, 36.699776), (-5.5307937, -35.35534, 34.920055), (-5.5307937, -35.35534, 34.920055), (-5.812673, -33.45653, 36.699776), (-7.725425, -33.45653, 36.34527), (-7.350788, -35.35534, 34.58274), (-7.350788, -35.35534, 34.58274), (-7.725425, -33.45653, 36.34527), (-9.617002, -33.45653, 35.89114), (-9.150635, -35.35534, 34.150635), (-9.150635, -35.35534, 34.150635), (-9.617002, -33.45653, 35.89114), (-11.482219, -33.45653, 35.33864), (-10.925401, -35.35534, 33.624924), (-10.925401, -35.35534, 33.624924), (-11.482219, -33.45653, 35.33864), (-13.315965, -33.45653, 34.689274), (-12.67022, -35.35534, 33.007053), (-12.67022, -35.35534, 33.007053), (-13.315965, -33.45653, 34.689274), (-15.113212, -33.45653, 33.944828), (-14.380312, -35.35534, 32.29871), (-14.380312, -35.35534, 32.29871), (-15.113212, -33.45653, 33.944828), (-16.869034, -33.45653, 33.107346), (-16.050987, -35.35534, 31.501839), (-16.050987, -35.35534, 31.501839), (-16.869034, -33.45653, 33.107346), (-18.57862, -33.45653, 32.179115), (-17.67767, -35.35534, 30.618622), (-17.67767, -35.35534, 30.618622), (-18.57862, -33.45653, 32.179115), (-20.237284, -33.45653, 31.162685), (-19.255898, -35.35534, 29.651482), (-19.255898, -35.35534, 29.651482), (-20.237284, -33.45653, 31.162685), (-21.840479, -33.45653, 30.06084), (-20.781347, -35.35534, 28.60307), (-20.781347, -35.35534, 28.60307), (-21.840479, -33.45653, 30.06084), (-23.38381, -33.45653, 28.8766), (-22.249836, -35.35534, 27.47626), (-22.249836, -35.35534, 27.47626), (-23.38381, -33.45653, 28.8766), (-24.863047, -33.45653, 27.61321), (-23.65734, -35.35534, 26.274137), (-23.65734, -35.35534, 26.274137), (-24.863047, -33.45653, 27.61321), (-26.274137, -33.45653, 26.274137), (-25, -35.35534, 25), (-25, -35.35534, 25), (-26.274137, -33.45653, 26.274137), (-27.61321, -33.45653, 24.863047), (-26.274137, -35.35534, 23.65734), (-26.274137, -35.35534, 23.65734), (-27.61321, -33.45653, 24.863047), (-28.8766, -33.45653, 23.38381), (-27.47626, -35.35534, 22.249836), (-27.47626, -35.35534, 22.249836), (-28.8766, -33.45653, 23.38381), (-30.06084, -33.45653, 21.840479), (-28.60307, -35.35534, 20.781347), (-28.60307, -35.35534, 20.781347), (-30.06084, -33.45653, 21.840479), (-31.162685, -33.45653, 20.237284), (-29.651482, -35.35534, 19.255898), (-29.651482, -35.35534, 19.255898), (-31.162685, -33.45653, 20.237284), (-32.179115, -33.45653, 18.57862), (-30.618622, -35.35534, 17.67767), (-30.618622, -35.35534, 17.67767), (-32.179115, -33.45653, 18.57862), (-33.107346, -33.45653, 16.869034), (-31.501839, -35.35534, 16.050987), (-31.501839, -35.35534, 16.050987), (-33.107346, -33.45653, 16.869034), (-33.944828, -33.45653, 15.113212), (-32.29871, -35.35534, 14.380312), (-32.29871, -35.35534, 14.380312), (-33.944828, -33.45653, 15.113212), (-34.689274, -33.45653, 13.315965), (-33.007053, -35.35534, 12.67022), (-33.007053, -35.35534, 12.67022), (-34.689274, -33.45653, 13.315965), (-35.33864, -33.45653, 11.482219), (-33.624924, -35.35534, 10.925401), (-33.624924, -35.35534, 10.925401), (-35.33864, -33.45653, 11.482219), (-35.89114, -33.45653, 9.617002), (-34.150635, -35.35534, 9.150635), (-34.150635, -35.35534, 9.150635), (-35.89114, -33.45653, 9.617002), (-36.34527, -33.45653, 7.725425), (-34.58274, -35.35534, 7.350788), (-34.58274, -35.35534, 7.350788), (-36.34527, -33.45653, 7.725425), (-36.699776, -33.45653, 5.812673), (-34.920055, -35.35534, 5.5307937), (-34.920055, -35.35534, 5.5307937), (-36.699776, -33.45653, 5.812673), (-36.95369, -33.45653, 3.8839893), (-35.16166, -35.35534, 3.6956394), (-35.16166, -35.35534, 3.6956394), (-36.95369, -33.45653, 3.8839893), (-37.10632, -33.45653, 1.9446597), (-35.306885, -35.35534, 1.8503555), (-35.306885, -35.35534, 1.8503555), (-37.10632, -33.45653, 1.9446597), (-37.15724, -33.45653, 4.5504495e-15), (-35.35534, -35.35534, 4.3297804e-15), (-35.35534, -35.35534, 4.3297804e-15), (-37.15724, -33.45653, 4.5504495e-15), (-37.10632, -33.45653, -1.9446597), (-35.306885, -35.35534, -1.8503555), (-35.306885, -35.35534, -1.8503555), (-37.10632, -33.45653, -1.9446597), (-36.95369, -33.45653, -3.8839893), (-35.16166, -35.35534, -3.6956394), (-35.16166, -35.35534, -3.6956394), (-36.95369, -33.45653, -3.8839893), (-36.699776, -33.45653, -5.812673), (-34.920055, -35.35534, -5.5307937), (-34.920055, -35.35534, -5.5307937), (-36.699776, -33.45653, -5.812673), (-36.34527, -33.45653, -7.725425), (-34.58274, -35.35534, -7.350788), (-34.58274, -35.35534, -7.350788), (-36.34527, -33.45653, -7.725425), (-35.89114, -33.45653, -9.617002), (-34.150635, -35.35534, -9.150635), (-34.150635, -35.35534, -9.150635), (-35.89114, -33.45653, -9.617002), (-35.33864, -33.45653, -11.482219), (-33.624924, -35.35534, -10.925401), (-33.624924, -35.35534, -10.925401), (-35.33864, -33.45653, -11.482219), (-34.689274, -33.45653, -13.315965), (-33.007053, -35.35534, -12.67022), (-33.007053, -35.35534, -12.67022), (-34.689274, -33.45653, -13.315965), (-33.944828, -33.45653, -15.113212), (-32.29871, -35.35534, -14.380312), (-32.29871, -35.35534, -14.380312), (-33.944828, -33.45653, -15.113212), (-33.107346, -33.45653, -16.869034), (-31.501839, -35.35534, -16.050987), (-31.501839, -35.35534, -16.050987), (-33.107346, -33.45653, -16.869034), (-32.179115, -33.45653, -18.57862), (-30.618622, -35.35534, -17.67767), (-30.618622, -35.35534, -17.67767), (-32.179115, -33.45653, -18.57862), (-31.162685, -33.45653, -20.237284), (-29.651482, -35.35534, -19.255898), (-29.651482, -35.35534, -19.255898), (-31.162685, -33.45653, -20.237284), (-30.06084, -33.45653, -21.840479), (-28.60307, -35.35534, -20.781347), (-28.60307, -35.35534, -20.781347), (-30.06084, -33.45653, -21.840479), (-28.8766, -33.45653, -23.38381), (-27.47626, -35.35534, -22.249836), (-27.47626, -35.35534, -22.249836), (-28.8766, -33.45653, -23.38381), (-27.61321, -33.45653, -24.863047), (-26.274137, -35.35534, -23.65734), (-26.274137, -35.35534, -23.65734), (-27.61321, -33.45653, -24.863047), (-26.274137, -33.45653, -26.274137), (-25, -35.35534, -25), (-25, -35.35534, -25), (-26.274137, -33.45653, -26.274137), (-24.863047, -33.45653, -27.61321), (-23.65734, -35.35534, -26.274137), (-23.65734, -35.35534, -26.274137), (-24.863047, -33.45653, -27.61321), (-23.38381, -33.45653, -28.8766), (-22.249836, -35.35534, -27.47626), (-22.249836, -35.35534, -27.47626), (-23.38381, -33.45653, -28.8766), (-21.840479, -33.45653, -30.06084), (-20.781347, -35.35534, -28.60307), (-20.781347, -35.35534, -28.60307), (-21.840479, -33.45653, -30.06084), (-20.237284, -33.45653, -31.162685), (-19.255898, -35.35534, -29.651482), (-19.255898, -35.35534, -29.651482), (-20.237284, -33.45653, -31.162685), (-18.57862, -33.45653, -32.179115), (-17.67767, -35.35534, -30.618622), (-17.67767, -35.35534, -30.618622), (-18.57862, -33.45653, -32.179115), (-16.869034, -33.45653, -33.107346), (-16.050987, -35.35534, -31.501839), (-16.050987, -35.35534, -31.501839), (-16.869034, -33.45653, -33.107346), (-15.113212, -33.45653, -33.944828), (-14.380312, -35.35534, -32.29871), (-14.380312, -35.35534, -32.29871), (-15.113212, -33.45653, -33.944828), (-13.315965, -33.45653, -34.689274), (-12.67022, -35.35534, -33.007053), (-12.67022, -35.35534, -33.007053), (-13.315965, -33.45653, -34.689274), (-11.482219, -33.45653, -35.33864), (-10.925401, -35.35534, -33.624924), (-10.925401, -35.35534, -33.624924), (-11.482219, -33.45653, -35.33864), (-9.617002, -33.45653, -35.89114), (-9.150635, -35.35534, -34.150635), (-9.150635, -35.35534, -34.150635), (-9.617002, -33.45653, -35.89114), (-7.725425, -33.45653, -36.34527), (-7.350788, -35.35534, -34.58274), (-7.350788, -35.35534, -34.58274), (-7.725425, -33.45653, -36.34527), (-5.812673, -33.45653, -36.699776), (-5.5307937, -35.35534, -34.920055), (-5.5307937, -35.35534, -34.920055), (-5.812673, -33.45653, -36.699776), (-3.8839893, -33.45653, -36.95369), (-3.6956394, -35.35534, -35.16166), (-3.6956394, -35.35534, -35.16166), (-3.8839893, -33.45653, -36.95369), (-1.9446597, -33.45653, -37.10632), (-1.8503555, -35.35534, -35.306885), (-1.8503555, -35.35534, -35.306885), (-1.9446597, -33.45653, -37.10632), (-6.8256744e-15, -33.45653, -37.15724), (-6.4946704e-15, -35.35534, -35.35534), (-6.4946704e-15, -35.35534, -35.35534), (-6.8256744e-15, -33.45653, -37.15724), (1.9446597, -33.45653, -37.10632), (1.8503555, -35.35534, -35.306885), (1.8503555, -35.35534, -35.306885), (1.9446597, -33.45653, -37.10632), (3.8839893, -33.45653, -36.95369), (3.6956394, -35.35534, -35.16166), (3.6956394, -35.35534, -35.16166), (3.8839893, -33.45653, -36.95369), (5.812673, -33.45653, -36.699776), (5.5307937, -35.35534, -34.920055), (5.5307937, -35.35534, -34.920055), (5.812673, -33.45653, -36.699776), (7.725425, -33.45653, -36.34527), (7.350788, -35.35534, -34.58274), (7.350788, -35.35534, -34.58274), (7.725425, -33.45653, -36.34527), (9.617002, -33.45653, -35.89114), (9.150635, -35.35534, -34.150635), (9.150635, -35.35534, -34.150635), (9.617002, -33.45653, -35.89114), (11.482219, -33.45653, -35.33864), (10.925401, -35.35534, -33.624924), (10.925401, -35.35534, -33.624924), (11.482219, -33.45653, -35.33864), (13.315965, -33.45653, -34.689274), (12.67022, -35.35534, -33.007053), (12.67022, -35.35534, -33.007053), (13.315965, -33.45653, -34.689274), (15.113212, -33.45653, -33.944828), (14.380312, -35.35534, -32.29871), (14.380312, -35.35534, -32.29871), (15.113212, -33.45653, -33.944828), (16.869034, -33.45653, -33.107346), (16.050987, -35.35534, -31.501839), (16.050987, -35.35534, -31.501839), (16.869034, -33.45653, -33.107346), (18.57862, -33.45653, -32.179115), (17.67767, -35.35534, -30.618622), (17.67767, -35.35534, -30.618622), (18.57862, -33.45653, -32.179115), (20.237284, -33.45653, -31.162685), (19.255898, -35.35534, -29.651482), (19.255898, -35.35534, -29.651482), (20.237284, -33.45653, -31.162685), (21.840479, -33.45653, -30.06084), (20.781347, -35.35534, -28.60307), (20.781347, -35.35534, -28.60307), (21.840479, -33.45653, -30.06084), (23.38381, -33.45653, -28.8766), (22.249836, -35.35534, -27.47626), (22.249836, -35.35534, -27.47626), (23.38381, -33.45653, -28.8766), (24.863047, -33.45653, -27.61321), (23.65734, -35.35534, -26.274137), (23.65734, -35.35534, -26.274137), (24.863047, -33.45653, -27.61321), (26.274137, -33.45653, -26.274137), (25, -35.35534, -25), (25, -35.35534, -25), (26.274137, -33.45653, -26.274137), (27.61321, -33.45653, -24.863047), (26.274137, -35.35534, -23.65734), (26.274137, -35.35534, -23.65734), (27.61321, -33.45653, -24.863047), (28.8766, -33.45653, -23.38381), (27.47626, -35.35534, -22.249836), (27.47626, -35.35534, -22.249836), (28.8766, -33.45653, -23.38381), (30.06084, -33.45653, -21.840479), (28.60307, -35.35534, -20.781347), (28.60307, -35.35534, -20.781347), (30.06084, -33.45653, -21.840479), (31.162685, -33.45653, -20.237284), (29.651482, -35.35534, -19.255898), (29.651482, -35.35534, -19.255898), (31.162685, -33.45653, -20.237284), (32.179115, -33.45653, -18.57862), (30.618622, -35.35534, -17.67767), (30.618622, -35.35534, -17.67767), (32.179115, -33.45653, -18.57862), (33.107346, -33.45653, -16.869034), (31.501839, -35.35534, -16.050987), (31.501839, -35.35534, -16.050987), (33.107346, -33.45653, -16.869034), (33.944828, -33.45653, -15.113212), (32.29871, -35.35534, -14.380312), (32.29871, -35.35534, -14.380312), (33.944828, -33.45653, -15.113212), (34.689274, -33.45653, -13.315965), (33.007053, -35.35534, -12.67022), (33.007053, -35.35534, -12.67022), (34.689274, -33.45653, -13.315965), (35.33864, -33.45653, -11.482219), (33.624924, -35.35534, -10.925401), (33.624924, -35.35534, -10.925401), (35.33864, -33.45653, -11.482219), (35.89114, -33.45653, -9.617002), (34.150635, -35.35534, -9.150635), (34.150635, -35.35534, -9.150635), (35.89114, -33.45653, -9.617002), (36.34527, -33.45653, -7.725425), (34.58274, -35.35534, -7.350788), (34.58274, -35.35534, -7.350788), (36.34527, -33.45653, -7.725425), (36.699776, -33.45653, -5.812673), (34.920055, -35.35534, -5.5307937), (34.920055, -35.35534, -5.5307937), (36.699776, -33.45653, -5.812673), (36.95369, -33.45653, -3.8839893), (35.16166, -35.35534, -3.6956394), (35.16166, -35.35534, -3.6956394), (36.95369, -33.45653, -3.8839893), (37.10632, -33.45653, -1.9446597), (35.306885, -35.35534, -1.8503555), (35.306885, -35.35534, -1.8503555), (37.10632, -33.45653, -1.9446597), (37.15724, -33.45653, 0), (35.35534, -35.35534, 0), (37.15724, -33.45653, 0), (38.8573, -31.466019, 0), (38.804047, -31.466019, 2.033634), (37.10632, -33.45653, 1.9446597), (37.10632, -33.45653, 1.9446597), (38.804047, -31.466019, 2.033634), (38.644432, -31.466019, 4.0616937), (36.95369, -33.45653, 3.8839893), (36.95369, -33.45653, 3.8839893), (38.644432, -31.466019, 4.0616937), (38.3789, -31.466019, 6.0786204), (36.699776, -33.45653, 5.812673), (36.699776, -33.45653, 5.812673), (38.3789, -31.466019, 6.0786204), (38.00817, -31.466019, 8.078887), (36.34527, -33.45653, 7.725425), (36.34527, -33.45653, 7.725425), (38.00817, -31.466019, 8.078887), (37.533268, -31.466019, 10.057009), (35.89114, -33.45653, 9.617002), (35.89114, -33.45653, 9.617002), (37.533268, -31.466019, 10.057009), (36.955486, -31.466019, 12.0075655), (35.33864, -33.45653, 11.482219), (35.33864, -33.45653, 11.482219), (36.955486, -31.466019, 12.0075655), (36.276413, -31.466019, 13.92521), (34.689274, -33.45653, 13.315965), (34.689274, -33.45653, 13.315965), (36.276413, -31.466019, 13.92521), (35.49791, -31.466019, 15.804687), (33.944828, -33.45653, 15.113212), (33.944828, -33.45653, 15.113212), (35.49791, -31.466019, 15.804687), (34.622105, -31.466019, 17.640844), (33.107346, -33.45653, 16.869034), (33.107346, -33.45653, 16.869034), (34.622105, -31.466019, 17.640844), (33.65141, -31.466019, 19.42865), (32.179115, -33.45653, 18.57862), (32.179115, -33.45653, 18.57862), (33.65141, -31.466019, 19.42865), (32.58847, -31.466019, 21.1632), (31.162685, -33.45653, 20.237284), (31.162685, -33.45653, 20.237284), (32.58847, -31.466019, 21.1632), (31.436214, -31.466019, 22.839746), (30.06084, -33.45653, 21.840479), (30.06084, -33.45653, 21.840479), (31.436214, -31.466019, 22.839746), (30.197792, -31.466019, 24.45369), (28.8766, -33.45653, 23.38381), (28.8766, -33.45653, 23.38381), (30.197792, -31.466019, 24.45369), (28.8766, -31.466019, 26.000607), (27.61321, -33.45653, 24.863047), (27.61321, -33.45653, 24.863047), (28.8766, -31.466019, 26.000607), (27.47626, -31.466019, 27.47626), (26.274137, -33.45653, 26.274137), (26.274137, -33.45653, 26.274137), (27.47626, -31.466019, 27.47626), (26.000607, -31.466019, 28.8766), (24.863047, -33.45653, 27.61321), (24.863047, -33.45653, 27.61321), (26.000607, -31.466019, 28.8766), (24.45369, -31.466019, 30.197792), (23.38381, -33.45653, 28.8766), (23.38381, -33.45653, 28.8766), (24.45369, -31.466019, 30.197792), (22.839746, -31.466019, 31.436214), (21.840479, -33.45653, 30.06084), (21.840479, -33.45653, 30.06084), (22.839746, -31.466019, 31.436214), (21.1632, -31.466019, 32.58847), (20.237284, -33.45653, 31.162685), (20.237284, -33.45653, 31.162685), (21.1632, -31.466019, 32.58847), (19.42865, -31.466019, 33.65141), (18.57862, -33.45653, 32.179115), (18.57862, -33.45653, 32.179115), (19.42865, -31.466019, 33.65141), (17.640844, -31.466019, 34.622105), (16.869034, -33.45653, 33.107346), (16.869034, -33.45653, 33.107346), (17.640844, -31.466019, 34.622105), (15.804687, -31.466019, 35.49791), (15.113212, -33.45653, 33.944828), (15.113212, -33.45653, 33.944828), (15.804687, -31.466019, 35.49791), (13.92521, -31.466019, 36.276413), (13.315965, -33.45653, 34.689274), (13.315965, -33.45653, 34.689274), (13.92521, -31.466019, 36.276413), (12.0075655, -31.466019, 36.955486), (11.482219, -33.45653, 35.33864), (11.482219, -33.45653, 35.33864), (12.0075655, -31.466019, 36.955486), (10.057009, -31.466019, 37.533268), (9.617002, -33.45653, 35.89114), (9.617002, -33.45653, 35.89114), (10.057009, -31.466019, 37.533268), (8.078887, -31.466019, 38.00817), (7.725425, -33.45653, 36.34527), (7.725425, -33.45653, 36.34527), (8.078887, -31.466019, 38.00817), (6.0786204, -31.466019, 38.3789), (5.812673, -33.45653, 36.699776), (5.812673, -33.45653, 36.699776), (6.0786204, -31.466019, 38.3789), (4.0616937, -31.466019, 38.644432), (3.8839893, -33.45653, 36.95369), (3.8839893, -33.45653, 36.95369), (4.0616937, -31.466019, 38.644432), (2.033634, -31.466019, 38.804047), (1.9446597, -33.45653, 37.10632), (1.9446597, -33.45653, 37.10632), (2.033634, -31.466019, 38.804047), (2.3793234e-15, -31.466019, 38.8573), (2.2752247e-15, -33.45653, 37.15724), (2.2752247e-15, -33.45653, 37.15724), (2.3793234e-15, -31.466019, 38.8573), (-2.033634, -31.466019, 38.804047), (-1.9446597, -33.45653, 37.10632), (-1.9446597, -33.45653, 37.10632), (-2.033634, -31.466019, 38.804047), (-4.0616937, -31.466019, 38.644432), (-3.8839893, -33.45653, 36.95369), (-3.8839893, -33.45653, 36.95369), (-4.0616937, -31.466019, 38.644432), (-6.0786204, -31.466019, 38.3789), (-5.812673, -33.45653, 36.699776), (-5.812673, -33.45653, 36.699776), (-6.0786204, -31.466019, 38.3789), (-8.078887, -31.466019, 38.00817), (-7.725425, -33.45653, 36.34527), (-7.725425, -33.45653, 36.34527), (-8.078887, -31.466019, 38.00817), (-10.057009, -31.466019, 37.533268), (-9.617002, -33.45653, 35.89114), (-9.617002, -33.45653, 35.89114), (-10.057009, -31.466019, 37.533268), (-12.0075655, -31.466019, 36.955486), (-11.482219, -33.45653, 35.33864), (-11.482219, -33.45653, 35.33864), (-12.0075655, -31.466019, 36.955486), (-13.92521, -31.466019, 36.276413), (-13.315965, -33.45653, 34.689274), (-13.315965, -33.45653, 34.689274), (-13.92521, -31.466019, 36.276413), (-15.804687, -31.466019, 35.49791), (-15.113212, -33.45653, 33.944828), (-15.113212, -33.45653, 33.944828), (-15.804687, -31.466019, 35.49791), (-17.640844, -31.466019, 34.622105), (-16.869034, -33.45653, 33.107346), (-16.869034, -33.45653, 33.107346), (-17.640844, -31.466019, 34.622105), (-19.42865, -31.466019, 33.65141), (-18.57862, -33.45653, 32.179115), (-18.57862, -33.45653, 32.179115), (-19.42865, -31.466019, 33.65141), (-21.1632, -31.466019, 32.58847), (-20.237284, -33.45653, 31.162685), (-20.237284, -33.45653, 31.162685), (-21.1632, -31.466019, 32.58847), (-22.839746, -31.466019, 31.436214), (-21.840479, -33.45653, 30.06084), (-21.840479, -33.45653, 30.06084), (-22.839746, -31.466019, 31.436214), (-24.45369, -31.466019, 30.197792), (-23.38381, -33.45653, 28.8766), (-23.38381, -33.45653, 28.8766), (-24.45369, -31.466019, 30.197792), (-26.000607, -31.466019, 28.8766), (-24.863047, -33.45653, 27.61321), (-24.863047, -33.45653, 27.61321), (-26.000607, -31.466019, 28.8766), (-27.47626, -31.466019, 27.47626), (-26.274137, -33.45653, 26.274137), (-26.274137, -33.45653, 26.274137), (-27.47626, -31.466019, 27.47626), (-28.8766, -31.466019, 26.000607), (-27.61321, -33.45653, 24.863047), (-27.61321, -33.45653, 24.863047), (-28.8766, -31.466019, 26.000607), (-30.197792, -31.466019, 24.45369), (-28.8766, -33.45653, 23.38381), (-28.8766, -33.45653, 23.38381), (-30.197792, -31.466019, 24.45369), (-31.436214, -31.466019, 22.839746), (-30.06084, -33.45653, 21.840479), (-30.06084, -33.45653, 21.840479), (-31.436214, -31.466019, 22.839746), (-32.58847, -31.466019, 21.1632), (-31.162685, -33.45653, 20.237284), (-31.162685, -33.45653, 20.237284), (-32.58847, -31.466019, 21.1632), (-33.65141, -31.466019, 19.42865), (-32.179115, -33.45653, 18.57862), (-32.179115, -33.45653, 18.57862), (-33.65141, -31.466019, 19.42865), (-34.622105, -31.466019, 17.640844), (-33.107346, -33.45653, 16.869034), (-33.107346, -33.45653, 16.869034), (-34.622105, -31.466019, 17.640844), (-35.49791, -31.466019, 15.804687), (-33.944828, -33.45653, 15.113212), (-33.944828, -33.45653, 15.113212), (-35.49791, -31.466019, 15.804687), (-36.276413, -31.466019, 13.92521), (-34.689274, -33.45653, 13.315965), (-34.689274, -33.45653, 13.315965), (-36.276413, -31.466019, 13.92521), (-36.955486, -31.466019, 12.0075655), (-35.33864, -33.45653, 11.482219), (-35.33864, -33.45653, 11.482219), (-36.955486, -31.466019, 12.0075655), (-37.533268, -31.466019, 10.057009), (-35.89114, -33.45653, 9.617002), (-35.89114, -33.45653, 9.617002), (-37.533268, -31.466019, 10.057009), (-38.00817, -31.466019, 8.078887), (-36.34527, -33.45653, 7.725425), (-36.34527, -33.45653, 7.725425), (-38.00817, -31.466019, 8.078887), (-38.3789, -31.466019, 6.0786204), (-36.699776, -33.45653, 5.812673), (-36.699776, -33.45653, 5.812673), (-38.3789, -31.466019, 6.0786204), (-38.644432, -31.466019, 4.0616937), (-36.95369, -33.45653, 3.8839893), (-36.95369, -33.45653, 3.8839893), (-38.644432, -31.466019, 4.0616937), (-38.804047, -31.466019, 2.033634), (-37.10632, -33.45653, 1.9446597), (-37.10632, -33.45653, 1.9446597), (-38.804047, -31.466019, 2.033634), (-38.8573, -31.466019, 4.7586468e-15), (-37.15724, -33.45653, 4.5504495e-15), (-37.15724, -33.45653, 4.5504495e-15), (-38.8573, -31.466019, 4.7586468e-15), (-38.804047, -31.466019, -2.033634), (-37.10632, -33.45653, -1.9446597), (-37.10632, -33.45653, -1.9446597), (-38.804047, -31.466019, -2.033634), (-38.644432, -31.466019, -4.0616937), (-36.95369, -33.45653, -3.8839893), (-36.95369, -33.45653, -3.8839893), (-38.644432, -31.466019, -4.0616937), (-38.3789, -31.466019, -6.0786204), (-36.699776, -33.45653, -5.812673), (-36.699776, -33.45653, -5.812673), (-38.3789, -31.466019, -6.0786204), (-38.00817, -31.466019, -8.078887), (-36.34527, -33.45653, -7.725425), (-36.34527, -33.45653, -7.725425), (-38.00817, -31.466019, -8.078887), (-37.533268, -31.466019, -10.057009), (-35.89114, -33.45653, -9.617002), (-35.89114, -33.45653, -9.617002), (-37.533268, -31.466019, -10.057009), (-36.955486, -31.466019, -12.0075655), (-35.33864, -33.45653, -11.482219), (-35.33864, -33.45653, -11.482219), (-36.955486, -31.466019, -12.0075655), (-36.276413, -31.466019, -13.92521), (-34.689274, -33.45653, -13.315965), (-34.689274, -33.45653, -13.315965), (-36.276413, -31.466019, -13.92521), (-35.49791, -31.466019, -15.804687), (-33.944828, -33.45653, -15.113212), (-33.944828, -33.45653, -15.113212), (-35.49791, -31.466019, -15.804687), (-34.622105, -31.466019, -17.640844), (-33.107346, -33.45653, -16.869034), (-33.107346, -33.45653, -16.869034), (-34.622105, -31.466019, -17.640844), (-33.65141, -31.466019, -19.42865), (-32.179115, -33.45653, -18.57862), (-32.179115, -33.45653, -18.57862), (-33.65141, -31.466019, -19.42865), (-32.58847, -31.466019, -21.1632), (-31.162685, -33.45653, -20.237284), (-31.162685, -33.45653, -20.237284), (-32.58847, -31.466019, -21.1632), (-31.436214, -31.466019, -22.839746), (-30.06084, -33.45653, -21.840479), (-30.06084, -33.45653, -21.840479), (-31.436214, -31.466019, -22.839746), (-30.197792, -31.466019, -24.45369), (-28.8766, -33.45653, -23.38381), (-28.8766, -33.45653, -23.38381), (-30.197792, -31.466019, -24.45369), (-28.8766, -31.466019, -26.000607), (-27.61321, -33.45653, -24.863047), (-27.61321, -33.45653, -24.863047), (-28.8766, -31.466019, -26.000607), (-27.47626, -31.466019, -27.47626), (-26.274137, -33.45653, -26.274137), (-26.274137, -33.45653, -26.274137), (-27.47626, -31.466019, -27.47626), (-26.000607, -31.466019, -28.8766), (-24.863047, -33.45653, -27.61321), (-24.863047, -33.45653, -27.61321), (-26.000607, -31.466019, -28.8766), (-24.45369, -31.466019, -30.197792), (-23.38381, -33.45653, -28.8766), (-23.38381, -33.45653, -28.8766), (-24.45369, -31.466019, -30.197792), (-22.839746, -31.466019, -31.436214), (-21.840479, -33.45653, -30.06084), (-21.840479, -33.45653, -30.06084), (-22.839746, -31.466019, -31.436214), (-21.1632, -31.466019, -32.58847), (-20.237284, -33.45653, -31.162685), (-20.237284, -33.45653, -31.162685), (-21.1632, -31.466019, -32.58847), (-19.42865, -31.466019, -33.65141), (-18.57862, -33.45653, -32.179115), (-18.57862, -33.45653, -32.179115), (-19.42865, -31.466019, -33.65141), (-17.640844, -31.466019, -34.622105), (-16.869034, -33.45653, -33.107346), (-16.869034, -33.45653, -33.107346), (-17.640844, -31.466019, -34.622105), (-15.804687, -31.466019, -35.49791), (-15.113212, -33.45653, -33.944828), (-15.113212, -33.45653, -33.944828), (-15.804687, -31.466019, -35.49791), (-13.92521, -31.466019, -36.276413), (-13.315965, -33.45653, -34.689274), (-13.315965, -33.45653, -34.689274), (-13.92521, -31.466019, -36.276413), (-12.0075655, -31.466019, -36.955486), (-11.482219, -33.45653, -35.33864), (-11.482219, -33.45653, -35.33864), (-12.0075655, -31.466019, -36.955486), (-10.057009, -31.466019, -37.533268), (-9.617002, -33.45653, -35.89114), (-9.617002, -33.45653, -35.89114), (-10.057009, -31.466019, -37.533268), (-8.078887, -31.466019, -38.00817), (-7.725425, -33.45653, -36.34527), (-7.725425, -33.45653, -36.34527), (-8.078887, -31.466019, -38.00817), (-6.0786204, -31.466019, -38.3789), (-5.812673, -33.45653, -36.699776), (-5.812673, -33.45653, -36.699776), (-6.0786204, -31.466019, -38.3789), (-4.0616937, -31.466019, -38.644432), (-3.8839893, -33.45653, -36.95369), (-3.8839893, -33.45653, -36.95369), (-4.0616937, -31.466019, -38.644432), (-2.033634, -31.466019, -38.804047), (-1.9446597, -33.45653, -37.10632), (-1.9446597, -33.45653, -37.10632), (-2.033634, -31.466019, -38.804047), (-7.1379695e-15, -31.466019, -38.8573), (-6.8256744e-15, -33.45653, -37.15724), (-6.8256744e-15, -33.45653, -37.15724), (-7.1379695e-15, -31.466019, -38.8573), (2.033634, -31.466019, -38.804047), (1.9446597, -33.45653, -37.10632), (1.9446597, -33.45653, -37.10632), (2.033634, -31.466019, -38.804047), (4.0616937, -31.466019, -38.644432), (3.8839893, -33.45653, -36.95369), (3.8839893, -33.45653, -36.95369), (4.0616937, -31.466019, -38.644432), (6.0786204, -31.466019, -38.3789), (5.812673, -33.45653, -36.699776), (5.812673, -33.45653, -36.699776), (6.0786204, -31.466019, -38.3789), (8.078887, -31.466019, -38.00817), (7.725425, -33.45653, -36.34527), (7.725425, -33.45653, -36.34527), (8.078887, -31.466019, -38.00817), (10.057009, -31.466019, -37.533268), (9.617002, -33.45653, -35.89114), (9.617002, -33.45653, -35.89114), (10.057009, -31.466019, -37.533268), (12.0075655, -31.466019, -36.955486), (11.482219, -33.45653, -35.33864), (11.482219, -33.45653, -35.33864), (12.0075655, -31.466019, -36.955486), (13.92521, -31.466019, -36.276413), (13.315965, -33.45653, -34.689274), (13.315965, -33.45653, -34.689274), (13.92521, -31.466019, -36.276413), (15.804687, -31.466019, -35.49791), (15.113212, -33.45653, -33.944828), (15.113212, -33.45653, -33.944828), (15.804687, -31.466019, -35.49791), (17.640844, -31.466019, -34.622105), (16.869034, -33.45653, -33.107346), (16.869034, -33.45653, -33.107346), (17.640844, -31.466019, -34.622105), (19.42865, -31.466019, -33.65141), (18.57862, -33.45653, -32.179115), (18.57862, -33.45653, -32.179115), (19.42865, -31.466019, -33.65141), (21.1632, -31.466019, -32.58847), (20.237284, -33.45653, -31.162685), (20.237284, -33.45653, -31.162685), (21.1632, -31.466019, -32.58847), (22.839746, -31.466019, -31.436214), (21.840479, -33.45653, -30.06084), (21.840479, -33.45653, -30.06084), (22.839746, -31.466019, -31.436214), (24.45369, -31.466019, -30.197792), (23.38381, -33.45653, -28.8766), (23.38381, -33.45653, -28.8766), (24.45369, -31.466019, -30.197792), (26.000607, -31.466019, -28.8766), (24.863047, -33.45653, -27.61321), (24.863047, -33.45653, -27.61321), (26.000607, -31.466019, -28.8766), (27.47626, -31.466019, -27.47626), (26.274137, -33.45653, -26.274137), (26.274137, -33.45653, -26.274137), (27.47626, -31.466019, -27.47626), (28.8766, -31.466019, -26.000607), (27.61321, -33.45653, -24.863047), (27.61321, -33.45653, -24.863047), (28.8766, -31.466019, -26.000607), (30.197792, -31.466019, -24.45369), (28.8766, -33.45653, -23.38381), (28.8766, -33.45653, -23.38381), (30.197792, -31.466019, -24.45369), (31.436214, -31.466019, -22.839746), (30.06084, -33.45653, -21.840479), (30.06084, -33.45653, -21.840479), (31.436214, -31.466019, -22.839746), (32.58847, -31.466019, -21.1632), (31.162685, -33.45653, -20.237284), (31.162685, -33.45653, -20.237284), (32.58847, -31.466019, -21.1632), (33.65141, -31.466019, -19.42865), (32.179115, -33.45653, -18.57862), (32.179115, -33.45653, -18.57862), (33.65141, -31.466019, -19.42865), (34.622105, -31.466019, -17.640844), (33.107346, -33.45653, -16.869034), (33.107346, -33.45653, -16.869034), (34.622105, -31.466019, -17.640844), (35.49791, -31.466019, -15.804687), (33.944828, -33.45653, -15.113212), (33.944828, -33.45653, -15.113212), (35.49791, -31.466019, -15.804687), (36.276413, -31.466019, -13.92521), (34.689274, -33.45653, -13.315965), (34.689274, -33.45653, -13.315965), (36.276413, -31.466019, -13.92521), (36.955486, -31.466019, -12.0075655), (35.33864, -33.45653, -11.482219), (35.33864, -33.45653, -11.482219), (36.955486, -31.466019, -12.0075655), (37.533268, -31.466019, -10.057009), (35.89114, -33.45653, -9.617002), (35.89114, -33.45653, -9.617002), (37.533268, -31.466019, -10.057009), (38.00817, -31.466019, -8.078887), (36.34527, -33.45653, -7.725425), (36.34527, -33.45653, -7.725425), (38.00817, -31.466019, -8.078887), (38.3789, -31.466019, -6.0786204), (36.699776, -33.45653, -5.812673), (36.699776, -33.45653, -5.812673), (38.3789, -31.466019, -6.0786204), (38.644432, -31.466019, -4.0616937), (36.95369, -33.45653, -3.8839893), (36.95369, -33.45653, -3.8839893), (38.644432, -31.466019, -4.0616937), (38.804047, -31.466019, -2.033634), (37.10632, -33.45653, -1.9446597), (37.10632, -33.45653, -1.9446597), (38.804047, -31.466019, -2.033634), (38.8573, -31.466019, 0), (37.15724, -33.45653, 0), (38.8573, -31.466019, 0), (40.45085, -29.389263, 0), (40.395412, -29.389263, 2.117034), (38.804047, -31.466019, 2.033634), (38.804047, -31.466019, 2.033634), (40.395412, -29.389263, 2.117034), (40.229256, -29.389263, 4.2282653), (38.644432, -31.466019, 4.0616937), (38.644432, -31.466019, 4.0616937), (40.229256, -29.389263, 4.2282653), (39.95283, -29.389263, 6.327907), (38.3789, -31.466019, 6.0786204), (38.3789, -31.466019, 6.0786204), (39.95283, -29.389263, 6.327907), (39.566902, -29.389263, 8.410205), (38.00817, -31.466019, 8.078887), (38.00817, -31.466019, 8.078887), (39.566902, -29.389263, 8.410205), (39.07252, -29.389263, 10.46945), (37.533268, -31.466019, 10.057009), (37.533268, -31.466019, 10.057009), (39.07252, -29.389263, 10.46945), (38.471043, -29.389263, 12.5), (36.955486, -31.466019, 12.0075655), (36.955486, -31.466019, 12.0075655), (38.471043, -29.389263, 12.5), (37.764122, -29.389263, 14.496288), (36.276413, -31.466019, 13.92521), (36.276413, -31.466019, 13.92521), (37.764122, -29.389263, 14.496288), (36.95369, -29.389263, 16.452843), (35.49791, -31.466019, 15.804687), (35.49791, -31.466019, 15.804687), (36.95369, -29.389263, 16.452843), (36.04197, -29.389263, 18.364302), (34.622105, -31.466019, 17.640844), (34.622105, -31.466019, 17.640844), (36.04197, -29.389263, 18.364302), (35.031464, -29.389263, 20.225426), (33.65141, -31.466019, 19.42865), (33.65141, -31.466019, 19.42865), (35.031464, -29.389263, 20.225426), (33.92494, -29.389263, 22.031113), (32.58847, -31.466019, 21.1632), (32.58847, -31.466019, 21.1632), (33.92494, -29.389263, 22.031113), (32.725426, -29.389263, 23.776413), (31.436214, -31.466019, 22.839746), (31.436214, -31.466019, 22.839746), (32.725426, -29.389263, 23.776413), (31.436214, -29.389263, 25.456545), (30.197792, -31.466019, 24.45369), (30.197792, -31.466019, 24.45369), (31.436214, -29.389263, 25.456545), (30.06084, -29.389263, 27.066902), (28.8766, -31.466019, 26.000607), (28.8766, -31.466019, 26.000607), (30.06084, -29.389263, 27.066902), (28.60307, -29.389263, 28.60307), (27.47626, -31.466019, 27.47626), (27.47626, -31.466019, 27.47626), (28.60307, -29.389263, 28.60307), (27.066902, -29.389263, 30.06084), (26.000607, -31.466019, 28.8766), (26.000607, -31.466019, 28.8766), (27.066902, -29.389263, 30.06084), (25.456545, -29.389263, 31.436214), (24.45369, -31.466019, 30.197792), (24.45369, -31.466019, 30.197792), (25.456545, -29.389263, 31.436214), (23.776413, -29.389263, 32.725426), (22.839746, -31.466019, 31.436214), (22.839746, -31.466019, 31.436214), (23.776413, -29.389263, 32.725426), (22.031113, -29.389263, 33.92494), (21.1632, -31.466019, 32.58847), (21.1632, -31.466019, 32.58847), (22.031113, -29.389263, 33.92494), (20.225426, -29.389263, 35.031464), (19.42865, -31.466019, 33.65141), (19.42865, -31.466019, 33.65141), (20.225426, -29.389263, 35.031464), (18.364302, -29.389263, 36.04197), (17.640844, -31.466019, 34.622105), (17.640844, -31.466019, 34.622105), (18.364302, -29.389263, 36.04197), (16.452843, -29.389263, 36.95369), (15.804687, -31.466019, 35.49791), (15.804687, -31.466019, 35.49791), (16.452843, -29.389263, 36.95369), (14.496288, -29.389263, 37.764122), (13.92521, -31.466019, 36.276413), (13.92521, -31.466019, 36.276413), (14.496288, -29.389263, 37.764122), (12.5, -29.389263, 38.471043), (12.0075655, -31.466019, 36.955486), (12.0075655, -31.466019, 36.955486), (12.5, -29.389263, 38.471043), (10.46945, -29.389263, 39.07252), (10.057009, -31.466019, 37.533268), (10.057009, -31.466019, 37.533268), (10.46945, -29.389263, 39.07252), (8.410205, -29.389263, 39.566902), (8.078887, -31.466019, 38.00817), (8.078887, -31.466019, 38.00817), (8.410205, -29.389263, 39.566902), (6.327907, -29.389263, 39.95283), (6.0786204, -31.466019, 38.3789), (6.0786204, -31.466019, 38.3789), (6.327907, -29.389263, 39.95283), (4.2282653, -29.389263, 40.229256), (4.0616937, -31.466019, 38.644432), (4.0616937, -31.466019, 38.644432), (4.2282653, -29.389263, 40.229256), (2.117034, -29.389263, 40.395412), (2.033634, -31.466019, 38.804047), (2.033634, -31.466019, 38.804047), (2.117034, -29.389263, 40.395412), (2.4769e-15, -29.389263, 40.45085), (2.3793234e-15, -31.466019, 38.8573), (2.3793234e-15, -31.466019, 38.8573), (2.4769e-15, -29.389263, 40.45085), (-2.117034, -29.389263, 40.395412), (-2.033634, -31.466019, 38.804047), (-2.033634, -31.466019, 38.804047), (-2.117034, -29.389263, 40.395412), (-4.2282653, -29.389263, 40.229256), (-4.0616937, -31.466019, 38.644432), (-4.0616937, -31.466019, 38.644432), (-4.2282653, -29.389263, 40.229256), (-6.327907, -29.389263, 39.95283), (-6.0786204, -31.466019, 38.3789), (-6.0786204, -31.466019, 38.3789), (-6.327907, -29.389263, 39.95283), (-8.410205, -29.389263, 39.566902), (-8.078887, -31.466019, 38.00817), (-8.078887, -31.466019, 38.00817), (-8.410205, -29.389263, 39.566902), (-10.46945, -29.389263, 39.07252), (-10.057009, -31.466019, 37.533268), (-10.057009, -31.466019, 37.533268), (-10.46945, -29.389263, 39.07252), (-12.5, -29.389263, 38.471043), (-12.0075655, -31.466019, 36.955486), (-12.0075655, -31.466019, 36.955486), (-12.5, -29.389263, 38.471043), (-14.496288, -29.389263, 37.764122), (-13.92521, -31.466019, 36.276413), (-13.92521, -31.466019, 36.276413), (-14.496288, -29.389263, 37.764122), (-16.452843, -29.389263, 36.95369), (-15.804687, -31.466019, 35.49791), (-15.804687, -31.466019, 35.49791), (-16.452843, -29.389263, 36.95369), (-18.364302, -29.389263, 36.04197), (-17.640844, -31.466019, 34.622105), (-17.640844, -31.466019, 34.622105), (-18.364302, -29.389263, 36.04197), (-20.225426, -29.389263, 35.031464), (-19.42865, -31.466019, 33.65141), (-19.42865, -31.466019, 33.65141), (-20.225426, -29.389263, 35.031464), (-22.031113, -29.389263, 33.92494), (-21.1632, -31.466019, 32.58847), (-21.1632, -31.466019, 32.58847), (-22.031113, -29.389263, 33.92494), (-23.776413, -29.389263, 32.725426), (-22.839746, -31.466019, 31.436214), (-22.839746, -31.466019, 31.436214), (-23.776413, -29.389263, 32.725426), (-25.456545, -29.389263, 31.436214), (-24.45369, -31.466019, 30.197792), (-24.45369, -31.466019, 30.197792), (-25.456545, -29.389263, 31.436214), (-27.066902, -29.389263, 30.06084), (-26.000607, -31.466019, 28.8766), (-26.000607, -31.466019, 28.8766), (-27.066902, -29.389263, 30.06084), (-28.60307, -29.389263, 28.60307), (-27.47626, -31.466019, 27.47626), (-27.47626, -31.466019, 27.47626), (-28.60307, -29.389263, 28.60307), (-30.06084, -29.389263, 27.066902), (-28.8766, -31.466019, 26.000607), (-28.8766, -31.466019, 26.000607), (-30.06084, -29.389263, 27.066902), (-31.436214, -29.389263, 25.456545), (-30.197792, -31.466019, 24.45369), (-30.197792, -31.466019, 24.45369), (-31.436214, -29.389263, 25.456545), (-32.725426, -29.389263, 23.776413), (-31.436214, -31.466019, 22.839746), (-31.436214, -31.466019, 22.839746), (-32.725426, -29.389263, 23.776413), (-33.92494, -29.389263, 22.031113), (-32.58847, -31.466019, 21.1632), (-32.58847, -31.466019, 21.1632), (-33.92494, -29.389263, 22.031113), (-35.031464, -29.389263, 20.225426), (-33.65141, -31.466019, 19.42865), (-33.65141, -31.466019, 19.42865), (-35.031464, -29.389263, 20.225426), (-36.04197, -29.389263, 18.364302), (-34.622105, -31.466019, 17.640844), (-34.622105, -31.466019, 17.640844), (-36.04197, -29.389263, 18.364302), (-36.95369, -29.389263, 16.452843), (-35.49791, -31.466019, 15.804687), (-35.49791, -31.466019, 15.804687), (-36.95369, -29.389263, 16.452843), (-37.764122, -29.389263, 14.496288), (-36.276413, -31.466019, 13.92521), (-36.276413, -31.466019, 13.92521), (-37.764122, -29.389263, 14.496288), (-38.471043, -29.389263, 12.5), (-36.955486, -31.466019, 12.0075655), (-36.955486, -31.466019, 12.0075655), (-38.471043, -29.389263, 12.5), (-39.07252, -29.389263, 10.46945), (-37.533268, -31.466019, 10.057009), (-37.533268, -31.466019, 10.057009), (-39.07252, -29.389263, 10.46945), (-39.566902, -29.389263, 8.410205), (-38.00817, -31.466019, 8.078887), (-38.00817, -31.466019, 8.078887), (-39.566902, -29.389263, 8.410205), (-39.95283, -29.389263, 6.327907), (-38.3789, -31.466019, 6.0786204), (-38.3789, -31.466019, 6.0786204), (-39.95283, -29.389263, 6.327907), (-40.229256, -29.389263, 4.2282653), (-38.644432, -31.466019, 4.0616937), (-38.644432, -31.466019, 4.0616937), (-40.229256, -29.389263, 4.2282653), (-40.395412, -29.389263, 2.117034), (-38.804047, -31.466019, 2.033634), (-38.804047, -31.466019, 2.033634), (-40.395412, -29.389263, 2.117034), (-40.45085, -29.389263, 4.9538e-15), (-38.8573, -31.466019, 4.7586468e-15), (-38.8573, -31.466019, 4.7586468e-15), (-40.45085, -29.389263, 4.9538e-15), (-40.395412, -29.389263, -2.117034), (-38.804047, -31.466019, -2.033634), (-38.804047, -31.466019, -2.033634), (-40.395412, -29.389263, -2.117034), (-40.229256, -29.389263, -4.2282653), (-38.644432, -31.466019, -4.0616937), (-38.644432, -31.466019, -4.0616937), (-40.229256, -29.389263, -4.2282653), (-39.95283, -29.389263, -6.327907), (-38.3789, -31.466019, -6.0786204), (-38.3789, -31.466019, -6.0786204), (-39.95283, -29.389263, -6.327907), (-39.566902, -29.389263, -8.410205), (-38.00817, -31.466019, -8.078887), (-38.00817, -31.466019, -8.078887), (-39.566902, -29.389263, -8.410205), (-39.07252, -29.389263, -10.46945), (-37.533268, -31.466019, -10.057009), (-37.533268, -31.466019, -10.057009), (-39.07252, -29.389263, -10.46945), (-38.471043, -29.389263, -12.5), (-36.955486, -31.466019, -12.0075655), (-36.955486, -31.466019, -12.0075655), (-38.471043, -29.389263, -12.5), (-37.764122, -29.389263, -14.496288), (-36.276413, -31.466019, -13.92521), (-36.276413, -31.466019, -13.92521), (-37.764122, -29.389263, -14.496288), (-36.95369, -29.389263, -16.452843), (-35.49791, -31.466019, -15.804687), (-35.49791, -31.466019, -15.804687), (-36.95369, -29.389263, -16.452843), (-36.04197, -29.389263, -18.364302), (-34.622105, -31.466019, -17.640844), (-34.622105, -31.466019, -17.640844), (-36.04197, -29.389263, -18.364302), (-35.031464, -29.389263, -20.225426), (-33.65141, -31.466019, -19.42865), (-33.65141, -31.466019, -19.42865), (-35.031464, -29.389263, -20.225426), (-33.92494, -29.389263, -22.031113), (-32.58847, -31.466019, -21.1632), (-32.58847, -31.466019, -21.1632), (-33.92494, -29.389263, -22.031113), (-32.725426, -29.389263, -23.776413), (-31.436214, -31.466019, -22.839746), (-31.436214, -31.466019, -22.839746), (-32.725426, -29.389263, -23.776413), (-31.436214, -29.389263, -25.456545), (-30.197792, -31.466019, -24.45369), (-30.197792, -31.466019, -24.45369), (-31.436214, -29.389263, -25.456545), (-30.06084, -29.389263, -27.066902), (-28.8766, -31.466019, -26.000607), (-28.8766, -31.466019, -26.000607), (-30.06084, -29.389263, -27.066902), (-28.60307, -29.389263, -28.60307), (-27.47626, -31.466019, -27.47626), (-27.47626, -31.466019, -27.47626), (-28.60307, -29.389263, -28.60307), (-27.066902, -29.389263, -30.06084), (-26.000607, -31.466019, -28.8766), (-26.000607, -31.466019, -28.8766), (-27.066902, -29.389263, -30.06084), (-25.456545, -29.389263, -31.436214), (-24.45369, -31.466019, -30.197792), (-24.45369, -31.466019, -30.197792), (-25.456545, -29.389263, -31.436214), (-23.776413, -29.389263, -32.725426), (-22.839746, -31.466019, -31.436214), (-22.839746, -31.466019, -31.436214), (-23.776413, -29.389263, -32.725426), (-22.031113, -29.389263, -33.92494), (-21.1632, -31.466019, -32.58847), (-21.1632, -31.466019, -32.58847), (-22.031113, -29.389263, -33.92494), (-20.225426, -29.389263, -35.031464), (-19.42865, -31.466019, -33.65141), (-19.42865, -31.466019, -33.65141), (-20.225426, -29.389263, -35.031464), (-18.364302, -29.389263, -36.04197), (-17.640844, -31.466019, -34.622105), (-17.640844, -31.466019, -34.622105), (-18.364302, -29.389263, -36.04197), (-16.452843, -29.389263, -36.95369), (-15.804687, -31.466019, -35.49791), (-15.804687, -31.466019, -35.49791), (-16.452843, -29.389263, -36.95369), (-14.496288, -29.389263, -37.764122), (-13.92521, -31.466019, -36.276413), (-13.92521, -31.466019, -36.276413), (-14.496288, -29.389263, -37.764122), (-12.5, -29.389263, -38.471043), (-12.0075655, -31.466019, -36.955486), (-12.0075655, -31.466019, -36.955486), (-12.5, -29.389263, -38.471043), (-10.46945, -29.389263, -39.07252), (-10.057009, -31.466019, -37.533268), (-10.057009, -31.466019, -37.533268), (-10.46945, -29.389263, -39.07252), (-8.410205, -29.389263, -39.566902), (-8.078887, -31.466019, -38.00817), (-8.078887, -31.466019, -38.00817), (-8.410205, -29.389263, -39.566902), (-6.327907, -29.389263, -39.95283), (-6.0786204, -31.466019, -38.3789), (-6.0786204, -31.466019, -38.3789), (-6.327907, -29.389263, -39.95283), (-4.2282653, -29.389263, -40.229256), (-4.0616937, -31.466019, -38.644432), (-4.0616937, -31.466019, -38.644432), (-4.2282653, -29.389263, -40.229256), (-2.117034, -29.389263, -40.395412), (-2.033634, -31.466019, -38.804047), (-2.033634, -31.466019, -38.804047), (-2.117034, -29.389263, -40.395412), (-7.430701e-15, -29.389263, -40.45085), (-7.1379695e-15, -31.466019, -38.8573), (-7.1379695e-15, -31.466019, -38.8573), (-7.430701e-15, -29.389263, -40.45085), (2.117034, -29.389263, -40.395412), (2.033634, -31.466019, -38.804047), (2.033634, -31.466019, -38.804047), (2.117034, -29.389263, -40.395412), (4.2282653, -29.389263, -40.229256), (4.0616937, -31.466019, -38.644432), (4.0616937, -31.466019, -38.644432), (4.2282653, -29.389263, -40.229256), (6.327907, -29.389263, -39.95283), (6.0786204, -31.466019, -38.3789), (6.0786204, -31.466019, -38.3789), (6.327907, -29.389263, -39.95283), (8.410205, -29.389263, -39.566902), (8.078887, -31.466019, -38.00817), (8.078887, -31.466019, -38.00817), (8.410205, -29.389263, -39.566902), (10.46945, -29.389263, -39.07252), (10.057009, -31.466019, -37.533268), (10.057009, -31.466019, -37.533268), (10.46945, -29.389263, -39.07252), (12.5, -29.389263, -38.471043), (12.0075655, -31.466019, -36.955486), (12.0075655, -31.466019, -36.955486), (12.5, -29.389263, -38.471043), (14.496288, -29.389263, -37.764122), (13.92521, -31.466019, -36.276413), (13.92521, -31.466019, -36.276413), (14.496288, -29.389263, -37.764122), (16.452843, -29.389263, -36.95369), (15.804687, -31.466019, -35.49791), (15.804687, -31.466019, -35.49791), (16.452843, -29.389263, -36.95369), (18.364302, -29.389263, -36.04197), (17.640844, -31.466019, -34.622105), (17.640844, -31.466019, -34.622105), (18.364302, -29.389263, -36.04197), (20.225426, -29.389263, -35.031464), (19.42865, -31.466019, -33.65141), (19.42865, -31.466019, -33.65141), (20.225426, -29.389263, -35.031464), (22.031113, -29.389263, -33.92494), (21.1632, -31.466019, -32.58847), (21.1632, -31.466019, -32.58847), (22.031113, -29.389263, -33.92494), (23.776413, -29.389263, -32.725426), (22.839746, -31.466019, -31.436214), (22.839746, -31.466019, -31.436214), (23.776413, -29.389263, -32.725426), (25.456545, -29.389263, -31.436214), (24.45369, -31.466019, -30.197792), (24.45369, -31.466019, -30.197792), (25.456545, -29.389263, -31.436214), (27.066902, -29.389263, -30.06084), (26.000607, -31.466019, -28.8766), (26.000607, -31.466019, -28.8766), (27.066902, -29.389263, -30.06084), (28.60307, -29.389263, -28.60307), (27.47626, -31.466019, -27.47626), (27.47626, -31.466019, -27.47626), (28.60307, -29.389263, -28.60307), (30.06084, -29.389263, -27.066902), (28.8766, -31.466019, -26.000607), (28.8766, -31.466019, -26.000607), (30.06084, -29.389263, -27.066902), (31.436214, -29.389263, -25.456545), (30.197792, -31.466019, -24.45369), (30.197792, -31.466019, -24.45369), (31.436214, -29.389263, -25.456545), (32.725426, -29.389263, -23.776413), (31.436214, -31.466019, -22.839746), (31.436214, -31.466019, -22.839746), (32.725426, -29.389263, -23.776413), (33.92494, -29.389263, -22.031113), (32.58847, -31.466019, -21.1632), (32.58847, -31.466019, -21.1632), (33.92494, -29.389263, -22.031113), (35.031464, -29.389263, -20.225426), (33.65141, -31.466019, -19.42865), (33.65141, -31.466019, -19.42865), (35.031464, -29.389263, -20.225426), (36.04197, -29.389263, -18.364302), (34.622105, -31.466019, -17.640844), (34.622105, -31.466019, -17.640844), (36.04197, -29.389263, -18.364302), (36.95369, -29.389263, -16.452843), (35.49791, -31.466019, -15.804687), (35.49791, -31.466019, -15.804687), (36.95369, -29.389263, -16.452843), (37.764122, -29.389263, -14.496288), (36.276413, -31.466019, -13.92521), (36.276413, -31.466019, -13.92521), (37.764122, -29.389263, -14.496288), (38.471043, -29.389263, -12.5), (36.955486, -31.466019, -12.0075655), (36.955486, -31.466019, -12.0075655), (38.471043, -29.389263, -12.5), (39.07252, -29.389263, -10.46945), (37.533268, -31.466019, -10.057009), (37.533268, -31.466019, -10.057009), (39.07252, -29.389263, -10.46945), (39.566902, -29.389263, -8.410205), (38.00817, -31.466019, -8.078887), (38.00817, -31.466019, -8.078887), (39.566902, -29.389263, -8.410205), (39.95283, -29.389263, -6.327907), (38.3789, -31.466019, -6.0786204), (38.3789, -31.466019, -6.0786204), (39.95283, -29.389263, -6.327907), (40.229256, -29.389263, -4.2282653), (38.644432, -31.466019, -4.0616937), (38.644432, -31.466019, -4.0616937), (40.229256, -29.389263, -4.2282653), (40.395412, -29.389263, -2.117034), (38.804047, -31.466019, -2.033634), (38.804047, -31.466019, -2.033634), (40.395412, -29.389263, -2.117034), (40.45085, -29.389263, 0), (38.8573, -31.466019, 0), (40.45085, -29.389263, 0), (41.93353, -27.231953, 0), (41.87606, -27.231953, 2.1946313), (40.395412, -29.389263, 2.117034), (40.395412, -29.389263, 2.117034), (41.87606, -27.231953, 2.1946313), (41.70381, -27.231953, 4.3832474), (40.229256, -29.389263, 4.2282653), (40.229256, -29.389263, 4.2282653), (41.70381, -27.231953, 4.3832474), (41.417255, -27.231953, 6.5598493), (39.95283, -29.389263, 6.327907), (39.95283, -29.389263, 6.327907), (41.417255, -27.231953, 6.5598493), (41.01718, -27.231953, 8.718471), (39.566902, -29.389263, 8.410205), (39.566902, -29.389263, 8.410205), (41.01718, -27.231953, 8.718471), (40.504677, -27.231953, 10.853196), (39.07252, -29.389263, 10.46945), (39.07252, -29.389263, 10.46945), (40.504677, -27.231953, 10.853196), (39.881157, -27.231953, 12.958173), (38.471043, -29.389263, 12.5), (38.471043, -29.389263, 12.5), (39.881157, -27.231953, 12.958173), (39.148323, -27.231953, 15.027633), (37.764122, -29.389263, 14.496288), (37.764122, -29.389263, 14.496288), (39.148323, -27.231953, 15.027633), (38.308186, -27.231953, 17.055902), (36.95369, -29.389263, 16.452843), (36.95369, -29.389263, 16.452843), (38.308186, -27.231953, 17.055902), (37.36305, -27.231953, 19.037424), (36.04197, -29.389263, 18.364302), (36.04197, -29.389263, 18.364302), (37.36305, -27.231953, 19.037424), (36.315502, -27.231953, 20.966764), (35.031464, -29.389263, 20.225426), (35.031464, -29.389263, 20.225426), (36.315502, -27.231953, 20.966764), (35.168415, -27.231953, 22.838636), (33.92494, -29.389263, 22.031113), (33.92494, -29.389263, 22.031113), (35.168415, -27.231953, 22.838636), (33.92494, -27.231953, 24.64791), (32.725426, -29.389263, 23.776413), (32.725426, -29.389263, 23.776413), (33.92494, -27.231953, 24.64791), (32.58847, -27.231953, 26.389624), (31.436214, -29.389263, 25.456545), (31.436214, -29.389263, 25.456545), (32.58847, -27.231953, 26.389624), (31.162685, -27.231953, 28.059008), (30.06084, -29.389263, 27.066902), (30.06084, -29.389263, 27.066902), (31.162685, -27.231953, 28.059008), (29.651482, -27.231953, 29.651482), (28.60307, -29.389263, 28.60307), (28.60307, -29.389263, 28.60307), (29.651482, -27.231953, 29.651482), (28.059008, -27.231953, 31.162685), (27.066902, -29.389263, 30.06084), (27.066902, -29.389263, 30.06084), (28.059008, -27.231953, 31.162685), (26.389624, -27.231953, 32.58847), (25.456545, -29.389263, 31.436214), (25.456545, -29.389263, 31.436214), (26.389624, -27.231953, 32.58847), (24.64791, -27.231953, 33.92494), (23.776413, -29.389263, 32.725426), (23.776413, -29.389263, 32.725426), (24.64791, -27.231953, 33.92494), (22.838636, -27.231953, 35.168415), (22.031113, -29.389263, 33.92494), (22.031113, -29.389263, 33.92494), (22.838636, -27.231953, 35.168415), (20.966764, -27.231953, 36.315502), (20.225426, -29.389263, 35.031464), (20.225426, -29.389263, 35.031464), (20.966764, -27.231953, 36.315502), (19.037424, -27.231953, 37.36305), (18.364302, -29.389263, 36.04197), (18.364302, -29.389263, 36.04197), (19.037424, -27.231953, 37.36305), (17.055902, -27.231953, 38.308186), (16.452843, -29.389263, 36.95369), (16.452843, -29.389263, 36.95369), (17.055902, -27.231953, 38.308186), (15.027633, -27.231953, 39.148323), (14.496288, -29.389263, 37.764122), (14.496288, -29.389263, 37.764122), (15.027633, -27.231953, 39.148323), (12.958173, -27.231953, 39.881157), (12.5, -29.389263, 38.471043), (12.5, -29.389263, 38.471043), (12.958173, -27.231953, 39.881157), (10.853196, -27.231953, 40.504677), (10.46945, -29.389263, 39.07252), (10.46945, -29.389263, 39.07252), (10.853196, -27.231953, 40.504677), (8.718471, -27.231953, 41.01718), (8.410205, -29.389263, 39.566902), (8.410205, -29.389263, 39.566902), (8.718471, -27.231953, 41.01718), (6.5598493, -27.231953, 41.417255), (6.327907, -29.389263, 39.95283), (6.327907, -29.389263, 39.95283), (6.5598493, -27.231953, 41.417255), (4.3832474, -27.231953, 41.70381), (4.2282653, -29.389263, 40.229256), (4.2282653, -29.389263, 40.229256), (4.3832474, -27.231953, 41.70381), (2.1946313, -27.231953, 41.87606), (2.117034, -29.389263, 40.395412), (2.117034, -29.389263, 40.395412), (2.1946313, -27.231953, 41.87606), (2.567688e-15, -27.231953, 41.93353), (2.4769e-15, -29.389263, 40.45085), (2.4769e-15, -29.389263, 40.45085), (2.567688e-15, -27.231953, 41.93353), (-2.1946313, -27.231953, 41.87606), (-2.117034, -29.389263, 40.395412), (-2.117034, -29.389263, 40.395412), (-2.1946313, -27.231953, 41.87606), (-4.3832474, -27.231953, 41.70381), (-4.2282653, -29.389263, 40.229256), (-4.2282653, -29.389263, 40.229256), (-4.3832474, -27.231953, 41.70381), (-6.5598493, -27.231953, 41.417255), (-6.327907, -29.389263, 39.95283), (-6.327907, -29.389263, 39.95283), (-6.5598493, -27.231953, 41.417255), (-8.718471, -27.231953, 41.01718), (-8.410205, -29.389263, 39.566902), (-8.410205, -29.389263, 39.566902), (-8.718471, -27.231953, 41.01718), (-10.853196, -27.231953, 40.504677), (-10.46945, -29.389263, 39.07252), (-10.46945, -29.389263, 39.07252), (-10.853196, -27.231953, 40.504677), (-12.958173, -27.231953, 39.881157), (-12.5, -29.389263, 38.471043), (-12.5, -29.389263, 38.471043), (-12.958173, -27.231953, 39.881157), (-15.027633, -27.231953, 39.148323), (-14.496288, -29.389263, 37.764122), (-14.496288, -29.389263, 37.764122), (-15.027633, -27.231953, 39.148323), (-17.055902, -27.231953, 38.308186), (-16.452843, -29.389263, 36.95369), (-16.452843, -29.389263, 36.95369), (-17.055902, -27.231953, 38.308186), (-19.037424, -27.231953, 37.36305), (-18.364302, -29.389263, 36.04197), (-18.364302, -29.389263, 36.04197), (-19.037424, -27.231953, 37.36305), (-20.966764, -27.231953, 36.315502), (-20.225426, -29.389263, 35.031464), (-20.225426, -29.389263, 35.031464), (-20.966764, -27.231953, 36.315502), (-22.838636, -27.231953, 35.168415), (-22.031113, -29.389263, 33.92494), (-22.031113, -29.389263, 33.92494), (-22.838636, -27.231953, 35.168415), (-24.64791, -27.231953, 33.92494), (-23.776413, -29.389263, 32.725426), (-23.776413, -29.389263, 32.725426), (-24.64791, -27.231953, 33.92494), (-26.389624, -27.231953, 32.58847), (-25.456545, -29.389263, 31.436214), (-25.456545, -29.389263, 31.436214), (-26.389624, -27.231953, 32.58847), (-28.059008, -27.231953, 31.162685), (-27.066902, -29.389263, 30.06084), (-27.066902, -29.389263, 30.06084), (-28.059008, -27.231953, 31.162685), (-29.651482, -27.231953, 29.651482), (-28.60307, -29.389263, 28.60307), (-28.60307, -29.389263, 28.60307), (-29.651482, -27.231953, 29.651482), (-31.162685, -27.231953, 28.059008), (-30.06084, -29.389263, 27.066902), (-30.06084, -29.389263, 27.066902), (-31.162685, -27.231953, 28.059008), (-32.58847, -27.231953, 26.389624), (-31.436214, -29.389263, 25.456545), (-31.436214, -29.389263, 25.456545), (-32.58847, -27.231953, 26.389624), (-33.92494, -27.231953, 24.64791), (-32.725426, -29.389263, 23.776413), (-32.725426, -29.389263, 23.776413), (-33.92494, -27.231953, 24.64791), (-35.168415, -27.231953, 22.838636), (-33.92494, -29.389263, 22.031113), (-33.92494, -29.389263, 22.031113), (-35.168415, -27.231953, 22.838636), (-36.315502, -27.231953, 20.966764), (-35.031464, -29.389263, 20.225426), (-35.031464, -29.389263, 20.225426), (-36.315502, -27.231953, 20.966764), (-37.36305, -27.231953, 19.037424), (-36.04197, -29.389263, 18.364302), (-36.04197, -29.389263, 18.364302), (-37.36305, -27.231953, 19.037424), (-38.308186, -27.231953, 17.055902), (-36.95369, -29.389263, 16.452843), (-36.95369, -29.389263, 16.452843), (-38.308186, -27.231953, 17.055902), (-39.148323, -27.231953, 15.027633), (-37.764122, -29.389263, 14.496288), (-37.764122, -29.389263, 14.496288), (-39.148323, -27.231953, 15.027633), (-39.881157, -27.231953, 12.958173), (-38.471043, -29.389263, 12.5), (-38.471043, -29.389263, 12.5), (-39.881157, -27.231953, 12.958173), (-40.504677, -27.231953, 10.853196), (-39.07252, -29.389263, 10.46945), (-39.07252, -29.389263, 10.46945), (-40.504677, -27.231953, 10.853196), (-41.01718, -27.231953, 8.718471), (-39.566902, -29.389263, 8.410205), (-39.566902, -29.389263, 8.410205), (-41.01718, -27.231953, 8.718471), (-41.417255, -27.231953, 6.5598493), (-39.95283, -29.389263, 6.327907), (-39.95283, -29.389263, 6.327907), (-41.417255, -27.231953, 6.5598493), (-41.70381, -27.231953, 4.3832474), (-40.229256, -29.389263, 4.2282653), (-40.229256, -29.389263, 4.2282653), (-41.70381, -27.231953, 4.3832474), (-41.87606, -27.231953, 2.1946313), (-40.395412, -29.389263, 2.117034), (-40.395412, -29.389263, 2.117034), (-41.87606, -27.231953, 2.1946313), (-41.93353, -27.231953, 5.135376e-15), (-40.45085, -29.389263, 4.9538e-15), (-40.45085, -29.389263, 4.9538e-15), (-41.93353, -27.231953, 5.135376e-15), (-41.87606, -27.231953, -2.1946313), (-40.395412, -29.389263, -2.117034), (-40.395412, -29.389263, -2.117034), (-41.87606, -27.231953, -2.1946313), (-41.70381, -27.231953, -4.3832474), (-40.229256, -29.389263, -4.2282653), (-40.229256, -29.389263, -4.2282653), (-41.70381, -27.231953, -4.3832474), (-41.417255, -27.231953, -6.5598493), (-39.95283, -29.389263, -6.327907), (-39.95283, -29.389263, -6.327907), (-41.417255, -27.231953, -6.5598493), (-41.01718, -27.231953, -8.718471), (-39.566902, -29.389263, -8.410205), (-39.566902, -29.389263, -8.410205), (-41.01718, -27.231953, -8.718471), (-40.504677, -27.231953, -10.853196), (-39.07252, -29.389263, -10.46945), (-39.07252, -29.389263, -10.46945), (-40.504677, -27.231953, -10.853196), (-39.881157, -27.231953, -12.958173), (-38.471043, -29.389263, -12.5), (-38.471043, -29.389263, -12.5), (-39.881157, -27.231953, -12.958173), (-39.148323, -27.231953, -15.027633), (-37.764122, -29.389263, -14.496288), (-37.764122, -29.389263, -14.496288), (-39.148323, -27.231953, -15.027633), (-38.308186, -27.231953, -17.055902), (-36.95369, -29.389263, -16.452843), (-36.95369, -29.389263, -16.452843), (-38.308186, -27.231953, -17.055902), (-37.36305, -27.231953, -19.037424), (-36.04197, -29.389263, -18.364302), (-36.04197, -29.389263, -18.364302), (-37.36305, -27.231953, -19.037424), (-36.315502, -27.231953, -20.966764), (-35.031464, -29.389263, -20.225426), (-35.031464, -29.389263, -20.225426), (-36.315502, -27.231953, -20.966764), (-35.168415, -27.231953, -22.838636), (-33.92494, -29.389263, -22.031113), (-33.92494, -29.389263, -22.031113), (-35.168415, -27.231953, -22.838636), (-33.92494, -27.231953, -24.64791), (-32.725426, -29.389263, -23.776413), (-32.725426, -29.389263, -23.776413), (-33.92494, -27.231953, -24.64791), (-32.58847, -27.231953, -26.389624), (-31.436214, -29.389263, -25.456545), (-31.436214, -29.389263, -25.456545), (-32.58847, -27.231953, -26.389624), (-31.162685, -27.231953, -28.059008), (-30.06084, -29.389263, -27.066902), (-30.06084, -29.389263, -27.066902), (-31.162685, -27.231953, -28.059008), (-29.651482, -27.231953, -29.651482), (-28.60307, -29.389263, -28.60307), (-28.60307, -29.389263, -28.60307), (-29.651482, -27.231953, -29.651482), (-28.059008, -27.231953, -31.162685), (-27.066902, -29.389263, -30.06084), (-27.066902, -29.389263, -30.06084), (-28.059008, -27.231953, -31.162685), (-26.389624, -27.231953, -32.58847), (-25.456545, -29.389263, -31.436214), (-25.456545, -29.389263, -31.436214), (-26.389624, -27.231953, -32.58847), (-24.64791, -27.231953, -33.92494), (-23.776413, -29.389263, -32.725426), (-23.776413, -29.389263, -32.725426), (-24.64791, -27.231953, -33.92494), (-22.838636, -27.231953, -35.168415), (-22.031113, -29.389263, -33.92494), (-22.031113, -29.389263, -33.92494), (-22.838636, -27.231953, -35.168415), (-20.966764, -27.231953, -36.315502), (-20.225426, -29.389263, -35.031464), (-20.225426, -29.389263, -35.031464), (-20.966764, -27.231953, -36.315502), (-19.037424, -27.231953, -37.36305), (-18.364302, -29.389263, -36.04197), (-18.364302, -29.389263, -36.04197), (-19.037424, -27.231953, -37.36305), (-17.055902, -27.231953, -38.308186), (-16.452843, -29.389263, -36.95369), (-16.452843, -29.389263, -36.95369), (-17.055902, -27.231953, -38.308186), (-15.027633, -27.231953, -39.148323), (-14.496288, -29.389263, -37.764122), (-14.496288, -29.389263, -37.764122), (-15.027633, -27.231953, -39.148323), (-12.958173, -27.231953, -39.881157), (-12.5, -29.389263, -38.471043), (-12.5, -29.389263, -38.471043), (-12.958173, -27.231953, -39.881157), (-10.853196, -27.231953, -40.504677), (-10.46945, -29.389263, -39.07252), (-10.46945, -29.389263, -39.07252), (-10.853196, -27.231953, -40.504677), (-8.718471, -27.231953, -41.01718), (-8.410205, -29.389263, -39.566902), (-8.410205, -29.389263, -39.566902), (-8.718471, -27.231953, -41.01718), (-6.5598493, -27.231953, -41.417255), (-6.327907, -29.389263, -39.95283), (-6.327907, -29.389263, -39.95283), (-6.5598493, -27.231953, -41.417255), (-4.3832474, -27.231953, -41.70381), (-4.2282653, -29.389263, -40.229256), (-4.2282653, -29.389263, -40.229256), (-4.3832474, -27.231953, -41.70381), (-2.1946313, -27.231953, -41.87606), (-2.117034, -29.389263, -40.395412), (-2.117034, -29.389263, -40.395412), (-2.1946313, -27.231953, -41.87606), (-7.703064e-15, -27.231953, -41.93353), (-7.430701e-15, -29.389263, -40.45085), (-7.430701e-15, -29.389263, -40.45085), (-7.703064e-15, -27.231953, -41.93353), (2.1946313, -27.231953, -41.87606), (2.117034, -29.389263, -40.395412), (2.117034, -29.389263, -40.395412), (2.1946313, -27.231953, -41.87606), (4.3832474, -27.231953, -41.70381), (4.2282653, -29.389263, -40.229256), (4.2282653, -29.389263, -40.229256), (4.3832474, -27.231953, -41.70381), (6.5598493, -27.231953, -41.417255), (6.327907, -29.389263, -39.95283), (6.327907, -29.389263, -39.95283), (6.5598493, -27.231953, -41.417255), (8.718471, -27.231953, -41.01718), (8.410205, -29.389263, -39.566902), (8.410205, -29.389263, -39.566902), (8.718471, -27.231953, -41.01718), (10.853196, -27.231953, -40.504677), (10.46945, -29.389263, -39.07252), (10.46945, -29.389263, -39.07252), (10.853196, -27.231953, -40.504677), (12.958173, -27.231953, -39.881157), (12.5, -29.389263, -38.471043), (12.5, -29.389263, -38.471043), (12.958173, -27.231953, -39.881157), (15.027633, -27.231953, -39.148323), (14.496288, -29.389263, -37.764122), (14.496288, -29.389263, -37.764122), (15.027633, -27.231953, -39.148323), (17.055902, -27.231953, -38.308186), (16.452843, -29.389263, -36.95369), (16.452843, -29.389263, -36.95369), (17.055902, -27.231953, -38.308186), (19.037424, -27.231953, -37.36305), (18.364302, -29.389263, -36.04197), (18.364302, -29.389263, -36.04197), (19.037424, -27.231953, -37.36305), (20.966764, -27.231953, -36.315502), (20.225426, -29.389263, -35.031464), (20.225426, -29.389263, -35.031464), (20.966764, -27.231953, -36.315502), (22.838636, -27.231953, -35.168415), (22.031113, -29.389263, -33.92494), (22.031113, -29.389263, -33.92494), (22.838636, -27.231953, -35.168415), (24.64791, -27.231953, -33.92494), (23.776413, -29.389263, -32.725426), (23.776413, -29.389263, -32.725426), (24.64791, -27.231953, -33.92494), (26.389624, -27.231953, -32.58847), (25.456545, -29.389263, -31.436214), (25.456545, -29.389263, -31.436214), (26.389624, -27.231953, -32.58847), (28.059008, -27.231953, -31.162685), (27.066902, -29.389263, -30.06084), (27.066902, -29.389263, -30.06084), (28.059008, -27.231953, -31.162685), (29.651482, -27.231953, -29.651482), (28.60307, -29.389263, -28.60307), (28.60307, -29.389263, -28.60307), (29.651482, -27.231953, -29.651482), (31.162685, -27.231953, -28.059008), (30.06084, -29.389263, -27.066902), (30.06084, -29.389263, -27.066902), (31.162685, -27.231953, -28.059008), (32.58847, -27.231953, -26.389624), (31.436214, -29.389263, -25.456545), (31.436214, -29.389263, -25.456545), (32.58847, -27.231953, -26.389624), (33.92494, -27.231953, -24.64791), (32.725426, -29.389263, -23.776413), (32.725426, -29.389263, -23.776413), (33.92494, -27.231953, -24.64791), (35.168415, -27.231953, -22.838636), (33.92494, -29.389263, -22.031113), (33.92494, -29.389263, -22.031113), (35.168415, -27.231953, -22.838636), (36.315502, -27.231953, -20.966764), (35.031464, -29.389263, -20.225426), (35.031464, -29.389263, -20.225426), (36.315502, -27.231953, -20.966764), (37.36305, -27.231953, -19.037424), (36.04197, -29.389263, -18.364302), (36.04197, -29.389263, -18.364302), (37.36305, -27.231953, -19.037424), (38.308186, -27.231953, -17.055902), (36.95369, -29.389263, -16.452843), (36.95369, -29.389263, -16.452843), (38.308186, -27.231953, -17.055902), (39.148323, -27.231953, -15.027633), (37.764122, -29.389263, -14.496288), (37.764122, -29.389263, -14.496288), (39.148323, -27.231953, -15.027633), (39.881157, -27.231953, -12.958173), (38.471043, -29.389263, -12.5), (38.471043, -29.389263, -12.5), (39.881157, -27.231953, -12.958173), (40.504677, -27.231953, -10.853196), (39.07252, -29.389263, -10.46945), (39.07252, -29.389263, -10.46945), (40.504677, -27.231953, -10.853196), (41.01718, -27.231953, -8.718471), (39.566902, -29.389263, -8.410205), (39.566902, -29.389263, -8.410205), (41.01718, -27.231953, -8.718471), (41.417255, -27.231953, -6.5598493), (39.95283, -29.389263, -6.327907), (39.95283, -29.389263, -6.327907), (41.417255, -27.231953, -6.5598493), (41.70381, -27.231953, -4.3832474), (40.229256, -29.389263, -4.2282653), (40.229256, -29.389263, -4.2282653), (41.70381, -27.231953, -4.3832474), (41.87606, -27.231953, -2.1946313), (40.395412, -29.389263, -2.117034), (40.395412, -29.389263, -2.117034), (41.87606, -27.231953, -2.1946313), (41.93353, -27.231953, 0), (40.45085, -29.389263, 0), (41.93353, -27.231953, 0), (43.30127, -25, 0), (43.24193, -25, 2.2662134), (41.87606, -27.231953, 2.1946313), (41.87606, -27.231953, 2.1946313), (43.24193, -25, 2.2662134), (43.06406, -25, 4.526215), (41.70381, -27.231953, 4.3832474), (41.70381, -27.231953, 4.3832474), (43.06406, -25, 4.526215), (42.768158, -25, 6.773811), (41.417255, -27.231953, 6.5598493), (41.417255, -27.231953, 6.5598493), (42.768158, -25, 6.773811), (42.355034, -25, 9.00284), (41.01718, -27.231953, 8.718471), (41.01718, -27.231953, 8.718471), (42.355034, -25, 9.00284), (41.825813, -25, 11.207193), (40.504677, -27.231953, 10.853196), (40.504677, -27.231953, 10.853196), (41.825813, -25, 11.207193), (41.181953, -25, 13.380828), (39.881157, -27.231953, 12.958173), (39.881157, -27.231953, 12.958173), (41.181953, -25, 13.380828), (40.425217, -25, 15.517787), (39.148323, -27.231953, 15.027633), (39.148323, -27.231953, 15.027633), (40.425217, -25, 15.517787), (39.55768, -25, 17.612213), (38.308186, -27.231953, 17.055902), (38.308186, -27.231953, 17.055902), (39.55768, -25, 17.612213), (38.581715, -25, 19.658365), (37.36305, -27.231953, 19.037424), (37.36305, -27.231953, 19.037424), (38.581715, -25, 19.658365), (37.5, -25, 21.650635), (36.315502, -27.231953, 20.966764), (36.315502, -27.231953, 20.966764), (37.5, -25, 21.650635), (36.315502, -25, 23.583563), (35.168415, -27.231953, 22.838636), (35.168415, -27.231953, 22.838636), (36.315502, -25, 23.583563), (35.031464, -25, 25.451847), (33.92494, -27.231953, 24.64791), (33.92494, -27.231953, 24.64791), (35.031464, -25, 25.451847), (33.65141, -25, 27.250372), (32.58847, -27.231953, 26.389624), (32.58847, -27.231953, 26.389624), (33.65141, -25, 27.250372), (32.179115, -25, 28.974205), (31.162685, -27.231953, 28.059008), (31.162685, -27.231953, 28.059008), (32.179115, -25, 28.974205), (30.618622, -25, 30.618622), (29.651482, -27.231953, 29.651482), (29.651482, -27.231953, 29.651482), (30.618622, -25, 30.618622), (28.974205, -25, 32.179115), (28.059008, -27.231953, 31.162685), (28.059008, -27.231953, 31.162685), (28.974205, -25, 32.179115), (27.250372, -25, 33.65141), (26.389624, -27.231953, 32.58847), (26.389624, -27.231953, 32.58847), (27.250372, -25, 33.65141), (25.451847, -25, 35.031464), (24.64791, -27.231953, 33.92494), (24.64791, -27.231953, 33.92494), (25.451847, -25, 35.031464), (23.583563, -25, 36.315502), (22.838636, -27.231953, 35.168415), (22.838636, -27.231953, 35.168415), (23.583563, -25, 36.315502), (21.650635, -25, 37.5), (20.966764, -27.231953, 36.315502), (20.966764, -27.231953, 36.315502), (21.650635, -25, 37.5), (19.658365, -25, 38.581715), (19.037424, -27.231953, 37.36305), (19.037424, -27.231953, 37.36305), (19.658365, -25, 38.581715), (17.612213, -25, 39.55768), (17.055902, -27.231953, 38.308186), (17.055902, -27.231953, 38.308186), (17.612213, -25, 39.55768), (15.517787, -25, 40.425217), (15.027633, -27.231953, 39.148323), (15.027633, -27.231953, 39.148323), (15.517787, -25, 40.425217), (13.380828, -25, 41.181953), (12.958173, -27.231953, 39.881157), (12.958173, -27.231953, 39.881157), (13.380828, -25, 41.181953), (11.207193, -25, 41.825813), (10.853196, -27.231953, 40.504677), (10.853196, -27.231953, 40.504677), (11.207193, -25, 41.825813), (9.00284, -25, 42.355034), (8.718471, -27.231953, 41.01718), (8.718471, -27.231953, 41.01718), (9.00284, -25, 42.355034), (6.773811, -25, 42.768158), (6.5598493, -27.231953, 41.417255), (6.5598493, -27.231953, 41.417255), (6.773811, -25, 42.768158), (4.526215, -25, 43.06406), (4.3832474, -27.231953, 41.70381), (4.3832474, -27.231953, 41.70381), (4.526215, -25, 43.06406), (2.2662134, -25, 43.24193), (2.1946313, -27.231953, 41.87606), (2.1946313, -27.231953, 41.87606), (2.2662134, -25, 43.24193), (2.651438e-15, -25, 43.30127), (2.567688e-15, -27.231953, 41.93353), (2.567688e-15, -27.231953, 41.93353), (2.651438e-15, -25, 43.30127), (-2.2662134, -25, 43.24193), (-2.1946313, -27.231953, 41.87606), (-2.1946313, -27.231953, 41.87606), (-2.2662134, -25, 43.24193), (-4.526215, -25, 43.06406), (-4.3832474, -27.231953, 41.70381), (-4.3832474, -27.231953, 41.70381), (-4.526215, -25, 43.06406), (-6.773811, -25, 42.768158), (-6.5598493, -27.231953, 41.417255), (-6.5598493, -27.231953, 41.417255), (-6.773811, -25, 42.768158), (-9.00284, -25, 42.355034), (-8.718471, -27.231953, 41.01718), (-8.718471, -27.231953, 41.01718), (-9.00284, -25, 42.355034), (-11.207193, -25, 41.825813), (-10.853196, -27.231953, 40.504677), (-10.853196, -27.231953, 40.504677), (-11.207193, -25, 41.825813), (-13.380828, -25, 41.181953), (-12.958173, -27.231953, 39.881157), (-12.958173, -27.231953, 39.881157), (-13.380828, -25, 41.181953), (-15.517787, -25, 40.425217), (-15.027633, -27.231953, 39.148323), (-15.027633, -27.231953, 39.148323), (-15.517787, -25, 40.425217), (-17.612213, -25, 39.55768), (-17.055902, -27.231953, 38.308186), (-17.055902, -27.231953, 38.308186), (-17.612213, -25, 39.55768), (-19.658365, -25, 38.581715), (-19.037424, -27.231953, 37.36305), (-19.037424, -27.231953, 37.36305), (-19.658365, -25, 38.581715), (-21.650635, -25, 37.5), (-20.966764, -27.231953, 36.315502), (-20.966764, -27.231953, 36.315502), (-21.650635, -25, 37.5), (-23.583563, -25, 36.315502), (-22.838636, -27.231953, 35.168415), (-22.838636, -27.231953, 35.168415), (-23.583563, -25, 36.315502), (-25.451847, -25, 35.031464), (-24.64791, -27.231953, 33.92494), (-24.64791, -27.231953, 33.92494), (-25.451847, -25, 35.031464), (-27.250372, -25, 33.65141), (-26.389624, -27.231953, 32.58847), (-26.389624, -27.231953, 32.58847), (-27.250372, -25, 33.65141), (-28.974205, -25, 32.179115), (-28.059008, -27.231953, 31.162685), (-28.059008, -27.231953, 31.162685), (-28.974205, -25, 32.179115), (-30.618622, -25, 30.618622), (-29.651482, -27.231953, 29.651482), (-29.651482, -27.231953, 29.651482), (-30.618622, -25, 30.618622), (-32.179115, -25, 28.974205), (-31.162685, -27.231953, 28.059008), (-31.162685, -27.231953, 28.059008), (-32.179115, -25, 28.974205), (-33.65141, -25, 27.250372), (-32.58847, -27.231953, 26.389624), (-32.58847, -27.231953, 26.389624), (-33.65141, -25, 27.250372), (-35.031464, -25, 25.451847), (-33.92494, -27.231953, 24.64791), (-33.92494, -27.231953, 24.64791), (-35.031464, -25, 25.451847), (-36.315502, -25, 23.583563), (-35.168415, -27.231953, 22.838636), (-35.168415, -27.231953, 22.838636), (-36.315502, -25, 23.583563), (-37.5, -25, 21.650635), (-36.315502, -27.231953, 20.966764), (-36.315502, -27.231953, 20.966764), (-37.5, -25, 21.650635), (-38.581715, -25, 19.658365), (-37.36305, -27.231953, 19.037424), (-37.36305, -27.231953, 19.037424), (-38.581715, -25, 19.658365), (-39.55768, -25, 17.612213), (-38.308186, -27.231953, 17.055902), (-38.308186, -27.231953, 17.055902), (-39.55768, -25, 17.612213), (-40.425217, -25, 15.517787), (-39.148323, -27.231953, 15.027633), (-39.148323, -27.231953, 15.027633), (-40.425217, -25, 15.517787), (-41.181953, -25, 13.380828), (-39.881157, -27.231953, 12.958173), (-39.881157, -27.231953, 12.958173), (-41.181953, -25, 13.380828), (-41.825813, -25, 11.207193), (-40.504677, -27.231953, 10.853196), (-40.504677, -27.231953, 10.853196), (-41.825813, -25, 11.207193), (-42.355034, -25, 9.00284), (-41.01718, -27.231953, 8.718471), (-41.01718, -27.231953, 8.718471), (-42.355034, -25, 9.00284), (-42.768158, -25, 6.773811), (-41.417255, -27.231953, 6.5598493), (-41.417255, -27.231953, 6.5598493), (-42.768158, -25, 6.773811), (-43.06406, -25, 4.526215), (-41.70381, -27.231953, 4.3832474), (-41.70381, -27.231953, 4.3832474), (-43.06406, -25, 4.526215), (-43.24193, -25, 2.2662134), (-41.87606, -27.231953, 2.1946313), (-41.87606, -27.231953, 2.1946313), (-43.24193, -25, 2.2662134), (-43.30127, -25, 5.302876e-15), (-41.93353, -27.231953, 5.135376e-15), (-41.93353, -27.231953, 5.135376e-15), (-43.30127, -25, 5.302876e-15), (-43.24193, -25, -2.2662134), (-41.87606, -27.231953, -2.1946313), (-41.87606, -27.231953, -2.1946313), (-43.24193, -25, -2.2662134), (-43.06406, -25, -4.526215), (-41.70381, -27.231953, -4.3832474), (-41.70381, -27.231953, -4.3832474), (-43.06406, -25, -4.526215), (-42.768158, -25, -6.773811), (-41.417255, -27.231953, -6.5598493), (-41.417255, -27.231953, -6.5598493), (-42.768158, -25, -6.773811), (-42.355034, -25, -9.00284), (-41.01718, -27.231953, -8.718471), (-41.01718, -27.231953, -8.718471), (-42.355034, -25, -9.00284), (-41.825813, -25, -11.207193), (-40.504677, -27.231953, -10.853196), (-40.504677, -27.231953, -10.853196), (-41.825813, -25, -11.207193), (-41.181953, -25, -13.380828), (-39.881157, -27.231953, -12.958173), (-39.881157, -27.231953, -12.958173), (-41.181953, -25, -13.380828), (-40.425217, -25, -15.517787), (-39.148323, -27.231953, -15.027633), (-39.148323, -27.231953, -15.027633), (-40.425217, -25, -15.517787), (-39.55768, -25, -17.612213), (-38.308186, -27.231953, -17.055902), (-38.308186, -27.231953, -17.055902), (-39.55768, -25, -17.612213), (-38.581715, -25, -19.658365), (-37.36305, -27.231953, -19.037424), (-37.36305, -27.231953, -19.037424), (-38.581715, -25, -19.658365), (-37.5, -25, -21.650635), (-36.315502, -27.231953, -20.966764), (-36.315502, -27.231953, -20.966764), (-37.5, -25, -21.650635), (-36.315502, -25, -23.583563), (-35.168415, -27.231953, -22.838636), (-35.168415, -27.231953, -22.838636), (-36.315502, -25, -23.583563), (-35.031464, -25, -25.451847), (-33.92494, -27.231953, -24.64791), (-33.92494, -27.231953, -24.64791), (-35.031464, -25, -25.451847), (-33.65141, -25, -27.250372), (-32.58847, -27.231953, -26.389624), (-32.58847, -27.231953, -26.389624), (-33.65141, -25, -27.250372), (-32.179115, -25, -28.974205), (-31.162685, -27.231953, -28.059008), (-31.162685, -27.231953, -28.059008), (-32.179115, -25, -28.974205), (-30.618622, -25, -30.618622), (-29.651482, -27.231953, -29.651482), (-29.651482, -27.231953, -29.651482), (-30.618622, -25, -30.618622), (-28.974205, -25, -32.179115), (-28.059008, -27.231953, -31.162685), (-28.059008, -27.231953, -31.162685), (-28.974205, -25, -32.179115), (-27.250372, -25, -33.65141), (-26.389624, -27.231953, -32.58847), (-26.389624, -27.231953, -32.58847), (-27.250372, -25, -33.65141), (-25.451847, -25, -35.031464), (-24.64791, -27.231953, -33.92494), (-24.64791, -27.231953, -33.92494), (-25.451847, -25, -35.031464), (-23.583563, -25, -36.315502), (-22.838636, -27.231953, -35.168415), (-22.838636, -27.231953, -35.168415), (-23.583563, -25, -36.315502), (-21.650635, -25, -37.5), (-20.966764, -27.231953, -36.315502), (-20.966764, -27.231953, -36.315502), (-21.650635, -25, -37.5), (-19.658365, -25, -38.581715), (-19.037424, -27.231953, -37.36305), (-19.037424, -27.231953, -37.36305), (-19.658365, -25, -38.581715), (-17.612213, -25, -39.55768), (-17.055902, -27.231953, -38.308186), (-17.055902, -27.231953, -38.308186), (-17.612213, -25, -39.55768), (-15.517787, -25, -40.425217), (-15.027633, -27.231953, -39.148323), (-15.027633, -27.231953, -39.148323), (-15.517787, -25, -40.425217), (-13.380828, -25, -41.181953), (-12.958173, -27.231953, -39.881157), (-12.958173, -27.231953, -39.881157), (-13.380828, -25, -41.181953), (-11.207193, -25, -41.825813), (-10.853196, -27.231953, -40.504677), (-10.853196, -27.231953, -40.504677), (-11.207193, -25, -41.825813), (-9.00284, -25, -42.355034), (-8.718471, -27.231953, -41.01718), (-8.718471, -27.231953, -41.01718), (-9.00284, -25, -42.355034), (-6.773811, -25, -42.768158), (-6.5598493, -27.231953, -41.417255), (-6.5598493, -27.231953, -41.417255), (-6.773811, -25, -42.768158), (-4.526215, -25, -43.06406), (-4.3832474, -27.231953, -41.70381), (-4.3832474, -27.231953, -41.70381), (-4.526215, -25, -43.06406), (-2.2662134, -25, -43.24193), (-2.1946313, -27.231953, -41.87606), (-2.1946313, -27.231953, -41.87606), (-2.2662134, -25, -43.24193), (-7.9543145e-15, -25, -43.30127), (-7.703064e-15, -27.231953, -41.93353), (-7.703064e-15, -27.231953, -41.93353), (-7.9543145e-15, -25, -43.30127), (2.2662134, -25, -43.24193), (2.1946313, -27.231953, -41.87606), (2.1946313, -27.231953, -41.87606), (2.2662134, -25, -43.24193), (4.526215, -25, -43.06406), (4.3832474, -27.231953, -41.70381), (4.3832474, -27.231953, -41.70381), (4.526215, -25, -43.06406), (6.773811, -25, -42.768158), (6.5598493, -27.231953, -41.417255), (6.5598493, -27.231953, -41.417255), (6.773811, -25, -42.768158), (9.00284, -25, -42.355034), (8.718471, -27.231953, -41.01718), (8.718471, -27.231953, -41.01718), (9.00284, -25, -42.355034), (11.207193, -25, -41.825813), (10.853196, -27.231953, -40.504677), (10.853196, -27.231953, -40.504677), (11.207193, -25, -41.825813), (13.380828, -25, -41.181953), (12.958173, -27.231953, -39.881157), (12.958173, -27.231953, -39.881157), (13.380828, -25, -41.181953), (15.517787, -25, -40.425217), (15.027633, -27.231953, -39.148323), (15.027633, -27.231953, -39.148323), (15.517787, -25, -40.425217), (17.612213, -25, -39.55768), (17.055902, -27.231953, -38.308186), (17.055902, -27.231953, -38.308186), (17.612213, -25, -39.55768), (19.658365, -25, -38.581715), (19.037424, -27.231953, -37.36305), (19.037424, -27.231953, -37.36305), (19.658365, -25, -38.581715), (21.650635, -25, -37.5), (20.966764, -27.231953, -36.315502), (20.966764, -27.231953, -36.315502), (21.650635, -25, -37.5), (23.583563, -25, -36.315502), (22.838636, -27.231953, -35.168415), (22.838636, -27.231953, -35.168415), (23.583563, -25, -36.315502), (25.451847, -25, -35.031464), (24.64791, -27.231953, -33.92494), (24.64791, -27.231953, -33.92494), (25.451847, -25, -35.031464), (27.250372, -25, -33.65141), (26.389624, -27.231953, -32.58847), (26.389624, -27.231953, -32.58847), (27.250372, -25, -33.65141), (28.974205, -25, -32.179115), (28.059008, -27.231953, -31.162685), (28.059008, -27.231953, -31.162685), (28.974205, -25, -32.179115), (30.618622, -25, -30.618622), (29.651482, -27.231953, -29.651482), (29.651482, -27.231953, -29.651482), (30.618622, -25, -30.618622), (32.179115, -25, -28.974205), (31.162685, -27.231953, -28.059008), (31.162685, -27.231953, -28.059008), (32.179115, -25, -28.974205), (33.65141, -25, -27.250372), (32.58847, -27.231953, -26.389624), (32.58847, -27.231953, -26.389624), (33.65141, -25, -27.250372), (35.031464, -25, -25.451847), (33.92494, -27.231953, -24.64791), (33.92494, -27.231953, -24.64791), (35.031464, -25, -25.451847), (36.315502, -25, -23.583563), (35.168415, -27.231953, -22.838636), (35.168415, -27.231953, -22.838636), (36.315502, -25, -23.583563), (37.5, -25, -21.650635), (36.315502, -27.231953, -20.966764), (36.315502, -27.231953, -20.966764), (37.5, -25, -21.650635), (38.581715, -25, -19.658365), (37.36305, -27.231953, -19.037424), (37.36305, -27.231953, -19.037424), (38.581715, -25, -19.658365), (39.55768, -25, -17.612213), (38.308186, -27.231953, -17.055902), (38.308186, -27.231953, -17.055902), (39.55768, -25, -17.612213), (40.425217, -25, -15.517787), (39.148323, -27.231953, -15.027633), (39.148323, -27.231953, -15.027633), (40.425217, -25, -15.517787), (41.181953, -25, -13.380828), (39.881157, -27.231953, -12.958173), (39.881157, -27.231953, -12.958173), (41.181953, -25, -13.380828), (41.825813, -25, -11.207193), (40.504677, -27.231953, -10.853196), (40.504677, -27.231953, -10.853196), (41.825813, -25, -11.207193), (42.355034, -25, -9.00284), (41.01718, -27.231953, -8.718471), (41.01718, -27.231953, -8.718471), (42.355034, -25, -9.00284), (42.768158, -25, -6.773811), (41.417255, -27.231953, -6.5598493), (41.417255, -27.231953, -6.5598493), (42.768158, -25, -6.773811), (43.06406, -25, -4.526215), (41.70381, -27.231953, -4.3832474), (41.70381, -27.231953, -4.3832474), (43.06406, -25, -4.526215), (43.24193, -25, -2.2662134), (41.87606, -27.231953, -2.1946313), (41.87606, -27.231953, -2.1946313), (43.24193, -25, -2.2662134), (43.30127, -25, 0), (41.93353, -27.231953, 0), (43.30127, -25, 0), (44.550327, -22.699526, 0), (44.489273, -22.699526, 2.331584), (43.24193, -25, 2.2662134), (43.24193, -25, 2.2662134), (44.489273, -22.699526, 2.331584), (44.306274, -22.699526, 4.656777), (43.06406, -25, 4.526215), (43.06406, -25, 4.526215), (44.306274, -22.699526, 4.656777), (44.00184, -22.699526, 6.9692063), (42.768158, -25, 6.773811), (42.768158, -25, 6.773811), (44.00184, -22.699526, 6.9692063), (43.576794, -22.699526, 9.262533), (42.355034, -25, 9.00284), (42.355034, -25, 9.00284), (43.576794, -22.699526, 9.262533), (43.03231, -22.699526, 11.530473), (41.825813, -25, 11.207193), (41.825813, -25, 11.207193), (43.03231, -22.699526, 11.530473), (42.369877, -22.699526, 13.766808), (41.181953, -25, 13.380828), (41.181953, -25, 13.380828), (42.369877, -22.699526, 13.766808), (41.591312, -22.699526, 15.965409), (40.425217, -25, 15.517787), (40.425217, -25, 15.517787), (41.591312, -22.699526, 15.965409), (40.69875, -22.699526, 18.12025), (39.55768, -25, 17.612213), (39.55768, -25, 17.612213), (40.69875, -22.699526, 18.12025), (39.69463, -22.699526, 20.225426), (38.581715, -25, 19.658365), (38.581715, -25, 19.658365), (39.69463, -22.699526, 20.225426), (38.581715, -22.699526, 22.275164), (37.5, -25, 21.650635), (37.5, -25, 21.650635), (38.581715, -22.699526, 22.275164), (37.36305, -22.699526, 24.263847), (36.315502, -25, 23.583563), (36.315502, -25, 23.583563), (37.36305, -22.699526, 24.263847), (36.04197, -22.699526, 26.186026), (35.031464, -25, 25.451847), (35.031464, -25, 25.451847), (36.04197, -22.699526, 26.186026), (34.622105, -22.699526, 28.036428), (33.65141, -25, 27.250372), (33.65141, -25, 27.250372), (34.622105, -22.699526, 28.036428), (33.107346, -22.699526, 29.809986), (32.179115, -25, 28.974205), (32.179115, -25, 28.974205), (33.107346, -22.699526, 29.809986), (31.501839, -22.699526, 31.501839), (30.618622, -25, 30.618622), (30.618622, -25, 30.618622), (31.501839, -22.699526, 31.501839), (29.809986, -22.699526, 33.107346), (28.974205, -25, 32.179115), (28.974205, -25, 32.179115), (29.809986, -22.699526, 33.107346), (28.036428, -22.699526, 34.622105), (27.250372, -25, 33.65141), (27.250372, -25, 33.65141), (28.036428, -22.699526, 34.622105), (26.186026, -22.699526, 36.04197), (25.451847, -25, 35.031464), (25.451847, -25, 35.031464), (26.186026, -22.699526, 36.04197), (24.263847, -22.699526, 37.36305), (23.583563, -25, 36.315502), (23.583563, -25, 36.315502), (24.263847, -22.699526, 37.36305), (22.275164, -22.699526, 38.581715), (21.650635, -25, 37.5), (21.650635, -25, 37.5), (22.275164, -22.699526, 38.581715), (20.225426, -22.699526, 39.69463), (19.658365, -25, 38.581715), (19.658365, -25, 38.581715), (20.225426, -22.699526, 39.69463), (18.12025, -22.699526, 40.69875), (17.612213, -25, 39.55768), (17.612213, -25, 39.55768), (18.12025, -22.699526, 40.69875), (15.965409, -22.699526, 41.591312), (15.517787, -25, 40.425217), (15.517787, -25, 40.425217), (15.965409, -22.699526, 41.591312), (13.766808, -22.699526, 42.369877), (13.380828, -25, 41.181953), (13.380828, -25, 41.181953), (13.766808, -22.699526, 42.369877), (11.530473, -22.699526, 43.03231), (11.207193, -25, 41.825813), (11.207193, -25, 41.825813), (11.530473, -22.699526, 43.03231), (9.262533, -22.699526, 43.576794), (9.00284, -25, 42.355034), (9.00284, -25, 42.355034), (9.262533, -22.699526, 43.576794), (6.9692063, -22.699526, 44.00184), (6.773811, -25, 42.768158), (6.773811, -25, 42.768158), (6.9692063, -22.699526, 44.00184), (4.656777, -22.699526, 44.306274), (4.526215, -25, 43.06406), (4.526215, -25, 43.06406), (4.656777, -22.699526, 44.306274), (2.331584, -22.699526, 44.489273), (2.2662134, -25, 43.24193), (2.2662134, -25, 43.24193), (2.331584, -22.699526, 44.489273), (2.7279206e-15, -22.699526, 44.550327), (2.651438e-15, -25, 43.30127), (2.651438e-15, -25, 43.30127), (2.7279206e-15, -22.699526, 44.550327), (-2.331584, -22.699526, 44.489273), (-2.2662134, -25, 43.24193), (-2.2662134, -25, 43.24193), (-2.331584, -22.699526, 44.489273), (-4.656777, -22.699526, 44.306274), (-4.526215, -25, 43.06406), (-4.526215, -25, 43.06406), (-4.656777, -22.699526, 44.306274), (-6.9692063, -22.699526, 44.00184), (-6.773811, -25, 42.768158), (-6.773811, -25, 42.768158), (-6.9692063, -22.699526, 44.00184), (-9.262533, -22.699526, 43.576794), (-9.00284, -25, 42.355034), (-9.00284, -25, 42.355034), (-9.262533, -22.699526, 43.576794), (-11.530473, -22.699526, 43.03231), (-11.207193, -25, 41.825813), (-11.207193, -25, 41.825813), (-11.530473, -22.699526, 43.03231), (-13.766808, -22.699526, 42.369877), (-13.380828, -25, 41.181953), (-13.380828, -25, 41.181953), (-13.766808, -22.699526, 42.369877), (-15.965409, -22.699526, 41.591312), (-15.517787, -25, 40.425217), (-15.517787, -25, 40.425217), (-15.965409, -22.699526, 41.591312), (-18.12025, -22.699526, 40.69875), (-17.612213, -25, 39.55768), (-17.612213, -25, 39.55768), (-18.12025, -22.699526, 40.69875), (-20.225426, -22.699526, 39.69463), (-19.658365, -25, 38.581715), (-19.658365, -25, 38.581715), (-20.225426, -22.699526, 39.69463), (-22.275164, -22.699526, 38.581715), (-21.650635, -25, 37.5), (-21.650635, -25, 37.5), (-22.275164, -22.699526, 38.581715), (-24.263847, -22.699526, 37.36305), (-23.583563, -25, 36.315502), (-23.583563, -25, 36.315502), (-24.263847, -22.699526, 37.36305), (-26.186026, -22.699526, 36.04197), (-25.451847, -25, 35.031464), (-25.451847, -25, 35.031464), (-26.186026, -22.699526, 36.04197), (-28.036428, -22.699526, 34.622105), (-27.250372, -25, 33.65141), (-27.250372, -25, 33.65141), (-28.036428, -22.699526, 34.622105), (-29.809986, -22.699526, 33.107346), (-28.974205, -25, 32.179115), (-28.974205, -25, 32.179115), (-29.809986, -22.699526, 33.107346), (-31.501839, -22.699526, 31.501839), (-30.618622, -25, 30.618622), (-30.618622, -25, 30.618622), (-31.501839, -22.699526, 31.501839), (-33.107346, -22.699526, 29.809986), (-32.179115, -25, 28.974205), (-32.179115, -25, 28.974205), (-33.107346, -22.699526, 29.809986), (-34.622105, -22.699526, 28.036428), (-33.65141, -25, 27.250372), (-33.65141, -25, 27.250372), (-34.622105, -22.699526, 28.036428), (-36.04197, -22.699526, 26.186026), (-35.031464, -25, 25.451847), (-35.031464, -25, 25.451847), (-36.04197, -22.699526, 26.186026), (-37.36305, -22.699526, 24.263847), (-36.315502, -25, 23.583563), (-36.315502, -25, 23.583563), (-37.36305, -22.699526, 24.263847), (-38.581715, -22.699526, 22.275164), (-37.5, -25, 21.650635), (-37.5, -25, 21.650635), (-38.581715, -22.699526, 22.275164), (-39.69463, -22.699526, 20.225426), (-38.581715, -25, 19.658365), (-38.581715, -25, 19.658365), (-39.69463, -22.699526, 20.225426), (-40.69875, -22.699526, 18.12025), (-39.55768, -25, 17.612213), (-39.55768, -25, 17.612213), (-40.69875, -22.699526, 18.12025), (-41.591312, -22.699526, 15.965409), (-40.425217, -25, 15.517787), (-40.425217, -25, 15.517787), (-41.591312, -22.699526, 15.965409), (-42.369877, -22.699526, 13.766808), (-41.181953, -25, 13.380828), (-41.181953, -25, 13.380828), (-42.369877, -22.699526, 13.766808), (-43.03231, -22.699526, 11.530473), (-41.825813, -25, 11.207193), (-41.825813, -25, 11.207193), (-43.03231, -22.699526, 11.530473), (-43.576794, -22.699526, 9.262533), (-42.355034, -25, 9.00284), (-42.355034, -25, 9.00284), (-43.576794, -22.699526, 9.262533), (-44.00184, -22.699526, 6.9692063), (-42.768158, -25, 6.773811), (-42.768158, -25, 6.773811), (-44.00184, -22.699526, 6.9692063), (-44.306274, -22.699526, 4.656777), (-43.06406, -25, 4.526215), (-43.06406, -25, 4.526215), (-44.306274, -22.699526, 4.656777), (-44.489273, -22.699526, 2.331584), (-43.24193, -25, 2.2662134), (-43.24193, -25, 2.2662134), (-44.489273, -22.699526, 2.331584), (-44.550327, -22.699526, 5.4558413e-15), (-43.30127, -25, 5.302876e-15), (-43.30127, -25, 5.302876e-15), (-44.550327, -22.699526, 5.4558413e-15), (-44.489273, -22.699526, -2.331584), (-43.24193, -25, -2.2662134), (-43.24193, -25, -2.2662134), (-44.489273, -22.699526, -2.331584), (-44.306274, -22.699526, -4.656777), (-43.06406, -25, -4.526215), (-43.06406, -25, -4.526215), (-44.306274, -22.699526, -4.656777), (-44.00184, -22.699526, -6.9692063), (-42.768158, -25, -6.773811), (-42.768158, -25, -6.773811), (-44.00184, -22.699526, -6.9692063), (-43.576794, -22.699526, -9.262533), (-42.355034, -25, -9.00284), (-42.355034, -25, -9.00284), (-43.576794, -22.699526, -9.262533), (-43.03231, -22.699526, -11.530473), (-41.825813, -25, -11.207193), (-41.825813, -25, -11.207193), (-43.03231, -22.699526, -11.530473), (-42.369877, -22.699526, -13.766808), (-41.181953, -25, -13.380828), (-41.181953, -25, -13.380828), (-42.369877, -22.699526, -13.766808), (-41.591312, -22.699526, -15.965409), (-40.425217, -25, -15.517787), (-40.425217, -25, -15.517787), (-41.591312, -22.699526, -15.965409), (-40.69875, -22.699526, -18.12025), (-39.55768, -25, -17.612213), (-39.55768, -25, -17.612213), (-40.69875, -22.699526, -18.12025), (-39.69463, -22.699526, -20.225426), (-38.581715, -25, -19.658365), (-38.581715, -25, -19.658365), (-39.69463, -22.699526, -20.225426), (-38.581715, -22.699526, -22.275164), (-37.5, -25, -21.650635), (-37.5, -25, -21.650635), (-38.581715, -22.699526, -22.275164), (-37.36305, -22.699526, -24.263847), (-36.315502, -25, -23.583563), (-36.315502, -25, -23.583563), (-37.36305, -22.699526, -24.263847), (-36.04197, -22.699526, -26.186026), (-35.031464, -25, -25.451847), (-35.031464, -25, -25.451847), (-36.04197, -22.699526, -26.186026), (-34.622105, -22.699526, -28.036428), (-33.65141, -25, -27.250372), (-33.65141, -25, -27.250372), (-34.622105, -22.699526, -28.036428), (-33.107346, -22.699526, -29.809986), (-32.179115, -25, -28.974205), (-32.179115, -25, -28.974205), (-33.107346, -22.699526, -29.809986), (-31.501839, -22.699526, -31.501839), (-30.618622, -25, -30.618622), (-30.618622, -25, -30.618622), (-31.501839, -22.699526, -31.501839), (-29.809986, -22.699526, -33.107346), (-28.974205, -25, -32.179115), (-28.974205, -25, -32.179115), (-29.809986, -22.699526, -33.107346), (-28.036428, -22.699526, -34.622105), (-27.250372, -25, -33.65141), (-27.250372, -25, -33.65141), (-28.036428, -22.699526, -34.622105), (-26.186026, -22.699526, -36.04197), (-25.451847, -25, -35.031464), (-25.451847, -25, -35.031464), (-26.186026, -22.699526, -36.04197), (-24.263847, -22.699526, -37.36305), (-23.583563, -25, -36.315502), (-23.583563, -25, -36.315502), (-24.263847, -22.699526, -37.36305), (-22.275164, -22.699526, -38.581715), (-21.650635, -25, -37.5), (-21.650635, -25, -37.5), (-22.275164, -22.699526, -38.581715), (-20.225426, -22.699526, -39.69463), (-19.658365, -25, -38.581715), (-19.658365, -25, -38.581715), (-20.225426, -22.699526, -39.69463), (-18.12025, -22.699526, -40.69875), (-17.612213, -25, -39.55768), (-17.612213, -25, -39.55768), (-18.12025, -22.699526, -40.69875), (-15.965409, -22.699526, -41.591312), (-15.517787, -25, -40.425217), (-15.517787, -25, -40.425217), (-15.965409, -22.699526, -41.591312), (-13.766808, -22.699526, -42.369877), (-13.380828, -25, -41.181953), (-13.380828, -25, -41.181953), (-13.766808, -22.699526, -42.369877), (-11.530473, -22.699526, -43.03231), (-11.207193, -25, -41.825813), (-11.207193, -25, -41.825813), (-11.530473, -22.699526, -43.03231), (-9.262533, -22.699526, -43.576794), (-9.00284, -25, -42.355034), (-9.00284, -25, -42.355034), (-9.262533, -22.699526, -43.576794), (-6.9692063, -22.699526, -44.00184), (-6.773811, -25, -42.768158), (-6.773811, -25, -42.768158), (-6.9692063, -22.699526, -44.00184), (-4.656777, -22.699526, -44.306274), (-4.526215, -25, -43.06406), (-4.526215, -25, -43.06406), (-4.656777, -22.699526, -44.306274), (-2.331584, -22.699526, -44.489273), (-2.2662134, -25, -43.24193), (-2.2662134, -25, -43.24193), (-2.331584, -22.699526, -44.489273), (-8.183762e-15, -22.699526, -44.550327), (-7.9543145e-15, -25, -43.30127), (-7.9543145e-15, -25, -43.30127), (-8.183762e-15, -22.699526, -44.550327), (2.331584, -22.699526, -44.489273), (2.2662134, -25, -43.24193), (2.2662134, -25, -43.24193), (2.331584, -22.699526, -44.489273), (4.656777, -22.699526, -44.306274), (4.526215, -25, -43.06406), (4.526215, -25, -43.06406), (4.656777, -22.699526, -44.306274), (6.9692063, -22.699526, -44.00184), (6.773811, -25, -42.768158), (6.773811, -25, -42.768158), (6.9692063, -22.699526, -44.00184), (9.262533, -22.699526, -43.576794), (9.00284, -25, -42.355034), (9.00284, -25, -42.355034), (9.262533, -22.699526, -43.576794), (11.530473, -22.699526, -43.03231), (11.207193, -25, -41.825813), (11.207193, -25, -41.825813), (11.530473, -22.699526, -43.03231), (13.766808, -22.699526, -42.369877), (13.380828, -25, -41.181953), (13.380828, -25, -41.181953), (13.766808, -22.699526, -42.369877), (15.965409, -22.699526, -41.591312), (15.517787, -25, -40.425217), (15.517787, -25, -40.425217), (15.965409, -22.699526, -41.591312), (18.12025, -22.699526, -40.69875), (17.612213, -25, -39.55768), (17.612213, -25, -39.55768), (18.12025, -22.699526, -40.69875), (20.225426, -22.699526, -39.69463), (19.658365, -25, -38.581715), (19.658365, -25, -38.581715), (20.225426, -22.699526, -39.69463), (22.275164, -22.699526, -38.581715), (21.650635, -25, -37.5), (21.650635, -25, -37.5), (22.275164, -22.699526, -38.581715), (24.263847, -22.699526, -37.36305), (23.583563, -25, -36.315502), (23.583563, -25, -36.315502), (24.263847, -22.699526, -37.36305), (26.186026, -22.699526, -36.04197), (25.451847, -25, -35.031464), (25.451847, -25, -35.031464), (26.186026, -22.699526, -36.04197), (28.036428, -22.699526, -34.622105), (27.250372, -25, -33.65141), (27.250372, -25, -33.65141), (28.036428, -22.699526, -34.622105), (29.809986, -22.699526, -33.107346), (28.974205, -25, -32.179115), (28.974205, -25, -32.179115), (29.809986, -22.699526, -33.107346), (31.501839, -22.699526, -31.501839), (30.618622, -25, -30.618622), (30.618622, -25, -30.618622), (31.501839, -22.699526, -31.501839), (33.107346, -22.699526, -29.809986), (32.179115, -25, -28.974205), (32.179115, -25, -28.974205), (33.107346, -22.699526, -29.809986), (34.622105, -22.699526, -28.036428), (33.65141, -25, -27.250372), (33.65141, -25, -27.250372), (34.622105, -22.699526, -28.036428), (36.04197, -22.699526, -26.186026), (35.031464, -25, -25.451847), (35.031464, -25, -25.451847), (36.04197, -22.699526, -26.186026), (37.36305, -22.699526, -24.263847), (36.315502, -25, -23.583563), (36.315502, -25, -23.583563), (37.36305, -22.699526, -24.263847), (38.581715, -22.699526, -22.275164), (37.5, -25, -21.650635), (37.5, -25, -21.650635), (38.581715, -22.699526, -22.275164), (39.69463, -22.699526, -20.225426), (38.581715, -25, -19.658365), (38.581715, -25, -19.658365), (39.69463, -22.699526, -20.225426), (40.69875, -22.699526, -18.12025), (39.55768, -25, -17.612213), (39.55768, -25, -17.612213), (40.69875, -22.699526, -18.12025), (41.591312, -22.699526, -15.965409), (40.425217, -25, -15.517787), (40.425217, -25, -15.517787), (41.591312, -22.699526, -15.965409), (42.369877, -22.699526, -13.766808), (41.181953, -25, -13.380828), (41.181953, -25, -13.380828), (42.369877, -22.699526, -13.766808), (43.03231, -22.699526, -11.530473), (41.825813, -25, -11.207193), (41.825813, -25, -11.207193), (43.03231, -22.699526, -11.530473), (43.576794, -22.699526, -9.262533), (42.355034, -25, -9.00284), (42.355034, -25, -9.00284), (43.576794, -22.699526, -9.262533), (44.00184, -22.699526, -6.9692063), (42.768158, -25, -6.773811), (42.768158, -25, -6.773811), (44.00184, -22.699526, -6.9692063), (44.306274, -22.699526, -4.656777), (43.06406, -25, -4.526215), (43.06406, -25, -4.526215), (44.306274, -22.699526, -4.656777), (44.489273, -22.699526, -2.331584), (43.24193, -25, -2.2662134), (43.24193, -25, -2.2662134), (44.489273, -22.699526, -2.331584), (44.550327, -22.699526, 0), (43.30127, -25, 0), (44.550327, -22.699526, 0), (45.677273, -20.336832, 0), (45.614674, -20.336832, 2.3905637), (44.489273, -22.699526, 2.331584), (44.489273, -22.699526, 2.331584), (45.614674, -20.336832, 2.3905637), (45.427048, -20.336832, 4.774575), (44.306274, -22.699526, 4.656777), (44.306274, -22.699526, 4.656777), (45.427048, -20.336832, 4.774575), (45.11491, -20.336832, 7.1454997), (44.00184, -22.699526, 6.9692063), (44.00184, -22.699526, 6.9692063), (45.11491, -20.336832, 7.1454997), (44.679115, -20.336832, 9.496839), (43.576794, -22.699526, 9.262533), (43.576794, -22.699526, 9.262533), (44.679115, -20.336832, 9.496839), (44.120857, -20.336832, 11.822148), (43.03231, -22.699526, 11.530473), (43.03231, -22.699526, 11.530473), (44.120857, -20.336832, 11.822148), (43.44167, -20.336832, 14.115053), (42.369877, -22.699526, 13.766808), (42.369877, -22.699526, 13.766808), (43.44167, -20.336832, 14.115053), (42.64341, -20.336832, 16.36927), (41.591312, -22.699526, 15.965409), (41.591312, -22.699526, 15.965409), (42.64341, -20.336832, 16.36927), (41.728264, -20.336832, 18.57862), (40.69875, -22.699526, 18.12025), (40.69875, -22.699526, 18.12025), (41.728264, -20.336832, 18.57862), (40.69875, -20.336832, 20.737047), (39.69463, -22.699526, 20.225426), (39.69463, -22.699526, 20.225426), (40.69875, -20.336832, 20.737047), (39.55768, -20.336832, 22.838636), (38.581715, -22.699526, 22.275164), (38.581715, -22.699526, 22.275164), (39.55768, -20.336832, 22.838636), (38.308186, -20.336832, 24.877626), (37.36305, -22.699526, 24.263847), (37.36305, -22.699526, 24.263847), (38.308186, -20.336832, 24.877626), (36.95369, -20.336832, 26.848427), (36.04197, -22.699526, 26.186026), (36.04197, -22.699526, 26.186026), (36.95369, -20.336832, 26.848427), (35.49791, -20.336832, 28.74564), (34.622105, -22.699526, 28.036428), (34.622105, -22.699526, 28.036428), (35.49791, -20.336832, 28.74564), (33.944828, -20.336832, 30.564062), (33.107346, -22.699526, 29.809986), (33.107346, -22.699526, 29.809986), (33.944828, -20.336832, 30.564062), (32.29871, -20.336832, 32.29871), (31.501839, -22.699526, 31.501839), (31.501839, -22.699526, 31.501839), (32.29871, -20.336832, 32.29871), (30.564062, -20.336832, 33.944828), (29.809986, -22.699526, 33.107346), (29.809986, -22.699526, 33.107346), (30.564062, -20.336832, 33.944828), (28.74564, -20.336832, 35.49791), (28.036428, -22.699526, 34.622105), (28.036428, -22.699526, 34.622105), (28.74564, -20.336832, 35.49791), (26.848427, -20.336832, 36.95369), (26.186026, -22.699526, 36.04197), (26.186026, -22.699526, 36.04197), (26.848427, -20.336832, 36.95369), (24.877626, -20.336832, 38.308186), (24.263847, -22.699526, 37.36305), (24.263847, -22.699526, 37.36305), (24.877626, -20.336832, 38.308186), (22.838636, -20.336832, 39.55768), (22.275164, -22.699526, 38.581715), (22.275164, -22.699526, 38.581715), (22.838636, -20.336832, 39.55768), (20.737047, -20.336832, 40.69875), (20.225426, -22.699526, 39.69463), (20.225426, -22.699526, 39.69463), (20.737047, -20.336832, 40.69875), (18.57862, -20.336832, 41.728264), (18.12025, -22.699526, 40.69875), (18.12025, -22.699526, 40.69875), (18.57862, -20.336832, 41.728264), (16.36927, -20.336832, 42.64341), (15.965409, -22.699526, 41.591312), (15.965409, -22.699526, 41.591312), (16.36927, -20.336832, 42.64341), (14.115053, -20.336832, 43.44167), (13.766808, -22.699526, 42.369877), (13.766808, -22.699526, 42.369877), (14.115053, -20.336832, 43.44167), (11.822148, -20.336832, 44.120857), (11.530473, -22.699526, 43.03231), (11.530473, -22.699526, 43.03231), (11.822148, -20.336832, 44.120857), (9.496839, -20.336832, 44.679115), (9.262533, -22.699526, 43.576794), (9.262533, -22.699526, 43.576794), (9.496839, -20.336832, 44.679115), (7.1454997, -20.336832, 45.11491), (6.9692063, -22.699526, 44.00184), (6.9692063, -22.699526, 44.00184), (7.1454997, -20.336832, 45.11491), (4.774575, -20.336832, 45.427048), (4.656777, -22.699526, 44.306274), (4.656777, -22.699526, 44.306274), (4.774575, -20.336832, 45.427048), (2.3905637, -20.336832, 45.614674), (2.331584, -22.699526, 44.489273), (2.331584, -22.699526, 44.489273), (2.3905637, -20.336832, 45.614674), (2.7969263e-15, -20.336832, 45.677273), (2.7279206e-15, -22.699526, 44.550327), (2.7279206e-15, -22.699526, 44.550327), (2.7969263e-15, -20.336832, 45.677273), (-2.3905637, -20.336832, 45.614674), (-2.331584, -22.699526, 44.489273), (-2.331584, -22.699526, 44.489273), (-2.3905637, -20.336832, 45.614674), (-4.774575, -20.336832, 45.427048), (-4.656777, -22.699526, 44.306274), (-4.656777, -22.699526, 44.306274), (-4.774575, -20.336832, 45.427048), (-7.1454997, -20.336832, 45.11491), (-6.9692063, -22.699526, 44.00184), (-6.9692063, -22.699526, 44.00184), (-7.1454997, -20.336832, 45.11491), (-9.496839, -20.336832, 44.679115), (-9.262533, -22.699526, 43.576794), (-9.262533, -22.699526, 43.576794), (-9.496839, -20.336832, 44.679115), (-11.822148, -20.336832, 44.120857), (-11.530473, -22.699526, 43.03231), (-11.530473, -22.699526, 43.03231), (-11.822148, -20.336832, 44.120857), (-14.115053, -20.336832, 43.44167), (-13.766808, -22.699526, 42.369877), (-13.766808, -22.699526, 42.369877), (-14.115053, -20.336832, 43.44167), (-16.36927, -20.336832, 42.64341), (-15.965409, -22.699526, 41.591312), (-15.965409, -22.699526, 41.591312), (-16.36927, -20.336832, 42.64341), (-18.57862, -20.336832, 41.728264), (-18.12025, -22.699526, 40.69875), (-18.12025, -22.699526, 40.69875), (-18.57862, -20.336832, 41.728264), (-20.737047, -20.336832, 40.69875), (-20.225426, -22.699526, 39.69463), (-20.225426, -22.699526, 39.69463), (-20.737047, -20.336832, 40.69875), (-22.838636, -20.336832, 39.55768), (-22.275164, -22.699526, 38.581715), (-22.275164, -22.699526, 38.581715), (-22.838636, -20.336832, 39.55768), (-24.877626, -20.336832, 38.308186), (-24.263847, -22.699526, 37.36305), (-24.263847, -22.699526, 37.36305), (-24.877626, -20.336832, 38.308186), (-26.848427, -20.336832, 36.95369), (-26.186026, -22.699526, 36.04197), (-26.186026, -22.699526, 36.04197), (-26.848427, -20.336832, 36.95369), (-28.74564, -20.336832, 35.49791), (-28.036428, -22.699526, 34.622105), (-28.036428, -22.699526, 34.622105), (-28.74564, -20.336832, 35.49791), (-30.564062, -20.336832, 33.944828), (-29.809986, -22.699526, 33.107346), (-29.809986, -22.699526, 33.107346), (-30.564062, -20.336832, 33.944828), (-32.29871, -20.336832, 32.29871), (-31.501839, -22.699526, 31.501839), (-31.501839, -22.699526, 31.501839), (-32.29871, -20.336832, 32.29871), (-33.944828, -20.336832, 30.564062), (-33.107346, -22.699526, 29.809986), (-33.107346, -22.699526, 29.809986), (-33.944828, -20.336832, 30.564062), (-35.49791, -20.336832, 28.74564), (-34.622105, -22.699526, 28.036428), (-34.622105, -22.699526, 28.036428), (-35.49791, -20.336832, 28.74564), (-36.95369, -20.336832, 26.848427), (-36.04197, -22.699526, 26.186026), (-36.04197, -22.699526, 26.186026), (-36.95369, -20.336832, 26.848427), (-38.308186, -20.336832, 24.877626), (-37.36305, -22.699526, 24.263847), (-37.36305, -22.699526, 24.263847), (-38.308186, -20.336832, 24.877626), (-39.55768, -20.336832, 22.838636), (-38.581715, -22.699526, 22.275164), (-38.581715, -22.699526, 22.275164), (-39.55768, -20.336832, 22.838636), (-40.69875, -20.336832, 20.737047), (-39.69463, -22.699526, 20.225426), (-39.69463, -22.699526, 20.225426), (-40.69875, -20.336832, 20.737047), (-41.728264, -20.336832, 18.57862), (-40.69875, -22.699526, 18.12025), (-40.69875, -22.699526, 18.12025), (-41.728264, -20.336832, 18.57862), (-42.64341, -20.336832, 16.36927), (-41.591312, -22.699526, 15.965409), (-41.591312, -22.699526, 15.965409), (-42.64341, -20.336832, 16.36927), (-43.44167, -20.336832, 14.115053), (-42.369877, -22.699526, 13.766808), (-42.369877, -22.699526, 13.766808), (-43.44167, -20.336832, 14.115053), (-44.120857, -20.336832, 11.822148), (-43.03231, -22.699526, 11.530473), (-43.03231, -22.699526, 11.530473), (-44.120857, -20.336832, 11.822148), (-44.679115, -20.336832, 9.496839), (-43.576794, -22.699526, 9.262533), (-43.576794, -22.699526, 9.262533), (-44.679115, -20.336832, 9.496839), (-45.11491, -20.336832, 7.1454997), (-44.00184, -22.699526, 6.9692063), (-44.00184, -22.699526, 6.9692063), (-45.11491, -20.336832, 7.1454997), (-45.427048, -20.336832, 4.774575), (-44.306274, -22.699526, 4.656777), (-44.306274, -22.699526, 4.656777), (-45.427048, -20.336832, 4.774575), (-45.614674, -20.336832, 2.3905637), (-44.489273, -22.699526, 2.331584), (-44.489273, -22.699526, 2.331584), (-45.614674, -20.336832, 2.3905637), (-45.677273, -20.336832, 5.5938526e-15), (-44.550327, -22.699526, 5.4558413e-15), (-44.550327, -22.699526, 5.4558413e-15), (-45.677273, -20.336832, 5.5938526e-15), (-45.614674, -20.336832, -2.3905637), (-44.489273, -22.699526, -2.331584), (-44.489273, -22.699526, -2.331584), (-45.614674, -20.336832, -2.3905637), (-45.427048, -20.336832, -4.774575), (-44.306274, -22.699526, -4.656777), (-44.306274, -22.699526, -4.656777), (-45.427048, -20.336832, -4.774575), (-45.11491, -20.336832, -7.1454997), (-44.00184, -22.699526, -6.9692063), (-44.00184, -22.699526, -6.9692063), (-45.11491, -20.336832, -7.1454997), (-44.679115, -20.336832, -9.496839), (-43.576794, -22.699526, -9.262533), (-43.576794, -22.699526, -9.262533), (-44.679115, -20.336832, -9.496839), (-44.120857, -20.336832, -11.822148), (-43.03231, -22.699526, -11.530473), (-43.03231, -22.699526, -11.530473), (-44.120857, -20.336832, -11.822148), (-43.44167, -20.336832, -14.115053), (-42.369877, -22.699526, -13.766808), (-42.369877, -22.699526, -13.766808), (-43.44167, -20.336832, -14.115053), (-42.64341, -20.336832, -16.36927), (-41.591312, -22.699526, -15.965409), (-41.591312, -22.699526, -15.965409), (-42.64341, -20.336832, -16.36927), (-41.728264, -20.336832, -18.57862), (-40.69875, -22.699526, -18.12025), (-40.69875, -22.699526, -18.12025), (-41.728264, -20.336832, -18.57862), (-40.69875, -20.336832, -20.737047), (-39.69463, -22.699526, -20.225426), (-39.69463, -22.699526, -20.225426), (-40.69875, -20.336832, -20.737047), (-39.55768, -20.336832, -22.838636), (-38.581715, -22.699526, -22.275164), (-38.581715, -22.699526, -22.275164), (-39.55768, -20.336832, -22.838636), (-38.308186, -20.336832, -24.877626), (-37.36305, -22.699526, -24.263847), (-37.36305, -22.699526, -24.263847), (-38.308186, -20.336832, -24.877626), (-36.95369, -20.336832, -26.848427), (-36.04197, -22.699526, -26.186026), (-36.04197, -22.699526, -26.186026), (-36.95369, -20.336832, -26.848427), (-35.49791, -20.336832, -28.74564), (-34.622105, -22.699526, -28.036428), (-34.622105, -22.699526, -28.036428), (-35.49791, -20.336832, -28.74564), (-33.944828, -20.336832, -30.564062), (-33.107346, -22.699526, -29.809986), (-33.107346, -22.699526, -29.809986), (-33.944828, -20.336832, -30.564062), (-32.29871, -20.336832, -32.29871), (-31.501839, -22.699526, -31.501839), (-31.501839, -22.699526, -31.501839), (-32.29871, -20.336832, -32.29871), (-30.564062, -20.336832, -33.944828), (-29.809986, -22.699526, -33.107346), (-29.809986, -22.699526, -33.107346), (-30.564062, -20.336832, -33.944828), (-28.74564, -20.336832, -35.49791), (-28.036428, -22.699526, -34.622105), (-28.036428, -22.699526, -34.622105), (-28.74564, -20.336832, -35.49791), (-26.848427, -20.336832, -36.95369), (-26.186026, -22.699526, -36.04197), (-26.186026, -22.699526, -36.04197), (-26.848427, -20.336832, -36.95369), (-24.877626, -20.336832, -38.308186), (-24.263847, -22.699526, -37.36305), (-24.263847, -22.699526, -37.36305), (-24.877626, -20.336832, -38.308186), (-22.838636, -20.336832, -39.55768), (-22.275164, -22.699526, -38.581715), (-22.275164, -22.699526, -38.581715), (-22.838636, -20.336832, -39.55768), (-20.737047, -20.336832, -40.69875), (-20.225426, -22.699526, -39.69463), (-20.225426, -22.699526, -39.69463), (-20.737047, -20.336832, -40.69875), (-18.57862, -20.336832, -41.728264), (-18.12025, -22.699526, -40.69875), (-18.12025, -22.699526, -40.69875), (-18.57862, -20.336832, -41.728264), (-16.36927, -20.336832, -42.64341), (-15.965409, -22.699526, -41.591312), (-15.965409, -22.699526, -41.591312), (-16.36927, -20.336832, -42.64341), (-14.115053, -20.336832, -43.44167), (-13.766808, -22.699526, -42.369877), (-13.766808, -22.699526, -42.369877), (-14.115053, -20.336832, -43.44167), (-11.822148, -20.336832, -44.120857), (-11.530473, -22.699526, -43.03231), (-11.530473, -22.699526, -43.03231), (-11.822148, -20.336832, -44.120857), (-9.496839, -20.336832, -44.679115), (-9.262533, -22.699526, -43.576794), (-9.262533, -22.699526, -43.576794), (-9.496839, -20.336832, -44.679115), (-7.1454997, -20.336832, -45.11491), (-6.9692063, -22.699526, -44.00184), (-6.9692063, -22.699526, -44.00184), (-7.1454997, -20.336832, -45.11491), (-4.774575, -20.336832, -45.427048), (-4.656777, -22.699526, -44.306274), (-4.656777, -22.699526, -44.306274), (-4.774575, -20.336832, -45.427048), (-2.3905637, -20.336832, -45.614674), (-2.331584, -22.699526, -44.489273), (-2.331584, -22.699526, -44.489273), (-2.3905637, -20.336832, -45.614674), (-8.390779e-15, -20.336832, -45.677273), (-8.183762e-15, -22.699526, -44.550327), (-8.183762e-15, -22.699526, -44.550327), (-8.390779e-15, -20.336832, -45.677273), (2.3905637, -20.336832, -45.614674), (2.331584, -22.699526, -44.489273), (2.331584, -22.699526, -44.489273), (2.3905637, -20.336832, -45.614674), (4.774575, -20.336832, -45.427048), (4.656777, -22.699526, -44.306274), (4.656777, -22.699526, -44.306274), (4.774575, -20.336832, -45.427048), (7.1454997, -20.336832, -45.11491), (6.9692063, -22.699526, -44.00184), (6.9692063, -22.699526, -44.00184), (7.1454997, -20.336832, -45.11491), (9.496839, -20.336832, -44.679115), (9.262533, -22.699526, -43.576794), (9.262533, -22.699526, -43.576794), (9.496839, -20.336832, -44.679115), (11.822148, -20.336832, -44.120857), (11.530473, -22.699526, -43.03231), (11.530473, -22.699526, -43.03231), (11.822148, -20.336832, -44.120857), (14.115053, -20.336832, -43.44167), (13.766808, -22.699526, -42.369877), (13.766808, -22.699526, -42.369877), (14.115053, -20.336832, -43.44167), (16.36927, -20.336832, -42.64341), (15.965409, -22.699526, -41.591312), (15.965409, -22.699526, -41.591312), (16.36927, -20.336832, -42.64341), (18.57862, -20.336832, -41.728264), (18.12025, -22.699526, -40.69875), (18.12025, -22.699526, -40.69875), (18.57862, -20.336832, -41.728264), (20.737047, -20.336832, -40.69875), (20.225426, -22.699526, -39.69463), (20.225426, -22.699526, -39.69463), (20.737047, -20.336832, -40.69875), (22.838636, -20.336832, -39.55768), (22.275164, -22.699526, -38.581715), (22.275164, -22.699526, -38.581715), (22.838636, -20.336832, -39.55768), (24.877626, -20.336832, -38.308186), (24.263847, -22.699526, -37.36305), (24.263847, -22.699526, -37.36305), (24.877626, -20.336832, -38.308186), (26.848427, -20.336832, -36.95369), (26.186026, -22.699526, -36.04197), (26.186026, -22.699526, -36.04197), (26.848427, -20.336832, -36.95369), (28.74564, -20.336832, -35.49791), (28.036428, -22.699526, -34.622105), (28.036428, -22.699526, -34.622105), (28.74564, -20.336832, -35.49791), (30.564062, -20.336832, -33.944828), (29.809986, -22.699526, -33.107346), (29.809986, -22.699526, -33.107346), (30.564062, -20.336832, -33.944828), (32.29871, -20.336832, -32.29871), (31.501839, -22.699526, -31.501839), (31.501839, -22.699526, -31.501839), (32.29871, -20.336832, -32.29871), (33.944828, -20.336832, -30.564062), (33.107346, -22.699526, -29.809986), (33.107346, -22.699526, -29.809986), (33.944828, -20.336832, -30.564062), (35.49791, -20.336832, -28.74564), (34.622105, -22.699526, -28.036428), (34.622105, -22.699526, -28.036428), (35.49791, -20.336832, -28.74564), (36.95369, -20.336832, -26.848427), (36.04197, -22.699526, -26.186026), (36.04197, -22.699526, -26.186026), (36.95369, -20.336832, -26.848427), (38.308186, -20.336832, -24.877626), (37.36305, -22.699526, -24.263847), (37.36305, -22.699526, -24.263847), (38.308186, -20.336832, -24.877626), (39.55768, -20.336832, -22.838636), (38.581715, -22.699526, -22.275164), (38.581715, -22.699526, -22.275164), (39.55768, -20.336832, -22.838636), (40.69875, -20.336832, -20.737047), (39.69463, -22.699526, -20.225426), (39.69463, -22.699526, -20.225426), (40.69875, -20.336832, -20.737047), (41.728264, -20.336832, -18.57862), (40.69875, -22.699526, -18.12025), (40.69875, -22.699526, -18.12025), (41.728264, -20.336832, -18.57862), (42.64341, -20.336832, -16.36927), (41.591312, -22.699526, -15.965409), (41.591312, -22.699526, -15.965409), (42.64341, -20.336832, -16.36927), (43.44167, -20.336832, -14.115053), (42.369877, -22.699526, -13.766808), (42.369877, -22.699526, -13.766808), (43.44167, -20.336832, -14.115053), (44.120857, -20.336832, -11.822148), (43.03231, -22.699526, -11.530473), (43.03231, -22.699526, -11.530473), (44.120857, -20.336832, -11.822148), (44.679115, -20.336832, -9.496839), (43.576794, -22.699526, -9.262533), (43.576794, -22.699526, -9.262533), (44.679115, -20.336832, -9.496839), (45.11491, -20.336832, -7.1454997), (44.00184, -22.699526, -6.9692063), (44.00184, -22.699526, -6.9692063), (45.11491, -20.336832, -7.1454997), (45.427048, -20.336832, -4.774575), (44.306274, -22.699526, -4.656777), (44.306274, -22.699526, -4.656777), (45.427048, -20.336832, -4.774575), (45.614674, -20.336832, -2.3905637), (44.489273, -22.699526, -2.331584), (44.489273, -22.699526, -2.331584), (45.614674, -20.336832, -2.3905637), (45.677273, -20.336832, 0), (44.550327, -22.699526, 0), (45.677273, -20.336832, 0), (46.67902, -17.918398, 0), (46.615047, -17.918398, 2.4429913), (45.614674, -20.336832, 2.3905637), (45.614674, -20.336832, 2.3905637), (46.615047, -17.918398, 2.4429913), (46.42331, -17.918398, 4.8792863), (45.427048, -20.336832, 4.774575), (45.427048, -20.336832, 4.774575), (46.42331, -17.918398, 4.8792863), (46.104324, -17.918398, 7.302208), (45.11491, -20.336832, 7.1454997), (45.11491, -20.336832, 7.1454997), (46.104324, -17.918398, 7.302208), (45.658974, -17.918398, 9.705114), (44.679115, -20.336832, 9.496839), (44.679115, -20.336832, 9.496839), (45.658974, -17.918398, 9.705114), (45.08847, -17.918398, 12.08142), (44.120857, -20.336832, 11.822148), (44.120857, -20.336832, 11.822148), (45.08847, -17.918398, 12.08142), (44.394386, -17.918398, 14.424611), (43.44167, -20.336832, 14.115053), (43.44167, -20.336832, 14.115053), (44.394386, -17.918398, 14.424611), (43.57862, -17.918398, 16.728266), (42.64341, -20.336832, 16.36927), (42.64341, -20.336832, 16.36927), (43.57862, -17.918398, 16.728266), (42.64341, -17.918398, 18.986069), (41.728264, -20.336832, 18.57862), (41.728264, -20.336832, 18.57862), (42.64341, -17.918398, 18.986069), (41.591312, -17.918398, 21.191832), (40.69875, -20.336832, 20.737047), (40.69875, -20.336832, 20.737047), (41.591312, -17.918398, 21.191832), (40.425217, -17.918398, 23.33951), (39.55768, -20.336832, 22.838636), (39.55768, -20.336832, 22.838636), (40.425217, -17.918398, 23.33951), (39.148323, -17.918398, 25.423218), (38.308186, -20.336832, 24.877626), (38.308186, -20.336832, 24.877626), (39.148323, -17.918398, 25.423218), (37.764122, -17.918398, 27.43724), (36.95369, -20.336832, 26.848427), (36.95369, -20.336832, 26.848427), (37.764122, -17.918398, 27.43724), (36.276413, -17.918398, 29.37606), (35.49791, -20.336832, 28.74564), (35.49791, -20.336832, 28.74564), (36.276413, -17.918398, 29.37606), (34.689274, -17.918398, 31.234362), (33.944828, -20.336832, 30.564062), (33.944828, -20.336832, 30.564062), (34.689274, -17.918398, 31.234362), (33.007053, -17.918398, 33.007053), (32.29871, -20.336832, 32.29871), (32.29871, -20.336832, 32.29871), (33.007053, -17.918398, 33.007053), (31.234362, -17.918398, 34.689274), (30.564062, -20.336832, 33.944828), (30.564062, -20.336832, 33.944828), (31.234362, -17.918398, 34.689274), (29.37606, -17.918398, 36.276413), (28.74564, -20.336832, 35.49791), (28.74564, -20.336832, 35.49791), (29.37606, -17.918398, 36.276413), (27.43724, -17.918398, 37.764122), (26.848427, -20.336832, 36.95369), (26.848427, -20.336832, 36.95369), (27.43724, -17.918398, 37.764122), (25.423218, -17.918398, 39.148323), (24.877626, -20.336832, 38.308186), (24.877626, -20.336832, 38.308186), (25.423218, -17.918398, 39.148323), (23.33951, -17.918398, 40.425217), (22.838636, -20.336832, 39.55768), (22.838636, -20.336832, 39.55768), (23.33951, -17.918398, 40.425217), (21.191832, -17.918398, 41.591312), (20.737047, -20.336832, 40.69875), (20.737047, -20.336832, 40.69875), (21.191832, -17.918398, 41.591312), (18.986069, -17.918398, 42.64341), (18.57862, -20.336832, 41.728264), (18.57862, -20.336832, 41.728264), (18.986069, -17.918398, 42.64341), (16.728266, -17.918398, 43.57862), (16.36927, -20.336832, 42.64341), (16.36927, -20.336832, 42.64341), (16.728266, -17.918398, 43.57862), (14.424611, -17.918398, 44.394386), (14.115053, -20.336832, 43.44167), (14.115053, -20.336832, 43.44167), (14.424611, -17.918398, 44.394386), (12.08142, -17.918398, 45.08847), (11.822148, -20.336832, 44.120857), (11.822148, -20.336832, 44.120857), (12.08142, -17.918398, 45.08847), (9.705114, -17.918398, 45.658974), (9.496839, -20.336832, 44.679115), (9.496839, -20.336832, 44.679115), (9.705114, -17.918398, 45.658974), (7.302208, -17.918398, 46.104324), (7.1454997, -20.336832, 45.11491), (7.1454997, -20.336832, 45.11491), (7.302208, -17.918398, 46.104324), (4.8792863, -17.918398, 46.42331), (4.774575, -20.336832, 45.427048), (4.774575, -20.336832, 45.427048), (4.8792863, -17.918398, 46.42331), (2.4429913, -17.918398, 46.615047), (2.3905637, -20.336832, 45.614674), (2.3905637, -20.336832, 45.614674), (2.4429913, -17.918398, 46.615047), (2.8582657e-15, -17.918398, 46.67902), (2.7969263e-15, -20.336832, 45.677273), (2.7969263e-15, -20.336832, 45.677273), (2.8582657e-15, -17.918398, 46.67902), (-2.4429913, -17.918398, 46.615047), (-2.3905637, -20.336832, 45.614674), (-2.3905637, -20.336832, 45.614674), (-2.4429913, -17.918398, 46.615047), (-4.8792863, -17.918398, 46.42331), (-4.774575, -20.336832, 45.427048), (-4.774575, -20.336832, 45.427048), (-4.8792863, -17.918398, 46.42331), (-7.302208, -17.918398, 46.104324), (-7.1454997, -20.336832, 45.11491), (-7.1454997, -20.336832, 45.11491), (-7.302208, -17.918398, 46.104324), (-9.705114, -17.918398, 45.658974), (-9.496839, -20.336832, 44.679115), (-9.496839, -20.336832, 44.679115), (-9.705114, -17.918398, 45.658974), (-12.08142, -17.918398, 45.08847), (-11.822148, -20.336832, 44.120857), (-11.822148, -20.336832, 44.120857), (-12.08142, -17.918398, 45.08847), (-14.424611, -17.918398, 44.394386), (-14.115053, -20.336832, 43.44167), (-14.115053, -20.336832, 43.44167), (-14.424611, -17.918398, 44.394386), (-16.728266, -17.918398, 43.57862), (-16.36927, -20.336832, 42.64341), (-16.36927, -20.336832, 42.64341), (-16.728266, -17.918398, 43.57862), (-18.986069, -17.918398, 42.64341), (-18.57862, -20.336832, 41.728264), (-18.57862, -20.336832, 41.728264), (-18.986069, -17.918398, 42.64341), (-21.191832, -17.918398, 41.591312), (-20.737047, -20.336832, 40.69875), (-20.737047, -20.336832, 40.69875), (-21.191832, -17.918398, 41.591312), (-23.33951, -17.918398, 40.425217), (-22.838636, -20.336832, 39.55768), (-22.838636, -20.336832, 39.55768), (-23.33951, -17.918398, 40.425217), (-25.423218, -17.918398, 39.148323), (-24.877626, -20.336832, 38.308186), (-24.877626, -20.336832, 38.308186), (-25.423218, -17.918398, 39.148323), (-27.43724, -17.918398, 37.764122), (-26.848427, -20.336832, 36.95369), (-26.848427, -20.336832, 36.95369), (-27.43724, -17.918398, 37.764122), (-29.37606, -17.918398, 36.276413), (-28.74564, -20.336832, 35.49791), (-28.74564, -20.336832, 35.49791), (-29.37606, -17.918398, 36.276413), (-31.234362, -17.918398, 34.689274), (-30.564062, -20.336832, 33.944828), (-30.564062, -20.336832, 33.944828), (-31.234362, -17.918398, 34.689274), (-33.007053, -17.918398, 33.007053), (-32.29871, -20.336832, 32.29871), (-32.29871, -20.336832, 32.29871), (-33.007053, -17.918398, 33.007053), (-34.689274, -17.918398, 31.234362), (-33.944828, -20.336832, 30.564062), (-33.944828, -20.336832, 30.564062), (-34.689274, -17.918398, 31.234362), (-36.276413, -17.918398, 29.37606), (-35.49791, -20.336832, 28.74564), (-35.49791, -20.336832, 28.74564), (-36.276413, -17.918398, 29.37606), (-37.764122, -17.918398, 27.43724), (-36.95369, -20.336832, 26.848427), (-36.95369, -20.336832, 26.848427), (-37.764122, -17.918398, 27.43724), (-39.148323, -17.918398, 25.423218), (-38.308186, -20.336832, 24.877626), (-38.308186, -20.336832, 24.877626), (-39.148323, -17.918398, 25.423218), (-40.425217, -17.918398, 23.33951), (-39.55768, -20.336832, 22.838636), (-39.55768, -20.336832, 22.838636), (-40.425217, -17.918398, 23.33951), (-41.591312, -17.918398, 21.191832), (-40.69875, -20.336832, 20.737047), (-40.69875, -20.336832, 20.737047), (-41.591312, -17.918398, 21.191832), (-42.64341, -17.918398, 18.986069), (-41.728264, -20.336832, 18.57862), (-41.728264, -20.336832, 18.57862), (-42.64341, -17.918398, 18.986069), (-43.57862, -17.918398, 16.728266), (-42.64341, -20.336832, 16.36927), (-42.64341, -20.336832, 16.36927), (-43.57862, -17.918398, 16.728266), (-44.394386, -17.918398, 14.424611), (-43.44167, -20.336832, 14.115053), (-43.44167, -20.336832, 14.115053), (-44.394386, -17.918398, 14.424611), (-45.08847, -17.918398, 12.08142), (-44.120857, -20.336832, 11.822148), (-44.120857, -20.336832, 11.822148), (-45.08847, -17.918398, 12.08142), (-45.658974, -17.918398, 9.705114), (-44.679115, -20.336832, 9.496839), (-44.679115, -20.336832, 9.496839), (-45.658974, -17.918398, 9.705114), (-46.104324, -17.918398, 7.302208), (-45.11491, -20.336832, 7.1454997), (-45.11491, -20.336832, 7.1454997), (-46.104324, -17.918398, 7.302208), (-46.42331, -17.918398, 4.8792863), (-45.427048, -20.336832, 4.774575), (-45.427048, -20.336832, 4.774575), (-46.42331, -17.918398, 4.8792863), (-46.615047, -17.918398, 2.4429913), (-45.614674, -20.336832, 2.3905637), (-45.614674, -20.336832, 2.3905637), (-46.615047, -17.918398, 2.4429913), (-46.67902, -17.918398, 5.7165313e-15), (-45.677273, -20.336832, 5.5938526e-15), (-45.677273, -20.336832, 5.5938526e-15), (-46.67902, -17.918398, 5.7165313e-15), (-46.615047, -17.918398, -2.4429913), (-45.614674, -20.336832, -2.3905637), (-45.614674, -20.336832, -2.3905637), (-46.615047, -17.918398, -2.4429913), (-46.42331, -17.918398, -4.8792863), (-45.427048, -20.336832, -4.774575), (-45.427048, -20.336832, -4.774575), (-46.42331, -17.918398, -4.8792863), (-46.104324, -17.918398, -7.302208), (-45.11491, -20.336832, -7.1454997), (-45.11491, -20.336832, -7.1454997), (-46.104324, -17.918398, -7.302208), (-45.658974, -17.918398, -9.705114), (-44.679115, -20.336832, -9.496839), (-44.679115, -20.336832, -9.496839), (-45.658974, -17.918398, -9.705114), (-45.08847, -17.918398, -12.08142), (-44.120857, -20.336832, -11.822148), (-44.120857, -20.336832, -11.822148), (-45.08847, -17.918398, -12.08142), (-44.394386, -17.918398, -14.424611), (-43.44167, -20.336832, -14.115053), (-43.44167, -20.336832, -14.115053), (-44.394386, -17.918398, -14.424611), (-43.57862, -17.918398, -16.728266), (-42.64341, -20.336832, -16.36927), (-42.64341, -20.336832, -16.36927), (-43.57862, -17.918398, -16.728266), (-42.64341, -17.918398, -18.986069), (-41.728264, -20.336832, -18.57862), (-41.728264, -20.336832, -18.57862), (-42.64341, -17.918398, -18.986069), (-41.591312, -17.918398, -21.191832), (-40.69875, -20.336832, -20.737047), (-40.69875, -20.336832, -20.737047), (-41.591312, -17.918398, -21.191832), (-40.425217, -17.918398, -23.33951), (-39.55768, -20.336832, -22.838636), (-39.55768, -20.336832, -22.838636), (-40.425217, -17.918398, -23.33951), (-39.148323, -17.918398, -25.423218), (-38.308186, -20.336832, -24.877626), (-38.308186, -20.336832, -24.877626), (-39.148323, -17.918398, -25.423218), (-37.764122, -17.918398, -27.43724), (-36.95369, -20.336832, -26.848427), (-36.95369, -20.336832, -26.848427), (-37.764122, -17.918398, -27.43724), (-36.276413, -17.918398, -29.37606), (-35.49791, -20.336832, -28.74564), (-35.49791, -20.336832, -28.74564), (-36.276413, -17.918398, -29.37606), (-34.689274, -17.918398, -31.234362), (-33.944828, -20.336832, -30.564062), (-33.944828, -20.336832, -30.564062), (-34.689274, -17.918398, -31.234362), (-33.007053, -17.918398, -33.007053), (-32.29871, -20.336832, -32.29871), (-32.29871, -20.336832, -32.29871), (-33.007053, -17.918398, -33.007053), (-31.234362, -17.918398, -34.689274), (-30.564062, -20.336832, -33.944828), (-30.564062, -20.336832, -33.944828), (-31.234362, -17.918398, -34.689274), (-29.37606, -17.918398, -36.276413), (-28.74564, -20.336832, -35.49791), (-28.74564, -20.336832, -35.49791), (-29.37606, -17.918398, -36.276413), (-27.43724, -17.918398, -37.764122), (-26.848427, -20.336832, -36.95369), (-26.848427, -20.336832, -36.95369), (-27.43724, -17.918398, -37.764122), (-25.423218, -17.918398, -39.148323), (-24.877626, -20.336832, -38.308186), (-24.877626, -20.336832, -38.308186), (-25.423218, -17.918398, -39.148323), (-23.33951, -17.918398, -40.425217), (-22.838636, -20.336832, -39.55768), (-22.838636, -20.336832, -39.55768), (-23.33951, -17.918398, -40.425217), (-21.191832, -17.918398, -41.591312), (-20.737047, -20.336832, -40.69875), (-20.737047, -20.336832, -40.69875), (-21.191832, -17.918398, -41.591312), (-18.986069, -17.918398, -42.64341), (-18.57862, -20.336832, -41.728264), (-18.57862, -20.336832, -41.728264), (-18.986069, -17.918398, -42.64341), (-16.728266, -17.918398, -43.57862), (-16.36927, -20.336832, -42.64341), (-16.36927, -20.336832, -42.64341), (-16.728266, -17.918398, -43.57862), (-14.424611, -17.918398, -44.394386), (-14.115053, -20.336832, -43.44167), (-14.115053, -20.336832, -43.44167), (-14.424611, -17.918398, -44.394386), (-12.08142, -17.918398, -45.08847), (-11.822148, -20.336832, -44.120857), (-11.822148, -20.336832, -44.120857), (-12.08142, -17.918398, -45.08847), (-9.705114, -17.918398, -45.658974), (-9.496839, -20.336832, -44.679115), (-9.496839, -20.336832, -44.679115), (-9.705114, -17.918398, -45.658974), (-7.302208, -17.918398, -46.104324), (-7.1454997, -20.336832, -45.11491), (-7.1454997, -20.336832, -45.11491), (-7.302208, -17.918398, -46.104324), (-4.8792863, -17.918398, -46.42331), (-4.774575, -20.336832, -45.427048), (-4.774575, -20.336832, -45.427048), (-4.8792863, -17.918398, -46.42331), (-2.4429913, -17.918398, -46.615047), (-2.3905637, -20.336832, -45.614674), (-2.3905637, -20.336832, -45.614674), (-2.4429913, -17.918398, -46.615047), (-8.5747974e-15, -17.918398, -46.67902), (-8.390779e-15, -20.336832, -45.677273), (-8.390779e-15, -20.336832, -45.677273), (-8.5747974e-15, -17.918398, -46.67902), (2.4429913, -17.918398, -46.615047), (2.3905637, -20.336832, -45.614674), (2.3905637, -20.336832, -45.614674), (2.4429913, -17.918398, -46.615047), (4.8792863, -17.918398, -46.42331), (4.774575, -20.336832, -45.427048), (4.774575, -20.336832, -45.427048), (4.8792863, -17.918398, -46.42331), (7.302208, -17.918398, -46.104324), (7.1454997, -20.336832, -45.11491), (7.1454997, -20.336832, -45.11491), (7.302208, -17.918398, -46.104324), (9.705114, -17.918398, -45.658974), (9.496839, -20.336832, -44.679115), (9.496839, -20.336832, -44.679115), (9.705114, -17.918398, -45.658974), (12.08142, -17.918398, -45.08847), (11.822148, -20.336832, -44.120857), (11.822148, -20.336832, -44.120857), (12.08142, -17.918398, -45.08847), (14.424611, -17.918398, -44.394386), (14.115053, -20.336832, -43.44167), (14.115053, -20.336832, -43.44167), (14.424611, -17.918398, -44.394386), (16.728266, -17.918398, -43.57862), (16.36927, -20.336832, -42.64341), (16.36927, -20.336832, -42.64341), (16.728266, -17.918398, -43.57862), (18.986069, -17.918398, -42.64341), (18.57862, -20.336832, -41.728264), (18.57862, -20.336832, -41.728264), (18.986069, -17.918398, -42.64341), (21.191832, -17.918398, -41.591312), (20.737047, -20.336832, -40.69875), (20.737047, -20.336832, -40.69875), (21.191832, -17.918398, -41.591312), (23.33951, -17.918398, -40.425217), (22.838636, -20.336832, -39.55768), (22.838636, -20.336832, -39.55768), (23.33951, -17.918398, -40.425217), (25.423218, -17.918398, -39.148323), (24.877626, -20.336832, -38.308186), (24.877626, -20.336832, -38.308186), (25.423218, -17.918398, -39.148323), (27.43724, -17.918398, -37.764122), (26.848427, -20.336832, -36.95369), (26.848427, -20.336832, -36.95369), (27.43724, -17.918398, -37.764122), (29.37606, -17.918398, -36.276413), (28.74564, -20.336832, -35.49791), (28.74564, -20.336832, -35.49791), (29.37606, -17.918398, -36.276413), (31.234362, -17.918398, -34.689274), (30.564062, -20.336832, -33.944828), (30.564062, -20.336832, -33.944828), (31.234362, -17.918398, -34.689274), (33.007053, -17.918398, -33.007053), (32.29871, -20.336832, -32.29871), (32.29871, -20.336832, -32.29871), (33.007053, -17.918398, -33.007053), (34.689274, -17.918398, -31.234362), (33.944828, -20.336832, -30.564062), (33.944828, -20.336832, -30.564062), (34.689274, -17.918398, -31.234362), (36.276413, -17.918398, -29.37606), (35.49791, -20.336832, -28.74564), (35.49791, -20.336832, -28.74564), (36.276413, -17.918398, -29.37606), (37.764122, -17.918398, -27.43724), (36.95369, -20.336832, -26.848427), (36.95369, -20.336832, -26.848427), (37.764122, -17.918398, -27.43724), (39.148323, -17.918398, -25.423218), (38.308186, -20.336832, -24.877626), (38.308186, -20.336832, -24.877626), (39.148323, -17.918398, -25.423218), (40.425217, -17.918398, -23.33951), (39.55768, -20.336832, -22.838636), (39.55768, -20.336832, -22.838636), (40.425217, -17.918398, -23.33951), (41.591312, -17.918398, -21.191832), (40.69875, -20.336832, -20.737047), (40.69875, -20.336832, -20.737047), (41.591312, -17.918398, -21.191832), (42.64341, -17.918398, -18.986069), (41.728264, -20.336832, -18.57862), (41.728264, -20.336832, -18.57862), (42.64341, -17.918398, -18.986069), (43.57862, -17.918398, -16.728266), (42.64341, -20.336832, -16.36927), (42.64341, -20.336832, -16.36927), (43.57862, -17.918398, -16.728266), (44.394386, -17.918398, -14.424611), (43.44167, -20.336832, -14.115053), (43.44167, -20.336832, -14.115053), (44.394386, -17.918398, -14.424611), (45.08847, -17.918398, -12.08142), (44.120857, -20.336832, -11.822148), (44.120857, -20.336832, -11.822148), (45.08847, -17.918398, -12.08142), (45.658974, -17.918398, -9.705114), (44.679115, -20.336832, -9.496839), (44.679115, -20.336832, -9.496839), (45.658974, -17.918398, -9.705114), (46.104324, -17.918398, -7.302208), (45.11491, -20.336832, -7.1454997), (45.11491, -20.336832, -7.1454997), (46.104324, -17.918398, -7.302208), (46.42331, -17.918398, -4.8792863), (45.427048, -20.336832, -4.774575), (45.427048, -20.336832, -4.774575), (46.42331, -17.918398, -4.8792863), (46.615047, -17.918398, -2.4429913), (45.614674, -20.336832, -2.3905637), (45.614674, -20.336832, -2.3905637), (46.615047, -17.918398, -2.4429913), (46.67902, -17.918398, 0), (45.677273, -20.336832, 0), (46.67902, -17.918398, 0), (47.552826, -15.45085, 0), (47.487656, -15.45085, 2.4887226), (46.615047, -17.918398, 2.4429913), (46.615047, -17.918398, 2.4429913), (47.487656, -15.45085, 2.4887226), (47.292328, -15.45085, 4.970624), (46.42331, -17.918398, 4.8792863), (46.42331, -17.918398, 4.8792863), (47.292328, -15.45085, 4.970624), (46.967373, -15.45085, 7.438901), (46.104324, -17.918398, 7.302208), (46.104324, -17.918398, 7.302208), (46.967373, -15.45085, 7.438901), (46.513683, -15.45085, 9.886788), (45.658974, -17.918398, 9.705114), (45.658974, -17.918398, 9.705114), (46.513683, -15.45085, 9.886788), (45.932503, -15.45085, 12.307577), (45.08847, -17.918398, 12.08142), (45.08847, -17.918398, 12.08142), (45.932503, -15.45085, 12.307577), (45.225426, -15.45085, 14.694632), (44.394386, -17.918398, 14.424611), (44.394386, -17.918398, 14.424611), (45.225426, -15.45085, 14.694632), (44.394386, -15.45085, 17.041409), (43.57862, -17.918398, 16.728266), (43.57862, -17.918398, 16.728266), (44.394386, -15.45085, 17.041409), (43.44167, -15.45085, 19.341476), (42.64341, -17.918398, 18.986069), (42.64341, -17.918398, 18.986069), (43.44167, -15.45085, 19.341476), (42.369877, -15.45085, 21.588531), (41.591312, -17.918398, 21.191832), (41.591312, -17.918398, 21.191832), (42.369877, -15.45085, 21.588531), (41.181953, -15.45085, 23.776413), (40.425217, -17.918398, 23.33951), (40.425217, -17.918398, 23.33951), (41.181953, -15.45085, 23.776413), (39.881157, -15.45085, 25.899126), (39.148323, -17.918398, 25.423218), (39.148323, -17.918398, 25.423218), (39.881157, -15.45085, 25.899126), (38.471043, -15.45085, 27.95085), (37.764122, -17.918398, 27.43724), (37.764122, -17.918398, 27.43724), (38.471043, -15.45085, 27.95085), (36.955486, -15.45085, 29.925962), (36.276413, -17.918398, 29.37606), (36.276413, -17.918398, 29.37606), (36.955486, -15.45085, 29.925962), (35.33864, -15.45085, 31.819052), (34.689274, -17.918398, 31.234362), (34.689274, -17.918398, 31.234362), (35.33864, -15.45085, 31.819052), (33.624924, -15.45085, 33.624924), (33.007053, -17.918398, 33.007053), (33.007053, -17.918398, 33.007053), (33.624924, -15.45085, 33.624924), (31.819052, -15.45085, 35.33864), (31.234362, -17.918398, 34.689274), (31.234362, -17.918398, 34.689274), (31.819052, -15.45085, 35.33864), (29.925962, -15.45085, 36.955486), (29.37606, -17.918398, 36.276413), (29.37606, -17.918398, 36.276413), (29.925962, -15.45085, 36.955486), (27.95085, -15.45085, 38.471043), (27.43724, -17.918398, 37.764122), (27.43724, -17.918398, 37.764122), (27.95085, -15.45085, 38.471043), (25.899126, -15.45085, 39.881157), (25.423218, -17.918398, 39.148323), (25.423218, -17.918398, 39.148323), (25.899126, -15.45085, 39.881157), (23.776413, -15.45085, 41.181953), (23.33951, -17.918398, 40.425217), (23.33951, -17.918398, 40.425217), (23.776413, -15.45085, 41.181953), (21.588531, -15.45085, 42.369877), (21.191832, -17.918398, 41.591312), (21.191832, -17.918398, 41.591312), (21.588531, -15.45085, 42.369877), (19.341476, -15.45085, 43.44167), (18.986069, -17.918398, 42.64341), (18.986069, -17.918398, 42.64341), (19.341476, -15.45085, 43.44167), (17.041409, -15.45085, 44.394386), (16.728266, -17.918398, 43.57862), (16.728266, -17.918398, 43.57862), (17.041409, -15.45085, 44.394386), (14.694632, -15.45085, 45.225426), (14.424611, -17.918398, 44.394386), (14.424611, -17.918398, 44.394386), (14.694632, -15.45085, 45.225426), (12.307577, -15.45085, 45.932503), (12.08142, -17.918398, 45.08847), (12.08142, -17.918398, 45.08847), (12.307577, -15.45085, 45.932503), (9.886788, -15.45085, 46.513683), (9.705114, -17.918398, 45.658974), (9.705114, -17.918398, 45.658974), (9.886788, -15.45085, 46.513683), (7.438901, -15.45085, 46.967373), (7.302208, -17.918398, 46.104324), (7.302208, -17.918398, 46.104324), (7.438901, -15.45085, 46.967373), (4.970624, -15.45085, 47.292328), (4.8792863, -17.918398, 46.42331), (4.8792863, -17.918398, 46.42331), (4.970624, -15.45085, 47.292328), (2.4887226, -15.45085, 47.487656), (2.4429913, -17.918398, 46.615047), (2.4429913, -17.918398, 46.615047), (2.4887226, -15.45085, 47.487656), (2.9117708e-15, -15.45085, 47.552826), (2.8582657e-15, -17.918398, 46.67902), (2.8582657e-15, -17.918398, 46.67902), (2.9117708e-15, -15.45085, 47.552826), (-2.4887226, -15.45085, 47.487656), (-2.4429913, -17.918398, 46.615047), (-2.4429913, -17.918398, 46.615047), (-2.4887226, -15.45085, 47.487656), (-4.970624, -15.45085, 47.292328), (-4.8792863, -17.918398, 46.42331), (-4.8792863, -17.918398, 46.42331), (-4.970624, -15.45085, 47.292328), (-7.438901, -15.45085, 46.967373), (-7.302208, -17.918398, 46.104324), (-7.302208, -17.918398, 46.104324), (-7.438901, -15.45085, 46.967373), (-9.886788, -15.45085, 46.513683), (-9.705114, -17.918398, 45.658974), (-9.705114, -17.918398, 45.658974), (-9.886788, -15.45085, 46.513683), (-12.307577, -15.45085, 45.932503), (-12.08142, -17.918398, 45.08847), (-12.08142, -17.918398, 45.08847), (-12.307577, -15.45085, 45.932503), (-14.694632, -15.45085, 45.225426), (-14.424611, -17.918398, 44.394386), (-14.424611, -17.918398, 44.394386), (-14.694632, -15.45085, 45.225426), (-17.041409, -15.45085, 44.394386), (-16.728266, -17.918398, 43.57862), (-16.728266, -17.918398, 43.57862), (-17.041409, -15.45085, 44.394386), (-19.341476, -15.45085, 43.44167), (-18.986069, -17.918398, 42.64341), (-18.986069, -17.918398, 42.64341), (-19.341476, -15.45085, 43.44167), (-21.588531, -15.45085, 42.369877), (-21.191832, -17.918398, 41.591312), (-21.191832, -17.918398, 41.591312), (-21.588531, -15.45085, 42.369877), (-23.776413, -15.45085, 41.181953), (-23.33951, -17.918398, 40.425217), (-23.33951, -17.918398, 40.425217), (-23.776413, -15.45085, 41.181953), (-25.899126, -15.45085, 39.881157), (-25.423218, -17.918398, 39.148323), (-25.423218, -17.918398, 39.148323), (-25.899126, -15.45085, 39.881157), (-27.95085, -15.45085, 38.471043), (-27.43724, -17.918398, 37.764122), (-27.43724, -17.918398, 37.764122), (-27.95085, -15.45085, 38.471043), (-29.925962, -15.45085, 36.955486), (-29.37606, -17.918398, 36.276413), (-29.37606, -17.918398, 36.276413), (-29.925962, -15.45085, 36.955486), (-31.819052, -15.45085, 35.33864), (-31.234362, -17.918398, 34.689274), (-31.234362, -17.918398, 34.689274), (-31.819052, -15.45085, 35.33864), (-33.624924, -15.45085, 33.624924), (-33.007053, -17.918398, 33.007053), (-33.007053, -17.918398, 33.007053), (-33.624924, -15.45085, 33.624924), (-35.33864, -15.45085, 31.819052), (-34.689274, -17.918398, 31.234362), (-34.689274, -17.918398, 31.234362), (-35.33864, -15.45085, 31.819052), (-36.955486, -15.45085, 29.925962), (-36.276413, -17.918398, 29.37606), (-36.276413, -17.918398, 29.37606), (-36.955486, -15.45085, 29.925962), (-38.471043, -15.45085, 27.95085), (-37.764122, -17.918398, 27.43724), (-37.764122, -17.918398, 27.43724), (-38.471043, -15.45085, 27.95085), (-39.881157, -15.45085, 25.899126), (-39.148323, -17.918398, 25.423218), (-39.148323, -17.918398, 25.423218), (-39.881157, -15.45085, 25.899126), (-41.181953, -15.45085, 23.776413), (-40.425217, -17.918398, 23.33951), (-40.425217, -17.918398, 23.33951), (-41.181953, -15.45085, 23.776413), (-42.369877, -15.45085, 21.588531), (-41.591312, -17.918398, 21.191832), (-41.591312, -17.918398, 21.191832), (-42.369877, -15.45085, 21.588531), (-43.44167, -15.45085, 19.341476), (-42.64341, -17.918398, 18.986069), (-42.64341, -17.918398, 18.986069), (-43.44167, -15.45085, 19.341476), (-44.394386, -15.45085, 17.041409), (-43.57862, -17.918398, 16.728266), (-43.57862, -17.918398, 16.728266), (-44.394386, -15.45085, 17.041409), (-45.225426, -15.45085, 14.694632), (-44.394386, -17.918398, 14.424611), (-44.394386, -17.918398, 14.424611), (-45.225426, -15.45085, 14.694632), (-45.932503, -15.45085, 12.307577), (-45.08847, -17.918398, 12.08142), (-45.08847, -17.918398, 12.08142), (-45.932503, -15.45085, 12.307577), (-46.513683, -15.45085, 9.886788), (-45.658974, -17.918398, 9.705114), (-45.658974, -17.918398, 9.705114), (-46.513683, -15.45085, 9.886788), (-46.967373, -15.45085, 7.438901), (-46.104324, -17.918398, 7.302208), (-46.104324, -17.918398, 7.302208), (-46.967373, -15.45085, 7.438901), (-47.292328, -15.45085, 4.970624), (-46.42331, -17.918398, 4.8792863), (-46.42331, -17.918398, 4.8792863), (-47.292328, -15.45085, 4.970624), (-47.487656, -15.45085, 2.4887226), (-46.615047, -17.918398, 2.4429913), (-46.615047, -17.918398, 2.4429913), (-47.487656, -15.45085, 2.4887226), (-47.552826, -15.45085, 5.8235417e-15), (-46.67902, -17.918398, 5.7165313e-15), (-46.67902, -17.918398, 5.7165313e-15), (-47.552826, -15.45085, 5.8235417e-15), (-47.487656, -15.45085, -2.4887226), (-46.615047, -17.918398, -2.4429913), (-46.615047, -17.918398, -2.4429913), (-47.487656, -15.45085, -2.4887226), (-47.292328, -15.45085, -4.970624), (-46.42331, -17.918398, -4.8792863), (-46.42331, -17.918398, -4.8792863), (-47.292328, -15.45085, -4.970624), (-46.967373, -15.45085, -7.438901), (-46.104324, -17.918398, -7.302208), (-46.104324, -17.918398, -7.302208), (-46.967373, -15.45085, -7.438901), (-46.513683, -15.45085, -9.886788), (-45.658974, -17.918398, -9.705114), (-45.658974, -17.918398, -9.705114), (-46.513683, -15.45085, -9.886788), (-45.932503, -15.45085, -12.307577), (-45.08847, -17.918398, -12.08142), (-45.08847, -17.918398, -12.08142), (-45.932503, -15.45085, -12.307577), (-45.225426, -15.45085, -14.694632), (-44.394386, -17.918398, -14.424611), (-44.394386, -17.918398, -14.424611), (-45.225426, -15.45085, -14.694632), (-44.394386, -15.45085, -17.041409), (-43.57862, -17.918398, -16.728266), (-43.57862, -17.918398, -16.728266), (-44.394386, -15.45085, -17.041409), (-43.44167, -15.45085, -19.341476), (-42.64341, -17.918398, -18.986069), (-42.64341, -17.918398, -18.986069), (-43.44167, -15.45085, -19.341476), (-42.369877, -15.45085, -21.588531), (-41.591312, -17.918398, -21.191832), (-41.591312, -17.918398, -21.191832), (-42.369877, -15.45085, -21.588531), (-41.181953, -15.45085, -23.776413), (-40.425217, -17.918398, -23.33951), (-40.425217, -17.918398, -23.33951), (-41.181953, -15.45085, -23.776413), (-39.881157, -15.45085, -25.899126), (-39.148323, -17.918398, -25.423218), (-39.148323, -17.918398, -25.423218), (-39.881157, -15.45085, -25.899126), (-38.471043, -15.45085, -27.95085), (-37.764122, -17.918398, -27.43724), (-37.764122, -17.918398, -27.43724), (-38.471043, -15.45085, -27.95085), (-36.955486, -15.45085, -29.925962), (-36.276413, -17.918398, -29.37606), (-36.276413, -17.918398, -29.37606), (-36.955486, -15.45085, -29.925962), (-35.33864, -15.45085, -31.819052), (-34.689274, -17.918398, -31.234362), (-34.689274, -17.918398, -31.234362), (-35.33864, -15.45085, -31.819052), (-33.624924, -15.45085, -33.624924), (-33.007053, -17.918398, -33.007053), (-33.007053, -17.918398, -33.007053), (-33.624924, -15.45085, -33.624924), (-31.819052, -15.45085, -35.33864), (-31.234362, -17.918398, -34.689274), (-31.234362, -17.918398, -34.689274), (-31.819052, -15.45085, -35.33864), (-29.925962, -15.45085, -36.955486), (-29.37606, -17.918398, -36.276413), (-29.37606, -17.918398, -36.276413), (-29.925962, -15.45085, -36.955486), (-27.95085, -15.45085, -38.471043), (-27.43724, -17.918398, -37.764122), (-27.43724, -17.918398, -37.764122), (-27.95085, -15.45085, -38.471043), (-25.899126, -15.45085, -39.881157), (-25.423218, -17.918398, -39.148323), (-25.423218, -17.918398, -39.148323), (-25.899126, -15.45085, -39.881157), (-23.776413, -15.45085, -41.181953), (-23.33951, -17.918398, -40.425217), (-23.33951, -17.918398, -40.425217), (-23.776413, -15.45085, -41.181953), (-21.588531, -15.45085, -42.369877), (-21.191832, -17.918398, -41.591312), (-21.191832, -17.918398, -41.591312), (-21.588531, -15.45085, -42.369877), (-19.341476, -15.45085, -43.44167), (-18.986069, -17.918398, -42.64341), (-18.986069, -17.918398, -42.64341), (-19.341476, -15.45085, -43.44167), (-17.041409, -15.45085, -44.394386), (-16.728266, -17.918398, -43.57862), (-16.728266, -17.918398, -43.57862), (-17.041409, -15.45085, -44.394386), (-14.694632, -15.45085, -45.225426), (-14.424611, -17.918398, -44.394386), (-14.424611, -17.918398, -44.394386), (-14.694632, -15.45085, -45.225426), (-12.307577, -15.45085, -45.932503), (-12.08142, -17.918398, -45.08847), (-12.08142, -17.918398, -45.08847), (-12.307577, -15.45085, -45.932503), (-9.886788, -15.45085, -46.513683), (-9.705114, -17.918398, -45.658974), (-9.705114, -17.918398, -45.658974), (-9.886788, -15.45085, -46.513683), (-7.438901, -15.45085, -46.967373), (-7.302208, -17.918398, -46.104324), (-7.302208, -17.918398, -46.104324), (-7.438901, -15.45085, -46.967373), (-4.970624, -15.45085, -47.292328), (-4.8792863, -17.918398, -46.42331), (-4.8792863, -17.918398, -46.42331), (-4.970624, -15.45085, -47.292328), (-2.4887226, -15.45085, -47.487656), (-2.4429913, -17.918398, -46.615047), (-2.4429913, -17.918398, -46.615047), (-2.4887226, -15.45085, -47.487656), (-8.735313e-15, -15.45085, -47.552826), (-8.5747974e-15, -17.918398, -46.67902), (-8.5747974e-15, -17.918398, -46.67902), (-8.735313e-15, -15.45085, -47.552826), (2.4887226, -15.45085, -47.487656), (2.4429913, -17.918398, -46.615047), (2.4429913, -17.918398, -46.615047), (2.4887226, -15.45085, -47.487656), (4.970624, -15.45085, -47.292328), (4.8792863, -17.918398, -46.42331), (4.8792863, -17.918398, -46.42331), (4.970624, -15.45085, -47.292328), (7.438901, -15.45085, -46.967373), (7.302208, -17.918398, -46.104324), (7.302208, -17.918398, -46.104324), (7.438901, -15.45085, -46.967373), (9.886788, -15.45085, -46.513683), (9.705114, -17.918398, -45.658974), (9.705114, -17.918398, -45.658974), (9.886788, -15.45085, -46.513683), (12.307577, -15.45085, -45.932503), (12.08142, -17.918398, -45.08847), (12.08142, -17.918398, -45.08847), (12.307577, -15.45085, -45.932503), (14.694632, -15.45085, -45.225426), (14.424611, -17.918398, -44.394386), (14.424611, -17.918398, -44.394386), (14.694632, -15.45085, -45.225426), (17.041409, -15.45085, -44.394386), (16.728266, -17.918398, -43.57862), (16.728266, -17.918398, -43.57862), (17.041409, -15.45085, -44.394386), (19.341476, -15.45085, -43.44167), (18.986069, -17.918398, -42.64341), (18.986069, -17.918398, -42.64341), (19.341476, -15.45085, -43.44167), (21.588531, -15.45085, -42.369877), (21.191832, -17.918398, -41.591312), (21.191832, -17.918398, -41.591312), (21.588531, -15.45085, -42.369877), (23.776413, -15.45085, -41.181953), (23.33951, -17.918398, -40.425217), (23.33951, -17.918398, -40.425217), (23.776413, -15.45085, -41.181953), (25.899126, -15.45085, -39.881157), (25.423218, -17.918398, -39.148323), (25.423218, -17.918398, -39.148323), (25.899126, -15.45085, -39.881157), (27.95085, -15.45085, -38.471043), (27.43724, -17.918398, -37.764122), (27.43724, -17.918398, -37.764122), (27.95085, -15.45085, -38.471043), (29.925962, -15.45085, -36.955486), (29.37606, -17.918398, -36.276413), (29.37606, -17.918398, -36.276413), (29.925962, -15.45085, -36.955486), (31.819052, -15.45085, -35.33864), (31.234362, -17.918398, -34.689274), (31.234362, -17.918398, -34.689274), (31.819052, -15.45085, -35.33864), (33.624924, -15.45085, -33.624924), (33.007053, -17.918398, -33.007053), (33.007053, -17.918398, -33.007053), (33.624924, -15.45085, -33.624924), (35.33864, -15.45085, -31.819052), (34.689274, -17.918398, -31.234362), (34.689274, -17.918398, -31.234362), (35.33864, -15.45085, -31.819052), (36.955486, -15.45085, -29.925962), (36.276413, -17.918398, -29.37606), (36.276413, -17.918398, -29.37606), (36.955486, -15.45085, -29.925962), (38.471043, -15.45085, -27.95085), (37.764122, -17.918398, -27.43724), (37.764122, -17.918398, -27.43724), (38.471043, -15.45085, -27.95085), (39.881157, -15.45085, -25.899126), (39.148323, -17.918398, -25.423218), (39.148323, -17.918398, -25.423218), (39.881157, -15.45085, -25.899126), (41.181953, -15.45085, -23.776413), (40.425217, -17.918398, -23.33951), (40.425217, -17.918398, -23.33951), (41.181953, -15.45085, -23.776413), (42.369877, -15.45085, -21.588531), (41.591312, -17.918398, -21.191832), (41.591312, -17.918398, -21.191832), (42.369877, -15.45085, -21.588531), (43.44167, -15.45085, -19.341476), (42.64341, -17.918398, -18.986069), (42.64341, -17.918398, -18.986069), (43.44167, -15.45085, -19.341476), (44.394386, -15.45085, -17.041409), (43.57862, -17.918398, -16.728266), (43.57862, -17.918398, -16.728266), (44.394386, -15.45085, -17.041409), (45.225426, -15.45085, -14.694632), (44.394386, -17.918398, -14.424611), (44.394386, -17.918398, -14.424611), (45.225426, -15.45085, -14.694632), (45.932503, -15.45085, -12.307577), (45.08847, -17.918398, -12.08142), (45.08847, -17.918398, -12.08142), (45.932503, -15.45085, -12.307577), (46.513683, -15.45085, -9.886788), (45.658974, -17.918398, -9.705114), (45.658974, -17.918398, -9.705114), (46.513683, -15.45085, -9.886788), (46.967373, -15.45085, -7.438901), (46.104324, -17.918398, -7.302208), (46.104324, -17.918398, -7.302208), (46.967373, -15.45085, -7.438901), (47.292328, -15.45085, -4.970624), (46.42331, -17.918398, -4.8792863), (46.42331, -17.918398, -4.8792863), (47.292328, -15.45085, -4.970624), (47.487656, -15.45085, -2.4887226), (46.615047, -17.918398, -2.4429913), (46.615047, -17.918398, -2.4429913), (47.487656, -15.45085, -2.4887226), (47.552826, -15.45085, 0), (46.67902, -17.918398, 0), (47.552826, -15.45085, 0), (48.29629, -12.940952, 0), (48.230103, -12.940952, 2.5276325), (47.487656, -15.45085, 2.4887226), (47.487656, -15.45085, 2.4887226), (48.230103, -12.940952, 2.5276325), (48.03172, -12.940952, 5.048337), (47.292328, -15.45085, 4.970624), (47.292328, -15.45085, 4.970624), (48.03172, -12.940952, 5.048337), (47.701683, -12.940952, 7.5552044), (46.967373, -15.45085, 7.438901), (46.967373, -15.45085, 7.438901), (47.701683, -12.940952, 7.5552044), (47.240902, -12.940952, 10.041364), (46.513683, -15.45085, 9.886788), (46.513683, -15.45085, 9.886788), (47.240902, -12.940952, 10.041364), (46.650635, -12.940952, 12.5), (45.932503, -15.45085, 12.307577), (45.932503, -15.45085, 12.307577), (46.650635, -12.940952, 12.5), (45.932503, -12.940952, 14.924375), (45.225426, -15.45085, 14.694632), (45.225426, -15.45085, 14.694632), (45.932503, -12.940952, 14.924375), (45.08847, -12.940952, 17.307842), (44.394386, -15.45085, 17.041409), (44.394386, -15.45085, 17.041409), (45.08847, -12.940952, 17.307842), (44.120857, -12.940952, 19.643871), (43.44167, -15.45085, 19.341476), (43.44167, -15.45085, 19.341476), (44.120857, -12.940952, 19.643871), (43.03231, -12.940952, 21.926058), (42.369877, -15.45085, 21.588531), (42.369877, -15.45085, 21.588531), (43.03231, -12.940952, 21.926058), (41.825813, -12.940952, 24.148146), (41.181953, -15.45085, 23.776413), (41.181953, -15.45085, 23.776413), (41.825813, -12.940952, 24.148146), (40.504677, -12.940952, 26.304045), (39.881157, -15.45085, 25.899126), (39.881157, -15.45085, 25.899126), (40.504677, -12.940952, 26.304045), (39.07252, -12.940952, 28.387848), (38.471043, -15.45085, 27.95085), (38.471043, -15.45085, 27.95085), (39.07252, -12.940952, 28.387848), (37.533268, -12.940952, 30.39384), (36.955486, -15.45085, 29.925962), (36.955486, -15.45085, 29.925962), (37.533268, -12.940952, 30.39384), (35.89114, -12.940952, 32.31653), (35.33864, -15.45085, 31.819052), (35.33864, -15.45085, 31.819052), (35.89114, -12.940952, 32.31653), (34.150635, -12.940952, 34.150635), (33.624924, -15.45085, 33.624924), (33.624924, -15.45085, 33.624924), (34.150635, -12.940952, 34.150635), (32.31653, -12.940952, 35.89114), (31.819052, -15.45085, 35.33864), (31.819052, -15.45085, 35.33864), (32.31653, -12.940952, 35.89114), (30.39384, -12.940952, 37.533268), (29.925962, -15.45085, 36.955486), (29.925962, -15.45085, 36.955486), (30.39384, -12.940952, 37.533268), (28.387848, -12.940952, 39.07252), (27.95085, -15.45085, 38.471043), (27.95085, -15.45085, 38.471043), (28.387848, -12.940952, 39.07252), (26.304045, -12.940952, 40.504677), (25.899126, -15.45085, 39.881157), (25.899126, -15.45085, 39.881157), (26.304045, -12.940952, 40.504677), (24.148146, -12.940952, 41.825813), (23.776413, -15.45085, 41.181953), (23.776413, -15.45085, 41.181953), (24.148146, -12.940952, 41.825813), (21.926058, -12.940952, 43.03231), (21.588531, -15.45085, 42.369877), (21.588531, -15.45085, 42.369877), (21.926058, -12.940952, 43.03231), (19.643871, -12.940952, 44.120857), (19.341476, -15.45085, 43.44167), (19.341476, -15.45085, 43.44167), (19.643871, -12.940952, 44.120857), (17.307842, -12.940952, 45.08847), (17.041409, -15.45085, 44.394386), (17.041409, -15.45085, 44.394386), (17.307842, -12.940952, 45.08847), (14.924375, -12.940952, 45.932503), (14.694632, -15.45085, 45.225426), (14.694632, -15.45085, 45.225426), (14.924375, -12.940952, 45.932503), (12.5, -12.940952, 46.650635), (12.307577, -15.45085, 45.932503), (12.307577, -15.45085, 45.932503), (12.5, -12.940952, 46.650635), (10.041364, -12.940952, 47.240902), (9.886788, -15.45085, 46.513683), (9.886788, -15.45085, 46.513683), (10.041364, -12.940952, 47.240902), (7.5552044, -12.940952, 47.701683), (7.438901, -15.45085, 46.967373), (7.438901, -15.45085, 46.967373), (7.5552044, -12.940952, 47.701683), (5.048337, -12.940952, 48.03172), (4.970624, -15.45085, 47.292328), (4.970624, -15.45085, 47.292328), (5.048337, -12.940952, 48.03172), (2.5276325, -12.940952, 48.230103), (2.4887226, -15.45085, 47.487656), (2.4887226, -15.45085, 47.487656), (2.5276325, -12.940952, 48.230103), (2.9572948e-15, -12.940952, 48.29629), (2.9117708e-15, -15.45085, 47.552826), (2.9117708e-15, -15.45085, 47.552826), (2.9572948e-15, -12.940952, 48.29629), (-2.5276325, -12.940952, 48.230103), (-2.4887226, -15.45085, 47.487656), (-2.4887226, -15.45085, 47.487656), (-2.5276325, -12.940952, 48.230103), (-5.048337, -12.940952, 48.03172), (-4.970624, -15.45085, 47.292328), (-4.970624, -15.45085, 47.292328), (-5.048337, -12.940952, 48.03172), (-7.5552044, -12.940952, 47.701683), (-7.438901, -15.45085, 46.967373), (-7.438901, -15.45085, 46.967373), (-7.5552044, -12.940952, 47.701683), (-10.041364, -12.940952, 47.240902), (-9.886788, -15.45085, 46.513683), (-9.886788, -15.45085, 46.513683), (-10.041364, -12.940952, 47.240902), (-12.5, -12.940952, 46.650635), (-12.307577, -15.45085, 45.932503), (-12.307577, -15.45085, 45.932503), (-12.5, -12.940952, 46.650635), (-14.924375, -12.940952, 45.932503), (-14.694632, -15.45085, 45.225426), (-14.694632, -15.45085, 45.225426), (-14.924375, -12.940952, 45.932503), (-17.307842, -12.940952, 45.08847), (-17.041409, -15.45085, 44.394386), (-17.041409, -15.45085, 44.394386), (-17.307842, -12.940952, 45.08847), (-19.643871, -12.940952, 44.120857), (-19.341476, -15.45085, 43.44167), (-19.341476, -15.45085, 43.44167), (-19.643871, -12.940952, 44.120857), (-21.926058, -12.940952, 43.03231), (-21.588531, -15.45085, 42.369877), (-21.588531, -15.45085, 42.369877), (-21.926058, -12.940952, 43.03231), (-24.148146, -12.940952, 41.825813), (-23.776413, -15.45085, 41.181953), (-23.776413, -15.45085, 41.181953), (-24.148146, -12.940952, 41.825813), (-26.304045, -12.940952, 40.504677), (-25.899126, -15.45085, 39.881157), (-25.899126, -15.45085, 39.881157), (-26.304045, -12.940952, 40.504677), (-28.387848, -12.940952, 39.07252), (-27.95085, -15.45085, 38.471043), (-27.95085, -15.45085, 38.471043), (-28.387848, -12.940952, 39.07252), (-30.39384, -12.940952, 37.533268), (-29.925962, -15.45085, 36.955486), (-29.925962, -15.45085, 36.955486), (-30.39384, -12.940952, 37.533268), (-32.31653, -12.940952, 35.89114), (-31.819052, -15.45085, 35.33864), (-31.819052, -15.45085, 35.33864), (-32.31653, -12.940952, 35.89114), (-34.150635, -12.940952, 34.150635), (-33.624924, -15.45085, 33.624924), (-33.624924, -15.45085, 33.624924), (-34.150635, -12.940952, 34.150635), (-35.89114, -12.940952, 32.31653), (-35.33864, -15.45085, 31.819052), (-35.33864, -15.45085, 31.819052), (-35.89114, -12.940952, 32.31653), (-37.533268, -12.940952, 30.39384), (-36.955486, -15.45085, 29.925962), (-36.955486, -15.45085, 29.925962), (-37.533268, -12.940952, 30.39384), (-39.07252, -12.940952, 28.387848), (-38.471043, -15.45085, 27.95085), (-38.471043, -15.45085, 27.95085), (-39.07252, -12.940952, 28.387848), (-40.504677, -12.940952, 26.304045), (-39.881157, -15.45085, 25.899126), (-39.881157, -15.45085, 25.899126), (-40.504677, -12.940952, 26.304045), (-41.825813, -12.940952, 24.148146), (-41.181953, -15.45085, 23.776413), (-41.181953, -15.45085, 23.776413), (-41.825813, -12.940952, 24.148146), (-43.03231, -12.940952, 21.926058), (-42.369877, -15.45085, 21.588531), (-42.369877, -15.45085, 21.588531), (-43.03231, -12.940952, 21.926058), (-44.120857, -12.940952, 19.643871), (-43.44167, -15.45085, 19.341476), (-43.44167, -15.45085, 19.341476), (-44.120857, -12.940952, 19.643871), (-45.08847, -12.940952, 17.307842), (-44.394386, -15.45085, 17.041409), (-44.394386, -15.45085, 17.041409), (-45.08847, -12.940952, 17.307842), (-45.932503, -12.940952, 14.924375), (-45.225426, -15.45085, 14.694632), (-45.225426, -15.45085, 14.694632), (-45.932503, -12.940952, 14.924375), (-46.650635, -12.940952, 12.5), (-45.932503, -15.45085, 12.307577), (-45.932503, -15.45085, 12.307577), (-46.650635, -12.940952, 12.5), (-47.240902, -12.940952, 10.041364), (-46.513683, -15.45085, 9.886788), (-46.513683, -15.45085, 9.886788), (-47.240902, -12.940952, 10.041364), (-47.701683, -12.940952, 7.5552044), (-46.967373, -15.45085, 7.438901), (-46.967373, -15.45085, 7.438901), (-47.701683, -12.940952, 7.5552044), (-48.03172, -12.940952, 5.048337), (-47.292328, -15.45085, 4.970624), (-47.292328, -15.45085, 4.970624), (-48.03172, -12.940952, 5.048337), (-48.230103, -12.940952, 2.5276325), (-47.487656, -15.45085, 2.4887226), (-47.487656, -15.45085, 2.4887226), (-48.230103, -12.940952, 2.5276325), (-48.29629, -12.940952, 5.9145897e-15), (-47.552826, -15.45085, 5.8235417e-15), (-47.552826, -15.45085, 5.8235417e-15), (-48.29629, -12.940952, 5.9145897e-15), (-48.230103, -12.940952, -2.5276325), (-47.487656, -15.45085, -2.4887226), (-47.487656, -15.45085, -2.4887226), (-48.230103, -12.940952, -2.5276325), (-48.03172, -12.940952, -5.048337), (-47.292328, -15.45085, -4.970624), (-47.292328, -15.45085, -4.970624), (-48.03172, -12.940952, -5.048337), (-47.701683, -12.940952, -7.5552044), (-46.967373, -15.45085, -7.438901), (-46.967373, -15.45085, -7.438901), (-47.701683, -12.940952, -7.5552044), (-47.240902, -12.940952, -10.041364), (-46.513683, -15.45085, -9.886788), (-46.513683, -15.45085, -9.886788), (-47.240902, -12.940952, -10.041364), (-46.650635, -12.940952, -12.5), (-45.932503, -15.45085, -12.307577), (-45.932503, -15.45085, -12.307577), (-46.650635, -12.940952, -12.5), (-45.932503, -12.940952, -14.924375), (-45.225426, -15.45085, -14.694632), (-45.225426, -15.45085, -14.694632), (-45.932503, -12.940952, -14.924375), (-45.08847, -12.940952, -17.307842), (-44.394386, -15.45085, -17.041409), (-44.394386, -15.45085, -17.041409), (-45.08847, -12.940952, -17.307842), (-44.120857, -12.940952, -19.643871), (-43.44167, -15.45085, -19.341476), (-43.44167, -15.45085, -19.341476), (-44.120857, -12.940952, -19.643871), (-43.03231, -12.940952, -21.926058), (-42.369877, -15.45085, -21.588531), (-42.369877, -15.45085, -21.588531), (-43.03231, -12.940952, -21.926058), (-41.825813, -12.940952, -24.148146), (-41.181953, -15.45085, -23.776413), (-41.181953, -15.45085, -23.776413), (-41.825813, -12.940952, -24.148146), (-40.504677, -12.940952, -26.304045), (-39.881157, -15.45085, -25.899126), (-39.881157, -15.45085, -25.899126), (-40.504677, -12.940952, -26.304045), (-39.07252, -12.940952, -28.387848), (-38.471043, -15.45085, -27.95085), (-38.471043, -15.45085, -27.95085), (-39.07252, -12.940952, -28.387848), (-37.533268, -12.940952, -30.39384), (-36.955486, -15.45085, -29.925962), (-36.955486, -15.45085, -29.925962), (-37.533268, -12.940952, -30.39384), (-35.89114, -12.940952, -32.31653), (-35.33864, -15.45085, -31.819052), (-35.33864, -15.45085, -31.819052), (-35.89114, -12.940952, -32.31653), (-34.150635, -12.940952, -34.150635), (-33.624924, -15.45085, -33.624924), (-33.624924, -15.45085, -33.624924), (-34.150635, -12.940952, -34.150635), (-32.31653, -12.940952, -35.89114), (-31.819052, -15.45085, -35.33864), (-31.819052, -15.45085, -35.33864), (-32.31653, -12.940952, -35.89114), (-30.39384, -12.940952, -37.533268), (-29.925962, -15.45085, -36.955486), (-29.925962, -15.45085, -36.955486), (-30.39384, -12.940952, -37.533268), (-28.387848, -12.940952, -39.07252), (-27.95085, -15.45085, -38.471043), (-27.95085, -15.45085, -38.471043), (-28.387848, -12.940952, -39.07252), (-26.304045, -12.940952, -40.504677), (-25.899126, -15.45085, -39.881157), (-25.899126, -15.45085, -39.881157), (-26.304045, -12.940952, -40.504677), (-24.148146, -12.940952, -41.825813), (-23.776413, -15.45085, -41.181953), (-23.776413, -15.45085, -41.181953), (-24.148146, -12.940952, -41.825813), (-21.926058, -12.940952, -43.03231), (-21.588531, -15.45085, -42.369877), (-21.588531, -15.45085, -42.369877), (-21.926058, -12.940952, -43.03231), (-19.643871, -12.940952, -44.120857), (-19.341476, -15.45085, -43.44167), (-19.341476, -15.45085, -43.44167), (-19.643871, -12.940952, -44.120857), (-17.307842, -12.940952, -45.08847), (-17.041409, -15.45085, -44.394386), (-17.041409, -15.45085, -44.394386), (-17.307842, -12.940952, -45.08847), (-14.924375, -12.940952, -45.932503), (-14.694632, -15.45085, -45.225426), (-14.694632, -15.45085, -45.225426), (-14.924375, -12.940952, -45.932503), (-12.5, -12.940952, -46.650635), (-12.307577, -15.45085, -45.932503), (-12.307577, -15.45085, -45.932503), (-12.5, -12.940952, -46.650635), (-10.041364, -12.940952, -47.240902), (-9.886788, -15.45085, -46.513683), (-9.886788, -15.45085, -46.513683), (-10.041364, -12.940952, -47.240902), (-7.5552044, -12.940952, -47.701683), (-7.438901, -15.45085, -46.967373), (-7.438901, -15.45085, -46.967373), (-7.5552044, -12.940952, -47.701683), (-5.048337, -12.940952, -48.03172), (-4.970624, -15.45085, -47.292328), (-4.970624, -15.45085, -47.292328), (-5.048337, -12.940952, -48.03172), (-2.5276325, -12.940952, -48.230103), (-2.4887226, -15.45085, -47.487656), (-2.4887226, -15.45085, -47.487656), (-2.5276325, -12.940952, -48.230103), (-8.871885e-15, -12.940952, -48.29629), (-8.735313e-15, -15.45085, -47.552826), (-8.735313e-15, -15.45085, -47.552826), (-8.871885e-15, -12.940952, -48.29629), (2.5276325, -12.940952, -48.230103), (2.4887226, -15.45085, -47.487656), (2.4887226, -15.45085, -47.487656), (2.5276325, -12.940952, -48.230103), (5.048337, -12.940952, -48.03172), (4.970624, -15.45085, -47.292328), (4.970624, -15.45085, -47.292328), (5.048337, -12.940952, -48.03172), (7.5552044, -12.940952, -47.701683), (7.438901, -15.45085, -46.967373), (7.438901, -15.45085, -46.967373), (7.5552044, -12.940952, -47.701683), (10.041364, -12.940952, -47.240902), (9.886788, -15.45085, -46.513683), (9.886788, -15.45085, -46.513683), (10.041364, -12.940952, -47.240902), (12.5, -12.940952, -46.650635), (12.307577, -15.45085, -45.932503), (12.307577, -15.45085, -45.932503), (12.5, -12.940952, -46.650635), (14.924375, -12.940952, -45.932503), (14.694632, -15.45085, -45.225426), (14.694632, -15.45085, -45.225426), (14.924375, -12.940952, -45.932503), (17.307842, -12.940952, -45.08847), (17.041409, -15.45085, -44.394386), (17.041409, -15.45085, -44.394386), (17.307842, -12.940952, -45.08847), (19.643871, -12.940952, -44.120857), (19.341476, -15.45085, -43.44167), (19.341476, -15.45085, -43.44167), (19.643871, -12.940952, -44.120857), (21.926058, -12.940952, -43.03231), (21.588531, -15.45085, -42.369877), (21.588531, -15.45085, -42.369877), (21.926058, -12.940952, -43.03231), (24.148146, -12.940952, -41.825813), (23.776413, -15.45085, -41.181953), (23.776413, -15.45085, -41.181953), (24.148146, -12.940952, -41.825813), (26.304045, -12.940952, -40.504677), (25.899126, -15.45085, -39.881157), (25.899126, -15.45085, -39.881157), (26.304045, -12.940952, -40.504677), (28.387848, -12.940952, -39.07252), (27.95085, -15.45085, -38.471043), (27.95085, -15.45085, -38.471043), (28.387848, -12.940952, -39.07252), (30.39384, -12.940952, -37.533268), (29.925962, -15.45085, -36.955486), (29.925962, -15.45085, -36.955486), (30.39384, -12.940952, -37.533268), (32.31653, -12.940952, -35.89114), (31.819052, -15.45085, -35.33864), (31.819052, -15.45085, -35.33864), (32.31653, -12.940952, -35.89114), (34.150635, -12.940952, -34.150635), (33.624924, -15.45085, -33.624924), (33.624924, -15.45085, -33.624924), (34.150635, -12.940952, -34.150635), (35.89114, -12.940952, -32.31653), (35.33864, -15.45085, -31.819052), (35.33864, -15.45085, -31.819052), (35.89114, -12.940952, -32.31653), (37.533268, -12.940952, -30.39384), (36.955486, -15.45085, -29.925962), (36.955486, -15.45085, -29.925962), (37.533268, -12.940952, -30.39384), (39.07252, -12.940952, -28.387848), (38.471043, -15.45085, -27.95085), (38.471043, -15.45085, -27.95085), (39.07252, -12.940952, -28.387848), (40.504677, -12.940952, -26.304045), (39.881157, -15.45085, -25.899126), (39.881157, -15.45085, -25.899126), (40.504677, -12.940952, -26.304045), (41.825813, -12.940952, -24.148146), (41.181953, -15.45085, -23.776413), (41.181953, -15.45085, -23.776413), (41.825813, -12.940952, -24.148146), (43.03231, -12.940952, -21.926058), (42.369877, -15.45085, -21.588531), (42.369877, -15.45085, -21.588531), (43.03231, -12.940952, -21.926058), (44.120857, -12.940952, -19.643871), (43.44167, -15.45085, -19.341476), (43.44167, -15.45085, -19.341476), (44.120857, -12.940952, -19.643871), (45.08847, -12.940952, -17.307842), (44.394386, -15.45085, -17.041409), (44.394386, -15.45085, -17.041409), (45.08847, -12.940952, -17.307842), (45.932503, -12.940952, -14.924375), (45.225426, -15.45085, -14.694632), (45.225426, -15.45085, -14.694632), (45.932503, -12.940952, -14.924375), (46.650635, -12.940952, -12.5), (45.932503, -15.45085, -12.307577), (45.932503, -15.45085, -12.307577), (46.650635, -12.940952, -12.5), (47.240902, -12.940952, -10.041364), (46.513683, -15.45085, -9.886788), (46.513683, -15.45085, -9.886788), (47.240902, -12.940952, -10.041364), (47.701683, -12.940952, -7.5552044), (46.967373, -15.45085, -7.438901), (46.967373, -15.45085, -7.438901), (47.701683, -12.940952, -7.5552044), (48.03172, -12.940952, -5.048337), (47.292328, -15.45085, -4.970624), (47.292328, -15.45085, -4.970624), (48.03172, -12.940952, -5.048337), (48.230103, -12.940952, -2.5276325), (47.487656, -15.45085, -2.4887226), (47.487656, -15.45085, -2.4887226), (48.230103, -12.940952, -2.5276325), (48.29629, -12.940952, 0), (47.552826, -15.45085, 0), (48.29629, -12.940952, 0), (48.90738, -10.395584, 0), (48.840355, -10.395584, 2.5596144), (48.230103, -12.940952, 2.5276325), (48.230103, -12.940952, 2.5276325), (48.840355, -10.395584, 2.5596144), (48.63946, -10.395584, 5.112213), (48.03172, -12.940952, 5.048337), (48.03172, -12.940952, 5.048337), (48.63946, -10.395584, 5.112213), (48.30525, -10.395584, 7.6507998), (47.701683, -12.940952, 7.5552044), (47.701683, -12.940952, 7.5552044), (48.30525, -10.395584, 7.6507998), (47.83864, -10.395584, 10.168416), (47.240902, -12.940952, 10.041364), (47.240902, -12.940952, 10.041364), (47.83864, -10.395584, 10.168416), (47.240902, -10.395584, 12.658161), (46.650635, -12.940952, 12.5), (46.650635, -12.940952, 12.5), (47.240902, -10.395584, 12.658161), (46.513683, -10.395584, 15.113212), (45.932503, -12.940952, 14.924375), (45.932503, -12.940952, 14.924375), (46.513683, -10.395584, 15.113212), (45.658974, -10.395584, 17.526838), (45.08847, -12.940952, 17.307842), (45.08847, -12.940952, 17.307842), (45.658974, -10.395584, 17.526838), (44.679115, -10.395584, 19.892424), (44.120857, -12.940952, 19.643871), (44.120857, -12.940952, 19.643871), (44.679115, -10.395584, 19.892424), (43.576794, -10.395584, 22.203485), (43.03231, -12.940952, 21.926058), (43.03231, -12.940952, 21.926058), (43.576794, -10.395584, 22.203485), (42.355034, -10.395584, 24.45369), (41.825813, -12.940952, 24.148146), (41.825813, -12.940952, 24.148146), (42.355034, -10.395584, 24.45369), (41.01718, -10.395584, 26.636868), (40.504677, -12.940952, 26.304045), (40.504677, -12.940952, 26.304045), (41.01718, -10.395584, 26.636868), (39.566902, -10.395584, 28.747036), (39.07252, -12.940952, 28.387848), (39.07252, -12.940952, 28.387848), (39.566902, -10.395584, 28.747036), (38.00817, -10.395584, 30.778412), (37.533268, -12.940952, 30.39384), (37.533268, -12.940952, 30.39384), (38.00817, -10.395584, 30.778412), (36.34527, -10.395584, 32.725426), (35.89114, -12.940952, 32.31653), (35.89114, -12.940952, 32.31653), (36.34527, -10.395584, 32.725426), (34.58274, -10.395584, 34.58274), (34.150635, -12.940952, 34.150635), (34.150635, -12.940952, 34.150635), (34.58274, -10.395584, 34.58274), (32.725426, -10.395584, 36.34527), (32.31653, -12.940952, 35.89114), (32.31653, -12.940952, 35.89114), (32.725426, -10.395584, 36.34527), (30.778412, -10.395584, 38.00817), (30.39384, -12.940952, 37.533268), (30.39384, -12.940952, 37.533268), (30.778412, -10.395584, 38.00817), (28.747036, -10.395584, 39.566902), (28.387848, -12.940952, 39.07252), (28.387848, -12.940952, 39.07252), (28.747036, -10.395584, 39.566902), (26.636868, -10.395584, 41.01718), (26.304045, -12.940952, 40.504677), (26.304045, -12.940952, 40.504677), (26.636868, -10.395584, 41.01718), (24.45369, -10.395584, 42.355034), (24.148146, -12.940952, 41.825813), (24.148146, -12.940952, 41.825813), (24.45369, -10.395584, 42.355034), (22.203485, -10.395584, 43.576794), (21.926058, -12.940952, 43.03231), (21.926058, -12.940952, 43.03231), (22.203485, -10.395584, 43.576794), (19.892424, -10.395584, 44.679115), (19.643871, -12.940952, 44.120857), (19.643871, -12.940952, 44.120857), (19.892424, -10.395584, 44.679115), (17.526838, -10.395584, 45.658974), (17.307842, -12.940952, 45.08847), (17.307842, -12.940952, 45.08847), (17.526838, -10.395584, 45.658974), (15.113212, -10.395584, 46.513683), (14.924375, -12.940952, 45.932503), (14.924375, -12.940952, 45.932503), (15.113212, -10.395584, 46.513683), (12.658161, -10.395584, 47.240902), (12.5, -12.940952, 46.650635), (12.5, -12.940952, 46.650635), (12.658161, -10.395584, 47.240902), (10.168416, -10.395584, 47.83864), (10.041364, -12.940952, 47.240902), (10.041364, -12.940952, 47.240902), (10.168416, -10.395584, 47.83864), (7.6507998, -10.395584, 48.30525), (7.5552044, -12.940952, 47.701683), (7.5552044, -12.940952, 47.701683), (7.6507998, -10.395584, 48.30525), (5.112213, -10.395584, 48.63946), (5.048337, -12.940952, 48.03172), (5.048337, -12.940952, 48.03172), (5.112213, -10.395584, 48.63946), (2.5596144, -10.395584, 48.840355), (2.5276325, -12.940952, 48.230103), (2.5276325, -12.940952, 48.230103), (2.5596144, -10.395584, 48.840355), (2.9947134e-15, -10.395584, 48.90738), (2.9572948e-15, -12.940952, 48.29629), (2.9572948e-15, -12.940952, 48.29629), (2.9947134e-15, -10.395584, 48.90738), (-2.5596144, -10.395584, 48.840355), (-2.5276325, -12.940952, 48.230103), (-2.5276325, -12.940952, 48.230103), (-2.5596144, -10.395584, 48.840355), (-5.112213, -10.395584, 48.63946), (-5.048337, -12.940952, 48.03172), (-5.048337, -12.940952, 48.03172), (-5.112213, -10.395584, 48.63946), (-7.6507998, -10.395584, 48.30525), (-7.5552044, -12.940952, 47.701683), (-7.5552044, -12.940952, 47.701683), (-7.6507998, -10.395584, 48.30525), (-10.168416, -10.395584, 47.83864), (-10.041364, -12.940952, 47.240902), (-10.041364, -12.940952, 47.240902), (-10.168416, -10.395584, 47.83864), (-12.658161, -10.395584, 47.240902), (-12.5, -12.940952, 46.650635), (-12.5, -12.940952, 46.650635), (-12.658161, -10.395584, 47.240902), (-15.113212, -10.395584, 46.513683), (-14.924375, -12.940952, 45.932503), (-14.924375, -12.940952, 45.932503), (-15.113212, -10.395584, 46.513683), (-17.526838, -10.395584, 45.658974), (-17.307842, -12.940952, 45.08847), (-17.307842, -12.940952, 45.08847), (-17.526838, -10.395584, 45.658974), (-19.892424, -10.395584, 44.679115), (-19.643871, -12.940952, 44.120857), (-19.643871, -12.940952, 44.120857), (-19.892424, -10.395584, 44.679115), (-22.203485, -10.395584, 43.576794), (-21.926058, -12.940952, 43.03231), (-21.926058, -12.940952, 43.03231), (-22.203485, -10.395584, 43.576794), (-24.45369, -10.395584, 42.355034), (-24.148146, -12.940952, 41.825813), (-24.148146, -12.940952, 41.825813), (-24.45369, -10.395584, 42.355034), (-26.636868, -10.395584, 41.01718), (-26.304045, -12.940952, 40.504677), (-26.304045, -12.940952, 40.504677), (-26.636868, -10.395584, 41.01718), (-28.747036, -10.395584, 39.566902), (-28.387848, -12.940952, 39.07252), (-28.387848, -12.940952, 39.07252), (-28.747036, -10.395584, 39.566902), (-30.778412, -10.395584, 38.00817), (-30.39384, -12.940952, 37.533268), (-30.39384, -12.940952, 37.533268), (-30.778412, -10.395584, 38.00817), (-32.725426, -10.395584, 36.34527), (-32.31653, -12.940952, 35.89114), (-32.31653, -12.940952, 35.89114), (-32.725426, -10.395584, 36.34527), (-34.58274, -10.395584, 34.58274), (-34.150635, -12.940952, 34.150635), (-34.150635, -12.940952, 34.150635), (-34.58274, -10.395584, 34.58274), (-36.34527, -10.395584, 32.725426), (-35.89114, -12.940952, 32.31653), (-35.89114, -12.940952, 32.31653), (-36.34527, -10.395584, 32.725426), (-38.00817, -10.395584, 30.778412), (-37.533268, -12.940952, 30.39384), (-37.533268, -12.940952, 30.39384), (-38.00817, -10.395584, 30.778412), (-39.566902, -10.395584, 28.747036), (-39.07252, -12.940952, 28.387848), (-39.07252, -12.940952, 28.387848), (-39.566902, -10.395584, 28.747036), (-41.01718, -10.395584, 26.636868), (-40.504677, -12.940952, 26.304045), (-40.504677, -12.940952, 26.304045), (-41.01718, -10.395584, 26.636868), (-42.355034, -10.395584, 24.45369), (-41.825813, -12.940952, 24.148146), (-41.825813, -12.940952, 24.148146), (-42.355034, -10.395584, 24.45369), (-43.576794, -10.395584, 22.203485), (-43.03231, -12.940952, 21.926058), (-43.03231, -12.940952, 21.926058), (-43.576794, -10.395584, 22.203485), (-44.679115, -10.395584, 19.892424), (-44.120857, -12.940952, 19.643871), (-44.120857, -12.940952, 19.643871), (-44.679115, -10.395584, 19.892424), (-45.658974, -10.395584, 17.526838), (-45.08847, -12.940952, 17.307842), (-45.08847, -12.940952, 17.307842), (-45.658974, -10.395584, 17.526838), (-46.513683, -10.395584, 15.113212), (-45.932503, -12.940952, 14.924375), (-45.932503, -12.940952, 14.924375), (-46.513683, -10.395584, 15.113212), (-47.240902, -10.395584, 12.658161), (-46.650635, -12.940952, 12.5), (-46.650635, -12.940952, 12.5), (-47.240902, -10.395584, 12.658161), (-47.83864, -10.395584, 10.168416), (-47.240902, -12.940952, 10.041364), (-47.240902, -12.940952, 10.041364), (-47.83864, -10.395584, 10.168416), (-48.30525, -10.395584, 7.6507998), (-47.701683, -12.940952, 7.5552044), (-47.701683, -12.940952, 7.5552044), (-48.30525, -10.395584, 7.6507998), (-48.63946, -10.395584, 5.112213), (-48.03172, -12.940952, 5.048337), (-48.03172, -12.940952, 5.048337), (-48.63946, -10.395584, 5.112213), (-48.840355, -10.395584, 2.5596144), (-48.230103, -12.940952, 2.5276325), (-48.230103, -12.940952, 2.5276325), (-48.840355, -10.395584, 2.5596144), (-48.90738, -10.395584, 5.9894267e-15), (-48.29629, -12.940952, 5.9145897e-15), (-48.29629, -12.940952, 5.9145897e-15), (-48.90738, -10.395584, 5.9894267e-15), (-48.840355, -10.395584, -2.5596144), (-48.230103, -12.940952, -2.5276325), (-48.230103, -12.940952, -2.5276325), (-48.840355, -10.395584, -2.5596144), (-48.63946, -10.395584, -5.112213), (-48.03172, -12.940952, -5.048337), (-48.03172, -12.940952, -5.048337), (-48.63946, -10.395584, -5.112213), (-48.30525, -10.395584, -7.6507998), (-47.701683, -12.940952, -7.5552044), (-47.701683, -12.940952, -7.5552044), (-48.30525, -10.395584, -7.6507998), (-47.83864, -10.395584, -10.168416), (-47.240902, -12.940952, -10.041364), (-47.240902, -12.940952, -10.041364), (-47.83864, -10.395584, -10.168416), (-47.240902, -10.395584, -12.658161), (-46.650635, -12.940952, -12.5), (-46.650635, -12.940952, -12.5), (-47.240902, -10.395584, -12.658161), (-46.513683, -10.395584, -15.113212), (-45.932503, -12.940952, -14.924375), (-45.932503, -12.940952, -14.924375), (-46.513683, -10.395584, -15.113212), (-45.658974, -10.395584, -17.526838), (-45.08847, -12.940952, -17.307842), (-45.08847, -12.940952, -17.307842), (-45.658974, -10.395584, -17.526838), (-44.679115, -10.395584, -19.892424), (-44.120857, -12.940952, -19.643871), (-44.120857, -12.940952, -19.643871), (-44.679115, -10.395584, -19.892424), (-43.576794, -10.395584, -22.203485), (-43.03231, -12.940952, -21.926058), (-43.03231, -12.940952, -21.926058), (-43.576794, -10.395584, -22.203485), (-42.355034, -10.395584, -24.45369), (-41.825813, -12.940952, -24.148146), (-41.825813, -12.940952, -24.148146), (-42.355034, -10.395584, -24.45369), (-41.01718, -10.395584, -26.636868), (-40.504677, -12.940952, -26.304045), (-40.504677, -12.940952, -26.304045), (-41.01718, -10.395584, -26.636868), (-39.566902, -10.395584, -28.747036), (-39.07252, -12.940952, -28.387848), (-39.07252, -12.940952, -28.387848), (-39.566902, -10.395584, -28.747036), (-38.00817, -10.395584, -30.778412), (-37.533268, -12.940952, -30.39384), (-37.533268, -12.940952, -30.39384), (-38.00817, -10.395584, -30.778412), (-36.34527, -10.395584, -32.725426), (-35.89114, -12.940952, -32.31653), (-35.89114, -12.940952, -32.31653), (-36.34527, -10.395584, -32.725426), (-34.58274, -10.395584, -34.58274), (-34.150635, -12.940952, -34.150635), (-34.150635, -12.940952, -34.150635), (-34.58274, -10.395584, -34.58274), (-32.725426, -10.395584, -36.34527), (-32.31653, -12.940952, -35.89114), (-32.31653, -12.940952, -35.89114), (-32.725426, -10.395584, -36.34527), (-30.778412, -10.395584, -38.00817), (-30.39384, -12.940952, -37.533268), (-30.39384, -12.940952, -37.533268), (-30.778412, -10.395584, -38.00817), (-28.747036, -10.395584, -39.566902), (-28.387848, -12.940952, -39.07252), (-28.387848, -12.940952, -39.07252), (-28.747036, -10.395584, -39.566902), (-26.636868, -10.395584, -41.01718), (-26.304045, -12.940952, -40.504677), (-26.304045, -12.940952, -40.504677), (-26.636868, -10.395584, -41.01718), (-24.45369, -10.395584, -42.355034), (-24.148146, -12.940952, -41.825813), (-24.148146, -12.940952, -41.825813), (-24.45369, -10.395584, -42.355034), (-22.203485, -10.395584, -43.576794), (-21.926058, -12.940952, -43.03231), (-21.926058, -12.940952, -43.03231), (-22.203485, -10.395584, -43.576794), (-19.892424, -10.395584, -44.679115), (-19.643871, -12.940952, -44.120857), (-19.643871, -12.940952, -44.120857), (-19.892424, -10.395584, -44.679115), (-17.526838, -10.395584, -45.658974), (-17.307842, -12.940952, -45.08847), (-17.307842, -12.940952, -45.08847), (-17.526838, -10.395584, -45.658974), (-15.113212, -10.395584, -46.513683), (-14.924375, -12.940952, -45.932503), (-14.924375, -12.940952, -45.932503), (-15.113212, -10.395584, -46.513683), (-12.658161, -10.395584, -47.240902), (-12.5, -12.940952, -46.650635), (-12.5, -12.940952, -46.650635), (-12.658161, -10.395584, -47.240902), (-10.168416, -10.395584, -47.83864), (-10.041364, -12.940952, -47.240902), (-10.041364, -12.940952, -47.240902), (-10.168416, -10.395584, -47.83864), (-7.6507998, -10.395584, -48.30525), (-7.5552044, -12.940952, -47.701683), (-7.5552044, -12.940952, -47.701683), (-7.6507998, -10.395584, -48.30525), (-5.112213, -10.395584, -48.63946), (-5.048337, -12.940952, -48.03172), (-5.048337, -12.940952, -48.03172), (-5.112213, -10.395584, -48.63946), (-2.5596144, -10.395584, -48.840355), (-2.5276325, -12.940952, -48.230103), (-2.5276325, -12.940952, -48.230103), (-2.5596144, -10.395584, -48.840355), (-8.98414e-15, -10.395584, -48.90738), (-8.871885e-15, -12.940952, -48.29629), (-8.871885e-15, -12.940952, -48.29629), (-8.98414e-15, -10.395584, -48.90738), (2.5596144, -10.395584, -48.840355), (2.5276325, -12.940952, -48.230103), (2.5276325, -12.940952, -48.230103), (2.5596144, -10.395584, -48.840355), (5.112213, -10.395584, -48.63946), (5.048337, -12.940952, -48.03172), (5.048337, -12.940952, -48.03172), (5.112213, -10.395584, -48.63946), (7.6507998, -10.395584, -48.30525), (7.5552044, -12.940952, -47.701683), (7.5552044, -12.940952, -47.701683), (7.6507998, -10.395584, -48.30525), (10.168416, -10.395584, -47.83864), (10.041364, -12.940952, -47.240902), (10.041364, -12.940952, -47.240902), (10.168416, -10.395584, -47.83864), (12.658161, -10.395584, -47.240902), (12.5, -12.940952, -46.650635), (12.5, -12.940952, -46.650635), (12.658161, -10.395584, -47.240902), (15.113212, -10.395584, -46.513683), (14.924375, -12.940952, -45.932503), (14.924375, -12.940952, -45.932503), (15.113212, -10.395584, -46.513683), (17.526838, -10.395584, -45.658974), (17.307842, -12.940952, -45.08847), (17.307842, -12.940952, -45.08847), (17.526838, -10.395584, -45.658974), (19.892424, -10.395584, -44.679115), (19.643871, -12.940952, -44.120857), (19.643871, -12.940952, -44.120857), (19.892424, -10.395584, -44.679115), (22.203485, -10.395584, -43.576794), (21.926058, -12.940952, -43.03231), (21.926058, -12.940952, -43.03231), (22.203485, -10.395584, -43.576794), (24.45369, -10.395584, -42.355034), (24.148146, -12.940952, -41.825813), (24.148146, -12.940952, -41.825813), (24.45369, -10.395584, -42.355034), (26.636868, -10.395584, -41.01718), (26.304045, -12.940952, -40.504677), (26.304045, -12.940952, -40.504677), (26.636868, -10.395584, -41.01718), (28.747036, -10.395584, -39.566902), (28.387848, -12.940952, -39.07252), (28.387848, -12.940952, -39.07252), (28.747036, -10.395584, -39.566902), (30.778412, -10.395584, -38.00817), (30.39384, -12.940952, -37.533268), (30.39384, -12.940952, -37.533268), (30.778412, -10.395584, -38.00817), (32.725426, -10.395584, -36.34527), (32.31653, -12.940952, -35.89114), (32.31653, -12.940952, -35.89114), (32.725426, -10.395584, -36.34527), (34.58274, -10.395584, -34.58274), (34.150635, -12.940952, -34.150635), (34.150635, -12.940952, -34.150635), (34.58274, -10.395584, -34.58274), (36.34527, -10.395584, -32.725426), (35.89114, -12.940952, -32.31653), (35.89114, -12.940952, -32.31653), (36.34527, -10.395584, -32.725426), (38.00817, -10.395584, -30.778412), (37.533268, -12.940952, -30.39384), (37.533268, -12.940952, -30.39384), (38.00817, -10.395584, -30.778412), (39.566902, -10.395584, -28.747036), (39.07252, -12.940952, -28.387848), (39.07252, -12.940952, -28.387848), (39.566902, -10.395584, -28.747036), (41.01718, -10.395584, -26.636868), (40.504677, -12.940952, -26.304045), (40.504677, -12.940952, -26.304045), (41.01718, -10.395584, -26.636868), (42.355034, -10.395584, -24.45369), (41.825813, -12.940952, -24.148146), (41.825813, -12.940952, -24.148146), (42.355034, -10.395584, -24.45369), (43.576794, -10.395584, -22.203485), (43.03231, -12.940952, -21.926058), (43.03231, -12.940952, -21.926058), (43.576794, -10.395584, -22.203485), (44.679115, -10.395584, -19.892424), (44.120857, -12.940952, -19.643871), (44.120857, -12.940952, -19.643871), (44.679115, -10.395584, -19.892424), (45.658974, -10.395584, -17.526838), (45.08847, -12.940952, -17.307842), (45.08847, -12.940952, -17.307842), (45.658974, -10.395584, -17.526838), (46.513683, -10.395584, -15.113212), (45.932503, -12.940952, -14.924375), (45.932503, -12.940952, -14.924375), (46.513683, -10.395584, -15.113212), (47.240902, -10.395584, -12.658161), (46.650635, -12.940952, -12.5), (46.650635, -12.940952, -12.5), (47.240902, -10.395584, -12.658161), (47.83864, -10.395584, -10.168416), (47.240902, -12.940952, -10.041364), (47.240902, -12.940952, -10.041364), (47.83864, -10.395584, -10.168416), (48.30525, -10.395584, -7.6507998), (47.701683, -12.940952, -7.5552044), (47.701683, -12.940952, -7.5552044), (48.30525, -10.395584, -7.6507998), (48.63946, -10.395584, -5.112213), (48.03172, -12.940952, -5.048337), (48.03172, -12.940952, -5.048337), (48.63946, -10.395584, -5.112213), (48.840355, -10.395584, -2.5596144), (48.230103, -12.940952, -2.5276325), (48.230103, -12.940952, -2.5276325), (48.840355, -10.395584, -2.5596144), (48.90738, -10.395584, 0), (48.29629, -12.940952, 0), (48.90738, -10.395584, 0), (49.38442, -7.8217235, 0), (49.31674, -7.8217235, 2.5845807), (48.840355, -10.395584, 2.5596144), (48.840355, -10.395584, 2.5596144), (49.31674, -7.8217235, 2.5845807), (49.113884, -7.8217235, 5.1620774), (48.63946, -10.395584, 5.112213), (48.63946, -10.395584, 5.112213), (49.113884, -7.8217235, 5.1620774), (48.776413, -7.8217235, 7.725425), (48.30525, -10.395584, 7.6507998), (48.30525, -10.395584, 7.6507998), (48.776413, -7.8217235, 7.725425), (48.30525, -7.8217235, 10.267597), (47.83864, -10.395584, 10.168416), (47.83864, -10.395584, 10.168416), (48.30525, -7.8217235, 10.267597), (47.701683, -7.8217235, 12.781628), (47.240902, -10.395584, 12.658161), (47.240902, -10.395584, 12.658161), (47.701683, -7.8217235, 12.781628), (46.967373, -7.8217235, 15.260624), (46.513683, -10.395584, 15.113212), (46.513683, -10.395584, 15.113212), (46.967373, -7.8217235, 15.260624), (46.104324, -7.8217235, 17.697792), (45.658974, -10.395584, 17.526838), (45.658974, -10.395584, 17.526838), (46.104324, -7.8217235, 17.697792), (45.11491, -7.8217235, 20.086452), (44.679115, -10.395584, 19.892424), (44.679115, -10.395584, 19.892424), (45.11491, -7.8217235, 20.086452), (44.00184, -7.8217235, 22.420055), (43.576794, -10.395584, 22.203485), (43.576794, -10.395584, 22.203485), (44.00184, -7.8217235, 22.420055), (42.768158, -7.8217235, 24.69221), (42.355034, -10.395584, 24.45369), (42.355034, -10.395584, 24.45369), (42.768158, -7.8217235, 24.69221), (41.417255, -7.8217235, 26.89668), (41.01718, -10.395584, 26.636868), (41.01718, -10.395584, 26.636868), (41.417255, -7.8217235, 26.89668), (39.95283, -7.8217235, 29.027431), (39.566902, -10.395584, 28.747036), (39.566902, -10.395584, 28.747036), (39.95283, -7.8217235, 29.027431), (38.3789, -7.8217235, 31.07862), (38.00817, -10.395584, 30.778412), (38.00817, -10.395584, 30.778412), (38.3789, -7.8217235, 31.07862), (36.699776, -7.8217235, 33.044624), (36.34527, -10.395584, 32.725426), (36.34527, -10.395584, 32.725426), (36.699776, -7.8217235, 33.044624), (34.920055, -7.8217235, 34.920055), (34.58274, -10.395584, 34.58274), (34.58274, -10.395584, 34.58274), (34.920055, -7.8217235, 34.920055), (33.044624, -7.8217235, 36.699776), (32.725426, -10.395584, 36.34527), (32.725426, -10.395584, 36.34527), (33.044624, -7.8217235, 36.699776), (31.07862, -7.8217235, 38.3789), (30.778412, -10.395584, 38.00817), (30.778412, -10.395584, 38.00817), (31.07862, -7.8217235, 38.3789), (29.027431, -7.8217235, 39.95283), (28.747036, -10.395584, 39.566902), (28.747036, -10.395584, 39.566902), (29.027431, -7.8217235, 39.95283), (26.89668, -7.8217235, 41.417255), (26.636868, -10.395584, 41.01718), (26.636868, -10.395584, 41.01718), (26.89668, -7.8217235, 41.417255), (24.69221, -7.8217235, 42.768158), (24.45369, -10.395584, 42.355034), (24.45369, -10.395584, 42.355034), (24.69221, -7.8217235, 42.768158), (22.420055, -7.8217235, 44.00184), (22.203485, -10.395584, 43.576794), (22.203485, -10.395584, 43.576794), (22.420055, -7.8217235, 44.00184), (20.086452, -7.8217235, 45.11491), (19.892424, -10.395584, 44.679115), (19.892424, -10.395584, 44.679115), (20.086452, -7.8217235, 45.11491), (17.697792, -7.8217235, 46.104324), (17.526838, -10.395584, 45.658974), (17.526838, -10.395584, 45.658974), (17.697792, -7.8217235, 46.104324), (15.260624, -7.8217235, 46.967373), (15.113212, -10.395584, 46.513683), (15.113212, -10.395584, 46.513683), (15.260624, -7.8217235, 46.967373), (12.781628, -7.8217235, 47.701683), (12.658161, -10.395584, 47.240902), (12.658161, -10.395584, 47.240902), (12.781628, -7.8217235, 47.701683), (10.267597, -7.8217235, 48.30525), (10.168416, -10.395584, 47.83864), (10.168416, -10.395584, 47.83864), (10.267597, -7.8217235, 48.30525), (7.725425, -7.8217235, 48.776413), (7.6507998, -10.395584, 48.30525), (7.6507998, -10.395584, 48.30525), (7.725425, -7.8217235, 48.776413), (5.1620774, -7.8217235, 49.113884), (5.112213, -10.395584, 48.63946), (5.112213, -10.395584, 48.63946), (5.1620774, -7.8217235, 49.113884), (2.5845807, -7.8217235, 49.31674), (2.5596144, -10.395584, 48.840355), (2.5596144, -10.395584, 48.840355), (2.5845807, -7.8217235, 49.31674), (3.0239235e-15, -7.8217235, 49.38442), (2.9947134e-15, -10.395584, 48.90738), (2.9947134e-15, -10.395584, 48.90738), (3.0239235e-15, -7.8217235, 49.38442), (-2.5845807, -7.8217235, 49.31674), (-2.5596144, -10.395584, 48.840355), (-2.5596144, -10.395584, 48.840355), (-2.5845807, -7.8217235, 49.31674), (-5.1620774, -7.8217235, 49.113884), (-5.112213, -10.395584, 48.63946), (-5.112213, -10.395584, 48.63946), (-5.1620774, -7.8217235, 49.113884), (-7.725425, -7.8217235, 48.776413), (-7.6507998, -10.395584, 48.30525), (-7.6507998, -10.395584, 48.30525), (-7.725425, -7.8217235, 48.776413), (-10.267597, -7.8217235, 48.30525), (-10.168416, -10.395584, 47.83864), (-10.168416, -10.395584, 47.83864), (-10.267597, -7.8217235, 48.30525), (-12.781628, -7.8217235, 47.701683), (-12.658161, -10.395584, 47.240902), (-12.658161, -10.395584, 47.240902), (-12.781628, -7.8217235, 47.701683), (-15.260624, -7.8217235, 46.967373), (-15.113212, -10.395584, 46.513683), (-15.113212, -10.395584, 46.513683), (-15.260624, -7.8217235, 46.967373), (-17.697792, -7.8217235, 46.104324), (-17.526838, -10.395584, 45.658974), (-17.526838, -10.395584, 45.658974), (-17.697792, -7.8217235, 46.104324), (-20.086452, -7.8217235, 45.11491), (-19.892424, -10.395584, 44.679115), (-19.892424, -10.395584, 44.679115), (-20.086452, -7.8217235, 45.11491), (-22.420055, -7.8217235, 44.00184), (-22.203485, -10.395584, 43.576794), (-22.203485, -10.395584, 43.576794), (-22.420055, -7.8217235, 44.00184), (-24.69221, -7.8217235, 42.768158), (-24.45369, -10.395584, 42.355034), (-24.45369, -10.395584, 42.355034), (-24.69221, -7.8217235, 42.768158), (-26.89668, -7.8217235, 41.417255), (-26.636868, -10.395584, 41.01718), (-26.636868, -10.395584, 41.01718), (-26.89668, -7.8217235, 41.417255), (-29.027431, -7.8217235, 39.95283), (-28.747036, -10.395584, 39.566902), (-28.747036, -10.395584, 39.566902), (-29.027431, -7.8217235, 39.95283), (-31.07862, -7.8217235, 38.3789), (-30.778412, -10.395584, 38.00817), (-30.778412, -10.395584, 38.00817), (-31.07862, -7.8217235, 38.3789), (-33.044624, -7.8217235, 36.699776), (-32.725426, -10.395584, 36.34527), (-32.725426, -10.395584, 36.34527), (-33.044624, -7.8217235, 36.699776), (-34.920055, -7.8217235, 34.920055), (-34.58274, -10.395584, 34.58274), (-34.58274, -10.395584, 34.58274), (-34.920055, -7.8217235, 34.920055), (-36.699776, -7.8217235, 33.044624), (-36.34527, -10.395584, 32.725426), (-36.34527, -10.395584, 32.725426), (-36.699776, -7.8217235, 33.044624), (-38.3789, -7.8217235, 31.07862), (-38.00817, -10.395584, 30.778412), (-38.00817, -10.395584, 30.778412), (-38.3789, -7.8217235, 31.07862), (-39.95283, -7.8217235, 29.027431), (-39.566902, -10.395584, 28.747036), (-39.566902, -10.395584, 28.747036), (-39.95283, -7.8217235, 29.027431), (-41.417255, -7.8217235, 26.89668), (-41.01718, -10.395584, 26.636868), (-41.01718, -10.395584, 26.636868), (-41.417255, -7.8217235, 26.89668), (-42.768158, -7.8217235, 24.69221), (-42.355034, -10.395584, 24.45369), (-42.355034, -10.395584, 24.45369), (-42.768158, -7.8217235, 24.69221), (-44.00184, -7.8217235, 22.420055), (-43.576794, -10.395584, 22.203485), (-43.576794, -10.395584, 22.203485), (-44.00184, -7.8217235, 22.420055), (-45.11491, -7.8217235, 20.086452), (-44.679115, -10.395584, 19.892424), (-44.679115, -10.395584, 19.892424), (-45.11491, -7.8217235, 20.086452), (-46.104324, -7.8217235, 17.697792), (-45.658974, -10.395584, 17.526838), (-45.658974, -10.395584, 17.526838), (-46.104324, -7.8217235, 17.697792), (-46.967373, -7.8217235, 15.260624), (-46.513683, -10.395584, 15.113212), (-46.513683, -10.395584, 15.113212), (-46.967373, -7.8217235, 15.260624), (-47.701683, -7.8217235, 12.781628), (-47.240902, -10.395584, 12.658161), (-47.240902, -10.395584, 12.658161), (-47.701683, -7.8217235, 12.781628), (-48.30525, -7.8217235, 10.267597), (-47.83864, -10.395584, 10.168416), (-47.83864, -10.395584, 10.168416), (-48.30525, -7.8217235, 10.267597), (-48.776413, -7.8217235, 7.725425), (-48.30525, -10.395584, 7.6507998), (-48.30525, -10.395584, 7.6507998), (-48.776413, -7.8217235, 7.725425), (-49.113884, -7.8217235, 5.1620774), (-48.63946, -10.395584, 5.112213), (-48.63946, -10.395584, 5.112213), (-49.113884, -7.8217235, 5.1620774), (-49.31674, -7.8217235, 2.5845807), (-48.840355, -10.395584, 2.5596144), (-48.840355, -10.395584, 2.5596144), (-49.31674, -7.8217235, 2.5845807), (-49.38442, -7.8217235, 6.047847e-15), (-48.90738, -10.395584, 5.9894267e-15), (-48.90738, -10.395584, 5.9894267e-15), (-49.38442, -7.8217235, 6.047847e-15), (-49.31674, -7.8217235, -2.5845807), (-48.840355, -10.395584, -2.5596144), (-48.840355, -10.395584, -2.5596144), (-49.31674, -7.8217235, -2.5845807), (-49.113884, -7.8217235, -5.1620774), (-48.63946, -10.395584, -5.112213), (-48.63946, -10.395584, -5.112213), (-49.113884, -7.8217235, -5.1620774), (-48.776413, -7.8217235, -7.725425), (-48.30525, -10.395584, -7.6507998), (-48.30525, -10.395584, -7.6507998), (-48.776413, -7.8217235, -7.725425), (-48.30525, -7.8217235, -10.267597), (-47.83864, -10.395584, -10.168416), (-47.83864, -10.395584, -10.168416), (-48.30525, -7.8217235, -10.267597), (-47.701683, -7.8217235, -12.781628), (-47.240902, -10.395584, -12.658161), (-47.240902, -10.395584, -12.658161), (-47.701683, -7.8217235, -12.781628), (-46.967373, -7.8217235, -15.260624), (-46.513683, -10.395584, -15.113212), (-46.513683, -10.395584, -15.113212), (-46.967373, -7.8217235, -15.260624), (-46.104324, -7.8217235, -17.697792), (-45.658974, -10.395584, -17.526838), (-45.658974, -10.395584, -17.526838), (-46.104324, -7.8217235, -17.697792), (-45.11491, -7.8217235, -20.086452), (-44.679115, -10.395584, -19.892424), (-44.679115, -10.395584, -19.892424), (-45.11491, -7.8217235, -20.086452), (-44.00184, -7.8217235, -22.420055), (-43.576794, -10.395584, -22.203485), (-43.576794, -10.395584, -22.203485), (-44.00184, -7.8217235, -22.420055), (-42.768158, -7.8217235, -24.69221), (-42.355034, -10.395584, -24.45369), (-42.355034, -10.395584, -24.45369), (-42.768158, -7.8217235, -24.69221), (-41.417255, -7.8217235, -26.89668), (-41.01718, -10.395584, -26.636868), (-41.01718, -10.395584, -26.636868), (-41.417255, -7.8217235, -26.89668), (-39.95283, -7.8217235, -29.027431), (-39.566902, -10.395584, -28.747036), (-39.566902, -10.395584, -28.747036), (-39.95283, -7.8217235, -29.027431), (-38.3789, -7.8217235, -31.07862), (-38.00817, -10.395584, -30.778412), (-38.00817, -10.395584, -30.778412), (-38.3789, -7.8217235, -31.07862), (-36.699776, -7.8217235, -33.044624), (-36.34527, -10.395584, -32.725426), (-36.34527, -10.395584, -32.725426), (-36.699776, -7.8217235, -33.044624), (-34.920055, -7.8217235, -34.920055), (-34.58274, -10.395584, -34.58274), (-34.58274, -10.395584, -34.58274), (-34.920055, -7.8217235, -34.920055), (-33.044624, -7.8217235, -36.699776), (-32.725426, -10.395584, -36.34527), (-32.725426, -10.395584, -36.34527), (-33.044624, -7.8217235, -36.699776), (-31.07862, -7.8217235, -38.3789), (-30.778412, -10.395584, -38.00817), (-30.778412, -10.395584, -38.00817), (-31.07862, -7.8217235, -38.3789), (-29.027431, -7.8217235, -39.95283), (-28.747036, -10.395584, -39.566902), (-28.747036, -10.395584, -39.566902), (-29.027431, -7.8217235, -39.95283), (-26.89668, -7.8217235, -41.417255), (-26.636868, -10.395584, -41.01718), (-26.636868, -10.395584, -41.01718), (-26.89668, -7.8217235, -41.417255), (-24.69221, -7.8217235, -42.768158), (-24.45369, -10.395584, -42.355034), (-24.45369, -10.395584, -42.355034), (-24.69221, -7.8217235, -42.768158), (-22.420055, -7.8217235, -44.00184), (-22.203485, -10.395584, -43.576794), (-22.203485, -10.395584, -43.576794), (-22.420055, -7.8217235, -44.00184), (-20.086452, -7.8217235, -45.11491), (-19.892424, -10.395584, -44.679115), (-19.892424, -10.395584, -44.679115), (-20.086452, -7.8217235, -45.11491), (-17.697792, -7.8217235, -46.104324), (-17.526838, -10.395584, -45.658974), (-17.526838, -10.395584, -45.658974), (-17.697792, -7.8217235, -46.104324), (-15.260624, -7.8217235, -46.967373), (-15.113212, -10.395584, -46.513683), (-15.113212, -10.395584, -46.513683), (-15.260624, -7.8217235, -46.967373), (-12.781628, -7.8217235, -47.701683), (-12.658161, -10.395584, -47.240902), (-12.658161, -10.395584, -47.240902), (-12.781628, -7.8217235, -47.701683), (-10.267597, -7.8217235, -48.30525), (-10.168416, -10.395584, -47.83864), (-10.168416, -10.395584, -47.83864), (-10.267597, -7.8217235, -48.30525), (-7.725425, -7.8217235, -48.776413), (-7.6507998, -10.395584, -48.30525), (-7.6507998, -10.395584, -48.30525), (-7.725425, -7.8217235, -48.776413), (-5.1620774, -7.8217235, -49.113884), (-5.112213, -10.395584, -48.63946), (-5.112213, -10.395584, -48.63946), (-5.1620774, -7.8217235, -49.113884), (-2.5845807, -7.8217235, -49.31674), (-2.5596144, -10.395584, -48.840355), (-2.5596144, -10.395584, -48.840355), (-2.5845807, -7.8217235, -49.31674), (-9.07177e-15, -7.8217235, -49.38442), (-8.98414e-15, -10.395584, -48.90738), (-8.98414e-15, -10.395584, -48.90738), (-9.07177e-15, -7.8217235, -49.38442), (2.5845807, -7.8217235, -49.31674), (2.5596144, -10.395584, -48.840355), (2.5596144, -10.395584, -48.840355), (2.5845807, -7.8217235, -49.31674), (5.1620774, -7.8217235, -49.113884), (5.112213, -10.395584, -48.63946), (5.112213, -10.395584, -48.63946), (5.1620774, -7.8217235, -49.113884), (7.725425, -7.8217235, -48.776413), (7.6507998, -10.395584, -48.30525), (7.6507998, -10.395584, -48.30525), (7.725425, -7.8217235, -48.776413), (10.267597, -7.8217235, -48.30525), (10.168416, -10.395584, -47.83864), (10.168416, -10.395584, -47.83864), (10.267597, -7.8217235, -48.30525), (12.781628, -7.8217235, -47.701683), (12.658161, -10.395584, -47.240902), (12.658161, -10.395584, -47.240902), (12.781628, -7.8217235, -47.701683), (15.260624, -7.8217235, -46.967373), (15.113212, -10.395584, -46.513683), (15.113212, -10.395584, -46.513683), (15.260624, -7.8217235, -46.967373), (17.697792, -7.8217235, -46.104324), (17.526838, -10.395584, -45.658974), (17.526838, -10.395584, -45.658974), (17.697792, -7.8217235, -46.104324), (20.086452, -7.8217235, -45.11491), (19.892424, -10.395584, -44.679115), (19.892424, -10.395584, -44.679115), (20.086452, -7.8217235, -45.11491), (22.420055, -7.8217235, -44.00184), (22.203485, -10.395584, -43.576794), (22.203485, -10.395584, -43.576794), (22.420055, -7.8217235, -44.00184), (24.69221, -7.8217235, -42.768158), (24.45369, -10.395584, -42.355034), (24.45369, -10.395584, -42.355034), (24.69221, -7.8217235, -42.768158), (26.89668, -7.8217235, -41.417255), (26.636868, -10.395584, -41.01718), (26.636868, -10.395584, -41.01718), (26.89668, -7.8217235, -41.417255), (29.027431, -7.8217235, -39.95283), (28.747036, -10.395584, -39.566902), (28.747036, -10.395584, -39.566902), (29.027431, -7.8217235, -39.95283), (31.07862, -7.8217235, -38.3789), (30.778412, -10.395584, -38.00817), (30.778412, -10.395584, -38.00817), (31.07862, -7.8217235, -38.3789), (33.044624, -7.8217235, -36.699776), (32.725426, -10.395584, -36.34527), (32.725426, -10.395584, -36.34527), (33.044624, -7.8217235, -36.699776), (34.920055, -7.8217235, -34.920055), (34.58274, -10.395584, -34.58274), (34.58274, -10.395584, -34.58274), (34.920055, -7.8217235, -34.920055), (36.699776, -7.8217235, -33.044624), (36.34527, -10.395584, -32.725426), (36.34527, -10.395584, -32.725426), (36.699776, -7.8217235, -33.044624), (38.3789, -7.8217235, -31.07862), (38.00817, -10.395584, -30.778412), (38.00817, -10.395584, -30.778412), (38.3789, -7.8217235, -31.07862), (39.95283, -7.8217235, -29.027431), (39.566902, -10.395584, -28.747036), (39.566902, -10.395584, -28.747036), (39.95283, -7.8217235, -29.027431), (41.417255, -7.8217235, -26.89668), (41.01718, -10.395584, -26.636868), (41.01718, -10.395584, -26.636868), (41.417255, -7.8217235, -26.89668), (42.768158, -7.8217235, -24.69221), (42.355034, -10.395584, -24.45369), (42.355034, -10.395584, -24.45369), (42.768158, -7.8217235, -24.69221), (44.00184, -7.8217235, -22.420055), (43.576794, -10.395584, -22.203485), (43.576794, -10.395584, -22.203485), (44.00184, -7.8217235, -22.420055), (45.11491, -7.8217235, -20.086452), (44.679115, -10.395584, -19.892424), (44.679115, -10.395584, -19.892424), (45.11491, -7.8217235, -20.086452), (46.104324, -7.8217235, -17.697792), (45.658974, -10.395584, -17.526838), (45.658974, -10.395584, -17.526838), (46.104324, -7.8217235, -17.697792), (46.967373, -7.8217235, -15.260624), (46.513683, -10.395584, -15.113212), (46.513683, -10.395584, -15.113212), (46.967373, -7.8217235, -15.260624), (47.701683, -7.8217235, -12.781628), (47.240902, -10.395584, -12.658161), (47.240902, -10.395584, -12.658161), (47.701683, -7.8217235, -12.781628), (48.30525, -7.8217235, -10.267597), (47.83864, -10.395584, -10.168416), (47.83864, -10.395584, -10.168416), (48.30525, -7.8217235, -10.267597), (48.776413, -7.8217235, -7.725425), (48.30525, -10.395584, -7.6507998), (48.30525, -10.395584, -7.6507998), (48.776413, -7.8217235, -7.725425), (49.113884, -7.8217235, -5.1620774), (48.63946, -10.395584, -5.112213), (48.63946, -10.395584, -5.112213), (49.113884, -7.8217235, -5.1620774), (49.31674, -7.8217235, -2.5845807), (48.840355, -10.395584, -2.5596144), (48.840355, -10.395584, -2.5596144), (49.31674, -7.8217235, -2.5845807), (49.38442, -7.8217235, 0), (48.90738, -10.395584, 0), (49.38442, -7.8217235, 0), (49.726093, -5.2264233, 0), (49.657948, -5.2264233, 2.6024628), (49.31674, -7.8217235, 2.5845807), (49.31674, -7.8217235, 2.5845807), (49.657948, -5.2264233, 2.6024628), (49.45369, -5.2264233, 5.197792), (49.113884, -7.8217235, 5.1620774), (49.113884, -7.8217235, 5.1620774), (49.45369, -5.2264233, 5.197792), (49.113884, -5.2264233, 7.778875), (48.776413, -7.8217235, 7.725425), (48.776413, -7.8217235, 7.725425), (49.113884, -5.2264233, 7.778875), (48.63946, -5.2264233, 10.338636), (48.30525, -7.8217235, 10.267597), (48.30525, -7.8217235, 10.267597), (48.63946, -5.2264233, 10.338636), (48.03172, -5.2264233, 12.87006), (47.701683, -7.8217235, 12.781628), (47.701683, -7.8217235, 12.781628), (48.03172, -5.2264233, 12.87006), (47.292328, -5.2264233, 15.366208), (46.967373, -7.8217235, 15.260624), (46.967373, -7.8217235, 15.260624), (47.292328, -5.2264233, 15.366208), (46.42331, -5.2264233, 17.820238), (46.104324, -7.8217235, 17.697792), (46.104324, -7.8217235, 17.697792), (46.42331, -5.2264233, 17.820238), (45.427048, -5.2264233, 20.225426), (45.11491, -7.8217235, 20.086452), (45.11491, -7.8217235, 20.086452), (45.427048, -5.2264233, 20.225426), (44.306274, -5.2264233, 22.575174), (44.00184, -7.8217235, 22.420055), (44.00184, -7.8217235, 22.420055), (44.306274, -5.2264233, 22.575174), (43.06406, -5.2264233, 24.863047), (42.768158, -7.8217235, 24.69221), (42.768158, -7.8217235, 24.69221), (43.06406, -5.2264233, 24.863047), (41.70381, -5.2264233, 27.082773), (41.417255, -7.8217235, 26.89668), (41.417255, -7.8217235, 26.89668), (41.70381, -5.2264233, 27.082773), (40.229256, -5.2264233, 29.228266), (39.95283, -7.8217235, 29.027431), (39.95283, -7.8217235, 29.027431), (40.229256, -5.2264233, 29.228266), (38.644432, -5.2264233, 31.293646), (38.3789, -7.8217235, 31.07862), (38.3789, -7.8217235, 31.07862), (38.644432, -5.2264233, 31.293646), (36.95369, -5.2264233, 33.27325), (36.699776, -7.8217235, 33.044624), (36.699776, -7.8217235, 33.044624), (36.95369, -5.2264233, 33.27325), (35.16166, -5.2264233, 35.16166), (34.920055, -7.8217235, 34.920055), (34.920055, -7.8217235, 34.920055), (35.16166, -5.2264233, 35.16166), (33.27325, -5.2264233, 36.95369), (33.044624, -7.8217235, 36.699776), (33.044624, -7.8217235, 36.699776), (33.27325, -5.2264233, 36.95369), (31.293646, -5.2264233, 38.644432), (31.07862, -7.8217235, 38.3789), (31.07862, -7.8217235, 38.3789), (31.293646, -5.2264233, 38.644432), (29.228266, -5.2264233, 40.229256), (29.027431, -7.8217235, 39.95283), (29.027431, -7.8217235, 39.95283), (29.228266, -5.2264233, 40.229256), (27.082773, -5.2264233, 41.70381), (26.89668, -7.8217235, 41.417255), (26.89668, -7.8217235, 41.417255), (27.082773, -5.2264233, 41.70381), (24.863047, -5.2264233, 43.06406), (24.69221, -7.8217235, 42.768158), (24.69221, -7.8217235, 42.768158), (24.863047, -5.2264233, 43.06406), (22.575174, -5.2264233, 44.306274), (22.420055, -7.8217235, 44.00184), (22.420055, -7.8217235, 44.00184), (22.575174, -5.2264233, 44.306274), (20.225426, -5.2264233, 45.427048), (20.086452, -7.8217235, 45.11491), (20.086452, -7.8217235, 45.11491), (20.225426, -5.2264233, 45.427048), (17.820238, -5.2264233, 46.42331), (17.697792, -7.8217235, 46.104324), (17.697792, -7.8217235, 46.104324), (17.820238, -5.2264233, 46.42331), (15.366208, -5.2264233, 47.292328), (15.260624, -7.8217235, 46.967373), (15.260624, -7.8217235, 46.967373), (15.366208, -5.2264233, 47.292328), (12.87006, -5.2264233, 48.03172), (12.781628, -7.8217235, 47.701683), (12.781628, -7.8217235, 47.701683), (12.87006, -5.2264233, 48.03172), (10.338636, -5.2264233, 48.63946), (10.267597, -7.8217235, 48.30525), (10.267597, -7.8217235, 48.30525), (10.338636, -5.2264233, 48.63946), (7.778875, -5.2264233, 49.113884), (7.725425, -7.8217235, 48.776413), (7.725425, -7.8217235, 48.776413), (7.778875, -5.2264233, 49.113884), (5.197792, -5.2264233, 49.45369), (5.1620774, -7.8217235, 49.113884), (5.1620774, -7.8217235, 49.113884), (5.197792, -5.2264233, 49.45369), (2.6024628, -5.2264233, 49.657948), (2.5845807, -7.8217235, 49.31674), (2.5845807, -7.8217235, 49.31674), (2.6024628, -5.2264233, 49.657948), (3.0448452e-15, -5.2264233, 49.726093), (3.0239235e-15, -7.8217235, 49.38442), (3.0239235e-15, -7.8217235, 49.38442), (3.0448452e-15, -5.2264233, 49.726093), (-2.6024628, -5.2264233, 49.657948), (-2.5845807, -7.8217235, 49.31674), (-2.5845807, -7.8217235, 49.31674), (-2.6024628, -5.2264233, 49.657948), (-5.197792, -5.2264233, 49.45369), (-5.1620774, -7.8217235, 49.113884), (-5.1620774, -7.8217235, 49.113884), (-5.197792, -5.2264233, 49.45369), (-7.778875, -5.2264233, 49.113884), (-7.725425, -7.8217235, 48.776413), (-7.725425, -7.8217235, 48.776413), (-7.778875, -5.2264233, 49.113884), (-10.338636, -5.2264233, 48.63946), (-10.267597, -7.8217235, 48.30525), (-10.267597, -7.8217235, 48.30525), (-10.338636, -5.2264233, 48.63946), (-12.87006, -5.2264233, 48.03172), (-12.781628, -7.8217235, 47.701683), (-12.781628, -7.8217235, 47.701683), (-12.87006, -5.2264233, 48.03172), (-15.366208, -5.2264233, 47.292328), (-15.260624, -7.8217235, 46.967373), (-15.260624, -7.8217235, 46.967373), (-15.366208, -5.2264233, 47.292328), (-17.820238, -5.2264233, 46.42331), (-17.697792, -7.8217235, 46.104324), (-17.697792, -7.8217235, 46.104324), (-17.820238, -5.2264233, 46.42331), (-20.225426, -5.2264233, 45.427048), (-20.086452, -7.8217235, 45.11491), (-20.086452, -7.8217235, 45.11491), (-20.225426, -5.2264233, 45.427048), (-22.575174, -5.2264233, 44.306274), (-22.420055, -7.8217235, 44.00184), (-22.420055, -7.8217235, 44.00184), (-22.575174, -5.2264233, 44.306274), (-24.863047, -5.2264233, 43.06406), (-24.69221, -7.8217235, 42.768158), (-24.69221, -7.8217235, 42.768158), (-24.863047, -5.2264233, 43.06406), (-27.082773, -5.2264233, 41.70381), (-26.89668, -7.8217235, 41.417255), (-26.89668, -7.8217235, 41.417255), (-27.082773, -5.2264233, 41.70381), (-29.228266, -5.2264233, 40.229256), (-29.027431, -7.8217235, 39.95283), (-29.027431, -7.8217235, 39.95283), (-29.228266, -5.2264233, 40.229256), (-31.293646, -5.2264233, 38.644432), (-31.07862, -7.8217235, 38.3789), (-31.07862, -7.8217235, 38.3789), (-31.293646, -5.2264233, 38.644432), (-33.27325, -5.2264233, 36.95369), (-33.044624, -7.8217235, 36.699776), (-33.044624, -7.8217235, 36.699776), (-33.27325, -5.2264233, 36.95369), (-35.16166, -5.2264233, 35.16166), (-34.920055, -7.8217235, 34.920055), (-34.920055, -7.8217235, 34.920055), (-35.16166, -5.2264233, 35.16166), (-36.95369, -5.2264233, 33.27325), (-36.699776, -7.8217235, 33.044624), (-36.699776, -7.8217235, 33.044624), (-36.95369, -5.2264233, 33.27325), (-38.644432, -5.2264233, 31.293646), (-38.3789, -7.8217235, 31.07862), (-38.3789, -7.8217235, 31.07862), (-38.644432, -5.2264233, 31.293646), (-40.229256, -5.2264233, 29.228266), (-39.95283, -7.8217235, 29.027431), (-39.95283, -7.8217235, 29.027431), (-40.229256, -5.2264233, 29.228266), (-41.70381, -5.2264233, 27.082773), (-41.417255, -7.8217235, 26.89668), (-41.417255, -7.8217235, 26.89668), (-41.70381, -5.2264233, 27.082773), (-43.06406, -5.2264233, 24.863047), (-42.768158, -7.8217235, 24.69221), (-42.768158, -7.8217235, 24.69221), (-43.06406, -5.2264233, 24.863047), (-44.306274, -5.2264233, 22.575174), (-44.00184, -7.8217235, 22.420055), (-44.00184, -7.8217235, 22.420055), (-44.306274, -5.2264233, 22.575174), (-45.427048, -5.2264233, 20.225426), (-45.11491, -7.8217235, 20.086452), (-45.11491, -7.8217235, 20.086452), (-45.427048, -5.2264233, 20.225426), (-46.42331, -5.2264233, 17.820238), (-46.104324, -7.8217235, 17.697792), (-46.104324, -7.8217235, 17.697792), (-46.42331, -5.2264233, 17.820238), (-47.292328, -5.2264233, 15.366208), (-46.967373, -7.8217235, 15.260624), (-46.967373, -7.8217235, 15.260624), (-47.292328, -5.2264233, 15.366208), (-48.03172, -5.2264233, 12.87006), (-47.701683, -7.8217235, 12.781628), (-47.701683, -7.8217235, 12.781628), (-48.03172, -5.2264233, 12.87006), (-48.63946, -5.2264233, 10.338636), (-48.30525, -7.8217235, 10.267597), (-48.30525, -7.8217235, 10.267597), (-48.63946, -5.2264233, 10.338636), (-49.113884, -5.2264233, 7.778875), (-48.776413, -7.8217235, 7.725425), (-48.776413, -7.8217235, 7.725425), (-49.113884, -5.2264233, 7.778875), (-49.45369, -5.2264233, 5.197792), (-49.113884, -7.8217235, 5.1620774), (-49.113884, -7.8217235, 5.1620774), (-49.45369, -5.2264233, 5.197792), (-49.657948, -5.2264233, 2.6024628), (-49.31674, -7.8217235, 2.5845807), (-49.31674, -7.8217235, 2.5845807), (-49.657948, -5.2264233, 2.6024628), (-49.726093, -5.2264233, 6.0896904e-15), (-49.38442, -7.8217235, 6.047847e-15), (-49.38442, -7.8217235, 6.047847e-15), (-49.726093, -5.2264233, 6.0896904e-15), (-49.657948, -5.2264233, -2.6024628), (-49.31674, -7.8217235, -2.5845807), (-49.31674, -7.8217235, -2.5845807), (-49.657948, -5.2264233, -2.6024628), (-49.45369, -5.2264233, -5.197792), (-49.113884, -7.8217235, -5.1620774), (-49.113884, -7.8217235, -5.1620774), (-49.45369, -5.2264233, -5.197792), (-49.113884, -5.2264233, -7.778875), (-48.776413, -7.8217235, -7.725425), (-48.776413, -7.8217235, -7.725425), (-49.113884, -5.2264233, -7.778875), (-48.63946, -5.2264233, -10.338636), (-48.30525, -7.8217235, -10.267597), (-48.30525, -7.8217235, -10.267597), (-48.63946, -5.2264233, -10.338636), (-48.03172, -5.2264233, -12.87006), (-47.701683, -7.8217235, -12.781628), (-47.701683, -7.8217235, -12.781628), (-48.03172, -5.2264233, -12.87006), (-47.292328, -5.2264233, -15.366208), (-46.967373, -7.8217235, -15.260624), (-46.967373, -7.8217235, -15.260624), (-47.292328, -5.2264233, -15.366208), (-46.42331, -5.2264233, -17.820238), (-46.104324, -7.8217235, -17.697792), (-46.104324, -7.8217235, -17.697792), (-46.42331, -5.2264233, -17.820238), (-45.427048, -5.2264233, -20.225426), (-45.11491, -7.8217235, -20.086452), (-45.11491, -7.8217235, -20.086452), (-45.427048, -5.2264233, -20.225426), (-44.306274, -5.2264233, -22.575174), (-44.00184, -7.8217235, -22.420055), (-44.00184, -7.8217235, -22.420055), (-44.306274, -5.2264233, -22.575174), (-43.06406, -5.2264233, -24.863047), (-42.768158, -7.8217235, -24.69221), (-42.768158, -7.8217235, -24.69221), (-43.06406, -5.2264233, -24.863047), (-41.70381, -5.2264233, -27.082773), (-41.417255, -7.8217235, -26.89668), (-41.417255, -7.8217235, -26.89668), (-41.70381, -5.2264233, -27.082773), (-40.229256, -5.2264233, -29.228266), (-39.95283, -7.8217235, -29.027431), (-39.95283, -7.8217235, -29.027431), (-40.229256, -5.2264233, -29.228266), (-38.644432, -5.2264233, -31.293646), (-38.3789, -7.8217235, -31.07862), (-38.3789, -7.8217235, -31.07862), (-38.644432, -5.2264233, -31.293646), (-36.95369, -5.2264233, -33.27325), (-36.699776, -7.8217235, -33.044624), (-36.699776, -7.8217235, -33.044624), (-36.95369, -5.2264233, -33.27325), (-35.16166, -5.2264233, -35.16166), (-34.920055, -7.8217235, -34.920055), (-34.920055, -7.8217235, -34.920055), (-35.16166, -5.2264233, -35.16166), (-33.27325, -5.2264233, -36.95369), (-33.044624, -7.8217235, -36.699776), (-33.044624, -7.8217235, -36.699776), (-33.27325, -5.2264233, -36.95369), (-31.293646, -5.2264233, -38.644432), (-31.07862, -7.8217235, -38.3789), (-31.07862, -7.8217235, -38.3789), (-31.293646, -5.2264233, -38.644432), (-29.228266, -5.2264233, -40.229256), (-29.027431, -7.8217235, -39.95283), (-29.027431, -7.8217235, -39.95283), (-29.228266, -5.2264233, -40.229256), (-27.082773, -5.2264233, -41.70381), (-26.89668, -7.8217235, -41.417255), (-26.89668, -7.8217235, -41.417255), (-27.082773, -5.2264233, -41.70381), (-24.863047, -5.2264233, -43.06406), (-24.69221, -7.8217235, -42.768158), (-24.69221, -7.8217235, -42.768158), (-24.863047, -5.2264233, -43.06406), (-22.575174, -5.2264233, -44.306274), (-22.420055, -7.8217235, -44.00184), (-22.420055, -7.8217235, -44.00184), (-22.575174, -5.2264233, -44.306274), (-20.225426, -5.2264233, -45.427048), (-20.086452, -7.8217235, -45.11491), (-20.086452, -7.8217235, -45.11491), (-20.225426, -5.2264233, -45.427048), (-17.820238, -5.2264233, -46.42331), (-17.697792, -7.8217235, -46.104324), (-17.697792, -7.8217235, -46.104324), (-17.820238, -5.2264233, -46.42331), (-15.366208, -5.2264233, -47.292328), (-15.260624, -7.8217235, -46.967373), (-15.260624, -7.8217235, -46.967373), (-15.366208, -5.2264233, -47.292328), (-12.87006, -5.2264233, -48.03172), (-12.781628, -7.8217235, -47.701683), (-12.781628, -7.8217235, -47.701683), (-12.87006, -5.2264233, -48.03172), (-10.338636, -5.2264233, -48.63946), (-10.267597, -7.8217235, -48.30525), (-10.267597, -7.8217235, -48.30525), (-10.338636, -5.2264233, -48.63946), (-7.778875, -5.2264233, -49.113884), (-7.725425, -7.8217235, -48.776413), (-7.725425, -7.8217235, -48.776413), (-7.778875, -5.2264233, -49.113884), (-5.197792, -5.2264233, -49.45369), (-5.1620774, -7.8217235, -49.113884), (-5.1620774, -7.8217235, -49.113884), (-5.197792, -5.2264233, -49.45369), (-2.6024628, -5.2264233, -49.657948), (-2.5845807, -7.8217235, -49.31674), (-2.5845807, -7.8217235, -49.31674), (-2.6024628, -5.2264233, -49.657948), (-9.1345354e-15, -5.2264233, -49.726093), (-9.07177e-15, -7.8217235, -49.38442), (-9.07177e-15, -7.8217235, -49.38442), (-9.1345354e-15, -5.2264233, -49.726093), (2.6024628, -5.2264233, -49.657948), (2.5845807, -7.8217235, -49.31674), (2.5845807, -7.8217235, -49.31674), (2.6024628, -5.2264233, -49.657948), (5.197792, -5.2264233, -49.45369), (5.1620774, -7.8217235, -49.113884), (5.1620774, -7.8217235, -49.113884), (5.197792, -5.2264233, -49.45369), (7.778875, -5.2264233, -49.113884), (7.725425, -7.8217235, -48.776413), (7.725425, -7.8217235, -48.776413), (7.778875, -5.2264233, -49.113884), (10.338636, -5.2264233, -48.63946), (10.267597, -7.8217235, -48.30525), (10.267597, -7.8217235, -48.30525), (10.338636, -5.2264233, -48.63946), (12.87006, -5.2264233, -48.03172), (12.781628, -7.8217235, -47.701683), (12.781628, -7.8217235, -47.701683), (12.87006, -5.2264233, -48.03172), (15.366208, -5.2264233, -47.292328), (15.260624, -7.8217235, -46.967373), (15.260624, -7.8217235, -46.967373), (15.366208, -5.2264233, -47.292328), (17.820238, -5.2264233, -46.42331), (17.697792, -7.8217235, -46.104324), (17.697792, -7.8217235, -46.104324), (17.820238, -5.2264233, -46.42331), (20.225426, -5.2264233, -45.427048), (20.086452, -7.8217235, -45.11491), (20.086452, -7.8217235, -45.11491), (20.225426, -5.2264233, -45.427048), (22.575174, -5.2264233, -44.306274), (22.420055, -7.8217235, -44.00184), (22.420055, -7.8217235, -44.00184), (22.575174, -5.2264233, -44.306274), (24.863047, -5.2264233, -43.06406), (24.69221, -7.8217235, -42.768158), (24.69221, -7.8217235, -42.768158), (24.863047, -5.2264233, -43.06406), (27.082773, -5.2264233, -41.70381), (26.89668, -7.8217235, -41.417255), (26.89668, -7.8217235, -41.417255), (27.082773, -5.2264233, -41.70381), (29.228266, -5.2264233, -40.229256), (29.027431, -7.8217235, -39.95283), (29.027431, -7.8217235, -39.95283), (29.228266, -5.2264233, -40.229256), (31.293646, -5.2264233, -38.644432), (31.07862, -7.8217235, -38.3789), (31.07862, -7.8217235, -38.3789), (31.293646, -5.2264233, -38.644432), (33.27325, -5.2264233, -36.95369), (33.044624, -7.8217235, -36.699776), (33.044624, -7.8217235, -36.699776), (33.27325, -5.2264233, -36.95369), (35.16166, -5.2264233, -35.16166), (34.920055, -7.8217235, -34.920055), (34.920055, -7.8217235, -34.920055), (35.16166, -5.2264233, -35.16166), (36.95369, -5.2264233, -33.27325), (36.699776, -7.8217235, -33.044624), (36.699776, -7.8217235, -33.044624), (36.95369, -5.2264233, -33.27325), (38.644432, -5.2264233, -31.293646), (38.3789, -7.8217235, -31.07862), (38.3789, -7.8217235, -31.07862), (38.644432, -5.2264233, -31.293646), (40.229256, -5.2264233, -29.228266), (39.95283, -7.8217235, -29.027431), (39.95283, -7.8217235, -29.027431), (40.229256, -5.2264233, -29.228266), (41.70381, -5.2264233, -27.082773), (41.417255, -7.8217235, -26.89668), (41.417255, -7.8217235, -26.89668), (41.70381, -5.2264233, -27.082773), (43.06406, -5.2264233, -24.863047), (42.768158, -7.8217235, -24.69221), (42.768158, -7.8217235, -24.69221), (43.06406, -5.2264233, -24.863047), (44.306274, -5.2264233, -22.575174), (44.00184, -7.8217235, -22.420055), (44.00184, -7.8217235, -22.420055), (44.306274, -5.2264233, -22.575174), (45.427048, -5.2264233, -20.225426), (45.11491, -7.8217235, -20.086452), (45.11491, -7.8217235, -20.086452), (45.427048, -5.2264233, -20.225426), (46.42331, -5.2264233, -17.820238), (46.104324, -7.8217235, -17.697792), (46.104324, -7.8217235, -17.697792), (46.42331, -5.2264233, -17.820238), (47.292328, -5.2264233, -15.366208), (46.967373, -7.8217235, -15.260624), (46.967373, -7.8217235, -15.260624), (47.292328, -5.2264233, -15.366208), (48.03172, -5.2264233, -12.87006), (47.701683, -7.8217235, -12.781628), (47.701683, -7.8217235, -12.781628), (48.03172, -5.2264233, -12.87006), (48.63946, -5.2264233, -10.338636), (48.30525, -7.8217235, -10.267597), (48.30525, -7.8217235, -10.267597), (48.63946, -5.2264233, -10.338636), (49.113884, -5.2264233, -7.778875), (48.776413, -7.8217235, -7.725425), (48.776413, -7.8217235, -7.725425), (49.113884, -5.2264233, -7.778875), (49.45369, -5.2264233, -5.197792), (49.113884, -7.8217235, -5.1620774), (49.113884, -7.8217235, -5.1620774), (49.45369, -5.2264233, -5.197792), (49.657948, -5.2264233, -2.6024628), (49.31674, -7.8217235, -2.5845807), (49.31674, -7.8217235, -2.5845807), (49.657948, -5.2264233, -2.6024628), (49.726093, -5.2264233, 0), (49.38442, -7.8217235, 0), (49.726093, -5.2264233, 0), (49.931477, -2.616798, 0), (49.86305, -2.616798, 2.6132116), (49.657948, -5.2264233, 2.6024628), (49.657948, -5.2264233, 2.6024628), (49.86305, -2.616798, 2.6132116), (49.657948, -2.616798, 5.2192607), (49.45369, -5.2264233, 5.197792), (49.45369, -5.2264233, 5.197792), (49.657948, -2.616798, 5.2192607), (49.31674, -2.616798, 7.8110037), (49.113884, -5.2264233, 7.778875), (49.113884, -5.2264233, 7.778875), (49.31674, -2.616798, 7.8110037), (48.840355, -2.616798, 10.381338), (48.63946, -5.2264233, 10.338636), (48.63946, -5.2264233, 10.338636), (48.840355, -2.616798, 10.381338), (48.230103, -2.616798, 12.923217), (48.03172, -5.2264233, 12.87006), (48.03172, -5.2264233, 12.87006), (48.230103, -2.616798, 12.923217), (47.487656, -2.616798, 15.429675), (47.292328, -5.2264233, 15.366208), (47.292328, -5.2264233, 15.366208), (47.487656, -2.616798, 15.429675), (46.615047, -2.616798, 17.89384), (46.42331, -5.2264233, 17.820238), (46.42331, -5.2264233, 17.820238), (46.615047, -2.616798, 17.89384), (45.614674, -2.616798, 20.308962), (45.427048, -5.2264233, 20.225426), (45.427048, -5.2264233, 20.225426), (45.614674, -2.616798, 20.308962), (44.489273, -2.616798, 22.668417), (44.306274, -5.2264233, 22.575174), (44.306274, -5.2264233, 22.575174), (44.489273, -2.616798, 22.668417), (43.24193, -2.616798, 24.965738), (43.06406, -5.2264233, 24.863047), (43.06406, -5.2264233, 24.863047), (43.24193, -2.616798, 24.965738), (41.87606, -2.616798, 27.194632), (41.70381, -5.2264233, 27.082773), (41.70381, -5.2264233, 27.082773), (41.87606, -2.616798, 27.194632), (40.395412, -2.616798, 29.348986), (40.229256, -5.2264233, 29.228266), (40.229256, -5.2264233, 29.228266), (40.395412, -2.616798, 29.348986), (38.804047, -2.616798, 31.422897), (38.644432, -5.2264233, 31.293646), (38.644432, -5.2264233, 31.293646), (38.804047, -2.616798, 31.422897), (37.10632, -2.616798, 33.41068), (36.95369, -5.2264233, 33.27325), (36.95369, -5.2264233, 33.27325), (37.10632, -2.616798, 33.41068), (35.306885, -2.616798, 35.306885), (35.16166, -5.2264233, 35.16166), (35.16166, -5.2264233, 35.16166), (35.306885, -2.616798, 35.306885), (33.41068, -2.616798, 37.10632), (33.27325, -5.2264233, 36.95369), (33.27325, -5.2264233, 36.95369), (33.41068, -2.616798, 37.10632), (31.422897, -2.616798, 38.804047), (31.293646, -5.2264233, 38.644432), (31.293646, -5.2264233, 38.644432), (31.422897, -2.616798, 38.804047), (29.348986, -2.616798, 40.395412), (29.228266, -5.2264233, 40.229256), (29.228266, -5.2264233, 40.229256), (29.348986, -2.616798, 40.395412), (27.194632, -2.616798, 41.87606), (27.082773, -5.2264233, 41.70381), (27.082773, -5.2264233, 41.70381), (27.194632, -2.616798, 41.87606), (24.965738, -2.616798, 43.24193), (24.863047, -5.2264233, 43.06406), (24.863047, -5.2264233, 43.06406), (24.965738, -2.616798, 43.24193), (22.668417, -2.616798, 44.489273), (22.575174, -5.2264233, 44.306274), (22.575174, -5.2264233, 44.306274), (22.668417, -2.616798, 44.489273), (20.308962, -2.616798, 45.614674), (20.225426, -5.2264233, 45.427048), (20.225426, -5.2264233, 45.427048), (20.308962, -2.616798, 45.614674), (17.89384, -2.616798, 46.615047), (17.820238, -5.2264233, 46.42331), (17.820238, -5.2264233, 46.42331), (17.89384, -2.616798, 46.615047), (15.429675, -2.616798, 47.487656), (15.366208, -5.2264233, 47.292328), (15.366208, -5.2264233, 47.292328), (15.429675, -2.616798, 47.487656), (12.923217, -2.616798, 48.230103), (12.87006, -5.2264233, 48.03172), (12.87006, -5.2264233, 48.03172), (12.923217, -2.616798, 48.230103), (10.381338, -2.616798, 48.840355), (10.338636, -5.2264233, 48.63946), (10.338636, -5.2264233, 48.63946), (10.381338, -2.616798, 48.840355), (7.8110037, -2.616798, 49.31674), (7.778875, -5.2264233, 49.113884), (7.778875, -5.2264233, 49.113884), (7.8110037, -2.616798, 49.31674), (5.2192607, -2.616798, 49.657948), (5.197792, -5.2264233, 49.45369), (5.197792, -5.2264233, 49.45369), (5.2192607, -2.616798, 49.657948), (2.6132116, -2.616798, 49.86305), (2.6024628, -5.2264233, 49.657948), (2.6024628, -5.2264233, 49.657948), (2.6132116, -2.616798, 49.86305), (3.0574211e-15, -2.616798, 49.931477), (3.0448452e-15, -5.2264233, 49.726093), (3.0448452e-15, -5.2264233, 49.726093), (3.0574211e-15, -2.616798, 49.931477), (-2.6132116, -2.616798, 49.86305), (-2.6024628, -5.2264233, 49.657948), (-2.6024628, -5.2264233, 49.657948), (-2.6132116, -2.616798, 49.86305), (-5.2192607, -2.616798, 49.657948), (-5.197792, -5.2264233, 49.45369), (-5.197792, -5.2264233, 49.45369), (-5.2192607, -2.616798, 49.657948), (-7.8110037, -2.616798, 49.31674), (-7.778875, -5.2264233, 49.113884), (-7.778875, -5.2264233, 49.113884), (-7.8110037, -2.616798, 49.31674), (-10.381338, -2.616798, 48.840355), (-10.338636, -5.2264233, 48.63946), (-10.338636, -5.2264233, 48.63946), (-10.381338, -2.616798, 48.840355), (-12.923217, -2.616798, 48.230103), (-12.87006, -5.2264233, 48.03172), (-12.87006, -5.2264233, 48.03172), (-12.923217, -2.616798, 48.230103), (-15.429675, -2.616798, 47.487656), (-15.366208, -5.2264233, 47.292328), (-15.366208, -5.2264233, 47.292328), (-15.429675, -2.616798, 47.487656), (-17.89384, -2.616798, 46.615047), (-17.820238, -5.2264233, 46.42331), (-17.820238, -5.2264233, 46.42331), (-17.89384, -2.616798, 46.615047), (-20.308962, -2.616798, 45.614674), (-20.225426, -5.2264233, 45.427048), (-20.225426, -5.2264233, 45.427048), (-20.308962, -2.616798, 45.614674), (-22.668417, -2.616798, 44.489273), (-22.575174, -5.2264233, 44.306274), (-22.575174, -5.2264233, 44.306274), (-22.668417, -2.616798, 44.489273), (-24.965738, -2.616798, 43.24193), (-24.863047, -5.2264233, 43.06406), (-24.863047, -5.2264233, 43.06406), (-24.965738, -2.616798, 43.24193), (-27.194632, -2.616798, 41.87606), (-27.082773, -5.2264233, 41.70381), (-27.082773, -5.2264233, 41.70381), (-27.194632, -2.616798, 41.87606), (-29.348986, -2.616798, 40.395412), (-29.228266, -5.2264233, 40.229256), (-29.228266, -5.2264233, 40.229256), (-29.348986, -2.616798, 40.395412), (-31.422897, -2.616798, 38.804047), (-31.293646, -5.2264233, 38.644432), (-31.293646, -5.2264233, 38.644432), (-31.422897, -2.616798, 38.804047), (-33.41068, -2.616798, 37.10632), (-33.27325, -5.2264233, 36.95369), (-33.27325, -5.2264233, 36.95369), (-33.41068, -2.616798, 37.10632), (-35.306885, -2.616798, 35.306885), (-35.16166, -5.2264233, 35.16166), (-35.16166, -5.2264233, 35.16166), (-35.306885, -2.616798, 35.306885), (-37.10632, -2.616798, 33.41068), (-36.95369, -5.2264233, 33.27325), (-36.95369, -5.2264233, 33.27325), (-37.10632, -2.616798, 33.41068), (-38.804047, -2.616798, 31.422897), (-38.644432, -5.2264233, 31.293646), (-38.644432, -5.2264233, 31.293646), (-38.804047, -2.616798, 31.422897), (-40.395412, -2.616798, 29.348986), (-40.229256, -5.2264233, 29.228266), (-40.229256, -5.2264233, 29.228266), (-40.395412, -2.616798, 29.348986), (-41.87606, -2.616798, 27.194632), (-41.70381, -5.2264233, 27.082773), (-41.70381, -5.2264233, 27.082773), (-41.87606, -2.616798, 27.194632), (-43.24193, -2.616798, 24.965738), (-43.06406, -5.2264233, 24.863047), (-43.06406, -5.2264233, 24.863047), (-43.24193, -2.616798, 24.965738), (-44.489273, -2.616798, 22.668417), (-44.306274, -5.2264233, 22.575174), (-44.306274, -5.2264233, 22.575174), (-44.489273, -2.616798, 22.668417), (-45.614674, -2.616798, 20.308962), (-45.427048, -5.2264233, 20.225426), (-45.427048, -5.2264233, 20.225426), (-45.614674, -2.616798, 20.308962), (-46.615047, -2.616798, 17.89384), (-46.42331, -5.2264233, 17.820238), (-46.42331, -5.2264233, 17.820238), (-46.615047, -2.616798, 17.89384), (-47.487656, -2.616798, 15.429675), (-47.292328, -5.2264233, 15.366208), (-47.292328, -5.2264233, 15.366208), (-47.487656, -2.616798, 15.429675), (-48.230103, -2.616798, 12.923217), (-48.03172, -5.2264233, 12.87006), (-48.03172, -5.2264233, 12.87006), (-48.230103, -2.616798, 12.923217), (-48.840355, -2.616798, 10.381338), (-48.63946, -5.2264233, 10.338636), (-48.63946, -5.2264233, 10.338636), (-48.840355, -2.616798, 10.381338), (-49.31674, -2.616798, 7.8110037), (-49.113884, -5.2264233, 7.778875), (-49.113884, -5.2264233, 7.778875), (-49.31674, -2.616798, 7.8110037), (-49.657948, -2.616798, 5.2192607), (-49.45369, -5.2264233, 5.197792), (-49.45369, -5.2264233, 5.197792), (-49.657948, -2.616798, 5.2192607), (-49.86305, -2.616798, 2.6132116), (-49.657948, -5.2264233, 2.6024628), (-49.657948, -5.2264233, 2.6024628), (-49.86305, -2.616798, 2.6132116), (-49.931477, -2.616798, 6.1148422e-15), (-49.726093, -5.2264233, 6.0896904e-15), (-49.726093, -5.2264233, 6.0896904e-15), (-49.931477, -2.616798, 6.1148422e-15), (-49.86305, -2.616798, -2.6132116), (-49.657948, -5.2264233, -2.6024628), (-49.657948, -5.2264233, -2.6024628), (-49.86305, -2.616798, -2.6132116), (-49.657948, -2.616798, -5.2192607), (-49.45369, -5.2264233, -5.197792), (-49.45369, -5.2264233, -5.197792), (-49.657948, -2.616798, -5.2192607), (-49.31674, -2.616798, -7.8110037), (-49.113884, -5.2264233, -7.778875), (-49.113884, -5.2264233, -7.778875), (-49.31674, -2.616798, -7.8110037), (-48.840355, -2.616798, -10.381338), (-48.63946, -5.2264233, -10.338636), (-48.63946, -5.2264233, -10.338636), (-48.840355, -2.616798, -10.381338), (-48.230103, -2.616798, -12.923217), (-48.03172, -5.2264233, -12.87006), (-48.03172, -5.2264233, -12.87006), (-48.230103, -2.616798, -12.923217), (-47.487656, -2.616798, -15.429675), (-47.292328, -5.2264233, -15.366208), (-47.292328, -5.2264233, -15.366208), (-47.487656, -2.616798, -15.429675), (-46.615047, -2.616798, -17.89384), (-46.42331, -5.2264233, -17.820238), (-46.42331, -5.2264233, -17.820238), (-46.615047, -2.616798, -17.89384), (-45.614674, -2.616798, -20.308962), (-45.427048, -5.2264233, -20.225426), (-45.427048, -5.2264233, -20.225426), (-45.614674, -2.616798, -20.308962), (-44.489273, -2.616798, -22.668417), (-44.306274, -5.2264233, -22.575174), (-44.306274, -5.2264233, -22.575174), (-44.489273, -2.616798, -22.668417), (-43.24193, -2.616798, -24.965738), (-43.06406, -5.2264233, -24.863047), (-43.06406, -5.2264233, -24.863047), (-43.24193, -2.616798, -24.965738), (-41.87606, -2.616798, -27.194632), (-41.70381, -5.2264233, -27.082773), (-41.70381, -5.2264233, -27.082773), (-41.87606, -2.616798, -27.194632), (-40.395412, -2.616798, -29.348986), (-40.229256, -5.2264233, -29.228266), (-40.229256, -5.2264233, -29.228266), (-40.395412, -2.616798, -29.348986), (-38.804047, -2.616798, -31.422897), (-38.644432, -5.2264233, -31.293646), (-38.644432, -5.2264233, -31.293646), (-38.804047, -2.616798, -31.422897), (-37.10632, -2.616798, -33.41068), (-36.95369, -5.2264233, -33.27325), (-36.95369, -5.2264233, -33.27325), (-37.10632, -2.616798, -33.41068), (-35.306885, -2.616798, -35.306885), (-35.16166, -5.2264233, -35.16166), (-35.16166, -5.2264233, -35.16166), (-35.306885, -2.616798, -35.306885), (-33.41068, -2.616798, -37.10632), (-33.27325, -5.2264233, -36.95369), (-33.27325, -5.2264233, -36.95369), (-33.41068, -2.616798, -37.10632), (-31.422897, -2.616798, -38.804047), (-31.293646, -5.2264233, -38.644432), (-31.293646, -5.2264233, -38.644432), (-31.422897, -2.616798, -38.804047), (-29.348986, -2.616798, -40.395412), (-29.228266, -5.2264233, -40.229256), (-29.228266, -5.2264233, -40.229256), (-29.348986, -2.616798, -40.395412), (-27.194632, -2.616798, -41.87606), (-27.082773, -5.2264233, -41.70381), (-27.082773, -5.2264233, -41.70381), (-27.194632, -2.616798, -41.87606), (-24.965738, -2.616798, -43.24193), (-24.863047, -5.2264233, -43.06406), (-24.863047, -5.2264233, -43.06406), (-24.965738, -2.616798, -43.24193), (-22.668417, -2.616798, -44.489273), (-22.575174, -5.2264233, -44.306274), (-22.575174, -5.2264233, -44.306274), (-22.668417, -2.616798, -44.489273), (-20.308962, -2.616798, -45.614674), (-20.225426, -5.2264233, -45.427048), (-20.225426, -5.2264233, -45.427048), (-20.308962, -2.616798, -45.614674), (-17.89384, -2.616798, -46.615047), (-17.820238, -5.2264233, -46.42331), (-17.820238, -5.2264233, -46.42331), (-17.89384, -2.616798, -46.615047), (-15.429675, -2.616798, -47.487656), (-15.366208, -5.2264233, -47.292328), (-15.366208, -5.2264233, -47.292328), (-15.429675, -2.616798, -47.487656), (-12.923217, -2.616798, -48.230103), (-12.87006, -5.2264233, -48.03172), (-12.87006, -5.2264233, -48.03172), (-12.923217, -2.616798, -48.230103), (-10.381338, -2.616798, -48.840355), (-10.338636, -5.2264233, -48.63946), (-10.338636, -5.2264233, -48.63946), (-10.381338, -2.616798, -48.840355), (-7.8110037, -2.616798, -49.31674), (-7.778875, -5.2264233, -49.113884), (-7.778875, -5.2264233, -49.113884), (-7.8110037, -2.616798, -49.31674), (-5.2192607, -2.616798, -49.657948), (-5.197792, -5.2264233, -49.45369), (-5.197792, -5.2264233, -49.45369), (-5.2192607, -2.616798, -49.657948), (-2.6132116, -2.616798, -49.86305), (-2.6024628, -5.2264233, -49.657948), (-2.6024628, -5.2264233, -49.657948), (-2.6132116, -2.616798, -49.86305), (-9.172263e-15, -2.616798, -49.931477), (-9.1345354e-15, -5.2264233, -49.726093), (-9.1345354e-15, -5.2264233, -49.726093), (-9.172263e-15, -2.616798, -49.931477), (2.6132116, -2.616798, -49.86305), (2.6024628, -5.2264233, -49.657948), (2.6024628, -5.2264233, -49.657948), (2.6132116, -2.616798, -49.86305), (5.2192607, -2.616798, -49.657948), (5.197792, -5.2264233, -49.45369), (5.197792, -5.2264233, -49.45369), (5.2192607, -2.616798, -49.657948), (7.8110037, -2.616798, -49.31674), (7.778875, -5.2264233, -49.113884), (7.778875, -5.2264233, -49.113884), (7.8110037, -2.616798, -49.31674), (10.381338, -2.616798, -48.840355), (10.338636, -5.2264233, -48.63946), (10.338636, -5.2264233, -48.63946), (10.381338, -2.616798, -48.840355), (12.923217, -2.616798, -48.230103), (12.87006, -5.2264233, -48.03172), (12.87006, -5.2264233, -48.03172), (12.923217, -2.616798, -48.230103), (15.429675, -2.616798, -47.487656), (15.366208, -5.2264233, -47.292328), (15.366208, -5.2264233, -47.292328), (15.429675, -2.616798, -47.487656), (17.89384, -2.616798, -46.615047), (17.820238, -5.2264233, -46.42331), (17.820238, -5.2264233, -46.42331), (17.89384, -2.616798, -46.615047), (20.308962, -2.616798, -45.614674), (20.225426, -5.2264233, -45.427048), (20.225426, -5.2264233, -45.427048), (20.308962, -2.616798, -45.614674), (22.668417, -2.616798, -44.489273), (22.575174, -5.2264233, -44.306274), (22.575174, -5.2264233, -44.306274), (22.668417, -2.616798, -44.489273), (24.965738, -2.616798, -43.24193), (24.863047, -5.2264233, -43.06406), (24.863047, -5.2264233, -43.06406), (24.965738, -2.616798, -43.24193), (27.194632, -2.616798, -41.87606), (27.082773, -5.2264233, -41.70381), (27.082773, -5.2264233, -41.70381), (27.194632, -2.616798, -41.87606), (29.348986, -2.616798, -40.395412), (29.228266, -5.2264233, -40.229256), (29.228266, -5.2264233, -40.229256), (29.348986, -2.616798, -40.395412), (31.422897, -2.616798, -38.804047), (31.293646, -5.2264233, -38.644432), (31.293646, -5.2264233, -38.644432), (31.422897, -2.616798, -38.804047), (33.41068, -2.616798, -37.10632), (33.27325, -5.2264233, -36.95369), (33.27325, -5.2264233, -36.95369), (33.41068, -2.616798, -37.10632), (35.306885, -2.616798, -35.306885), (35.16166, -5.2264233, -35.16166), (35.16166, -5.2264233, -35.16166), (35.306885, -2.616798, -35.306885), (37.10632, -2.616798, -33.41068), (36.95369, -5.2264233, -33.27325), (36.95369, -5.2264233, -33.27325), (37.10632, -2.616798, -33.41068), (38.804047, -2.616798, -31.422897), (38.644432, -5.2264233, -31.293646), (38.644432, -5.2264233, -31.293646), (38.804047, -2.616798, -31.422897), (40.395412, -2.616798, -29.348986), (40.229256, -5.2264233, -29.228266), (40.229256, -5.2264233, -29.228266), (40.395412, -2.616798, -29.348986), (41.87606, -2.616798, -27.194632), (41.70381, -5.2264233, -27.082773), (41.70381, -5.2264233, -27.082773), (41.87606, -2.616798, -27.194632), (43.24193, -2.616798, -24.965738), (43.06406, -5.2264233, -24.863047), (43.06406, -5.2264233, -24.863047), (43.24193, -2.616798, -24.965738), (44.489273, -2.616798, -22.668417), (44.306274, -5.2264233, -22.575174), (44.306274, -5.2264233, -22.575174), (44.489273, -2.616798, -22.668417), (45.614674, -2.616798, -20.308962), (45.427048, -5.2264233, -20.225426), (45.427048, -5.2264233, -20.225426), (45.614674, -2.616798, -20.308962), (46.615047, -2.616798, -17.89384), (46.42331, -5.2264233, -17.820238), (46.42331, -5.2264233, -17.820238), (46.615047, -2.616798, -17.89384), (47.487656, -2.616798, -15.429675), (47.292328, -5.2264233, -15.366208), (47.292328, -5.2264233, -15.366208), (47.487656, -2.616798, -15.429675), (48.230103, -2.616798, -12.923217), (48.03172, -5.2264233, -12.87006), (48.03172, -5.2264233, -12.87006), (48.230103, -2.616798, -12.923217), (48.840355, -2.616798, -10.381338), (48.63946, -5.2264233, -10.338636), (48.63946, -5.2264233, -10.338636), (48.840355, -2.616798, -10.381338), (49.31674, -2.616798, -7.8110037), (49.113884, -5.2264233, -7.778875), (49.113884, -5.2264233, -7.778875), (49.31674, -2.616798, -7.8110037), (49.657948, -2.616798, -5.2192607), (49.45369, -5.2264233, -5.197792), (49.45369, -5.2264233, -5.197792), (49.657948, -2.616798, -5.2192607), (49.86305, -2.616798, -2.6132116), (49.657948, -5.2264233, -2.6024628), (49.657948, -5.2264233, -2.6024628), (49.86305, -2.616798, -2.6132116), (49.931477, -2.616798, 0), (49.726093, -5.2264233, 0), (49.931477, -2.616798, 0), (50, 0, 0), (49.931477, 0, 2.616798), (49.86305, -2.616798, 2.6132116), (49.86305, -2.616798, 2.6132116), (49.931477, 0, 2.616798), (49.726093, 0, 5.2264233), (49.657948, -2.616798, 5.2192607), (49.657948, -2.616798, 5.2192607), (49.726093, 0, 5.2264233), (49.38442, 0, 7.8217235), (49.31674, -2.616798, 7.8110037), (49.31674, -2.616798, 7.8110037), (49.38442, 0, 7.8217235), (48.90738, 0, 10.395584), (48.840355, -2.616798, 10.381338), (48.840355, -2.616798, 10.381338), (48.90738, 0, 10.395584), (48.29629, 0, 12.940952), (48.230103, -2.616798, 12.923217), (48.230103, -2.616798, 12.923217), (48.29629, 0, 12.940952), (47.552826, 0, 15.45085), (47.487656, -2.616798, 15.429675), (47.487656, -2.616798, 15.429675), (47.552826, 0, 15.45085), (46.67902, 0, 17.918398), (46.615047, -2.616798, 17.89384), (46.615047, -2.616798, 17.89384), (46.67902, 0, 17.918398), (45.677273, 0, 20.336832), (45.614674, -2.616798, 20.308962), (45.614674, -2.616798, 20.308962), (45.677273, 0, 20.336832), (44.550327, 0, 22.699526), (44.489273, -2.616798, 22.668417), (44.489273, -2.616798, 22.668417), (44.550327, 0, 22.699526), (43.30127, 0, 25), (43.24193, -2.616798, 24.965738), (43.24193, -2.616798, 24.965738), (43.30127, 0, 25), (41.93353, 0, 27.231953), (41.87606, -2.616798, 27.194632), (41.87606, -2.616798, 27.194632), (41.93353, 0, 27.231953), (40.45085, 0, 29.389263), (40.395412, -2.616798, 29.348986), (40.395412, -2.616798, 29.348986), (40.45085, 0, 29.389263), (38.8573, 0, 31.466019), (38.804047, -2.616798, 31.422897), (38.804047, -2.616798, 31.422897), (38.8573, 0, 31.466019), (37.15724, 0, 33.45653), (37.10632, -2.616798, 33.41068), (37.10632, -2.616798, 33.41068), (37.15724, 0, 33.45653), (35.35534, 0, 35.35534), (35.306885, -2.616798, 35.306885), (35.306885, -2.616798, 35.306885), (35.35534, 0, 35.35534), (33.45653, 0, 37.15724), (33.41068, -2.616798, 37.10632), (33.41068, -2.616798, 37.10632), (33.45653, 0, 37.15724), (31.466019, 0, 38.8573), (31.422897, -2.616798, 38.804047), (31.422897, -2.616798, 38.804047), (31.466019, 0, 38.8573), (29.389263, 0, 40.45085), (29.348986, -2.616798, 40.395412), (29.348986, -2.616798, 40.395412), (29.389263, 0, 40.45085), (27.231953, 0, 41.93353), (27.194632, -2.616798, 41.87606), (27.194632, -2.616798, 41.87606), (27.231953, 0, 41.93353), (25, 0, 43.30127), (24.965738, -2.616798, 43.24193), (24.965738, -2.616798, 43.24193), (25, 0, 43.30127), (22.699526, 0, 44.550327), (22.668417, -2.616798, 44.489273), (22.668417, -2.616798, 44.489273), (22.699526, 0, 44.550327), (20.336832, 0, 45.677273), (20.308962, -2.616798, 45.614674), (20.308962, -2.616798, 45.614674), (20.336832, 0, 45.677273), (17.918398, 0, 46.67902), (17.89384, -2.616798, 46.615047), (17.89384, -2.616798, 46.615047), (17.918398, 0, 46.67902), (15.45085, 0, 47.552826), (15.429675, -2.616798, 47.487656), (15.429675, -2.616798, 47.487656), (15.45085, 0, 47.552826), (12.940952, 0, 48.29629), (12.923217, -2.616798, 48.230103), (12.923217, -2.616798, 48.230103), (12.940952, 0, 48.29629), (10.395584, 0, 48.90738), (10.381338, -2.616798, 48.840355), (10.381338, -2.616798, 48.840355), (10.395584, 0, 48.90738), (7.8217235, 0, 49.38442), (7.8110037, -2.616798, 49.31674), (7.8110037, -2.616798, 49.31674), (7.8217235, 0, 49.38442), (5.2264233, 0, 49.726093), (5.2192607, -2.616798, 49.657948), (5.2192607, -2.616798, 49.657948), (5.2264233, 0, 49.726093), (2.616798, 0, 49.931477), (2.6132116, -2.616798, 49.86305), (2.6132116, -2.616798, 49.86305), (2.616798, 0, 49.931477), (3.0616169e-15, 0, 50), (3.0574211e-15, -2.616798, 49.931477), (3.0574211e-15, -2.616798, 49.931477), (3.0616169e-15, 0, 50), (-2.616798, 0, 49.931477), (-2.6132116, -2.616798, 49.86305), (-2.6132116, -2.616798, 49.86305), (-2.616798, 0, 49.931477), (-5.2264233, 0, 49.726093), (-5.2192607, -2.616798, 49.657948), (-5.2192607, -2.616798, 49.657948), (-5.2264233, 0, 49.726093), (-7.8217235, 0, 49.38442), (-7.8110037, -2.616798, 49.31674), (-7.8110037, -2.616798, 49.31674), (-7.8217235, 0, 49.38442), (-10.395584, 0, 48.90738), (-10.381338, -2.616798, 48.840355), (-10.381338, -2.616798, 48.840355), (-10.395584, 0, 48.90738), (-12.940952, 0, 48.29629), (-12.923217, -2.616798, 48.230103), (-12.923217, -2.616798, 48.230103), (-12.940952, 0, 48.29629), (-15.45085, 0, 47.552826), (-15.429675, -2.616798, 47.487656), (-15.429675, -2.616798, 47.487656), (-15.45085, 0, 47.552826), (-17.918398, 0, 46.67902), (-17.89384, -2.616798, 46.615047), (-17.89384, -2.616798, 46.615047), (-17.918398, 0, 46.67902), (-20.336832, 0, 45.677273), (-20.308962, -2.616798, 45.614674), (-20.308962, -2.616798, 45.614674), (-20.336832, 0, 45.677273), (-22.699526, 0, 44.550327), (-22.668417, -2.616798, 44.489273), (-22.668417, -2.616798, 44.489273), (-22.699526, 0, 44.550327), (-25, 0, 43.30127), (-24.965738, -2.616798, 43.24193), (-24.965738, -2.616798, 43.24193), (-25, 0, 43.30127), (-27.231953, 0, 41.93353), (-27.194632, -2.616798, 41.87606), (-27.194632, -2.616798, 41.87606), (-27.231953, 0, 41.93353), (-29.389263, 0, 40.45085), (-29.348986, -2.616798, 40.395412), (-29.348986, -2.616798, 40.395412), (-29.389263, 0, 40.45085), (-31.466019, 0, 38.8573), (-31.422897, -2.616798, 38.804047), (-31.422897, -2.616798, 38.804047), (-31.466019, 0, 38.8573), (-33.45653, 0, 37.15724), (-33.41068, -2.616798, 37.10632), (-33.41068, -2.616798, 37.10632), (-33.45653, 0, 37.15724), (-35.35534, 0, 35.35534), (-35.306885, -2.616798, 35.306885), (-35.306885, -2.616798, 35.306885), (-35.35534, 0, 35.35534), (-37.15724, 0, 33.45653), (-37.10632, -2.616798, 33.41068), (-37.10632, -2.616798, 33.41068), (-37.15724, 0, 33.45653), (-38.8573, 0, 31.466019), (-38.804047, -2.616798, 31.422897), (-38.804047, -2.616798, 31.422897), (-38.8573, 0, 31.466019), (-40.45085, 0, 29.389263), (-40.395412, -2.616798, 29.348986), (-40.395412, -2.616798, 29.348986), (-40.45085, 0, 29.389263), (-41.93353, 0, 27.231953), (-41.87606, -2.616798, 27.194632), (-41.87606, -2.616798, 27.194632), (-41.93353, 0, 27.231953), (-43.30127, 0, 25), (-43.24193, -2.616798, 24.965738), (-43.24193, -2.616798, 24.965738), (-43.30127, 0, 25), (-44.550327, 0, 22.699526), (-44.489273, -2.616798, 22.668417), (-44.489273, -2.616798, 22.668417), (-44.550327, 0, 22.699526), (-45.677273, 0, 20.336832), (-45.614674, -2.616798, 20.308962), (-45.614674, -2.616798, 20.308962), (-45.677273, 0, 20.336832), (-46.67902, 0, 17.918398), (-46.615047, -2.616798, 17.89384), (-46.615047, -2.616798, 17.89384), (-46.67902, 0, 17.918398), (-47.552826, 0, 15.45085), (-47.487656, -2.616798, 15.429675), (-47.487656, -2.616798, 15.429675), (-47.552826, 0, 15.45085), (-48.29629, 0, 12.940952), (-48.230103, -2.616798, 12.923217), (-48.230103, -2.616798, 12.923217), (-48.29629, 0, 12.940952), (-48.90738, 0, 10.395584), (-48.840355, -2.616798, 10.381338), (-48.840355, -2.616798, 10.381338), (-48.90738, 0, 10.395584), (-49.38442, 0, 7.8217235), (-49.31674, -2.616798, 7.8110037), (-49.31674, -2.616798, 7.8110037), (-49.38442, 0, 7.8217235), (-49.726093, 0, 5.2264233), (-49.657948, -2.616798, 5.2192607), (-49.657948, -2.616798, 5.2192607), (-49.726093, 0, 5.2264233), (-49.931477, 0, 2.616798), (-49.86305, -2.616798, 2.6132116), (-49.86305, -2.616798, 2.6132116), (-49.931477, 0, 2.616798), (-50, 0, 6.1232338e-15), (-49.931477, -2.616798, 6.1148422e-15), (-49.931477, -2.616798, 6.1148422e-15), (-50, 0, 6.1232338e-15), (-49.931477, 0, -2.616798), (-49.86305, -2.616798, -2.6132116), (-49.86305, -2.616798, -2.6132116), (-49.931477, 0, -2.616798), (-49.726093, 0, -5.2264233), (-49.657948, -2.616798, -5.2192607), (-49.657948, -2.616798, -5.2192607), (-49.726093, 0, -5.2264233), (-49.38442, 0, -7.8217235), (-49.31674, -2.616798, -7.8110037), (-49.31674, -2.616798, -7.8110037), (-49.38442, 0, -7.8217235), (-48.90738, 0, -10.395584), (-48.840355, -2.616798, -10.381338), (-48.840355, -2.616798, -10.381338), (-48.90738, 0, -10.395584), (-48.29629, 0, -12.940952), (-48.230103, -2.616798, -12.923217), (-48.230103, -2.616798, -12.923217), (-48.29629, 0, -12.940952), (-47.552826, 0, -15.45085), (-47.487656, -2.616798, -15.429675), (-47.487656, -2.616798, -15.429675), (-47.552826, 0, -15.45085), (-46.67902, 0, -17.918398), (-46.615047, -2.616798, -17.89384), (-46.615047, -2.616798, -17.89384), (-46.67902, 0, -17.918398), (-45.677273, 0, -20.336832), (-45.614674, -2.616798, -20.308962), (-45.614674, -2.616798, -20.308962), (-45.677273, 0, -20.336832), (-44.550327, 0, -22.699526), (-44.489273, -2.616798, -22.668417), (-44.489273, -2.616798, -22.668417), (-44.550327, 0, -22.699526), (-43.30127, 0, -25), (-43.24193, -2.616798, -24.965738), (-43.24193, -2.616798, -24.965738), (-43.30127, 0, -25), (-41.93353, 0, -27.231953), (-41.87606, -2.616798, -27.194632), (-41.87606, -2.616798, -27.194632), (-41.93353, 0, -27.231953), (-40.45085, 0, -29.389263), (-40.395412, -2.616798, -29.348986), (-40.395412, -2.616798, -29.348986), (-40.45085, 0, -29.389263), (-38.8573, 0, -31.466019), (-38.804047, -2.616798, -31.422897), (-38.804047, -2.616798, -31.422897), (-38.8573, 0, -31.466019), (-37.15724, 0, -33.45653), (-37.10632, -2.616798, -33.41068), (-37.10632, -2.616798, -33.41068), (-37.15724, 0, -33.45653), (-35.35534, 0, -35.35534), (-35.306885, -2.616798, -35.306885), (-35.306885, -2.616798, -35.306885), (-35.35534, 0, -35.35534), (-33.45653, 0, -37.15724), (-33.41068, -2.616798, -37.10632), (-33.41068, -2.616798, -37.10632), (-33.45653, 0, -37.15724), (-31.466019, 0, -38.8573), (-31.422897, -2.616798, -38.804047), (-31.422897, -2.616798, -38.804047), (-31.466019, 0, -38.8573), (-29.389263, 0, -40.45085), (-29.348986, -2.616798, -40.395412), (-29.348986, -2.616798, -40.395412), (-29.389263, 0, -40.45085), (-27.231953, 0, -41.93353), (-27.194632, -2.616798, -41.87606), (-27.194632, -2.616798, -41.87606), (-27.231953, 0, -41.93353), (-25, 0, -43.30127), (-24.965738, -2.616798, -43.24193), (-24.965738, -2.616798, -43.24193), (-25, 0, -43.30127), (-22.699526, 0, -44.550327), (-22.668417, -2.616798, -44.489273), (-22.668417, -2.616798, -44.489273), (-22.699526, 0, -44.550327), (-20.336832, 0, -45.677273), (-20.308962, -2.616798, -45.614674), (-20.308962, -2.616798, -45.614674), (-20.336832, 0, -45.677273), (-17.918398, 0, -46.67902), (-17.89384, -2.616798, -46.615047), (-17.89384, -2.616798, -46.615047), (-17.918398, 0, -46.67902), (-15.45085, 0, -47.552826), (-15.429675, -2.616798, -47.487656), (-15.429675, -2.616798, -47.487656), (-15.45085, 0, -47.552826), (-12.940952, 0, -48.29629), (-12.923217, -2.616798, -48.230103), (-12.923217, -2.616798, -48.230103), (-12.940952, 0, -48.29629), (-10.395584, 0, -48.90738), (-10.381338, -2.616798, -48.840355), (-10.381338, -2.616798, -48.840355), (-10.395584, 0, -48.90738), (-7.8217235, 0, -49.38442), (-7.8110037, -2.616798, -49.31674), (-7.8110037, -2.616798, -49.31674), (-7.8217235, 0, -49.38442), (-5.2264233, 0, -49.726093), (-5.2192607, -2.616798, -49.657948), (-5.2192607, -2.616798, -49.657948), (-5.2264233, 0, -49.726093), (-2.616798, 0, -49.931477), (-2.6132116, -2.616798, -49.86305), (-2.6132116, -2.616798, -49.86305), (-2.616798, 0, -49.931477), (-9.184851e-15, 0, -50), (-9.172263e-15, -2.616798, -49.931477), (-9.172263e-15, -2.616798, -49.931477), (-9.184851e-15, 0, -50), (2.616798, 0, -49.931477), (2.6132116, -2.616798, -49.86305), (2.6132116, -2.616798, -49.86305), (2.616798, 0, -49.931477), (5.2264233, 0, -49.726093), (5.2192607, -2.616798, -49.657948), (5.2192607, -2.616798, -49.657948), (5.2264233, 0, -49.726093), (7.8217235, 0, -49.38442), (7.8110037, -2.616798, -49.31674), (7.8110037, -2.616798, -49.31674), (7.8217235, 0, -49.38442), (10.395584, 0, -48.90738), (10.381338, -2.616798, -48.840355), (10.381338, -2.616798, -48.840355), (10.395584, 0, -48.90738), (12.940952, 0, -48.29629), (12.923217, -2.616798, -48.230103), (12.923217, -2.616798, -48.230103), (12.940952, 0, -48.29629), (15.45085, 0, -47.552826), (15.429675, -2.616798, -47.487656), (15.429675, -2.616798, -47.487656), (15.45085, 0, -47.552826), (17.918398, 0, -46.67902), (17.89384, -2.616798, -46.615047), (17.89384, -2.616798, -46.615047), (17.918398, 0, -46.67902), (20.336832, 0, -45.677273), (20.308962, -2.616798, -45.614674), (20.308962, -2.616798, -45.614674), (20.336832, 0, -45.677273), (22.699526, 0, -44.550327), (22.668417, -2.616798, -44.489273), (22.668417, -2.616798, -44.489273), (22.699526, 0, -44.550327), (25, 0, -43.30127), (24.965738, -2.616798, -43.24193), (24.965738, -2.616798, -43.24193), (25, 0, -43.30127), (27.231953, 0, -41.93353), (27.194632, -2.616798, -41.87606), (27.194632, -2.616798, -41.87606), (27.231953, 0, -41.93353), (29.389263, 0, -40.45085), (29.348986, -2.616798, -40.395412), (29.348986, -2.616798, -40.395412), (29.389263, 0, -40.45085), (31.466019, 0, -38.8573), (31.422897, -2.616798, -38.804047), (31.422897, -2.616798, -38.804047), (31.466019, 0, -38.8573), (33.45653, 0, -37.15724), (33.41068, -2.616798, -37.10632), (33.41068, -2.616798, -37.10632), (33.45653, 0, -37.15724), (35.35534, 0, -35.35534), (35.306885, -2.616798, -35.306885), (35.306885, -2.616798, -35.306885), (35.35534, 0, -35.35534), (37.15724, 0, -33.45653), (37.10632, -2.616798, -33.41068), (37.10632, -2.616798, -33.41068), (37.15724, 0, -33.45653), (38.8573, 0, -31.466019), (38.804047, -2.616798, -31.422897), (38.804047, -2.616798, -31.422897), (38.8573, 0, -31.466019), (40.45085, 0, -29.389263), (40.395412, -2.616798, -29.348986), (40.395412, -2.616798, -29.348986), (40.45085, 0, -29.389263), (41.93353, 0, -27.231953), (41.87606, -2.616798, -27.194632), (41.87606, -2.616798, -27.194632), (41.93353, 0, -27.231953), (43.30127, 0, -25), (43.24193, -2.616798, -24.965738), (43.24193, -2.616798, -24.965738), (43.30127, 0, -25), (44.550327, 0, -22.699526), (44.489273, -2.616798, -22.668417), (44.489273, -2.616798, -22.668417), (44.550327, 0, -22.699526), (45.677273, 0, -20.336832), (45.614674, -2.616798, -20.308962), (45.614674, -2.616798, -20.308962), (45.677273, 0, -20.336832), (46.67902, 0, -17.918398), (46.615047, -2.616798, -17.89384), (46.615047, -2.616798, -17.89384), (46.67902, 0, -17.918398), (47.552826, 0, -15.45085), (47.487656, -2.616798, -15.429675), (47.487656, -2.616798, -15.429675), (47.552826, 0, -15.45085), (48.29629, 0, -12.940952), (48.230103, -2.616798, -12.923217), (48.230103, -2.616798, -12.923217), (48.29629, 0, -12.940952), (48.90738, 0, -10.395584), (48.840355, -2.616798, -10.381338), (48.840355, -2.616798, -10.381338), (48.90738, 0, -10.395584), (49.38442, 0, -7.8217235), (49.31674, -2.616798, -7.8110037), (49.31674, -2.616798, -7.8110037), (49.38442, 0, -7.8217235), (49.726093, 0, -5.2264233), (49.657948, -2.616798, -5.2192607), (49.657948, -2.616798, -5.2192607), (49.726093, 0, -5.2264233), (49.931477, 0, -2.616798), (49.86305, -2.616798, -2.6132116), (49.86305, -2.616798, -2.6132116), (49.931477, 0, -2.616798), (50, 0, 0), (49.931477, -2.616798, 0), (50, 0, 0), (49.931477, 2.616798, 0), (49.86305, 2.616798, 2.6132116), (49.931477, 0, 2.616798), (49.931477, 0, 2.616798), (49.86305, 2.616798, 2.6132116), (49.657948, 2.616798, 5.2192607), (49.726093, 0, 5.2264233), (49.726093, 0, 5.2264233), (49.657948, 2.616798, 5.2192607), (49.31674, 2.616798, 7.8110037), (49.38442, 0, 7.8217235), (49.38442, 0, 7.8217235), (49.31674, 2.616798, 7.8110037), (48.840355, 2.616798, 10.381338), (48.90738, 0, 10.395584), (48.90738, 0, 10.395584), (48.840355, 2.616798, 10.381338), (48.230103, 2.616798, 12.923217), (48.29629, 0, 12.940952), (48.29629, 0, 12.940952), (48.230103, 2.616798, 12.923217), (47.487656, 2.616798, 15.429675), (47.552826, 0, 15.45085), (47.552826, 0, 15.45085), (47.487656, 2.616798, 15.429675), (46.615047, 2.616798, 17.89384), (46.67902, 0, 17.918398), (46.67902, 0, 17.918398), (46.615047, 2.616798, 17.89384), (45.614674, 2.616798, 20.308962), (45.677273, 0, 20.336832), (45.677273, 0, 20.336832), (45.614674, 2.616798, 20.308962), (44.489273, 2.616798, 22.668417), (44.550327, 0, 22.699526), (44.550327, 0, 22.699526), (44.489273, 2.616798, 22.668417), (43.24193, 2.616798, 24.965738), (43.30127, 0, 25), (43.30127, 0, 25), (43.24193, 2.616798, 24.965738), (41.87606, 2.616798, 27.194632), (41.93353, 0, 27.231953), (41.93353, 0, 27.231953), (41.87606, 2.616798, 27.194632), (40.395412, 2.616798, 29.348986), (40.45085, 0, 29.389263), (40.45085, 0, 29.389263), (40.395412, 2.616798, 29.348986), (38.804047, 2.616798, 31.422897), (38.8573, 0, 31.466019), (38.8573, 0, 31.466019), (38.804047, 2.616798, 31.422897), (37.10632, 2.616798, 33.41068), (37.15724, 0, 33.45653), (37.15724, 0, 33.45653), (37.10632, 2.616798, 33.41068), (35.306885, 2.616798, 35.306885), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (35.306885, 2.616798, 35.306885), (33.41068, 2.616798, 37.10632), (33.45653, 0, 37.15724), (33.45653, 0, 37.15724), (33.41068, 2.616798, 37.10632), (31.422897, 2.616798, 38.804047), (31.466019, 0, 38.8573), (31.466019, 0, 38.8573), (31.422897, 2.616798, 38.804047), (29.348986, 2.616798, 40.395412), (29.389263, 0, 40.45085), (29.389263, 0, 40.45085), (29.348986, 2.616798, 40.395412), (27.194632, 2.616798, 41.87606), (27.231953, 0, 41.93353), (27.231953, 0, 41.93353), (27.194632, 2.616798, 41.87606), (24.965738, 2.616798, 43.24193), (25, 0, 43.30127), (25, 0, 43.30127), (24.965738, 2.616798, 43.24193), (22.668417, 2.616798, 44.489273), (22.699526, 0, 44.550327), (22.699526, 0, 44.550327), (22.668417, 2.616798, 44.489273), (20.308962, 2.616798, 45.614674), (20.336832, 0, 45.677273), (20.336832, 0, 45.677273), (20.308962, 2.616798, 45.614674), (17.89384, 2.616798, 46.615047), (17.918398, 0, 46.67902), (17.918398, 0, 46.67902), (17.89384, 2.616798, 46.615047), (15.429675, 2.616798, 47.487656), (15.45085, 0, 47.552826), (15.45085, 0, 47.552826), (15.429675, 2.616798, 47.487656), (12.923217, 2.616798, 48.230103), (12.940952, 0, 48.29629), (12.940952, 0, 48.29629), (12.923217, 2.616798, 48.230103), (10.381338, 2.616798, 48.840355), (10.395584, 0, 48.90738), (10.395584, 0, 48.90738), (10.381338, 2.616798, 48.840355), (7.8110037, 2.616798, 49.31674), (7.8217235, 0, 49.38442), (7.8217235, 0, 49.38442), (7.8110037, 2.616798, 49.31674), (5.2192607, 2.616798, 49.657948), (5.2264233, 0, 49.726093), (5.2264233, 0, 49.726093), (5.2192607, 2.616798, 49.657948), (2.6132116, 2.616798, 49.86305), (2.616798, 0, 49.931477), (2.616798, 0, 49.931477), (2.6132116, 2.616798, 49.86305), (3.0574211e-15, 2.616798, 49.931477), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (3.0574211e-15, 2.616798, 49.931477), (-2.6132116, 2.616798, 49.86305), (-2.616798, 0, 49.931477), (-2.616798, 0, 49.931477), (-2.6132116, 2.616798, 49.86305), (-5.2192607, 2.616798, 49.657948), (-5.2264233, 0, 49.726093), (-5.2264233, 0, 49.726093), (-5.2192607, 2.616798, 49.657948), (-7.8110037, 2.616798, 49.31674), (-7.8217235, 0, 49.38442), (-7.8217235, 0, 49.38442), (-7.8110037, 2.616798, 49.31674), (-10.381338, 2.616798, 48.840355), (-10.395584, 0, 48.90738), (-10.395584, 0, 48.90738), (-10.381338, 2.616798, 48.840355), (-12.923217, 2.616798, 48.230103), (-12.940952, 0, 48.29629), (-12.940952, 0, 48.29629), (-12.923217, 2.616798, 48.230103), (-15.429675, 2.616798, 47.487656), (-15.45085, 0, 47.552826), (-15.45085, 0, 47.552826), (-15.429675, 2.616798, 47.487656), (-17.89384, 2.616798, 46.615047), (-17.918398, 0, 46.67902), (-17.918398, 0, 46.67902), (-17.89384, 2.616798, 46.615047), (-20.308962, 2.616798, 45.614674), (-20.336832, 0, 45.677273), (-20.336832, 0, 45.677273), (-20.308962, 2.616798, 45.614674), (-22.668417, 2.616798, 44.489273), (-22.699526, 0, 44.550327), (-22.699526, 0, 44.550327), (-22.668417, 2.616798, 44.489273), (-24.965738, 2.616798, 43.24193), (-25, 0, 43.30127), (-25, 0, 43.30127), (-24.965738, 2.616798, 43.24193), (-27.194632, 2.616798, 41.87606), (-27.231953, 0, 41.93353), (-27.231953, 0, 41.93353), (-27.194632, 2.616798, 41.87606), (-29.348986, 2.616798, 40.395412), (-29.389263, 0, 40.45085), (-29.389263, 0, 40.45085), (-29.348986, 2.616798, 40.395412), (-31.422897, 2.616798, 38.804047), (-31.466019, 0, 38.8573), (-31.466019, 0, 38.8573), (-31.422897, 2.616798, 38.804047), (-33.41068, 2.616798, 37.10632), (-33.45653, 0, 37.15724), (-33.45653, 0, 37.15724), (-33.41068, 2.616798, 37.10632), (-35.306885, 2.616798, 35.306885), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-35.306885, 2.616798, 35.306885), (-37.10632, 2.616798, 33.41068), (-37.15724, 0, 33.45653), (-37.15724, 0, 33.45653), (-37.10632, 2.616798, 33.41068), (-38.804047, 2.616798, 31.422897), (-38.8573, 0, 31.466019), (-38.8573, 0, 31.466019), (-38.804047, 2.616798, 31.422897), (-40.395412, 2.616798, 29.348986), (-40.45085, 0, 29.389263), (-40.45085, 0, 29.389263), (-40.395412, 2.616798, 29.348986), (-41.87606, 2.616798, 27.194632), (-41.93353, 0, 27.231953), (-41.93353, 0, 27.231953), (-41.87606, 2.616798, 27.194632), (-43.24193, 2.616798, 24.965738), (-43.30127, 0, 25), (-43.30127, 0, 25), (-43.24193, 2.616798, 24.965738), (-44.489273, 2.616798, 22.668417), (-44.550327, 0, 22.699526), (-44.550327, 0, 22.699526), (-44.489273, 2.616798, 22.668417), (-45.614674, 2.616798, 20.308962), (-45.677273, 0, 20.336832), (-45.677273, 0, 20.336832), (-45.614674, 2.616798, 20.308962), (-46.615047, 2.616798, 17.89384), (-46.67902, 0, 17.918398), (-46.67902, 0, 17.918398), (-46.615047, 2.616798, 17.89384), (-47.487656, 2.616798, 15.429675), (-47.552826, 0, 15.45085), (-47.552826, 0, 15.45085), (-47.487656, 2.616798, 15.429675), (-48.230103, 2.616798, 12.923217), (-48.29629, 0, 12.940952), (-48.29629, 0, 12.940952), (-48.230103, 2.616798, 12.923217), (-48.840355, 2.616798, 10.381338), (-48.90738, 0, 10.395584), (-48.90738, 0, 10.395584), (-48.840355, 2.616798, 10.381338), (-49.31674, 2.616798, 7.8110037), (-49.38442, 0, 7.8217235), (-49.38442, 0, 7.8217235), (-49.31674, 2.616798, 7.8110037), (-49.657948, 2.616798, 5.2192607), (-49.726093, 0, 5.2264233), (-49.726093, 0, 5.2264233), (-49.657948, 2.616798, 5.2192607), (-49.86305, 2.616798, 2.6132116), (-49.931477, 0, 2.616798), (-49.931477, 0, 2.616798), (-49.86305, 2.616798, 2.6132116), (-49.931477, 2.616798, 6.1148422e-15), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-49.931477, 2.616798, 6.1148422e-15), (-49.86305, 2.616798, -2.6132116), (-49.931477, 0, -2.616798), (-49.931477, 0, -2.616798), (-49.86305, 2.616798, -2.6132116), (-49.657948, 2.616798, -5.2192607), (-49.726093, 0, -5.2264233), (-49.726093, 0, -5.2264233), (-49.657948, 2.616798, -5.2192607), (-49.31674, 2.616798, -7.8110037), (-49.38442, 0, -7.8217235), (-49.38442, 0, -7.8217235), (-49.31674, 2.616798, -7.8110037), (-48.840355, 2.616798, -10.381338), (-48.90738, 0, -10.395584), (-48.90738, 0, -10.395584), (-48.840355, 2.616798, -10.381338), (-48.230103, 2.616798, -12.923217), (-48.29629, 0, -12.940952), (-48.29629, 0, -12.940952), (-48.230103, 2.616798, -12.923217), (-47.487656, 2.616798, -15.429675), (-47.552826, 0, -15.45085), (-47.552826, 0, -15.45085), (-47.487656, 2.616798, -15.429675), (-46.615047, 2.616798, -17.89384), (-46.67902, 0, -17.918398), (-46.67902, 0, -17.918398), (-46.615047, 2.616798, -17.89384), (-45.614674, 2.616798, -20.308962), (-45.677273, 0, -20.336832), (-45.677273, 0, -20.336832), (-45.614674, 2.616798, -20.308962), (-44.489273, 2.616798, -22.668417), (-44.550327, 0, -22.699526), (-44.550327, 0, -22.699526), (-44.489273, 2.616798, -22.668417), (-43.24193, 2.616798, -24.965738), (-43.30127, 0, -25), (-43.30127, 0, -25), (-43.24193, 2.616798, -24.965738), (-41.87606, 2.616798, -27.194632), (-41.93353, 0, -27.231953), (-41.93353, 0, -27.231953), (-41.87606, 2.616798, -27.194632), (-40.395412, 2.616798, -29.348986), (-40.45085, 0, -29.389263), (-40.45085, 0, -29.389263), (-40.395412, 2.616798, -29.348986), (-38.804047, 2.616798, -31.422897), (-38.8573, 0, -31.466019), (-38.8573, 0, -31.466019), (-38.804047, 2.616798, -31.422897), (-37.10632, 2.616798, -33.41068), (-37.15724, 0, -33.45653), (-37.15724, 0, -33.45653), (-37.10632, 2.616798, -33.41068), (-35.306885, 2.616798, -35.306885), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-35.306885, 2.616798, -35.306885), (-33.41068, 2.616798, -37.10632), (-33.45653, 0, -37.15724), (-33.45653, 0, -37.15724), (-33.41068, 2.616798, -37.10632), (-31.422897, 2.616798, -38.804047), (-31.466019, 0, -38.8573), (-31.466019, 0, -38.8573), (-31.422897, 2.616798, -38.804047), (-29.348986, 2.616798, -40.395412), (-29.389263, 0, -40.45085), (-29.389263, 0, -40.45085), (-29.348986, 2.616798, -40.395412), (-27.194632, 2.616798, -41.87606), (-27.231953, 0, -41.93353), (-27.231953, 0, -41.93353), (-27.194632, 2.616798, -41.87606), (-24.965738, 2.616798, -43.24193), (-25, 0, -43.30127), (-25, 0, -43.30127), (-24.965738, 2.616798, -43.24193), (-22.668417, 2.616798, -44.489273), (-22.699526, 0, -44.550327), (-22.699526, 0, -44.550327), (-22.668417, 2.616798, -44.489273), (-20.308962, 2.616798, -45.614674), (-20.336832, 0, -45.677273), (-20.336832, 0, -45.677273), (-20.308962, 2.616798, -45.614674), (-17.89384, 2.616798, -46.615047), (-17.918398, 0, -46.67902), (-17.918398, 0, -46.67902), (-17.89384, 2.616798, -46.615047), (-15.429675, 2.616798, -47.487656), (-15.45085, 0, -47.552826), (-15.45085, 0, -47.552826), (-15.429675, 2.616798, -47.487656), (-12.923217, 2.616798, -48.230103), (-12.940952, 0, -48.29629), (-12.940952, 0, -48.29629), (-12.923217, 2.616798, -48.230103), (-10.381338, 2.616798, -48.840355), (-10.395584, 0, -48.90738), (-10.395584, 0, -48.90738), (-10.381338, 2.616798, -48.840355), (-7.8110037, 2.616798, -49.31674), (-7.8217235, 0, -49.38442), (-7.8217235, 0, -49.38442), (-7.8110037, 2.616798, -49.31674), (-5.2192607, 2.616798, -49.657948), (-5.2264233, 0, -49.726093), (-5.2264233, 0, -49.726093), (-5.2192607, 2.616798, -49.657948), (-2.6132116, 2.616798, -49.86305), (-2.616798, 0, -49.931477), (-2.616798, 0, -49.931477), (-2.6132116, 2.616798, -49.86305), (-9.172263e-15, 2.616798, -49.931477), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (-9.172263e-15, 2.616798, -49.931477), (2.6132116, 2.616798, -49.86305), (2.616798, 0, -49.931477), (2.616798, 0, -49.931477), (2.6132116, 2.616798, -49.86305), (5.2192607, 2.616798, -49.657948), (5.2264233, 0, -49.726093), (5.2264233, 0, -49.726093), (5.2192607, 2.616798, -49.657948), (7.8110037, 2.616798, -49.31674), (7.8217235, 0, -49.38442), (7.8217235, 0, -49.38442), (7.8110037, 2.616798, -49.31674), (10.381338, 2.616798, -48.840355), (10.395584, 0, -48.90738), (10.395584, 0, -48.90738), (10.381338, 2.616798, -48.840355), (12.923217, 2.616798, -48.230103), (12.940952, 0, -48.29629), (12.940952, 0, -48.29629), (12.923217, 2.616798, -48.230103), (15.429675, 2.616798, -47.487656), (15.45085, 0, -47.552826), (15.45085, 0, -47.552826), (15.429675, 2.616798, -47.487656), (17.89384, 2.616798, -46.615047), (17.918398, 0, -46.67902), (17.918398, 0, -46.67902), (17.89384, 2.616798, -46.615047), (20.308962, 2.616798, -45.614674), (20.336832, 0, -45.677273), (20.336832, 0, -45.677273), (20.308962, 2.616798, -45.614674), (22.668417, 2.616798, -44.489273), (22.699526, 0, -44.550327), (22.699526, 0, -44.550327), (22.668417, 2.616798, -44.489273), (24.965738, 2.616798, -43.24193), (25, 0, -43.30127), (25, 0, -43.30127), (24.965738, 2.616798, -43.24193), (27.194632, 2.616798, -41.87606), (27.231953, 0, -41.93353), (27.231953, 0, -41.93353), (27.194632, 2.616798, -41.87606), (29.348986, 2.616798, -40.395412), (29.389263, 0, -40.45085), (29.389263, 0, -40.45085), (29.348986, 2.616798, -40.395412), (31.422897, 2.616798, -38.804047), (31.466019, 0, -38.8573), (31.466019, 0, -38.8573), (31.422897, 2.616798, -38.804047), (33.41068, 2.616798, -37.10632), (33.45653, 0, -37.15724), (33.45653, 0, -37.15724), (33.41068, 2.616798, -37.10632), (35.306885, 2.616798, -35.306885), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (35.306885, 2.616798, -35.306885), (37.10632, 2.616798, -33.41068), (37.15724, 0, -33.45653), (37.15724, 0, -33.45653), (37.10632, 2.616798, -33.41068), (38.804047, 2.616798, -31.422897), (38.8573, 0, -31.466019), (38.8573, 0, -31.466019), (38.804047, 2.616798, -31.422897), (40.395412, 2.616798, -29.348986), (40.45085, 0, -29.389263), (40.45085, 0, -29.389263), (40.395412, 2.616798, -29.348986), (41.87606, 2.616798, -27.194632), (41.93353, 0, -27.231953), (41.93353, 0, -27.231953), (41.87606, 2.616798, -27.194632), (43.24193, 2.616798, -24.965738), (43.30127, 0, -25), (43.30127, 0, -25), (43.24193, 2.616798, -24.965738), (44.489273, 2.616798, -22.668417), (44.550327, 0, -22.699526), (44.550327, 0, -22.699526), (44.489273, 2.616798, -22.668417), (45.614674, 2.616798, -20.308962), (45.677273, 0, -20.336832), (45.677273, 0, -20.336832), (45.614674, 2.616798, -20.308962), (46.615047, 2.616798, -17.89384), (46.67902, 0, -17.918398), (46.67902, 0, -17.918398), (46.615047, 2.616798, -17.89384), (47.487656, 2.616798, -15.429675), (47.552826, 0, -15.45085), (47.552826, 0, -15.45085), (47.487656, 2.616798, -15.429675), (48.230103, 2.616798, -12.923217), (48.29629, 0, -12.940952), (48.29629, 0, -12.940952), (48.230103, 2.616798, -12.923217), (48.840355, 2.616798, -10.381338), (48.90738, 0, -10.395584), (48.90738, 0, -10.395584), (48.840355, 2.616798, -10.381338), (49.31674, 2.616798, -7.8110037), (49.38442, 0, -7.8217235), (49.38442, 0, -7.8217235), (49.31674, 2.616798, -7.8110037), (49.657948, 2.616798, -5.2192607), (49.726093, 0, -5.2264233), (49.726093, 0, -5.2264233), (49.657948, 2.616798, -5.2192607), (49.86305, 2.616798, -2.6132116), (49.931477, 0, -2.616798), (49.931477, 0, -2.616798), (49.86305, 2.616798, -2.6132116), (49.931477, 2.616798, 0), (50, 0, 0), (49.931477, 2.616798, 0), (49.726093, 5.2264233, 0), (49.657948, 5.2264233, 2.6024628), (49.86305, 2.616798, 2.6132116), (49.86305, 2.616798, 2.6132116), (49.657948, 5.2264233, 2.6024628), (49.45369, 5.2264233, 5.197792), (49.657948, 2.616798, 5.2192607), (49.657948, 2.616798, 5.2192607), (49.45369, 5.2264233, 5.197792), (49.113884, 5.2264233, 7.778875), (49.31674, 2.616798, 7.8110037), (49.31674, 2.616798, 7.8110037), (49.113884, 5.2264233, 7.778875), (48.63946, 5.2264233, 10.338636), (48.840355, 2.616798, 10.381338), (48.840355, 2.616798, 10.381338), (48.63946, 5.2264233, 10.338636), (48.03172, 5.2264233, 12.87006), (48.230103, 2.616798, 12.923217), (48.230103, 2.616798, 12.923217), (48.03172, 5.2264233, 12.87006), (47.292328, 5.2264233, 15.366208), (47.487656, 2.616798, 15.429675), (47.487656, 2.616798, 15.429675), (47.292328, 5.2264233, 15.366208), (46.42331, 5.2264233, 17.820238), (46.615047, 2.616798, 17.89384), (46.615047, 2.616798, 17.89384), (46.42331, 5.2264233, 17.820238), (45.427048, 5.2264233, 20.225426), (45.614674, 2.616798, 20.308962), (45.614674, 2.616798, 20.308962), (45.427048, 5.2264233, 20.225426), (44.306274, 5.2264233, 22.575174), (44.489273, 2.616798, 22.668417), (44.489273, 2.616798, 22.668417), (44.306274, 5.2264233, 22.575174), (43.06406, 5.2264233, 24.863047), (43.24193, 2.616798, 24.965738), (43.24193, 2.616798, 24.965738), (43.06406, 5.2264233, 24.863047), (41.70381, 5.2264233, 27.082773), (41.87606, 2.616798, 27.194632), (41.87606, 2.616798, 27.194632), (41.70381, 5.2264233, 27.082773), (40.229256, 5.2264233, 29.228266), (40.395412, 2.616798, 29.348986), (40.395412, 2.616798, 29.348986), (40.229256, 5.2264233, 29.228266), (38.644432, 5.2264233, 31.293646), (38.804047, 2.616798, 31.422897), (38.804047, 2.616798, 31.422897), (38.644432, 5.2264233, 31.293646), (36.95369, 5.2264233, 33.27325), (37.10632, 2.616798, 33.41068), (37.10632, 2.616798, 33.41068), (36.95369, 5.2264233, 33.27325), (35.16166, 5.2264233, 35.16166), (35.306885, 2.616798, 35.306885), (35.306885, 2.616798, 35.306885), (35.16166, 5.2264233, 35.16166), (33.27325, 5.2264233, 36.95369), (33.41068, 2.616798, 37.10632), (33.41068, 2.616798, 37.10632), (33.27325, 5.2264233, 36.95369), (31.293646, 5.2264233, 38.644432), (31.422897, 2.616798, 38.804047), (31.422897, 2.616798, 38.804047), (31.293646, 5.2264233, 38.644432), (29.228266, 5.2264233, 40.229256), (29.348986, 2.616798, 40.395412), (29.348986, 2.616798, 40.395412), (29.228266, 5.2264233, 40.229256), (27.082773, 5.2264233, 41.70381), (27.194632, 2.616798, 41.87606), (27.194632, 2.616798, 41.87606), (27.082773, 5.2264233, 41.70381), (24.863047, 5.2264233, 43.06406), (24.965738, 2.616798, 43.24193), (24.965738, 2.616798, 43.24193), (24.863047, 5.2264233, 43.06406), (22.575174, 5.2264233, 44.306274), (22.668417, 2.616798, 44.489273), (22.668417, 2.616798, 44.489273), (22.575174, 5.2264233, 44.306274), (20.225426, 5.2264233, 45.427048), (20.308962, 2.616798, 45.614674), (20.308962, 2.616798, 45.614674), (20.225426, 5.2264233, 45.427048), (17.820238, 5.2264233, 46.42331), (17.89384, 2.616798, 46.615047), (17.89384, 2.616798, 46.615047), (17.820238, 5.2264233, 46.42331), (15.366208, 5.2264233, 47.292328), (15.429675, 2.616798, 47.487656), (15.429675, 2.616798, 47.487656), (15.366208, 5.2264233, 47.292328), (12.87006, 5.2264233, 48.03172), (12.923217, 2.616798, 48.230103), (12.923217, 2.616798, 48.230103), (12.87006, 5.2264233, 48.03172), (10.338636, 5.2264233, 48.63946), (10.381338, 2.616798, 48.840355), (10.381338, 2.616798, 48.840355), (10.338636, 5.2264233, 48.63946), (7.778875, 5.2264233, 49.113884), (7.8110037, 2.616798, 49.31674), (7.8110037, 2.616798, 49.31674), (7.778875, 5.2264233, 49.113884), (5.197792, 5.2264233, 49.45369), (5.2192607, 2.616798, 49.657948), (5.2192607, 2.616798, 49.657948), (5.197792, 5.2264233, 49.45369), (2.6024628, 5.2264233, 49.657948), (2.6132116, 2.616798, 49.86305), (2.6132116, 2.616798, 49.86305), (2.6024628, 5.2264233, 49.657948), (3.0448452e-15, 5.2264233, 49.726093), (3.0574211e-15, 2.616798, 49.931477), (3.0574211e-15, 2.616798, 49.931477), (3.0448452e-15, 5.2264233, 49.726093), (-2.6024628, 5.2264233, 49.657948), (-2.6132116, 2.616798, 49.86305), (-2.6132116, 2.616798, 49.86305), (-2.6024628, 5.2264233, 49.657948), (-5.197792, 5.2264233, 49.45369), (-5.2192607, 2.616798, 49.657948), (-5.2192607, 2.616798, 49.657948), (-5.197792, 5.2264233, 49.45369), (-7.778875, 5.2264233, 49.113884), (-7.8110037, 2.616798, 49.31674), (-7.8110037, 2.616798, 49.31674), (-7.778875, 5.2264233, 49.113884), (-10.338636, 5.2264233, 48.63946), (-10.381338, 2.616798, 48.840355), (-10.381338, 2.616798, 48.840355), (-10.338636, 5.2264233, 48.63946), (-12.87006, 5.2264233, 48.03172), (-12.923217, 2.616798, 48.230103), (-12.923217, 2.616798, 48.230103), (-12.87006, 5.2264233, 48.03172), (-15.366208, 5.2264233, 47.292328), (-15.429675, 2.616798, 47.487656), (-15.429675, 2.616798, 47.487656), (-15.366208, 5.2264233, 47.292328), (-17.820238, 5.2264233, 46.42331), (-17.89384, 2.616798, 46.615047), (-17.89384, 2.616798, 46.615047), (-17.820238, 5.2264233, 46.42331), (-20.225426, 5.2264233, 45.427048), (-20.308962, 2.616798, 45.614674), (-20.308962, 2.616798, 45.614674), (-20.225426, 5.2264233, 45.427048), (-22.575174, 5.2264233, 44.306274), (-22.668417, 2.616798, 44.489273), (-22.668417, 2.616798, 44.489273), (-22.575174, 5.2264233, 44.306274), (-24.863047, 5.2264233, 43.06406), (-24.965738, 2.616798, 43.24193), (-24.965738, 2.616798, 43.24193), (-24.863047, 5.2264233, 43.06406), (-27.082773, 5.2264233, 41.70381), (-27.194632, 2.616798, 41.87606), (-27.194632, 2.616798, 41.87606), (-27.082773, 5.2264233, 41.70381), (-29.228266, 5.2264233, 40.229256), (-29.348986, 2.616798, 40.395412), (-29.348986, 2.616798, 40.395412), (-29.228266, 5.2264233, 40.229256), (-31.293646, 5.2264233, 38.644432), (-31.422897, 2.616798, 38.804047), (-31.422897, 2.616798, 38.804047), (-31.293646, 5.2264233, 38.644432), (-33.27325, 5.2264233, 36.95369), (-33.41068, 2.616798, 37.10632), (-33.41068, 2.616798, 37.10632), (-33.27325, 5.2264233, 36.95369), (-35.16166, 5.2264233, 35.16166), (-35.306885, 2.616798, 35.306885), (-35.306885, 2.616798, 35.306885), (-35.16166, 5.2264233, 35.16166), (-36.95369, 5.2264233, 33.27325), (-37.10632, 2.616798, 33.41068), (-37.10632, 2.616798, 33.41068), (-36.95369, 5.2264233, 33.27325), (-38.644432, 5.2264233, 31.293646), (-38.804047, 2.616798, 31.422897), (-38.804047, 2.616798, 31.422897), (-38.644432, 5.2264233, 31.293646), (-40.229256, 5.2264233, 29.228266), (-40.395412, 2.616798, 29.348986), (-40.395412, 2.616798, 29.348986), (-40.229256, 5.2264233, 29.228266), (-41.70381, 5.2264233, 27.082773), (-41.87606, 2.616798, 27.194632), (-41.87606, 2.616798, 27.194632), (-41.70381, 5.2264233, 27.082773), (-43.06406, 5.2264233, 24.863047), (-43.24193, 2.616798, 24.965738), (-43.24193, 2.616798, 24.965738), (-43.06406, 5.2264233, 24.863047), (-44.306274, 5.2264233, 22.575174), (-44.489273, 2.616798, 22.668417), (-44.489273, 2.616798, 22.668417), (-44.306274, 5.2264233, 22.575174), (-45.427048, 5.2264233, 20.225426), (-45.614674, 2.616798, 20.308962), (-45.614674, 2.616798, 20.308962), (-45.427048, 5.2264233, 20.225426), (-46.42331, 5.2264233, 17.820238), (-46.615047, 2.616798, 17.89384), (-46.615047, 2.616798, 17.89384), (-46.42331, 5.2264233, 17.820238), (-47.292328, 5.2264233, 15.366208), (-47.487656, 2.616798, 15.429675), (-47.487656, 2.616798, 15.429675), (-47.292328, 5.2264233, 15.366208), (-48.03172, 5.2264233, 12.87006), (-48.230103, 2.616798, 12.923217), (-48.230103, 2.616798, 12.923217), (-48.03172, 5.2264233, 12.87006), (-48.63946, 5.2264233, 10.338636), (-48.840355, 2.616798, 10.381338), (-48.840355, 2.616798, 10.381338), (-48.63946, 5.2264233, 10.338636), (-49.113884, 5.2264233, 7.778875), (-49.31674, 2.616798, 7.8110037), (-49.31674, 2.616798, 7.8110037), (-49.113884, 5.2264233, 7.778875), (-49.45369, 5.2264233, 5.197792), (-49.657948, 2.616798, 5.2192607), (-49.657948, 2.616798, 5.2192607), (-49.45369, 5.2264233, 5.197792), (-49.657948, 5.2264233, 2.6024628), (-49.86305, 2.616798, 2.6132116), (-49.86305, 2.616798, 2.6132116), (-49.657948, 5.2264233, 2.6024628), (-49.726093, 5.2264233, 6.0896904e-15), (-49.931477, 2.616798, 6.1148422e-15), (-49.931477, 2.616798, 6.1148422e-15), (-49.726093, 5.2264233, 6.0896904e-15), (-49.657948, 5.2264233, -2.6024628), (-49.86305, 2.616798, -2.6132116), (-49.86305, 2.616798, -2.6132116), (-49.657948, 5.2264233, -2.6024628), (-49.45369, 5.2264233, -5.197792), (-49.657948, 2.616798, -5.2192607), (-49.657948, 2.616798, -5.2192607), (-49.45369, 5.2264233, -5.197792), (-49.113884, 5.2264233, -7.778875), (-49.31674, 2.616798, -7.8110037), (-49.31674, 2.616798, -7.8110037), (-49.113884, 5.2264233, -7.778875), (-48.63946, 5.2264233, -10.338636), (-48.840355, 2.616798, -10.381338), (-48.840355, 2.616798, -10.381338), (-48.63946, 5.2264233, -10.338636), (-48.03172, 5.2264233, -12.87006), (-48.230103, 2.616798, -12.923217), (-48.230103, 2.616798, -12.923217), (-48.03172, 5.2264233, -12.87006), (-47.292328, 5.2264233, -15.366208), (-47.487656, 2.616798, -15.429675), (-47.487656, 2.616798, -15.429675), (-47.292328, 5.2264233, -15.366208), (-46.42331, 5.2264233, -17.820238), (-46.615047, 2.616798, -17.89384), (-46.615047, 2.616798, -17.89384), (-46.42331, 5.2264233, -17.820238), (-45.427048, 5.2264233, -20.225426), (-45.614674, 2.616798, -20.308962), (-45.614674, 2.616798, -20.308962), (-45.427048, 5.2264233, -20.225426), (-44.306274, 5.2264233, -22.575174), (-44.489273, 2.616798, -22.668417), (-44.489273, 2.616798, -22.668417), (-44.306274, 5.2264233, -22.575174), (-43.06406, 5.2264233, -24.863047), (-43.24193, 2.616798, -24.965738), (-43.24193, 2.616798, -24.965738), (-43.06406, 5.2264233, -24.863047), (-41.70381, 5.2264233, -27.082773), (-41.87606, 2.616798, -27.194632), (-41.87606, 2.616798, -27.194632), (-41.70381, 5.2264233, -27.082773), (-40.229256, 5.2264233, -29.228266), (-40.395412, 2.616798, -29.348986), (-40.395412, 2.616798, -29.348986), (-40.229256, 5.2264233, -29.228266), (-38.644432, 5.2264233, -31.293646), (-38.804047, 2.616798, -31.422897), (-38.804047, 2.616798, -31.422897), (-38.644432, 5.2264233, -31.293646), (-36.95369, 5.2264233, -33.27325), (-37.10632, 2.616798, -33.41068), (-37.10632, 2.616798, -33.41068), (-36.95369, 5.2264233, -33.27325), (-35.16166, 5.2264233, -35.16166), (-35.306885, 2.616798, -35.306885), (-35.306885, 2.616798, -35.306885), (-35.16166, 5.2264233, -35.16166), (-33.27325, 5.2264233, -36.95369), (-33.41068, 2.616798, -37.10632), (-33.41068, 2.616798, -37.10632), (-33.27325, 5.2264233, -36.95369), (-31.293646, 5.2264233, -38.644432), (-31.422897, 2.616798, -38.804047), (-31.422897, 2.616798, -38.804047), (-31.293646, 5.2264233, -38.644432), (-29.228266, 5.2264233, -40.229256), (-29.348986, 2.616798, -40.395412), (-29.348986, 2.616798, -40.395412), (-29.228266, 5.2264233, -40.229256), (-27.082773, 5.2264233, -41.70381), (-27.194632, 2.616798, -41.87606), (-27.194632, 2.616798, -41.87606), (-27.082773, 5.2264233, -41.70381), (-24.863047, 5.2264233, -43.06406), (-24.965738, 2.616798, -43.24193), (-24.965738, 2.616798, -43.24193), (-24.863047, 5.2264233, -43.06406), (-22.575174, 5.2264233, -44.306274), (-22.668417, 2.616798, -44.489273), (-22.668417, 2.616798, -44.489273), (-22.575174, 5.2264233, -44.306274), (-20.225426, 5.2264233, -45.427048), (-20.308962, 2.616798, -45.614674), (-20.308962, 2.616798, -45.614674), (-20.225426, 5.2264233, -45.427048), (-17.820238, 5.2264233, -46.42331), (-17.89384, 2.616798, -46.615047), (-17.89384, 2.616798, -46.615047), (-17.820238, 5.2264233, -46.42331), (-15.366208, 5.2264233, -47.292328), (-15.429675, 2.616798, -47.487656), (-15.429675, 2.616798, -47.487656), (-15.366208, 5.2264233, -47.292328), (-12.87006, 5.2264233, -48.03172), (-12.923217, 2.616798, -48.230103), (-12.923217, 2.616798, -48.230103), (-12.87006, 5.2264233, -48.03172), (-10.338636, 5.2264233, -48.63946), (-10.381338, 2.616798, -48.840355), (-10.381338, 2.616798, -48.840355), (-10.338636, 5.2264233, -48.63946), (-7.778875, 5.2264233, -49.113884), (-7.8110037, 2.616798, -49.31674), (-7.8110037, 2.616798, -49.31674), (-7.778875, 5.2264233, -49.113884), (-5.197792, 5.2264233, -49.45369), (-5.2192607, 2.616798, -49.657948), (-5.2192607, 2.616798, -49.657948), (-5.197792, 5.2264233, -49.45369), (-2.6024628, 5.2264233, -49.657948), (-2.6132116, 2.616798, -49.86305), (-2.6132116, 2.616798, -49.86305), (-2.6024628, 5.2264233, -49.657948), (-9.1345354e-15, 5.2264233, -49.726093), (-9.172263e-15, 2.616798, -49.931477), (-9.172263e-15, 2.616798, -49.931477), (-9.1345354e-15, 5.2264233, -49.726093), (2.6024628, 5.2264233, -49.657948), (2.6132116, 2.616798, -49.86305), (2.6132116, 2.616798, -49.86305), (2.6024628, 5.2264233, -49.657948), (5.197792, 5.2264233, -49.45369), (5.2192607, 2.616798, -49.657948), (5.2192607, 2.616798, -49.657948), (5.197792, 5.2264233, -49.45369), (7.778875, 5.2264233, -49.113884), (7.8110037, 2.616798, -49.31674), (7.8110037, 2.616798, -49.31674), (7.778875, 5.2264233, -49.113884), (10.338636, 5.2264233, -48.63946), (10.381338, 2.616798, -48.840355), (10.381338, 2.616798, -48.840355), (10.338636, 5.2264233, -48.63946), (12.87006, 5.2264233, -48.03172), (12.923217, 2.616798, -48.230103), (12.923217, 2.616798, -48.230103), (12.87006, 5.2264233, -48.03172), (15.366208, 5.2264233, -47.292328), (15.429675, 2.616798, -47.487656), (15.429675, 2.616798, -47.487656), (15.366208, 5.2264233, -47.292328), (17.820238, 5.2264233, -46.42331), (17.89384, 2.616798, -46.615047), (17.89384, 2.616798, -46.615047), (17.820238, 5.2264233, -46.42331), (20.225426, 5.2264233, -45.427048), (20.308962, 2.616798, -45.614674), (20.308962, 2.616798, -45.614674), (20.225426, 5.2264233, -45.427048), (22.575174, 5.2264233, -44.306274), (22.668417, 2.616798, -44.489273), (22.668417, 2.616798, -44.489273), (22.575174, 5.2264233, -44.306274), (24.863047, 5.2264233, -43.06406), (24.965738, 2.616798, -43.24193), (24.965738, 2.616798, -43.24193), (24.863047, 5.2264233, -43.06406), (27.082773, 5.2264233, -41.70381), (27.194632, 2.616798, -41.87606), (27.194632, 2.616798, -41.87606), (27.082773, 5.2264233, -41.70381), (29.228266, 5.2264233, -40.229256), (29.348986, 2.616798, -40.395412), (29.348986, 2.616798, -40.395412), (29.228266, 5.2264233, -40.229256), (31.293646, 5.2264233, -38.644432), (31.422897, 2.616798, -38.804047), (31.422897, 2.616798, -38.804047), (31.293646, 5.2264233, -38.644432), (33.27325, 5.2264233, -36.95369), (33.41068, 2.616798, -37.10632), (33.41068, 2.616798, -37.10632), (33.27325, 5.2264233, -36.95369), (35.16166, 5.2264233, -35.16166), (35.306885, 2.616798, -35.306885), (35.306885, 2.616798, -35.306885), (35.16166, 5.2264233, -35.16166), (36.95369, 5.2264233, -33.27325), (37.10632, 2.616798, -33.41068), (37.10632, 2.616798, -33.41068), (36.95369, 5.2264233, -33.27325), (38.644432, 5.2264233, -31.293646), (38.804047, 2.616798, -31.422897), (38.804047, 2.616798, -31.422897), (38.644432, 5.2264233, -31.293646), (40.229256, 5.2264233, -29.228266), (40.395412, 2.616798, -29.348986), (40.395412, 2.616798, -29.348986), (40.229256, 5.2264233, -29.228266), (41.70381, 5.2264233, -27.082773), (41.87606, 2.616798, -27.194632), (41.87606, 2.616798, -27.194632), (41.70381, 5.2264233, -27.082773), (43.06406, 5.2264233, -24.863047), (43.24193, 2.616798, -24.965738), (43.24193, 2.616798, -24.965738), (43.06406, 5.2264233, -24.863047), (44.306274, 5.2264233, -22.575174), (44.489273, 2.616798, -22.668417), (44.489273, 2.616798, -22.668417), (44.306274, 5.2264233, -22.575174), (45.427048, 5.2264233, -20.225426), (45.614674, 2.616798, -20.308962), (45.614674, 2.616798, -20.308962), (45.427048, 5.2264233, -20.225426), (46.42331, 5.2264233, -17.820238), (46.615047, 2.616798, -17.89384), (46.615047, 2.616798, -17.89384), (46.42331, 5.2264233, -17.820238), (47.292328, 5.2264233, -15.366208), (47.487656, 2.616798, -15.429675), (47.487656, 2.616798, -15.429675), (47.292328, 5.2264233, -15.366208), (48.03172, 5.2264233, -12.87006), (48.230103, 2.616798, -12.923217), (48.230103, 2.616798, -12.923217), (48.03172, 5.2264233, -12.87006), (48.63946, 5.2264233, -10.338636), (48.840355, 2.616798, -10.381338), (48.840355, 2.616798, -10.381338), (48.63946, 5.2264233, -10.338636), (49.113884, 5.2264233, -7.778875), (49.31674, 2.616798, -7.8110037), (49.31674, 2.616798, -7.8110037), (49.113884, 5.2264233, -7.778875), (49.45369, 5.2264233, -5.197792), (49.657948, 2.616798, -5.2192607), (49.657948, 2.616798, -5.2192607), (49.45369, 5.2264233, -5.197792), (49.657948, 5.2264233, -2.6024628), (49.86305, 2.616798, -2.6132116), (49.86305, 2.616798, -2.6132116), (49.657948, 5.2264233, -2.6024628), (49.726093, 5.2264233, 0), (49.931477, 2.616798, 0), (49.726093, 5.2264233, 0), (49.38442, 7.8217235, 0), (49.31674, 7.8217235, 2.5845807), (49.657948, 5.2264233, 2.6024628), (49.657948, 5.2264233, 2.6024628), (49.31674, 7.8217235, 2.5845807), (49.113884, 7.8217235, 5.1620774), (49.45369, 5.2264233, 5.197792), (49.45369, 5.2264233, 5.197792), (49.113884, 7.8217235, 5.1620774), (48.776413, 7.8217235, 7.725425), (49.113884, 5.2264233, 7.778875), (49.113884, 5.2264233, 7.778875), (48.776413, 7.8217235, 7.725425), (48.30525, 7.8217235, 10.267597), (48.63946, 5.2264233, 10.338636), (48.63946, 5.2264233, 10.338636), (48.30525, 7.8217235, 10.267597), (47.701683, 7.8217235, 12.781628), (48.03172, 5.2264233, 12.87006), (48.03172, 5.2264233, 12.87006), (47.701683, 7.8217235, 12.781628), (46.967373, 7.8217235, 15.260624), (47.292328, 5.2264233, 15.366208), (47.292328, 5.2264233, 15.366208), (46.967373, 7.8217235, 15.260624), (46.104324, 7.8217235, 17.697792), (46.42331, 5.2264233, 17.820238), (46.42331, 5.2264233, 17.820238), (46.104324, 7.8217235, 17.697792), (45.11491, 7.8217235, 20.086452), (45.427048, 5.2264233, 20.225426), (45.427048, 5.2264233, 20.225426), (45.11491, 7.8217235, 20.086452), (44.00184, 7.8217235, 22.420055), (44.306274, 5.2264233, 22.575174), (44.306274, 5.2264233, 22.575174), (44.00184, 7.8217235, 22.420055), (42.768158, 7.8217235, 24.69221), (43.06406, 5.2264233, 24.863047), (43.06406, 5.2264233, 24.863047), (42.768158, 7.8217235, 24.69221), (41.417255, 7.8217235, 26.89668), (41.70381, 5.2264233, 27.082773), (41.70381, 5.2264233, 27.082773), (41.417255, 7.8217235, 26.89668), (39.95283, 7.8217235, 29.027431), (40.229256, 5.2264233, 29.228266), (40.229256, 5.2264233, 29.228266), (39.95283, 7.8217235, 29.027431), (38.3789, 7.8217235, 31.07862), (38.644432, 5.2264233, 31.293646), (38.644432, 5.2264233, 31.293646), (38.3789, 7.8217235, 31.07862), (36.699776, 7.8217235, 33.044624), (36.95369, 5.2264233, 33.27325), (36.95369, 5.2264233, 33.27325), (36.699776, 7.8217235, 33.044624), (34.920055, 7.8217235, 34.920055), (35.16166, 5.2264233, 35.16166), (35.16166, 5.2264233, 35.16166), (34.920055, 7.8217235, 34.920055), (33.044624, 7.8217235, 36.699776), (33.27325, 5.2264233, 36.95369), (33.27325, 5.2264233, 36.95369), (33.044624, 7.8217235, 36.699776), (31.07862, 7.8217235, 38.3789), (31.293646, 5.2264233, 38.644432), (31.293646, 5.2264233, 38.644432), (31.07862, 7.8217235, 38.3789), (29.027431, 7.8217235, 39.95283), (29.228266, 5.2264233, 40.229256), (29.228266, 5.2264233, 40.229256), (29.027431, 7.8217235, 39.95283), (26.89668, 7.8217235, 41.417255), (27.082773, 5.2264233, 41.70381), (27.082773, 5.2264233, 41.70381), (26.89668, 7.8217235, 41.417255), (24.69221, 7.8217235, 42.768158), (24.863047, 5.2264233, 43.06406), (24.863047, 5.2264233, 43.06406), (24.69221, 7.8217235, 42.768158), (22.420055, 7.8217235, 44.00184), (22.575174, 5.2264233, 44.306274), (22.575174, 5.2264233, 44.306274), (22.420055, 7.8217235, 44.00184), (20.086452, 7.8217235, 45.11491), (20.225426, 5.2264233, 45.427048), (20.225426, 5.2264233, 45.427048), (20.086452, 7.8217235, 45.11491), (17.697792, 7.8217235, 46.104324), (17.820238, 5.2264233, 46.42331), (17.820238, 5.2264233, 46.42331), (17.697792, 7.8217235, 46.104324), (15.260624, 7.8217235, 46.967373), (15.366208, 5.2264233, 47.292328), (15.366208, 5.2264233, 47.292328), (15.260624, 7.8217235, 46.967373), (12.781628, 7.8217235, 47.701683), (12.87006, 5.2264233, 48.03172), (12.87006, 5.2264233, 48.03172), (12.781628, 7.8217235, 47.701683), (10.267597, 7.8217235, 48.30525), (10.338636, 5.2264233, 48.63946), (10.338636, 5.2264233, 48.63946), (10.267597, 7.8217235, 48.30525), (7.725425, 7.8217235, 48.776413), (7.778875, 5.2264233, 49.113884), (7.778875, 5.2264233, 49.113884), (7.725425, 7.8217235, 48.776413), (5.1620774, 7.8217235, 49.113884), (5.197792, 5.2264233, 49.45369), (5.197792, 5.2264233, 49.45369), (5.1620774, 7.8217235, 49.113884), (2.5845807, 7.8217235, 49.31674), (2.6024628, 5.2264233, 49.657948), (2.6024628, 5.2264233, 49.657948), (2.5845807, 7.8217235, 49.31674), (3.0239235e-15, 7.8217235, 49.38442), (3.0448452e-15, 5.2264233, 49.726093), (3.0448452e-15, 5.2264233, 49.726093), (3.0239235e-15, 7.8217235, 49.38442), (-2.5845807, 7.8217235, 49.31674), (-2.6024628, 5.2264233, 49.657948), (-2.6024628, 5.2264233, 49.657948), (-2.5845807, 7.8217235, 49.31674), (-5.1620774, 7.8217235, 49.113884), (-5.197792, 5.2264233, 49.45369), (-5.197792, 5.2264233, 49.45369), (-5.1620774, 7.8217235, 49.113884), (-7.725425, 7.8217235, 48.776413), (-7.778875, 5.2264233, 49.113884), (-7.778875, 5.2264233, 49.113884), (-7.725425, 7.8217235, 48.776413), (-10.267597, 7.8217235, 48.30525), (-10.338636, 5.2264233, 48.63946), (-10.338636, 5.2264233, 48.63946), (-10.267597, 7.8217235, 48.30525), (-12.781628, 7.8217235, 47.701683), (-12.87006, 5.2264233, 48.03172), (-12.87006, 5.2264233, 48.03172), (-12.781628, 7.8217235, 47.701683), (-15.260624, 7.8217235, 46.967373), (-15.366208, 5.2264233, 47.292328), (-15.366208, 5.2264233, 47.292328), (-15.260624, 7.8217235, 46.967373), (-17.697792, 7.8217235, 46.104324), (-17.820238, 5.2264233, 46.42331), (-17.820238, 5.2264233, 46.42331), (-17.697792, 7.8217235, 46.104324), (-20.086452, 7.8217235, 45.11491), (-20.225426, 5.2264233, 45.427048), (-20.225426, 5.2264233, 45.427048), (-20.086452, 7.8217235, 45.11491), (-22.420055, 7.8217235, 44.00184), (-22.575174, 5.2264233, 44.306274), (-22.575174, 5.2264233, 44.306274), (-22.420055, 7.8217235, 44.00184), (-24.69221, 7.8217235, 42.768158), (-24.863047, 5.2264233, 43.06406), (-24.863047, 5.2264233, 43.06406), (-24.69221, 7.8217235, 42.768158), (-26.89668, 7.8217235, 41.417255), (-27.082773, 5.2264233, 41.70381), (-27.082773, 5.2264233, 41.70381), (-26.89668, 7.8217235, 41.417255), (-29.027431, 7.8217235, 39.95283), (-29.228266, 5.2264233, 40.229256), (-29.228266, 5.2264233, 40.229256), (-29.027431, 7.8217235, 39.95283), (-31.07862, 7.8217235, 38.3789), (-31.293646, 5.2264233, 38.644432), (-31.293646, 5.2264233, 38.644432), (-31.07862, 7.8217235, 38.3789), (-33.044624, 7.8217235, 36.699776), (-33.27325, 5.2264233, 36.95369), (-33.27325, 5.2264233, 36.95369), (-33.044624, 7.8217235, 36.699776), (-34.920055, 7.8217235, 34.920055), (-35.16166, 5.2264233, 35.16166), (-35.16166, 5.2264233, 35.16166), (-34.920055, 7.8217235, 34.920055), (-36.699776, 7.8217235, 33.044624), (-36.95369, 5.2264233, 33.27325), (-36.95369, 5.2264233, 33.27325), (-36.699776, 7.8217235, 33.044624), (-38.3789, 7.8217235, 31.07862), (-38.644432, 5.2264233, 31.293646), (-38.644432, 5.2264233, 31.293646), (-38.3789, 7.8217235, 31.07862), (-39.95283, 7.8217235, 29.027431), (-40.229256, 5.2264233, 29.228266), (-40.229256, 5.2264233, 29.228266), (-39.95283, 7.8217235, 29.027431), (-41.417255, 7.8217235, 26.89668), (-41.70381, 5.2264233, 27.082773), (-41.70381, 5.2264233, 27.082773), (-41.417255, 7.8217235, 26.89668), (-42.768158, 7.8217235, 24.69221), (-43.06406, 5.2264233, 24.863047), (-43.06406, 5.2264233, 24.863047), (-42.768158, 7.8217235, 24.69221), (-44.00184, 7.8217235, 22.420055), (-44.306274, 5.2264233, 22.575174), (-44.306274, 5.2264233, 22.575174), (-44.00184, 7.8217235, 22.420055), (-45.11491, 7.8217235, 20.086452), (-45.427048, 5.2264233, 20.225426), (-45.427048, 5.2264233, 20.225426), (-45.11491, 7.8217235, 20.086452), (-46.104324, 7.8217235, 17.697792), (-46.42331, 5.2264233, 17.820238), (-46.42331, 5.2264233, 17.820238), (-46.104324, 7.8217235, 17.697792), (-46.967373, 7.8217235, 15.260624), (-47.292328, 5.2264233, 15.366208), (-47.292328, 5.2264233, 15.366208), (-46.967373, 7.8217235, 15.260624), (-47.701683, 7.8217235, 12.781628), (-48.03172, 5.2264233, 12.87006), (-48.03172, 5.2264233, 12.87006), (-47.701683, 7.8217235, 12.781628), (-48.30525, 7.8217235, 10.267597), (-48.63946, 5.2264233, 10.338636), (-48.63946, 5.2264233, 10.338636), (-48.30525, 7.8217235, 10.267597), (-48.776413, 7.8217235, 7.725425), (-49.113884, 5.2264233, 7.778875), (-49.113884, 5.2264233, 7.778875), (-48.776413, 7.8217235, 7.725425), (-49.113884, 7.8217235, 5.1620774), (-49.45369, 5.2264233, 5.197792), (-49.45369, 5.2264233, 5.197792), (-49.113884, 7.8217235, 5.1620774), (-49.31674, 7.8217235, 2.5845807), (-49.657948, 5.2264233, 2.6024628), (-49.657948, 5.2264233, 2.6024628), (-49.31674, 7.8217235, 2.5845807), (-49.38442, 7.8217235, 6.047847e-15), (-49.726093, 5.2264233, 6.0896904e-15), (-49.726093, 5.2264233, 6.0896904e-15), (-49.38442, 7.8217235, 6.047847e-15), (-49.31674, 7.8217235, -2.5845807), (-49.657948, 5.2264233, -2.6024628), (-49.657948, 5.2264233, -2.6024628), (-49.31674, 7.8217235, -2.5845807), (-49.113884, 7.8217235, -5.1620774), (-49.45369, 5.2264233, -5.197792), (-49.45369, 5.2264233, -5.197792), (-49.113884, 7.8217235, -5.1620774), (-48.776413, 7.8217235, -7.725425), (-49.113884, 5.2264233, -7.778875), (-49.113884, 5.2264233, -7.778875), (-48.776413, 7.8217235, -7.725425), (-48.30525, 7.8217235, -10.267597), (-48.63946, 5.2264233, -10.338636), (-48.63946, 5.2264233, -10.338636), (-48.30525, 7.8217235, -10.267597), (-47.701683, 7.8217235, -12.781628), (-48.03172, 5.2264233, -12.87006), (-48.03172, 5.2264233, -12.87006), (-47.701683, 7.8217235, -12.781628), (-46.967373, 7.8217235, -15.260624), (-47.292328, 5.2264233, -15.366208), (-47.292328, 5.2264233, -15.366208), (-46.967373, 7.8217235, -15.260624), (-46.104324, 7.8217235, -17.697792), (-46.42331, 5.2264233, -17.820238), (-46.42331, 5.2264233, -17.820238), (-46.104324, 7.8217235, -17.697792), (-45.11491, 7.8217235, -20.086452), (-45.427048, 5.2264233, -20.225426), (-45.427048, 5.2264233, -20.225426), (-45.11491, 7.8217235, -20.086452), (-44.00184, 7.8217235, -22.420055), (-44.306274, 5.2264233, -22.575174), (-44.306274, 5.2264233, -22.575174), (-44.00184, 7.8217235, -22.420055), (-42.768158, 7.8217235, -24.69221), (-43.06406, 5.2264233, -24.863047), (-43.06406, 5.2264233, -24.863047), (-42.768158, 7.8217235, -24.69221), (-41.417255, 7.8217235, -26.89668), (-41.70381, 5.2264233, -27.082773), (-41.70381, 5.2264233, -27.082773), (-41.417255, 7.8217235, -26.89668), (-39.95283, 7.8217235, -29.027431), (-40.229256, 5.2264233, -29.228266), (-40.229256, 5.2264233, -29.228266), (-39.95283, 7.8217235, -29.027431), (-38.3789, 7.8217235, -31.07862), (-38.644432, 5.2264233, -31.293646), (-38.644432, 5.2264233, -31.293646), (-38.3789, 7.8217235, -31.07862), (-36.699776, 7.8217235, -33.044624), (-36.95369, 5.2264233, -33.27325), (-36.95369, 5.2264233, -33.27325), (-36.699776, 7.8217235, -33.044624), (-34.920055, 7.8217235, -34.920055), (-35.16166, 5.2264233, -35.16166), (-35.16166, 5.2264233, -35.16166), (-34.920055, 7.8217235, -34.920055), (-33.044624, 7.8217235, -36.699776), (-33.27325, 5.2264233, -36.95369), (-33.27325, 5.2264233, -36.95369), (-33.044624, 7.8217235, -36.699776), (-31.07862, 7.8217235, -38.3789), (-31.293646, 5.2264233, -38.644432), (-31.293646, 5.2264233, -38.644432), (-31.07862, 7.8217235, -38.3789), (-29.027431, 7.8217235, -39.95283), (-29.228266, 5.2264233, -40.229256), (-29.228266, 5.2264233, -40.229256), (-29.027431, 7.8217235, -39.95283), (-26.89668, 7.8217235, -41.417255), (-27.082773, 5.2264233, -41.70381), (-27.082773, 5.2264233, -41.70381), (-26.89668, 7.8217235, -41.417255), (-24.69221, 7.8217235, -42.768158), (-24.863047, 5.2264233, -43.06406), (-24.863047, 5.2264233, -43.06406), (-24.69221, 7.8217235, -42.768158), (-22.420055, 7.8217235, -44.00184), (-22.575174, 5.2264233, -44.306274), (-22.575174, 5.2264233, -44.306274), (-22.420055, 7.8217235, -44.00184), (-20.086452, 7.8217235, -45.11491), (-20.225426, 5.2264233, -45.427048), (-20.225426, 5.2264233, -45.427048), (-20.086452, 7.8217235, -45.11491), (-17.697792, 7.8217235, -46.104324), (-17.820238, 5.2264233, -46.42331), (-17.820238, 5.2264233, -46.42331), (-17.697792, 7.8217235, -46.104324), (-15.260624, 7.8217235, -46.967373), (-15.366208, 5.2264233, -47.292328), (-15.366208, 5.2264233, -47.292328), (-15.260624, 7.8217235, -46.967373), (-12.781628, 7.8217235, -47.701683), (-12.87006, 5.2264233, -48.03172), (-12.87006, 5.2264233, -48.03172), (-12.781628, 7.8217235, -47.701683), (-10.267597, 7.8217235, -48.30525), (-10.338636, 5.2264233, -48.63946), (-10.338636, 5.2264233, -48.63946), (-10.267597, 7.8217235, -48.30525), (-7.725425, 7.8217235, -48.776413), (-7.778875, 5.2264233, -49.113884), (-7.778875, 5.2264233, -49.113884), (-7.725425, 7.8217235, -48.776413), (-5.1620774, 7.8217235, -49.113884), (-5.197792, 5.2264233, -49.45369), (-5.197792, 5.2264233, -49.45369), (-5.1620774, 7.8217235, -49.113884), (-2.5845807, 7.8217235, -49.31674), (-2.6024628, 5.2264233, -49.657948), (-2.6024628, 5.2264233, -49.657948), (-2.5845807, 7.8217235, -49.31674), (-9.07177e-15, 7.8217235, -49.38442), (-9.1345354e-15, 5.2264233, -49.726093), (-9.1345354e-15, 5.2264233, -49.726093), (-9.07177e-15, 7.8217235, -49.38442), (2.5845807, 7.8217235, -49.31674), (2.6024628, 5.2264233, -49.657948), (2.6024628, 5.2264233, -49.657948), (2.5845807, 7.8217235, -49.31674), (5.1620774, 7.8217235, -49.113884), (5.197792, 5.2264233, -49.45369), (5.197792, 5.2264233, -49.45369), (5.1620774, 7.8217235, -49.113884), (7.725425, 7.8217235, -48.776413), (7.778875, 5.2264233, -49.113884), (7.778875, 5.2264233, -49.113884), (7.725425, 7.8217235, -48.776413), (10.267597, 7.8217235, -48.30525), (10.338636, 5.2264233, -48.63946), (10.338636, 5.2264233, -48.63946), (10.267597, 7.8217235, -48.30525), (12.781628, 7.8217235, -47.701683), (12.87006, 5.2264233, -48.03172), (12.87006, 5.2264233, -48.03172), (12.781628, 7.8217235, -47.701683), (15.260624, 7.8217235, -46.967373), (15.366208, 5.2264233, -47.292328), (15.366208, 5.2264233, -47.292328), (15.260624, 7.8217235, -46.967373), (17.697792, 7.8217235, -46.104324), (17.820238, 5.2264233, -46.42331), (17.820238, 5.2264233, -46.42331), (17.697792, 7.8217235, -46.104324), (20.086452, 7.8217235, -45.11491), (20.225426, 5.2264233, -45.427048), (20.225426, 5.2264233, -45.427048), (20.086452, 7.8217235, -45.11491), (22.420055, 7.8217235, -44.00184), (22.575174, 5.2264233, -44.306274), (22.575174, 5.2264233, -44.306274), (22.420055, 7.8217235, -44.00184), (24.69221, 7.8217235, -42.768158), (24.863047, 5.2264233, -43.06406), (24.863047, 5.2264233, -43.06406), (24.69221, 7.8217235, -42.768158), (26.89668, 7.8217235, -41.417255), (27.082773, 5.2264233, -41.70381), (27.082773, 5.2264233, -41.70381), (26.89668, 7.8217235, -41.417255), (29.027431, 7.8217235, -39.95283), (29.228266, 5.2264233, -40.229256), (29.228266, 5.2264233, -40.229256), (29.027431, 7.8217235, -39.95283), (31.07862, 7.8217235, -38.3789), (31.293646, 5.2264233, -38.644432), (31.293646, 5.2264233, -38.644432), (31.07862, 7.8217235, -38.3789), (33.044624, 7.8217235, -36.699776), (33.27325, 5.2264233, -36.95369), (33.27325, 5.2264233, -36.95369), (33.044624, 7.8217235, -36.699776), (34.920055, 7.8217235, -34.920055), (35.16166, 5.2264233, -35.16166), (35.16166, 5.2264233, -35.16166), (34.920055, 7.8217235, -34.920055), (36.699776, 7.8217235, -33.044624), (36.95369, 5.2264233, -33.27325), (36.95369, 5.2264233, -33.27325), (36.699776, 7.8217235, -33.044624), (38.3789, 7.8217235, -31.07862), (38.644432, 5.2264233, -31.293646), (38.644432, 5.2264233, -31.293646), (38.3789, 7.8217235, -31.07862), (39.95283, 7.8217235, -29.027431), (40.229256, 5.2264233, -29.228266), (40.229256, 5.2264233, -29.228266), (39.95283, 7.8217235, -29.027431), (41.417255, 7.8217235, -26.89668), (41.70381, 5.2264233, -27.082773), (41.70381, 5.2264233, -27.082773), (41.417255, 7.8217235, -26.89668), (42.768158, 7.8217235, -24.69221), (43.06406, 5.2264233, -24.863047), (43.06406, 5.2264233, -24.863047), (42.768158, 7.8217235, -24.69221), (44.00184, 7.8217235, -22.420055), (44.306274, 5.2264233, -22.575174), (44.306274, 5.2264233, -22.575174), (44.00184, 7.8217235, -22.420055), (45.11491, 7.8217235, -20.086452), (45.427048, 5.2264233, -20.225426), (45.427048, 5.2264233, -20.225426), (45.11491, 7.8217235, -20.086452), (46.104324, 7.8217235, -17.697792), (46.42331, 5.2264233, -17.820238), (46.42331, 5.2264233, -17.820238), (46.104324, 7.8217235, -17.697792), (46.967373, 7.8217235, -15.260624), (47.292328, 5.2264233, -15.366208), (47.292328, 5.2264233, -15.366208), (46.967373, 7.8217235, -15.260624), (47.701683, 7.8217235, -12.781628), (48.03172, 5.2264233, -12.87006), (48.03172, 5.2264233, -12.87006), (47.701683, 7.8217235, -12.781628), (48.30525, 7.8217235, -10.267597), (48.63946, 5.2264233, -10.338636), (48.63946, 5.2264233, -10.338636), (48.30525, 7.8217235, -10.267597), (48.776413, 7.8217235, -7.725425), (49.113884, 5.2264233, -7.778875), (49.113884, 5.2264233, -7.778875), (48.776413, 7.8217235, -7.725425), (49.113884, 7.8217235, -5.1620774), (49.45369, 5.2264233, -5.197792), (49.45369, 5.2264233, -5.197792), (49.113884, 7.8217235, -5.1620774), (49.31674, 7.8217235, -2.5845807), (49.657948, 5.2264233, -2.6024628), (49.657948, 5.2264233, -2.6024628), (49.31674, 7.8217235, -2.5845807), (49.38442, 7.8217235, 0), (49.726093, 5.2264233, 0), (49.38442, 7.8217235, 0), (48.90738, 10.395584, 0), (48.840355, 10.395584, 2.5596144), (49.31674, 7.8217235, 2.5845807), (49.31674, 7.8217235, 2.5845807), (48.840355, 10.395584, 2.5596144), (48.63946, 10.395584, 5.112213), (49.113884, 7.8217235, 5.1620774), (49.113884, 7.8217235, 5.1620774), (48.63946, 10.395584, 5.112213), (48.30525, 10.395584, 7.6507998), (48.776413, 7.8217235, 7.725425), (48.776413, 7.8217235, 7.725425), (48.30525, 10.395584, 7.6507998), (47.83864, 10.395584, 10.168416), (48.30525, 7.8217235, 10.267597), (48.30525, 7.8217235, 10.267597), (47.83864, 10.395584, 10.168416), (47.240902, 10.395584, 12.658161), (47.701683, 7.8217235, 12.781628), (47.701683, 7.8217235, 12.781628), (47.240902, 10.395584, 12.658161), (46.513683, 10.395584, 15.113212), (46.967373, 7.8217235, 15.260624), (46.967373, 7.8217235, 15.260624), (46.513683, 10.395584, 15.113212), (45.658974, 10.395584, 17.526838), (46.104324, 7.8217235, 17.697792), (46.104324, 7.8217235, 17.697792), (45.658974, 10.395584, 17.526838), (44.679115, 10.395584, 19.892424), (45.11491, 7.8217235, 20.086452), (45.11491, 7.8217235, 20.086452), (44.679115, 10.395584, 19.892424), (43.576794, 10.395584, 22.203485), (44.00184, 7.8217235, 22.420055), (44.00184, 7.8217235, 22.420055), (43.576794, 10.395584, 22.203485), (42.355034, 10.395584, 24.45369), (42.768158, 7.8217235, 24.69221), (42.768158, 7.8217235, 24.69221), (42.355034, 10.395584, 24.45369), (41.01718, 10.395584, 26.636868), (41.417255, 7.8217235, 26.89668), (41.417255, 7.8217235, 26.89668), (41.01718, 10.395584, 26.636868), (39.566902, 10.395584, 28.747036), (39.95283, 7.8217235, 29.027431), (39.95283, 7.8217235, 29.027431), (39.566902, 10.395584, 28.747036), (38.00817, 10.395584, 30.778412), (38.3789, 7.8217235, 31.07862), (38.3789, 7.8217235, 31.07862), (38.00817, 10.395584, 30.778412), (36.34527, 10.395584, 32.725426), (36.699776, 7.8217235, 33.044624), (36.699776, 7.8217235, 33.044624), (36.34527, 10.395584, 32.725426), (34.58274, 10.395584, 34.58274), (34.920055, 7.8217235, 34.920055), (34.920055, 7.8217235, 34.920055), (34.58274, 10.395584, 34.58274), (32.725426, 10.395584, 36.34527), (33.044624, 7.8217235, 36.699776), (33.044624, 7.8217235, 36.699776), (32.725426, 10.395584, 36.34527), (30.778412, 10.395584, 38.00817), (31.07862, 7.8217235, 38.3789), (31.07862, 7.8217235, 38.3789), (30.778412, 10.395584, 38.00817), (28.747036, 10.395584, 39.566902), (29.027431, 7.8217235, 39.95283), (29.027431, 7.8217235, 39.95283), (28.747036, 10.395584, 39.566902), (26.636868, 10.395584, 41.01718), (26.89668, 7.8217235, 41.417255), (26.89668, 7.8217235, 41.417255), (26.636868, 10.395584, 41.01718), (24.45369, 10.395584, 42.355034), (24.69221, 7.8217235, 42.768158), (24.69221, 7.8217235, 42.768158), (24.45369, 10.395584, 42.355034), (22.203485, 10.395584, 43.576794), (22.420055, 7.8217235, 44.00184), (22.420055, 7.8217235, 44.00184), (22.203485, 10.395584, 43.576794), (19.892424, 10.395584, 44.679115), (20.086452, 7.8217235, 45.11491), (20.086452, 7.8217235, 45.11491), (19.892424, 10.395584, 44.679115), (17.526838, 10.395584, 45.658974), (17.697792, 7.8217235, 46.104324), (17.697792, 7.8217235, 46.104324), (17.526838, 10.395584, 45.658974), (15.113212, 10.395584, 46.513683), (15.260624, 7.8217235, 46.967373), (15.260624, 7.8217235, 46.967373), (15.113212, 10.395584, 46.513683), (12.658161, 10.395584, 47.240902), (12.781628, 7.8217235, 47.701683), (12.781628, 7.8217235, 47.701683), (12.658161, 10.395584, 47.240902), (10.168416, 10.395584, 47.83864), (10.267597, 7.8217235, 48.30525), (10.267597, 7.8217235, 48.30525), (10.168416, 10.395584, 47.83864), (7.6507998, 10.395584, 48.30525), (7.725425, 7.8217235, 48.776413), (7.725425, 7.8217235, 48.776413), (7.6507998, 10.395584, 48.30525), (5.112213, 10.395584, 48.63946), (5.1620774, 7.8217235, 49.113884), (5.1620774, 7.8217235, 49.113884), (5.112213, 10.395584, 48.63946), (2.5596144, 10.395584, 48.840355), (2.5845807, 7.8217235, 49.31674), (2.5845807, 7.8217235, 49.31674), (2.5596144, 10.395584, 48.840355), (2.9947134e-15, 10.395584, 48.90738), (3.0239235e-15, 7.8217235, 49.38442), (3.0239235e-15, 7.8217235, 49.38442), (2.9947134e-15, 10.395584, 48.90738), (-2.5596144, 10.395584, 48.840355), (-2.5845807, 7.8217235, 49.31674), (-2.5845807, 7.8217235, 49.31674), (-2.5596144, 10.395584, 48.840355), (-5.112213, 10.395584, 48.63946), (-5.1620774, 7.8217235, 49.113884), (-5.1620774, 7.8217235, 49.113884), (-5.112213, 10.395584, 48.63946), (-7.6507998, 10.395584, 48.30525), (-7.725425, 7.8217235, 48.776413), (-7.725425, 7.8217235, 48.776413), (-7.6507998, 10.395584, 48.30525), (-10.168416, 10.395584, 47.83864), (-10.267597, 7.8217235, 48.30525), (-10.267597, 7.8217235, 48.30525), (-10.168416, 10.395584, 47.83864), (-12.658161, 10.395584, 47.240902), (-12.781628, 7.8217235, 47.701683), (-12.781628, 7.8217235, 47.701683), (-12.658161, 10.395584, 47.240902), (-15.113212, 10.395584, 46.513683), (-15.260624, 7.8217235, 46.967373), (-15.260624, 7.8217235, 46.967373), (-15.113212, 10.395584, 46.513683), (-17.526838, 10.395584, 45.658974), (-17.697792, 7.8217235, 46.104324), (-17.697792, 7.8217235, 46.104324), (-17.526838, 10.395584, 45.658974), (-19.892424, 10.395584, 44.679115), (-20.086452, 7.8217235, 45.11491), (-20.086452, 7.8217235, 45.11491), (-19.892424, 10.395584, 44.679115), (-22.203485, 10.395584, 43.576794), (-22.420055, 7.8217235, 44.00184), (-22.420055, 7.8217235, 44.00184), (-22.203485, 10.395584, 43.576794), (-24.45369, 10.395584, 42.355034), (-24.69221, 7.8217235, 42.768158), (-24.69221, 7.8217235, 42.768158), (-24.45369, 10.395584, 42.355034), (-26.636868, 10.395584, 41.01718), (-26.89668, 7.8217235, 41.417255), (-26.89668, 7.8217235, 41.417255), (-26.636868, 10.395584, 41.01718), (-28.747036, 10.395584, 39.566902), (-29.027431, 7.8217235, 39.95283), (-29.027431, 7.8217235, 39.95283), (-28.747036, 10.395584, 39.566902), (-30.778412, 10.395584, 38.00817), (-31.07862, 7.8217235, 38.3789), (-31.07862, 7.8217235, 38.3789), (-30.778412, 10.395584, 38.00817), (-32.725426, 10.395584, 36.34527), (-33.044624, 7.8217235, 36.699776), (-33.044624, 7.8217235, 36.699776), (-32.725426, 10.395584, 36.34527), (-34.58274, 10.395584, 34.58274), (-34.920055, 7.8217235, 34.920055), (-34.920055, 7.8217235, 34.920055), (-34.58274, 10.395584, 34.58274), (-36.34527, 10.395584, 32.725426), (-36.699776, 7.8217235, 33.044624), (-36.699776, 7.8217235, 33.044624), (-36.34527, 10.395584, 32.725426), (-38.00817, 10.395584, 30.778412), (-38.3789, 7.8217235, 31.07862), (-38.3789, 7.8217235, 31.07862), (-38.00817, 10.395584, 30.778412), (-39.566902, 10.395584, 28.747036), (-39.95283, 7.8217235, 29.027431), (-39.95283, 7.8217235, 29.027431), (-39.566902, 10.395584, 28.747036), (-41.01718, 10.395584, 26.636868), (-41.417255, 7.8217235, 26.89668), (-41.417255, 7.8217235, 26.89668), (-41.01718, 10.395584, 26.636868), (-42.355034, 10.395584, 24.45369), (-42.768158, 7.8217235, 24.69221), (-42.768158, 7.8217235, 24.69221), (-42.355034, 10.395584, 24.45369), (-43.576794, 10.395584, 22.203485), (-44.00184, 7.8217235, 22.420055), (-44.00184, 7.8217235, 22.420055), (-43.576794, 10.395584, 22.203485), (-44.679115, 10.395584, 19.892424), (-45.11491, 7.8217235, 20.086452), (-45.11491, 7.8217235, 20.086452), (-44.679115, 10.395584, 19.892424), (-45.658974, 10.395584, 17.526838), (-46.104324, 7.8217235, 17.697792), (-46.104324, 7.8217235, 17.697792), (-45.658974, 10.395584, 17.526838), (-46.513683, 10.395584, 15.113212), (-46.967373, 7.8217235, 15.260624), (-46.967373, 7.8217235, 15.260624), (-46.513683, 10.395584, 15.113212), (-47.240902, 10.395584, 12.658161), (-47.701683, 7.8217235, 12.781628), (-47.701683, 7.8217235, 12.781628), (-47.240902, 10.395584, 12.658161), (-47.83864, 10.395584, 10.168416), (-48.30525, 7.8217235, 10.267597), (-48.30525, 7.8217235, 10.267597), (-47.83864, 10.395584, 10.168416), (-48.30525, 10.395584, 7.6507998), (-48.776413, 7.8217235, 7.725425), (-48.776413, 7.8217235, 7.725425), (-48.30525, 10.395584, 7.6507998), (-48.63946, 10.395584, 5.112213), (-49.113884, 7.8217235, 5.1620774), (-49.113884, 7.8217235, 5.1620774), (-48.63946, 10.395584, 5.112213), (-48.840355, 10.395584, 2.5596144), (-49.31674, 7.8217235, 2.5845807), (-49.31674, 7.8217235, 2.5845807), (-48.840355, 10.395584, 2.5596144), (-48.90738, 10.395584, 5.9894267e-15), (-49.38442, 7.8217235, 6.047847e-15), (-49.38442, 7.8217235, 6.047847e-15), (-48.90738, 10.395584, 5.9894267e-15), (-48.840355, 10.395584, -2.5596144), (-49.31674, 7.8217235, -2.5845807), (-49.31674, 7.8217235, -2.5845807), (-48.840355, 10.395584, -2.5596144), (-48.63946, 10.395584, -5.112213), (-49.113884, 7.8217235, -5.1620774), (-49.113884, 7.8217235, -5.1620774), (-48.63946, 10.395584, -5.112213), (-48.30525, 10.395584, -7.6507998), (-48.776413, 7.8217235, -7.725425), (-48.776413, 7.8217235, -7.725425), (-48.30525, 10.395584, -7.6507998), (-47.83864, 10.395584, -10.168416), (-48.30525, 7.8217235, -10.267597), (-48.30525, 7.8217235, -10.267597), (-47.83864, 10.395584, -10.168416), (-47.240902, 10.395584, -12.658161), (-47.701683, 7.8217235, -12.781628), (-47.701683, 7.8217235, -12.781628), (-47.240902, 10.395584, -12.658161), (-46.513683, 10.395584, -15.113212), (-46.967373, 7.8217235, -15.260624), (-46.967373, 7.8217235, -15.260624), (-46.513683, 10.395584, -15.113212), (-45.658974, 10.395584, -17.526838), (-46.104324, 7.8217235, -17.697792), (-46.104324, 7.8217235, -17.697792), (-45.658974, 10.395584, -17.526838), (-44.679115, 10.395584, -19.892424), (-45.11491, 7.8217235, -20.086452), (-45.11491, 7.8217235, -20.086452), (-44.679115, 10.395584, -19.892424), (-43.576794, 10.395584, -22.203485), (-44.00184, 7.8217235, -22.420055), (-44.00184, 7.8217235, -22.420055), (-43.576794, 10.395584, -22.203485), (-42.355034, 10.395584, -24.45369), (-42.768158, 7.8217235, -24.69221), (-42.768158, 7.8217235, -24.69221), (-42.355034, 10.395584, -24.45369), (-41.01718, 10.395584, -26.636868), (-41.417255, 7.8217235, -26.89668), (-41.417255, 7.8217235, -26.89668), (-41.01718, 10.395584, -26.636868), (-39.566902, 10.395584, -28.747036), (-39.95283, 7.8217235, -29.027431), (-39.95283, 7.8217235, -29.027431), (-39.566902, 10.395584, -28.747036), (-38.00817, 10.395584, -30.778412), (-38.3789, 7.8217235, -31.07862), (-38.3789, 7.8217235, -31.07862), (-38.00817, 10.395584, -30.778412), (-36.34527, 10.395584, -32.725426), (-36.699776, 7.8217235, -33.044624), (-36.699776, 7.8217235, -33.044624), (-36.34527, 10.395584, -32.725426), (-34.58274, 10.395584, -34.58274), (-34.920055, 7.8217235, -34.920055), (-34.920055, 7.8217235, -34.920055), (-34.58274, 10.395584, -34.58274), (-32.725426, 10.395584, -36.34527), (-33.044624, 7.8217235, -36.699776), (-33.044624, 7.8217235, -36.699776), (-32.725426, 10.395584, -36.34527), (-30.778412, 10.395584, -38.00817), (-31.07862, 7.8217235, -38.3789), (-31.07862, 7.8217235, -38.3789), (-30.778412, 10.395584, -38.00817), (-28.747036, 10.395584, -39.566902), (-29.027431, 7.8217235, -39.95283), (-29.027431, 7.8217235, -39.95283), (-28.747036, 10.395584, -39.566902), (-26.636868, 10.395584, -41.01718), (-26.89668, 7.8217235, -41.417255), (-26.89668, 7.8217235, -41.417255), (-26.636868, 10.395584, -41.01718), (-24.45369, 10.395584, -42.355034), (-24.69221, 7.8217235, -42.768158), (-24.69221, 7.8217235, -42.768158), (-24.45369, 10.395584, -42.355034), (-22.203485, 10.395584, -43.576794), (-22.420055, 7.8217235, -44.00184), (-22.420055, 7.8217235, -44.00184), (-22.203485, 10.395584, -43.576794), (-19.892424, 10.395584, -44.679115), (-20.086452, 7.8217235, -45.11491), (-20.086452, 7.8217235, -45.11491), (-19.892424, 10.395584, -44.679115), (-17.526838, 10.395584, -45.658974), (-17.697792, 7.8217235, -46.104324), (-17.697792, 7.8217235, -46.104324), (-17.526838, 10.395584, -45.658974), (-15.113212, 10.395584, -46.513683), (-15.260624, 7.8217235, -46.967373), (-15.260624, 7.8217235, -46.967373), (-15.113212, 10.395584, -46.513683), (-12.658161, 10.395584, -47.240902), (-12.781628, 7.8217235, -47.701683), (-12.781628, 7.8217235, -47.701683), (-12.658161, 10.395584, -47.240902), (-10.168416, 10.395584, -47.83864), (-10.267597, 7.8217235, -48.30525), (-10.267597, 7.8217235, -48.30525), (-10.168416, 10.395584, -47.83864), (-7.6507998, 10.395584, -48.30525), (-7.725425, 7.8217235, -48.776413), (-7.725425, 7.8217235, -48.776413), (-7.6507998, 10.395584, -48.30525), (-5.112213, 10.395584, -48.63946), (-5.1620774, 7.8217235, -49.113884), (-5.1620774, 7.8217235, -49.113884), (-5.112213, 10.395584, -48.63946), (-2.5596144, 10.395584, -48.840355), (-2.5845807, 7.8217235, -49.31674), (-2.5845807, 7.8217235, -49.31674), (-2.5596144, 10.395584, -48.840355), (-8.98414e-15, 10.395584, -48.90738), (-9.07177e-15, 7.8217235, -49.38442), (-9.07177e-15, 7.8217235, -49.38442), (-8.98414e-15, 10.395584, -48.90738), (2.5596144, 10.395584, -48.840355), (2.5845807, 7.8217235, -49.31674), (2.5845807, 7.8217235, -49.31674), (2.5596144, 10.395584, -48.840355), (5.112213, 10.395584, -48.63946), (5.1620774, 7.8217235, -49.113884), (5.1620774, 7.8217235, -49.113884), (5.112213, 10.395584, -48.63946), (7.6507998, 10.395584, -48.30525), (7.725425, 7.8217235, -48.776413), (7.725425, 7.8217235, -48.776413), (7.6507998, 10.395584, -48.30525), (10.168416, 10.395584, -47.83864), (10.267597, 7.8217235, -48.30525), (10.267597, 7.8217235, -48.30525), (10.168416, 10.395584, -47.83864), (12.658161, 10.395584, -47.240902), (12.781628, 7.8217235, -47.701683), (12.781628, 7.8217235, -47.701683), (12.658161, 10.395584, -47.240902), (15.113212, 10.395584, -46.513683), (15.260624, 7.8217235, -46.967373), (15.260624, 7.8217235, -46.967373), (15.113212, 10.395584, -46.513683), (17.526838, 10.395584, -45.658974), (17.697792, 7.8217235, -46.104324), (17.697792, 7.8217235, -46.104324), (17.526838, 10.395584, -45.658974), (19.892424, 10.395584, -44.679115), (20.086452, 7.8217235, -45.11491), (20.086452, 7.8217235, -45.11491), (19.892424, 10.395584, -44.679115), (22.203485, 10.395584, -43.576794), (22.420055, 7.8217235, -44.00184), (22.420055, 7.8217235, -44.00184), (22.203485, 10.395584, -43.576794), (24.45369, 10.395584, -42.355034), (24.69221, 7.8217235, -42.768158), (24.69221, 7.8217235, -42.768158), (24.45369, 10.395584, -42.355034), (26.636868, 10.395584, -41.01718), (26.89668, 7.8217235, -41.417255), (26.89668, 7.8217235, -41.417255), (26.636868, 10.395584, -41.01718), (28.747036, 10.395584, -39.566902), (29.027431, 7.8217235, -39.95283), (29.027431, 7.8217235, -39.95283), (28.747036, 10.395584, -39.566902), (30.778412, 10.395584, -38.00817), (31.07862, 7.8217235, -38.3789), (31.07862, 7.8217235, -38.3789), (30.778412, 10.395584, -38.00817), (32.725426, 10.395584, -36.34527), (33.044624, 7.8217235, -36.699776), (33.044624, 7.8217235, -36.699776), (32.725426, 10.395584, -36.34527), (34.58274, 10.395584, -34.58274), (34.920055, 7.8217235, -34.920055), (34.920055, 7.8217235, -34.920055), (34.58274, 10.395584, -34.58274), (36.34527, 10.395584, -32.725426), (36.699776, 7.8217235, -33.044624), (36.699776, 7.8217235, -33.044624), (36.34527, 10.395584, -32.725426), (38.00817, 10.395584, -30.778412), (38.3789, 7.8217235, -31.07862), (38.3789, 7.8217235, -31.07862), (38.00817, 10.395584, -30.778412), (39.566902, 10.395584, -28.747036), (39.95283, 7.8217235, -29.027431), (39.95283, 7.8217235, -29.027431), (39.566902, 10.395584, -28.747036), (41.01718, 10.395584, -26.636868), (41.417255, 7.8217235, -26.89668), (41.417255, 7.8217235, -26.89668), (41.01718, 10.395584, -26.636868), (42.355034, 10.395584, -24.45369), (42.768158, 7.8217235, -24.69221), (42.768158, 7.8217235, -24.69221), (42.355034, 10.395584, -24.45369), (43.576794, 10.395584, -22.203485), (44.00184, 7.8217235, -22.420055), (44.00184, 7.8217235, -22.420055), (43.576794, 10.395584, -22.203485), (44.679115, 10.395584, -19.892424), (45.11491, 7.8217235, -20.086452), (45.11491, 7.8217235, -20.086452), (44.679115, 10.395584, -19.892424), (45.658974, 10.395584, -17.526838), (46.104324, 7.8217235, -17.697792), (46.104324, 7.8217235, -17.697792), (45.658974, 10.395584, -17.526838), (46.513683, 10.395584, -15.113212), (46.967373, 7.8217235, -15.260624), (46.967373, 7.8217235, -15.260624), (46.513683, 10.395584, -15.113212), (47.240902, 10.395584, -12.658161), (47.701683, 7.8217235, -12.781628), (47.701683, 7.8217235, -12.781628), (47.240902, 10.395584, -12.658161), (47.83864, 10.395584, -10.168416), (48.30525, 7.8217235, -10.267597), (48.30525, 7.8217235, -10.267597), (47.83864, 10.395584, -10.168416), (48.30525, 10.395584, -7.6507998), (48.776413, 7.8217235, -7.725425), (48.776413, 7.8217235, -7.725425), (48.30525, 10.395584, -7.6507998), (48.63946, 10.395584, -5.112213), (49.113884, 7.8217235, -5.1620774), (49.113884, 7.8217235, -5.1620774), (48.63946, 10.395584, -5.112213), (48.840355, 10.395584, -2.5596144), (49.31674, 7.8217235, -2.5845807), (49.31674, 7.8217235, -2.5845807), (48.840355, 10.395584, -2.5596144), (48.90738, 10.395584, 0), (49.38442, 7.8217235, 0), (48.90738, 10.395584, 0), (48.29629, 12.940952, 0), (48.230103, 12.940952, 2.5276325), (48.840355, 10.395584, 2.5596144), (48.840355, 10.395584, 2.5596144), (48.230103, 12.940952, 2.5276325), (48.03172, 12.940952, 5.048337), (48.63946, 10.395584, 5.112213), (48.63946, 10.395584, 5.112213), (48.03172, 12.940952, 5.048337), (47.701683, 12.940952, 7.5552044), (48.30525, 10.395584, 7.6507998), (48.30525, 10.395584, 7.6507998), (47.701683, 12.940952, 7.5552044), (47.240902, 12.940952, 10.041364), (47.83864, 10.395584, 10.168416), (47.83864, 10.395584, 10.168416), (47.240902, 12.940952, 10.041364), (46.650635, 12.940952, 12.5), (47.240902, 10.395584, 12.658161), (47.240902, 10.395584, 12.658161), (46.650635, 12.940952, 12.5), (45.932503, 12.940952, 14.924375), (46.513683, 10.395584, 15.113212), (46.513683, 10.395584, 15.113212), (45.932503, 12.940952, 14.924375), (45.08847, 12.940952, 17.307842), (45.658974, 10.395584, 17.526838), (45.658974, 10.395584, 17.526838), (45.08847, 12.940952, 17.307842), (44.120857, 12.940952, 19.643871), (44.679115, 10.395584, 19.892424), (44.679115, 10.395584, 19.892424), (44.120857, 12.940952, 19.643871), (43.03231, 12.940952, 21.926058), (43.576794, 10.395584, 22.203485), (43.576794, 10.395584, 22.203485), (43.03231, 12.940952, 21.926058), (41.825813, 12.940952, 24.148146), (42.355034, 10.395584, 24.45369), (42.355034, 10.395584, 24.45369), (41.825813, 12.940952, 24.148146), (40.504677, 12.940952, 26.304045), (41.01718, 10.395584, 26.636868), (41.01718, 10.395584, 26.636868), (40.504677, 12.940952, 26.304045), (39.07252, 12.940952, 28.387848), (39.566902, 10.395584, 28.747036), (39.566902, 10.395584, 28.747036), (39.07252, 12.940952, 28.387848), (37.533268, 12.940952, 30.39384), (38.00817, 10.395584, 30.778412), (38.00817, 10.395584, 30.778412), (37.533268, 12.940952, 30.39384), (35.89114, 12.940952, 32.31653), (36.34527, 10.395584, 32.725426), (36.34527, 10.395584, 32.725426), (35.89114, 12.940952, 32.31653), (34.150635, 12.940952, 34.150635), (34.58274, 10.395584, 34.58274), (34.58274, 10.395584, 34.58274), (34.150635, 12.940952, 34.150635), (32.31653, 12.940952, 35.89114), (32.725426, 10.395584, 36.34527), (32.725426, 10.395584, 36.34527), (32.31653, 12.940952, 35.89114), (30.39384, 12.940952, 37.533268), (30.778412, 10.395584, 38.00817), (30.778412, 10.395584, 38.00817), (30.39384, 12.940952, 37.533268), (28.387848, 12.940952, 39.07252), (28.747036, 10.395584, 39.566902), (28.747036, 10.395584, 39.566902), (28.387848, 12.940952, 39.07252), (26.304045, 12.940952, 40.504677), (26.636868, 10.395584, 41.01718), (26.636868, 10.395584, 41.01718), (26.304045, 12.940952, 40.504677), (24.148146, 12.940952, 41.825813), (24.45369, 10.395584, 42.355034), (24.45369, 10.395584, 42.355034), (24.148146, 12.940952, 41.825813), (21.926058, 12.940952, 43.03231), (22.203485, 10.395584, 43.576794), (22.203485, 10.395584, 43.576794), (21.926058, 12.940952, 43.03231), (19.643871, 12.940952, 44.120857), (19.892424, 10.395584, 44.679115), (19.892424, 10.395584, 44.679115), (19.643871, 12.940952, 44.120857), (17.307842, 12.940952, 45.08847), (17.526838, 10.395584, 45.658974), (17.526838, 10.395584, 45.658974), (17.307842, 12.940952, 45.08847), (14.924375, 12.940952, 45.932503), (15.113212, 10.395584, 46.513683), (15.113212, 10.395584, 46.513683), (14.924375, 12.940952, 45.932503), (12.5, 12.940952, 46.650635), (12.658161, 10.395584, 47.240902), (12.658161, 10.395584, 47.240902), (12.5, 12.940952, 46.650635), (10.041364, 12.940952, 47.240902), (10.168416, 10.395584, 47.83864), (10.168416, 10.395584, 47.83864), (10.041364, 12.940952, 47.240902), (7.5552044, 12.940952, 47.701683), (7.6507998, 10.395584, 48.30525), (7.6507998, 10.395584, 48.30525), (7.5552044, 12.940952, 47.701683), (5.048337, 12.940952, 48.03172), (5.112213, 10.395584, 48.63946), (5.112213, 10.395584, 48.63946), (5.048337, 12.940952, 48.03172), (2.5276325, 12.940952, 48.230103), (2.5596144, 10.395584, 48.840355), (2.5596144, 10.395584, 48.840355), (2.5276325, 12.940952, 48.230103), (2.9572948e-15, 12.940952, 48.29629), (2.9947134e-15, 10.395584, 48.90738), (2.9947134e-15, 10.395584, 48.90738), (2.9572948e-15, 12.940952, 48.29629), (-2.5276325, 12.940952, 48.230103), (-2.5596144, 10.395584, 48.840355), (-2.5596144, 10.395584, 48.840355), (-2.5276325, 12.940952, 48.230103), (-5.048337, 12.940952, 48.03172), (-5.112213, 10.395584, 48.63946), (-5.112213, 10.395584, 48.63946), (-5.048337, 12.940952, 48.03172), (-7.5552044, 12.940952, 47.701683), (-7.6507998, 10.395584, 48.30525), (-7.6507998, 10.395584, 48.30525), (-7.5552044, 12.940952, 47.701683), (-10.041364, 12.940952, 47.240902), (-10.168416, 10.395584, 47.83864), (-10.168416, 10.395584, 47.83864), (-10.041364, 12.940952, 47.240902), (-12.5, 12.940952, 46.650635), (-12.658161, 10.395584, 47.240902), (-12.658161, 10.395584, 47.240902), (-12.5, 12.940952, 46.650635), (-14.924375, 12.940952, 45.932503), (-15.113212, 10.395584, 46.513683), (-15.113212, 10.395584, 46.513683), (-14.924375, 12.940952, 45.932503), (-17.307842, 12.940952, 45.08847), (-17.526838, 10.395584, 45.658974), (-17.526838, 10.395584, 45.658974), (-17.307842, 12.940952, 45.08847), (-19.643871, 12.940952, 44.120857), (-19.892424, 10.395584, 44.679115), (-19.892424, 10.395584, 44.679115), (-19.643871, 12.940952, 44.120857), (-21.926058, 12.940952, 43.03231), (-22.203485, 10.395584, 43.576794), (-22.203485, 10.395584, 43.576794), (-21.926058, 12.940952, 43.03231), (-24.148146, 12.940952, 41.825813), (-24.45369, 10.395584, 42.355034), (-24.45369, 10.395584, 42.355034), (-24.148146, 12.940952, 41.825813), (-26.304045, 12.940952, 40.504677), (-26.636868, 10.395584, 41.01718), (-26.636868, 10.395584, 41.01718), (-26.304045, 12.940952, 40.504677), (-28.387848, 12.940952, 39.07252), (-28.747036, 10.395584, 39.566902), (-28.747036, 10.395584, 39.566902), (-28.387848, 12.940952, 39.07252), (-30.39384, 12.940952, 37.533268), (-30.778412, 10.395584, 38.00817), (-30.778412, 10.395584, 38.00817), (-30.39384, 12.940952, 37.533268), (-32.31653, 12.940952, 35.89114), (-32.725426, 10.395584, 36.34527), (-32.725426, 10.395584, 36.34527), (-32.31653, 12.940952, 35.89114), (-34.150635, 12.940952, 34.150635), (-34.58274, 10.395584, 34.58274), (-34.58274, 10.395584, 34.58274), (-34.150635, 12.940952, 34.150635), (-35.89114, 12.940952, 32.31653), (-36.34527, 10.395584, 32.725426), (-36.34527, 10.395584, 32.725426), (-35.89114, 12.940952, 32.31653), (-37.533268, 12.940952, 30.39384), (-38.00817, 10.395584, 30.778412), (-38.00817, 10.395584, 30.778412), (-37.533268, 12.940952, 30.39384), (-39.07252, 12.940952, 28.387848), (-39.566902, 10.395584, 28.747036), (-39.566902, 10.395584, 28.747036), (-39.07252, 12.940952, 28.387848), (-40.504677, 12.940952, 26.304045), (-41.01718, 10.395584, 26.636868), (-41.01718, 10.395584, 26.636868), (-40.504677, 12.940952, 26.304045), (-41.825813, 12.940952, 24.148146), (-42.355034, 10.395584, 24.45369), (-42.355034, 10.395584, 24.45369), (-41.825813, 12.940952, 24.148146), (-43.03231, 12.940952, 21.926058), (-43.576794, 10.395584, 22.203485), (-43.576794, 10.395584, 22.203485), (-43.03231, 12.940952, 21.926058), (-44.120857, 12.940952, 19.643871), (-44.679115, 10.395584, 19.892424), (-44.679115, 10.395584, 19.892424), (-44.120857, 12.940952, 19.643871), (-45.08847, 12.940952, 17.307842), (-45.658974, 10.395584, 17.526838), (-45.658974, 10.395584, 17.526838), (-45.08847, 12.940952, 17.307842), (-45.932503, 12.940952, 14.924375), (-46.513683, 10.395584, 15.113212), (-46.513683, 10.395584, 15.113212), (-45.932503, 12.940952, 14.924375), (-46.650635, 12.940952, 12.5), (-47.240902, 10.395584, 12.658161), (-47.240902, 10.395584, 12.658161), (-46.650635, 12.940952, 12.5), (-47.240902, 12.940952, 10.041364), (-47.83864, 10.395584, 10.168416), (-47.83864, 10.395584, 10.168416), (-47.240902, 12.940952, 10.041364), (-47.701683, 12.940952, 7.5552044), (-48.30525, 10.395584, 7.6507998), (-48.30525, 10.395584, 7.6507998), (-47.701683, 12.940952, 7.5552044), (-48.03172, 12.940952, 5.048337), (-48.63946, 10.395584, 5.112213), (-48.63946, 10.395584, 5.112213), (-48.03172, 12.940952, 5.048337), (-48.230103, 12.940952, 2.5276325), (-48.840355, 10.395584, 2.5596144), (-48.840355, 10.395584, 2.5596144), (-48.230103, 12.940952, 2.5276325), (-48.29629, 12.940952, 5.9145897e-15), (-48.90738, 10.395584, 5.9894267e-15), (-48.90738, 10.395584, 5.9894267e-15), (-48.29629, 12.940952, 5.9145897e-15), (-48.230103, 12.940952, -2.5276325), (-48.840355, 10.395584, -2.5596144), (-48.840355, 10.395584, -2.5596144), (-48.230103, 12.940952, -2.5276325), (-48.03172, 12.940952, -5.048337), (-48.63946, 10.395584, -5.112213), (-48.63946, 10.395584, -5.112213), (-48.03172, 12.940952, -5.048337), (-47.701683, 12.940952, -7.5552044), (-48.30525, 10.395584, -7.6507998), (-48.30525, 10.395584, -7.6507998), (-47.701683, 12.940952, -7.5552044), (-47.240902, 12.940952, -10.041364), (-47.83864, 10.395584, -10.168416), (-47.83864, 10.395584, -10.168416), (-47.240902, 12.940952, -10.041364), (-46.650635, 12.940952, -12.5), (-47.240902, 10.395584, -12.658161), (-47.240902, 10.395584, -12.658161), (-46.650635, 12.940952, -12.5), (-45.932503, 12.940952, -14.924375), (-46.513683, 10.395584, -15.113212), (-46.513683, 10.395584, -15.113212), (-45.932503, 12.940952, -14.924375), (-45.08847, 12.940952, -17.307842), (-45.658974, 10.395584, -17.526838), (-45.658974, 10.395584, -17.526838), (-45.08847, 12.940952, -17.307842), (-44.120857, 12.940952, -19.643871), (-44.679115, 10.395584, -19.892424), (-44.679115, 10.395584, -19.892424), (-44.120857, 12.940952, -19.643871), (-43.03231, 12.940952, -21.926058), (-43.576794, 10.395584, -22.203485), (-43.576794, 10.395584, -22.203485), (-43.03231, 12.940952, -21.926058), (-41.825813, 12.940952, -24.148146), (-42.355034, 10.395584, -24.45369), (-42.355034, 10.395584, -24.45369), (-41.825813, 12.940952, -24.148146), (-40.504677, 12.940952, -26.304045), (-41.01718, 10.395584, -26.636868), (-41.01718, 10.395584, -26.636868), (-40.504677, 12.940952, -26.304045), (-39.07252, 12.940952, -28.387848), (-39.566902, 10.395584, -28.747036), (-39.566902, 10.395584, -28.747036), (-39.07252, 12.940952, -28.387848), (-37.533268, 12.940952, -30.39384), (-38.00817, 10.395584, -30.778412), (-38.00817, 10.395584, -30.778412), (-37.533268, 12.940952, -30.39384), (-35.89114, 12.940952, -32.31653), (-36.34527, 10.395584, -32.725426), (-36.34527, 10.395584, -32.725426), (-35.89114, 12.940952, -32.31653), (-34.150635, 12.940952, -34.150635), (-34.58274, 10.395584, -34.58274), (-34.58274, 10.395584, -34.58274), (-34.150635, 12.940952, -34.150635), (-32.31653, 12.940952, -35.89114), (-32.725426, 10.395584, -36.34527), (-32.725426, 10.395584, -36.34527), (-32.31653, 12.940952, -35.89114), (-30.39384, 12.940952, -37.533268), (-30.778412, 10.395584, -38.00817), (-30.778412, 10.395584, -38.00817), (-30.39384, 12.940952, -37.533268), (-28.387848, 12.940952, -39.07252), (-28.747036, 10.395584, -39.566902), (-28.747036, 10.395584, -39.566902), (-28.387848, 12.940952, -39.07252), (-26.304045, 12.940952, -40.504677), (-26.636868, 10.395584, -41.01718), (-26.636868, 10.395584, -41.01718), (-26.304045, 12.940952, -40.504677), (-24.148146, 12.940952, -41.825813), (-24.45369, 10.395584, -42.355034), (-24.45369, 10.395584, -42.355034), (-24.148146, 12.940952, -41.825813), (-21.926058, 12.940952, -43.03231), (-22.203485, 10.395584, -43.576794), (-22.203485, 10.395584, -43.576794), (-21.926058, 12.940952, -43.03231), (-19.643871, 12.940952, -44.120857), (-19.892424, 10.395584, -44.679115), (-19.892424, 10.395584, -44.679115), (-19.643871, 12.940952, -44.120857), (-17.307842, 12.940952, -45.08847), (-17.526838, 10.395584, -45.658974), (-17.526838, 10.395584, -45.658974), (-17.307842, 12.940952, -45.08847), (-14.924375, 12.940952, -45.932503), (-15.113212, 10.395584, -46.513683), (-15.113212, 10.395584, -46.513683), (-14.924375, 12.940952, -45.932503), (-12.5, 12.940952, -46.650635), (-12.658161, 10.395584, -47.240902), (-12.658161, 10.395584, -47.240902), (-12.5, 12.940952, -46.650635), (-10.041364, 12.940952, -47.240902), (-10.168416, 10.395584, -47.83864), (-10.168416, 10.395584, -47.83864), (-10.041364, 12.940952, -47.240902), (-7.5552044, 12.940952, -47.701683), (-7.6507998, 10.395584, -48.30525), (-7.6507998, 10.395584, -48.30525), (-7.5552044, 12.940952, -47.701683), (-5.048337, 12.940952, -48.03172), (-5.112213, 10.395584, -48.63946), (-5.112213, 10.395584, -48.63946), (-5.048337, 12.940952, -48.03172), (-2.5276325, 12.940952, -48.230103), (-2.5596144, 10.395584, -48.840355), (-2.5596144, 10.395584, -48.840355), (-2.5276325, 12.940952, -48.230103), (-8.871885e-15, 12.940952, -48.29629), (-8.98414e-15, 10.395584, -48.90738), (-8.98414e-15, 10.395584, -48.90738), (-8.871885e-15, 12.940952, -48.29629), (2.5276325, 12.940952, -48.230103), (2.5596144, 10.395584, -48.840355), (2.5596144, 10.395584, -48.840355), (2.5276325, 12.940952, -48.230103), (5.048337, 12.940952, -48.03172), (5.112213, 10.395584, -48.63946), (5.112213, 10.395584, -48.63946), (5.048337, 12.940952, -48.03172), (7.5552044, 12.940952, -47.701683), (7.6507998, 10.395584, -48.30525), (7.6507998, 10.395584, -48.30525), (7.5552044, 12.940952, -47.701683), (10.041364, 12.940952, -47.240902), (10.168416, 10.395584, -47.83864), (10.168416, 10.395584, -47.83864), (10.041364, 12.940952, -47.240902), (12.5, 12.940952, -46.650635), (12.658161, 10.395584, -47.240902), (12.658161, 10.395584, -47.240902), (12.5, 12.940952, -46.650635), (14.924375, 12.940952, -45.932503), (15.113212, 10.395584, -46.513683), (15.113212, 10.395584, -46.513683), (14.924375, 12.940952, -45.932503), (17.307842, 12.940952, -45.08847), (17.526838, 10.395584, -45.658974), (17.526838, 10.395584, -45.658974), (17.307842, 12.940952, -45.08847), (19.643871, 12.940952, -44.120857), (19.892424, 10.395584, -44.679115), (19.892424, 10.395584, -44.679115), (19.643871, 12.940952, -44.120857), (21.926058, 12.940952, -43.03231), (22.203485, 10.395584, -43.576794), (22.203485, 10.395584, -43.576794), (21.926058, 12.940952, -43.03231), (24.148146, 12.940952, -41.825813), (24.45369, 10.395584, -42.355034), (24.45369, 10.395584, -42.355034), (24.148146, 12.940952, -41.825813), (26.304045, 12.940952, -40.504677), (26.636868, 10.395584, -41.01718), (26.636868, 10.395584, -41.01718), (26.304045, 12.940952, -40.504677), (28.387848, 12.940952, -39.07252), (28.747036, 10.395584, -39.566902), (28.747036, 10.395584, -39.566902), (28.387848, 12.940952, -39.07252), (30.39384, 12.940952, -37.533268), (30.778412, 10.395584, -38.00817), (30.778412, 10.395584, -38.00817), (30.39384, 12.940952, -37.533268), (32.31653, 12.940952, -35.89114), (32.725426, 10.395584, -36.34527), (32.725426, 10.395584, -36.34527), (32.31653, 12.940952, -35.89114), (34.150635, 12.940952, -34.150635), (34.58274, 10.395584, -34.58274), (34.58274, 10.395584, -34.58274), (34.150635, 12.940952, -34.150635), (35.89114, 12.940952, -32.31653), (36.34527, 10.395584, -32.725426), (36.34527, 10.395584, -32.725426), (35.89114, 12.940952, -32.31653), (37.533268, 12.940952, -30.39384), (38.00817, 10.395584, -30.778412), (38.00817, 10.395584, -30.778412), (37.533268, 12.940952, -30.39384), (39.07252, 12.940952, -28.387848), (39.566902, 10.395584, -28.747036), (39.566902, 10.395584, -28.747036), (39.07252, 12.940952, -28.387848), (40.504677, 12.940952, -26.304045), (41.01718, 10.395584, -26.636868), (41.01718, 10.395584, -26.636868), (40.504677, 12.940952, -26.304045), (41.825813, 12.940952, -24.148146), (42.355034, 10.395584, -24.45369), (42.355034, 10.395584, -24.45369), (41.825813, 12.940952, -24.148146), (43.03231, 12.940952, -21.926058), (43.576794, 10.395584, -22.203485), (43.576794, 10.395584, -22.203485), (43.03231, 12.940952, -21.926058), (44.120857, 12.940952, -19.643871), (44.679115, 10.395584, -19.892424), (44.679115, 10.395584, -19.892424), (44.120857, 12.940952, -19.643871), (45.08847, 12.940952, -17.307842), (45.658974, 10.395584, -17.526838), (45.658974, 10.395584, -17.526838), (45.08847, 12.940952, -17.307842), (45.932503, 12.940952, -14.924375), (46.513683, 10.395584, -15.113212), (46.513683, 10.395584, -15.113212), (45.932503, 12.940952, -14.924375), (46.650635, 12.940952, -12.5), (47.240902, 10.395584, -12.658161), (47.240902, 10.395584, -12.658161), (46.650635, 12.940952, -12.5), (47.240902, 12.940952, -10.041364), (47.83864, 10.395584, -10.168416), (47.83864, 10.395584, -10.168416), (47.240902, 12.940952, -10.041364), (47.701683, 12.940952, -7.5552044), (48.30525, 10.395584, -7.6507998), (48.30525, 10.395584, -7.6507998), (47.701683, 12.940952, -7.5552044), (48.03172, 12.940952, -5.048337), (48.63946, 10.395584, -5.112213), (48.63946, 10.395584, -5.112213), (48.03172, 12.940952, -5.048337), (48.230103, 12.940952, -2.5276325), (48.840355, 10.395584, -2.5596144), (48.840355, 10.395584, -2.5596144), (48.230103, 12.940952, -2.5276325), (48.29629, 12.940952, 0), (48.90738, 10.395584, 0), (48.29629, 12.940952, 0), (47.552826, 15.45085, 0), (47.487656, 15.45085, 2.4887226), (48.230103, 12.940952, 2.5276325), (48.230103, 12.940952, 2.5276325), (47.487656, 15.45085, 2.4887226), (47.292328, 15.45085, 4.970624), (48.03172, 12.940952, 5.048337), (48.03172, 12.940952, 5.048337), (47.292328, 15.45085, 4.970624), (46.967373, 15.45085, 7.438901), (47.701683, 12.940952, 7.5552044), (47.701683, 12.940952, 7.5552044), (46.967373, 15.45085, 7.438901), (46.513683, 15.45085, 9.886788), (47.240902, 12.940952, 10.041364), (47.240902, 12.940952, 10.041364), (46.513683, 15.45085, 9.886788), (45.932503, 15.45085, 12.307577), (46.650635, 12.940952, 12.5), (46.650635, 12.940952, 12.5), (45.932503, 15.45085, 12.307577), (45.225426, 15.45085, 14.694632), (45.932503, 12.940952, 14.924375), (45.932503, 12.940952, 14.924375), (45.225426, 15.45085, 14.694632), (44.394386, 15.45085, 17.041409), (45.08847, 12.940952, 17.307842), (45.08847, 12.940952, 17.307842), (44.394386, 15.45085, 17.041409), (43.44167, 15.45085, 19.341476), (44.120857, 12.940952, 19.643871), (44.120857, 12.940952, 19.643871), (43.44167, 15.45085, 19.341476), (42.369877, 15.45085, 21.588531), (43.03231, 12.940952, 21.926058), (43.03231, 12.940952, 21.926058), (42.369877, 15.45085, 21.588531), (41.181953, 15.45085, 23.776413), (41.825813, 12.940952, 24.148146), (41.825813, 12.940952, 24.148146), (41.181953, 15.45085, 23.776413), (39.881157, 15.45085, 25.899126), (40.504677, 12.940952, 26.304045), (40.504677, 12.940952, 26.304045), (39.881157, 15.45085, 25.899126), (38.471043, 15.45085, 27.95085), (39.07252, 12.940952, 28.387848), (39.07252, 12.940952, 28.387848), (38.471043, 15.45085, 27.95085), (36.955486, 15.45085, 29.925962), (37.533268, 12.940952, 30.39384), (37.533268, 12.940952, 30.39384), (36.955486, 15.45085, 29.925962), (35.33864, 15.45085, 31.819052), (35.89114, 12.940952, 32.31653), (35.89114, 12.940952, 32.31653), (35.33864, 15.45085, 31.819052), (33.624924, 15.45085, 33.624924), (34.150635, 12.940952, 34.150635), (34.150635, 12.940952, 34.150635), (33.624924, 15.45085, 33.624924), (31.819052, 15.45085, 35.33864), (32.31653, 12.940952, 35.89114), (32.31653, 12.940952, 35.89114), (31.819052, 15.45085, 35.33864), (29.925962, 15.45085, 36.955486), (30.39384, 12.940952, 37.533268), (30.39384, 12.940952, 37.533268), (29.925962, 15.45085, 36.955486), (27.95085, 15.45085, 38.471043), (28.387848, 12.940952, 39.07252), (28.387848, 12.940952, 39.07252), (27.95085, 15.45085, 38.471043), (25.899126, 15.45085, 39.881157), (26.304045, 12.940952, 40.504677), (26.304045, 12.940952, 40.504677), (25.899126, 15.45085, 39.881157), (23.776413, 15.45085, 41.181953), (24.148146, 12.940952, 41.825813), (24.148146, 12.940952, 41.825813), (23.776413, 15.45085, 41.181953), (21.588531, 15.45085, 42.369877), (21.926058, 12.940952, 43.03231), (21.926058, 12.940952, 43.03231), (21.588531, 15.45085, 42.369877), (19.341476, 15.45085, 43.44167), (19.643871, 12.940952, 44.120857), (19.643871, 12.940952, 44.120857), (19.341476, 15.45085, 43.44167), (17.041409, 15.45085, 44.394386), (17.307842, 12.940952, 45.08847), (17.307842, 12.940952, 45.08847), (17.041409, 15.45085, 44.394386), (14.694632, 15.45085, 45.225426), (14.924375, 12.940952, 45.932503), (14.924375, 12.940952, 45.932503), (14.694632, 15.45085, 45.225426), (12.307577, 15.45085, 45.932503), (12.5, 12.940952, 46.650635), (12.5, 12.940952, 46.650635), (12.307577, 15.45085, 45.932503), (9.886788, 15.45085, 46.513683), (10.041364, 12.940952, 47.240902), (10.041364, 12.940952, 47.240902), (9.886788, 15.45085, 46.513683), (7.438901, 15.45085, 46.967373), (7.5552044, 12.940952, 47.701683), (7.5552044, 12.940952, 47.701683), (7.438901, 15.45085, 46.967373), (4.970624, 15.45085, 47.292328), (5.048337, 12.940952, 48.03172), (5.048337, 12.940952, 48.03172), (4.970624, 15.45085, 47.292328), (2.4887226, 15.45085, 47.487656), (2.5276325, 12.940952, 48.230103), (2.5276325, 12.940952, 48.230103), (2.4887226, 15.45085, 47.487656), (2.9117708e-15, 15.45085, 47.552826), (2.9572948e-15, 12.940952, 48.29629), (2.9572948e-15, 12.940952, 48.29629), (2.9117708e-15, 15.45085, 47.552826), (-2.4887226, 15.45085, 47.487656), (-2.5276325, 12.940952, 48.230103), (-2.5276325, 12.940952, 48.230103), (-2.4887226, 15.45085, 47.487656), (-4.970624, 15.45085, 47.292328), (-5.048337, 12.940952, 48.03172), (-5.048337, 12.940952, 48.03172), (-4.970624, 15.45085, 47.292328), (-7.438901, 15.45085, 46.967373), (-7.5552044, 12.940952, 47.701683), (-7.5552044, 12.940952, 47.701683), (-7.438901, 15.45085, 46.967373), (-9.886788, 15.45085, 46.513683), (-10.041364, 12.940952, 47.240902), (-10.041364, 12.940952, 47.240902), (-9.886788, 15.45085, 46.513683), (-12.307577, 15.45085, 45.932503), (-12.5, 12.940952, 46.650635), (-12.5, 12.940952, 46.650635), (-12.307577, 15.45085, 45.932503), (-14.694632, 15.45085, 45.225426), (-14.924375, 12.940952, 45.932503), (-14.924375, 12.940952, 45.932503), (-14.694632, 15.45085, 45.225426), (-17.041409, 15.45085, 44.394386), (-17.307842, 12.940952, 45.08847), (-17.307842, 12.940952, 45.08847), (-17.041409, 15.45085, 44.394386), (-19.341476, 15.45085, 43.44167), (-19.643871, 12.940952, 44.120857), (-19.643871, 12.940952, 44.120857), (-19.341476, 15.45085, 43.44167), (-21.588531, 15.45085, 42.369877), (-21.926058, 12.940952, 43.03231), (-21.926058, 12.940952, 43.03231), (-21.588531, 15.45085, 42.369877), (-23.776413, 15.45085, 41.181953), (-24.148146, 12.940952, 41.825813), (-24.148146, 12.940952, 41.825813), (-23.776413, 15.45085, 41.181953), (-25.899126, 15.45085, 39.881157), (-26.304045, 12.940952, 40.504677), (-26.304045, 12.940952, 40.504677), (-25.899126, 15.45085, 39.881157), (-27.95085, 15.45085, 38.471043), (-28.387848, 12.940952, 39.07252), (-28.387848, 12.940952, 39.07252), (-27.95085, 15.45085, 38.471043), (-29.925962, 15.45085, 36.955486), (-30.39384, 12.940952, 37.533268), (-30.39384, 12.940952, 37.533268), (-29.925962, 15.45085, 36.955486), (-31.819052, 15.45085, 35.33864), (-32.31653, 12.940952, 35.89114), (-32.31653, 12.940952, 35.89114), (-31.819052, 15.45085, 35.33864), (-33.624924, 15.45085, 33.624924), (-34.150635, 12.940952, 34.150635), (-34.150635, 12.940952, 34.150635), (-33.624924, 15.45085, 33.624924), (-35.33864, 15.45085, 31.819052), (-35.89114, 12.940952, 32.31653), (-35.89114, 12.940952, 32.31653), (-35.33864, 15.45085, 31.819052), (-36.955486, 15.45085, 29.925962), (-37.533268, 12.940952, 30.39384), (-37.533268, 12.940952, 30.39384), (-36.955486, 15.45085, 29.925962), (-38.471043, 15.45085, 27.95085), (-39.07252, 12.940952, 28.387848), (-39.07252, 12.940952, 28.387848), (-38.471043, 15.45085, 27.95085), (-39.881157, 15.45085, 25.899126), (-40.504677, 12.940952, 26.304045), (-40.504677, 12.940952, 26.304045), (-39.881157, 15.45085, 25.899126), (-41.181953, 15.45085, 23.776413), (-41.825813, 12.940952, 24.148146), (-41.825813, 12.940952, 24.148146), (-41.181953, 15.45085, 23.776413), (-42.369877, 15.45085, 21.588531), (-43.03231, 12.940952, 21.926058), (-43.03231, 12.940952, 21.926058), (-42.369877, 15.45085, 21.588531), (-43.44167, 15.45085, 19.341476), (-44.120857, 12.940952, 19.643871), (-44.120857, 12.940952, 19.643871), (-43.44167, 15.45085, 19.341476), (-44.394386, 15.45085, 17.041409), (-45.08847, 12.940952, 17.307842), (-45.08847, 12.940952, 17.307842), (-44.394386, 15.45085, 17.041409), (-45.225426, 15.45085, 14.694632), (-45.932503, 12.940952, 14.924375), (-45.932503, 12.940952, 14.924375), (-45.225426, 15.45085, 14.694632), (-45.932503, 15.45085, 12.307577), (-46.650635, 12.940952, 12.5), (-46.650635, 12.940952, 12.5), (-45.932503, 15.45085, 12.307577), (-46.513683, 15.45085, 9.886788), (-47.240902, 12.940952, 10.041364), (-47.240902, 12.940952, 10.041364), (-46.513683, 15.45085, 9.886788), (-46.967373, 15.45085, 7.438901), (-47.701683, 12.940952, 7.5552044), (-47.701683, 12.940952, 7.5552044), (-46.967373, 15.45085, 7.438901), (-47.292328, 15.45085, 4.970624), (-48.03172, 12.940952, 5.048337), (-48.03172, 12.940952, 5.048337), (-47.292328, 15.45085, 4.970624), (-47.487656, 15.45085, 2.4887226), (-48.230103, 12.940952, 2.5276325), (-48.230103, 12.940952, 2.5276325), (-47.487656, 15.45085, 2.4887226), (-47.552826, 15.45085, 5.8235417e-15), (-48.29629, 12.940952, 5.9145897e-15), (-48.29629, 12.940952, 5.9145897e-15), (-47.552826, 15.45085, 5.8235417e-15), (-47.487656, 15.45085, -2.4887226), (-48.230103, 12.940952, -2.5276325), (-48.230103, 12.940952, -2.5276325), (-47.487656, 15.45085, -2.4887226), (-47.292328, 15.45085, -4.970624), (-48.03172, 12.940952, -5.048337), (-48.03172, 12.940952, -5.048337), (-47.292328, 15.45085, -4.970624), (-46.967373, 15.45085, -7.438901), (-47.701683, 12.940952, -7.5552044), (-47.701683, 12.940952, -7.5552044), (-46.967373, 15.45085, -7.438901), (-46.513683, 15.45085, -9.886788), (-47.240902, 12.940952, -10.041364), (-47.240902, 12.940952, -10.041364), (-46.513683, 15.45085, -9.886788), (-45.932503, 15.45085, -12.307577), (-46.650635, 12.940952, -12.5), (-46.650635, 12.940952, -12.5), (-45.932503, 15.45085, -12.307577), (-45.225426, 15.45085, -14.694632), (-45.932503, 12.940952, -14.924375), (-45.932503, 12.940952, -14.924375), (-45.225426, 15.45085, -14.694632), (-44.394386, 15.45085, -17.041409), (-45.08847, 12.940952, -17.307842), (-45.08847, 12.940952, -17.307842), (-44.394386, 15.45085, -17.041409), (-43.44167, 15.45085, -19.341476), (-44.120857, 12.940952, -19.643871), (-44.120857, 12.940952, -19.643871), (-43.44167, 15.45085, -19.341476), (-42.369877, 15.45085, -21.588531), (-43.03231, 12.940952, -21.926058), (-43.03231, 12.940952, -21.926058), (-42.369877, 15.45085, -21.588531), (-41.181953, 15.45085, -23.776413), (-41.825813, 12.940952, -24.148146), (-41.825813, 12.940952, -24.148146), (-41.181953, 15.45085, -23.776413), (-39.881157, 15.45085, -25.899126), (-40.504677, 12.940952, -26.304045), (-40.504677, 12.940952, -26.304045), (-39.881157, 15.45085, -25.899126), (-38.471043, 15.45085, -27.95085), (-39.07252, 12.940952, -28.387848), (-39.07252, 12.940952, -28.387848), (-38.471043, 15.45085, -27.95085), (-36.955486, 15.45085, -29.925962), (-37.533268, 12.940952, -30.39384), (-37.533268, 12.940952, -30.39384), (-36.955486, 15.45085, -29.925962), (-35.33864, 15.45085, -31.819052), (-35.89114, 12.940952, -32.31653), (-35.89114, 12.940952, -32.31653), (-35.33864, 15.45085, -31.819052), (-33.624924, 15.45085, -33.624924), (-34.150635, 12.940952, -34.150635), (-34.150635, 12.940952, -34.150635), (-33.624924, 15.45085, -33.624924), (-31.819052, 15.45085, -35.33864), (-32.31653, 12.940952, -35.89114), (-32.31653, 12.940952, -35.89114), (-31.819052, 15.45085, -35.33864), (-29.925962, 15.45085, -36.955486), (-30.39384, 12.940952, -37.533268), (-30.39384, 12.940952, -37.533268), (-29.925962, 15.45085, -36.955486), (-27.95085, 15.45085, -38.471043), (-28.387848, 12.940952, -39.07252), (-28.387848, 12.940952, -39.07252), (-27.95085, 15.45085, -38.471043), (-25.899126, 15.45085, -39.881157), (-26.304045, 12.940952, -40.504677), (-26.304045, 12.940952, -40.504677), (-25.899126, 15.45085, -39.881157), (-23.776413, 15.45085, -41.181953), (-24.148146, 12.940952, -41.825813), (-24.148146, 12.940952, -41.825813), (-23.776413, 15.45085, -41.181953), (-21.588531, 15.45085, -42.369877), (-21.926058, 12.940952, -43.03231), (-21.926058, 12.940952, -43.03231), (-21.588531, 15.45085, -42.369877), (-19.341476, 15.45085, -43.44167), (-19.643871, 12.940952, -44.120857), (-19.643871, 12.940952, -44.120857), (-19.341476, 15.45085, -43.44167), (-17.041409, 15.45085, -44.394386), (-17.307842, 12.940952, -45.08847), (-17.307842, 12.940952, -45.08847), (-17.041409, 15.45085, -44.394386), (-14.694632, 15.45085, -45.225426), (-14.924375, 12.940952, -45.932503), (-14.924375, 12.940952, -45.932503), (-14.694632, 15.45085, -45.225426), (-12.307577, 15.45085, -45.932503), (-12.5, 12.940952, -46.650635), (-12.5, 12.940952, -46.650635), (-12.307577, 15.45085, -45.932503), (-9.886788, 15.45085, -46.513683), (-10.041364, 12.940952, -47.240902), (-10.041364, 12.940952, -47.240902), (-9.886788, 15.45085, -46.513683), (-7.438901, 15.45085, -46.967373), (-7.5552044, 12.940952, -47.701683), (-7.5552044, 12.940952, -47.701683), (-7.438901, 15.45085, -46.967373), (-4.970624, 15.45085, -47.292328), (-5.048337, 12.940952, -48.03172), (-5.048337, 12.940952, -48.03172), (-4.970624, 15.45085, -47.292328), (-2.4887226, 15.45085, -47.487656), (-2.5276325, 12.940952, -48.230103), (-2.5276325, 12.940952, -48.230103), (-2.4887226, 15.45085, -47.487656), (-8.735313e-15, 15.45085, -47.552826), (-8.871885e-15, 12.940952, -48.29629), (-8.871885e-15, 12.940952, -48.29629), (-8.735313e-15, 15.45085, -47.552826), (2.4887226, 15.45085, -47.487656), (2.5276325, 12.940952, -48.230103), (2.5276325, 12.940952, -48.230103), (2.4887226, 15.45085, -47.487656), (4.970624, 15.45085, -47.292328), (5.048337, 12.940952, -48.03172), (5.048337, 12.940952, -48.03172), (4.970624, 15.45085, -47.292328), (7.438901, 15.45085, -46.967373), (7.5552044, 12.940952, -47.701683), (7.5552044, 12.940952, -47.701683), (7.438901, 15.45085, -46.967373), (9.886788, 15.45085, -46.513683), (10.041364, 12.940952, -47.240902), (10.041364, 12.940952, -47.240902), (9.886788, 15.45085, -46.513683), (12.307577, 15.45085, -45.932503), (12.5, 12.940952, -46.650635), (12.5, 12.940952, -46.650635), (12.307577, 15.45085, -45.932503), (14.694632, 15.45085, -45.225426), (14.924375, 12.940952, -45.932503), (14.924375, 12.940952, -45.932503), (14.694632, 15.45085, -45.225426), (17.041409, 15.45085, -44.394386), (17.307842, 12.940952, -45.08847), (17.307842, 12.940952, -45.08847), (17.041409, 15.45085, -44.394386), (19.341476, 15.45085, -43.44167), (19.643871, 12.940952, -44.120857), (19.643871, 12.940952, -44.120857), (19.341476, 15.45085, -43.44167), (21.588531, 15.45085, -42.369877), (21.926058, 12.940952, -43.03231), (21.926058, 12.940952, -43.03231), (21.588531, 15.45085, -42.369877), (23.776413, 15.45085, -41.181953), (24.148146, 12.940952, -41.825813), (24.148146, 12.940952, -41.825813), (23.776413, 15.45085, -41.181953), (25.899126, 15.45085, -39.881157), (26.304045, 12.940952, -40.504677), (26.304045, 12.940952, -40.504677), (25.899126, 15.45085, -39.881157), (27.95085, 15.45085, -38.471043), (28.387848, 12.940952, -39.07252), (28.387848, 12.940952, -39.07252), (27.95085, 15.45085, -38.471043), (29.925962, 15.45085, -36.955486), (30.39384, 12.940952, -37.533268), (30.39384, 12.940952, -37.533268), (29.925962, 15.45085, -36.955486), (31.819052, 15.45085, -35.33864), (32.31653, 12.940952, -35.89114), (32.31653, 12.940952, -35.89114), (31.819052, 15.45085, -35.33864), (33.624924, 15.45085, -33.624924), (34.150635, 12.940952, -34.150635), (34.150635, 12.940952, -34.150635), (33.624924, 15.45085, -33.624924), (35.33864, 15.45085, -31.819052), (35.89114, 12.940952, -32.31653), (35.89114, 12.940952, -32.31653), (35.33864, 15.45085, -31.819052), (36.955486, 15.45085, -29.925962), (37.533268, 12.940952, -30.39384), (37.533268, 12.940952, -30.39384), (36.955486, 15.45085, -29.925962), (38.471043, 15.45085, -27.95085), (39.07252, 12.940952, -28.387848), (39.07252, 12.940952, -28.387848), (38.471043, 15.45085, -27.95085), (39.881157, 15.45085, -25.899126), (40.504677, 12.940952, -26.304045), (40.504677, 12.940952, -26.304045), (39.881157, 15.45085, -25.899126), (41.181953, 15.45085, -23.776413), (41.825813, 12.940952, -24.148146), (41.825813, 12.940952, -24.148146), (41.181953, 15.45085, -23.776413), (42.369877, 15.45085, -21.588531), (43.03231, 12.940952, -21.926058), (43.03231, 12.940952, -21.926058), (42.369877, 15.45085, -21.588531), (43.44167, 15.45085, -19.341476), (44.120857, 12.940952, -19.643871), (44.120857, 12.940952, -19.643871), (43.44167, 15.45085, -19.341476), (44.394386, 15.45085, -17.041409), (45.08847, 12.940952, -17.307842), (45.08847, 12.940952, -17.307842), (44.394386, 15.45085, -17.041409), (45.225426, 15.45085, -14.694632), (45.932503, 12.940952, -14.924375), (45.932503, 12.940952, -14.924375), (45.225426, 15.45085, -14.694632), (45.932503, 15.45085, -12.307577), (46.650635, 12.940952, -12.5), (46.650635, 12.940952, -12.5), (45.932503, 15.45085, -12.307577), (46.513683, 15.45085, -9.886788), (47.240902, 12.940952, -10.041364), (47.240902, 12.940952, -10.041364), (46.513683, 15.45085, -9.886788), (46.967373, 15.45085, -7.438901), (47.701683, 12.940952, -7.5552044), (47.701683, 12.940952, -7.5552044), (46.967373, 15.45085, -7.438901), (47.292328, 15.45085, -4.970624), (48.03172, 12.940952, -5.048337), (48.03172, 12.940952, -5.048337), (47.292328, 15.45085, -4.970624), (47.487656, 15.45085, -2.4887226), (48.230103, 12.940952, -2.5276325), (48.230103, 12.940952, -2.5276325), (47.487656, 15.45085, -2.4887226), (47.552826, 15.45085, 0), (48.29629, 12.940952, 0), (47.552826, 15.45085, 0), (46.67902, 17.918398, 0), (46.615047, 17.918398, 2.4429913), (47.487656, 15.45085, 2.4887226), (47.487656, 15.45085, 2.4887226), (46.615047, 17.918398, 2.4429913), (46.42331, 17.918398, 4.8792863), (47.292328, 15.45085, 4.970624), (47.292328, 15.45085, 4.970624), (46.42331, 17.918398, 4.8792863), (46.104324, 17.918398, 7.302208), (46.967373, 15.45085, 7.438901), (46.967373, 15.45085, 7.438901), (46.104324, 17.918398, 7.302208), (45.658974, 17.918398, 9.705114), (46.513683, 15.45085, 9.886788), (46.513683, 15.45085, 9.886788), (45.658974, 17.918398, 9.705114), (45.08847, 17.918398, 12.08142), (45.932503, 15.45085, 12.307577), (45.932503, 15.45085, 12.307577), (45.08847, 17.918398, 12.08142), (44.394386, 17.918398, 14.424611), (45.225426, 15.45085, 14.694632), (45.225426, 15.45085, 14.694632), (44.394386, 17.918398, 14.424611), (43.57862, 17.918398, 16.728266), (44.394386, 15.45085, 17.041409), (44.394386, 15.45085, 17.041409), (43.57862, 17.918398, 16.728266), (42.64341, 17.918398, 18.986069), (43.44167, 15.45085, 19.341476), (43.44167, 15.45085, 19.341476), (42.64341, 17.918398, 18.986069), (41.591312, 17.918398, 21.191832), (42.369877, 15.45085, 21.588531), (42.369877, 15.45085, 21.588531), (41.591312, 17.918398, 21.191832), (40.425217, 17.918398, 23.33951), (41.181953, 15.45085, 23.776413), (41.181953, 15.45085, 23.776413), (40.425217, 17.918398, 23.33951), (39.148323, 17.918398, 25.423218), (39.881157, 15.45085, 25.899126), (39.881157, 15.45085, 25.899126), (39.148323, 17.918398, 25.423218), (37.764122, 17.918398, 27.43724), (38.471043, 15.45085, 27.95085), (38.471043, 15.45085, 27.95085), (37.764122, 17.918398, 27.43724), (36.276413, 17.918398, 29.37606), (36.955486, 15.45085, 29.925962), (36.955486, 15.45085, 29.925962), (36.276413, 17.918398, 29.37606), (34.689274, 17.918398, 31.234362), (35.33864, 15.45085, 31.819052), (35.33864, 15.45085, 31.819052), (34.689274, 17.918398, 31.234362), (33.007053, 17.918398, 33.007053), (33.624924, 15.45085, 33.624924), (33.624924, 15.45085, 33.624924), (33.007053, 17.918398, 33.007053), (31.234362, 17.918398, 34.689274), (31.819052, 15.45085, 35.33864), (31.819052, 15.45085, 35.33864), (31.234362, 17.918398, 34.689274), (29.37606, 17.918398, 36.276413), (29.925962, 15.45085, 36.955486), (29.925962, 15.45085, 36.955486), (29.37606, 17.918398, 36.276413), (27.43724, 17.918398, 37.764122), (27.95085, 15.45085, 38.471043), (27.95085, 15.45085, 38.471043), (27.43724, 17.918398, 37.764122), (25.423218, 17.918398, 39.148323), (25.899126, 15.45085, 39.881157), (25.899126, 15.45085, 39.881157), (25.423218, 17.918398, 39.148323), (23.33951, 17.918398, 40.425217), (23.776413, 15.45085, 41.181953), (23.776413, 15.45085, 41.181953), (23.33951, 17.918398, 40.425217), (21.191832, 17.918398, 41.591312), (21.588531, 15.45085, 42.369877), (21.588531, 15.45085, 42.369877), (21.191832, 17.918398, 41.591312), (18.986069, 17.918398, 42.64341), (19.341476, 15.45085, 43.44167), (19.341476, 15.45085, 43.44167), (18.986069, 17.918398, 42.64341), (16.728266, 17.918398, 43.57862), (17.041409, 15.45085, 44.394386), (17.041409, 15.45085, 44.394386), (16.728266, 17.918398, 43.57862), (14.424611, 17.918398, 44.394386), (14.694632, 15.45085, 45.225426), (14.694632, 15.45085, 45.225426), (14.424611, 17.918398, 44.394386), (12.08142, 17.918398, 45.08847), (12.307577, 15.45085, 45.932503), (12.307577, 15.45085, 45.932503), (12.08142, 17.918398, 45.08847), (9.705114, 17.918398, 45.658974), (9.886788, 15.45085, 46.513683), (9.886788, 15.45085, 46.513683), (9.705114, 17.918398, 45.658974), (7.302208, 17.918398, 46.104324), (7.438901, 15.45085, 46.967373), (7.438901, 15.45085, 46.967373), (7.302208, 17.918398, 46.104324), (4.8792863, 17.918398, 46.42331), (4.970624, 15.45085, 47.292328), (4.970624, 15.45085, 47.292328), (4.8792863, 17.918398, 46.42331), (2.4429913, 17.918398, 46.615047), (2.4887226, 15.45085, 47.487656), (2.4887226, 15.45085, 47.487656), (2.4429913, 17.918398, 46.615047), (2.8582657e-15, 17.918398, 46.67902), (2.9117708e-15, 15.45085, 47.552826), (2.9117708e-15, 15.45085, 47.552826), (2.8582657e-15, 17.918398, 46.67902), (-2.4429913, 17.918398, 46.615047), (-2.4887226, 15.45085, 47.487656), (-2.4887226, 15.45085, 47.487656), (-2.4429913, 17.918398, 46.615047), (-4.8792863, 17.918398, 46.42331), (-4.970624, 15.45085, 47.292328), (-4.970624, 15.45085, 47.292328), (-4.8792863, 17.918398, 46.42331), (-7.302208, 17.918398, 46.104324), (-7.438901, 15.45085, 46.967373), (-7.438901, 15.45085, 46.967373), (-7.302208, 17.918398, 46.104324), (-9.705114, 17.918398, 45.658974), (-9.886788, 15.45085, 46.513683), (-9.886788, 15.45085, 46.513683), (-9.705114, 17.918398, 45.658974), (-12.08142, 17.918398, 45.08847), (-12.307577, 15.45085, 45.932503), (-12.307577, 15.45085, 45.932503), (-12.08142, 17.918398, 45.08847), (-14.424611, 17.918398, 44.394386), (-14.694632, 15.45085, 45.225426), (-14.694632, 15.45085, 45.225426), (-14.424611, 17.918398, 44.394386), (-16.728266, 17.918398, 43.57862), (-17.041409, 15.45085, 44.394386), (-17.041409, 15.45085, 44.394386), (-16.728266, 17.918398, 43.57862), (-18.986069, 17.918398, 42.64341), (-19.341476, 15.45085, 43.44167), (-19.341476, 15.45085, 43.44167), (-18.986069, 17.918398, 42.64341), (-21.191832, 17.918398, 41.591312), (-21.588531, 15.45085, 42.369877), (-21.588531, 15.45085, 42.369877), (-21.191832, 17.918398, 41.591312), (-23.33951, 17.918398, 40.425217), (-23.776413, 15.45085, 41.181953), (-23.776413, 15.45085, 41.181953), (-23.33951, 17.918398, 40.425217), (-25.423218, 17.918398, 39.148323), (-25.899126, 15.45085, 39.881157), (-25.899126, 15.45085, 39.881157), (-25.423218, 17.918398, 39.148323), (-27.43724, 17.918398, 37.764122), (-27.95085, 15.45085, 38.471043), (-27.95085, 15.45085, 38.471043), (-27.43724, 17.918398, 37.764122), (-29.37606, 17.918398, 36.276413), (-29.925962, 15.45085, 36.955486), (-29.925962, 15.45085, 36.955486), (-29.37606, 17.918398, 36.276413), (-31.234362, 17.918398, 34.689274), (-31.819052, 15.45085, 35.33864), (-31.819052, 15.45085, 35.33864), (-31.234362, 17.918398, 34.689274), (-33.007053, 17.918398, 33.007053), (-33.624924, 15.45085, 33.624924), (-33.624924, 15.45085, 33.624924), (-33.007053, 17.918398, 33.007053), (-34.689274, 17.918398, 31.234362), (-35.33864, 15.45085, 31.819052), (-35.33864, 15.45085, 31.819052), (-34.689274, 17.918398, 31.234362), (-36.276413, 17.918398, 29.37606), (-36.955486, 15.45085, 29.925962), (-36.955486, 15.45085, 29.925962), (-36.276413, 17.918398, 29.37606), (-37.764122, 17.918398, 27.43724), (-38.471043, 15.45085, 27.95085), (-38.471043, 15.45085, 27.95085), (-37.764122, 17.918398, 27.43724), (-39.148323, 17.918398, 25.423218), (-39.881157, 15.45085, 25.899126), (-39.881157, 15.45085, 25.899126), (-39.148323, 17.918398, 25.423218), (-40.425217, 17.918398, 23.33951), (-41.181953, 15.45085, 23.776413), (-41.181953, 15.45085, 23.776413), (-40.425217, 17.918398, 23.33951), (-41.591312, 17.918398, 21.191832), (-42.369877, 15.45085, 21.588531), (-42.369877, 15.45085, 21.588531), (-41.591312, 17.918398, 21.191832), (-42.64341, 17.918398, 18.986069), (-43.44167, 15.45085, 19.341476), (-43.44167, 15.45085, 19.341476), (-42.64341, 17.918398, 18.986069), (-43.57862, 17.918398, 16.728266), (-44.394386, 15.45085, 17.041409), (-44.394386, 15.45085, 17.041409), (-43.57862, 17.918398, 16.728266), (-44.394386, 17.918398, 14.424611), (-45.225426, 15.45085, 14.694632), (-45.225426, 15.45085, 14.694632), (-44.394386, 17.918398, 14.424611), (-45.08847, 17.918398, 12.08142), (-45.932503, 15.45085, 12.307577), (-45.932503, 15.45085, 12.307577), (-45.08847, 17.918398, 12.08142), (-45.658974, 17.918398, 9.705114), (-46.513683, 15.45085, 9.886788), (-46.513683, 15.45085, 9.886788), (-45.658974, 17.918398, 9.705114), (-46.104324, 17.918398, 7.302208), (-46.967373, 15.45085, 7.438901), (-46.967373, 15.45085, 7.438901), (-46.104324, 17.918398, 7.302208), (-46.42331, 17.918398, 4.8792863), (-47.292328, 15.45085, 4.970624), (-47.292328, 15.45085, 4.970624), (-46.42331, 17.918398, 4.8792863), (-46.615047, 17.918398, 2.4429913), (-47.487656, 15.45085, 2.4887226), (-47.487656, 15.45085, 2.4887226), (-46.615047, 17.918398, 2.4429913), (-46.67902, 17.918398, 5.7165313e-15), (-47.552826, 15.45085, 5.8235417e-15), (-47.552826, 15.45085, 5.8235417e-15), (-46.67902, 17.918398, 5.7165313e-15), (-46.615047, 17.918398, -2.4429913), (-47.487656, 15.45085, -2.4887226), (-47.487656, 15.45085, -2.4887226), (-46.615047, 17.918398, -2.4429913), (-46.42331, 17.918398, -4.8792863), (-47.292328, 15.45085, -4.970624), (-47.292328, 15.45085, -4.970624), (-46.42331, 17.918398, -4.8792863), (-46.104324, 17.918398, -7.302208), (-46.967373, 15.45085, -7.438901), (-46.967373, 15.45085, -7.438901), (-46.104324, 17.918398, -7.302208), (-45.658974, 17.918398, -9.705114), (-46.513683, 15.45085, -9.886788), (-46.513683, 15.45085, -9.886788), (-45.658974, 17.918398, -9.705114), (-45.08847, 17.918398, -12.08142), (-45.932503, 15.45085, -12.307577), (-45.932503, 15.45085, -12.307577), (-45.08847, 17.918398, -12.08142), (-44.394386, 17.918398, -14.424611), (-45.225426, 15.45085, -14.694632), (-45.225426, 15.45085, -14.694632), (-44.394386, 17.918398, -14.424611), (-43.57862, 17.918398, -16.728266), (-44.394386, 15.45085, -17.041409), (-44.394386, 15.45085, -17.041409), (-43.57862, 17.918398, -16.728266), (-42.64341, 17.918398, -18.986069), (-43.44167, 15.45085, -19.341476), (-43.44167, 15.45085, -19.341476), (-42.64341, 17.918398, -18.986069), (-41.591312, 17.918398, -21.191832), (-42.369877, 15.45085, -21.588531), (-42.369877, 15.45085, -21.588531), (-41.591312, 17.918398, -21.191832), (-40.425217, 17.918398, -23.33951), (-41.181953, 15.45085, -23.776413), (-41.181953, 15.45085, -23.776413), (-40.425217, 17.918398, -23.33951), (-39.148323, 17.918398, -25.423218), (-39.881157, 15.45085, -25.899126), (-39.881157, 15.45085, -25.899126), (-39.148323, 17.918398, -25.423218), (-37.764122, 17.918398, -27.43724), (-38.471043, 15.45085, -27.95085), (-38.471043, 15.45085, -27.95085), (-37.764122, 17.918398, -27.43724), (-36.276413, 17.918398, -29.37606), (-36.955486, 15.45085, -29.925962), (-36.955486, 15.45085, -29.925962), (-36.276413, 17.918398, -29.37606), (-34.689274, 17.918398, -31.234362), (-35.33864, 15.45085, -31.819052), (-35.33864, 15.45085, -31.819052), (-34.689274, 17.918398, -31.234362), (-33.007053, 17.918398, -33.007053), (-33.624924, 15.45085, -33.624924), (-33.624924, 15.45085, -33.624924), (-33.007053, 17.918398, -33.007053), (-31.234362, 17.918398, -34.689274), (-31.819052, 15.45085, -35.33864), (-31.819052, 15.45085, -35.33864), (-31.234362, 17.918398, -34.689274), (-29.37606, 17.918398, -36.276413), (-29.925962, 15.45085, -36.955486), (-29.925962, 15.45085, -36.955486), (-29.37606, 17.918398, -36.276413), (-27.43724, 17.918398, -37.764122), (-27.95085, 15.45085, -38.471043), (-27.95085, 15.45085, -38.471043), (-27.43724, 17.918398, -37.764122), (-25.423218, 17.918398, -39.148323), (-25.899126, 15.45085, -39.881157), (-25.899126, 15.45085, -39.881157), (-25.423218, 17.918398, -39.148323), (-23.33951, 17.918398, -40.425217), (-23.776413, 15.45085, -41.181953), (-23.776413, 15.45085, -41.181953), (-23.33951, 17.918398, -40.425217), (-21.191832, 17.918398, -41.591312), (-21.588531, 15.45085, -42.369877), (-21.588531, 15.45085, -42.369877), (-21.191832, 17.918398, -41.591312), (-18.986069, 17.918398, -42.64341), (-19.341476, 15.45085, -43.44167), (-19.341476, 15.45085, -43.44167), (-18.986069, 17.918398, -42.64341), (-16.728266, 17.918398, -43.57862), (-17.041409, 15.45085, -44.394386), (-17.041409, 15.45085, -44.394386), (-16.728266, 17.918398, -43.57862), (-14.424611, 17.918398, -44.394386), (-14.694632, 15.45085, -45.225426), (-14.694632, 15.45085, -45.225426), (-14.424611, 17.918398, -44.394386), (-12.08142, 17.918398, -45.08847), (-12.307577, 15.45085, -45.932503), (-12.307577, 15.45085, -45.932503), (-12.08142, 17.918398, -45.08847), (-9.705114, 17.918398, -45.658974), (-9.886788, 15.45085, -46.513683), (-9.886788, 15.45085, -46.513683), (-9.705114, 17.918398, -45.658974), (-7.302208, 17.918398, -46.104324), (-7.438901, 15.45085, -46.967373), (-7.438901, 15.45085, -46.967373), (-7.302208, 17.918398, -46.104324), (-4.8792863, 17.918398, -46.42331), (-4.970624, 15.45085, -47.292328), (-4.970624, 15.45085, -47.292328), (-4.8792863, 17.918398, -46.42331), (-2.4429913, 17.918398, -46.615047), (-2.4887226, 15.45085, -47.487656), (-2.4887226, 15.45085, -47.487656), (-2.4429913, 17.918398, -46.615047), (-8.5747974e-15, 17.918398, -46.67902), (-8.735313e-15, 15.45085, -47.552826), (-8.735313e-15, 15.45085, -47.552826), (-8.5747974e-15, 17.918398, -46.67902), (2.4429913, 17.918398, -46.615047), (2.4887226, 15.45085, -47.487656), (2.4887226, 15.45085, -47.487656), (2.4429913, 17.918398, -46.615047), (4.8792863, 17.918398, -46.42331), (4.970624, 15.45085, -47.292328), (4.970624, 15.45085, -47.292328), (4.8792863, 17.918398, -46.42331), (7.302208, 17.918398, -46.104324), (7.438901, 15.45085, -46.967373), (7.438901, 15.45085, -46.967373), (7.302208, 17.918398, -46.104324), (9.705114, 17.918398, -45.658974), (9.886788, 15.45085, -46.513683), (9.886788, 15.45085, -46.513683), (9.705114, 17.918398, -45.658974), (12.08142, 17.918398, -45.08847), (12.307577, 15.45085, -45.932503), (12.307577, 15.45085, -45.932503), (12.08142, 17.918398, -45.08847), (14.424611, 17.918398, -44.394386), (14.694632, 15.45085, -45.225426), (14.694632, 15.45085, -45.225426), (14.424611, 17.918398, -44.394386), (16.728266, 17.918398, -43.57862), (17.041409, 15.45085, -44.394386), (17.041409, 15.45085, -44.394386), (16.728266, 17.918398, -43.57862), (18.986069, 17.918398, -42.64341), (19.341476, 15.45085, -43.44167), (19.341476, 15.45085, -43.44167), (18.986069, 17.918398, -42.64341), (21.191832, 17.918398, -41.591312), (21.588531, 15.45085, -42.369877), (21.588531, 15.45085, -42.369877), (21.191832, 17.918398, -41.591312), (23.33951, 17.918398, -40.425217), (23.776413, 15.45085, -41.181953), (23.776413, 15.45085, -41.181953), (23.33951, 17.918398, -40.425217), (25.423218, 17.918398, -39.148323), (25.899126, 15.45085, -39.881157), (25.899126, 15.45085, -39.881157), (25.423218, 17.918398, -39.148323), (27.43724, 17.918398, -37.764122), (27.95085, 15.45085, -38.471043), (27.95085, 15.45085, -38.471043), (27.43724, 17.918398, -37.764122), (29.37606, 17.918398, -36.276413), (29.925962, 15.45085, -36.955486), (29.925962, 15.45085, -36.955486), (29.37606, 17.918398, -36.276413), (31.234362, 17.918398, -34.689274), (31.819052, 15.45085, -35.33864), (31.819052, 15.45085, -35.33864), (31.234362, 17.918398, -34.689274), (33.007053, 17.918398, -33.007053), (33.624924, 15.45085, -33.624924), (33.624924, 15.45085, -33.624924), (33.007053, 17.918398, -33.007053), (34.689274, 17.918398, -31.234362), (35.33864, 15.45085, -31.819052), (35.33864, 15.45085, -31.819052), (34.689274, 17.918398, -31.234362), (36.276413, 17.918398, -29.37606), (36.955486, 15.45085, -29.925962), (36.955486, 15.45085, -29.925962), (36.276413, 17.918398, -29.37606), (37.764122, 17.918398, -27.43724), (38.471043, 15.45085, -27.95085), (38.471043, 15.45085, -27.95085), (37.764122, 17.918398, -27.43724), (39.148323, 17.918398, -25.423218), (39.881157, 15.45085, -25.899126), (39.881157, 15.45085, -25.899126), (39.148323, 17.918398, -25.423218), (40.425217, 17.918398, -23.33951), (41.181953, 15.45085, -23.776413), (41.181953, 15.45085, -23.776413), (40.425217, 17.918398, -23.33951), (41.591312, 17.918398, -21.191832), (42.369877, 15.45085, -21.588531), (42.369877, 15.45085, -21.588531), (41.591312, 17.918398, -21.191832), (42.64341, 17.918398, -18.986069), (43.44167, 15.45085, -19.341476), (43.44167, 15.45085, -19.341476), (42.64341, 17.918398, -18.986069), (43.57862, 17.918398, -16.728266), (44.394386, 15.45085, -17.041409), (44.394386, 15.45085, -17.041409), (43.57862, 17.918398, -16.728266), (44.394386, 17.918398, -14.424611), (45.225426, 15.45085, -14.694632), (45.225426, 15.45085, -14.694632), (44.394386, 17.918398, -14.424611), (45.08847, 17.918398, -12.08142), (45.932503, 15.45085, -12.307577), (45.932503, 15.45085, -12.307577), (45.08847, 17.918398, -12.08142), (45.658974, 17.918398, -9.705114), (46.513683, 15.45085, -9.886788), (46.513683, 15.45085, -9.886788), (45.658974, 17.918398, -9.705114), (46.104324, 17.918398, -7.302208), (46.967373, 15.45085, -7.438901), (46.967373, 15.45085, -7.438901), (46.104324, 17.918398, -7.302208), (46.42331, 17.918398, -4.8792863), (47.292328, 15.45085, -4.970624), (47.292328, 15.45085, -4.970624), (46.42331, 17.918398, -4.8792863), (46.615047, 17.918398, -2.4429913), (47.487656, 15.45085, -2.4887226), (47.487656, 15.45085, -2.4887226), (46.615047, 17.918398, -2.4429913), (46.67902, 17.918398, 0), (47.552826, 15.45085, 0), (46.67902, 17.918398, 0), (45.677273, 20.336832, 0), (45.614674, 20.336832, 2.3905637), (46.615047, 17.918398, 2.4429913), (46.615047, 17.918398, 2.4429913), (45.614674, 20.336832, 2.3905637), (45.427048, 20.336832, 4.774575), (46.42331, 17.918398, 4.8792863), (46.42331, 17.918398, 4.8792863), (45.427048, 20.336832, 4.774575), (45.11491, 20.336832, 7.1454997), (46.104324, 17.918398, 7.302208), (46.104324, 17.918398, 7.302208), (45.11491, 20.336832, 7.1454997), (44.679115, 20.336832, 9.496839), (45.658974, 17.918398, 9.705114), (45.658974, 17.918398, 9.705114), (44.679115, 20.336832, 9.496839), (44.120857, 20.336832, 11.822148), (45.08847, 17.918398, 12.08142), (45.08847, 17.918398, 12.08142), (44.120857, 20.336832, 11.822148), (43.44167, 20.336832, 14.115053), (44.394386, 17.918398, 14.424611), (44.394386, 17.918398, 14.424611), (43.44167, 20.336832, 14.115053), (42.64341, 20.336832, 16.36927), (43.57862, 17.918398, 16.728266), (43.57862, 17.918398, 16.728266), (42.64341, 20.336832, 16.36927), (41.728264, 20.336832, 18.57862), (42.64341, 17.918398, 18.986069), (42.64341, 17.918398, 18.986069), (41.728264, 20.336832, 18.57862), (40.69875, 20.336832, 20.737047), (41.591312, 17.918398, 21.191832), (41.591312, 17.918398, 21.191832), (40.69875, 20.336832, 20.737047), (39.55768, 20.336832, 22.838636), (40.425217, 17.918398, 23.33951), (40.425217, 17.918398, 23.33951), (39.55768, 20.336832, 22.838636), (38.308186, 20.336832, 24.877626), (39.148323, 17.918398, 25.423218), (39.148323, 17.918398, 25.423218), (38.308186, 20.336832, 24.877626), (36.95369, 20.336832, 26.848427), (37.764122, 17.918398, 27.43724), (37.764122, 17.918398, 27.43724), (36.95369, 20.336832, 26.848427), (35.49791, 20.336832, 28.74564), (36.276413, 17.918398, 29.37606), (36.276413, 17.918398, 29.37606), (35.49791, 20.336832, 28.74564), (33.944828, 20.336832, 30.564062), (34.689274, 17.918398, 31.234362), (34.689274, 17.918398, 31.234362), (33.944828, 20.336832, 30.564062), (32.29871, 20.336832, 32.29871), (33.007053, 17.918398, 33.007053), (33.007053, 17.918398, 33.007053), (32.29871, 20.336832, 32.29871), (30.564062, 20.336832, 33.944828), (31.234362, 17.918398, 34.689274), (31.234362, 17.918398, 34.689274), (30.564062, 20.336832, 33.944828), (28.74564, 20.336832, 35.49791), (29.37606, 17.918398, 36.276413), (29.37606, 17.918398, 36.276413), (28.74564, 20.336832, 35.49791), (26.848427, 20.336832, 36.95369), (27.43724, 17.918398, 37.764122), (27.43724, 17.918398, 37.764122), (26.848427, 20.336832, 36.95369), (24.877626, 20.336832, 38.308186), (25.423218, 17.918398, 39.148323), (25.423218, 17.918398, 39.148323), (24.877626, 20.336832, 38.308186), (22.838636, 20.336832, 39.55768), (23.33951, 17.918398, 40.425217), (23.33951, 17.918398, 40.425217), (22.838636, 20.336832, 39.55768), (20.737047, 20.336832, 40.69875), (21.191832, 17.918398, 41.591312), (21.191832, 17.918398, 41.591312), (20.737047, 20.336832, 40.69875), (18.57862, 20.336832, 41.728264), (18.986069, 17.918398, 42.64341), (18.986069, 17.918398, 42.64341), (18.57862, 20.336832, 41.728264), (16.36927, 20.336832, 42.64341), (16.728266, 17.918398, 43.57862), (16.728266, 17.918398, 43.57862), (16.36927, 20.336832, 42.64341), (14.115053, 20.336832, 43.44167), (14.424611, 17.918398, 44.394386), (14.424611, 17.918398, 44.394386), (14.115053, 20.336832, 43.44167), (11.822148, 20.336832, 44.120857), (12.08142, 17.918398, 45.08847), (12.08142, 17.918398, 45.08847), (11.822148, 20.336832, 44.120857), (9.496839, 20.336832, 44.679115), (9.705114, 17.918398, 45.658974), (9.705114, 17.918398, 45.658974), (9.496839, 20.336832, 44.679115), (7.1454997, 20.336832, 45.11491), (7.302208, 17.918398, 46.104324), (7.302208, 17.918398, 46.104324), (7.1454997, 20.336832, 45.11491), (4.774575, 20.336832, 45.427048), (4.8792863, 17.918398, 46.42331), (4.8792863, 17.918398, 46.42331), (4.774575, 20.336832, 45.427048), (2.3905637, 20.336832, 45.614674), (2.4429913, 17.918398, 46.615047), (2.4429913, 17.918398, 46.615047), (2.3905637, 20.336832, 45.614674), (2.7969263e-15, 20.336832, 45.677273), (2.8582657e-15, 17.918398, 46.67902), (2.8582657e-15, 17.918398, 46.67902), (2.7969263e-15, 20.336832, 45.677273), (-2.3905637, 20.336832, 45.614674), (-2.4429913, 17.918398, 46.615047), (-2.4429913, 17.918398, 46.615047), (-2.3905637, 20.336832, 45.614674), (-4.774575, 20.336832, 45.427048), (-4.8792863, 17.918398, 46.42331), (-4.8792863, 17.918398, 46.42331), (-4.774575, 20.336832, 45.427048), (-7.1454997, 20.336832, 45.11491), (-7.302208, 17.918398, 46.104324), (-7.302208, 17.918398, 46.104324), (-7.1454997, 20.336832, 45.11491), (-9.496839, 20.336832, 44.679115), (-9.705114, 17.918398, 45.658974), (-9.705114, 17.918398, 45.658974), (-9.496839, 20.336832, 44.679115), (-11.822148, 20.336832, 44.120857), (-12.08142, 17.918398, 45.08847), (-12.08142, 17.918398, 45.08847), (-11.822148, 20.336832, 44.120857), (-14.115053, 20.336832, 43.44167), (-14.424611, 17.918398, 44.394386), (-14.424611, 17.918398, 44.394386), (-14.115053, 20.336832, 43.44167), (-16.36927, 20.336832, 42.64341), (-16.728266, 17.918398, 43.57862), (-16.728266, 17.918398, 43.57862), (-16.36927, 20.336832, 42.64341), (-18.57862, 20.336832, 41.728264), (-18.986069, 17.918398, 42.64341), (-18.986069, 17.918398, 42.64341), (-18.57862, 20.336832, 41.728264), (-20.737047, 20.336832, 40.69875), (-21.191832, 17.918398, 41.591312), (-21.191832, 17.918398, 41.591312), (-20.737047, 20.336832, 40.69875), (-22.838636, 20.336832, 39.55768), (-23.33951, 17.918398, 40.425217), (-23.33951, 17.918398, 40.425217), (-22.838636, 20.336832, 39.55768), (-24.877626, 20.336832, 38.308186), (-25.423218, 17.918398, 39.148323), (-25.423218, 17.918398, 39.148323), (-24.877626, 20.336832, 38.308186), (-26.848427, 20.336832, 36.95369), (-27.43724, 17.918398, 37.764122), (-27.43724, 17.918398, 37.764122), (-26.848427, 20.336832, 36.95369), (-28.74564, 20.336832, 35.49791), (-29.37606, 17.918398, 36.276413), (-29.37606, 17.918398, 36.276413), (-28.74564, 20.336832, 35.49791), (-30.564062, 20.336832, 33.944828), (-31.234362, 17.918398, 34.689274), (-31.234362, 17.918398, 34.689274), (-30.564062, 20.336832, 33.944828), (-32.29871, 20.336832, 32.29871), (-33.007053, 17.918398, 33.007053), (-33.007053, 17.918398, 33.007053), (-32.29871, 20.336832, 32.29871), (-33.944828, 20.336832, 30.564062), (-34.689274, 17.918398, 31.234362), (-34.689274, 17.918398, 31.234362), (-33.944828, 20.336832, 30.564062), (-35.49791, 20.336832, 28.74564), (-36.276413, 17.918398, 29.37606), (-36.276413, 17.918398, 29.37606), (-35.49791, 20.336832, 28.74564), (-36.95369, 20.336832, 26.848427), (-37.764122, 17.918398, 27.43724), (-37.764122, 17.918398, 27.43724), (-36.95369, 20.336832, 26.848427), (-38.308186, 20.336832, 24.877626), (-39.148323, 17.918398, 25.423218), (-39.148323, 17.918398, 25.423218), (-38.308186, 20.336832, 24.877626), (-39.55768, 20.336832, 22.838636), (-40.425217, 17.918398, 23.33951), (-40.425217, 17.918398, 23.33951), (-39.55768, 20.336832, 22.838636), (-40.69875, 20.336832, 20.737047), (-41.591312, 17.918398, 21.191832), (-41.591312, 17.918398, 21.191832), (-40.69875, 20.336832, 20.737047), (-41.728264, 20.336832, 18.57862), (-42.64341, 17.918398, 18.986069), (-42.64341, 17.918398, 18.986069), (-41.728264, 20.336832, 18.57862), (-42.64341, 20.336832, 16.36927), (-43.57862, 17.918398, 16.728266), (-43.57862, 17.918398, 16.728266), (-42.64341, 20.336832, 16.36927), (-43.44167, 20.336832, 14.115053), (-44.394386, 17.918398, 14.424611), (-44.394386, 17.918398, 14.424611), (-43.44167, 20.336832, 14.115053), (-44.120857, 20.336832, 11.822148), (-45.08847, 17.918398, 12.08142), (-45.08847, 17.918398, 12.08142), (-44.120857, 20.336832, 11.822148), (-44.679115, 20.336832, 9.496839), (-45.658974, 17.918398, 9.705114), (-45.658974, 17.918398, 9.705114), (-44.679115, 20.336832, 9.496839), (-45.11491, 20.336832, 7.1454997), (-46.104324, 17.918398, 7.302208), (-46.104324, 17.918398, 7.302208), (-45.11491, 20.336832, 7.1454997), (-45.427048, 20.336832, 4.774575), (-46.42331, 17.918398, 4.8792863), (-46.42331, 17.918398, 4.8792863), (-45.427048, 20.336832, 4.774575), (-45.614674, 20.336832, 2.3905637), (-46.615047, 17.918398, 2.4429913), (-46.615047, 17.918398, 2.4429913), (-45.614674, 20.336832, 2.3905637), (-45.677273, 20.336832, 5.5938526e-15), (-46.67902, 17.918398, 5.7165313e-15), (-46.67902, 17.918398, 5.7165313e-15), (-45.677273, 20.336832, 5.5938526e-15), (-45.614674, 20.336832, -2.3905637), (-46.615047, 17.918398, -2.4429913), (-46.615047, 17.918398, -2.4429913), (-45.614674, 20.336832, -2.3905637), (-45.427048, 20.336832, -4.774575), (-46.42331, 17.918398, -4.8792863), (-46.42331, 17.918398, -4.8792863), (-45.427048, 20.336832, -4.774575), (-45.11491, 20.336832, -7.1454997), (-46.104324, 17.918398, -7.302208), (-46.104324, 17.918398, -7.302208), (-45.11491, 20.336832, -7.1454997), (-44.679115, 20.336832, -9.496839), (-45.658974, 17.918398, -9.705114), (-45.658974, 17.918398, -9.705114), (-44.679115, 20.336832, -9.496839), (-44.120857, 20.336832, -11.822148), (-45.08847, 17.918398, -12.08142), (-45.08847, 17.918398, -12.08142), (-44.120857, 20.336832, -11.822148), (-43.44167, 20.336832, -14.115053), (-44.394386, 17.918398, -14.424611), (-44.394386, 17.918398, -14.424611), (-43.44167, 20.336832, -14.115053), (-42.64341, 20.336832, -16.36927), (-43.57862, 17.918398, -16.728266), (-43.57862, 17.918398, -16.728266), (-42.64341, 20.336832, -16.36927), (-41.728264, 20.336832, -18.57862), (-42.64341, 17.918398, -18.986069), (-42.64341, 17.918398, -18.986069), (-41.728264, 20.336832, -18.57862), (-40.69875, 20.336832, -20.737047), (-41.591312, 17.918398, -21.191832), (-41.591312, 17.918398, -21.191832), (-40.69875, 20.336832, -20.737047), (-39.55768, 20.336832, -22.838636), (-40.425217, 17.918398, -23.33951), (-40.425217, 17.918398, -23.33951), (-39.55768, 20.336832, -22.838636), (-38.308186, 20.336832, -24.877626), (-39.148323, 17.918398, -25.423218), (-39.148323, 17.918398, -25.423218), (-38.308186, 20.336832, -24.877626), (-36.95369, 20.336832, -26.848427), (-37.764122, 17.918398, -27.43724), (-37.764122, 17.918398, -27.43724), (-36.95369, 20.336832, -26.848427), (-35.49791, 20.336832, -28.74564), (-36.276413, 17.918398, -29.37606), (-36.276413, 17.918398, -29.37606), (-35.49791, 20.336832, -28.74564), (-33.944828, 20.336832, -30.564062), (-34.689274, 17.918398, -31.234362), (-34.689274, 17.918398, -31.234362), (-33.944828, 20.336832, -30.564062), (-32.29871, 20.336832, -32.29871), (-33.007053, 17.918398, -33.007053), (-33.007053, 17.918398, -33.007053), (-32.29871, 20.336832, -32.29871), (-30.564062, 20.336832, -33.944828), (-31.234362, 17.918398, -34.689274), (-31.234362, 17.918398, -34.689274), (-30.564062, 20.336832, -33.944828), (-28.74564, 20.336832, -35.49791), (-29.37606, 17.918398, -36.276413), (-29.37606, 17.918398, -36.276413), (-28.74564, 20.336832, -35.49791), (-26.848427, 20.336832, -36.95369), (-27.43724, 17.918398, -37.764122), (-27.43724, 17.918398, -37.764122), (-26.848427, 20.336832, -36.95369), (-24.877626, 20.336832, -38.308186), (-25.423218, 17.918398, -39.148323), (-25.423218, 17.918398, -39.148323), (-24.877626, 20.336832, -38.308186), (-22.838636, 20.336832, -39.55768), (-23.33951, 17.918398, -40.425217), (-23.33951, 17.918398, -40.425217), (-22.838636, 20.336832, -39.55768), (-20.737047, 20.336832, -40.69875), (-21.191832, 17.918398, -41.591312), (-21.191832, 17.918398, -41.591312), (-20.737047, 20.336832, -40.69875), (-18.57862, 20.336832, -41.728264), (-18.986069, 17.918398, -42.64341), (-18.986069, 17.918398, -42.64341), (-18.57862, 20.336832, -41.728264), (-16.36927, 20.336832, -42.64341), (-16.728266, 17.918398, -43.57862), (-16.728266, 17.918398, -43.57862), (-16.36927, 20.336832, -42.64341), (-14.115053, 20.336832, -43.44167), (-14.424611, 17.918398, -44.394386), (-14.424611, 17.918398, -44.394386), (-14.115053, 20.336832, -43.44167), (-11.822148, 20.336832, -44.120857), (-12.08142, 17.918398, -45.08847), (-12.08142, 17.918398, -45.08847), (-11.822148, 20.336832, -44.120857), (-9.496839, 20.336832, -44.679115), (-9.705114, 17.918398, -45.658974), (-9.705114, 17.918398, -45.658974), (-9.496839, 20.336832, -44.679115), (-7.1454997, 20.336832, -45.11491), (-7.302208, 17.918398, -46.104324), (-7.302208, 17.918398, -46.104324), (-7.1454997, 20.336832, -45.11491), (-4.774575, 20.336832, -45.427048), (-4.8792863, 17.918398, -46.42331), (-4.8792863, 17.918398, -46.42331), (-4.774575, 20.336832, -45.427048), (-2.3905637, 20.336832, -45.614674), (-2.4429913, 17.918398, -46.615047), (-2.4429913, 17.918398, -46.615047), (-2.3905637, 20.336832, -45.614674), (-8.390779e-15, 20.336832, -45.677273), (-8.5747974e-15, 17.918398, -46.67902), (-8.5747974e-15, 17.918398, -46.67902), (-8.390779e-15, 20.336832, -45.677273), (2.3905637, 20.336832, -45.614674), (2.4429913, 17.918398, -46.615047), (2.4429913, 17.918398, -46.615047), (2.3905637, 20.336832, -45.614674), (4.774575, 20.336832, -45.427048), (4.8792863, 17.918398, -46.42331), (4.8792863, 17.918398, -46.42331), (4.774575, 20.336832, -45.427048), (7.1454997, 20.336832, -45.11491), (7.302208, 17.918398, -46.104324), (7.302208, 17.918398, -46.104324), (7.1454997, 20.336832, -45.11491), (9.496839, 20.336832, -44.679115), (9.705114, 17.918398, -45.658974), (9.705114, 17.918398, -45.658974), (9.496839, 20.336832, -44.679115), (11.822148, 20.336832, -44.120857), (12.08142, 17.918398, -45.08847), (12.08142, 17.918398, -45.08847), (11.822148, 20.336832, -44.120857), (14.115053, 20.336832, -43.44167), (14.424611, 17.918398, -44.394386), (14.424611, 17.918398, -44.394386), (14.115053, 20.336832, -43.44167), (16.36927, 20.336832, -42.64341), (16.728266, 17.918398, -43.57862), (16.728266, 17.918398, -43.57862), (16.36927, 20.336832, -42.64341), (18.57862, 20.336832, -41.728264), (18.986069, 17.918398, -42.64341), (18.986069, 17.918398, -42.64341), (18.57862, 20.336832, -41.728264), (20.737047, 20.336832, -40.69875), (21.191832, 17.918398, -41.591312), (21.191832, 17.918398, -41.591312), (20.737047, 20.336832, -40.69875), (22.838636, 20.336832, -39.55768), (23.33951, 17.918398, -40.425217), (23.33951, 17.918398, -40.425217), (22.838636, 20.336832, -39.55768), (24.877626, 20.336832, -38.308186), (25.423218, 17.918398, -39.148323), (25.423218, 17.918398, -39.148323), (24.877626, 20.336832, -38.308186), (26.848427, 20.336832, -36.95369), (27.43724, 17.918398, -37.764122), (27.43724, 17.918398, -37.764122), (26.848427, 20.336832, -36.95369), (28.74564, 20.336832, -35.49791), (29.37606, 17.918398, -36.276413), (29.37606, 17.918398, -36.276413), (28.74564, 20.336832, -35.49791), (30.564062, 20.336832, -33.944828), (31.234362, 17.918398, -34.689274), (31.234362, 17.918398, -34.689274), (30.564062, 20.336832, -33.944828), (32.29871, 20.336832, -32.29871), (33.007053, 17.918398, -33.007053), (33.007053, 17.918398, -33.007053), (32.29871, 20.336832, -32.29871), (33.944828, 20.336832, -30.564062), (34.689274, 17.918398, -31.234362), (34.689274, 17.918398, -31.234362), (33.944828, 20.336832, -30.564062), (35.49791, 20.336832, -28.74564), (36.276413, 17.918398, -29.37606), (36.276413, 17.918398, -29.37606), (35.49791, 20.336832, -28.74564), (36.95369, 20.336832, -26.848427), (37.764122, 17.918398, -27.43724), (37.764122, 17.918398, -27.43724), (36.95369, 20.336832, -26.848427), (38.308186, 20.336832, -24.877626), (39.148323, 17.918398, -25.423218), (39.148323, 17.918398, -25.423218), (38.308186, 20.336832, -24.877626), (39.55768, 20.336832, -22.838636), (40.425217, 17.918398, -23.33951), (40.425217, 17.918398, -23.33951), (39.55768, 20.336832, -22.838636), (40.69875, 20.336832, -20.737047), (41.591312, 17.918398, -21.191832), (41.591312, 17.918398, -21.191832), (40.69875, 20.336832, -20.737047), (41.728264, 20.336832, -18.57862), (42.64341, 17.918398, -18.986069), (42.64341, 17.918398, -18.986069), (41.728264, 20.336832, -18.57862), (42.64341, 20.336832, -16.36927), (43.57862, 17.918398, -16.728266), (43.57862, 17.918398, -16.728266), (42.64341, 20.336832, -16.36927), (43.44167, 20.336832, -14.115053), (44.394386, 17.918398, -14.424611), (44.394386, 17.918398, -14.424611), (43.44167, 20.336832, -14.115053), (44.120857, 20.336832, -11.822148), (45.08847, 17.918398, -12.08142), (45.08847, 17.918398, -12.08142), (44.120857, 20.336832, -11.822148), (44.679115, 20.336832, -9.496839), (45.658974, 17.918398, -9.705114), (45.658974, 17.918398, -9.705114), (44.679115, 20.336832, -9.496839), (45.11491, 20.336832, -7.1454997), (46.104324, 17.918398, -7.302208), (46.104324, 17.918398, -7.302208), (45.11491, 20.336832, -7.1454997), (45.427048, 20.336832, -4.774575), (46.42331, 17.918398, -4.8792863), (46.42331, 17.918398, -4.8792863), (45.427048, 20.336832, -4.774575), (45.614674, 20.336832, -2.3905637), (46.615047, 17.918398, -2.4429913), (46.615047, 17.918398, -2.4429913), (45.614674, 20.336832, -2.3905637), (45.677273, 20.336832, 0), (46.67902, 17.918398, 0), (45.677273, 20.336832, 0), (44.550327, 22.699526, 0), (44.489273, 22.699526, 2.331584), (45.614674, 20.336832, 2.3905637), (45.614674, 20.336832, 2.3905637), (44.489273, 22.699526, 2.331584), (44.306274, 22.699526, 4.656777), (45.427048, 20.336832, 4.774575), (45.427048, 20.336832, 4.774575), (44.306274, 22.699526, 4.656777), (44.00184, 22.699526, 6.9692063), (45.11491, 20.336832, 7.1454997), (45.11491, 20.336832, 7.1454997), (44.00184, 22.699526, 6.9692063), (43.576794, 22.699526, 9.262533), (44.679115, 20.336832, 9.496839), (44.679115, 20.336832, 9.496839), (43.576794, 22.699526, 9.262533), (43.03231, 22.699526, 11.530473), (44.120857, 20.336832, 11.822148), (44.120857, 20.336832, 11.822148), (43.03231, 22.699526, 11.530473), (42.369877, 22.699526, 13.766808), (43.44167, 20.336832, 14.115053), (43.44167, 20.336832, 14.115053), (42.369877, 22.699526, 13.766808), (41.591312, 22.699526, 15.965409), (42.64341, 20.336832, 16.36927), (42.64341, 20.336832, 16.36927), (41.591312, 22.699526, 15.965409), (40.69875, 22.699526, 18.12025), (41.728264, 20.336832, 18.57862), (41.728264, 20.336832, 18.57862), (40.69875, 22.699526, 18.12025), (39.69463, 22.699526, 20.225426), (40.69875, 20.336832, 20.737047), (40.69875, 20.336832, 20.737047), (39.69463, 22.699526, 20.225426), (38.581715, 22.699526, 22.275164), (39.55768, 20.336832, 22.838636), (39.55768, 20.336832, 22.838636), (38.581715, 22.699526, 22.275164), (37.36305, 22.699526, 24.263847), (38.308186, 20.336832, 24.877626), (38.308186, 20.336832, 24.877626), (37.36305, 22.699526, 24.263847), (36.04197, 22.699526, 26.186026), (36.95369, 20.336832, 26.848427), (36.95369, 20.336832, 26.848427), (36.04197, 22.699526, 26.186026), (34.622105, 22.699526, 28.036428), (35.49791, 20.336832, 28.74564), (35.49791, 20.336832, 28.74564), (34.622105, 22.699526, 28.036428), (33.107346, 22.699526, 29.809986), (33.944828, 20.336832, 30.564062), (33.944828, 20.336832, 30.564062), (33.107346, 22.699526, 29.809986), (31.501839, 22.699526, 31.501839), (32.29871, 20.336832, 32.29871), (32.29871, 20.336832, 32.29871), (31.501839, 22.699526, 31.501839), (29.809986, 22.699526, 33.107346), (30.564062, 20.336832, 33.944828), (30.564062, 20.336832, 33.944828), (29.809986, 22.699526, 33.107346), (28.036428, 22.699526, 34.622105), (28.74564, 20.336832, 35.49791), (28.74564, 20.336832, 35.49791), (28.036428, 22.699526, 34.622105), (26.186026, 22.699526, 36.04197), (26.848427, 20.336832, 36.95369), (26.848427, 20.336832, 36.95369), (26.186026, 22.699526, 36.04197), (24.263847, 22.699526, 37.36305), (24.877626, 20.336832, 38.308186), (24.877626, 20.336832, 38.308186), (24.263847, 22.699526, 37.36305), (22.275164, 22.699526, 38.581715), (22.838636, 20.336832, 39.55768), (22.838636, 20.336832, 39.55768), (22.275164, 22.699526, 38.581715), (20.225426, 22.699526, 39.69463), (20.737047, 20.336832, 40.69875), (20.737047, 20.336832, 40.69875), (20.225426, 22.699526, 39.69463), (18.12025, 22.699526, 40.69875), (18.57862, 20.336832, 41.728264), (18.57862, 20.336832, 41.728264), (18.12025, 22.699526, 40.69875), (15.965409, 22.699526, 41.591312), (16.36927, 20.336832, 42.64341), (16.36927, 20.336832, 42.64341), (15.965409, 22.699526, 41.591312), (13.766808, 22.699526, 42.369877), (14.115053, 20.336832, 43.44167), (14.115053, 20.336832, 43.44167), (13.766808, 22.699526, 42.369877), (11.530473, 22.699526, 43.03231), (11.822148, 20.336832, 44.120857), (11.822148, 20.336832, 44.120857), (11.530473, 22.699526, 43.03231), (9.262533, 22.699526, 43.576794), (9.496839, 20.336832, 44.679115), (9.496839, 20.336832, 44.679115), (9.262533, 22.699526, 43.576794), (6.9692063, 22.699526, 44.00184), (7.1454997, 20.336832, 45.11491), (7.1454997, 20.336832, 45.11491), (6.9692063, 22.699526, 44.00184), (4.656777, 22.699526, 44.306274), (4.774575, 20.336832, 45.427048), (4.774575, 20.336832, 45.427048), (4.656777, 22.699526, 44.306274), (2.331584, 22.699526, 44.489273), (2.3905637, 20.336832, 45.614674), (2.3905637, 20.336832, 45.614674), (2.331584, 22.699526, 44.489273), (2.7279206e-15, 22.699526, 44.550327), (2.7969263e-15, 20.336832, 45.677273), (2.7969263e-15, 20.336832, 45.677273), (2.7279206e-15, 22.699526, 44.550327), (-2.331584, 22.699526, 44.489273), (-2.3905637, 20.336832, 45.614674), (-2.3905637, 20.336832, 45.614674), (-2.331584, 22.699526, 44.489273), (-4.656777, 22.699526, 44.306274), (-4.774575, 20.336832, 45.427048), (-4.774575, 20.336832, 45.427048), (-4.656777, 22.699526, 44.306274), (-6.9692063, 22.699526, 44.00184), (-7.1454997, 20.336832, 45.11491), (-7.1454997, 20.336832, 45.11491), (-6.9692063, 22.699526, 44.00184), (-9.262533, 22.699526, 43.576794), (-9.496839, 20.336832, 44.679115), (-9.496839, 20.336832, 44.679115), (-9.262533, 22.699526, 43.576794), (-11.530473, 22.699526, 43.03231), (-11.822148, 20.336832, 44.120857), (-11.822148, 20.336832, 44.120857), (-11.530473, 22.699526, 43.03231), (-13.766808, 22.699526, 42.369877), (-14.115053, 20.336832, 43.44167), (-14.115053, 20.336832, 43.44167), (-13.766808, 22.699526, 42.369877), (-15.965409, 22.699526, 41.591312), (-16.36927, 20.336832, 42.64341), (-16.36927, 20.336832, 42.64341), (-15.965409, 22.699526, 41.591312), (-18.12025, 22.699526, 40.69875), (-18.57862, 20.336832, 41.728264), (-18.57862, 20.336832, 41.728264), (-18.12025, 22.699526, 40.69875), (-20.225426, 22.699526, 39.69463), (-20.737047, 20.336832, 40.69875), (-20.737047, 20.336832, 40.69875), (-20.225426, 22.699526, 39.69463), (-22.275164, 22.699526, 38.581715), (-22.838636, 20.336832, 39.55768), (-22.838636, 20.336832, 39.55768), (-22.275164, 22.699526, 38.581715), (-24.263847, 22.699526, 37.36305), (-24.877626, 20.336832, 38.308186), (-24.877626, 20.336832, 38.308186), (-24.263847, 22.699526, 37.36305), (-26.186026, 22.699526, 36.04197), (-26.848427, 20.336832, 36.95369), (-26.848427, 20.336832, 36.95369), (-26.186026, 22.699526, 36.04197), (-28.036428, 22.699526, 34.622105), (-28.74564, 20.336832, 35.49791), (-28.74564, 20.336832, 35.49791), (-28.036428, 22.699526, 34.622105), (-29.809986, 22.699526, 33.107346), (-30.564062, 20.336832, 33.944828), (-30.564062, 20.336832, 33.944828), (-29.809986, 22.699526, 33.107346), (-31.501839, 22.699526, 31.501839), (-32.29871, 20.336832, 32.29871), (-32.29871, 20.336832, 32.29871), (-31.501839, 22.699526, 31.501839), (-33.107346, 22.699526, 29.809986), (-33.944828, 20.336832, 30.564062), (-33.944828, 20.336832, 30.564062), (-33.107346, 22.699526, 29.809986), (-34.622105, 22.699526, 28.036428), (-35.49791, 20.336832, 28.74564), (-35.49791, 20.336832, 28.74564), (-34.622105, 22.699526, 28.036428), (-36.04197, 22.699526, 26.186026), (-36.95369, 20.336832, 26.848427), (-36.95369, 20.336832, 26.848427), (-36.04197, 22.699526, 26.186026), (-37.36305, 22.699526, 24.263847), (-38.308186, 20.336832, 24.877626), (-38.308186, 20.336832, 24.877626), (-37.36305, 22.699526, 24.263847), (-38.581715, 22.699526, 22.275164), (-39.55768, 20.336832, 22.838636), (-39.55768, 20.336832, 22.838636), (-38.581715, 22.699526, 22.275164), (-39.69463, 22.699526, 20.225426), (-40.69875, 20.336832, 20.737047), (-40.69875, 20.336832, 20.737047), (-39.69463, 22.699526, 20.225426), (-40.69875, 22.699526, 18.12025), (-41.728264, 20.336832, 18.57862), (-41.728264, 20.336832, 18.57862), (-40.69875, 22.699526, 18.12025), (-41.591312, 22.699526, 15.965409), (-42.64341, 20.336832, 16.36927), (-42.64341, 20.336832, 16.36927), (-41.591312, 22.699526, 15.965409), (-42.369877, 22.699526, 13.766808), (-43.44167, 20.336832, 14.115053), (-43.44167, 20.336832, 14.115053), (-42.369877, 22.699526, 13.766808), (-43.03231, 22.699526, 11.530473), (-44.120857, 20.336832, 11.822148), (-44.120857, 20.336832, 11.822148), (-43.03231, 22.699526, 11.530473), (-43.576794, 22.699526, 9.262533), (-44.679115, 20.336832, 9.496839), (-44.679115, 20.336832, 9.496839), (-43.576794, 22.699526, 9.262533), (-44.00184, 22.699526, 6.9692063), (-45.11491, 20.336832, 7.1454997), (-45.11491, 20.336832, 7.1454997), (-44.00184, 22.699526, 6.9692063), (-44.306274, 22.699526, 4.656777), (-45.427048, 20.336832, 4.774575), (-45.427048, 20.336832, 4.774575), (-44.306274, 22.699526, 4.656777), (-44.489273, 22.699526, 2.331584), (-45.614674, 20.336832, 2.3905637), (-45.614674, 20.336832, 2.3905637), (-44.489273, 22.699526, 2.331584), (-44.550327, 22.699526, 5.4558413e-15), (-45.677273, 20.336832, 5.5938526e-15), (-45.677273, 20.336832, 5.5938526e-15), (-44.550327, 22.699526, 5.4558413e-15), (-44.489273, 22.699526, -2.331584), (-45.614674, 20.336832, -2.3905637), (-45.614674, 20.336832, -2.3905637), (-44.489273, 22.699526, -2.331584), (-44.306274, 22.699526, -4.656777), (-45.427048, 20.336832, -4.774575), (-45.427048, 20.336832, -4.774575), (-44.306274, 22.699526, -4.656777), (-44.00184, 22.699526, -6.9692063), (-45.11491, 20.336832, -7.1454997), (-45.11491, 20.336832, -7.1454997), (-44.00184, 22.699526, -6.9692063), (-43.576794, 22.699526, -9.262533), (-44.679115, 20.336832, -9.496839), (-44.679115, 20.336832, -9.496839), (-43.576794, 22.699526, -9.262533), (-43.03231, 22.699526, -11.530473), (-44.120857, 20.336832, -11.822148), (-44.120857, 20.336832, -11.822148), (-43.03231, 22.699526, -11.530473), (-42.369877, 22.699526, -13.766808), (-43.44167, 20.336832, -14.115053), (-43.44167, 20.336832, -14.115053), (-42.369877, 22.699526, -13.766808), (-41.591312, 22.699526, -15.965409), (-42.64341, 20.336832, -16.36927), (-42.64341, 20.336832, -16.36927), (-41.591312, 22.699526, -15.965409), (-40.69875, 22.699526, -18.12025), (-41.728264, 20.336832, -18.57862), (-41.728264, 20.336832, -18.57862), (-40.69875, 22.699526, -18.12025), (-39.69463, 22.699526, -20.225426), (-40.69875, 20.336832, -20.737047), (-40.69875, 20.336832, -20.737047), (-39.69463, 22.699526, -20.225426), (-38.581715, 22.699526, -22.275164), (-39.55768, 20.336832, -22.838636), (-39.55768, 20.336832, -22.838636), (-38.581715, 22.699526, -22.275164), (-37.36305, 22.699526, -24.263847), (-38.308186, 20.336832, -24.877626), (-38.308186, 20.336832, -24.877626), (-37.36305, 22.699526, -24.263847), (-36.04197, 22.699526, -26.186026), (-36.95369, 20.336832, -26.848427), (-36.95369, 20.336832, -26.848427), (-36.04197, 22.699526, -26.186026), (-34.622105, 22.699526, -28.036428), (-35.49791, 20.336832, -28.74564), (-35.49791, 20.336832, -28.74564), (-34.622105, 22.699526, -28.036428), (-33.107346, 22.699526, -29.809986), (-33.944828, 20.336832, -30.564062), (-33.944828, 20.336832, -30.564062), (-33.107346, 22.699526, -29.809986), (-31.501839, 22.699526, -31.501839), (-32.29871, 20.336832, -32.29871), (-32.29871, 20.336832, -32.29871), (-31.501839, 22.699526, -31.501839), (-29.809986, 22.699526, -33.107346), (-30.564062, 20.336832, -33.944828), (-30.564062, 20.336832, -33.944828), (-29.809986, 22.699526, -33.107346), (-28.036428, 22.699526, -34.622105), (-28.74564, 20.336832, -35.49791), (-28.74564, 20.336832, -35.49791), (-28.036428, 22.699526, -34.622105), (-26.186026, 22.699526, -36.04197), (-26.848427, 20.336832, -36.95369), (-26.848427, 20.336832, -36.95369), (-26.186026, 22.699526, -36.04197), (-24.263847, 22.699526, -37.36305), (-24.877626, 20.336832, -38.308186), (-24.877626, 20.336832, -38.308186), (-24.263847, 22.699526, -37.36305), (-22.275164, 22.699526, -38.581715), (-22.838636, 20.336832, -39.55768), (-22.838636, 20.336832, -39.55768), (-22.275164, 22.699526, -38.581715), (-20.225426, 22.699526, -39.69463), (-20.737047, 20.336832, -40.69875), (-20.737047, 20.336832, -40.69875), (-20.225426, 22.699526, -39.69463), (-18.12025, 22.699526, -40.69875), (-18.57862, 20.336832, -41.728264), (-18.57862, 20.336832, -41.728264), (-18.12025, 22.699526, -40.69875), (-15.965409, 22.699526, -41.591312), (-16.36927, 20.336832, -42.64341), (-16.36927, 20.336832, -42.64341), (-15.965409, 22.699526, -41.591312), (-13.766808, 22.699526, -42.369877), (-14.115053, 20.336832, -43.44167), (-14.115053, 20.336832, -43.44167), (-13.766808, 22.699526, -42.369877), (-11.530473, 22.699526, -43.03231), (-11.822148, 20.336832, -44.120857), (-11.822148, 20.336832, -44.120857), (-11.530473, 22.699526, -43.03231), (-9.262533, 22.699526, -43.576794), (-9.496839, 20.336832, -44.679115), (-9.496839, 20.336832, -44.679115), (-9.262533, 22.699526, -43.576794), (-6.9692063, 22.699526, -44.00184), (-7.1454997, 20.336832, -45.11491), (-7.1454997, 20.336832, -45.11491), (-6.9692063, 22.699526, -44.00184), (-4.656777, 22.699526, -44.306274), (-4.774575, 20.336832, -45.427048), (-4.774575, 20.336832, -45.427048), (-4.656777, 22.699526, -44.306274), (-2.331584, 22.699526, -44.489273), (-2.3905637, 20.336832, -45.614674), (-2.3905637, 20.336832, -45.614674), (-2.331584, 22.699526, -44.489273), (-8.183762e-15, 22.699526, -44.550327), (-8.390779e-15, 20.336832, -45.677273), (-8.390779e-15, 20.336832, -45.677273), (-8.183762e-15, 22.699526, -44.550327), (2.331584, 22.699526, -44.489273), (2.3905637, 20.336832, -45.614674), (2.3905637, 20.336832, -45.614674), (2.331584, 22.699526, -44.489273), (4.656777, 22.699526, -44.306274), (4.774575, 20.336832, -45.427048), (4.774575, 20.336832, -45.427048), (4.656777, 22.699526, -44.306274), (6.9692063, 22.699526, -44.00184), (7.1454997, 20.336832, -45.11491), (7.1454997, 20.336832, -45.11491), (6.9692063, 22.699526, -44.00184), (9.262533, 22.699526, -43.576794), (9.496839, 20.336832, -44.679115), (9.496839, 20.336832, -44.679115), (9.262533, 22.699526, -43.576794), (11.530473, 22.699526, -43.03231), (11.822148, 20.336832, -44.120857), (11.822148, 20.336832, -44.120857), (11.530473, 22.699526, -43.03231), (13.766808, 22.699526, -42.369877), (14.115053, 20.336832, -43.44167), (14.115053, 20.336832, -43.44167), (13.766808, 22.699526, -42.369877), (15.965409, 22.699526, -41.591312), (16.36927, 20.336832, -42.64341), (16.36927, 20.336832, -42.64341), (15.965409, 22.699526, -41.591312), (18.12025, 22.699526, -40.69875), (18.57862, 20.336832, -41.728264), (18.57862, 20.336832, -41.728264), (18.12025, 22.699526, -40.69875), (20.225426, 22.699526, -39.69463), (20.737047, 20.336832, -40.69875), (20.737047, 20.336832, -40.69875), (20.225426, 22.699526, -39.69463), (22.275164, 22.699526, -38.581715), (22.838636, 20.336832, -39.55768), (22.838636, 20.336832, -39.55768), (22.275164, 22.699526, -38.581715), (24.263847, 22.699526, -37.36305), (24.877626, 20.336832, -38.308186), (24.877626, 20.336832, -38.308186), (24.263847, 22.699526, -37.36305), (26.186026, 22.699526, -36.04197), (26.848427, 20.336832, -36.95369), (26.848427, 20.336832, -36.95369), (26.186026, 22.699526, -36.04197), (28.036428, 22.699526, -34.622105), (28.74564, 20.336832, -35.49791), (28.74564, 20.336832, -35.49791), (28.036428, 22.699526, -34.622105), (29.809986, 22.699526, -33.107346), (30.564062, 20.336832, -33.944828), (30.564062, 20.336832, -33.944828), (29.809986, 22.699526, -33.107346), (31.501839, 22.699526, -31.501839), (32.29871, 20.336832, -32.29871), (32.29871, 20.336832, -32.29871), (31.501839, 22.699526, -31.501839), (33.107346, 22.699526, -29.809986), (33.944828, 20.336832, -30.564062), (33.944828, 20.336832, -30.564062), (33.107346, 22.699526, -29.809986), (34.622105, 22.699526, -28.036428), (35.49791, 20.336832, -28.74564), (35.49791, 20.336832, -28.74564), (34.622105, 22.699526, -28.036428), (36.04197, 22.699526, -26.186026), (36.95369, 20.336832, -26.848427), (36.95369, 20.336832, -26.848427), (36.04197, 22.699526, -26.186026), (37.36305, 22.699526, -24.263847), (38.308186, 20.336832, -24.877626), (38.308186, 20.336832, -24.877626), (37.36305, 22.699526, -24.263847), (38.581715, 22.699526, -22.275164), (39.55768, 20.336832, -22.838636), (39.55768, 20.336832, -22.838636), (38.581715, 22.699526, -22.275164), (39.69463, 22.699526, -20.225426), (40.69875, 20.336832, -20.737047), (40.69875, 20.336832, -20.737047), (39.69463, 22.699526, -20.225426), (40.69875, 22.699526, -18.12025), (41.728264, 20.336832, -18.57862), (41.728264, 20.336832, -18.57862), (40.69875, 22.699526, -18.12025), (41.591312, 22.699526, -15.965409), (42.64341, 20.336832, -16.36927), (42.64341, 20.336832, -16.36927), (41.591312, 22.699526, -15.965409), (42.369877, 22.699526, -13.766808), (43.44167, 20.336832, -14.115053), (43.44167, 20.336832, -14.115053), (42.369877, 22.699526, -13.766808), (43.03231, 22.699526, -11.530473), (44.120857, 20.336832, -11.822148), (44.120857, 20.336832, -11.822148), (43.03231, 22.699526, -11.530473), (43.576794, 22.699526, -9.262533), (44.679115, 20.336832, -9.496839), (44.679115, 20.336832, -9.496839), (43.576794, 22.699526, -9.262533), (44.00184, 22.699526, -6.9692063), (45.11491, 20.336832, -7.1454997), (45.11491, 20.336832, -7.1454997), (44.00184, 22.699526, -6.9692063), (44.306274, 22.699526, -4.656777), (45.427048, 20.336832, -4.774575), (45.427048, 20.336832, -4.774575), (44.306274, 22.699526, -4.656777), (44.489273, 22.699526, -2.331584), (45.614674, 20.336832, -2.3905637), (45.614674, 20.336832, -2.3905637), (44.489273, 22.699526, -2.331584), (44.550327, 22.699526, 0), (45.677273, 20.336832, 0), (44.550327, 22.699526, 0), (43.30127, 25, 0), (43.24193, 25, 2.2662134), (44.489273, 22.699526, 2.331584), (44.489273, 22.699526, 2.331584), (43.24193, 25, 2.2662134), (43.06406, 25, 4.526215), (44.306274, 22.699526, 4.656777), (44.306274, 22.699526, 4.656777), (43.06406, 25, 4.526215), (42.768158, 25, 6.773811), (44.00184, 22.699526, 6.9692063), (44.00184, 22.699526, 6.9692063), (42.768158, 25, 6.773811), (42.355034, 25, 9.00284), (43.576794, 22.699526, 9.262533), (43.576794, 22.699526, 9.262533), (42.355034, 25, 9.00284), (41.825813, 25, 11.207193), (43.03231, 22.699526, 11.530473), (43.03231, 22.699526, 11.530473), (41.825813, 25, 11.207193), (41.181953, 25, 13.380828), (42.369877, 22.699526, 13.766808), (42.369877, 22.699526, 13.766808), (41.181953, 25, 13.380828), (40.425217, 25, 15.517787), (41.591312, 22.699526, 15.965409), (41.591312, 22.699526, 15.965409), (40.425217, 25, 15.517787), (39.55768, 25, 17.612213), (40.69875, 22.699526, 18.12025), (40.69875, 22.699526, 18.12025), (39.55768, 25, 17.612213), (38.581715, 25, 19.658365), (39.69463, 22.699526, 20.225426), (39.69463, 22.699526, 20.225426), (38.581715, 25, 19.658365), (37.5, 25, 21.650635), (38.581715, 22.699526, 22.275164), (38.581715, 22.699526, 22.275164), (37.5, 25, 21.650635), (36.315502, 25, 23.583563), (37.36305, 22.699526, 24.263847), (37.36305, 22.699526, 24.263847), (36.315502, 25, 23.583563), (35.031464, 25, 25.451847), (36.04197, 22.699526, 26.186026), (36.04197, 22.699526, 26.186026), (35.031464, 25, 25.451847), (33.65141, 25, 27.250372), (34.622105, 22.699526, 28.036428), (34.622105, 22.699526, 28.036428), (33.65141, 25, 27.250372), (32.179115, 25, 28.974205), (33.107346, 22.699526, 29.809986), (33.107346, 22.699526, 29.809986), (32.179115, 25, 28.974205), (30.618622, 25, 30.618622), (31.501839, 22.699526, 31.501839), (31.501839, 22.699526, 31.501839), (30.618622, 25, 30.618622), (28.974205, 25, 32.179115), (29.809986, 22.699526, 33.107346), (29.809986, 22.699526, 33.107346), (28.974205, 25, 32.179115), (27.250372, 25, 33.65141), (28.036428, 22.699526, 34.622105), (28.036428, 22.699526, 34.622105), (27.250372, 25, 33.65141), (25.451847, 25, 35.031464), (26.186026, 22.699526, 36.04197), (26.186026, 22.699526, 36.04197), (25.451847, 25, 35.031464), (23.583563, 25, 36.315502), (24.263847, 22.699526, 37.36305), (24.263847, 22.699526, 37.36305), (23.583563, 25, 36.315502), (21.650635, 25, 37.5), (22.275164, 22.699526, 38.581715), (22.275164, 22.699526, 38.581715), (21.650635, 25, 37.5), (19.658365, 25, 38.581715), (20.225426, 22.699526, 39.69463), (20.225426, 22.699526, 39.69463), (19.658365, 25, 38.581715), (17.612213, 25, 39.55768), (18.12025, 22.699526, 40.69875), (18.12025, 22.699526, 40.69875), (17.612213, 25, 39.55768), (15.517787, 25, 40.425217), (15.965409, 22.699526, 41.591312), (15.965409, 22.699526, 41.591312), (15.517787, 25, 40.425217), (13.380828, 25, 41.181953), (13.766808, 22.699526, 42.369877), (13.766808, 22.699526, 42.369877), (13.380828, 25, 41.181953), (11.207193, 25, 41.825813), (11.530473, 22.699526, 43.03231), (11.530473, 22.699526, 43.03231), (11.207193, 25, 41.825813), (9.00284, 25, 42.355034), (9.262533, 22.699526, 43.576794), (9.262533, 22.699526, 43.576794), (9.00284, 25, 42.355034), (6.773811, 25, 42.768158), (6.9692063, 22.699526, 44.00184), (6.9692063, 22.699526, 44.00184), (6.773811, 25, 42.768158), (4.526215, 25, 43.06406), (4.656777, 22.699526, 44.306274), (4.656777, 22.699526, 44.306274), (4.526215, 25, 43.06406), (2.2662134, 25, 43.24193), (2.331584, 22.699526, 44.489273), (2.331584, 22.699526, 44.489273), (2.2662134, 25, 43.24193), (2.651438e-15, 25, 43.30127), (2.7279206e-15, 22.699526, 44.550327), (2.7279206e-15, 22.699526, 44.550327), (2.651438e-15, 25, 43.30127), (-2.2662134, 25, 43.24193), (-2.331584, 22.699526, 44.489273), (-2.331584, 22.699526, 44.489273), (-2.2662134, 25, 43.24193), (-4.526215, 25, 43.06406), (-4.656777, 22.699526, 44.306274), (-4.656777, 22.699526, 44.306274), (-4.526215, 25, 43.06406), (-6.773811, 25, 42.768158), (-6.9692063, 22.699526, 44.00184), (-6.9692063, 22.699526, 44.00184), (-6.773811, 25, 42.768158), (-9.00284, 25, 42.355034), (-9.262533, 22.699526, 43.576794), (-9.262533, 22.699526, 43.576794), (-9.00284, 25, 42.355034), (-11.207193, 25, 41.825813), (-11.530473, 22.699526, 43.03231), (-11.530473, 22.699526, 43.03231), (-11.207193, 25, 41.825813), (-13.380828, 25, 41.181953), (-13.766808, 22.699526, 42.369877), (-13.766808, 22.699526, 42.369877), (-13.380828, 25, 41.181953), (-15.517787, 25, 40.425217), (-15.965409, 22.699526, 41.591312), (-15.965409, 22.699526, 41.591312), (-15.517787, 25, 40.425217), (-17.612213, 25, 39.55768), (-18.12025, 22.699526, 40.69875), (-18.12025, 22.699526, 40.69875), (-17.612213, 25, 39.55768), (-19.658365, 25, 38.581715), (-20.225426, 22.699526, 39.69463), (-20.225426, 22.699526, 39.69463), (-19.658365, 25, 38.581715), (-21.650635, 25, 37.5), (-22.275164, 22.699526, 38.581715), (-22.275164, 22.699526, 38.581715), (-21.650635, 25, 37.5), (-23.583563, 25, 36.315502), (-24.263847, 22.699526, 37.36305), (-24.263847, 22.699526, 37.36305), (-23.583563, 25, 36.315502), (-25.451847, 25, 35.031464), (-26.186026, 22.699526, 36.04197), (-26.186026, 22.699526, 36.04197), (-25.451847, 25, 35.031464), (-27.250372, 25, 33.65141), (-28.036428, 22.699526, 34.622105), (-28.036428, 22.699526, 34.622105), (-27.250372, 25, 33.65141), (-28.974205, 25, 32.179115), (-29.809986, 22.699526, 33.107346), (-29.809986, 22.699526, 33.107346), (-28.974205, 25, 32.179115), (-30.618622, 25, 30.618622), (-31.501839, 22.699526, 31.501839), (-31.501839, 22.699526, 31.501839), (-30.618622, 25, 30.618622), (-32.179115, 25, 28.974205), (-33.107346, 22.699526, 29.809986), (-33.107346, 22.699526, 29.809986), (-32.179115, 25, 28.974205), (-33.65141, 25, 27.250372), (-34.622105, 22.699526, 28.036428), (-34.622105, 22.699526, 28.036428), (-33.65141, 25, 27.250372), (-35.031464, 25, 25.451847), (-36.04197, 22.699526, 26.186026), (-36.04197, 22.699526, 26.186026), (-35.031464, 25, 25.451847), (-36.315502, 25, 23.583563), (-37.36305, 22.699526, 24.263847), (-37.36305, 22.699526, 24.263847), (-36.315502, 25, 23.583563), (-37.5, 25, 21.650635), (-38.581715, 22.699526, 22.275164), (-38.581715, 22.699526, 22.275164), (-37.5, 25, 21.650635), (-38.581715, 25, 19.658365), (-39.69463, 22.699526, 20.225426), (-39.69463, 22.699526, 20.225426), (-38.581715, 25, 19.658365), (-39.55768, 25, 17.612213), (-40.69875, 22.699526, 18.12025), (-40.69875, 22.699526, 18.12025), (-39.55768, 25, 17.612213), (-40.425217, 25, 15.517787), (-41.591312, 22.699526, 15.965409), (-41.591312, 22.699526, 15.965409), (-40.425217, 25, 15.517787), (-41.181953, 25, 13.380828), (-42.369877, 22.699526, 13.766808), (-42.369877, 22.699526, 13.766808), (-41.181953, 25, 13.380828), (-41.825813, 25, 11.207193), (-43.03231, 22.699526, 11.530473), (-43.03231, 22.699526, 11.530473), (-41.825813, 25, 11.207193), (-42.355034, 25, 9.00284), (-43.576794, 22.699526, 9.262533), (-43.576794, 22.699526, 9.262533), (-42.355034, 25, 9.00284), (-42.768158, 25, 6.773811), (-44.00184, 22.699526, 6.9692063), (-44.00184, 22.699526, 6.9692063), (-42.768158, 25, 6.773811), (-43.06406, 25, 4.526215), (-44.306274, 22.699526, 4.656777), (-44.306274, 22.699526, 4.656777), (-43.06406, 25, 4.526215), (-43.24193, 25, 2.2662134), (-44.489273, 22.699526, 2.331584), (-44.489273, 22.699526, 2.331584), (-43.24193, 25, 2.2662134), (-43.30127, 25, 5.302876e-15), (-44.550327, 22.699526, 5.4558413e-15), (-44.550327, 22.699526, 5.4558413e-15), (-43.30127, 25, 5.302876e-15), (-43.24193, 25, -2.2662134), (-44.489273, 22.699526, -2.331584), (-44.489273, 22.699526, -2.331584), (-43.24193, 25, -2.2662134), (-43.06406, 25, -4.526215), (-44.306274, 22.699526, -4.656777), (-44.306274, 22.699526, -4.656777), (-43.06406, 25, -4.526215), (-42.768158, 25, -6.773811), (-44.00184, 22.699526, -6.9692063), (-44.00184, 22.699526, -6.9692063), (-42.768158, 25, -6.773811), (-42.355034, 25, -9.00284), (-43.576794, 22.699526, -9.262533), (-43.576794, 22.699526, -9.262533), (-42.355034, 25, -9.00284), (-41.825813, 25, -11.207193), (-43.03231, 22.699526, -11.530473), (-43.03231, 22.699526, -11.530473), (-41.825813, 25, -11.207193), (-41.181953, 25, -13.380828), (-42.369877, 22.699526, -13.766808), (-42.369877, 22.699526, -13.766808), (-41.181953, 25, -13.380828), (-40.425217, 25, -15.517787), (-41.591312, 22.699526, -15.965409), (-41.591312, 22.699526, -15.965409), (-40.425217, 25, -15.517787), (-39.55768, 25, -17.612213), (-40.69875, 22.699526, -18.12025), (-40.69875, 22.699526, -18.12025), (-39.55768, 25, -17.612213), (-38.581715, 25, -19.658365), (-39.69463, 22.699526, -20.225426), (-39.69463, 22.699526, -20.225426), (-38.581715, 25, -19.658365), (-37.5, 25, -21.650635), (-38.581715, 22.699526, -22.275164), (-38.581715, 22.699526, -22.275164), (-37.5, 25, -21.650635), (-36.315502, 25, -23.583563), (-37.36305, 22.699526, -24.263847), (-37.36305, 22.699526, -24.263847), (-36.315502, 25, -23.583563), (-35.031464, 25, -25.451847), (-36.04197, 22.699526, -26.186026), (-36.04197, 22.699526, -26.186026), (-35.031464, 25, -25.451847), (-33.65141, 25, -27.250372), (-34.622105, 22.699526, -28.036428), (-34.622105, 22.699526, -28.036428), (-33.65141, 25, -27.250372), (-32.179115, 25, -28.974205), (-33.107346, 22.699526, -29.809986), (-33.107346, 22.699526, -29.809986), (-32.179115, 25, -28.974205), (-30.618622, 25, -30.618622), (-31.501839, 22.699526, -31.501839), (-31.501839, 22.699526, -31.501839), (-30.618622, 25, -30.618622), (-28.974205, 25, -32.179115), (-29.809986, 22.699526, -33.107346), (-29.809986, 22.699526, -33.107346), (-28.974205, 25, -32.179115), (-27.250372, 25, -33.65141), (-28.036428, 22.699526, -34.622105), (-28.036428, 22.699526, -34.622105), (-27.250372, 25, -33.65141), (-25.451847, 25, -35.031464), (-26.186026, 22.699526, -36.04197), (-26.186026, 22.699526, -36.04197), (-25.451847, 25, -35.031464), (-23.583563, 25, -36.315502), (-24.263847, 22.699526, -37.36305), (-24.263847, 22.699526, -37.36305), (-23.583563, 25, -36.315502), (-21.650635, 25, -37.5), (-22.275164, 22.699526, -38.581715), (-22.275164, 22.699526, -38.581715), (-21.650635, 25, -37.5), (-19.658365, 25, -38.581715), (-20.225426, 22.699526, -39.69463), (-20.225426, 22.699526, -39.69463), (-19.658365, 25, -38.581715), (-17.612213, 25, -39.55768), (-18.12025, 22.699526, -40.69875), (-18.12025, 22.699526, -40.69875), (-17.612213, 25, -39.55768), (-15.517787, 25, -40.425217), (-15.965409, 22.699526, -41.591312), (-15.965409, 22.699526, -41.591312), (-15.517787, 25, -40.425217), (-13.380828, 25, -41.181953), (-13.766808, 22.699526, -42.369877), (-13.766808, 22.699526, -42.369877), (-13.380828, 25, -41.181953), (-11.207193, 25, -41.825813), (-11.530473, 22.699526, -43.03231), (-11.530473, 22.699526, -43.03231), (-11.207193, 25, -41.825813), (-9.00284, 25, -42.355034), (-9.262533, 22.699526, -43.576794), (-9.262533, 22.699526, -43.576794), (-9.00284, 25, -42.355034), (-6.773811, 25, -42.768158), (-6.9692063, 22.699526, -44.00184), (-6.9692063, 22.699526, -44.00184), (-6.773811, 25, -42.768158), (-4.526215, 25, -43.06406), (-4.656777, 22.699526, -44.306274), (-4.656777, 22.699526, -44.306274), (-4.526215, 25, -43.06406), (-2.2662134, 25, -43.24193), (-2.331584, 22.699526, -44.489273), (-2.331584, 22.699526, -44.489273), (-2.2662134, 25, -43.24193), (-7.9543145e-15, 25, -43.30127), (-8.183762e-15, 22.699526, -44.550327), (-8.183762e-15, 22.699526, -44.550327), (-7.9543145e-15, 25, -43.30127), (2.2662134, 25, -43.24193), (2.331584, 22.699526, -44.489273), (2.331584, 22.699526, -44.489273), (2.2662134, 25, -43.24193), (4.526215, 25, -43.06406), (4.656777, 22.699526, -44.306274), (4.656777, 22.699526, -44.306274), (4.526215, 25, -43.06406), (6.773811, 25, -42.768158), (6.9692063, 22.699526, -44.00184), (6.9692063, 22.699526, -44.00184), (6.773811, 25, -42.768158), (9.00284, 25, -42.355034), (9.262533, 22.699526, -43.576794), (9.262533, 22.699526, -43.576794), (9.00284, 25, -42.355034), (11.207193, 25, -41.825813), (11.530473, 22.699526, -43.03231), (11.530473, 22.699526, -43.03231), (11.207193, 25, -41.825813), (13.380828, 25, -41.181953), (13.766808, 22.699526, -42.369877), (13.766808, 22.699526, -42.369877), (13.380828, 25, -41.181953), (15.517787, 25, -40.425217), (15.965409, 22.699526, -41.591312), (15.965409, 22.699526, -41.591312), (15.517787, 25, -40.425217), (17.612213, 25, -39.55768), (18.12025, 22.699526, -40.69875), (18.12025, 22.699526, -40.69875), (17.612213, 25, -39.55768), (19.658365, 25, -38.581715), (20.225426, 22.699526, -39.69463), (20.225426, 22.699526, -39.69463), (19.658365, 25, -38.581715), (21.650635, 25, -37.5), (22.275164, 22.699526, -38.581715), (22.275164, 22.699526, -38.581715), (21.650635, 25, -37.5), (23.583563, 25, -36.315502), (24.263847, 22.699526, -37.36305), (24.263847, 22.699526, -37.36305), (23.583563, 25, -36.315502), (25.451847, 25, -35.031464), (26.186026, 22.699526, -36.04197), (26.186026, 22.699526, -36.04197), (25.451847, 25, -35.031464), (27.250372, 25, -33.65141), (28.036428, 22.699526, -34.622105), (28.036428, 22.699526, -34.622105), (27.250372, 25, -33.65141), (28.974205, 25, -32.179115), (29.809986, 22.699526, -33.107346), (29.809986, 22.699526, -33.107346), (28.974205, 25, -32.179115), (30.618622, 25, -30.618622), (31.501839, 22.699526, -31.501839), (31.501839, 22.699526, -31.501839), (30.618622, 25, -30.618622), (32.179115, 25, -28.974205), (33.107346, 22.699526, -29.809986), (33.107346, 22.699526, -29.809986), (32.179115, 25, -28.974205), (33.65141, 25, -27.250372), (34.622105, 22.699526, -28.036428), (34.622105, 22.699526, -28.036428), (33.65141, 25, -27.250372), (35.031464, 25, -25.451847), (36.04197, 22.699526, -26.186026), (36.04197, 22.699526, -26.186026), (35.031464, 25, -25.451847), (36.315502, 25, -23.583563), (37.36305, 22.699526, -24.263847), (37.36305, 22.699526, -24.263847), (36.315502, 25, -23.583563), (37.5, 25, -21.650635), (38.581715, 22.699526, -22.275164), (38.581715, 22.699526, -22.275164), (37.5, 25, -21.650635), (38.581715, 25, -19.658365), (39.69463, 22.699526, -20.225426), (39.69463, 22.699526, -20.225426), (38.581715, 25, -19.658365), (39.55768, 25, -17.612213), (40.69875, 22.699526, -18.12025), (40.69875, 22.699526, -18.12025), (39.55768, 25, -17.612213), (40.425217, 25, -15.517787), (41.591312, 22.699526, -15.965409), (41.591312, 22.699526, -15.965409), (40.425217, 25, -15.517787), (41.181953, 25, -13.380828), (42.369877, 22.699526, -13.766808), (42.369877, 22.699526, -13.766808), (41.181953, 25, -13.380828), (41.825813, 25, -11.207193), (43.03231, 22.699526, -11.530473), (43.03231, 22.699526, -11.530473), (41.825813, 25, -11.207193), (42.355034, 25, -9.00284), (43.576794, 22.699526, -9.262533), (43.576794, 22.699526, -9.262533), (42.355034, 25, -9.00284), (42.768158, 25, -6.773811), (44.00184, 22.699526, -6.9692063), (44.00184, 22.699526, -6.9692063), (42.768158, 25, -6.773811), (43.06406, 25, -4.526215), (44.306274, 22.699526, -4.656777), (44.306274, 22.699526, -4.656777), (43.06406, 25, -4.526215), (43.24193, 25, -2.2662134), (44.489273, 22.699526, -2.331584), (44.489273, 22.699526, -2.331584), (43.24193, 25, -2.2662134), (43.30127, 25, 0), (44.550327, 22.699526, 0), (43.30127, 25, 0), (41.93353, 27.231953, 0), (41.87606, 27.231953, 2.1946313), (43.24193, 25, 2.2662134), (43.24193, 25, 2.2662134), (41.87606, 27.231953, 2.1946313), (41.70381, 27.231953, 4.3832474), (43.06406, 25, 4.526215), (43.06406, 25, 4.526215), (41.70381, 27.231953, 4.3832474), (41.417255, 27.231953, 6.5598493), (42.768158, 25, 6.773811), (42.768158, 25, 6.773811), (41.417255, 27.231953, 6.5598493), (41.01718, 27.231953, 8.718471), (42.355034, 25, 9.00284), (42.355034, 25, 9.00284), (41.01718, 27.231953, 8.718471), (40.504677, 27.231953, 10.853196), (41.825813, 25, 11.207193), (41.825813, 25, 11.207193), (40.504677, 27.231953, 10.853196), (39.881157, 27.231953, 12.958173), (41.181953, 25, 13.380828), (41.181953, 25, 13.380828), (39.881157, 27.231953, 12.958173), (39.148323, 27.231953, 15.027633), (40.425217, 25, 15.517787), (40.425217, 25, 15.517787), (39.148323, 27.231953, 15.027633), (38.308186, 27.231953, 17.055902), (39.55768, 25, 17.612213), (39.55768, 25, 17.612213), (38.308186, 27.231953, 17.055902), (37.36305, 27.231953, 19.037424), (38.581715, 25, 19.658365), (38.581715, 25, 19.658365), (37.36305, 27.231953, 19.037424), (36.315502, 27.231953, 20.966764), (37.5, 25, 21.650635), (37.5, 25, 21.650635), (36.315502, 27.231953, 20.966764), (35.168415, 27.231953, 22.838636), (36.315502, 25, 23.583563), (36.315502, 25, 23.583563), (35.168415, 27.231953, 22.838636), (33.92494, 27.231953, 24.64791), (35.031464, 25, 25.451847), (35.031464, 25, 25.451847), (33.92494, 27.231953, 24.64791), (32.58847, 27.231953, 26.389624), (33.65141, 25, 27.250372), (33.65141, 25, 27.250372), (32.58847, 27.231953, 26.389624), (31.162685, 27.231953, 28.059008), (32.179115, 25, 28.974205), (32.179115, 25, 28.974205), (31.162685, 27.231953, 28.059008), (29.651482, 27.231953, 29.651482), (30.618622, 25, 30.618622), (30.618622, 25, 30.618622), (29.651482, 27.231953, 29.651482), (28.059008, 27.231953, 31.162685), (28.974205, 25, 32.179115), (28.974205, 25, 32.179115), (28.059008, 27.231953, 31.162685), (26.389624, 27.231953, 32.58847), (27.250372, 25, 33.65141), (27.250372, 25, 33.65141), (26.389624, 27.231953, 32.58847), (24.64791, 27.231953, 33.92494), (25.451847, 25, 35.031464), (25.451847, 25, 35.031464), (24.64791, 27.231953, 33.92494), (22.838636, 27.231953, 35.168415), (23.583563, 25, 36.315502), (23.583563, 25, 36.315502), (22.838636, 27.231953, 35.168415), (20.966764, 27.231953, 36.315502), (21.650635, 25, 37.5), (21.650635, 25, 37.5), (20.966764, 27.231953, 36.315502), (19.037424, 27.231953, 37.36305), (19.658365, 25, 38.581715), (19.658365, 25, 38.581715), (19.037424, 27.231953, 37.36305), (17.055902, 27.231953, 38.308186), (17.612213, 25, 39.55768), (17.612213, 25, 39.55768), (17.055902, 27.231953, 38.308186), (15.027633, 27.231953, 39.148323), (15.517787, 25, 40.425217), (15.517787, 25, 40.425217), (15.027633, 27.231953, 39.148323), (12.958173, 27.231953, 39.881157), (13.380828, 25, 41.181953), (13.380828, 25, 41.181953), (12.958173, 27.231953, 39.881157), (10.853196, 27.231953, 40.504677), (11.207193, 25, 41.825813), (11.207193, 25, 41.825813), (10.853196, 27.231953, 40.504677), (8.718471, 27.231953, 41.01718), (9.00284, 25, 42.355034), (9.00284, 25, 42.355034), (8.718471, 27.231953, 41.01718), (6.5598493, 27.231953, 41.417255), (6.773811, 25, 42.768158), (6.773811, 25, 42.768158), (6.5598493, 27.231953, 41.417255), (4.3832474, 27.231953, 41.70381), (4.526215, 25, 43.06406), (4.526215, 25, 43.06406), (4.3832474, 27.231953, 41.70381), (2.1946313, 27.231953, 41.87606), (2.2662134, 25, 43.24193), (2.2662134, 25, 43.24193), (2.1946313, 27.231953, 41.87606), (2.567688e-15, 27.231953, 41.93353), (2.651438e-15, 25, 43.30127), (2.651438e-15, 25, 43.30127), (2.567688e-15, 27.231953, 41.93353), (-2.1946313, 27.231953, 41.87606), (-2.2662134, 25, 43.24193), (-2.2662134, 25, 43.24193), (-2.1946313, 27.231953, 41.87606), (-4.3832474, 27.231953, 41.70381), (-4.526215, 25, 43.06406), (-4.526215, 25, 43.06406), (-4.3832474, 27.231953, 41.70381), (-6.5598493, 27.231953, 41.417255), (-6.773811, 25, 42.768158), (-6.773811, 25, 42.768158), (-6.5598493, 27.231953, 41.417255), (-8.718471, 27.231953, 41.01718), (-9.00284, 25, 42.355034), (-9.00284, 25, 42.355034), (-8.718471, 27.231953, 41.01718), (-10.853196, 27.231953, 40.504677), (-11.207193, 25, 41.825813), (-11.207193, 25, 41.825813), (-10.853196, 27.231953, 40.504677), (-12.958173, 27.231953, 39.881157), (-13.380828, 25, 41.181953), (-13.380828, 25, 41.181953), (-12.958173, 27.231953, 39.881157), (-15.027633, 27.231953, 39.148323), (-15.517787, 25, 40.425217), (-15.517787, 25, 40.425217), (-15.027633, 27.231953, 39.148323), (-17.055902, 27.231953, 38.308186), (-17.612213, 25, 39.55768), (-17.612213, 25, 39.55768), (-17.055902, 27.231953, 38.308186), (-19.037424, 27.231953, 37.36305), (-19.658365, 25, 38.581715), (-19.658365, 25, 38.581715), (-19.037424, 27.231953, 37.36305), (-20.966764, 27.231953, 36.315502), (-21.650635, 25, 37.5), (-21.650635, 25, 37.5), (-20.966764, 27.231953, 36.315502), (-22.838636, 27.231953, 35.168415), (-23.583563, 25, 36.315502), (-23.583563, 25, 36.315502), (-22.838636, 27.231953, 35.168415), (-24.64791, 27.231953, 33.92494), (-25.451847, 25, 35.031464), (-25.451847, 25, 35.031464), (-24.64791, 27.231953, 33.92494), (-26.389624, 27.231953, 32.58847), (-27.250372, 25, 33.65141), (-27.250372, 25, 33.65141), (-26.389624, 27.231953, 32.58847), (-28.059008, 27.231953, 31.162685), (-28.974205, 25, 32.179115), (-28.974205, 25, 32.179115), (-28.059008, 27.231953, 31.162685), (-29.651482, 27.231953, 29.651482), (-30.618622, 25, 30.618622), (-30.618622, 25, 30.618622), (-29.651482, 27.231953, 29.651482), (-31.162685, 27.231953, 28.059008), (-32.179115, 25, 28.974205), (-32.179115, 25, 28.974205), (-31.162685, 27.231953, 28.059008), (-32.58847, 27.231953, 26.389624), (-33.65141, 25, 27.250372), (-33.65141, 25, 27.250372), (-32.58847, 27.231953, 26.389624), (-33.92494, 27.231953, 24.64791), (-35.031464, 25, 25.451847), (-35.031464, 25, 25.451847), (-33.92494, 27.231953, 24.64791), (-35.168415, 27.231953, 22.838636), (-36.315502, 25, 23.583563), (-36.315502, 25, 23.583563), (-35.168415, 27.231953, 22.838636), (-36.315502, 27.231953, 20.966764), (-37.5, 25, 21.650635), (-37.5, 25, 21.650635), (-36.315502, 27.231953, 20.966764), (-37.36305, 27.231953, 19.037424), (-38.581715, 25, 19.658365), (-38.581715, 25, 19.658365), (-37.36305, 27.231953, 19.037424), (-38.308186, 27.231953, 17.055902), (-39.55768, 25, 17.612213), (-39.55768, 25, 17.612213), (-38.308186, 27.231953, 17.055902), (-39.148323, 27.231953, 15.027633), (-40.425217, 25, 15.517787), (-40.425217, 25, 15.517787), (-39.148323, 27.231953, 15.027633), (-39.881157, 27.231953, 12.958173), (-41.181953, 25, 13.380828), (-41.181953, 25, 13.380828), (-39.881157, 27.231953, 12.958173), (-40.504677, 27.231953, 10.853196), (-41.825813, 25, 11.207193), (-41.825813, 25, 11.207193), (-40.504677, 27.231953, 10.853196), (-41.01718, 27.231953, 8.718471), (-42.355034, 25, 9.00284), (-42.355034, 25, 9.00284), (-41.01718, 27.231953, 8.718471), (-41.417255, 27.231953, 6.5598493), (-42.768158, 25, 6.773811), (-42.768158, 25, 6.773811), (-41.417255, 27.231953, 6.5598493), (-41.70381, 27.231953, 4.3832474), (-43.06406, 25, 4.526215), (-43.06406, 25, 4.526215), (-41.70381, 27.231953, 4.3832474), (-41.87606, 27.231953, 2.1946313), (-43.24193, 25, 2.2662134), (-43.24193, 25, 2.2662134), (-41.87606, 27.231953, 2.1946313), (-41.93353, 27.231953, 5.135376e-15), (-43.30127, 25, 5.302876e-15), (-43.30127, 25, 5.302876e-15), (-41.93353, 27.231953, 5.135376e-15), (-41.87606, 27.231953, -2.1946313), (-43.24193, 25, -2.2662134), (-43.24193, 25, -2.2662134), (-41.87606, 27.231953, -2.1946313), (-41.70381, 27.231953, -4.3832474), (-43.06406, 25, -4.526215), (-43.06406, 25, -4.526215), (-41.70381, 27.231953, -4.3832474), (-41.417255, 27.231953, -6.5598493), (-42.768158, 25, -6.773811), (-42.768158, 25, -6.773811), (-41.417255, 27.231953, -6.5598493), (-41.01718, 27.231953, -8.718471), (-42.355034, 25, -9.00284), (-42.355034, 25, -9.00284), (-41.01718, 27.231953, -8.718471), (-40.504677, 27.231953, -10.853196), (-41.825813, 25, -11.207193), (-41.825813, 25, -11.207193), (-40.504677, 27.231953, -10.853196), (-39.881157, 27.231953, -12.958173), (-41.181953, 25, -13.380828), (-41.181953, 25, -13.380828), (-39.881157, 27.231953, -12.958173), (-39.148323, 27.231953, -15.027633), (-40.425217, 25, -15.517787), (-40.425217, 25, -15.517787), (-39.148323, 27.231953, -15.027633), (-38.308186, 27.231953, -17.055902), (-39.55768, 25, -17.612213), (-39.55768, 25, -17.612213), (-38.308186, 27.231953, -17.055902), (-37.36305, 27.231953, -19.037424), (-38.581715, 25, -19.658365), (-38.581715, 25, -19.658365), (-37.36305, 27.231953, -19.037424), (-36.315502, 27.231953, -20.966764), (-37.5, 25, -21.650635), (-37.5, 25, -21.650635), (-36.315502, 27.231953, -20.966764), (-35.168415, 27.231953, -22.838636), (-36.315502, 25, -23.583563), (-36.315502, 25, -23.583563), (-35.168415, 27.231953, -22.838636), (-33.92494, 27.231953, -24.64791), (-35.031464, 25, -25.451847), (-35.031464, 25, -25.451847), (-33.92494, 27.231953, -24.64791), (-32.58847, 27.231953, -26.389624), (-33.65141, 25, -27.250372), (-33.65141, 25, -27.250372), (-32.58847, 27.231953, -26.389624), (-31.162685, 27.231953, -28.059008), (-32.179115, 25, -28.974205), (-32.179115, 25, -28.974205), (-31.162685, 27.231953, -28.059008), (-29.651482, 27.231953, -29.651482), (-30.618622, 25, -30.618622), (-30.618622, 25, -30.618622), (-29.651482, 27.231953, -29.651482), (-28.059008, 27.231953, -31.162685), (-28.974205, 25, -32.179115), (-28.974205, 25, -32.179115), (-28.059008, 27.231953, -31.162685), (-26.389624, 27.231953, -32.58847), (-27.250372, 25, -33.65141), (-27.250372, 25, -33.65141), (-26.389624, 27.231953, -32.58847), (-24.64791, 27.231953, -33.92494), (-25.451847, 25, -35.031464), (-25.451847, 25, -35.031464), (-24.64791, 27.231953, -33.92494), (-22.838636, 27.231953, -35.168415), (-23.583563, 25, -36.315502), (-23.583563, 25, -36.315502), (-22.838636, 27.231953, -35.168415), (-20.966764, 27.231953, -36.315502), (-21.650635, 25, -37.5), (-21.650635, 25, -37.5), (-20.966764, 27.231953, -36.315502), (-19.037424, 27.231953, -37.36305), (-19.658365, 25, -38.581715), (-19.658365, 25, -38.581715), (-19.037424, 27.231953, -37.36305), (-17.055902, 27.231953, -38.308186), (-17.612213, 25, -39.55768), (-17.612213, 25, -39.55768), (-17.055902, 27.231953, -38.308186), (-15.027633, 27.231953, -39.148323), (-15.517787, 25, -40.425217), (-15.517787, 25, -40.425217), (-15.027633, 27.231953, -39.148323), (-12.958173, 27.231953, -39.881157), (-13.380828, 25, -41.181953), (-13.380828, 25, -41.181953), (-12.958173, 27.231953, -39.881157), (-10.853196, 27.231953, -40.504677), (-11.207193, 25, -41.825813), (-11.207193, 25, -41.825813), (-10.853196, 27.231953, -40.504677), (-8.718471, 27.231953, -41.01718), (-9.00284, 25, -42.355034), (-9.00284, 25, -42.355034), (-8.718471, 27.231953, -41.01718), (-6.5598493, 27.231953, -41.417255), (-6.773811, 25, -42.768158), (-6.773811, 25, -42.768158), (-6.5598493, 27.231953, -41.417255), (-4.3832474, 27.231953, -41.70381), (-4.526215, 25, -43.06406), (-4.526215, 25, -43.06406), (-4.3832474, 27.231953, -41.70381), (-2.1946313, 27.231953, -41.87606), (-2.2662134, 25, -43.24193), (-2.2662134, 25, -43.24193), (-2.1946313, 27.231953, -41.87606), (-7.703064e-15, 27.231953, -41.93353), (-7.9543145e-15, 25, -43.30127), (-7.9543145e-15, 25, -43.30127), (-7.703064e-15, 27.231953, -41.93353), (2.1946313, 27.231953, -41.87606), (2.2662134, 25, -43.24193), (2.2662134, 25, -43.24193), (2.1946313, 27.231953, -41.87606), (4.3832474, 27.231953, -41.70381), (4.526215, 25, -43.06406), (4.526215, 25, -43.06406), (4.3832474, 27.231953, -41.70381), (6.5598493, 27.231953, -41.417255), (6.773811, 25, -42.768158), (6.773811, 25, -42.768158), (6.5598493, 27.231953, -41.417255), (8.718471, 27.231953, -41.01718), (9.00284, 25, -42.355034), (9.00284, 25, -42.355034), (8.718471, 27.231953, -41.01718), (10.853196, 27.231953, -40.504677), (11.207193, 25, -41.825813), (11.207193, 25, -41.825813), (10.853196, 27.231953, -40.504677), (12.958173, 27.231953, -39.881157), (13.380828, 25, -41.181953), (13.380828, 25, -41.181953), (12.958173, 27.231953, -39.881157), (15.027633, 27.231953, -39.148323), (15.517787, 25, -40.425217), (15.517787, 25, -40.425217), (15.027633, 27.231953, -39.148323), (17.055902, 27.231953, -38.308186), (17.612213, 25, -39.55768), (17.612213, 25, -39.55768), (17.055902, 27.231953, -38.308186), (19.037424, 27.231953, -37.36305), (19.658365, 25, -38.581715), (19.658365, 25, -38.581715), (19.037424, 27.231953, -37.36305), (20.966764, 27.231953, -36.315502), (21.650635, 25, -37.5), (21.650635, 25, -37.5), (20.966764, 27.231953, -36.315502), (22.838636, 27.231953, -35.168415), (23.583563, 25, -36.315502), (23.583563, 25, -36.315502), (22.838636, 27.231953, -35.168415), (24.64791, 27.231953, -33.92494), (25.451847, 25, -35.031464), (25.451847, 25, -35.031464), (24.64791, 27.231953, -33.92494), (26.389624, 27.231953, -32.58847), (27.250372, 25, -33.65141), (27.250372, 25, -33.65141), (26.389624, 27.231953, -32.58847), (28.059008, 27.231953, -31.162685), (28.974205, 25, -32.179115), (28.974205, 25, -32.179115), (28.059008, 27.231953, -31.162685), (29.651482, 27.231953, -29.651482), (30.618622, 25, -30.618622), (30.618622, 25, -30.618622), (29.651482, 27.231953, -29.651482), (31.162685, 27.231953, -28.059008), (32.179115, 25, -28.974205), (32.179115, 25, -28.974205), (31.162685, 27.231953, -28.059008), (32.58847, 27.231953, -26.389624), (33.65141, 25, -27.250372), (33.65141, 25, -27.250372), (32.58847, 27.231953, -26.389624), (33.92494, 27.231953, -24.64791), (35.031464, 25, -25.451847), (35.031464, 25, -25.451847), (33.92494, 27.231953, -24.64791), (35.168415, 27.231953, -22.838636), (36.315502, 25, -23.583563), (36.315502, 25, -23.583563), (35.168415, 27.231953, -22.838636), (36.315502, 27.231953, -20.966764), (37.5, 25, -21.650635), (37.5, 25, -21.650635), (36.315502, 27.231953, -20.966764), (37.36305, 27.231953, -19.037424), (38.581715, 25, -19.658365), (38.581715, 25, -19.658365), (37.36305, 27.231953, -19.037424), (38.308186, 27.231953, -17.055902), (39.55768, 25, -17.612213), (39.55768, 25, -17.612213), (38.308186, 27.231953, -17.055902), (39.148323, 27.231953, -15.027633), (40.425217, 25, -15.517787), (40.425217, 25, -15.517787), (39.148323, 27.231953, -15.027633), (39.881157, 27.231953, -12.958173), (41.181953, 25, -13.380828), (41.181953, 25, -13.380828), (39.881157, 27.231953, -12.958173), (40.504677, 27.231953, -10.853196), (41.825813, 25, -11.207193), (41.825813, 25, -11.207193), (40.504677, 27.231953, -10.853196), (41.01718, 27.231953, -8.718471), (42.355034, 25, -9.00284), (42.355034, 25, -9.00284), (41.01718, 27.231953, -8.718471), (41.417255, 27.231953, -6.5598493), (42.768158, 25, -6.773811), (42.768158, 25, -6.773811), (41.417255, 27.231953, -6.5598493), (41.70381, 27.231953, -4.3832474), (43.06406, 25, -4.526215), (43.06406, 25, -4.526215), (41.70381, 27.231953, -4.3832474), (41.87606, 27.231953, -2.1946313), (43.24193, 25, -2.2662134), (43.24193, 25, -2.2662134), (41.87606, 27.231953, -2.1946313), (41.93353, 27.231953, 0), (43.30127, 25, 0), (41.93353, 27.231953, 0), (40.45085, 29.389263, 0), (40.395412, 29.389263, 2.117034), (41.87606, 27.231953, 2.1946313), (41.87606, 27.231953, 2.1946313), (40.395412, 29.389263, 2.117034), (40.229256, 29.389263, 4.2282653), (41.70381, 27.231953, 4.3832474), (41.70381, 27.231953, 4.3832474), (40.229256, 29.389263, 4.2282653), (39.95283, 29.389263, 6.327907), (41.417255, 27.231953, 6.5598493), (41.417255, 27.231953, 6.5598493), (39.95283, 29.389263, 6.327907), (39.566902, 29.389263, 8.410205), (41.01718, 27.231953, 8.718471), (41.01718, 27.231953, 8.718471), (39.566902, 29.389263, 8.410205), (39.07252, 29.389263, 10.46945), (40.504677, 27.231953, 10.853196), (40.504677, 27.231953, 10.853196), (39.07252, 29.389263, 10.46945), (38.471043, 29.389263, 12.5), (39.881157, 27.231953, 12.958173), (39.881157, 27.231953, 12.958173), (38.471043, 29.389263, 12.5), (37.764122, 29.389263, 14.496288), (39.148323, 27.231953, 15.027633), (39.148323, 27.231953, 15.027633), (37.764122, 29.389263, 14.496288), (36.95369, 29.389263, 16.452843), (38.308186, 27.231953, 17.055902), (38.308186, 27.231953, 17.055902), (36.95369, 29.389263, 16.452843), (36.04197, 29.389263, 18.364302), (37.36305, 27.231953, 19.037424), (37.36305, 27.231953, 19.037424), (36.04197, 29.389263, 18.364302), (35.031464, 29.389263, 20.225426), (36.315502, 27.231953, 20.966764), (36.315502, 27.231953, 20.966764), (35.031464, 29.389263, 20.225426), (33.92494, 29.389263, 22.031113), (35.168415, 27.231953, 22.838636), (35.168415, 27.231953, 22.838636), (33.92494, 29.389263, 22.031113), (32.725426, 29.389263, 23.776413), (33.92494, 27.231953, 24.64791), (33.92494, 27.231953, 24.64791), (32.725426, 29.389263, 23.776413), (31.436214, 29.389263, 25.456545), (32.58847, 27.231953, 26.389624), (32.58847, 27.231953, 26.389624), (31.436214, 29.389263, 25.456545), (30.06084, 29.389263, 27.066902), (31.162685, 27.231953, 28.059008), (31.162685, 27.231953, 28.059008), (30.06084, 29.389263, 27.066902), (28.60307, 29.389263, 28.60307), (29.651482, 27.231953, 29.651482), (29.651482, 27.231953, 29.651482), (28.60307, 29.389263, 28.60307), (27.066902, 29.389263, 30.06084), (28.059008, 27.231953, 31.162685), (28.059008, 27.231953, 31.162685), (27.066902, 29.389263, 30.06084), (25.456545, 29.389263, 31.436214), (26.389624, 27.231953, 32.58847), (26.389624, 27.231953, 32.58847), (25.456545, 29.389263, 31.436214), (23.776413, 29.389263, 32.725426), (24.64791, 27.231953, 33.92494), (24.64791, 27.231953, 33.92494), (23.776413, 29.389263, 32.725426), (22.031113, 29.389263, 33.92494), (22.838636, 27.231953, 35.168415), (22.838636, 27.231953, 35.168415), (22.031113, 29.389263, 33.92494), (20.225426, 29.389263, 35.031464), (20.966764, 27.231953, 36.315502), (20.966764, 27.231953, 36.315502), (20.225426, 29.389263, 35.031464), (18.364302, 29.389263, 36.04197), (19.037424, 27.231953, 37.36305), (19.037424, 27.231953, 37.36305), (18.364302, 29.389263, 36.04197), (16.452843, 29.389263, 36.95369), (17.055902, 27.231953, 38.308186), (17.055902, 27.231953, 38.308186), (16.452843, 29.389263, 36.95369), (14.496288, 29.389263, 37.764122), (15.027633, 27.231953, 39.148323), (15.027633, 27.231953, 39.148323), (14.496288, 29.389263, 37.764122), (12.5, 29.389263, 38.471043), (12.958173, 27.231953, 39.881157), (12.958173, 27.231953, 39.881157), (12.5, 29.389263, 38.471043), (10.46945, 29.389263, 39.07252), (10.853196, 27.231953, 40.504677), (10.853196, 27.231953, 40.504677), (10.46945, 29.389263, 39.07252), (8.410205, 29.389263, 39.566902), (8.718471, 27.231953, 41.01718), (8.718471, 27.231953, 41.01718), (8.410205, 29.389263, 39.566902), (6.327907, 29.389263, 39.95283), (6.5598493, 27.231953, 41.417255), (6.5598493, 27.231953, 41.417255), (6.327907, 29.389263, 39.95283), (4.2282653, 29.389263, 40.229256), (4.3832474, 27.231953, 41.70381), (4.3832474, 27.231953, 41.70381), (4.2282653, 29.389263, 40.229256), (2.117034, 29.389263, 40.395412), (2.1946313, 27.231953, 41.87606), (2.1946313, 27.231953, 41.87606), (2.117034, 29.389263, 40.395412), (2.4769e-15, 29.389263, 40.45085), (2.567688e-15, 27.231953, 41.93353), (2.567688e-15, 27.231953, 41.93353), (2.4769e-15, 29.389263, 40.45085), (-2.117034, 29.389263, 40.395412), (-2.1946313, 27.231953, 41.87606), (-2.1946313, 27.231953, 41.87606), (-2.117034, 29.389263, 40.395412), (-4.2282653, 29.389263, 40.229256), (-4.3832474, 27.231953, 41.70381), (-4.3832474, 27.231953, 41.70381), (-4.2282653, 29.389263, 40.229256), (-6.327907, 29.389263, 39.95283), (-6.5598493, 27.231953, 41.417255), (-6.5598493, 27.231953, 41.417255), (-6.327907, 29.389263, 39.95283), (-8.410205, 29.389263, 39.566902), (-8.718471, 27.231953, 41.01718), (-8.718471, 27.231953, 41.01718), (-8.410205, 29.389263, 39.566902), (-10.46945, 29.389263, 39.07252), (-10.853196, 27.231953, 40.504677), (-10.853196, 27.231953, 40.504677), (-10.46945, 29.389263, 39.07252), (-12.5, 29.389263, 38.471043), (-12.958173, 27.231953, 39.881157), (-12.958173, 27.231953, 39.881157), (-12.5, 29.389263, 38.471043), (-14.496288, 29.389263, 37.764122), (-15.027633, 27.231953, 39.148323), (-15.027633, 27.231953, 39.148323), (-14.496288, 29.389263, 37.764122), (-16.452843, 29.389263, 36.95369), (-17.055902, 27.231953, 38.308186), (-17.055902, 27.231953, 38.308186), (-16.452843, 29.389263, 36.95369), (-18.364302, 29.389263, 36.04197), (-19.037424, 27.231953, 37.36305), (-19.037424, 27.231953, 37.36305), (-18.364302, 29.389263, 36.04197), (-20.225426, 29.389263, 35.031464), (-20.966764, 27.231953, 36.315502), (-20.966764, 27.231953, 36.315502), (-20.225426, 29.389263, 35.031464), (-22.031113, 29.389263, 33.92494), (-22.838636, 27.231953, 35.168415), (-22.838636, 27.231953, 35.168415), (-22.031113, 29.389263, 33.92494), (-23.776413, 29.389263, 32.725426), (-24.64791, 27.231953, 33.92494), (-24.64791, 27.231953, 33.92494), (-23.776413, 29.389263, 32.725426), (-25.456545, 29.389263, 31.436214), (-26.389624, 27.231953, 32.58847), (-26.389624, 27.231953, 32.58847), (-25.456545, 29.389263, 31.436214), (-27.066902, 29.389263, 30.06084), (-28.059008, 27.231953, 31.162685), (-28.059008, 27.231953, 31.162685), (-27.066902, 29.389263, 30.06084), (-28.60307, 29.389263, 28.60307), (-29.651482, 27.231953, 29.651482), (-29.651482, 27.231953, 29.651482), (-28.60307, 29.389263, 28.60307), (-30.06084, 29.389263, 27.066902), (-31.162685, 27.231953, 28.059008), (-31.162685, 27.231953, 28.059008), (-30.06084, 29.389263, 27.066902), (-31.436214, 29.389263, 25.456545), (-32.58847, 27.231953, 26.389624), (-32.58847, 27.231953, 26.389624), (-31.436214, 29.389263, 25.456545), (-32.725426, 29.389263, 23.776413), (-33.92494, 27.231953, 24.64791), (-33.92494, 27.231953, 24.64791), (-32.725426, 29.389263, 23.776413), (-33.92494, 29.389263, 22.031113), (-35.168415, 27.231953, 22.838636), (-35.168415, 27.231953, 22.838636), (-33.92494, 29.389263, 22.031113), (-35.031464, 29.389263, 20.225426), (-36.315502, 27.231953, 20.966764), (-36.315502, 27.231953, 20.966764), (-35.031464, 29.389263, 20.225426), (-36.04197, 29.389263, 18.364302), (-37.36305, 27.231953, 19.037424), (-37.36305, 27.231953, 19.037424), (-36.04197, 29.389263, 18.364302), (-36.95369, 29.389263, 16.452843), (-38.308186, 27.231953, 17.055902), (-38.308186, 27.231953, 17.055902), (-36.95369, 29.389263, 16.452843), (-37.764122, 29.389263, 14.496288), (-39.148323, 27.231953, 15.027633), (-39.148323, 27.231953, 15.027633), (-37.764122, 29.389263, 14.496288), (-38.471043, 29.389263, 12.5), (-39.881157, 27.231953, 12.958173), (-39.881157, 27.231953, 12.958173), (-38.471043, 29.389263, 12.5), (-39.07252, 29.389263, 10.46945), (-40.504677, 27.231953, 10.853196), (-40.504677, 27.231953, 10.853196), (-39.07252, 29.389263, 10.46945), (-39.566902, 29.389263, 8.410205), (-41.01718, 27.231953, 8.718471), (-41.01718, 27.231953, 8.718471), (-39.566902, 29.389263, 8.410205), (-39.95283, 29.389263, 6.327907), (-41.417255, 27.231953, 6.5598493), (-41.417255, 27.231953, 6.5598493), (-39.95283, 29.389263, 6.327907), (-40.229256, 29.389263, 4.2282653), (-41.70381, 27.231953, 4.3832474), (-41.70381, 27.231953, 4.3832474), (-40.229256, 29.389263, 4.2282653), (-40.395412, 29.389263, 2.117034), (-41.87606, 27.231953, 2.1946313), (-41.87606, 27.231953, 2.1946313), (-40.395412, 29.389263, 2.117034), (-40.45085, 29.389263, 4.9538e-15), (-41.93353, 27.231953, 5.135376e-15), (-41.93353, 27.231953, 5.135376e-15), (-40.45085, 29.389263, 4.9538e-15), (-40.395412, 29.389263, -2.117034), (-41.87606, 27.231953, -2.1946313), (-41.87606, 27.231953, -2.1946313), (-40.395412, 29.389263, -2.117034), (-40.229256, 29.389263, -4.2282653), (-41.70381, 27.231953, -4.3832474), (-41.70381, 27.231953, -4.3832474), (-40.229256, 29.389263, -4.2282653), (-39.95283, 29.389263, -6.327907), (-41.417255, 27.231953, -6.5598493), (-41.417255, 27.231953, -6.5598493), (-39.95283, 29.389263, -6.327907), (-39.566902, 29.389263, -8.410205), (-41.01718, 27.231953, -8.718471), (-41.01718, 27.231953, -8.718471), (-39.566902, 29.389263, -8.410205), (-39.07252, 29.389263, -10.46945), (-40.504677, 27.231953, -10.853196), (-40.504677, 27.231953, -10.853196), (-39.07252, 29.389263, -10.46945), (-38.471043, 29.389263, -12.5), (-39.881157, 27.231953, -12.958173), (-39.881157, 27.231953, -12.958173), (-38.471043, 29.389263, -12.5), (-37.764122, 29.389263, -14.496288), (-39.148323, 27.231953, -15.027633), (-39.148323, 27.231953, -15.027633), (-37.764122, 29.389263, -14.496288), (-36.95369, 29.389263, -16.452843), (-38.308186, 27.231953, -17.055902), (-38.308186, 27.231953, -17.055902), (-36.95369, 29.389263, -16.452843), (-36.04197, 29.389263, -18.364302), (-37.36305, 27.231953, -19.037424), (-37.36305, 27.231953, -19.037424), (-36.04197, 29.389263, -18.364302), (-35.031464, 29.389263, -20.225426), (-36.315502, 27.231953, -20.966764), (-36.315502, 27.231953, -20.966764), (-35.031464, 29.389263, -20.225426), (-33.92494, 29.389263, -22.031113), (-35.168415, 27.231953, -22.838636), (-35.168415, 27.231953, -22.838636), (-33.92494, 29.389263, -22.031113), (-32.725426, 29.389263, -23.776413), (-33.92494, 27.231953, -24.64791), (-33.92494, 27.231953, -24.64791), (-32.725426, 29.389263, -23.776413), (-31.436214, 29.389263, -25.456545), (-32.58847, 27.231953, -26.389624), (-32.58847, 27.231953, -26.389624), (-31.436214, 29.389263, -25.456545), (-30.06084, 29.389263, -27.066902), (-31.162685, 27.231953, -28.059008), (-31.162685, 27.231953, -28.059008), (-30.06084, 29.389263, -27.066902), (-28.60307, 29.389263, -28.60307), (-29.651482, 27.231953, -29.651482), (-29.651482, 27.231953, -29.651482), (-28.60307, 29.389263, -28.60307), (-27.066902, 29.389263, -30.06084), (-28.059008, 27.231953, -31.162685), (-28.059008, 27.231953, -31.162685), (-27.066902, 29.389263, -30.06084), (-25.456545, 29.389263, -31.436214), (-26.389624, 27.231953, -32.58847), (-26.389624, 27.231953, -32.58847), (-25.456545, 29.389263, -31.436214), (-23.776413, 29.389263, -32.725426), (-24.64791, 27.231953, -33.92494), (-24.64791, 27.231953, -33.92494), (-23.776413, 29.389263, -32.725426), (-22.031113, 29.389263, -33.92494), (-22.838636, 27.231953, -35.168415), (-22.838636, 27.231953, -35.168415), (-22.031113, 29.389263, -33.92494), (-20.225426, 29.389263, -35.031464), (-20.966764, 27.231953, -36.315502), (-20.966764, 27.231953, -36.315502), (-20.225426, 29.389263, -35.031464), (-18.364302, 29.389263, -36.04197), (-19.037424, 27.231953, -37.36305), (-19.037424, 27.231953, -37.36305), (-18.364302, 29.389263, -36.04197), (-16.452843, 29.389263, -36.95369), (-17.055902, 27.231953, -38.308186), (-17.055902, 27.231953, -38.308186), (-16.452843, 29.389263, -36.95369), (-14.496288, 29.389263, -37.764122), (-15.027633, 27.231953, -39.148323), (-15.027633, 27.231953, -39.148323), (-14.496288, 29.389263, -37.764122), (-12.5, 29.389263, -38.471043), (-12.958173, 27.231953, -39.881157), (-12.958173, 27.231953, -39.881157), (-12.5, 29.389263, -38.471043), (-10.46945, 29.389263, -39.07252), (-10.853196, 27.231953, -40.504677), (-10.853196, 27.231953, -40.504677), (-10.46945, 29.389263, -39.07252), (-8.410205, 29.389263, -39.566902), (-8.718471, 27.231953, -41.01718), (-8.718471, 27.231953, -41.01718), (-8.410205, 29.389263, -39.566902), (-6.327907, 29.389263, -39.95283), (-6.5598493, 27.231953, -41.417255), (-6.5598493, 27.231953, -41.417255), (-6.327907, 29.389263, -39.95283), (-4.2282653, 29.389263, -40.229256), (-4.3832474, 27.231953, -41.70381), (-4.3832474, 27.231953, -41.70381), (-4.2282653, 29.389263, -40.229256), (-2.117034, 29.389263, -40.395412), (-2.1946313, 27.231953, -41.87606), (-2.1946313, 27.231953, -41.87606), (-2.117034, 29.389263, -40.395412), (-7.430701e-15, 29.389263, -40.45085), (-7.703064e-15, 27.231953, -41.93353), (-7.703064e-15, 27.231953, -41.93353), (-7.430701e-15, 29.389263, -40.45085), (2.117034, 29.389263, -40.395412), (2.1946313, 27.231953, -41.87606), (2.1946313, 27.231953, -41.87606), (2.117034, 29.389263, -40.395412), (4.2282653, 29.389263, -40.229256), (4.3832474, 27.231953, -41.70381), (4.3832474, 27.231953, -41.70381), (4.2282653, 29.389263, -40.229256), (6.327907, 29.389263, -39.95283), (6.5598493, 27.231953, -41.417255), (6.5598493, 27.231953, -41.417255), (6.327907, 29.389263, -39.95283), (8.410205, 29.389263, -39.566902), (8.718471, 27.231953, -41.01718), (8.718471, 27.231953, -41.01718), (8.410205, 29.389263, -39.566902), (10.46945, 29.389263, -39.07252), (10.853196, 27.231953, -40.504677), (10.853196, 27.231953, -40.504677), (10.46945, 29.389263, -39.07252), (12.5, 29.389263, -38.471043), (12.958173, 27.231953, -39.881157), (12.958173, 27.231953, -39.881157), (12.5, 29.389263, -38.471043), (14.496288, 29.389263, -37.764122), (15.027633, 27.231953, -39.148323), (15.027633, 27.231953, -39.148323), (14.496288, 29.389263, -37.764122), (16.452843, 29.389263, -36.95369), (17.055902, 27.231953, -38.308186), (17.055902, 27.231953, -38.308186), (16.452843, 29.389263, -36.95369), (18.364302, 29.389263, -36.04197), (19.037424, 27.231953, -37.36305), (19.037424, 27.231953, -37.36305), (18.364302, 29.389263, -36.04197), (20.225426, 29.389263, -35.031464), (20.966764, 27.231953, -36.315502), (20.966764, 27.231953, -36.315502), (20.225426, 29.389263, -35.031464), (22.031113, 29.389263, -33.92494), (22.838636, 27.231953, -35.168415), (22.838636, 27.231953, -35.168415), (22.031113, 29.389263, -33.92494), (23.776413, 29.389263, -32.725426), (24.64791, 27.231953, -33.92494), (24.64791, 27.231953, -33.92494), (23.776413, 29.389263, -32.725426), (25.456545, 29.389263, -31.436214), (26.389624, 27.231953, -32.58847), (26.389624, 27.231953, -32.58847), (25.456545, 29.389263, -31.436214), (27.066902, 29.389263, -30.06084), (28.059008, 27.231953, -31.162685), (28.059008, 27.231953, -31.162685), (27.066902, 29.389263, -30.06084), (28.60307, 29.389263, -28.60307), (29.651482, 27.231953, -29.651482), (29.651482, 27.231953, -29.651482), (28.60307, 29.389263, -28.60307), (30.06084, 29.389263, -27.066902), (31.162685, 27.231953, -28.059008), (31.162685, 27.231953, -28.059008), (30.06084, 29.389263, -27.066902), (31.436214, 29.389263, -25.456545), (32.58847, 27.231953, -26.389624), (32.58847, 27.231953, -26.389624), (31.436214, 29.389263, -25.456545), (32.725426, 29.389263, -23.776413), (33.92494, 27.231953, -24.64791), (33.92494, 27.231953, -24.64791), (32.725426, 29.389263, -23.776413), (33.92494, 29.389263, -22.031113), (35.168415, 27.231953, -22.838636), (35.168415, 27.231953, -22.838636), (33.92494, 29.389263, -22.031113), (35.031464, 29.389263, -20.225426), (36.315502, 27.231953, -20.966764), (36.315502, 27.231953, -20.966764), (35.031464, 29.389263, -20.225426), (36.04197, 29.389263, -18.364302), (37.36305, 27.231953, -19.037424), (37.36305, 27.231953, -19.037424), (36.04197, 29.389263, -18.364302), (36.95369, 29.389263, -16.452843), (38.308186, 27.231953, -17.055902), (38.308186, 27.231953, -17.055902), (36.95369, 29.389263, -16.452843), (37.764122, 29.389263, -14.496288), (39.148323, 27.231953, -15.027633), (39.148323, 27.231953, -15.027633), (37.764122, 29.389263, -14.496288), (38.471043, 29.389263, -12.5), (39.881157, 27.231953, -12.958173), (39.881157, 27.231953, -12.958173), (38.471043, 29.389263, -12.5), (39.07252, 29.389263, -10.46945), (40.504677, 27.231953, -10.853196), (40.504677, 27.231953, -10.853196), (39.07252, 29.389263, -10.46945), (39.566902, 29.389263, -8.410205), (41.01718, 27.231953, -8.718471), (41.01718, 27.231953, -8.718471), (39.566902, 29.389263, -8.410205), (39.95283, 29.389263, -6.327907), (41.417255, 27.231953, -6.5598493), (41.417255, 27.231953, -6.5598493), (39.95283, 29.389263, -6.327907), (40.229256, 29.389263, -4.2282653), (41.70381, 27.231953, -4.3832474), (41.70381, 27.231953, -4.3832474), (40.229256, 29.389263, -4.2282653), (40.395412, 29.389263, -2.117034), (41.87606, 27.231953, -2.1946313), (41.87606, 27.231953, -2.1946313), (40.395412, 29.389263, -2.117034), (40.45085, 29.389263, 0), (41.93353, 27.231953, 0), (40.45085, 29.389263, 0), (38.8573, 31.466019, 0), (38.804047, 31.466019, 2.033634), (40.395412, 29.389263, 2.117034), (40.395412, 29.389263, 2.117034), (38.804047, 31.466019, 2.033634), (38.644432, 31.466019, 4.0616937), (40.229256, 29.389263, 4.2282653), (40.229256, 29.389263, 4.2282653), (38.644432, 31.466019, 4.0616937), (38.3789, 31.466019, 6.0786204), (39.95283, 29.389263, 6.327907), (39.95283, 29.389263, 6.327907), (38.3789, 31.466019, 6.0786204), (38.00817, 31.466019, 8.078887), (39.566902, 29.389263, 8.410205), (39.566902, 29.389263, 8.410205), (38.00817, 31.466019, 8.078887), (37.533268, 31.466019, 10.057009), (39.07252, 29.389263, 10.46945), (39.07252, 29.389263, 10.46945), (37.533268, 31.466019, 10.057009), (36.955486, 31.466019, 12.0075655), (38.471043, 29.389263, 12.5), (38.471043, 29.389263, 12.5), (36.955486, 31.466019, 12.0075655), (36.276413, 31.466019, 13.92521), (37.764122, 29.389263, 14.496288), (37.764122, 29.389263, 14.496288), (36.276413, 31.466019, 13.92521), (35.49791, 31.466019, 15.804687), (36.95369, 29.389263, 16.452843), (36.95369, 29.389263, 16.452843), (35.49791, 31.466019, 15.804687), (34.622105, 31.466019, 17.640844), (36.04197, 29.389263, 18.364302), (36.04197, 29.389263, 18.364302), (34.622105, 31.466019, 17.640844), (33.65141, 31.466019, 19.42865), (35.031464, 29.389263, 20.225426), (35.031464, 29.389263, 20.225426), (33.65141, 31.466019, 19.42865), (32.58847, 31.466019, 21.1632), (33.92494, 29.389263, 22.031113), (33.92494, 29.389263, 22.031113), (32.58847, 31.466019, 21.1632), (31.436214, 31.466019, 22.839746), (32.725426, 29.389263, 23.776413), (32.725426, 29.389263, 23.776413), (31.436214, 31.466019, 22.839746), (30.197792, 31.466019, 24.45369), (31.436214, 29.389263, 25.456545), (31.436214, 29.389263, 25.456545), (30.197792, 31.466019, 24.45369), (28.8766, 31.466019, 26.000607), (30.06084, 29.389263, 27.066902), (30.06084, 29.389263, 27.066902), (28.8766, 31.466019, 26.000607), (27.47626, 31.466019, 27.47626), (28.60307, 29.389263, 28.60307), (28.60307, 29.389263, 28.60307), (27.47626, 31.466019, 27.47626), (26.000607, 31.466019, 28.8766), (27.066902, 29.389263, 30.06084), (27.066902, 29.389263, 30.06084), (26.000607, 31.466019, 28.8766), (24.45369, 31.466019, 30.197792), (25.456545, 29.389263, 31.436214), (25.456545, 29.389263, 31.436214), (24.45369, 31.466019, 30.197792), (22.839746, 31.466019, 31.436214), (23.776413, 29.389263, 32.725426), (23.776413, 29.389263, 32.725426), (22.839746, 31.466019, 31.436214), (21.1632, 31.466019, 32.58847), (22.031113, 29.389263, 33.92494), (22.031113, 29.389263, 33.92494), (21.1632, 31.466019, 32.58847), (19.42865, 31.466019, 33.65141), (20.225426, 29.389263, 35.031464), (20.225426, 29.389263, 35.031464), (19.42865, 31.466019, 33.65141), (17.640844, 31.466019, 34.622105), (18.364302, 29.389263, 36.04197), (18.364302, 29.389263, 36.04197), (17.640844, 31.466019, 34.622105), (15.804687, 31.466019, 35.49791), (16.452843, 29.389263, 36.95369), (16.452843, 29.389263, 36.95369), (15.804687, 31.466019, 35.49791), (13.92521, 31.466019, 36.276413), (14.496288, 29.389263, 37.764122), (14.496288, 29.389263, 37.764122), (13.92521, 31.466019, 36.276413), (12.0075655, 31.466019, 36.955486), (12.5, 29.389263, 38.471043), (12.5, 29.389263, 38.471043), (12.0075655, 31.466019, 36.955486), (10.057009, 31.466019, 37.533268), (10.46945, 29.389263, 39.07252), (10.46945, 29.389263, 39.07252), (10.057009, 31.466019, 37.533268), (8.078887, 31.466019, 38.00817), (8.410205, 29.389263, 39.566902), (8.410205, 29.389263, 39.566902), (8.078887, 31.466019, 38.00817), (6.0786204, 31.466019, 38.3789), (6.327907, 29.389263, 39.95283), (6.327907, 29.389263, 39.95283), (6.0786204, 31.466019, 38.3789), (4.0616937, 31.466019, 38.644432), (4.2282653, 29.389263, 40.229256), (4.2282653, 29.389263, 40.229256), (4.0616937, 31.466019, 38.644432), (2.033634, 31.466019, 38.804047), (2.117034, 29.389263, 40.395412), (2.117034, 29.389263, 40.395412), (2.033634, 31.466019, 38.804047), (2.3793234e-15, 31.466019, 38.8573), (2.4769e-15, 29.389263, 40.45085), (2.4769e-15, 29.389263, 40.45085), (2.3793234e-15, 31.466019, 38.8573), (-2.033634, 31.466019, 38.804047), (-2.117034, 29.389263, 40.395412), (-2.117034, 29.389263, 40.395412), (-2.033634, 31.466019, 38.804047), (-4.0616937, 31.466019, 38.644432), (-4.2282653, 29.389263, 40.229256), (-4.2282653, 29.389263, 40.229256), (-4.0616937, 31.466019, 38.644432), (-6.0786204, 31.466019, 38.3789), (-6.327907, 29.389263, 39.95283), (-6.327907, 29.389263, 39.95283), (-6.0786204, 31.466019, 38.3789), (-8.078887, 31.466019, 38.00817), (-8.410205, 29.389263, 39.566902), (-8.410205, 29.389263, 39.566902), (-8.078887, 31.466019, 38.00817), (-10.057009, 31.466019, 37.533268), (-10.46945, 29.389263, 39.07252), (-10.46945, 29.389263, 39.07252), (-10.057009, 31.466019, 37.533268), (-12.0075655, 31.466019, 36.955486), (-12.5, 29.389263, 38.471043), (-12.5, 29.389263, 38.471043), (-12.0075655, 31.466019, 36.955486), (-13.92521, 31.466019, 36.276413), (-14.496288, 29.389263, 37.764122), (-14.496288, 29.389263, 37.764122), (-13.92521, 31.466019, 36.276413), (-15.804687, 31.466019, 35.49791), (-16.452843, 29.389263, 36.95369), (-16.452843, 29.389263, 36.95369), (-15.804687, 31.466019, 35.49791), (-17.640844, 31.466019, 34.622105), (-18.364302, 29.389263, 36.04197), (-18.364302, 29.389263, 36.04197), (-17.640844, 31.466019, 34.622105), (-19.42865, 31.466019, 33.65141), (-20.225426, 29.389263, 35.031464), (-20.225426, 29.389263, 35.031464), (-19.42865, 31.466019, 33.65141), (-21.1632, 31.466019, 32.58847), (-22.031113, 29.389263, 33.92494), (-22.031113, 29.389263, 33.92494), (-21.1632, 31.466019, 32.58847), (-22.839746, 31.466019, 31.436214), (-23.776413, 29.389263, 32.725426), (-23.776413, 29.389263, 32.725426), (-22.839746, 31.466019, 31.436214), (-24.45369, 31.466019, 30.197792), (-25.456545, 29.389263, 31.436214), (-25.456545, 29.389263, 31.436214), (-24.45369, 31.466019, 30.197792), (-26.000607, 31.466019, 28.8766), (-27.066902, 29.389263, 30.06084), (-27.066902, 29.389263, 30.06084), (-26.000607, 31.466019, 28.8766), (-27.47626, 31.466019, 27.47626), (-28.60307, 29.389263, 28.60307), (-28.60307, 29.389263, 28.60307), (-27.47626, 31.466019, 27.47626), (-28.8766, 31.466019, 26.000607), (-30.06084, 29.389263, 27.066902), (-30.06084, 29.389263, 27.066902), (-28.8766, 31.466019, 26.000607), (-30.197792, 31.466019, 24.45369), (-31.436214, 29.389263, 25.456545), (-31.436214, 29.389263, 25.456545), (-30.197792, 31.466019, 24.45369), (-31.436214, 31.466019, 22.839746), (-32.725426, 29.389263, 23.776413), (-32.725426, 29.389263, 23.776413), (-31.436214, 31.466019, 22.839746), (-32.58847, 31.466019, 21.1632), (-33.92494, 29.389263, 22.031113), (-33.92494, 29.389263, 22.031113), (-32.58847, 31.466019, 21.1632), (-33.65141, 31.466019, 19.42865), (-35.031464, 29.389263, 20.225426), (-35.031464, 29.389263, 20.225426), (-33.65141, 31.466019, 19.42865), (-34.622105, 31.466019, 17.640844), (-36.04197, 29.389263, 18.364302), (-36.04197, 29.389263, 18.364302), (-34.622105, 31.466019, 17.640844), (-35.49791, 31.466019, 15.804687), (-36.95369, 29.389263, 16.452843), (-36.95369, 29.389263, 16.452843), (-35.49791, 31.466019, 15.804687), (-36.276413, 31.466019, 13.92521), (-37.764122, 29.389263, 14.496288), (-37.764122, 29.389263, 14.496288), (-36.276413, 31.466019, 13.92521), (-36.955486, 31.466019, 12.0075655), (-38.471043, 29.389263, 12.5), (-38.471043, 29.389263, 12.5), (-36.955486, 31.466019, 12.0075655), (-37.533268, 31.466019, 10.057009), (-39.07252, 29.389263, 10.46945), (-39.07252, 29.389263, 10.46945), (-37.533268, 31.466019, 10.057009), (-38.00817, 31.466019, 8.078887), (-39.566902, 29.389263, 8.410205), (-39.566902, 29.389263, 8.410205), (-38.00817, 31.466019, 8.078887), (-38.3789, 31.466019, 6.0786204), (-39.95283, 29.389263, 6.327907), (-39.95283, 29.389263, 6.327907), (-38.3789, 31.466019, 6.0786204), (-38.644432, 31.466019, 4.0616937), (-40.229256, 29.389263, 4.2282653), (-40.229256, 29.389263, 4.2282653), (-38.644432, 31.466019, 4.0616937), (-38.804047, 31.466019, 2.033634), (-40.395412, 29.389263, 2.117034), (-40.395412, 29.389263, 2.117034), (-38.804047, 31.466019, 2.033634), (-38.8573, 31.466019, 4.7586468e-15), (-40.45085, 29.389263, 4.9538e-15), (-40.45085, 29.389263, 4.9538e-15), (-38.8573, 31.466019, 4.7586468e-15), (-38.804047, 31.466019, -2.033634), (-40.395412, 29.389263, -2.117034), (-40.395412, 29.389263, -2.117034), (-38.804047, 31.466019, -2.033634), (-38.644432, 31.466019, -4.0616937), (-40.229256, 29.389263, -4.2282653), (-40.229256, 29.389263, -4.2282653), (-38.644432, 31.466019, -4.0616937), (-38.3789, 31.466019, -6.0786204), (-39.95283, 29.389263, -6.327907), (-39.95283, 29.389263, -6.327907), (-38.3789, 31.466019, -6.0786204), (-38.00817, 31.466019, -8.078887), (-39.566902, 29.389263, -8.410205), (-39.566902, 29.389263, -8.410205), (-38.00817, 31.466019, -8.078887), (-37.533268, 31.466019, -10.057009), (-39.07252, 29.389263, -10.46945), (-39.07252, 29.389263, -10.46945), (-37.533268, 31.466019, -10.057009), (-36.955486, 31.466019, -12.0075655), (-38.471043, 29.389263, -12.5), (-38.471043, 29.389263, -12.5), (-36.955486, 31.466019, -12.0075655), (-36.276413, 31.466019, -13.92521), (-37.764122, 29.389263, -14.496288), (-37.764122, 29.389263, -14.496288), (-36.276413, 31.466019, -13.92521), (-35.49791, 31.466019, -15.804687), (-36.95369, 29.389263, -16.452843), (-36.95369, 29.389263, -16.452843), (-35.49791, 31.466019, -15.804687), (-34.622105, 31.466019, -17.640844), (-36.04197, 29.389263, -18.364302), (-36.04197, 29.389263, -18.364302), (-34.622105, 31.466019, -17.640844), (-33.65141, 31.466019, -19.42865), (-35.031464, 29.389263, -20.225426), (-35.031464, 29.389263, -20.225426), (-33.65141, 31.466019, -19.42865), (-32.58847, 31.466019, -21.1632), (-33.92494, 29.389263, -22.031113), (-33.92494, 29.389263, -22.031113), (-32.58847, 31.466019, -21.1632), (-31.436214, 31.466019, -22.839746), (-32.725426, 29.389263, -23.776413), (-32.725426, 29.389263, -23.776413), (-31.436214, 31.466019, -22.839746), (-30.197792, 31.466019, -24.45369), (-31.436214, 29.389263, -25.456545), (-31.436214, 29.389263, -25.456545), (-30.197792, 31.466019, -24.45369), (-28.8766, 31.466019, -26.000607), (-30.06084, 29.389263, -27.066902), (-30.06084, 29.389263, -27.066902), (-28.8766, 31.466019, -26.000607), (-27.47626, 31.466019, -27.47626), (-28.60307, 29.389263, -28.60307), (-28.60307, 29.389263, -28.60307), (-27.47626, 31.466019, -27.47626), (-26.000607, 31.466019, -28.8766), (-27.066902, 29.389263, -30.06084), (-27.066902, 29.389263, -30.06084), (-26.000607, 31.466019, -28.8766), (-24.45369, 31.466019, -30.197792), (-25.456545, 29.389263, -31.436214), (-25.456545, 29.389263, -31.436214), (-24.45369, 31.466019, -30.197792), (-22.839746, 31.466019, -31.436214), (-23.776413, 29.389263, -32.725426), (-23.776413, 29.389263, -32.725426), (-22.839746, 31.466019, -31.436214), (-21.1632, 31.466019, -32.58847), (-22.031113, 29.389263, -33.92494), (-22.031113, 29.389263, -33.92494), (-21.1632, 31.466019, -32.58847), (-19.42865, 31.466019, -33.65141), (-20.225426, 29.389263, -35.031464), (-20.225426, 29.389263, -35.031464), (-19.42865, 31.466019, -33.65141), (-17.640844, 31.466019, -34.622105), (-18.364302, 29.389263, -36.04197), (-18.364302, 29.389263, -36.04197), (-17.640844, 31.466019, -34.622105), (-15.804687, 31.466019, -35.49791), (-16.452843, 29.389263, -36.95369), (-16.452843, 29.389263, -36.95369), (-15.804687, 31.466019, -35.49791), (-13.92521, 31.466019, -36.276413), (-14.496288, 29.389263, -37.764122), (-14.496288, 29.389263, -37.764122), (-13.92521, 31.466019, -36.276413), (-12.0075655, 31.466019, -36.955486), (-12.5, 29.389263, -38.471043), (-12.5, 29.389263, -38.471043), (-12.0075655, 31.466019, -36.955486), (-10.057009, 31.466019, -37.533268), (-10.46945, 29.389263, -39.07252), (-10.46945, 29.389263, -39.07252), (-10.057009, 31.466019, -37.533268), (-8.078887, 31.466019, -38.00817), (-8.410205, 29.389263, -39.566902), (-8.410205, 29.389263, -39.566902), (-8.078887, 31.466019, -38.00817), (-6.0786204, 31.466019, -38.3789), (-6.327907, 29.389263, -39.95283), (-6.327907, 29.389263, -39.95283), (-6.0786204, 31.466019, -38.3789), (-4.0616937, 31.466019, -38.644432), (-4.2282653, 29.389263, -40.229256), (-4.2282653, 29.389263, -40.229256), (-4.0616937, 31.466019, -38.644432), (-2.033634, 31.466019, -38.804047), (-2.117034, 29.389263, -40.395412), (-2.117034, 29.389263, -40.395412), (-2.033634, 31.466019, -38.804047), (-7.1379695e-15, 31.466019, -38.8573), (-7.430701e-15, 29.389263, -40.45085), (-7.430701e-15, 29.389263, -40.45085), (-7.1379695e-15, 31.466019, -38.8573), (2.033634, 31.466019, -38.804047), (2.117034, 29.389263, -40.395412), (2.117034, 29.389263, -40.395412), (2.033634, 31.466019, -38.804047), (4.0616937, 31.466019, -38.644432), (4.2282653, 29.389263, -40.229256), (4.2282653, 29.389263, -40.229256), (4.0616937, 31.466019, -38.644432), (6.0786204, 31.466019, -38.3789), (6.327907, 29.389263, -39.95283), (6.327907, 29.389263, -39.95283), (6.0786204, 31.466019, -38.3789), (8.078887, 31.466019, -38.00817), (8.410205, 29.389263, -39.566902), (8.410205, 29.389263, -39.566902), (8.078887, 31.466019, -38.00817), (10.057009, 31.466019, -37.533268), (10.46945, 29.389263, -39.07252), (10.46945, 29.389263, -39.07252), (10.057009, 31.466019, -37.533268), (12.0075655, 31.466019, -36.955486), (12.5, 29.389263, -38.471043), (12.5, 29.389263, -38.471043), (12.0075655, 31.466019, -36.955486), (13.92521, 31.466019, -36.276413), (14.496288, 29.389263, -37.764122), (14.496288, 29.389263, -37.764122), (13.92521, 31.466019, -36.276413), (15.804687, 31.466019, -35.49791), (16.452843, 29.389263, -36.95369), (16.452843, 29.389263, -36.95369), (15.804687, 31.466019, -35.49791), (17.640844, 31.466019, -34.622105), (18.364302, 29.389263, -36.04197), (18.364302, 29.389263, -36.04197), (17.640844, 31.466019, -34.622105), (19.42865, 31.466019, -33.65141), (20.225426, 29.389263, -35.031464), (20.225426, 29.389263, -35.031464), (19.42865, 31.466019, -33.65141), (21.1632, 31.466019, -32.58847), (22.031113, 29.389263, -33.92494), (22.031113, 29.389263, -33.92494), (21.1632, 31.466019, -32.58847), (22.839746, 31.466019, -31.436214), (23.776413, 29.389263, -32.725426), (23.776413, 29.389263, -32.725426), (22.839746, 31.466019, -31.436214), (24.45369, 31.466019, -30.197792), (25.456545, 29.389263, -31.436214), (25.456545, 29.389263, -31.436214), (24.45369, 31.466019, -30.197792), (26.000607, 31.466019, -28.8766), (27.066902, 29.389263, -30.06084), (27.066902, 29.389263, -30.06084), (26.000607, 31.466019, -28.8766), (27.47626, 31.466019, -27.47626), (28.60307, 29.389263, -28.60307), (28.60307, 29.389263, -28.60307), (27.47626, 31.466019, -27.47626), (28.8766, 31.466019, -26.000607), (30.06084, 29.389263, -27.066902), (30.06084, 29.389263, -27.066902), (28.8766, 31.466019, -26.000607), (30.197792, 31.466019, -24.45369), (31.436214, 29.389263, -25.456545), (31.436214, 29.389263, -25.456545), (30.197792, 31.466019, -24.45369), (31.436214, 31.466019, -22.839746), (32.725426, 29.389263, -23.776413), (32.725426, 29.389263, -23.776413), (31.436214, 31.466019, -22.839746), (32.58847, 31.466019, -21.1632), (33.92494, 29.389263, -22.031113), (33.92494, 29.389263, -22.031113), (32.58847, 31.466019, -21.1632), (33.65141, 31.466019, -19.42865), (35.031464, 29.389263, -20.225426), (35.031464, 29.389263, -20.225426), (33.65141, 31.466019, -19.42865), (34.622105, 31.466019, -17.640844), (36.04197, 29.389263, -18.364302), (36.04197, 29.389263, -18.364302), (34.622105, 31.466019, -17.640844), (35.49791, 31.466019, -15.804687), (36.95369, 29.389263, -16.452843), (36.95369, 29.389263, -16.452843), (35.49791, 31.466019, -15.804687), (36.276413, 31.466019, -13.92521), (37.764122, 29.389263, -14.496288), (37.764122, 29.389263, -14.496288), (36.276413, 31.466019, -13.92521), (36.955486, 31.466019, -12.0075655), (38.471043, 29.389263, -12.5), (38.471043, 29.389263, -12.5), (36.955486, 31.466019, -12.0075655), (37.533268, 31.466019, -10.057009), (39.07252, 29.389263, -10.46945), (39.07252, 29.389263, -10.46945), (37.533268, 31.466019, -10.057009), (38.00817, 31.466019, -8.078887), (39.566902, 29.389263, -8.410205), (39.566902, 29.389263, -8.410205), (38.00817, 31.466019, -8.078887), (38.3789, 31.466019, -6.0786204), (39.95283, 29.389263, -6.327907), (39.95283, 29.389263, -6.327907), (38.3789, 31.466019, -6.0786204), (38.644432, 31.466019, -4.0616937), (40.229256, 29.389263, -4.2282653), (40.229256, 29.389263, -4.2282653), (38.644432, 31.466019, -4.0616937), (38.804047, 31.466019, -2.033634), (40.395412, 29.389263, -2.117034), (40.395412, 29.389263, -2.117034), (38.804047, 31.466019, -2.033634), (38.8573, 31.466019, 0), (40.45085, 29.389263, 0), (38.8573, 31.466019, 0), (37.15724, 33.45653, 0), (37.10632, 33.45653, 1.9446597), (38.804047, 31.466019, 2.033634), (38.804047, 31.466019, 2.033634), (37.10632, 33.45653, 1.9446597), (36.95369, 33.45653, 3.8839893), (38.644432, 31.466019, 4.0616937), (38.644432, 31.466019, 4.0616937), (36.95369, 33.45653, 3.8839893), (36.699776, 33.45653, 5.812673), (38.3789, 31.466019, 6.0786204), (38.3789, 31.466019, 6.0786204), (36.699776, 33.45653, 5.812673), (36.34527, 33.45653, 7.725425), (38.00817, 31.466019, 8.078887), (38.00817, 31.466019, 8.078887), (36.34527, 33.45653, 7.725425), (35.89114, 33.45653, 9.617002), (37.533268, 31.466019, 10.057009), (37.533268, 31.466019, 10.057009), (35.89114, 33.45653, 9.617002), (35.33864, 33.45653, 11.482219), (36.955486, 31.466019, 12.0075655), (36.955486, 31.466019, 12.0075655), (35.33864, 33.45653, 11.482219), (34.689274, 33.45653, 13.315965), (36.276413, 31.466019, 13.92521), (36.276413, 31.466019, 13.92521), (34.689274, 33.45653, 13.315965), (33.944828, 33.45653, 15.113212), (35.49791, 31.466019, 15.804687), (35.49791, 31.466019, 15.804687), (33.944828, 33.45653, 15.113212), (33.107346, 33.45653, 16.869034), (34.622105, 31.466019, 17.640844), (34.622105, 31.466019, 17.640844), (33.107346, 33.45653, 16.869034), (32.179115, 33.45653, 18.57862), (33.65141, 31.466019, 19.42865), (33.65141, 31.466019, 19.42865), (32.179115, 33.45653, 18.57862), (31.162685, 33.45653, 20.237284), (32.58847, 31.466019, 21.1632), (32.58847, 31.466019, 21.1632), (31.162685, 33.45653, 20.237284), (30.06084, 33.45653, 21.840479), (31.436214, 31.466019, 22.839746), (31.436214, 31.466019, 22.839746), (30.06084, 33.45653, 21.840479), (28.8766, 33.45653, 23.38381), (30.197792, 31.466019, 24.45369), (30.197792, 31.466019, 24.45369), (28.8766, 33.45653, 23.38381), (27.61321, 33.45653, 24.863047), (28.8766, 31.466019, 26.000607), (28.8766, 31.466019, 26.000607), (27.61321, 33.45653, 24.863047), (26.274137, 33.45653, 26.274137), (27.47626, 31.466019, 27.47626), (27.47626, 31.466019, 27.47626), (26.274137, 33.45653, 26.274137), (24.863047, 33.45653, 27.61321), (26.000607, 31.466019, 28.8766), (26.000607, 31.466019, 28.8766), (24.863047, 33.45653, 27.61321), (23.38381, 33.45653, 28.8766), (24.45369, 31.466019, 30.197792), (24.45369, 31.466019, 30.197792), (23.38381, 33.45653, 28.8766), (21.840479, 33.45653, 30.06084), (22.839746, 31.466019, 31.436214), (22.839746, 31.466019, 31.436214), (21.840479, 33.45653, 30.06084), (20.237284, 33.45653, 31.162685), (21.1632, 31.466019, 32.58847), (21.1632, 31.466019, 32.58847), (20.237284, 33.45653, 31.162685), (18.57862, 33.45653, 32.179115), (19.42865, 31.466019, 33.65141), (19.42865, 31.466019, 33.65141), (18.57862, 33.45653, 32.179115), (16.869034, 33.45653, 33.107346), (17.640844, 31.466019, 34.622105), (17.640844, 31.466019, 34.622105), (16.869034, 33.45653, 33.107346), (15.113212, 33.45653, 33.944828), (15.804687, 31.466019, 35.49791), (15.804687, 31.466019, 35.49791), (15.113212, 33.45653, 33.944828), (13.315965, 33.45653, 34.689274), (13.92521, 31.466019, 36.276413), (13.92521, 31.466019, 36.276413), (13.315965, 33.45653, 34.689274), (11.482219, 33.45653, 35.33864), (12.0075655, 31.466019, 36.955486), (12.0075655, 31.466019, 36.955486), (11.482219, 33.45653, 35.33864), (9.617002, 33.45653, 35.89114), (10.057009, 31.466019, 37.533268), (10.057009, 31.466019, 37.533268), (9.617002, 33.45653, 35.89114), (7.725425, 33.45653, 36.34527), (8.078887, 31.466019, 38.00817), (8.078887, 31.466019, 38.00817), (7.725425, 33.45653, 36.34527), (5.812673, 33.45653, 36.699776), (6.0786204, 31.466019, 38.3789), (6.0786204, 31.466019, 38.3789), (5.812673, 33.45653, 36.699776), (3.8839893, 33.45653, 36.95369), (4.0616937, 31.466019, 38.644432), (4.0616937, 31.466019, 38.644432), (3.8839893, 33.45653, 36.95369), (1.9446597, 33.45653, 37.10632), (2.033634, 31.466019, 38.804047), (2.033634, 31.466019, 38.804047), (1.9446597, 33.45653, 37.10632), (2.2752247e-15, 33.45653, 37.15724), (2.3793234e-15, 31.466019, 38.8573), (2.3793234e-15, 31.466019, 38.8573), (2.2752247e-15, 33.45653, 37.15724), (-1.9446597, 33.45653, 37.10632), (-2.033634, 31.466019, 38.804047), (-2.033634, 31.466019, 38.804047), (-1.9446597, 33.45653, 37.10632), (-3.8839893, 33.45653, 36.95369), (-4.0616937, 31.466019, 38.644432), (-4.0616937, 31.466019, 38.644432), (-3.8839893, 33.45653, 36.95369), (-5.812673, 33.45653, 36.699776), (-6.0786204, 31.466019, 38.3789), (-6.0786204, 31.466019, 38.3789), (-5.812673, 33.45653, 36.699776), (-7.725425, 33.45653, 36.34527), (-8.078887, 31.466019, 38.00817), (-8.078887, 31.466019, 38.00817), (-7.725425, 33.45653, 36.34527), (-9.617002, 33.45653, 35.89114), (-10.057009, 31.466019, 37.533268), (-10.057009, 31.466019, 37.533268), (-9.617002, 33.45653, 35.89114), (-11.482219, 33.45653, 35.33864), (-12.0075655, 31.466019, 36.955486), (-12.0075655, 31.466019, 36.955486), (-11.482219, 33.45653, 35.33864), (-13.315965, 33.45653, 34.689274), (-13.92521, 31.466019, 36.276413), (-13.92521, 31.466019, 36.276413), (-13.315965, 33.45653, 34.689274), (-15.113212, 33.45653, 33.944828), (-15.804687, 31.466019, 35.49791), (-15.804687, 31.466019, 35.49791), (-15.113212, 33.45653, 33.944828), (-16.869034, 33.45653, 33.107346), (-17.640844, 31.466019, 34.622105), (-17.640844, 31.466019, 34.622105), (-16.869034, 33.45653, 33.107346), (-18.57862, 33.45653, 32.179115), (-19.42865, 31.466019, 33.65141), (-19.42865, 31.466019, 33.65141), (-18.57862, 33.45653, 32.179115), (-20.237284, 33.45653, 31.162685), (-21.1632, 31.466019, 32.58847), (-21.1632, 31.466019, 32.58847), (-20.237284, 33.45653, 31.162685), (-21.840479, 33.45653, 30.06084), (-22.839746, 31.466019, 31.436214), (-22.839746, 31.466019, 31.436214), (-21.840479, 33.45653, 30.06084), (-23.38381, 33.45653, 28.8766), (-24.45369, 31.466019, 30.197792), (-24.45369, 31.466019, 30.197792), (-23.38381, 33.45653, 28.8766), (-24.863047, 33.45653, 27.61321), (-26.000607, 31.466019, 28.8766), (-26.000607, 31.466019, 28.8766), (-24.863047, 33.45653, 27.61321), (-26.274137, 33.45653, 26.274137), (-27.47626, 31.466019, 27.47626), (-27.47626, 31.466019, 27.47626), (-26.274137, 33.45653, 26.274137), (-27.61321, 33.45653, 24.863047), (-28.8766, 31.466019, 26.000607), (-28.8766, 31.466019, 26.000607), (-27.61321, 33.45653, 24.863047), (-28.8766, 33.45653, 23.38381), (-30.197792, 31.466019, 24.45369), (-30.197792, 31.466019, 24.45369), (-28.8766, 33.45653, 23.38381), (-30.06084, 33.45653, 21.840479), (-31.436214, 31.466019, 22.839746), (-31.436214, 31.466019, 22.839746), (-30.06084, 33.45653, 21.840479), (-31.162685, 33.45653, 20.237284), (-32.58847, 31.466019, 21.1632), (-32.58847, 31.466019, 21.1632), (-31.162685, 33.45653, 20.237284), (-32.179115, 33.45653, 18.57862), (-33.65141, 31.466019, 19.42865), (-33.65141, 31.466019, 19.42865), (-32.179115, 33.45653, 18.57862), (-33.107346, 33.45653, 16.869034), (-34.622105, 31.466019, 17.640844), (-34.622105, 31.466019, 17.640844), (-33.107346, 33.45653, 16.869034), (-33.944828, 33.45653, 15.113212), (-35.49791, 31.466019, 15.804687), (-35.49791, 31.466019, 15.804687), (-33.944828, 33.45653, 15.113212), (-34.689274, 33.45653, 13.315965), (-36.276413, 31.466019, 13.92521), (-36.276413, 31.466019, 13.92521), (-34.689274, 33.45653, 13.315965), (-35.33864, 33.45653, 11.482219), (-36.955486, 31.466019, 12.0075655), (-36.955486, 31.466019, 12.0075655), (-35.33864, 33.45653, 11.482219), (-35.89114, 33.45653, 9.617002), (-37.533268, 31.466019, 10.057009), (-37.533268, 31.466019, 10.057009), (-35.89114, 33.45653, 9.617002), (-36.34527, 33.45653, 7.725425), (-38.00817, 31.466019, 8.078887), (-38.00817, 31.466019, 8.078887), (-36.34527, 33.45653, 7.725425), (-36.699776, 33.45653, 5.812673), (-38.3789, 31.466019, 6.0786204), (-38.3789, 31.466019, 6.0786204), (-36.699776, 33.45653, 5.812673), (-36.95369, 33.45653, 3.8839893), (-38.644432, 31.466019, 4.0616937), (-38.644432, 31.466019, 4.0616937), (-36.95369, 33.45653, 3.8839893), (-37.10632, 33.45653, 1.9446597), (-38.804047, 31.466019, 2.033634), (-38.804047, 31.466019, 2.033634), (-37.10632, 33.45653, 1.9446597), (-37.15724, 33.45653, 4.5504495e-15), (-38.8573, 31.466019, 4.7586468e-15), (-38.8573, 31.466019, 4.7586468e-15), (-37.15724, 33.45653, 4.5504495e-15), (-37.10632, 33.45653, -1.9446597), (-38.804047, 31.466019, -2.033634), (-38.804047, 31.466019, -2.033634), (-37.10632, 33.45653, -1.9446597), (-36.95369, 33.45653, -3.8839893), (-38.644432, 31.466019, -4.0616937), (-38.644432, 31.466019, -4.0616937), (-36.95369, 33.45653, -3.8839893), (-36.699776, 33.45653, -5.812673), (-38.3789, 31.466019, -6.0786204), (-38.3789, 31.466019, -6.0786204), (-36.699776, 33.45653, -5.812673), (-36.34527, 33.45653, -7.725425), (-38.00817, 31.466019, -8.078887), (-38.00817, 31.466019, -8.078887), (-36.34527, 33.45653, -7.725425), (-35.89114, 33.45653, -9.617002), (-37.533268, 31.466019, -10.057009), (-37.533268, 31.466019, -10.057009), (-35.89114, 33.45653, -9.617002), (-35.33864, 33.45653, -11.482219), (-36.955486, 31.466019, -12.0075655), (-36.955486, 31.466019, -12.0075655), (-35.33864, 33.45653, -11.482219), (-34.689274, 33.45653, -13.315965), (-36.276413, 31.466019, -13.92521), (-36.276413, 31.466019, -13.92521), (-34.689274, 33.45653, -13.315965), (-33.944828, 33.45653, -15.113212), (-35.49791, 31.466019, -15.804687), (-35.49791, 31.466019, -15.804687), (-33.944828, 33.45653, -15.113212), (-33.107346, 33.45653, -16.869034), (-34.622105, 31.466019, -17.640844), (-34.622105, 31.466019, -17.640844), (-33.107346, 33.45653, -16.869034), (-32.179115, 33.45653, -18.57862), (-33.65141, 31.466019, -19.42865), (-33.65141, 31.466019, -19.42865), (-32.179115, 33.45653, -18.57862), (-31.162685, 33.45653, -20.237284), (-32.58847, 31.466019, -21.1632), (-32.58847, 31.466019, -21.1632), (-31.162685, 33.45653, -20.237284), (-30.06084, 33.45653, -21.840479), (-31.436214, 31.466019, -22.839746), (-31.436214, 31.466019, -22.839746), (-30.06084, 33.45653, -21.840479), (-28.8766, 33.45653, -23.38381), (-30.197792, 31.466019, -24.45369), (-30.197792, 31.466019, -24.45369), (-28.8766, 33.45653, -23.38381), (-27.61321, 33.45653, -24.863047), (-28.8766, 31.466019, -26.000607), (-28.8766, 31.466019, -26.000607), (-27.61321, 33.45653, -24.863047), (-26.274137, 33.45653, -26.274137), (-27.47626, 31.466019, -27.47626), (-27.47626, 31.466019, -27.47626), (-26.274137, 33.45653, -26.274137), (-24.863047, 33.45653, -27.61321), (-26.000607, 31.466019, -28.8766), (-26.000607, 31.466019, -28.8766), (-24.863047, 33.45653, -27.61321), (-23.38381, 33.45653, -28.8766), (-24.45369, 31.466019, -30.197792), (-24.45369, 31.466019, -30.197792), (-23.38381, 33.45653, -28.8766), (-21.840479, 33.45653, -30.06084), (-22.839746, 31.466019, -31.436214), (-22.839746, 31.466019, -31.436214), (-21.840479, 33.45653, -30.06084), (-20.237284, 33.45653, -31.162685), (-21.1632, 31.466019, -32.58847), (-21.1632, 31.466019, -32.58847), (-20.237284, 33.45653, -31.162685), (-18.57862, 33.45653, -32.179115), (-19.42865, 31.466019, -33.65141), (-19.42865, 31.466019, -33.65141), (-18.57862, 33.45653, -32.179115), (-16.869034, 33.45653, -33.107346), (-17.640844, 31.466019, -34.622105), (-17.640844, 31.466019, -34.622105), (-16.869034, 33.45653, -33.107346), (-15.113212, 33.45653, -33.944828), (-15.804687, 31.466019, -35.49791), (-15.804687, 31.466019, -35.49791), (-15.113212, 33.45653, -33.944828), (-13.315965, 33.45653, -34.689274), (-13.92521, 31.466019, -36.276413), (-13.92521, 31.466019, -36.276413), (-13.315965, 33.45653, -34.689274), (-11.482219, 33.45653, -35.33864), (-12.0075655, 31.466019, -36.955486), (-12.0075655, 31.466019, -36.955486), (-11.482219, 33.45653, -35.33864), (-9.617002, 33.45653, -35.89114), (-10.057009, 31.466019, -37.533268), (-10.057009, 31.466019, -37.533268), (-9.617002, 33.45653, -35.89114), (-7.725425, 33.45653, -36.34527), (-8.078887, 31.466019, -38.00817), (-8.078887, 31.466019, -38.00817), (-7.725425, 33.45653, -36.34527), (-5.812673, 33.45653, -36.699776), (-6.0786204, 31.466019, -38.3789), (-6.0786204, 31.466019, -38.3789), (-5.812673, 33.45653, -36.699776), (-3.8839893, 33.45653, -36.95369), (-4.0616937, 31.466019, -38.644432), (-4.0616937, 31.466019, -38.644432), (-3.8839893, 33.45653, -36.95369), (-1.9446597, 33.45653, -37.10632), (-2.033634, 31.466019, -38.804047), (-2.033634, 31.466019, -38.804047), (-1.9446597, 33.45653, -37.10632), (-6.8256744e-15, 33.45653, -37.15724), (-7.1379695e-15, 31.466019, -38.8573), (-7.1379695e-15, 31.466019, -38.8573), (-6.8256744e-15, 33.45653, -37.15724), (1.9446597, 33.45653, -37.10632), (2.033634, 31.466019, -38.804047), (2.033634, 31.466019, -38.804047), (1.9446597, 33.45653, -37.10632), (3.8839893, 33.45653, -36.95369), (4.0616937, 31.466019, -38.644432), (4.0616937, 31.466019, -38.644432), (3.8839893, 33.45653, -36.95369), (5.812673, 33.45653, -36.699776), (6.0786204, 31.466019, -38.3789), (6.0786204, 31.466019, -38.3789), (5.812673, 33.45653, -36.699776), (7.725425, 33.45653, -36.34527), (8.078887, 31.466019, -38.00817), (8.078887, 31.466019, -38.00817), (7.725425, 33.45653, -36.34527), (9.617002, 33.45653, -35.89114), (10.057009, 31.466019, -37.533268), (10.057009, 31.466019, -37.533268), (9.617002, 33.45653, -35.89114), (11.482219, 33.45653, -35.33864), (12.0075655, 31.466019, -36.955486), (12.0075655, 31.466019, -36.955486), (11.482219, 33.45653, -35.33864), (13.315965, 33.45653, -34.689274), (13.92521, 31.466019, -36.276413), (13.92521, 31.466019, -36.276413), (13.315965, 33.45653, -34.689274), (15.113212, 33.45653, -33.944828), (15.804687, 31.466019, -35.49791), (15.804687, 31.466019, -35.49791), (15.113212, 33.45653, -33.944828), (16.869034, 33.45653, -33.107346), (17.640844, 31.466019, -34.622105), (17.640844, 31.466019, -34.622105), (16.869034, 33.45653, -33.107346), (18.57862, 33.45653, -32.179115), (19.42865, 31.466019, -33.65141), (19.42865, 31.466019, -33.65141), (18.57862, 33.45653, -32.179115), (20.237284, 33.45653, -31.162685), (21.1632, 31.466019, -32.58847), (21.1632, 31.466019, -32.58847), (20.237284, 33.45653, -31.162685), (21.840479, 33.45653, -30.06084), (22.839746, 31.466019, -31.436214), (22.839746, 31.466019, -31.436214), (21.840479, 33.45653, -30.06084), (23.38381, 33.45653, -28.8766), (24.45369, 31.466019, -30.197792), (24.45369, 31.466019, -30.197792), (23.38381, 33.45653, -28.8766), (24.863047, 33.45653, -27.61321), (26.000607, 31.466019, -28.8766), (26.000607, 31.466019, -28.8766), (24.863047, 33.45653, -27.61321), (26.274137, 33.45653, -26.274137), (27.47626, 31.466019, -27.47626), (27.47626, 31.466019, -27.47626), (26.274137, 33.45653, -26.274137), (27.61321, 33.45653, -24.863047), (28.8766, 31.466019, -26.000607), (28.8766, 31.466019, -26.000607), (27.61321, 33.45653, -24.863047), (28.8766, 33.45653, -23.38381), (30.197792, 31.466019, -24.45369), (30.197792, 31.466019, -24.45369), (28.8766, 33.45653, -23.38381), (30.06084, 33.45653, -21.840479), (31.436214, 31.466019, -22.839746), (31.436214, 31.466019, -22.839746), (30.06084, 33.45653, -21.840479), (31.162685, 33.45653, -20.237284), (32.58847, 31.466019, -21.1632), (32.58847, 31.466019, -21.1632), (31.162685, 33.45653, -20.237284), (32.179115, 33.45653, -18.57862), (33.65141, 31.466019, -19.42865), (33.65141, 31.466019, -19.42865), (32.179115, 33.45653, -18.57862), (33.107346, 33.45653, -16.869034), (34.622105, 31.466019, -17.640844), (34.622105, 31.466019, -17.640844), (33.107346, 33.45653, -16.869034), (33.944828, 33.45653, -15.113212), (35.49791, 31.466019, -15.804687), (35.49791, 31.466019, -15.804687), (33.944828, 33.45653, -15.113212), (34.689274, 33.45653, -13.315965), (36.276413, 31.466019, -13.92521), (36.276413, 31.466019, -13.92521), (34.689274, 33.45653, -13.315965), (35.33864, 33.45653, -11.482219), (36.955486, 31.466019, -12.0075655), (36.955486, 31.466019, -12.0075655), (35.33864, 33.45653, -11.482219), (35.89114, 33.45653, -9.617002), (37.533268, 31.466019, -10.057009), (37.533268, 31.466019, -10.057009), (35.89114, 33.45653, -9.617002), (36.34527, 33.45653, -7.725425), (38.00817, 31.466019, -8.078887), (38.00817, 31.466019, -8.078887), (36.34527, 33.45653, -7.725425), (36.699776, 33.45653, -5.812673), (38.3789, 31.466019, -6.0786204), (38.3789, 31.466019, -6.0786204), (36.699776, 33.45653, -5.812673), (36.95369, 33.45653, -3.8839893), (38.644432, 31.466019, -4.0616937), (38.644432, 31.466019, -4.0616937), (36.95369, 33.45653, -3.8839893), (37.10632, 33.45653, -1.9446597), (38.804047, 31.466019, -2.033634), (38.804047, 31.466019, -2.033634), (37.10632, 33.45653, -1.9446597), (37.15724, 33.45653, 0), (38.8573, 31.466019, 0), (37.15724, 33.45653, 0), (35.35534, 35.35534, 0), (35.306885, 35.35534, 1.8503555), (37.10632, 33.45653, 1.9446597), (37.10632, 33.45653, 1.9446597), (35.306885, 35.35534, 1.8503555), (35.16166, 35.35534, 3.6956394), (36.95369, 33.45653, 3.8839893), (36.95369, 33.45653, 3.8839893), (35.16166, 35.35534, 3.6956394), (34.920055, 35.35534, 5.5307937), (36.699776, 33.45653, 5.812673), (36.699776, 33.45653, 5.812673), (34.920055, 35.35534, 5.5307937), (34.58274, 35.35534, 7.350788), (36.34527, 33.45653, 7.725425), (36.34527, 33.45653, 7.725425), (34.58274, 35.35534, 7.350788), (34.150635, 35.35534, 9.150635), (35.89114, 33.45653, 9.617002), (35.89114, 33.45653, 9.617002), (34.150635, 35.35534, 9.150635), (33.624924, 35.35534, 10.925401), (35.33864, 33.45653, 11.482219), (35.33864, 33.45653, 11.482219), (33.624924, 35.35534, 10.925401), (33.007053, 35.35534, 12.67022), (34.689274, 33.45653, 13.315965), (34.689274, 33.45653, 13.315965), (33.007053, 35.35534, 12.67022), (32.29871, 35.35534, 14.380312), (33.944828, 33.45653, 15.113212), (33.944828, 33.45653, 15.113212), (32.29871, 35.35534, 14.380312), (31.501839, 35.35534, 16.050987), (33.107346, 33.45653, 16.869034), (33.107346, 33.45653, 16.869034), (31.501839, 35.35534, 16.050987), (30.618622, 35.35534, 17.67767), (32.179115, 33.45653, 18.57862), (32.179115, 33.45653, 18.57862), (30.618622, 35.35534, 17.67767), (29.651482, 35.35534, 19.255898), (31.162685, 33.45653, 20.237284), (31.162685, 33.45653, 20.237284), (29.651482, 35.35534, 19.255898), (28.60307, 35.35534, 20.781347), (30.06084, 33.45653, 21.840479), (30.06084, 33.45653, 21.840479), (28.60307, 35.35534, 20.781347), (27.47626, 35.35534, 22.249836), (28.8766, 33.45653, 23.38381), (28.8766, 33.45653, 23.38381), (27.47626, 35.35534, 22.249836), (26.274137, 35.35534, 23.65734), (27.61321, 33.45653, 24.863047), (27.61321, 33.45653, 24.863047), (26.274137, 35.35534, 23.65734), (25, 35.35534, 25), (26.274137, 33.45653, 26.274137), (26.274137, 33.45653, 26.274137), (25, 35.35534, 25), (23.65734, 35.35534, 26.274137), (24.863047, 33.45653, 27.61321), (24.863047, 33.45653, 27.61321), (23.65734, 35.35534, 26.274137), (22.249836, 35.35534, 27.47626), (23.38381, 33.45653, 28.8766), (23.38381, 33.45653, 28.8766), (22.249836, 35.35534, 27.47626), (20.781347, 35.35534, 28.60307), (21.840479, 33.45653, 30.06084), (21.840479, 33.45653, 30.06084), (20.781347, 35.35534, 28.60307), (19.255898, 35.35534, 29.651482), (20.237284, 33.45653, 31.162685), (20.237284, 33.45653, 31.162685), (19.255898, 35.35534, 29.651482), (17.67767, 35.35534, 30.618622), (18.57862, 33.45653, 32.179115), (18.57862, 33.45653, 32.179115), (17.67767, 35.35534, 30.618622), (16.050987, 35.35534, 31.501839), (16.869034, 33.45653, 33.107346), (16.869034, 33.45653, 33.107346), (16.050987, 35.35534, 31.501839), (14.380312, 35.35534, 32.29871), (15.113212, 33.45653, 33.944828), (15.113212, 33.45653, 33.944828), (14.380312, 35.35534, 32.29871), (12.67022, 35.35534, 33.007053), (13.315965, 33.45653, 34.689274), (13.315965, 33.45653, 34.689274), (12.67022, 35.35534, 33.007053), (10.925401, 35.35534, 33.624924), (11.482219, 33.45653, 35.33864), (11.482219, 33.45653, 35.33864), (10.925401, 35.35534, 33.624924), (9.150635, 35.35534, 34.150635), (9.617002, 33.45653, 35.89114), (9.617002, 33.45653, 35.89114), (9.150635, 35.35534, 34.150635), (7.350788, 35.35534, 34.58274), (7.725425, 33.45653, 36.34527), (7.725425, 33.45653, 36.34527), (7.350788, 35.35534, 34.58274), (5.5307937, 35.35534, 34.920055), (5.812673, 33.45653, 36.699776), (5.812673, 33.45653, 36.699776), (5.5307937, 35.35534, 34.920055), (3.6956394, 35.35534, 35.16166), (3.8839893, 33.45653, 36.95369), (3.8839893, 33.45653, 36.95369), (3.6956394, 35.35534, 35.16166), (1.8503555, 35.35534, 35.306885), (1.9446597, 33.45653, 37.10632), (1.9446597, 33.45653, 37.10632), (1.8503555, 35.35534, 35.306885), (2.1648902e-15, 35.35534, 35.35534), (2.2752247e-15, 33.45653, 37.15724), (2.2752247e-15, 33.45653, 37.15724), (2.1648902e-15, 35.35534, 35.35534), (-1.8503555, 35.35534, 35.306885), (-1.9446597, 33.45653, 37.10632), (-1.9446597, 33.45653, 37.10632), (-1.8503555, 35.35534, 35.306885), (-3.6956394, 35.35534, 35.16166), (-3.8839893, 33.45653, 36.95369), (-3.8839893, 33.45653, 36.95369), (-3.6956394, 35.35534, 35.16166), (-5.5307937, 35.35534, 34.920055), (-5.812673, 33.45653, 36.699776), (-5.812673, 33.45653, 36.699776), (-5.5307937, 35.35534, 34.920055), (-7.350788, 35.35534, 34.58274), (-7.725425, 33.45653, 36.34527), (-7.725425, 33.45653, 36.34527), (-7.350788, 35.35534, 34.58274), (-9.150635, 35.35534, 34.150635), (-9.617002, 33.45653, 35.89114), (-9.617002, 33.45653, 35.89114), (-9.150635, 35.35534, 34.150635), (-10.925401, 35.35534, 33.624924), (-11.482219, 33.45653, 35.33864), (-11.482219, 33.45653, 35.33864), (-10.925401, 35.35534, 33.624924), (-12.67022, 35.35534, 33.007053), (-13.315965, 33.45653, 34.689274), (-13.315965, 33.45653, 34.689274), (-12.67022, 35.35534, 33.007053), (-14.380312, 35.35534, 32.29871), (-15.113212, 33.45653, 33.944828), (-15.113212, 33.45653, 33.944828), (-14.380312, 35.35534, 32.29871), (-16.050987, 35.35534, 31.501839), (-16.869034, 33.45653, 33.107346), (-16.869034, 33.45653, 33.107346), (-16.050987, 35.35534, 31.501839), (-17.67767, 35.35534, 30.618622), (-18.57862, 33.45653, 32.179115), (-18.57862, 33.45653, 32.179115), (-17.67767, 35.35534, 30.618622), (-19.255898, 35.35534, 29.651482), (-20.237284, 33.45653, 31.162685), (-20.237284, 33.45653, 31.162685), (-19.255898, 35.35534, 29.651482), (-20.781347, 35.35534, 28.60307), (-21.840479, 33.45653, 30.06084), (-21.840479, 33.45653, 30.06084), (-20.781347, 35.35534, 28.60307), (-22.249836, 35.35534, 27.47626), (-23.38381, 33.45653, 28.8766), (-23.38381, 33.45653, 28.8766), (-22.249836, 35.35534, 27.47626), (-23.65734, 35.35534, 26.274137), (-24.863047, 33.45653, 27.61321), (-24.863047, 33.45653, 27.61321), (-23.65734, 35.35534, 26.274137), (-25, 35.35534, 25), (-26.274137, 33.45653, 26.274137), (-26.274137, 33.45653, 26.274137), (-25, 35.35534, 25), (-26.274137, 35.35534, 23.65734), (-27.61321, 33.45653, 24.863047), (-27.61321, 33.45653, 24.863047), (-26.274137, 35.35534, 23.65734), (-27.47626, 35.35534, 22.249836), (-28.8766, 33.45653, 23.38381), (-28.8766, 33.45653, 23.38381), (-27.47626, 35.35534, 22.249836), (-28.60307, 35.35534, 20.781347), (-30.06084, 33.45653, 21.840479), (-30.06084, 33.45653, 21.840479), (-28.60307, 35.35534, 20.781347), (-29.651482, 35.35534, 19.255898), (-31.162685, 33.45653, 20.237284), (-31.162685, 33.45653, 20.237284), (-29.651482, 35.35534, 19.255898), (-30.618622, 35.35534, 17.67767), (-32.179115, 33.45653, 18.57862), (-32.179115, 33.45653, 18.57862), (-30.618622, 35.35534, 17.67767), (-31.501839, 35.35534, 16.050987), (-33.107346, 33.45653, 16.869034), (-33.107346, 33.45653, 16.869034), (-31.501839, 35.35534, 16.050987), (-32.29871, 35.35534, 14.380312), (-33.944828, 33.45653, 15.113212), (-33.944828, 33.45653, 15.113212), (-32.29871, 35.35534, 14.380312), (-33.007053, 35.35534, 12.67022), (-34.689274, 33.45653, 13.315965), (-34.689274, 33.45653, 13.315965), (-33.007053, 35.35534, 12.67022), (-33.624924, 35.35534, 10.925401), (-35.33864, 33.45653, 11.482219), (-35.33864, 33.45653, 11.482219), (-33.624924, 35.35534, 10.925401), (-34.150635, 35.35534, 9.150635), (-35.89114, 33.45653, 9.617002), (-35.89114, 33.45653, 9.617002), (-34.150635, 35.35534, 9.150635), (-34.58274, 35.35534, 7.350788), (-36.34527, 33.45653, 7.725425), (-36.34527, 33.45653, 7.725425), (-34.58274, 35.35534, 7.350788), (-34.920055, 35.35534, 5.5307937), (-36.699776, 33.45653, 5.812673), (-36.699776, 33.45653, 5.812673), (-34.920055, 35.35534, 5.5307937), (-35.16166, 35.35534, 3.6956394), (-36.95369, 33.45653, 3.8839893), (-36.95369, 33.45653, 3.8839893), (-35.16166, 35.35534, 3.6956394), (-35.306885, 35.35534, 1.8503555), (-37.10632, 33.45653, 1.9446597), (-37.10632, 33.45653, 1.9446597), (-35.306885, 35.35534, 1.8503555), (-35.35534, 35.35534, 4.3297804e-15), (-37.15724, 33.45653, 4.5504495e-15), (-37.15724, 33.45653, 4.5504495e-15), (-35.35534, 35.35534, 4.3297804e-15), (-35.306885, 35.35534, -1.8503555), (-37.10632, 33.45653, -1.9446597), (-37.10632, 33.45653, -1.9446597), (-35.306885, 35.35534, -1.8503555), (-35.16166, 35.35534, -3.6956394), (-36.95369, 33.45653, -3.8839893), (-36.95369, 33.45653, -3.8839893), (-35.16166, 35.35534, -3.6956394), (-34.920055, 35.35534, -5.5307937), (-36.699776, 33.45653, -5.812673), (-36.699776, 33.45653, -5.812673), (-34.920055, 35.35534, -5.5307937), (-34.58274, 35.35534, -7.350788), (-36.34527, 33.45653, -7.725425), (-36.34527, 33.45653, -7.725425), (-34.58274, 35.35534, -7.350788), (-34.150635, 35.35534, -9.150635), (-35.89114, 33.45653, -9.617002), (-35.89114, 33.45653, -9.617002), (-34.150635, 35.35534, -9.150635), (-33.624924, 35.35534, -10.925401), (-35.33864, 33.45653, -11.482219), (-35.33864, 33.45653, -11.482219), (-33.624924, 35.35534, -10.925401), (-33.007053, 35.35534, -12.67022), (-34.689274, 33.45653, -13.315965), (-34.689274, 33.45653, -13.315965), (-33.007053, 35.35534, -12.67022), (-32.29871, 35.35534, -14.380312), (-33.944828, 33.45653, -15.113212), (-33.944828, 33.45653, -15.113212), (-32.29871, 35.35534, -14.380312), (-31.501839, 35.35534, -16.050987), (-33.107346, 33.45653, -16.869034), (-33.107346, 33.45653, -16.869034), (-31.501839, 35.35534, -16.050987), (-30.618622, 35.35534, -17.67767), (-32.179115, 33.45653, -18.57862), (-32.179115, 33.45653, -18.57862), (-30.618622, 35.35534, -17.67767), (-29.651482, 35.35534, -19.255898), (-31.162685, 33.45653, -20.237284), (-31.162685, 33.45653, -20.237284), (-29.651482, 35.35534, -19.255898), (-28.60307, 35.35534, -20.781347), (-30.06084, 33.45653, -21.840479), (-30.06084, 33.45653, -21.840479), (-28.60307, 35.35534, -20.781347), (-27.47626, 35.35534, -22.249836), (-28.8766, 33.45653, -23.38381), (-28.8766, 33.45653, -23.38381), (-27.47626, 35.35534, -22.249836), (-26.274137, 35.35534, -23.65734), (-27.61321, 33.45653, -24.863047), (-27.61321, 33.45653, -24.863047), (-26.274137, 35.35534, -23.65734), (-25, 35.35534, -25), (-26.274137, 33.45653, -26.274137), (-26.274137, 33.45653, -26.274137), (-25, 35.35534, -25), (-23.65734, 35.35534, -26.274137), (-24.863047, 33.45653, -27.61321), (-24.863047, 33.45653, -27.61321), (-23.65734, 35.35534, -26.274137), (-22.249836, 35.35534, -27.47626), (-23.38381, 33.45653, -28.8766), (-23.38381, 33.45653, -28.8766), (-22.249836, 35.35534, -27.47626), (-20.781347, 35.35534, -28.60307), (-21.840479, 33.45653, -30.06084), (-21.840479, 33.45653, -30.06084), (-20.781347, 35.35534, -28.60307), (-19.255898, 35.35534, -29.651482), (-20.237284, 33.45653, -31.162685), (-20.237284, 33.45653, -31.162685), (-19.255898, 35.35534, -29.651482), (-17.67767, 35.35534, -30.618622), (-18.57862, 33.45653, -32.179115), (-18.57862, 33.45653, -32.179115), (-17.67767, 35.35534, -30.618622), (-16.050987, 35.35534, -31.501839), (-16.869034, 33.45653, -33.107346), (-16.869034, 33.45653, -33.107346), (-16.050987, 35.35534, -31.501839), (-14.380312, 35.35534, -32.29871), (-15.113212, 33.45653, -33.944828), (-15.113212, 33.45653, -33.944828), (-14.380312, 35.35534, -32.29871), (-12.67022, 35.35534, -33.007053), (-13.315965, 33.45653, -34.689274), (-13.315965, 33.45653, -34.689274), (-12.67022, 35.35534, -33.007053), (-10.925401, 35.35534, -33.624924), (-11.482219, 33.45653, -35.33864), (-11.482219, 33.45653, -35.33864), (-10.925401, 35.35534, -33.624924), (-9.150635, 35.35534, -34.150635), (-9.617002, 33.45653, -35.89114), (-9.617002, 33.45653, -35.89114), (-9.150635, 35.35534, -34.150635), (-7.350788, 35.35534, -34.58274), (-7.725425, 33.45653, -36.34527), (-7.725425, 33.45653, -36.34527), (-7.350788, 35.35534, -34.58274), (-5.5307937, 35.35534, -34.920055), (-5.812673, 33.45653, -36.699776), (-5.812673, 33.45653, -36.699776), (-5.5307937, 35.35534, -34.920055), (-3.6956394, 35.35534, -35.16166), (-3.8839893, 33.45653, -36.95369), (-3.8839893, 33.45653, -36.95369), (-3.6956394, 35.35534, -35.16166), (-1.8503555, 35.35534, -35.306885), (-1.9446597, 33.45653, -37.10632), (-1.9446597, 33.45653, -37.10632), (-1.8503555, 35.35534, -35.306885), (-6.4946704e-15, 35.35534, -35.35534), (-6.8256744e-15, 33.45653, -37.15724), (-6.8256744e-15, 33.45653, -37.15724), (-6.4946704e-15, 35.35534, -35.35534), (1.8503555, 35.35534, -35.306885), (1.9446597, 33.45653, -37.10632), (1.9446597, 33.45653, -37.10632), (1.8503555, 35.35534, -35.306885), (3.6956394, 35.35534, -35.16166), (3.8839893, 33.45653, -36.95369), (3.8839893, 33.45653, -36.95369), (3.6956394, 35.35534, -35.16166), (5.5307937, 35.35534, -34.920055), (5.812673, 33.45653, -36.699776), (5.812673, 33.45653, -36.699776), (5.5307937, 35.35534, -34.920055), (7.350788, 35.35534, -34.58274), (7.725425, 33.45653, -36.34527), (7.725425, 33.45653, -36.34527), (7.350788, 35.35534, -34.58274), (9.150635, 35.35534, -34.150635), (9.617002, 33.45653, -35.89114), (9.617002, 33.45653, -35.89114), (9.150635, 35.35534, -34.150635), (10.925401, 35.35534, -33.624924), (11.482219, 33.45653, -35.33864), (11.482219, 33.45653, -35.33864), (10.925401, 35.35534, -33.624924), (12.67022, 35.35534, -33.007053), (13.315965, 33.45653, -34.689274), (13.315965, 33.45653, -34.689274), (12.67022, 35.35534, -33.007053), (14.380312, 35.35534, -32.29871), (15.113212, 33.45653, -33.944828), (15.113212, 33.45653, -33.944828), (14.380312, 35.35534, -32.29871), (16.050987, 35.35534, -31.501839), (16.869034, 33.45653, -33.107346), (16.869034, 33.45653, -33.107346), (16.050987, 35.35534, -31.501839), (17.67767, 35.35534, -30.618622), (18.57862, 33.45653, -32.179115), (18.57862, 33.45653, -32.179115), (17.67767, 35.35534, -30.618622), (19.255898, 35.35534, -29.651482), (20.237284, 33.45653, -31.162685), (20.237284, 33.45653, -31.162685), (19.255898, 35.35534, -29.651482), (20.781347, 35.35534, -28.60307), (21.840479, 33.45653, -30.06084), (21.840479, 33.45653, -30.06084), (20.781347, 35.35534, -28.60307), (22.249836, 35.35534, -27.47626), (23.38381, 33.45653, -28.8766), (23.38381, 33.45653, -28.8766), (22.249836, 35.35534, -27.47626), (23.65734, 35.35534, -26.274137), (24.863047, 33.45653, -27.61321), (24.863047, 33.45653, -27.61321), (23.65734, 35.35534, -26.274137), (25, 35.35534, -25), (26.274137, 33.45653, -26.274137), (26.274137, 33.45653, -26.274137), (25, 35.35534, -25), (26.274137, 35.35534, -23.65734), (27.61321, 33.45653, -24.863047), (27.61321, 33.45653, -24.863047), (26.274137, 35.35534, -23.65734), (27.47626, 35.35534, -22.249836), (28.8766, 33.45653, -23.38381), (28.8766, 33.45653, -23.38381), (27.47626, 35.35534, -22.249836), (28.60307, 35.35534, -20.781347), (30.06084, 33.45653, -21.840479), (30.06084, 33.45653, -21.840479), (28.60307, 35.35534, -20.781347), (29.651482, 35.35534, -19.255898), (31.162685, 33.45653, -20.237284), (31.162685, 33.45653, -20.237284), (29.651482, 35.35534, -19.255898), (30.618622, 35.35534, -17.67767), (32.179115, 33.45653, -18.57862), (32.179115, 33.45653, -18.57862), (30.618622, 35.35534, -17.67767), (31.501839, 35.35534, -16.050987), (33.107346, 33.45653, -16.869034), (33.107346, 33.45653, -16.869034), (31.501839, 35.35534, -16.050987), (32.29871, 35.35534, -14.380312), (33.944828, 33.45653, -15.113212), (33.944828, 33.45653, -15.113212), (32.29871, 35.35534, -14.380312), (33.007053, 35.35534, -12.67022), (34.689274, 33.45653, -13.315965), (34.689274, 33.45653, -13.315965), (33.007053, 35.35534, -12.67022), (33.624924, 35.35534, -10.925401), (35.33864, 33.45653, -11.482219), (35.33864, 33.45653, -11.482219), (33.624924, 35.35534, -10.925401), (34.150635, 35.35534, -9.150635), (35.89114, 33.45653, -9.617002), (35.89114, 33.45653, -9.617002), (34.150635, 35.35534, -9.150635), (34.58274, 35.35534, -7.350788), (36.34527, 33.45653, -7.725425), (36.34527, 33.45653, -7.725425), (34.58274, 35.35534, -7.350788), (34.920055, 35.35534, -5.5307937), (36.699776, 33.45653, -5.812673), (36.699776, 33.45653, -5.812673), (34.920055, 35.35534, -5.5307937), (35.16166, 35.35534, -3.6956394), (36.95369, 33.45653, -3.8839893), (36.95369, 33.45653, -3.8839893), (35.16166, 35.35534, -3.6956394), (35.306885, 35.35534, -1.8503555), (37.10632, 33.45653, -1.9446597), (37.10632, 33.45653, -1.9446597), (35.306885, 35.35534, -1.8503555), (35.35534, 35.35534, 0), (37.15724, 33.45653, 0), (35.35534, 35.35534, 0), (33.45653, 37.15724, 0), (33.41068, 37.15724, 1.7509795), (35.306885, 35.35534, 1.8503555), (35.306885, 35.35534, 1.8503555), (33.41068, 37.15724, 1.7509795), (33.27325, 37.15724, 3.4971597), (35.16166, 35.35534, 3.6956394), (35.16166, 35.35534, 3.6956394), (33.27325, 37.15724, 3.4971597), (33.044624, 37.15724, 5.2337546), (34.920055, 35.35534, 5.5307937), (34.920055, 35.35534, 5.5307937), (33.044624, 37.15724, 5.2337546), (32.725426, 37.15724, 6.9560037), (34.58274, 35.35534, 7.350788), (34.58274, 35.35534, 7.350788), (32.725426, 37.15724, 6.9560037), (32.31653, 37.15724, 8.659187), (34.150635, 35.35534, 9.150635), (34.150635, 35.35534, 9.150635), (32.31653, 37.15724, 8.659187), (31.819052, 37.15724, 10.338636), (33.624924, 35.35534, 10.925401), (33.624924, 35.35534, 10.925401), (31.819052, 37.15724, 10.338636), (31.234362, 37.15724, 11.989748), (33.007053, 35.35534, 12.67022), (33.007053, 35.35534, 12.67022), (31.234362, 37.15724, 11.989748), (30.564062, 37.15724, 13.607997), (32.29871, 35.35534, 14.380312), (32.29871, 35.35534, 14.380312), (30.564062, 37.15724, 13.607997), (29.809986, 37.15724, 15.188947), (31.501839, 35.35534, 16.050987), (31.501839, 35.35534, 16.050987), (29.809986, 37.15724, 15.188947), (28.974205, 37.15724, 16.728266), (30.618622, 35.35534, 17.67767), (30.618622, 35.35534, 17.67767), (28.974205, 37.15724, 16.728266), (28.059008, 37.15724, 18.221733), (29.651482, 35.35534, 19.255898), (29.651482, 35.35534, 19.255898), (28.059008, 37.15724, 18.221733), (27.066902, 37.15724, 19.665255), (28.60307, 35.35534, 20.781347), (28.60307, 35.35534, 20.781347), (27.066902, 37.15724, 19.665255), (26.000607, 37.15724, 21.054876), (27.47626, 35.35534, 22.249836), (27.47626, 35.35534, 22.249836), (26.000607, 37.15724, 21.054876), (24.863047, 37.15724, 22.38679), (26.274137, 35.35534, 23.65734), (26.274137, 35.35534, 23.65734), (24.863047, 37.15724, 22.38679), (23.65734, 37.15724, 23.65734), (25, 35.35534, 25), (25, 35.35534, 25), (23.65734, 37.15724, 23.65734), (22.38679, 37.15724, 24.863047), (23.65734, 35.35534, 26.274137), (23.65734, 35.35534, 26.274137), (22.38679, 37.15724, 24.863047), (21.054876, 37.15724, 26.000607), (22.249836, 35.35534, 27.47626), (22.249836, 35.35534, 27.47626), (21.054876, 37.15724, 26.000607), (19.665255, 37.15724, 27.066902), (20.781347, 35.35534, 28.60307), (20.781347, 35.35534, 28.60307), (19.665255, 37.15724, 27.066902), (18.221733, 37.15724, 28.059008), (19.255898, 35.35534, 29.651482), (19.255898, 35.35534, 29.651482), (18.221733, 37.15724, 28.059008), (16.728266, 37.15724, 28.974205), (17.67767, 35.35534, 30.618622), (17.67767, 35.35534, 30.618622), (16.728266, 37.15724, 28.974205), (15.188947, 37.15724, 29.809986), (16.050987, 35.35534, 31.501839), (16.050987, 35.35534, 31.501839), (15.188947, 37.15724, 29.809986), (13.607997, 37.15724, 30.564062), (14.380312, 35.35534, 32.29871), (14.380312, 35.35534, 32.29871), (13.607997, 37.15724, 30.564062), (11.989748, 37.15724, 31.234362), (12.67022, 35.35534, 33.007053), (12.67022, 35.35534, 33.007053), (11.989748, 37.15724, 31.234362), (10.338636, 37.15724, 31.819052), (10.925401, 35.35534, 33.624924), (10.925401, 35.35534, 33.624924), (10.338636, 37.15724, 31.819052), (8.659187, 37.15724, 32.31653), (9.150635, 35.35534, 34.150635), (9.150635, 35.35534, 34.150635), (8.659187, 37.15724, 32.31653), (6.9560037, 37.15724, 32.725426), (7.350788, 35.35534, 34.58274), (7.350788, 35.35534, 34.58274), (6.9560037, 37.15724, 32.725426), (5.2337546, 37.15724, 33.044624), (5.5307937, 35.35534, 34.920055), (5.5307937, 35.35534, 34.920055), (5.2337546, 37.15724, 33.044624), (3.4971597, 37.15724, 33.27325), (3.6956394, 35.35534, 35.16166), (3.6956394, 35.35534, 35.16166), (3.4971597, 37.15724, 33.27325), (1.7509795, 37.15724, 33.41068), (1.8503555, 35.35534, 35.306885), (1.8503555, 35.35534, 35.306885), (1.7509795, 37.15724, 33.41068), (2.0486216e-15, 37.15724, 33.45653), (2.1648902e-15, 35.35534, 35.35534), (2.1648902e-15, 35.35534, 35.35534), (2.0486216e-15, 37.15724, 33.45653), (-1.7509795, 37.15724, 33.41068), (-1.8503555, 35.35534, 35.306885), (-1.8503555, 35.35534, 35.306885), (-1.7509795, 37.15724, 33.41068), (-3.4971597, 37.15724, 33.27325), (-3.6956394, 35.35534, 35.16166), (-3.6956394, 35.35534, 35.16166), (-3.4971597, 37.15724, 33.27325), (-5.2337546, 37.15724, 33.044624), (-5.5307937, 35.35534, 34.920055), (-5.5307937, 35.35534, 34.920055), (-5.2337546, 37.15724, 33.044624), (-6.9560037, 37.15724, 32.725426), (-7.350788, 35.35534, 34.58274), (-7.350788, 35.35534, 34.58274), (-6.9560037, 37.15724, 32.725426), (-8.659187, 37.15724, 32.31653), (-9.150635, 35.35534, 34.150635), (-9.150635, 35.35534, 34.150635), (-8.659187, 37.15724, 32.31653), (-10.338636, 37.15724, 31.819052), (-10.925401, 35.35534, 33.624924), (-10.925401, 35.35534, 33.624924), (-10.338636, 37.15724, 31.819052), (-11.989748, 37.15724, 31.234362), (-12.67022, 35.35534, 33.007053), (-12.67022, 35.35534, 33.007053), (-11.989748, 37.15724, 31.234362), (-13.607997, 37.15724, 30.564062), (-14.380312, 35.35534, 32.29871), (-14.380312, 35.35534, 32.29871), (-13.607997, 37.15724, 30.564062), (-15.188947, 37.15724, 29.809986), (-16.050987, 35.35534, 31.501839), (-16.050987, 35.35534, 31.501839), (-15.188947, 37.15724, 29.809986), (-16.728266, 37.15724, 28.974205), (-17.67767, 35.35534, 30.618622), (-17.67767, 35.35534, 30.618622), (-16.728266, 37.15724, 28.974205), (-18.221733, 37.15724, 28.059008), (-19.255898, 35.35534, 29.651482), (-19.255898, 35.35534, 29.651482), (-18.221733, 37.15724, 28.059008), (-19.665255, 37.15724, 27.066902), (-20.781347, 35.35534, 28.60307), (-20.781347, 35.35534, 28.60307), (-19.665255, 37.15724, 27.066902), (-21.054876, 37.15724, 26.000607), (-22.249836, 35.35534, 27.47626), (-22.249836, 35.35534, 27.47626), (-21.054876, 37.15724, 26.000607), (-22.38679, 37.15724, 24.863047), (-23.65734, 35.35534, 26.274137), (-23.65734, 35.35534, 26.274137), (-22.38679, 37.15724, 24.863047), (-23.65734, 37.15724, 23.65734), (-25, 35.35534, 25), (-25, 35.35534, 25), (-23.65734, 37.15724, 23.65734), (-24.863047, 37.15724, 22.38679), (-26.274137, 35.35534, 23.65734), (-26.274137, 35.35534, 23.65734), (-24.863047, 37.15724, 22.38679), (-26.000607, 37.15724, 21.054876), (-27.47626, 35.35534, 22.249836), (-27.47626, 35.35534, 22.249836), (-26.000607, 37.15724, 21.054876), (-27.066902, 37.15724, 19.665255), (-28.60307, 35.35534, 20.781347), (-28.60307, 35.35534, 20.781347), (-27.066902, 37.15724, 19.665255), (-28.059008, 37.15724, 18.221733), (-29.651482, 35.35534, 19.255898), (-29.651482, 35.35534, 19.255898), (-28.059008, 37.15724, 18.221733), (-28.974205, 37.15724, 16.728266), (-30.618622, 35.35534, 17.67767), (-30.618622, 35.35534, 17.67767), (-28.974205, 37.15724, 16.728266), (-29.809986, 37.15724, 15.188947), (-31.501839, 35.35534, 16.050987), (-31.501839, 35.35534, 16.050987), (-29.809986, 37.15724, 15.188947), (-30.564062, 37.15724, 13.607997), (-32.29871, 35.35534, 14.380312), (-32.29871, 35.35534, 14.380312), (-30.564062, 37.15724, 13.607997), (-31.234362, 37.15724, 11.989748), (-33.007053, 35.35534, 12.67022), (-33.007053, 35.35534, 12.67022), (-31.234362, 37.15724, 11.989748), (-31.819052, 37.15724, 10.338636), (-33.624924, 35.35534, 10.925401), (-33.624924, 35.35534, 10.925401), (-31.819052, 37.15724, 10.338636), (-32.31653, 37.15724, 8.659187), (-34.150635, 35.35534, 9.150635), (-34.150635, 35.35534, 9.150635), (-32.31653, 37.15724, 8.659187), (-32.725426, 37.15724, 6.9560037), (-34.58274, 35.35534, 7.350788), (-34.58274, 35.35534, 7.350788), (-32.725426, 37.15724, 6.9560037), (-33.044624, 37.15724, 5.2337546), (-34.920055, 35.35534, 5.5307937), (-34.920055, 35.35534, 5.5307937), (-33.044624, 37.15724, 5.2337546), (-33.27325, 37.15724, 3.4971597), (-35.16166, 35.35534, 3.6956394), (-35.16166, 35.35534, 3.6956394), (-33.27325, 37.15724, 3.4971597), (-33.41068, 37.15724, 1.7509795), (-35.306885, 35.35534, 1.8503555), (-35.306885, 35.35534, 1.8503555), (-33.41068, 37.15724, 1.7509795), (-33.45653, 37.15724, 4.097243e-15), (-35.35534, 35.35534, 4.3297804e-15), (-35.35534, 35.35534, 4.3297804e-15), (-33.45653, 37.15724, 4.097243e-15), (-33.41068, 37.15724, -1.7509795), (-35.306885, 35.35534, -1.8503555), (-35.306885, 35.35534, -1.8503555), (-33.41068, 37.15724, -1.7509795), (-33.27325, 37.15724, -3.4971597), (-35.16166, 35.35534, -3.6956394), (-35.16166, 35.35534, -3.6956394), (-33.27325, 37.15724, -3.4971597), (-33.044624, 37.15724, -5.2337546), (-34.920055, 35.35534, -5.5307937), (-34.920055, 35.35534, -5.5307937), (-33.044624, 37.15724, -5.2337546), (-32.725426, 37.15724, -6.9560037), (-34.58274, 35.35534, -7.350788), (-34.58274, 35.35534, -7.350788), (-32.725426, 37.15724, -6.9560037), (-32.31653, 37.15724, -8.659187), (-34.150635, 35.35534, -9.150635), (-34.150635, 35.35534, -9.150635), (-32.31653, 37.15724, -8.659187), (-31.819052, 37.15724, -10.338636), (-33.624924, 35.35534, -10.925401), (-33.624924, 35.35534, -10.925401), (-31.819052, 37.15724, -10.338636), (-31.234362, 37.15724, -11.989748), (-33.007053, 35.35534, -12.67022), (-33.007053, 35.35534, -12.67022), (-31.234362, 37.15724, -11.989748), (-30.564062, 37.15724, -13.607997), (-32.29871, 35.35534, -14.380312), (-32.29871, 35.35534, -14.380312), (-30.564062, 37.15724, -13.607997), (-29.809986, 37.15724, -15.188947), (-31.501839, 35.35534, -16.050987), (-31.501839, 35.35534, -16.050987), (-29.809986, 37.15724, -15.188947), (-28.974205, 37.15724, -16.728266), (-30.618622, 35.35534, -17.67767), (-30.618622, 35.35534, -17.67767), (-28.974205, 37.15724, -16.728266), (-28.059008, 37.15724, -18.221733), (-29.651482, 35.35534, -19.255898), (-29.651482, 35.35534, -19.255898), (-28.059008, 37.15724, -18.221733), (-27.066902, 37.15724, -19.665255), (-28.60307, 35.35534, -20.781347), (-28.60307, 35.35534, -20.781347), (-27.066902, 37.15724, -19.665255), (-26.000607, 37.15724, -21.054876), (-27.47626, 35.35534, -22.249836), (-27.47626, 35.35534, -22.249836), (-26.000607, 37.15724, -21.054876), (-24.863047, 37.15724, -22.38679), (-26.274137, 35.35534, -23.65734), (-26.274137, 35.35534, -23.65734), (-24.863047, 37.15724, -22.38679), (-23.65734, 37.15724, -23.65734), (-25, 35.35534, -25), (-25, 35.35534, -25), (-23.65734, 37.15724, -23.65734), (-22.38679, 37.15724, -24.863047), (-23.65734, 35.35534, -26.274137), (-23.65734, 35.35534, -26.274137), (-22.38679, 37.15724, -24.863047), (-21.054876, 37.15724, -26.000607), (-22.249836, 35.35534, -27.47626), (-22.249836, 35.35534, -27.47626), (-21.054876, 37.15724, -26.000607), (-19.665255, 37.15724, -27.066902), (-20.781347, 35.35534, -28.60307), (-20.781347, 35.35534, -28.60307), (-19.665255, 37.15724, -27.066902), (-18.221733, 37.15724, -28.059008), (-19.255898, 35.35534, -29.651482), (-19.255898, 35.35534, -29.651482), (-18.221733, 37.15724, -28.059008), (-16.728266, 37.15724, -28.974205), (-17.67767, 35.35534, -30.618622), (-17.67767, 35.35534, -30.618622), (-16.728266, 37.15724, -28.974205), (-15.188947, 37.15724, -29.809986), (-16.050987, 35.35534, -31.501839), (-16.050987, 35.35534, -31.501839), (-15.188947, 37.15724, -29.809986), (-13.607997, 37.15724, -30.564062), (-14.380312, 35.35534, -32.29871), (-14.380312, 35.35534, -32.29871), (-13.607997, 37.15724, -30.564062), (-11.989748, 37.15724, -31.234362), (-12.67022, 35.35534, -33.007053), (-12.67022, 35.35534, -33.007053), (-11.989748, 37.15724, -31.234362), (-10.338636, 37.15724, -31.819052), (-10.925401, 35.35534, -33.624924), (-10.925401, 35.35534, -33.624924), (-10.338636, 37.15724, -31.819052), (-8.659187, 37.15724, -32.31653), (-9.150635, 35.35534, -34.150635), (-9.150635, 35.35534, -34.150635), (-8.659187, 37.15724, -32.31653), (-6.9560037, 37.15724, -32.725426), (-7.350788, 35.35534, -34.58274), (-7.350788, 35.35534, -34.58274), (-6.9560037, 37.15724, -32.725426), (-5.2337546, 37.15724, -33.044624), (-5.5307937, 35.35534, -34.920055), (-5.5307937, 35.35534, -34.920055), (-5.2337546, 37.15724, -33.044624), (-3.4971597, 37.15724, -33.27325), (-3.6956394, 35.35534, -35.16166), (-3.6956394, 35.35534, -35.16166), (-3.4971597, 37.15724, -33.27325), (-1.7509795, 37.15724, -33.41068), (-1.8503555, 35.35534, -35.306885), (-1.8503555, 35.35534, -35.306885), (-1.7509795, 37.15724, -33.41068), (-6.145865e-15, 37.15724, -33.45653), (-6.4946704e-15, 35.35534, -35.35534), (-6.4946704e-15, 35.35534, -35.35534), (-6.145865e-15, 37.15724, -33.45653), (1.7509795, 37.15724, -33.41068), (1.8503555, 35.35534, -35.306885), (1.8503555, 35.35534, -35.306885), (1.7509795, 37.15724, -33.41068), (3.4971597, 37.15724, -33.27325), (3.6956394, 35.35534, -35.16166), (3.6956394, 35.35534, -35.16166), (3.4971597, 37.15724, -33.27325), (5.2337546, 37.15724, -33.044624), (5.5307937, 35.35534, -34.920055), (5.5307937, 35.35534, -34.920055), (5.2337546, 37.15724, -33.044624), (6.9560037, 37.15724, -32.725426), (7.350788, 35.35534, -34.58274), (7.350788, 35.35534, -34.58274), (6.9560037, 37.15724, -32.725426), (8.659187, 37.15724, -32.31653), (9.150635, 35.35534, -34.150635), (9.150635, 35.35534, -34.150635), (8.659187, 37.15724, -32.31653), (10.338636, 37.15724, -31.819052), (10.925401, 35.35534, -33.624924), (10.925401, 35.35534, -33.624924), (10.338636, 37.15724, -31.819052), (11.989748, 37.15724, -31.234362), (12.67022, 35.35534, -33.007053), (12.67022, 35.35534, -33.007053), (11.989748, 37.15724, -31.234362), (13.607997, 37.15724, -30.564062), (14.380312, 35.35534, -32.29871), (14.380312, 35.35534, -32.29871), (13.607997, 37.15724, -30.564062), (15.188947, 37.15724, -29.809986), (16.050987, 35.35534, -31.501839), (16.050987, 35.35534, -31.501839), (15.188947, 37.15724, -29.809986), (16.728266, 37.15724, -28.974205), (17.67767, 35.35534, -30.618622), (17.67767, 35.35534, -30.618622), (16.728266, 37.15724, -28.974205), (18.221733, 37.15724, -28.059008), (19.255898, 35.35534, -29.651482), (19.255898, 35.35534, -29.651482), (18.221733, 37.15724, -28.059008), (19.665255, 37.15724, -27.066902), (20.781347, 35.35534, -28.60307), (20.781347, 35.35534, -28.60307), (19.665255, 37.15724, -27.066902), (21.054876, 37.15724, -26.000607), (22.249836, 35.35534, -27.47626), (22.249836, 35.35534, -27.47626), (21.054876, 37.15724, -26.000607), (22.38679, 37.15724, -24.863047), (23.65734, 35.35534, -26.274137), (23.65734, 35.35534, -26.274137), (22.38679, 37.15724, -24.863047), (23.65734, 37.15724, -23.65734), (25, 35.35534, -25), (25, 35.35534, -25), (23.65734, 37.15724, -23.65734), (24.863047, 37.15724, -22.38679), (26.274137, 35.35534, -23.65734), (26.274137, 35.35534, -23.65734), (24.863047, 37.15724, -22.38679), (26.000607, 37.15724, -21.054876), (27.47626, 35.35534, -22.249836), (27.47626, 35.35534, -22.249836), (26.000607, 37.15724, -21.054876), (27.066902, 37.15724, -19.665255), (28.60307, 35.35534, -20.781347), (28.60307, 35.35534, -20.781347), (27.066902, 37.15724, -19.665255), (28.059008, 37.15724, -18.221733), (29.651482, 35.35534, -19.255898), (29.651482, 35.35534, -19.255898), (28.059008, 37.15724, -18.221733), (28.974205, 37.15724, -16.728266), (30.618622, 35.35534, -17.67767), (30.618622, 35.35534, -17.67767), (28.974205, 37.15724, -16.728266), (29.809986, 37.15724, -15.188947), (31.501839, 35.35534, -16.050987), (31.501839, 35.35534, -16.050987), (29.809986, 37.15724, -15.188947), (30.564062, 37.15724, -13.607997), (32.29871, 35.35534, -14.380312), (32.29871, 35.35534, -14.380312), (30.564062, 37.15724, -13.607997), (31.234362, 37.15724, -11.989748), (33.007053, 35.35534, -12.67022), (33.007053, 35.35534, -12.67022), (31.234362, 37.15724, -11.989748), (31.819052, 37.15724, -10.338636), (33.624924, 35.35534, -10.925401), (33.624924, 35.35534, -10.925401), (31.819052, 37.15724, -10.338636), (32.31653, 37.15724, -8.659187), (34.150635, 35.35534, -9.150635), (34.150635, 35.35534, -9.150635), (32.31653, 37.15724, -8.659187), (32.725426, 37.15724, -6.9560037), (34.58274, 35.35534, -7.350788), (34.58274, 35.35534, -7.350788), (32.725426, 37.15724, -6.9560037), (33.044624, 37.15724, -5.2337546), (34.920055, 35.35534, -5.5307937), (34.920055, 35.35534, -5.5307937), (33.044624, 37.15724, -5.2337546), (33.27325, 37.15724, -3.4971597), (35.16166, 35.35534, -3.6956394), (35.16166, 35.35534, -3.6956394), (33.27325, 37.15724, -3.4971597), (33.41068, 37.15724, -1.7509795), (35.306885, 35.35534, -1.8503555), (35.306885, 35.35534, -1.8503555), (33.41068, 37.15724, -1.7509795), (33.45653, 37.15724, 0), (35.35534, 35.35534, 0), (33.45653, 37.15724, 0), (31.466019, 38.8573, 0), (31.422897, 38.8573, 1.6468042), (33.41068, 37.15724, 1.7509795), (33.41068, 37.15724, 1.7509795), (31.422897, 38.8573, 1.6468042), (31.293646, 38.8573, 3.2890947), (33.27325, 37.15724, 3.4971597), (33.27325, 37.15724, 3.4971597), (31.293646, 38.8573, 3.2890947), (31.07862, 38.8573, 4.92237), (33.044624, 37.15724, 5.2337546), (33.044624, 37.15724, 5.2337546), (31.07862, 38.8573, 4.92237), (30.778412, 38.8573, 6.5421534), (32.725426, 37.15724, 6.9560037), (32.725426, 37.15724, 6.9560037), (30.778412, 38.8573, 6.5421534), (30.39384, 38.8573, 8.144005), (32.31653, 37.15724, 8.659187), (32.31653, 37.15724, 8.659187), (30.39384, 38.8573, 8.144005), (29.925962, 38.8573, 9.723535), (31.819052, 37.15724, 10.338636), (31.819052, 37.15724, 10.338636), (29.925962, 38.8573, 9.723535), (29.37606, 38.8573, 11.276413), (31.234362, 37.15724, 11.989748), (31.234362, 37.15724, 11.989748), (29.37606, 38.8573, 11.276413), (28.74564, 38.8573, 12.798383), (30.564062, 37.15724, 13.607997), (30.564062, 37.15724, 13.607997), (28.74564, 38.8573, 12.798383), (28.036428, 38.8573, 14.285274), (29.809986, 37.15724, 15.188947), (29.809986, 37.15724, 15.188947), (28.036428, 38.8573, 14.285274), (27.250372, 38.8573, 15.733009), (28.974205, 37.15724, 16.728266), (28.974205, 37.15724, 16.728266), (27.250372, 38.8573, 15.733009), (26.389624, 38.8573, 17.137623), (28.059008, 37.15724, 18.221733), (28.059008, 37.15724, 18.221733), (26.389624, 38.8573, 17.137623), (25.456545, 38.8573, 18.495262), (27.066902, 37.15724, 19.665255), (27.066902, 37.15724, 19.665255), (25.456545, 38.8573, 18.495262), (24.45369, 38.8573, 19.802208), (26.000607, 37.15724, 21.054876), (26.000607, 37.15724, 21.054876), (24.45369, 38.8573, 19.802208), (23.38381, 38.8573, 21.054876), (24.863047, 37.15724, 22.38679), (24.863047, 37.15724, 22.38679), (23.38381, 38.8573, 21.054876), (22.249836, 38.8573, 22.249836), (23.65734, 37.15724, 23.65734), (23.65734, 37.15724, 23.65734), (22.249836, 38.8573, 22.249836), (21.054876, 38.8573, 23.38381), (22.38679, 37.15724, 24.863047), (22.38679, 37.15724, 24.863047), (21.054876, 38.8573, 23.38381), (19.802208, 38.8573, 24.45369), (21.054876, 37.15724, 26.000607), (21.054876, 37.15724, 26.000607), (19.802208, 38.8573, 24.45369), (18.495262, 38.8573, 25.456545), (19.665255, 37.15724, 27.066902), (19.665255, 37.15724, 27.066902), (18.495262, 38.8573, 25.456545), (17.137623, 38.8573, 26.389624), (18.221733, 37.15724, 28.059008), (18.221733, 37.15724, 28.059008), (17.137623, 38.8573, 26.389624), (15.733009, 38.8573, 27.250372), (16.728266, 37.15724, 28.974205), (16.728266, 37.15724, 28.974205), (15.733009, 38.8573, 27.250372), (14.285274, 38.8573, 28.036428), (15.188947, 37.15724, 29.809986), (15.188947, 37.15724, 29.809986), (14.285274, 38.8573, 28.036428), (12.798383, 38.8573, 28.74564), (13.607997, 37.15724, 30.564062), (13.607997, 37.15724, 30.564062), (12.798383, 38.8573, 28.74564), (11.276413, 38.8573, 29.37606), (11.989748, 37.15724, 31.234362), (11.989748, 37.15724, 31.234362), (11.276413, 38.8573, 29.37606), (9.723535, 38.8573, 29.925962), (10.338636, 37.15724, 31.819052), (10.338636, 37.15724, 31.819052), (9.723535, 38.8573, 29.925962), (8.144005, 38.8573, 30.39384), (8.659187, 37.15724, 32.31653), (8.659187, 37.15724, 32.31653), (8.144005, 38.8573, 30.39384), (6.5421534, 38.8573, 30.778412), (6.9560037, 37.15724, 32.725426), (6.9560037, 37.15724, 32.725426), (6.5421534, 38.8573, 30.778412), (4.92237, 38.8573, 31.07862), (5.2337546, 37.15724, 33.044624), (5.2337546, 37.15724, 33.044624), (4.92237, 38.8573, 31.07862), (3.2890947, 38.8573, 31.293646), (3.4971597, 37.15724, 33.27325), (3.4971597, 37.15724, 33.27325), (3.2890947, 38.8573, 31.293646), (1.6468042, 38.8573, 31.422897), (1.7509795, 37.15724, 33.41068), (1.7509795, 37.15724, 33.41068), (1.6468042, 38.8573, 31.422897), (1.926738e-15, 38.8573, 31.466019), (2.0486216e-15, 37.15724, 33.45653), (2.0486216e-15, 37.15724, 33.45653), (1.926738e-15, 38.8573, 31.466019), (-1.6468042, 38.8573, 31.422897), (-1.7509795, 37.15724, 33.41068), (-1.7509795, 37.15724, 33.41068), (-1.6468042, 38.8573, 31.422897), (-3.2890947, 38.8573, 31.293646), (-3.4971597, 37.15724, 33.27325), (-3.4971597, 37.15724, 33.27325), (-3.2890947, 38.8573, 31.293646), (-4.92237, 38.8573, 31.07862), (-5.2337546, 37.15724, 33.044624), (-5.2337546, 37.15724, 33.044624), (-4.92237, 38.8573, 31.07862), (-6.5421534, 38.8573, 30.778412), (-6.9560037, 37.15724, 32.725426), (-6.9560037, 37.15724, 32.725426), (-6.5421534, 38.8573, 30.778412), (-8.144005, 38.8573, 30.39384), (-8.659187, 37.15724, 32.31653), (-8.659187, 37.15724, 32.31653), (-8.144005, 38.8573, 30.39384), (-9.723535, 38.8573, 29.925962), (-10.338636, 37.15724, 31.819052), (-10.338636, 37.15724, 31.819052), (-9.723535, 38.8573, 29.925962), (-11.276413, 38.8573, 29.37606), (-11.989748, 37.15724, 31.234362), (-11.989748, 37.15724, 31.234362), (-11.276413, 38.8573, 29.37606), (-12.798383, 38.8573, 28.74564), (-13.607997, 37.15724, 30.564062), (-13.607997, 37.15724, 30.564062), (-12.798383, 38.8573, 28.74564), (-14.285274, 38.8573, 28.036428), (-15.188947, 37.15724, 29.809986), (-15.188947, 37.15724, 29.809986), (-14.285274, 38.8573, 28.036428), (-15.733009, 38.8573, 27.250372), (-16.728266, 37.15724, 28.974205), (-16.728266, 37.15724, 28.974205), (-15.733009, 38.8573, 27.250372), (-17.137623, 38.8573, 26.389624), (-18.221733, 37.15724, 28.059008), (-18.221733, 37.15724, 28.059008), (-17.137623, 38.8573, 26.389624), (-18.495262, 38.8573, 25.456545), (-19.665255, 37.15724, 27.066902), (-19.665255, 37.15724, 27.066902), (-18.495262, 38.8573, 25.456545), (-19.802208, 38.8573, 24.45369), (-21.054876, 37.15724, 26.000607), (-21.054876, 37.15724, 26.000607), (-19.802208, 38.8573, 24.45369), (-21.054876, 38.8573, 23.38381), (-22.38679, 37.15724, 24.863047), (-22.38679, 37.15724, 24.863047), (-21.054876, 38.8573, 23.38381), (-22.249836, 38.8573, 22.249836), (-23.65734, 37.15724, 23.65734), (-23.65734, 37.15724, 23.65734), (-22.249836, 38.8573, 22.249836), (-23.38381, 38.8573, 21.054876), (-24.863047, 37.15724, 22.38679), (-24.863047, 37.15724, 22.38679), (-23.38381, 38.8573, 21.054876), (-24.45369, 38.8573, 19.802208), (-26.000607, 37.15724, 21.054876), (-26.000607, 37.15724, 21.054876), (-24.45369, 38.8573, 19.802208), (-25.456545, 38.8573, 18.495262), (-27.066902, 37.15724, 19.665255), (-27.066902, 37.15724, 19.665255), (-25.456545, 38.8573, 18.495262), (-26.389624, 38.8573, 17.137623), (-28.059008, 37.15724, 18.221733), (-28.059008, 37.15724, 18.221733), (-26.389624, 38.8573, 17.137623), (-27.250372, 38.8573, 15.733009), (-28.974205, 37.15724, 16.728266), (-28.974205, 37.15724, 16.728266), (-27.250372, 38.8573, 15.733009), (-28.036428, 38.8573, 14.285274), (-29.809986, 37.15724, 15.188947), (-29.809986, 37.15724, 15.188947), (-28.036428, 38.8573, 14.285274), (-28.74564, 38.8573, 12.798383), (-30.564062, 37.15724, 13.607997), (-30.564062, 37.15724, 13.607997), (-28.74564, 38.8573, 12.798383), (-29.37606, 38.8573, 11.276413), (-31.234362, 37.15724, 11.989748), (-31.234362, 37.15724, 11.989748), (-29.37606, 38.8573, 11.276413), (-29.925962, 38.8573, 9.723535), (-31.819052, 37.15724, 10.338636), (-31.819052, 37.15724, 10.338636), (-29.925962, 38.8573, 9.723535), (-30.39384, 38.8573, 8.144005), (-32.31653, 37.15724, 8.659187), (-32.31653, 37.15724, 8.659187), (-30.39384, 38.8573, 8.144005), (-30.778412, 38.8573, 6.5421534), (-32.725426, 37.15724, 6.9560037), (-32.725426, 37.15724, 6.9560037), (-30.778412, 38.8573, 6.5421534), (-31.07862, 38.8573, 4.92237), (-33.044624, 37.15724, 5.2337546), (-33.044624, 37.15724, 5.2337546), (-31.07862, 38.8573, 4.92237), (-31.293646, 38.8573, 3.2890947), (-33.27325, 37.15724, 3.4971597), (-33.27325, 37.15724, 3.4971597), (-31.293646, 38.8573, 3.2890947), (-31.422897, 38.8573, 1.6468042), (-33.41068, 37.15724, 1.7509795), (-33.41068, 37.15724, 1.7509795), (-31.422897, 38.8573, 1.6468042), (-31.466019, 38.8573, 3.853476e-15), (-33.45653, 37.15724, 4.097243e-15), (-33.45653, 37.15724, 4.097243e-15), (-31.466019, 38.8573, 3.853476e-15), (-31.422897, 38.8573, -1.6468042), (-33.41068, 37.15724, -1.7509795), (-33.41068, 37.15724, -1.7509795), (-31.422897, 38.8573, -1.6468042), (-31.293646, 38.8573, -3.2890947), (-33.27325, 37.15724, -3.4971597), (-33.27325, 37.15724, -3.4971597), (-31.293646, 38.8573, -3.2890947), (-31.07862, 38.8573, -4.92237), (-33.044624, 37.15724, -5.2337546), (-33.044624, 37.15724, -5.2337546), (-31.07862, 38.8573, -4.92237), (-30.778412, 38.8573, -6.5421534), (-32.725426, 37.15724, -6.9560037), (-32.725426, 37.15724, -6.9560037), (-30.778412, 38.8573, -6.5421534), (-30.39384, 38.8573, -8.144005), (-32.31653, 37.15724, -8.659187), (-32.31653, 37.15724, -8.659187), (-30.39384, 38.8573, -8.144005), (-29.925962, 38.8573, -9.723535), (-31.819052, 37.15724, -10.338636), (-31.819052, 37.15724, -10.338636), (-29.925962, 38.8573, -9.723535), (-29.37606, 38.8573, -11.276413), (-31.234362, 37.15724, -11.989748), (-31.234362, 37.15724, -11.989748), (-29.37606, 38.8573, -11.276413), (-28.74564, 38.8573, -12.798383), (-30.564062, 37.15724, -13.607997), (-30.564062, 37.15724, -13.607997), (-28.74564, 38.8573, -12.798383), (-28.036428, 38.8573, -14.285274), (-29.809986, 37.15724, -15.188947), (-29.809986, 37.15724, -15.188947), (-28.036428, 38.8573, -14.285274), (-27.250372, 38.8573, -15.733009), (-28.974205, 37.15724, -16.728266), (-28.974205, 37.15724, -16.728266), (-27.250372, 38.8573, -15.733009), (-26.389624, 38.8573, -17.137623), (-28.059008, 37.15724, -18.221733), (-28.059008, 37.15724, -18.221733), (-26.389624, 38.8573, -17.137623), (-25.456545, 38.8573, -18.495262), (-27.066902, 37.15724, -19.665255), (-27.066902, 37.15724, -19.665255), (-25.456545, 38.8573, -18.495262), (-24.45369, 38.8573, -19.802208), (-26.000607, 37.15724, -21.054876), (-26.000607, 37.15724, -21.054876), (-24.45369, 38.8573, -19.802208), (-23.38381, 38.8573, -21.054876), (-24.863047, 37.15724, -22.38679), (-24.863047, 37.15724, -22.38679), (-23.38381, 38.8573, -21.054876), (-22.249836, 38.8573, -22.249836), (-23.65734, 37.15724, -23.65734), (-23.65734, 37.15724, -23.65734), (-22.249836, 38.8573, -22.249836), (-21.054876, 38.8573, -23.38381), (-22.38679, 37.15724, -24.863047), (-22.38679, 37.15724, -24.863047), (-21.054876, 38.8573, -23.38381), (-19.802208, 38.8573, -24.45369), (-21.054876, 37.15724, -26.000607), (-21.054876, 37.15724, -26.000607), (-19.802208, 38.8573, -24.45369), (-18.495262, 38.8573, -25.456545), (-19.665255, 37.15724, -27.066902), (-19.665255, 37.15724, -27.066902), (-18.495262, 38.8573, -25.456545), (-17.137623, 38.8573, -26.389624), (-18.221733, 37.15724, -28.059008), (-18.221733, 37.15724, -28.059008), (-17.137623, 38.8573, -26.389624), (-15.733009, 38.8573, -27.250372), (-16.728266, 37.15724, -28.974205), (-16.728266, 37.15724, -28.974205), (-15.733009, 38.8573, -27.250372), (-14.285274, 38.8573, -28.036428), (-15.188947, 37.15724, -29.809986), (-15.188947, 37.15724, -29.809986), (-14.285274, 38.8573, -28.036428), (-12.798383, 38.8573, -28.74564), (-13.607997, 37.15724, -30.564062), (-13.607997, 37.15724, -30.564062), (-12.798383, 38.8573, -28.74564), (-11.276413, 38.8573, -29.37606), (-11.989748, 37.15724, -31.234362), (-11.989748, 37.15724, -31.234362), (-11.276413, 38.8573, -29.37606), (-9.723535, 38.8573, -29.925962), (-10.338636, 37.15724, -31.819052), (-10.338636, 37.15724, -31.819052), (-9.723535, 38.8573, -29.925962), (-8.144005, 38.8573, -30.39384), (-8.659187, 37.15724, -32.31653), (-8.659187, 37.15724, -32.31653), (-8.144005, 38.8573, -30.39384), (-6.5421534, 38.8573, -30.778412), (-6.9560037, 37.15724, -32.725426), (-6.9560037, 37.15724, -32.725426), (-6.5421534, 38.8573, -30.778412), (-4.92237, 38.8573, -31.07862), (-5.2337546, 37.15724, -33.044624), (-5.2337546, 37.15724, -33.044624), (-4.92237, 38.8573, -31.07862), (-3.2890947, 38.8573, -31.293646), (-3.4971597, 37.15724, -33.27325), (-3.4971597, 37.15724, -33.27325), (-3.2890947, 38.8573, -31.293646), (-1.6468042, 38.8573, -31.422897), (-1.7509795, 37.15724, -33.41068), (-1.7509795, 37.15724, -33.41068), (-1.6468042, 38.8573, -31.422897), (-5.780214e-15, 38.8573, -31.466019), (-6.145865e-15, 37.15724, -33.45653), (-6.145865e-15, 37.15724, -33.45653), (-5.780214e-15, 38.8573, -31.466019), (1.6468042, 38.8573, -31.422897), (1.7509795, 37.15724, -33.41068), (1.7509795, 37.15724, -33.41068), (1.6468042, 38.8573, -31.422897), (3.2890947, 38.8573, -31.293646), (3.4971597, 37.15724, -33.27325), (3.4971597, 37.15724, -33.27325), (3.2890947, 38.8573, -31.293646), (4.92237, 38.8573, -31.07862), (5.2337546, 37.15724, -33.044624), (5.2337546, 37.15724, -33.044624), (4.92237, 38.8573, -31.07862), (6.5421534, 38.8573, -30.778412), (6.9560037, 37.15724, -32.725426), (6.9560037, 37.15724, -32.725426), (6.5421534, 38.8573, -30.778412), (8.144005, 38.8573, -30.39384), (8.659187, 37.15724, -32.31653), (8.659187, 37.15724, -32.31653), (8.144005, 38.8573, -30.39384), (9.723535, 38.8573, -29.925962), (10.338636, 37.15724, -31.819052), (10.338636, 37.15724, -31.819052), (9.723535, 38.8573, -29.925962), (11.276413, 38.8573, -29.37606), (11.989748, 37.15724, -31.234362), (11.989748, 37.15724, -31.234362), (11.276413, 38.8573, -29.37606), (12.798383, 38.8573, -28.74564), (13.607997, 37.15724, -30.564062), (13.607997, 37.15724, -30.564062), (12.798383, 38.8573, -28.74564), (14.285274, 38.8573, -28.036428), (15.188947, 37.15724, -29.809986), (15.188947, 37.15724, -29.809986), (14.285274, 38.8573, -28.036428), (15.733009, 38.8573, -27.250372), (16.728266, 37.15724, -28.974205), (16.728266, 37.15724, -28.974205), (15.733009, 38.8573, -27.250372), (17.137623, 38.8573, -26.389624), (18.221733, 37.15724, -28.059008), (18.221733, 37.15724, -28.059008), (17.137623, 38.8573, -26.389624), (18.495262, 38.8573, -25.456545), (19.665255, 37.15724, -27.066902), (19.665255, 37.15724, -27.066902), (18.495262, 38.8573, -25.456545), (19.802208, 38.8573, -24.45369), (21.054876, 37.15724, -26.000607), (21.054876, 37.15724, -26.000607), (19.802208, 38.8573, -24.45369), (21.054876, 38.8573, -23.38381), (22.38679, 37.15724, -24.863047), (22.38679, 37.15724, -24.863047), (21.054876, 38.8573, -23.38381), (22.249836, 38.8573, -22.249836), (23.65734, 37.15724, -23.65734), (23.65734, 37.15724, -23.65734), (22.249836, 38.8573, -22.249836), (23.38381, 38.8573, -21.054876), (24.863047, 37.15724, -22.38679), (24.863047, 37.15724, -22.38679), (23.38381, 38.8573, -21.054876), (24.45369, 38.8573, -19.802208), (26.000607, 37.15724, -21.054876), (26.000607, 37.15724, -21.054876), (24.45369, 38.8573, -19.802208), (25.456545, 38.8573, -18.495262), (27.066902, 37.15724, -19.665255), (27.066902, 37.15724, -19.665255), (25.456545, 38.8573, -18.495262), (26.389624, 38.8573, -17.137623), (28.059008, 37.15724, -18.221733), (28.059008, 37.15724, -18.221733), (26.389624, 38.8573, -17.137623), (27.250372, 38.8573, -15.733009), (28.974205, 37.15724, -16.728266), (28.974205, 37.15724, -16.728266), (27.250372, 38.8573, -15.733009), (28.036428, 38.8573, -14.285274), (29.809986, 37.15724, -15.188947), (29.809986, 37.15724, -15.188947), (28.036428, 38.8573, -14.285274), (28.74564, 38.8573, -12.798383), (30.564062, 37.15724, -13.607997), (30.564062, 37.15724, -13.607997), (28.74564, 38.8573, -12.798383), (29.37606, 38.8573, -11.276413), (31.234362, 37.15724, -11.989748), (31.234362, 37.15724, -11.989748), (29.37606, 38.8573, -11.276413), (29.925962, 38.8573, -9.723535), (31.819052, 37.15724, -10.338636), (31.819052, 37.15724, -10.338636), (29.925962, 38.8573, -9.723535), (30.39384, 38.8573, -8.144005), (32.31653, 37.15724, -8.659187), (32.31653, 37.15724, -8.659187), (30.39384, 38.8573, -8.144005), (30.778412, 38.8573, -6.5421534), (32.725426, 37.15724, -6.9560037), (32.725426, 37.15724, -6.9560037), (30.778412, 38.8573, -6.5421534), (31.07862, 38.8573, -4.92237), (33.044624, 37.15724, -5.2337546), (33.044624, 37.15724, -5.2337546), (31.07862, 38.8573, -4.92237), (31.293646, 38.8573, -3.2890947), (33.27325, 37.15724, -3.4971597), (33.27325, 37.15724, -3.4971597), (31.293646, 38.8573, -3.2890947), (31.422897, 38.8573, -1.6468042), (33.41068, 37.15724, -1.7509795), (33.41068, 37.15724, -1.7509795), (31.422897, 38.8573, -1.6468042), (31.466019, 38.8573, 0), (33.45653, 37.15724, 0), (31.466019, 38.8573, 0), (29.389263, 40.45085, 0), (29.348986, 40.45085, 1.5381151), (31.422897, 38.8573, 1.6468042), (31.422897, 38.8573, 1.6468042), (29.348986, 40.45085, 1.5381151), (29.228266, 40.45085, 3.0720146), (31.293646, 38.8573, 3.2890947), (31.293646, 38.8573, 3.2890947), (29.228266, 40.45085, 3.0720146), (29.027431, 40.45085, 4.5974936), (31.07862, 38.8573, 4.92237), (31.07862, 38.8573, 4.92237), (29.027431, 40.45085, 4.5974936), (28.747036, 40.45085, 6.110371), (30.778412, 38.8573, 6.5421534), (30.778412, 38.8573, 6.5421534), (28.747036, 40.45085, 6.110371), (28.387848, 40.45085, 7.606501), (30.39384, 38.8573, 8.144005), (30.39384, 38.8573, 8.144005), (28.387848, 40.45085, 7.606501), (27.95085, 40.45085, 9.081781), (29.925962, 38.8573, 9.723535), (29.925962, 38.8573, 9.723535), (27.95085, 40.45085, 9.081781), (27.43724, 40.45085, 10.532169), (29.37606, 38.8573, 11.276413), (29.37606, 38.8573, 11.276413), (27.43724, 40.45085, 10.532169), (26.848427, 40.45085, 11.95369), (28.74564, 38.8573, 12.798383), (28.74564, 38.8573, 12.798383), (26.848427, 40.45085, 11.95369), (26.186026, 40.45085, 13.342446), (28.036428, 38.8573, 14.285274), (28.036428, 38.8573, 14.285274), (26.186026, 40.45085, 13.342446), (25.451847, 40.45085, 14.694632), (27.250372, 38.8573, 15.733009), (27.250372, 38.8573, 15.733009), (25.451847, 40.45085, 14.694632), (24.64791, 40.45085, 16.00654), (26.389624, 38.8573, 17.137623), (26.389624, 38.8573, 17.137623), (24.64791, 40.45085, 16.00654), (23.776413, 40.45085, 17.274574), (25.456545, 38.8573, 18.495262), (25.456545, 38.8573, 18.495262), (23.776413, 40.45085, 17.274574), (22.839746, 40.45085, 18.495262), (24.45369, 38.8573, 19.802208), (24.45369, 38.8573, 19.802208), (22.839746, 40.45085, 18.495262), (21.840479, 40.45085, 19.665255), (23.38381, 38.8573, 21.054876), (23.38381, 38.8573, 21.054876), (21.840479, 40.45085, 19.665255), (20.781347, 40.45085, 20.781347), (22.249836, 38.8573, 22.249836), (22.249836, 38.8573, 22.249836), (20.781347, 40.45085, 20.781347), (19.665255, 40.45085, 21.840479), (21.054876, 38.8573, 23.38381), (21.054876, 38.8573, 23.38381), (19.665255, 40.45085, 21.840479), (18.495262, 40.45085, 22.839746), (19.802208, 38.8573, 24.45369), (19.802208, 38.8573, 24.45369), (18.495262, 40.45085, 22.839746), (17.274574, 40.45085, 23.776413), (18.495262, 38.8573, 25.456545), (18.495262, 38.8573, 25.456545), (17.274574, 40.45085, 23.776413), (16.00654, 40.45085, 24.64791), (17.137623, 38.8573, 26.389624), (17.137623, 38.8573, 26.389624), (16.00654, 40.45085, 24.64791), (14.694632, 40.45085, 25.451847), (15.733009, 38.8573, 27.250372), (15.733009, 38.8573, 27.250372), (14.694632, 40.45085, 25.451847), (13.342446, 40.45085, 26.186026), (14.285274, 38.8573, 28.036428), (14.285274, 38.8573, 28.036428), (13.342446, 40.45085, 26.186026), (11.95369, 40.45085, 26.848427), (12.798383, 38.8573, 28.74564), (12.798383, 38.8573, 28.74564), (11.95369, 40.45085, 26.848427), (10.532169, 40.45085, 27.43724), (11.276413, 38.8573, 29.37606), (11.276413, 38.8573, 29.37606), (10.532169, 40.45085, 27.43724), (9.081781, 40.45085, 27.95085), (9.723535, 38.8573, 29.925962), (9.723535, 38.8573, 29.925962), (9.081781, 40.45085, 27.95085), (7.606501, 40.45085, 28.387848), (8.144005, 38.8573, 30.39384), (8.144005, 38.8573, 30.39384), (7.606501, 40.45085, 28.387848), (6.110371, 40.45085, 28.747036), (6.5421534, 38.8573, 30.778412), (6.5421534, 38.8573, 30.778412), (6.110371, 40.45085, 28.747036), (4.5974936, 40.45085, 29.027431), (4.92237, 38.8573, 31.07862), (4.92237, 38.8573, 31.07862), (4.5974936, 40.45085, 29.027431), (3.0720146, 40.45085, 29.228266), (3.2890947, 38.8573, 31.293646), (3.2890947, 38.8573, 31.293646), (3.0720146, 40.45085, 29.228266), (1.5381151, 40.45085, 29.348986), (1.6468042, 38.8573, 31.422897), (1.6468042, 38.8573, 31.422897), (1.5381151, 40.45085, 29.348986), (1.7995734e-15, 40.45085, 29.389263), (1.926738e-15, 38.8573, 31.466019), (1.926738e-15, 38.8573, 31.466019), (1.7995734e-15, 40.45085, 29.389263), (-1.5381151, 40.45085, 29.348986), (-1.6468042, 38.8573, 31.422897), (-1.6468042, 38.8573, 31.422897), (-1.5381151, 40.45085, 29.348986), (-3.0720146, 40.45085, 29.228266), (-3.2890947, 38.8573, 31.293646), (-3.2890947, 38.8573, 31.293646), (-3.0720146, 40.45085, 29.228266), (-4.5974936, 40.45085, 29.027431), (-4.92237, 38.8573, 31.07862), (-4.92237, 38.8573, 31.07862), (-4.5974936, 40.45085, 29.027431), (-6.110371, 40.45085, 28.747036), (-6.5421534, 38.8573, 30.778412), (-6.5421534, 38.8573, 30.778412), (-6.110371, 40.45085, 28.747036), (-7.606501, 40.45085, 28.387848), (-8.144005, 38.8573, 30.39384), (-8.144005, 38.8573, 30.39384), (-7.606501, 40.45085, 28.387848), (-9.081781, 40.45085, 27.95085), (-9.723535, 38.8573, 29.925962), (-9.723535, 38.8573, 29.925962), (-9.081781, 40.45085, 27.95085), (-10.532169, 40.45085, 27.43724), (-11.276413, 38.8573, 29.37606), (-11.276413, 38.8573, 29.37606), (-10.532169, 40.45085, 27.43724), (-11.95369, 40.45085, 26.848427), (-12.798383, 38.8573, 28.74564), (-12.798383, 38.8573, 28.74564), (-11.95369, 40.45085, 26.848427), (-13.342446, 40.45085, 26.186026), (-14.285274, 38.8573, 28.036428), (-14.285274, 38.8573, 28.036428), (-13.342446, 40.45085, 26.186026), (-14.694632, 40.45085, 25.451847), (-15.733009, 38.8573, 27.250372), (-15.733009, 38.8573, 27.250372), (-14.694632, 40.45085, 25.451847), (-16.00654, 40.45085, 24.64791), (-17.137623, 38.8573, 26.389624), (-17.137623, 38.8573, 26.389624), (-16.00654, 40.45085, 24.64791), (-17.274574, 40.45085, 23.776413), (-18.495262, 38.8573, 25.456545), (-18.495262, 38.8573, 25.456545), (-17.274574, 40.45085, 23.776413), (-18.495262, 40.45085, 22.839746), (-19.802208, 38.8573, 24.45369), (-19.802208, 38.8573, 24.45369), (-18.495262, 40.45085, 22.839746), (-19.665255, 40.45085, 21.840479), (-21.054876, 38.8573, 23.38381), (-21.054876, 38.8573, 23.38381), (-19.665255, 40.45085, 21.840479), (-20.781347, 40.45085, 20.781347), (-22.249836, 38.8573, 22.249836), (-22.249836, 38.8573, 22.249836), (-20.781347, 40.45085, 20.781347), (-21.840479, 40.45085, 19.665255), (-23.38381, 38.8573, 21.054876), (-23.38381, 38.8573, 21.054876), (-21.840479, 40.45085, 19.665255), (-22.839746, 40.45085, 18.495262), (-24.45369, 38.8573, 19.802208), (-24.45369, 38.8573, 19.802208), (-22.839746, 40.45085, 18.495262), (-23.776413, 40.45085, 17.274574), (-25.456545, 38.8573, 18.495262), (-25.456545, 38.8573, 18.495262), (-23.776413, 40.45085, 17.274574), (-24.64791, 40.45085, 16.00654), (-26.389624, 38.8573, 17.137623), (-26.389624, 38.8573, 17.137623), (-24.64791, 40.45085, 16.00654), (-25.451847, 40.45085, 14.694632), (-27.250372, 38.8573, 15.733009), (-27.250372, 38.8573, 15.733009), (-25.451847, 40.45085, 14.694632), (-26.186026, 40.45085, 13.342446), (-28.036428, 38.8573, 14.285274), (-28.036428, 38.8573, 14.285274), (-26.186026, 40.45085, 13.342446), (-26.848427, 40.45085, 11.95369), (-28.74564, 38.8573, 12.798383), (-28.74564, 38.8573, 12.798383), (-26.848427, 40.45085, 11.95369), (-27.43724, 40.45085, 10.532169), (-29.37606, 38.8573, 11.276413), (-29.37606, 38.8573, 11.276413), (-27.43724, 40.45085, 10.532169), (-27.95085, 40.45085, 9.081781), (-29.925962, 38.8573, 9.723535), (-29.925962, 38.8573, 9.723535), (-27.95085, 40.45085, 9.081781), (-28.387848, 40.45085, 7.606501), (-30.39384, 38.8573, 8.144005), (-30.39384, 38.8573, 8.144005), (-28.387848, 40.45085, 7.606501), (-28.747036, 40.45085, 6.110371), (-30.778412, 38.8573, 6.5421534), (-30.778412, 38.8573, 6.5421534), (-28.747036, 40.45085, 6.110371), (-29.027431, 40.45085, 4.5974936), (-31.07862, 38.8573, 4.92237), (-31.07862, 38.8573, 4.92237), (-29.027431, 40.45085, 4.5974936), (-29.228266, 40.45085, 3.0720146), (-31.293646, 38.8573, 3.2890947), (-31.293646, 38.8573, 3.2890947), (-29.228266, 40.45085, 3.0720146), (-29.348986, 40.45085, 1.5381151), (-31.422897, 38.8573, 1.6468042), (-31.422897, 38.8573, 1.6468042), (-29.348986, 40.45085, 1.5381151), (-29.389263, 40.45085, 3.5991468e-15), (-31.466019, 38.8573, 3.853476e-15), (-31.466019, 38.8573, 3.853476e-15), (-29.389263, 40.45085, 3.5991468e-15), (-29.348986, 40.45085, -1.5381151), (-31.422897, 38.8573, -1.6468042), (-31.422897, 38.8573, -1.6468042), (-29.348986, 40.45085, -1.5381151), (-29.228266, 40.45085, -3.0720146), (-31.293646, 38.8573, -3.2890947), (-31.293646, 38.8573, -3.2890947), (-29.228266, 40.45085, -3.0720146), (-29.027431, 40.45085, -4.5974936), (-31.07862, 38.8573, -4.92237), (-31.07862, 38.8573, -4.92237), (-29.027431, 40.45085, -4.5974936), (-28.747036, 40.45085, -6.110371), (-30.778412, 38.8573, -6.5421534), (-30.778412, 38.8573, -6.5421534), (-28.747036, 40.45085, -6.110371), (-28.387848, 40.45085, -7.606501), (-30.39384, 38.8573, -8.144005), (-30.39384, 38.8573, -8.144005), (-28.387848, 40.45085, -7.606501), (-27.95085, 40.45085, -9.081781), (-29.925962, 38.8573, -9.723535), (-29.925962, 38.8573, -9.723535), (-27.95085, 40.45085, -9.081781), (-27.43724, 40.45085, -10.532169), (-29.37606, 38.8573, -11.276413), (-29.37606, 38.8573, -11.276413), (-27.43724, 40.45085, -10.532169), (-26.848427, 40.45085, -11.95369), (-28.74564, 38.8573, -12.798383), (-28.74564, 38.8573, -12.798383), (-26.848427, 40.45085, -11.95369), (-26.186026, 40.45085, -13.342446), (-28.036428, 38.8573, -14.285274), (-28.036428, 38.8573, -14.285274), (-26.186026, 40.45085, -13.342446), (-25.451847, 40.45085, -14.694632), (-27.250372, 38.8573, -15.733009), (-27.250372, 38.8573, -15.733009), (-25.451847, 40.45085, -14.694632), (-24.64791, 40.45085, -16.00654), (-26.389624, 38.8573, -17.137623), (-26.389624, 38.8573, -17.137623), (-24.64791, 40.45085, -16.00654), (-23.776413, 40.45085, -17.274574), (-25.456545, 38.8573, -18.495262), (-25.456545, 38.8573, -18.495262), (-23.776413, 40.45085, -17.274574), (-22.839746, 40.45085, -18.495262), (-24.45369, 38.8573, -19.802208), (-24.45369, 38.8573, -19.802208), (-22.839746, 40.45085, -18.495262), (-21.840479, 40.45085, -19.665255), (-23.38381, 38.8573, -21.054876), (-23.38381, 38.8573, -21.054876), (-21.840479, 40.45085, -19.665255), (-20.781347, 40.45085, -20.781347), (-22.249836, 38.8573, -22.249836), (-22.249836, 38.8573, -22.249836), (-20.781347, 40.45085, -20.781347), (-19.665255, 40.45085, -21.840479), (-21.054876, 38.8573, -23.38381), (-21.054876, 38.8573, -23.38381), (-19.665255, 40.45085, -21.840479), (-18.495262, 40.45085, -22.839746), (-19.802208, 38.8573, -24.45369), (-19.802208, 38.8573, -24.45369), (-18.495262, 40.45085, -22.839746), (-17.274574, 40.45085, -23.776413), (-18.495262, 38.8573, -25.456545), (-18.495262, 38.8573, -25.456545), (-17.274574, 40.45085, -23.776413), (-16.00654, 40.45085, -24.64791), (-17.137623, 38.8573, -26.389624), (-17.137623, 38.8573, -26.389624), (-16.00654, 40.45085, -24.64791), (-14.694632, 40.45085, -25.451847), (-15.733009, 38.8573, -27.250372), (-15.733009, 38.8573, -27.250372), (-14.694632, 40.45085, -25.451847), (-13.342446, 40.45085, -26.186026), (-14.285274, 38.8573, -28.036428), (-14.285274, 38.8573, -28.036428), (-13.342446, 40.45085, -26.186026), (-11.95369, 40.45085, -26.848427), (-12.798383, 38.8573, -28.74564), (-12.798383, 38.8573, -28.74564), (-11.95369, 40.45085, -26.848427), (-10.532169, 40.45085, -27.43724), (-11.276413, 38.8573, -29.37606), (-11.276413, 38.8573, -29.37606), (-10.532169, 40.45085, -27.43724), (-9.081781, 40.45085, -27.95085), (-9.723535, 38.8573, -29.925962), (-9.723535, 38.8573, -29.925962), (-9.081781, 40.45085, -27.95085), (-7.606501, 40.45085, -28.387848), (-8.144005, 38.8573, -30.39384), (-8.144005, 38.8573, -30.39384), (-7.606501, 40.45085, -28.387848), (-6.110371, 40.45085, -28.747036), (-6.5421534, 38.8573, -30.778412), (-6.5421534, 38.8573, -30.778412), (-6.110371, 40.45085, -28.747036), (-4.5974936, 40.45085, -29.027431), (-4.92237, 38.8573, -31.07862), (-4.92237, 38.8573, -31.07862), (-4.5974936, 40.45085, -29.027431), (-3.0720146, 40.45085, -29.228266), (-3.2890947, 38.8573, -31.293646), (-3.2890947, 38.8573, -31.293646), (-3.0720146, 40.45085, -29.228266), (-1.5381151, 40.45085, -29.348986), (-1.6468042, 38.8573, -31.422897), (-1.6468042, 38.8573, -31.422897), (-1.5381151, 40.45085, -29.348986), (-5.39872e-15, 40.45085, -29.389263), (-5.780214e-15, 38.8573, -31.466019), (-5.780214e-15, 38.8573, -31.466019), (-5.39872e-15, 40.45085, -29.389263), (1.5381151, 40.45085, -29.348986), (1.6468042, 38.8573, -31.422897), (1.6468042, 38.8573, -31.422897), (1.5381151, 40.45085, -29.348986), (3.0720146, 40.45085, -29.228266), (3.2890947, 38.8573, -31.293646), (3.2890947, 38.8573, -31.293646), (3.0720146, 40.45085, -29.228266), (4.5974936, 40.45085, -29.027431), (4.92237, 38.8573, -31.07862), (4.92237, 38.8573, -31.07862), (4.5974936, 40.45085, -29.027431), (6.110371, 40.45085, -28.747036), (6.5421534, 38.8573, -30.778412), (6.5421534, 38.8573, -30.778412), (6.110371, 40.45085, -28.747036), (7.606501, 40.45085, -28.387848), (8.144005, 38.8573, -30.39384), (8.144005, 38.8573, -30.39384), (7.606501, 40.45085, -28.387848), (9.081781, 40.45085, -27.95085), (9.723535, 38.8573, -29.925962), (9.723535, 38.8573, -29.925962), (9.081781, 40.45085, -27.95085), (10.532169, 40.45085, -27.43724), (11.276413, 38.8573, -29.37606), (11.276413, 38.8573, -29.37606), (10.532169, 40.45085, -27.43724), (11.95369, 40.45085, -26.848427), (12.798383, 38.8573, -28.74564), (12.798383, 38.8573, -28.74564), (11.95369, 40.45085, -26.848427), (13.342446, 40.45085, -26.186026), (14.285274, 38.8573, -28.036428), (14.285274, 38.8573, -28.036428), (13.342446, 40.45085, -26.186026), (14.694632, 40.45085, -25.451847), (15.733009, 38.8573, -27.250372), (15.733009, 38.8573, -27.250372), (14.694632, 40.45085, -25.451847), (16.00654, 40.45085, -24.64791), (17.137623, 38.8573, -26.389624), (17.137623, 38.8573, -26.389624), (16.00654, 40.45085, -24.64791), (17.274574, 40.45085, -23.776413), (18.495262, 38.8573, -25.456545), (18.495262, 38.8573, -25.456545), (17.274574, 40.45085, -23.776413), (18.495262, 40.45085, -22.839746), (19.802208, 38.8573, -24.45369), (19.802208, 38.8573, -24.45369), (18.495262, 40.45085, -22.839746), (19.665255, 40.45085, -21.840479), (21.054876, 38.8573, -23.38381), (21.054876, 38.8573, -23.38381), (19.665255, 40.45085, -21.840479), (20.781347, 40.45085, -20.781347), (22.249836, 38.8573, -22.249836), (22.249836, 38.8573, -22.249836), (20.781347, 40.45085, -20.781347), (21.840479, 40.45085, -19.665255), (23.38381, 38.8573, -21.054876), (23.38381, 38.8573, -21.054876), (21.840479, 40.45085, -19.665255), (22.839746, 40.45085, -18.495262), (24.45369, 38.8573, -19.802208), (24.45369, 38.8573, -19.802208), (22.839746, 40.45085, -18.495262), (23.776413, 40.45085, -17.274574), (25.456545, 38.8573, -18.495262), (25.456545, 38.8573, -18.495262), (23.776413, 40.45085, -17.274574), (24.64791, 40.45085, -16.00654), (26.389624, 38.8573, -17.137623), (26.389624, 38.8573, -17.137623), (24.64791, 40.45085, -16.00654), (25.451847, 40.45085, -14.694632), (27.250372, 38.8573, -15.733009), (27.250372, 38.8573, -15.733009), (25.451847, 40.45085, -14.694632), (26.186026, 40.45085, -13.342446), (28.036428, 38.8573, -14.285274), (28.036428, 38.8573, -14.285274), (26.186026, 40.45085, -13.342446), (26.848427, 40.45085, -11.95369), (28.74564, 38.8573, -12.798383), (28.74564, 38.8573, -12.798383), (26.848427, 40.45085, -11.95369), (27.43724, 40.45085, -10.532169), (29.37606, 38.8573, -11.276413), (29.37606, 38.8573, -11.276413), (27.43724, 40.45085, -10.532169), (27.95085, 40.45085, -9.081781), (29.925962, 38.8573, -9.723535), (29.925962, 38.8573, -9.723535), (27.95085, 40.45085, -9.081781), (28.387848, 40.45085, -7.606501), (30.39384, 38.8573, -8.144005), (30.39384, 38.8573, -8.144005), (28.387848, 40.45085, -7.606501), (28.747036, 40.45085, -6.110371), (30.778412, 38.8573, -6.5421534), (30.778412, 38.8573, -6.5421534), (28.747036, 40.45085, -6.110371), (29.027431, 40.45085, -4.5974936), (31.07862, 38.8573, -4.92237), (31.07862, 38.8573, -4.92237), (29.027431, 40.45085, -4.5974936), (29.228266, 40.45085, -3.0720146), (31.293646, 38.8573, -3.2890947), (31.293646, 38.8573, -3.2890947), (29.228266, 40.45085, -3.0720146), (29.348986, 40.45085, -1.5381151), (31.422897, 38.8573, -1.6468042), (31.422897, 38.8573, -1.6468042), (29.348986, 40.45085, -1.5381151), (29.389263, 40.45085, 0), (31.466019, 38.8573, 0), (29.389263, 40.45085, 0), (27.231953, 41.93353, 0), (27.194632, 41.93353, 1.4252102), (29.348986, 40.45085, 1.5381151), (29.348986, 40.45085, 1.5381151), (27.194632, 41.93353, 1.4252102), (27.082773, 41.93353, 2.846514), (29.228266, 40.45085, 3.0720146), (29.228266, 40.45085, 3.0720146), (27.082773, 41.93353, 2.846514), (26.89668, 41.93353, 4.260016), (29.027431, 40.45085, 4.5974936), (29.027431, 40.45085, 4.5974936), (26.89668, 41.93353, 4.260016), (26.636868, 41.93353, 5.661841), (28.747036, 40.45085, 6.110371), (28.747036, 40.45085, 6.110371), (26.636868, 41.93353, 5.661841), (26.304045, 41.93353, 7.0481477), (28.387848, 40.45085, 7.606501), (28.387848, 40.45085, 7.606501), (26.304045, 41.93353, 7.0481477), (25.899126, 41.93353, 8.415136), (27.95085, 40.45085, 9.081781), (27.95085, 40.45085, 9.081781), (25.899126, 41.93353, 8.415136), (25.423218, 41.93353, 9.759059), (27.43724, 40.45085, 10.532169), (27.43724, 40.45085, 10.532169), (25.423218, 41.93353, 9.759059), (24.877626, 41.93353, 11.076233), (26.848427, 40.45085, 11.95369), (26.848427, 40.45085, 11.95369), (24.877626, 41.93353, 11.076233), (24.263847, 41.93353, 12.363048), (26.186026, 40.45085, 13.342446), (26.186026, 40.45085, 13.342446), (24.263847, 41.93353, 12.363048), (23.583563, 41.93353, 13.615976), (25.451847, 40.45085, 14.694632), (25.451847, 40.45085, 14.694632), (23.583563, 41.93353, 13.615976), (22.838636, 41.93353, 14.831584), (24.64791, 40.45085, 16.00654), (24.64791, 40.45085, 16.00654), (22.838636, 41.93353, 14.831584), (22.031113, 41.93353, 16.00654), (23.776413, 40.45085, 17.274574), (23.776413, 40.45085, 17.274574), (22.031113, 41.93353, 16.00654), (21.1632, 41.93353, 17.137623), (22.839746, 40.45085, 18.495262), (22.839746, 40.45085, 18.495262), (21.1632, 41.93353, 17.137623), (20.237284, 41.93353, 18.221733), (21.840479, 40.45085, 19.665255), (21.840479, 40.45085, 19.665255), (20.237284, 41.93353, 18.221733), (19.255898, 41.93353, 19.255898), (20.781347, 40.45085, 20.781347), (20.781347, 40.45085, 20.781347), (19.255898, 41.93353, 19.255898), (18.221733, 41.93353, 20.237284), (19.665255, 40.45085, 21.840479), (19.665255, 40.45085, 21.840479), (18.221733, 41.93353, 20.237284), (17.137623, 41.93353, 21.1632), (18.495262, 40.45085, 22.839746), (18.495262, 40.45085, 22.839746), (17.137623, 41.93353, 21.1632), (16.00654, 41.93353, 22.031113), (17.274574, 40.45085, 23.776413), (17.274574, 40.45085, 23.776413), (16.00654, 41.93353, 22.031113), (14.831584, 41.93353, 22.838636), (16.00654, 40.45085, 24.64791), (16.00654, 40.45085, 24.64791), (14.831584, 41.93353, 22.838636), (13.615976, 41.93353, 23.583563), (14.694632, 40.45085, 25.451847), (14.694632, 40.45085, 25.451847), (13.615976, 41.93353, 23.583563), (12.363048, 41.93353, 24.263847), (13.342446, 40.45085, 26.186026), (13.342446, 40.45085, 26.186026), (12.363048, 41.93353, 24.263847), (11.076233, 41.93353, 24.877626), (11.95369, 40.45085, 26.848427), (11.95369, 40.45085, 26.848427), (11.076233, 41.93353, 24.877626), (9.759059, 41.93353, 25.423218), (10.532169, 40.45085, 27.43724), (10.532169, 40.45085, 27.43724), (9.759059, 41.93353, 25.423218), (8.415136, 41.93353, 25.899126), (9.081781, 40.45085, 27.95085), (9.081781, 40.45085, 27.95085), (8.415136, 41.93353, 25.899126), (7.0481477, 41.93353, 26.304045), (7.606501, 40.45085, 28.387848), (7.606501, 40.45085, 28.387848), (7.0481477, 41.93353, 26.304045), (5.661841, 41.93353, 26.636868), (6.110371, 40.45085, 28.747036), (6.110371, 40.45085, 28.747036), (5.661841, 41.93353, 26.636868), (4.260016, 41.93353, 26.89668), (4.5974936, 40.45085, 29.027431), (4.5974936, 40.45085, 29.027431), (4.260016, 41.93353, 26.89668), (2.846514, 41.93353, 27.082773), (3.0720146, 40.45085, 29.228266), (3.0720146, 40.45085, 29.228266), (2.846514, 41.93353, 27.082773), (1.4252102, 41.93353, 27.194632), (1.5381151, 40.45085, 29.348986), (1.5381151, 40.45085, 29.348986), (1.4252102, 41.93353, 27.194632), (1.6674762e-15, 41.93353, 27.231953), (1.7995734e-15, 40.45085, 29.389263), (1.7995734e-15, 40.45085, 29.389263), (1.6674762e-15, 41.93353, 27.231953), (-1.4252102, 41.93353, 27.194632), (-1.5381151, 40.45085, 29.348986), (-1.5381151, 40.45085, 29.348986), (-1.4252102, 41.93353, 27.194632), (-2.846514, 41.93353, 27.082773), (-3.0720146, 40.45085, 29.228266), (-3.0720146, 40.45085, 29.228266), (-2.846514, 41.93353, 27.082773), (-4.260016, 41.93353, 26.89668), (-4.5974936, 40.45085, 29.027431), (-4.5974936, 40.45085, 29.027431), (-4.260016, 41.93353, 26.89668), (-5.661841, 41.93353, 26.636868), (-6.110371, 40.45085, 28.747036), (-6.110371, 40.45085, 28.747036), (-5.661841, 41.93353, 26.636868), (-7.0481477, 41.93353, 26.304045), (-7.606501, 40.45085, 28.387848), (-7.606501, 40.45085, 28.387848), (-7.0481477, 41.93353, 26.304045), (-8.415136, 41.93353, 25.899126), (-9.081781, 40.45085, 27.95085), (-9.081781, 40.45085, 27.95085), (-8.415136, 41.93353, 25.899126), (-9.759059, 41.93353, 25.423218), (-10.532169, 40.45085, 27.43724), (-10.532169, 40.45085, 27.43724), (-9.759059, 41.93353, 25.423218), (-11.076233, 41.93353, 24.877626), (-11.95369, 40.45085, 26.848427), (-11.95369, 40.45085, 26.848427), (-11.076233, 41.93353, 24.877626), (-12.363048, 41.93353, 24.263847), (-13.342446, 40.45085, 26.186026), (-13.342446, 40.45085, 26.186026), (-12.363048, 41.93353, 24.263847), (-13.615976, 41.93353, 23.583563), (-14.694632, 40.45085, 25.451847), (-14.694632, 40.45085, 25.451847), (-13.615976, 41.93353, 23.583563), (-14.831584, 41.93353, 22.838636), (-16.00654, 40.45085, 24.64791), (-16.00654, 40.45085, 24.64791), (-14.831584, 41.93353, 22.838636), (-16.00654, 41.93353, 22.031113), (-17.274574, 40.45085, 23.776413), (-17.274574, 40.45085, 23.776413), (-16.00654, 41.93353, 22.031113), (-17.137623, 41.93353, 21.1632), (-18.495262, 40.45085, 22.839746), (-18.495262, 40.45085, 22.839746), (-17.137623, 41.93353, 21.1632), (-18.221733, 41.93353, 20.237284), (-19.665255, 40.45085, 21.840479), (-19.665255, 40.45085, 21.840479), (-18.221733, 41.93353, 20.237284), (-19.255898, 41.93353, 19.255898), (-20.781347, 40.45085, 20.781347), (-20.781347, 40.45085, 20.781347), (-19.255898, 41.93353, 19.255898), (-20.237284, 41.93353, 18.221733), (-21.840479, 40.45085, 19.665255), (-21.840479, 40.45085, 19.665255), (-20.237284, 41.93353, 18.221733), (-21.1632, 41.93353, 17.137623), (-22.839746, 40.45085, 18.495262), (-22.839746, 40.45085, 18.495262), (-21.1632, 41.93353, 17.137623), (-22.031113, 41.93353, 16.00654), (-23.776413, 40.45085, 17.274574), (-23.776413, 40.45085, 17.274574), (-22.031113, 41.93353, 16.00654), (-22.838636, 41.93353, 14.831584), (-24.64791, 40.45085, 16.00654), (-24.64791, 40.45085, 16.00654), (-22.838636, 41.93353, 14.831584), (-23.583563, 41.93353, 13.615976), (-25.451847, 40.45085, 14.694632), (-25.451847, 40.45085, 14.694632), (-23.583563, 41.93353, 13.615976), (-24.263847, 41.93353, 12.363048), (-26.186026, 40.45085, 13.342446), (-26.186026, 40.45085, 13.342446), (-24.263847, 41.93353, 12.363048), (-24.877626, 41.93353, 11.076233), (-26.848427, 40.45085, 11.95369), (-26.848427, 40.45085, 11.95369), (-24.877626, 41.93353, 11.076233), (-25.423218, 41.93353, 9.759059), (-27.43724, 40.45085, 10.532169), (-27.43724, 40.45085, 10.532169), (-25.423218, 41.93353, 9.759059), (-25.899126, 41.93353, 8.415136), (-27.95085, 40.45085, 9.081781), (-27.95085, 40.45085, 9.081781), (-25.899126, 41.93353, 8.415136), (-26.304045, 41.93353, 7.0481477), (-28.387848, 40.45085, 7.606501), (-28.387848, 40.45085, 7.606501), (-26.304045, 41.93353, 7.0481477), (-26.636868, 41.93353, 5.661841), (-28.747036, 40.45085, 6.110371), (-28.747036, 40.45085, 6.110371), (-26.636868, 41.93353, 5.661841), (-26.89668, 41.93353, 4.260016), (-29.027431, 40.45085, 4.5974936), (-29.027431, 40.45085, 4.5974936), (-26.89668, 41.93353, 4.260016), (-27.082773, 41.93353, 2.846514), (-29.228266, 40.45085, 3.0720146), (-29.228266, 40.45085, 3.0720146), (-27.082773, 41.93353, 2.846514), (-27.194632, 41.93353, 1.4252102), (-29.348986, 40.45085, 1.5381151), (-29.348986, 40.45085, 1.5381151), (-27.194632, 41.93353, 1.4252102), (-27.231953, 41.93353, 3.3349523e-15), (-29.389263, 40.45085, 3.5991468e-15), (-29.389263, 40.45085, 3.5991468e-15), (-27.231953, 41.93353, 3.3349523e-15), (-27.194632, 41.93353, -1.4252102), (-29.348986, 40.45085, -1.5381151), (-29.348986, 40.45085, -1.5381151), (-27.194632, 41.93353, -1.4252102), (-27.082773, 41.93353, -2.846514), (-29.228266, 40.45085, -3.0720146), (-29.228266, 40.45085, -3.0720146), (-27.082773, 41.93353, -2.846514), (-26.89668, 41.93353, -4.260016), (-29.027431, 40.45085, -4.5974936), (-29.027431, 40.45085, -4.5974936), (-26.89668, 41.93353, -4.260016), (-26.636868, 41.93353, -5.661841), (-28.747036, 40.45085, -6.110371), (-28.747036, 40.45085, -6.110371), (-26.636868, 41.93353, -5.661841), (-26.304045, 41.93353, -7.0481477), (-28.387848, 40.45085, -7.606501), (-28.387848, 40.45085, -7.606501), (-26.304045, 41.93353, -7.0481477), (-25.899126, 41.93353, -8.415136), (-27.95085, 40.45085, -9.081781), (-27.95085, 40.45085, -9.081781), (-25.899126, 41.93353, -8.415136), (-25.423218, 41.93353, -9.759059), (-27.43724, 40.45085, -10.532169), (-27.43724, 40.45085, -10.532169), (-25.423218, 41.93353, -9.759059), (-24.877626, 41.93353, -11.076233), (-26.848427, 40.45085, -11.95369), (-26.848427, 40.45085, -11.95369), (-24.877626, 41.93353, -11.076233), (-24.263847, 41.93353, -12.363048), (-26.186026, 40.45085, -13.342446), (-26.186026, 40.45085, -13.342446), (-24.263847, 41.93353, -12.363048), (-23.583563, 41.93353, -13.615976), (-25.451847, 40.45085, -14.694632), (-25.451847, 40.45085, -14.694632), (-23.583563, 41.93353, -13.615976), (-22.838636, 41.93353, -14.831584), (-24.64791, 40.45085, -16.00654), (-24.64791, 40.45085, -16.00654), (-22.838636, 41.93353, -14.831584), (-22.031113, 41.93353, -16.00654), (-23.776413, 40.45085, -17.274574), (-23.776413, 40.45085, -17.274574), (-22.031113, 41.93353, -16.00654), (-21.1632, 41.93353, -17.137623), (-22.839746, 40.45085, -18.495262), (-22.839746, 40.45085, -18.495262), (-21.1632, 41.93353, -17.137623), (-20.237284, 41.93353, -18.221733), (-21.840479, 40.45085, -19.665255), (-21.840479, 40.45085, -19.665255), (-20.237284, 41.93353, -18.221733), (-19.255898, 41.93353, -19.255898), (-20.781347, 40.45085, -20.781347), (-20.781347, 40.45085, -20.781347), (-19.255898, 41.93353, -19.255898), (-18.221733, 41.93353, -20.237284), (-19.665255, 40.45085, -21.840479), (-19.665255, 40.45085, -21.840479), (-18.221733, 41.93353, -20.237284), (-17.137623, 41.93353, -21.1632), (-18.495262, 40.45085, -22.839746), (-18.495262, 40.45085, -22.839746), (-17.137623, 41.93353, -21.1632), (-16.00654, 41.93353, -22.031113), (-17.274574, 40.45085, -23.776413), (-17.274574, 40.45085, -23.776413), (-16.00654, 41.93353, -22.031113), (-14.831584, 41.93353, -22.838636), (-16.00654, 40.45085, -24.64791), (-16.00654, 40.45085, -24.64791), (-14.831584, 41.93353, -22.838636), (-13.615976, 41.93353, -23.583563), (-14.694632, 40.45085, -25.451847), (-14.694632, 40.45085, -25.451847), (-13.615976, 41.93353, -23.583563), (-12.363048, 41.93353, -24.263847), (-13.342446, 40.45085, -26.186026), (-13.342446, 40.45085, -26.186026), (-12.363048, 41.93353, -24.263847), (-11.076233, 41.93353, -24.877626), (-11.95369, 40.45085, -26.848427), (-11.95369, 40.45085, -26.848427), (-11.076233, 41.93353, -24.877626), (-9.759059, 41.93353, -25.423218), (-10.532169, 40.45085, -27.43724), (-10.532169, 40.45085, -27.43724), (-9.759059, 41.93353, -25.423218), (-8.415136, 41.93353, -25.899126), (-9.081781, 40.45085, -27.95085), (-9.081781, 40.45085, -27.95085), (-8.415136, 41.93353, -25.899126), (-7.0481477, 41.93353, -26.304045), (-7.606501, 40.45085, -28.387848), (-7.606501, 40.45085, -28.387848), (-7.0481477, 41.93353, -26.304045), (-5.661841, 41.93353, -26.636868), (-6.110371, 40.45085, -28.747036), (-6.110371, 40.45085, -28.747036), (-5.661841, 41.93353, -26.636868), (-4.260016, 41.93353, -26.89668), (-4.5974936, 40.45085, -29.027431), (-4.5974936, 40.45085, -29.027431), (-4.260016, 41.93353, -26.89668), (-2.846514, 41.93353, -27.082773), (-3.0720146, 40.45085, -29.228266), (-3.0720146, 40.45085, -29.228266), (-2.846514, 41.93353, -27.082773), (-1.4252102, 41.93353, -27.194632), (-1.5381151, 40.45085, -29.348986), (-1.5381151, 40.45085, -29.348986), (-1.4252102, 41.93353, -27.194632), (-5.0024284e-15, 41.93353, -27.231953), (-5.39872e-15, 40.45085, -29.389263), (-5.39872e-15, 40.45085, -29.389263), (-5.0024284e-15, 41.93353, -27.231953), (1.4252102, 41.93353, -27.194632), (1.5381151, 40.45085, -29.348986), (1.5381151, 40.45085, -29.348986), (1.4252102, 41.93353, -27.194632), (2.846514, 41.93353, -27.082773), (3.0720146, 40.45085, -29.228266), (3.0720146, 40.45085, -29.228266), (2.846514, 41.93353, -27.082773), (4.260016, 41.93353, -26.89668), (4.5974936, 40.45085, -29.027431), (4.5974936, 40.45085, -29.027431), (4.260016, 41.93353, -26.89668), (5.661841, 41.93353, -26.636868), (6.110371, 40.45085, -28.747036), (6.110371, 40.45085, -28.747036), (5.661841, 41.93353, -26.636868), (7.0481477, 41.93353, -26.304045), (7.606501, 40.45085, -28.387848), (7.606501, 40.45085, -28.387848), (7.0481477, 41.93353, -26.304045), (8.415136, 41.93353, -25.899126), (9.081781, 40.45085, -27.95085), (9.081781, 40.45085, -27.95085), (8.415136, 41.93353, -25.899126), (9.759059, 41.93353, -25.423218), (10.532169, 40.45085, -27.43724), (10.532169, 40.45085, -27.43724), (9.759059, 41.93353, -25.423218), (11.076233, 41.93353, -24.877626), (11.95369, 40.45085, -26.848427), (11.95369, 40.45085, -26.848427), (11.076233, 41.93353, -24.877626), (12.363048, 41.93353, -24.263847), (13.342446, 40.45085, -26.186026), (13.342446, 40.45085, -26.186026), (12.363048, 41.93353, -24.263847), (13.615976, 41.93353, -23.583563), (14.694632, 40.45085, -25.451847), (14.694632, 40.45085, -25.451847), (13.615976, 41.93353, -23.583563), (14.831584, 41.93353, -22.838636), (16.00654, 40.45085, -24.64791), (16.00654, 40.45085, -24.64791), (14.831584, 41.93353, -22.838636), (16.00654, 41.93353, -22.031113), (17.274574, 40.45085, -23.776413), (17.274574, 40.45085, -23.776413), (16.00654, 41.93353, -22.031113), (17.137623, 41.93353, -21.1632), (18.495262, 40.45085, -22.839746), (18.495262, 40.45085, -22.839746), (17.137623, 41.93353, -21.1632), (18.221733, 41.93353, -20.237284), (19.665255, 40.45085, -21.840479), (19.665255, 40.45085, -21.840479), (18.221733, 41.93353, -20.237284), (19.255898, 41.93353, -19.255898), (20.781347, 40.45085, -20.781347), (20.781347, 40.45085, -20.781347), (19.255898, 41.93353, -19.255898), (20.237284, 41.93353, -18.221733), (21.840479, 40.45085, -19.665255), (21.840479, 40.45085, -19.665255), (20.237284, 41.93353, -18.221733), (21.1632, 41.93353, -17.137623), (22.839746, 40.45085, -18.495262), (22.839746, 40.45085, -18.495262), (21.1632, 41.93353, -17.137623), (22.031113, 41.93353, -16.00654), (23.776413, 40.45085, -17.274574), (23.776413, 40.45085, -17.274574), (22.031113, 41.93353, -16.00654), (22.838636, 41.93353, -14.831584), (24.64791, 40.45085, -16.00654), (24.64791, 40.45085, -16.00654), (22.838636, 41.93353, -14.831584), (23.583563, 41.93353, -13.615976), (25.451847, 40.45085, -14.694632), (25.451847, 40.45085, -14.694632), (23.583563, 41.93353, -13.615976), (24.263847, 41.93353, -12.363048), (26.186026, 40.45085, -13.342446), (26.186026, 40.45085, -13.342446), (24.263847, 41.93353, -12.363048), (24.877626, 41.93353, -11.076233), (26.848427, 40.45085, -11.95369), (26.848427, 40.45085, -11.95369), (24.877626, 41.93353, -11.076233), (25.423218, 41.93353, -9.759059), (27.43724, 40.45085, -10.532169), (27.43724, 40.45085, -10.532169), (25.423218, 41.93353, -9.759059), (25.899126, 41.93353, -8.415136), (27.95085, 40.45085, -9.081781), (27.95085, 40.45085, -9.081781), (25.899126, 41.93353, -8.415136), (26.304045, 41.93353, -7.0481477), (28.387848, 40.45085, -7.606501), (28.387848, 40.45085, -7.606501), (26.304045, 41.93353, -7.0481477), (26.636868, 41.93353, -5.661841), (28.747036, 40.45085, -6.110371), (28.747036, 40.45085, -6.110371), (26.636868, 41.93353, -5.661841), (26.89668, 41.93353, -4.260016), (29.027431, 40.45085, -4.5974936), (29.027431, 40.45085, -4.5974936), (26.89668, 41.93353, -4.260016), (27.082773, 41.93353, -2.846514), (29.228266, 40.45085, -3.0720146), (29.228266, 40.45085, -3.0720146), (27.082773, 41.93353, -2.846514), (27.194632, 41.93353, -1.4252102), (29.348986, 40.45085, -1.5381151), (29.348986, 40.45085, -1.5381151), (27.194632, 41.93353, -1.4252102), (27.231953, 41.93353, 0), (29.389263, 40.45085, 0), (27.231953, 41.93353, 0), (25, 43.30127, 0), (24.965738, 43.30127, 1.308399), (27.194632, 41.93353, 1.4252102), (27.194632, 41.93353, 1.4252102), (24.965738, 43.30127, 1.308399), (24.863047, 43.30127, 2.6132116), (27.082773, 41.93353, 2.846514), (27.082773, 41.93353, 2.846514), (24.863047, 43.30127, 2.6132116), (24.69221, 43.30127, 3.9108617), (26.89668, 41.93353, 4.260016), (26.89668, 41.93353, 4.260016), (24.69221, 43.30127, 3.9108617), (24.45369, 43.30127, 5.197792), (26.636868, 41.93353, 5.661841), (26.636868, 41.93353, 5.661841), (24.45369, 43.30127, 5.197792), (24.148146, 43.30127, 6.470476), (26.304045, 41.93353, 7.0481477), (26.304045, 41.93353, 7.0481477), (24.148146, 43.30127, 6.470476), (23.776413, 43.30127, 7.725425), (25.899126, 41.93353, 8.415136), (25.899126, 41.93353, 8.415136), (23.776413, 43.30127, 7.725425), (23.33951, 43.30127, 8.959199), (25.423218, 41.93353, 9.759059), (25.423218, 41.93353, 9.759059), (23.33951, 43.30127, 8.959199), (22.838636, 43.30127, 10.168416), (24.877626, 41.93353, 11.076233), (24.877626, 41.93353, 11.076233), (22.838636, 43.30127, 10.168416), (22.275164, 43.30127, 11.349763), (24.263847, 41.93353, 12.363048), (24.263847, 41.93353, 12.363048), (22.275164, 43.30127, 11.349763), (21.650635, 43.30127, 12.5), (23.583563, 41.93353, 13.615976), (23.583563, 41.93353, 13.615976), (21.650635, 43.30127, 12.5), (20.966764, 43.30127, 13.615976), (22.838636, 41.93353, 14.831584), (22.838636, 41.93353, 14.831584), (20.966764, 43.30127, 13.615976), (20.225426, 43.30127, 14.694632), (22.031113, 41.93353, 16.00654), (22.031113, 41.93353, 16.00654), (20.225426, 43.30127, 14.694632), (19.42865, 43.30127, 15.733009), (21.1632, 41.93353, 17.137623), (21.1632, 41.93353, 17.137623), (19.42865, 43.30127, 15.733009), (18.57862, 43.30127, 16.728266), (20.237284, 41.93353, 18.221733), (20.237284, 41.93353, 18.221733), (18.57862, 43.30127, 16.728266), (17.67767, 43.30127, 17.67767), (19.255898, 41.93353, 19.255898), (19.255898, 41.93353, 19.255898), (17.67767, 43.30127, 17.67767), (16.728266, 43.30127, 18.57862), (18.221733, 41.93353, 20.237284), (18.221733, 41.93353, 20.237284), (16.728266, 43.30127, 18.57862), (15.733009, 43.30127, 19.42865), (17.137623, 41.93353, 21.1632), (17.137623, 41.93353, 21.1632), (15.733009, 43.30127, 19.42865), (14.694632, 43.30127, 20.225426), (16.00654, 41.93353, 22.031113), (16.00654, 41.93353, 22.031113), (14.694632, 43.30127, 20.225426), (13.615976, 43.30127, 20.966764), (14.831584, 41.93353, 22.838636), (14.831584, 41.93353, 22.838636), (13.615976, 43.30127, 20.966764), (12.5, 43.30127, 21.650635), (13.615976, 41.93353, 23.583563), (13.615976, 41.93353, 23.583563), (12.5, 43.30127, 21.650635), (11.349763, 43.30127, 22.275164), (12.363048, 41.93353, 24.263847), (12.363048, 41.93353, 24.263847), (11.349763, 43.30127, 22.275164), (10.168416, 43.30127, 22.838636), (11.076233, 41.93353, 24.877626), (11.076233, 41.93353, 24.877626), (10.168416, 43.30127, 22.838636), (8.959199, 43.30127, 23.33951), (9.759059, 41.93353, 25.423218), (9.759059, 41.93353, 25.423218), (8.959199, 43.30127, 23.33951), (7.725425, 43.30127, 23.776413), (8.415136, 41.93353, 25.899126), (8.415136, 41.93353, 25.899126), (7.725425, 43.30127, 23.776413), (6.470476, 43.30127, 24.148146), (7.0481477, 41.93353, 26.304045), (7.0481477, 41.93353, 26.304045), (6.470476, 43.30127, 24.148146), (5.197792, 43.30127, 24.45369), (5.661841, 41.93353, 26.636868), (5.661841, 41.93353, 26.636868), (5.197792, 43.30127, 24.45369), (3.9108617, 43.30127, 24.69221), (4.260016, 41.93353, 26.89668), (4.260016, 41.93353, 26.89668), (3.9108617, 43.30127, 24.69221), (2.6132116, 43.30127, 24.863047), (2.846514, 41.93353, 27.082773), (2.846514, 41.93353, 27.082773), (2.6132116, 43.30127, 24.863047), (1.308399, 43.30127, 24.965738), (1.4252102, 41.93353, 27.194632), (1.4252102, 41.93353, 27.194632), (1.308399, 43.30127, 24.965738), (1.5308084e-15, 43.30127, 25), (1.6674762e-15, 41.93353, 27.231953), (1.6674762e-15, 41.93353, 27.231953), (1.5308084e-15, 43.30127, 25), (-1.308399, 43.30127, 24.965738), (-1.4252102, 41.93353, 27.194632), (-1.4252102, 41.93353, 27.194632), (-1.308399, 43.30127, 24.965738), (-2.6132116, 43.30127, 24.863047), (-2.846514, 41.93353, 27.082773), (-2.846514, 41.93353, 27.082773), (-2.6132116, 43.30127, 24.863047), (-3.9108617, 43.30127, 24.69221), (-4.260016, 41.93353, 26.89668), (-4.260016, 41.93353, 26.89668), (-3.9108617, 43.30127, 24.69221), (-5.197792, 43.30127, 24.45369), (-5.661841, 41.93353, 26.636868), (-5.661841, 41.93353, 26.636868), (-5.197792, 43.30127, 24.45369), (-6.470476, 43.30127, 24.148146), (-7.0481477, 41.93353, 26.304045), (-7.0481477, 41.93353, 26.304045), (-6.470476, 43.30127, 24.148146), (-7.725425, 43.30127, 23.776413), (-8.415136, 41.93353, 25.899126), (-8.415136, 41.93353, 25.899126), (-7.725425, 43.30127, 23.776413), (-8.959199, 43.30127, 23.33951), (-9.759059, 41.93353, 25.423218), (-9.759059, 41.93353, 25.423218), (-8.959199, 43.30127, 23.33951), (-10.168416, 43.30127, 22.838636), (-11.076233, 41.93353, 24.877626), (-11.076233, 41.93353, 24.877626), (-10.168416, 43.30127, 22.838636), (-11.349763, 43.30127, 22.275164), (-12.363048, 41.93353, 24.263847), (-12.363048, 41.93353, 24.263847), (-11.349763, 43.30127, 22.275164), (-12.5, 43.30127, 21.650635), (-13.615976, 41.93353, 23.583563), (-13.615976, 41.93353, 23.583563), (-12.5, 43.30127, 21.650635), (-13.615976, 43.30127, 20.966764), (-14.831584, 41.93353, 22.838636), (-14.831584, 41.93353, 22.838636), (-13.615976, 43.30127, 20.966764), (-14.694632, 43.30127, 20.225426), (-16.00654, 41.93353, 22.031113), (-16.00654, 41.93353, 22.031113), (-14.694632, 43.30127, 20.225426), (-15.733009, 43.30127, 19.42865), (-17.137623, 41.93353, 21.1632), (-17.137623, 41.93353, 21.1632), (-15.733009, 43.30127, 19.42865), (-16.728266, 43.30127, 18.57862), (-18.221733, 41.93353, 20.237284), (-18.221733, 41.93353, 20.237284), (-16.728266, 43.30127, 18.57862), (-17.67767, 43.30127, 17.67767), (-19.255898, 41.93353, 19.255898), (-19.255898, 41.93353, 19.255898), (-17.67767, 43.30127, 17.67767), (-18.57862, 43.30127, 16.728266), (-20.237284, 41.93353, 18.221733), (-20.237284, 41.93353, 18.221733), (-18.57862, 43.30127, 16.728266), (-19.42865, 43.30127, 15.733009), (-21.1632, 41.93353, 17.137623), (-21.1632, 41.93353, 17.137623), (-19.42865, 43.30127, 15.733009), (-20.225426, 43.30127, 14.694632), (-22.031113, 41.93353, 16.00654), (-22.031113, 41.93353, 16.00654), (-20.225426, 43.30127, 14.694632), (-20.966764, 43.30127, 13.615976), (-22.838636, 41.93353, 14.831584), (-22.838636, 41.93353, 14.831584), (-20.966764, 43.30127, 13.615976), (-21.650635, 43.30127, 12.5), (-23.583563, 41.93353, 13.615976), (-23.583563, 41.93353, 13.615976), (-21.650635, 43.30127, 12.5), (-22.275164, 43.30127, 11.349763), (-24.263847, 41.93353, 12.363048), (-24.263847, 41.93353, 12.363048), (-22.275164, 43.30127, 11.349763), (-22.838636, 43.30127, 10.168416), (-24.877626, 41.93353, 11.076233), (-24.877626, 41.93353, 11.076233), (-22.838636, 43.30127, 10.168416), (-23.33951, 43.30127, 8.959199), (-25.423218, 41.93353, 9.759059), (-25.423218, 41.93353, 9.759059), (-23.33951, 43.30127, 8.959199), (-23.776413, 43.30127, 7.725425), (-25.899126, 41.93353, 8.415136), (-25.899126, 41.93353, 8.415136), (-23.776413, 43.30127, 7.725425), (-24.148146, 43.30127, 6.470476), (-26.304045, 41.93353, 7.0481477), (-26.304045, 41.93353, 7.0481477), (-24.148146, 43.30127, 6.470476), (-24.45369, 43.30127, 5.197792), (-26.636868, 41.93353, 5.661841), (-26.636868, 41.93353, 5.661841), (-24.45369, 43.30127, 5.197792), (-24.69221, 43.30127, 3.9108617), (-26.89668, 41.93353, 4.260016), (-26.89668, 41.93353, 4.260016), (-24.69221, 43.30127, 3.9108617), (-24.863047, 43.30127, 2.6132116), (-27.082773, 41.93353, 2.846514), (-27.082773, 41.93353, 2.846514), (-24.863047, 43.30127, 2.6132116), (-24.965738, 43.30127, 1.308399), (-27.194632, 41.93353, 1.4252102), (-27.194632, 41.93353, 1.4252102), (-24.965738, 43.30127, 1.308399), (-25, 43.30127, 3.0616169e-15), (-27.231953, 41.93353, 3.3349523e-15), (-27.231953, 41.93353, 3.3349523e-15), (-25, 43.30127, 3.0616169e-15), (-24.965738, 43.30127, -1.308399), (-27.194632, 41.93353, -1.4252102), (-27.194632, 41.93353, -1.4252102), (-24.965738, 43.30127, -1.308399), (-24.863047, 43.30127, -2.6132116), (-27.082773, 41.93353, -2.846514), (-27.082773, 41.93353, -2.846514), (-24.863047, 43.30127, -2.6132116), (-24.69221, 43.30127, -3.9108617), (-26.89668, 41.93353, -4.260016), (-26.89668, 41.93353, -4.260016), (-24.69221, 43.30127, -3.9108617), (-24.45369, 43.30127, -5.197792), (-26.636868, 41.93353, -5.661841), (-26.636868, 41.93353, -5.661841), (-24.45369, 43.30127, -5.197792), (-24.148146, 43.30127, -6.470476), (-26.304045, 41.93353, -7.0481477), (-26.304045, 41.93353, -7.0481477), (-24.148146, 43.30127, -6.470476), (-23.776413, 43.30127, -7.725425), (-25.899126, 41.93353, -8.415136), (-25.899126, 41.93353, -8.415136), (-23.776413, 43.30127, -7.725425), (-23.33951, 43.30127, -8.959199), (-25.423218, 41.93353, -9.759059), (-25.423218, 41.93353, -9.759059), (-23.33951, 43.30127, -8.959199), (-22.838636, 43.30127, -10.168416), (-24.877626, 41.93353, -11.076233), (-24.877626, 41.93353, -11.076233), (-22.838636, 43.30127, -10.168416), (-22.275164, 43.30127, -11.349763), (-24.263847, 41.93353, -12.363048), (-24.263847, 41.93353, -12.363048), (-22.275164, 43.30127, -11.349763), (-21.650635, 43.30127, -12.5), (-23.583563, 41.93353, -13.615976), (-23.583563, 41.93353, -13.615976), (-21.650635, 43.30127, -12.5), (-20.966764, 43.30127, -13.615976), (-22.838636, 41.93353, -14.831584), (-22.838636, 41.93353, -14.831584), (-20.966764, 43.30127, -13.615976), (-20.225426, 43.30127, -14.694632), (-22.031113, 41.93353, -16.00654), (-22.031113, 41.93353, -16.00654), (-20.225426, 43.30127, -14.694632), (-19.42865, 43.30127, -15.733009), (-21.1632, 41.93353, -17.137623), (-21.1632, 41.93353, -17.137623), (-19.42865, 43.30127, -15.733009), (-18.57862, 43.30127, -16.728266), (-20.237284, 41.93353, -18.221733), (-20.237284, 41.93353, -18.221733), (-18.57862, 43.30127, -16.728266), (-17.67767, 43.30127, -17.67767), (-19.255898, 41.93353, -19.255898), (-19.255898, 41.93353, -19.255898), (-17.67767, 43.30127, -17.67767), (-16.728266, 43.30127, -18.57862), (-18.221733, 41.93353, -20.237284), (-18.221733, 41.93353, -20.237284), (-16.728266, 43.30127, -18.57862), (-15.733009, 43.30127, -19.42865), (-17.137623, 41.93353, -21.1632), (-17.137623, 41.93353, -21.1632), (-15.733009, 43.30127, -19.42865), (-14.694632, 43.30127, -20.225426), (-16.00654, 41.93353, -22.031113), (-16.00654, 41.93353, -22.031113), (-14.694632, 43.30127, -20.225426), (-13.615976, 43.30127, -20.966764), (-14.831584, 41.93353, -22.838636), (-14.831584, 41.93353, -22.838636), (-13.615976, 43.30127, -20.966764), (-12.5, 43.30127, -21.650635), (-13.615976, 41.93353, -23.583563), (-13.615976, 41.93353, -23.583563), (-12.5, 43.30127, -21.650635), (-11.349763, 43.30127, -22.275164), (-12.363048, 41.93353, -24.263847), (-12.363048, 41.93353, -24.263847), (-11.349763, 43.30127, -22.275164), (-10.168416, 43.30127, -22.838636), (-11.076233, 41.93353, -24.877626), (-11.076233, 41.93353, -24.877626), (-10.168416, 43.30127, -22.838636), (-8.959199, 43.30127, -23.33951), (-9.759059, 41.93353, -25.423218), (-9.759059, 41.93353, -25.423218), (-8.959199, 43.30127, -23.33951), (-7.725425, 43.30127, -23.776413), (-8.415136, 41.93353, -25.899126), (-8.415136, 41.93353, -25.899126), (-7.725425, 43.30127, -23.776413), (-6.470476, 43.30127, -24.148146), (-7.0481477, 41.93353, -26.304045), (-7.0481477, 41.93353, -26.304045), (-6.470476, 43.30127, -24.148146), (-5.197792, 43.30127, -24.45369), (-5.661841, 41.93353, -26.636868), (-5.661841, 41.93353, -26.636868), (-5.197792, 43.30127, -24.45369), (-3.9108617, 43.30127, -24.69221), (-4.260016, 41.93353, -26.89668), (-4.260016, 41.93353, -26.89668), (-3.9108617, 43.30127, -24.69221), (-2.6132116, 43.30127, -24.863047), (-2.846514, 41.93353, -27.082773), (-2.846514, 41.93353, -27.082773), (-2.6132116, 43.30127, -24.863047), (-1.308399, 43.30127, -24.965738), (-1.4252102, 41.93353, -27.194632), (-1.4252102, 41.93353, -27.194632), (-1.308399, 43.30127, -24.965738), (-4.5924254e-15, 43.30127, -25), (-5.0024284e-15, 41.93353, -27.231953), (-5.0024284e-15, 41.93353, -27.231953), (-4.5924254e-15, 43.30127, -25), (1.308399, 43.30127, -24.965738), (1.4252102, 41.93353, -27.194632), (1.4252102, 41.93353, -27.194632), (1.308399, 43.30127, -24.965738), (2.6132116, 43.30127, -24.863047), (2.846514, 41.93353, -27.082773), (2.846514, 41.93353, -27.082773), (2.6132116, 43.30127, -24.863047), (3.9108617, 43.30127, -24.69221), (4.260016, 41.93353, -26.89668), (4.260016, 41.93353, -26.89668), (3.9108617, 43.30127, -24.69221), (5.197792, 43.30127, -24.45369), (5.661841, 41.93353, -26.636868), (5.661841, 41.93353, -26.636868), (5.197792, 43.30127, -24.45369), (6.470476, 43.30127, -24.148146), (7.0481477, 41.93353, -26.304045), (7.0481477, 41.93353, -26.304045), (6.470476, 43.30127, -24.148146), (7.725425, 43.30127, -23.776413), (8.415136, 41.93353, -25.899126), (8.415136, 41.93353, -25.899126), (7.725425, 43.30127, -23.776413), (8.959199, 43.30127, -23.33951), (9.759059, 41.93353, -25.423218), (9.759059, 41.93353, -25.423218), (8.959199, 43.30127, -23.33951), (10.168416, 43.30127, -22.838636), (11.076233, 41.93353, -24.877626), (11.076233, 41.93353, -24.877626), (10.168416, 43.30127, -22.838636), (11.349763, 43.30127, -22.275164), (12.363048, 41.93353, -24.263847), (12.363048, 41.93353, -24.263847), (11.349763, 43.30127, -22.275164), (12.5, 43.30127, -21.650635), (13.615976, 41.93353, -23.583563), (13.615976, 41.93353, -23.583563), (12.5, 43.30127, -21.650635), (13.615976, 43.30127, -20.966764), (14.831584, 41.93353, -22.838636), (14.831584, 41.93353, -22.838636), (13.615976, 43.30127, -20.966764), (14.694632, 43.30127, -20.225426), (16.00654, 41.93353, -22.031113), (16.00654, 41.93353, -22.031113), (14.694632, 43.30127, -20.225426), (15.733009, 43.30127, -19.42865), (17.137623, 41.93353, -21.1632), (17.137623, 41.93353, -21.1632), (15.733009, 43.30127, -19.42865), (16.728266, 43.30127, -18.57862), (18.221733, 41.93353, -20.237284), (18.221733, 41.93353, -20.237284), (16.728266, 43.30127, -18.57862), (17.67767, 43.30127, -17.67767), (19.255898, 41.93353, -19.255898), (19.255898, 41.93353, -19.255898), (17.67767, 43.30127, -17.67767), (18.57862, 43.30127, -16.728266), (20.237284, 41.93353, -18.221733), (20.237284, 41.93353, -18.221733), (18.57862, 43.30127, -16.728266), (19.42865, 43.30127, -15.733009), (21.1632, 41.93353, -17.137623), (21.1632, 41.93353, -17.137623), (19.42865, 43.30127, -15.733009), (20.225426, 43.30127, -14.694632), (22.031113, 41.93353, -16.00654), (22.031113, 41.93353, -16.00654), (20.225426, 43.30127, -14.694632), (20.966764, 43.30127, -13.615976), (22.838636, 41.93353, -14.831584), (22.838636, 41.93353, -14.831584), (20.966764, 43.30127, -13.615976), (21.650635, 43.30127, -12.5), (23.583563, 41.93353, -13.615976), (23.583563, 41.93353, -13.615976), (21.650635, 43.30127, -12.5), (22.275164, 43.30127, -11.349763), (24.263847, 41.93353, -12.363048), (24.263847, 41.93353, -12.363048), (22.275164, 43.30127, -11.349763), (22.838636, 43.30127, -10.168416), (24.877626, 41.93353, -11.076233), (24.877626, 41.93353, -11.076233), (22.838636, 43.30127, -10.168416), (23.33951, 43.30127, -8.959199), (25.423218, 41.93353, -9.759059), (25.423218, 41.93353, -9.759059), (23.33951, 43.30127, -8.959199), (23.776413, 43.30127, -7.725425), (25.899126, 41.93353, -8.415136), (25.899126, 41.93353, -8.415136), (23.776413, 43.30127, -7.725425), (24.148146, 43.30127, -6.470476), (26.304045, 41.93353, -7.0481477), (26.304045, 41.93353, -7.0481477), (24.148146, 43.30127, -6.470476), (24.45369, 43.30127, -5.197792), (26.636868, 41.93353, -5.661841), (26.636868, 41.93353, -5.661841), (24.45369, 43.30127, -5.197792), (24.69221, 43.30127, -3.9108617), (26.89668, 41.93353, -4.260016), (26.89668, 41.93353, -4.260016), (24.69221, 43.30127, -3.9108617), (24.863047, 43.30127, -2.6132116), (27.082773, 41.93353, -2.846514), (27.082773, 41.93353, -2.846514), (24.863047, 43.30127, -2.6132116), (24.965738, 43.30127, -1.308399), (27.194632, 41.93353, -1.4252102), (27.194632, 41.93353, -1.4252102), (24.965738, 43.30127, -1.308399), (25, 43.30127, 0), (27.231953, 41.93353, 0), (25, 43.30127, 0), (22.699526, 44.550327, 0), (22.668417, 44.550327, 1.1880014), (24.965738, 43.30127, 1.308399), (24.965738, 43.30127, 1.308399), (22.668417, 44.550327, 1.1880014), (22.575174, 44.550327, 2.3727465), (24.863047, 43.30127, 2.6132116), (24.863047, 43.30127, 2.6132116), (22.575174, 44.550327, 2.3727465), (22.420055, 44.550327, 3.550988), (24.69221, 43.30127, 3.9108617), (24.69221, 43.30127, 3.9108617), (22.420055, 44.550327, 3.550988), (22.203485, 44.550327, 4.7194967), (24.45369, 43.30127, 5.197792), (24.45369, 43.30127, 5.197792), (22.203485, 44.550327, 4.7194967), (21.926058, 44.550327, 5.8750696), (24.148146, 43.30127, 6.470476), (24.148146, 43.30127, 6.470476), (21.926058, 44.550327, 5.8750696), (21.588531, 44.550327, 7.014539), (23.776413, 43.30127, 7.725425), (23.776413, 43.30127, 7.725425), (21.588531, 44.550327, 7.014539), (21.191832, 44.550327, 8.134782), (23.33951, 43.30127, 8.959199), (23.33951, 43.30127, 8.959199), (21.191832, 44.550327, 8.134782), (20.737047, 44.550327, 9.232729), (22.838636, 43.30127, 10.168416), (22.838636, 43.30127, 10.168416), (20.737047, 44.550327, 9.232729), (20.225426, 44.550327, 10.305368), (22.275164, 43.30127, 11.349763), (22.275164, 43.30127, 11.349763), (20.225426, 44.550327, 10.305368), (19.658365, 44.550327, 11.349763), (21.650635, 43.30127, 12.5), (21.650635, 43.30127, 12.5), (19.658365, 44.550327, 11.349763), (19.037424, 44.550327, 12.363048), (20.966764, 43.30127, 13.615976), (20.966764, 43.30127, 13.615976), (19.037424, 44.550327, 12.363048), (18.364302, 44.550327, 13.342446), (20.225426, 43.30127, 14.694632), (20.225426, 43.30127, 14.694632), (18.364302, 44.550327, 13.342446), (17.640844, 44.550327, 14.285274), (19.42865, 43.30127, 15.733009), (19.42865, 43.30127, 15.733009), (17.640844, 44.550327, 14.285274), (16.869034, 44.550327, 15.188947), (18.57862, 43.30127, 16.728266), (18.57862, 43.30127, 16.728266), (16.869034, 44.550327, 15.188947), (16.050987, 44.550327, 16.050987), (17.67767, 43.30127, 17.67767), (17.67767, 43.30127, 17.67767), (16.050987, 44.550327, 16.050987), (15.188947, 44.550327, 16.869034), (16.728266, 43.30127, 18.57862), (16.728266, 43.30127, 18.57862), (15.188947, 44.550327, 16.869034), (14.285274, 44.550327, 17.640844), (15.733009, 43.30127, 19.42865), (15.733009, 43.30127, 19.42865), (14.285274, 44.550327, 17.640844), (13.342446, 44.550327, 18.364302), (14.694632, 43.30127, 20.225426), (14.694632, 43.30127, 20.225426), (13.342446, 44.550327, 18.364302), (12.363048, 44.550327, 19.037424), (13.615976, 43.30127, 20.966764), (13.615976, 43.30127, 20.966764), (12.363048, 44.550327, 19.037424), (11.349763, 44.550327, 19.658365), (12.5, 43.30127, 21.650635), (12.5, 43.30127, 21.650635), (11.349763, 44.550327, 19.658365), (10.305368, 44.550327, 20.225426), (11.349763, 43.30127, 22.275164), (11.349763, 43.30127, 22.275164), (10.305368, 44.550327, 20.225426), (9.232729, 44.550327, 20.737047), (10.168416, 43.30127, 22.838636), (10.168416, 43.30127, 22.838636), (9.232729, 44.550327, 20.737047), (8.134782, 44.550327, 21.191832), (8.959199, 43.30127, 23.33951), (8.959199, 43.30127, 23.33951), (8.134782, 44.550327, 21.191832), (7.014539, 44.550327, 21.588531), (7.725425, 43.30127, 23.776413), (7.725425, 43.30127, 23.776413), (7.014539, 44.550327, 21.588531), (5.8750696, 44.550327, 21.926058), (6.470476, 43.30127, 24.148146), (6.470476, 43.30127, 24.148146), (5.8750696, 44.550327, 21.926058), (4.7194967, 44.550327, 22.203485), (5.197792, 43.30127, 24.45369), (5.197792, 43.30127, 24.45369), (4.7194967, 44.550327, 22.203485), (3.550988, 44.550327, 22.420055), (3.9108617, 43.30127, 24.69221), (3.9108617, 43.30127, 24.69221), (3.550988, 44.550327, 22.420055), (2.3727465, 44.550327, 22.575174), (2.6132116, 43.30127, 24.863047), (2.6132116, 43.30127, 24.863047), (2.3727465, 44.550327, 22.575174), (1.1880014, 44.550327, 22.668417), (1.308399, 43.30127, 24.965738), (1.308399, 43.30127, 24.965738), (1.1880014, 44.550327, 22.668417), (1.3899451e-15, 44.550327, 22.699526), (1.5308084e-15, 43.30127, 25), (1.5308084e-15, 43.30127, 25), (1.3899451e-15, 44.550327, 22.699526), (-1.1880014, 44.550327, 22.668417), (-1.308399, 43.30127, 24.965738), (-1.308399, 43.30127, 24.965738), (-1.1880014, 44.550327, 22.668417), (-2.3727465, 44.550327, 22.575174), (-2.6132116, 43.30127, 24.863047), (-2.6132116, 43.30127, 24.863047), (-2.3727465, 44.550327, 22.575174), (-3.550988, 44.550327, 22.420055), (-3.9108617, 43.30127, 24.69221), (-3.9108617, 43.30127, 24.69221), (-3.550988, 44.550327, 22.420055), (-4.7194967, 44.550327, 22.203485), (-5.197792, 43.30127, 24.45369), (-5.197792, 43.30127, 24.45369), (-4.7194967, 44.550327, 22.203485), (-5.8750696, 44.550327, 21.926058), (-6.470476, 43.30127, 24.148146), (-6.470476, 43.30127, 24.148146), (-5.8750696, 44.550327, 21.926058), (-7.014539, 44.550327, 21.588531), (-7.725425, 43.30127, 23.776413), (-7.725425, 43.30127, 23.776413), (-7.014539, 44.550327, 21.588531), (-8.134782, 44.550327, 21.191832), (-8.959199, 43.30127, 23.33951), (-8.959199, 43.30127, 23.33951), (-8.134782, 44.550327, 21.191832), (-9.232729, 44.550327, 20.737047), (-10.168416, 43.30127, 22.838636), (-10.168416, 43.30127, 22.838636), (-9.232729, 44.550327, 20.737047), (-10.305368, 44.550327, 20.225426), (-11.349763, 43.30127, 22.275164), (-11.349763, 43.30127, 22.275164), (-10.305368, 44.550327, 20.225426), (-11.349763, 44.550327, 19.658365), (-12.5, 43.30127, 21.650635), (-12.5, 43.30127, 21.650635), (-11.349763, 44.550327, 19.658365), (-12.363048, 44.550327, 19.037424), (-13.615976, 43.30127, 20.966764), (-13.615976, 43.30127, 20.966764), (-12.363048, 44.550327, 19.037424), (-13.342446, 44.550327, 18.364302), (-14.694632, 43.30127, 20.225426), (-14.694632, 43.30127, 20.225426), (-13.342446, 44.550327, 18.364302), (-14.285274, 44.550327, 17.640844), (-15.733009, 43.30127, 19.42865), (-15.733009, 43.30127, 19.42865), (-14.285274, 44.550327, 17.640844), (-15.188947, 44.550327, 16.869034), (-16.728266, 43.30127, 18.57862), (-16.728266, 43.30127, 18.57862), (-15.188947, 44.550327, 16.869034), (-16.050987, 44.550327, 16.050987), (-17.67767, 43.30127, 17.67767), (-17.67767, 43.30127, 17.67767), (-16.050987, 44.550327, 16.050987), (-16.869034, 44.550327, 15.188947), (-18.57862, 43.30127, 16.728266), (-18.57862, 43.30127, 16.728266), (-16.869034, 44.550327, 15.188947), (-17.640844, 44.550327, 14.285274), (-19.42865, 43.30127, 15.733009), (-19.42865, 43.30127, 15.733009), (-17.640844, 44.550327, 14.285274), (-18.364302, 44.550327, 13.342446), (-20.225426, 43.30127, 14.694632), (-20.225426, 43.30127, 14.694632), (-18.364302, 44.550327, 13.342446), (-19.037424, 44.550327, 12.363048), (-20.966764, 43.30127, 13.615976), (-20.966764, 43.30127, 13.615976), (-19.037424, 44.550327, 12.363048), (-19.658365, 44.550327, 11.349763), (-21.650635, 43.30127, 12.5), (-21.650635, 43.30127, 12.5), (-19.658365, 44.550327, 11.349763), (-20.225426, 44.550327, 10.305368), (-22.275164, 43.30127, 11.349763), (-22.275164, 43.30127, 11.349763), (-20.225426, 44.550327, 10.305368), (-20.737047, 44.550327, 9.232729), (-22.838636, 43.30127, 10.168416), (-22.838636, 43.30127, 10.168416), (-20.737047, 44.550327, 9.232729), (-21.191832, 44.550327, 8.134782), (-23.33951, 43.30127, 8.959199), (-23.33951, 43.30127, 8.959199), (-21.191832, 44.550327, 8.134782), (-21.588531, 44.550327, 7.014539), (-23.776413, 43.30127, 7.725425), (-23.776413, 43.30127, 7.725425), (-21.588531, 44.550327, 7.014539), (-21.926058, 44.550327, 5.8750696), (-24.148146, 43.30127, 6.470476), (-24.148146, 43.30127, 6.470476), (-21.926058, 44.550327, 5.8750696), (-22.203485, 44.550327, 4.7194967), (-24.45369, 43.30127, 5.197792), (-24.45369, 43.30127, 5.197792), (-22.203485, 44.550327, 4.7194967), (-22.420055, 44.550327, 3.550988), (-24.69221, 43.30127, 3.9108617), (-24.69221, 43.30127, 3.9108617), (-22.420055, 44.550327, 3.550988), (-22.575174, 44.550327, 2.3727465), (-24.863047, 43.30127, 2.6132116), (-24.863047, 43.30127, 2.6132116), (-22.575174, 44.550327, 2.3727465), (-22.668417, 44.550327, 1.1880014), (-24.965738, 43.30127, 1.308399), (-24.965738, 43.30127, 1.308399), (-22.668417, 44.550327, 1.1880014), (-22.699526, 44.550327, 2.7798901e-15), (-25, 43.30127, 3.0616169e-15), (-25, 43.30127, 3.0616169e-15), (-22.699526, 44.550327, 2.7798901e-15), (-22.668417, 44.550327, -1.1880014), (-24.965738, 43.30127, -1.308399), (-24.965738, 43.30127, -1.308399), (-22.668417, 44.550327, -1.1880014), (-22.575174, 44.550327, -2.3727465), (-24.863047, 43.30127, -2.6132116), (-24.863047, 43.30127, -2.6132116), (-22.575174, 44.550327, -2.3727465), (-22.420055, 44.550327, -3.550988), (-24.69221, 43.30127, -3.9108617), (-24.69221, 43.30127, -3.9108617), (-22.420055, 44.550327, -3.550988), (-22.203485, 44.550327, -4.7194967), (-24.45369, 43.30127, -5.197792), (-24.45369, 43.30127, -5.197792), (-22.203485, 44.550327, -4.7194967), (-21.926058, 44.550327, -5.8750696), (-24.148146, 43.30127, -6.470476), (-24.148146, 43.30127, -6.470476), (-21.926058, 44.550327, -5.8750696), (-21.588531, 44.550327, -7.014539), (-23.776413, 43.30127, -7.725425), (-23.776413, 43.30127, -7.725425), (-21.588531, 44.550327, -7.014539), (-21.191832, 44.550327, -8.134782), (-23.33951, 43.30127, -8.959199), (-23.33951, 43.30127, -8.959199), (-21.191832, 44.550327, -8.134782), (-20.737047, 44.550327, -9.232729), (-22.838636, 43.30127, -10.168416), (-22.838636, 43.30127, -10.168416), (-20.737047, 44.550327, -9.232729), (-20.225426, 44.550327, -10.305368), (-22.275164, 43.30127, -11.349763), (-22.275164, 43.30127, -11.349763), (-20.225426, 44.550327, -10.305368), (-19.658365, 44.550327, -11.349763), (-21.650635, 43.30127, -12.5), (-21.650635, 43.30127, -12.5), (-19.658365, 44.550327, -11.349763), (-19.037424, 44.550327, -12.363048), (-20.966764, 43.30127, -13.615976), (-20.966764, 43.30127, -13.615976), (-19.037424, 44.550327, -12.363048), (-18.364302, 44.550327, -13.342446), (-20.225426, 43.30127, -14.694632), (-20.225426, 43.30127, -14.694632), (-18.364302, 44.550327, -13.342446), (-17.640844, 44.550327, -14.285274), (-19.42865, 43.30127, -15.733009), (-19.42865, 43.30127, -15.733009), (-17.640844, 44.550327, -14.285274), (-16.869034, 44.550327, -15.188947), (-18.57862, 43.30127, -16.728266), (-18.57862, 43.30127, -16.728266), (-16.869034, 44.550327, -15.188947), (-16.050987, 44.550327, -16.050987), (-17.67767, 43.30127, -17.67767), (-17.67767, 43.30127, -17.67767), (-16.050987, 44.550327, -16.050987), (-15.188947, 44.550327, -16.869034), (-16.728266, 43.30127, -18.57862), (-16.728266, 43.30127, -18.57862), (-15.188947, 44.550327, -16.869034), (-14.285274, 44.550327, -17.640844), (-15.733009, 43.30127, -19.42865), (-15.733009, 43.30127, -19.42865), (-14.285274, 44.550327, -17.640844), (-13.342446, 44.550327, -18.364302), (-14.694632, 43.30127, -20.225426), (-14.694632, 43.30127, -20.225426), (-13.342446, 44.550327, -18.364302), (-12.363048, 44.550327, -19.037424), (-13.615976, 43.30127, -20.966764), (-13.615976, 43.30127, -20.966764), (-12.363048, 44.550327, -19.037424), (-11.349763, 44.550327, -19.658365), (-12.5, 43.30127, -21.650635), (-12.5, 43.30127, -21.650635), (-11.349763, 44.550327, -19.658365), (-10.305368, 44.550327, -20.225426), (-11.349763, 43.30127, -22.275164), (-11.349763, 43.30127, -22.275164), (-10.305368, 44.550327, -20.225426), (-9.232729, 44.550327, -20.737047), (-10.168416, 43.30127, -22.838636), (-10.168416, 43.30127, -22.838636), (-9.232729, 44.550327, -20.737047), (-8.134782, 44.550327, -21.191832), (-8.959199, 43.30127, -23.33951), (-8.959199, 43.30127, -23.33951), (-8.134782, 44.550327, -21.191832), (-7.014539, 44.550327, -21.588531), (-7.725425, 43.30127, -23.776413), (-7.725425, 43.30127, -23.776413), (-7.014539, 44.550327, -21.588531), (-5.8750696, 44.550327, -21.926058), (-6.470476, 43.30127, -24.148146), (-6.470476, 43.30127, -24.148146), (-5.8750696, 44.550327, -21.926058), (-4.7194967, 44.550327, -22.203485), (-5.197792, 43.30127, -24.45369), (-5.197792, 43.30127, -24.45369), (-4.7194967, 44.550327, -22.203485), (-3.550988, 44.550327, -22.420055), (-3.9108617, 43.30127, -24.69221), (-3.9108617, 43.30127, -24.69221), (-3.550988, 44.550327, -22.420055), (-2.3727465, 44.550327, -22.575174), (-2.6132116, 43.30127, -24.863047), (-2.6132116, 43.30127, -24.863047), (-2.3727465, 44.550327, -22.575174), (-1.1880014, 44.550327, -22.668417), (-1.308399, 43.30127, -24.965738), (-1.308399, 43.30127, -24.965738), (-1.1880014, 44.550327, -22.668417), (-4.169835e-15, 44.550327, -22.699526), (-4.5924254e-15, 43.30127, -25), (-4.5924254e-15, 43.30127, -25), (-4.169835e-15, 44.550327, -22.699526), (1.1880014, 44.550327, -22.668417), (1.308399, 43.30127, -24.965738), (1.308399, 43.30127, -24.965738), (1.1880014, 44.550327, -22.668417), (2.3727465, 44.550327, -22.575174), (2.6132116, 43.30127, -24.863047), (2.6132116, 43.30127, -24.863047), (2.3727465, 44.550327, -22.575174), (3.550988, 44.550327, -22.420055), (3.9108617, 43.30127, -24.69221), (3.9108617, 43.30127, -24.69221), (3.550988, 44.550327, -22.420055), (4.7194967, 44.550327, -22.203485), (5.197792, 43.30127, -24.45369), (5.197792, 43.30127, -24.45369), (4.7194967, 44.550327, -22.203485), (5.8750696, 44.550327, -21.926058), (6.470476, 43.30127, -24.148146), (6.470476, 43.30127, -24.148146), (5.8750696, 44.550327, -21.926058), (7.014539, 44.550327, -21.588531), (7.725425, 43.30127, -23.776413), (7.725425, 43.30127, -23.776413), (7.014539, 44.550327, -21.588531), (8.134782, 44.550327, -21.191832), (8.959199, 43.30127, -23.33951), (8.959199, 43.30127, -23.33951), (8.134782, 44.550327, -21.191832), (9.232729, 44.550327, -20.737047), (10.168416, 43.30127, -22.838636), (10.168416, 43.30127, -22.838636), (9.232729, 44.550327, -20.737047), (10.305368, 44.550327, -20.225426), (11.349763, 43.30127, -22.275164), (11.349763, 43.30127, -22.275164), (10.305368, 44.550327, -20.225426), (11.349763, 44.550327, -19.658365), (12.5, 43.30127, -21.650635), (12.5, 43.30127, -21.650635), (11.349763, 44.550327, -19.658365), (12.363048, 44.550327, -19.037424), (13.615976, 43.30127, -20.966764), (13.615976, 43.30127, -20.966764), (12.363048, 44.550327, -19.037424), (13.342446, 44.550327, -18.364302), (14.694632, 43.30127, -20.225426), (14.694632, 43.30127, -20.225426), (13.342446, 44.550327, -18.364302), (14.285274, 44.550327, -17.640844), (15.733009, 43.30127, -19.42865), (15.733009, 43.30127, -19.42865), (14.285274, 44.550327, -17.640844), (15.188947, 44.550327, -16.869034), (16.728266, 43.30127, -18.57862), (16.728266, 43.30127, -18.57862), (15.188947, 44.550327, -16.869034), (16.050987, 44.550327, -16.050987), (17.67767, 43.30127, -17.67767), (17.67767, 43.30127, -17.67767), (16.050987, 44.550327, -16.050987), (16.869034, 44.550327, -15.188947), (18.57862, 43.30127, -16.728266), (18.57862, 43.30127, -16.728266), (16.869034, 44.550327, -15.188947), (17.640844, 44.550327, -14.285274), (19.42865, 43.30127, -15.733009), (19.42865, 43.30127, -15.733009), (17.640844, 44.550327, -14.285274), (18.364302, 44.550327, -13.342446), (20.225426, 43.30127, -14.694632), (20.225426, 43.30127, -14.694632), (18.364302, 44.550327, -13.342446), (19.037424, 44.550327, -12.363048), (20.966764, 43.30127, -13.615976), (20.966764, 43.30127, -13.615976), (19.037424, 44.550327, -12.363048), (19.658365, 44.550327, -11.349763), (21.650635, 43.30127, -12.5), (21.650635, 43.30127, -12.5), (19.658365, 44.550327, -11.349763), (20.225426, 44.550327, -10.305368), (22.275164, 43.30127, -11.349763), (22.275164, 43.30127, -11.349763), (20.225426, 44.550327, -10.305368), (20.737047, 44.550327, -9.232729), (22.838636, 43.30127, -10.168416), (22.838636, 43.30127, -10.168416), (20.737047, 44.550327, -9.232729), (21.191832, 44.550327, -8.134782), (23.33951, 43.30127, -8.959199), (23.33951, 43.30127, -8.959199), (21.191832, 44.550327, -8.134782), (21.588531, 44.550327, -7.014539), (23.776413, 43.30127, -7.725425), (23.776413, 43.30127, -7.725425), (21.588531, 44.550327, -7.014539), (21.926058, 44.550327, -5.8750696), (24.148146, 43.30127, -6.470476), (24.148146, 43.30127, -6.470476), (21.926058, 44.550327, -5.8750696), (22.203485, 44.550327, -4.7194967), (24.45369, 43.30127, -5.197792), (24.45369, 43.30127, -5.197792), (22.203485, 44.550327, -4.7194967), (22.420055, 44.550327, -3.550988), (24.69221, 43.30127, -3.9108617), (24.69221, 43.30127, -3.9108617), (22.420055, 44.550327, -3.550988), (22.575174, 44.550327, -2.3727465), (24.863047, 43.30127, -2.6132116), (24.863047, 43.30127, -2.6132116), (22.575174, 44.550327, -2.3727465), (22.668417, 44.550327, -1.1880014), (24.965738, 43.30127, -1.308399), (24.965738, 43.30127, -1.308399), (22.668417, 44.550327, -1.1880014), (22.699526, 44.550327, 0), (25, 43.30127, 0), (22.699526, 44.550327, 0), (20.336832, 45.677273, 0), (20.308962, 45.677273, 1.0643475), (22.668417, 44.550327, 1.1880014), (22.668417, 44.550327, 1.1880014), (20.308962, 45.677273, 1.0643475), (20.225426, 45.677273, 2.1257777), (22.575174, 44.550327, 2.3727465), (22.575174, 44.550327, 2.3727465), (20.225426, 45.677273, 2.1257777), (20.086452, 45.677273, 3.1813815), (22.420055, 44.550327, 3.550988), (22.420055, 44.550327, 3.550988), (20.086452, 45.677273, 3.1813815), (19.892424, 45.677273, 4.2282653), (22.203485, 44.550327, 4.7194967), (22.203485, 44.550327, 4.7194967), (19.892424, 45.677273, 4.2282653), (19.643871, 45.677273, 5.2635593), (21.926058, 44.550327, 5.8750696), (21.926058, 44.550327, 5.8750696), (19.643871, 45.677273, 5.2635593), (19.341476, 45.677273, 6.2844267), (21.588531, 44.550327, 7.014539), (21.588531, 44.550327, 7.014539), (19.341476, 45.677273, 6.2844267), (18.986069, 45.677273, 7.288069), (21.191832, 44.550327, 8.134782), (21.191832, 44.550327, 8.134782), (18.986069, 45.677273, 7.288069), (18.57862, 45.677273, 8.271735), (20.737047, 44.550327, 9.232729), (20.737047, 44.550327, 9.232729), (18.57862, 45.677273, 8.271735), (18.12025, 45.677273, 9.232729), (20.225426, 44.550327, 10.305368), (20.225426, 44.550327, 10.305368), (18.12025, 45.677273, 9.232729), (17.612213, 45.677273, 10.168416), (19.658365, 44.550327, 11.349763), (19.658365, 44.550327, 11.349763), (17.612213, 45.677273, 10.168416), (17.055902, 45.677273, 11.076233), (19.037424, 44.550327, 12.363048), (19.037424, 44.550327, 12.363048), (17.055902, 45.677273, 11.076233), (16.452843, 45.677273, 11.95369), (18.364302, 44.550327, 13.342446), (18.364302, 44.550327, 13.342446), (16.452843, 45.677273, 11.95369), (15.804687, 45.677273, 12.798383), (17.640844, 44.550327, 14.285274), (17.640844, 44.550327, 14.285274), (15.804687, 45.677273, 12.798383), (15.113212, 45.677273, 13.607997), (16.869034, 44.550327, 15.188947), (16.869034, 44.550327, 15.188947), (15.113212, 45.677273, 13.607997), (14.380312, 45.677273, 14.380312), (16.050987, 44.550327, 16.050987), (16.050987, 44.550327, 16.050987), (14.380312, 45.677273, 14.380312), (13.607997, 45.677273, 15.113212), (15.188947, 44.550327, 16.869034), (15.188947, 44.550327, 16.869034), (13.607997, 45.677273, 15.113212), (12.798383, 45.677273, 15.804687), (14.285274, 44.550327, 17.640844), (14.285274, 44.550327, 17.640844), (12.798383, 45.677273, 15.804687), (11.95369, 45.677273, 16.452843), (13.342446, 44.550327, 18.364302), (13.342446, 44.550327, 18.364302), (11.95369, 45.677273, 16.452843), (11.076233, 45.677273, 17.055902), (12.363048, 44.550327, 19.037424), (12.363048, 44.550327, 19.037424), (11.076233, 45.677273, 17.055902), (10.168416, 45.677273, 17.612213), (11.349763, 44.550327, 19.658365), (11.349763, 44.550327, 19.658365), (10.168416, 45.677273, 17.612213), (9.232729, 45.677273, 18.12025), (10.305368, 44.550327, 20.225426), (10.305368, 44.550327, 20.225426), (9.232729, 45.677273, 18.12025), (8.271735, 45.677273, 18.57862), (9.232729, 44.550327, 20.737047), (9.232729, 44.550327, 20.737047), (8.271735, 45.677273, 18.57862), (7.288069, 45.677273, 18.986069), (8.134782, 44.550327, 21.191832), (8.134782, 44.550327, 21.191832), (7.288069, 45.677273, 18.986069), (6.2844267, 45.677273, 19.341476), (7.014539, 44.550327, 21.588531), (7.014539, 44.550327, 21.588531), (6.2844267, 45.677273, 19.341476), (5.2635593, 45.677273, 19.643871), (5.8750696, 44.550327, 21.926058), (5.8750696, 44.550327, 21.926058), (5.2635593, 45.677273, 19.643871), (4.2282653, 45.677273, 19.892424), (4.7194967, 44.550327, 22.203485), (4.7194967, 44.550327, 22.203485), (4.2282653, 45.677273, 19.892424), (3.1813815, 45.677273, 20.086452), (3.550988, 44.550327, 22.420055), (3.550988, 44.550327, 22.420055), (3.1813815, 45.677273, 20.086452), (2.1257777, 45.677273, 20.225426), (2.3727465, 44.550327, 22.575174), (2.3727465, 44.550327, 22.575174), (2.1257777, 45.677273, 20.225426), (1.0643475, 45.677273, 20.308962), (1.1880014, 44.550327, 22.668417), (1.1880014, 44.550327, 22.668417), (1.0643475, 45.677273, 20.308962), (1.2452718e-15, 45.677273, 20.336832), (1.3899451e-15, 44.550327, 22.699526), (1.3899451e-15, 44.550327, 22.699526), (1.2452718e-15, 45.677273, 20.336832), (-1.0643475, 45.677273, 20.308962), (-1.1880014, 44.550327, 22.668417), (-1.1880014, 44.550327, 22.668417), (-1.0643475, 45.677273, 20.308962), (-2.1257777, 45.677273, 20.225426), (-2.3727465, 44.550327, 22.575174), (-2.3727465, 44.550327, 22.575174), (-2.1257777, 45.677273, 20.225426), (-3.1813815, 45.677273, 20.086452), (-3.550988, 44.550327, 22.420055), (-3.550988, 44.550327, 22.420055), (-3.1813815, 45.677273, 20.086452), (-4.2282653, 45.677273, 19.892424), (-4.7194967, 44.550327, 22.203485), (-4.7194967, 44.550327, 22.203485), (-4.2282653, 45.677273, 19.892424), (-5.2635593, 45.677273, 19.643871), (-5.8750696, 44.550327, 21.926058), (-5.8750696, 44.550327, 21.926058), (-5.2635593, 45.677273, 19.643871), (-6.2844267, 45.677273, 19.341476), (-7.014539, 44.550327, 21.588531), (-7.014539, 44.550327, 21.588531), (-6.2844267, 45.677273, 19.341476), (-7.288069, 45.677273, 18.986069), (-8.134782, 44.550327, 21.191832), (-8.134782, 44.550327, 21.191832), (-7.288069, 45.677273, 18.986069), (-8.271735, 45.677273, 18.57862), (-9.232729, 44.550327, 20.737047), (-9.232729, 44.550327, 20.737047), (-8.271735, 45.677273, 18.57862), (-9.232729, 45.677273, 18.12025), (-10.305368, 44.550327, 20.225426), (-10.305368, 44.550327, 20.225426), (-9.232729, 45.677273, 18.12025), (-10.168416, 45.677273, 17.612213), (-11.349763, 44.550327, 19.658365), (-11.349763, 44.550327, 19.658365), (-10.168416, 45.677273, 17.612213), (-11.076233, 45.677273, 17.055902), (-12.363048, 44.550327, 19.037424), (-12.363048, 44.550327, 19.037424), (-11.076233, 45.677273, 17.055902), (-11.95369, 45.677273, 16.452843), (-13.342446, 44.550327, 18.364302), (-13.342446, 44.550327, 18.364302), (-11.95369, 45.677273, 16.452843), (-12.798383, 45.677273, 15.804687), (-14.285274, 44.550327, 17.640844), (-14.285274, 44.550327, 17.640844), (-12.798383, 45.677273, 15.804687), (-13.607997, 45.677273, 15.113212), (-15.188947, 44.550327, 16.869034), (-15.188947, 44.550327, 16.869034), (-13.607997, 45.677273, 15.113212), (-14.380312, 45.677273, 14.380312), (-16.050987, 44.550327, 16.050987), (-16.050987, 44.550327, 16.050987), (-14.380312, 45.677273, 14.380312), (-15.113212, 45.677273, 13.607997), (-16.869034, 44.550327, 15.188947), (-16.869034, 44.550327, 15.188947), (-15.113212, 45.677273, 13.607997), (-15.804687, 45.677273, 12.798383), (-17.640844, 44.550327, 14.285274), (-17.640844, 44.550327, 14.285274), (-15.804687, 45.677273, 12.798383), (-16.452843, 45.677273, 11.95369), (-18.364302, 44.550327, 13.342446), (-18.364302, 44.550327, 13.342446), (-16.452843, 45.677273, 11.95369), (-17.055902, 45.677273, 11.076233), (-19.037424, 44.550327, 12.363048), (-19.037424, 44.550327, 12.363048), (-17.055902, 45.677273, 11.076233), (-17.612213, 45.677273, 10.168416), (-19.658365, 44.550327, 11.349763), (-19.658365, 44.550327, 11.349763), (-17.612213, 45.677273, 10.168416), (-18.12025, 45.677273, 9.232729), (-20.225426, 44.550327, 10.305368), (-20.225426, 44.550327, 10.305368), (-18.12025, 45.677273, 9.232729), (-18.57862, 45.677273, 8.271735), (-20.737047, 44.550327, 9.232729), (-20.737047, 44.550327, 9.232729), (-18.57862, 45.677273, 8.271735), (-18.986069, 45.677273, 7.288069), (-21.191832, 44.550327, 8.134782), (-21.191832, 44.550327, 8.134782), (-18.986069, 45.677273, 7.288069), (-19.341476, 45.677273, 6.2844267), (-21.588531, 44.550327, 7.014539), (-21.588531, 44.550327, 7.014539), (-19.341476, 45.677273, 6.2844267), (-19.643871, 45.677273, 5.2635593), (-21.926058, 44.550327, 5.8750696), (-21.926058, 44.550327, 5.8750696), (-19.643871, 45.677273, 5.2635593), (-19.892424, 45.677273, 4.2282653), (-22.203485, 44.550327, 4.7194967), (-22.203485, 44.550327, 4.7194967), (-19.892424, 45.677273, 4.2282653), (-20.086452, 45.677273, 3.1813815), (-22.420055, 44.550327, 3.550988), (-22.420055, 44.550327, 3.550988), (-20.086452, 45.677273, 3.1813815), (-20.225426, 45.677273, 2.1257777), (-22.575174, 44.550327, 2.3727465), (-22.575174, 44.550327, 2.3727465), (-20.225426, 45.677273, 2.1257777), (-20.308962, 45.677273, 1.0643475), (-22.668417, 44.550327, 1.1880014), (-22.668417, 44.550327, 1.1880014), (-20.308962, 45.677273, 1.0643475), (-20.336832, 45.677273, 2.4905437e-15), (-22.699526, 44.550327, 2.7798901e-15), (-22.699526, 44.550327, 2.7798901e-15), (-20.336832, 45.677273, 2.4905437e-15), (-20.308962, 45.677273, -1.0643475), (-22.668417, 44.550327, -1.1880014), (-22.668417, 44.550327, -1.1880014), (-20.308962, 45.677273, -1.0643475), (-20.225426, 45.677273, -2.1257777), (-22.575174, 44.550327, -2.3727465), (-22.575174, 44.550327, -2.3727465), (-20.225426, 45.677273, -2.1257777), (-20.086452, 45.677273, -3.1813815), (-22.420055, 44.550327, -3.550988), (-22.420055, 44.550327, -3.550988), (-20.086452, 45.677273, -3.1813815), (-19.892424, 45.677273, -4.2282653), (-22.203485, 44.550327, -4.7194967), (-22.203485, 44.550327, -4.7194967), (-19.892424, 45.677273, -4.2282653), (-19.643871, 45.677273, -5.2635593), (-21.926058, 44.550327, -5.8750696), (-21.926058, 44.550327, -5.8750696), (-19.643871, 45.677273, -5.2635593), (-19.341476, 45.677273, -6.2844267), (-21.588531, 44.550327, -7.014539), (-21.588531, 44.550327, -7.014539), (-19.341476, 45.677273, -6.2844267), (-18.986069, 45.677273, -7.288069), (-21.191832, 44.550327, -8.134782), (-21.191832, 44.550327, -8.134782), (-18.986069, 45.677273, -7.288069), (-18.57862, 45.677273, -8.271735), (-20.737047, 44.550327, -9.232729), (-20.737047, 44.550327, -9.232729), (-18.57862, 45.677273, -8.271735), (-18.12025, 45.677273, -9.232729), (-20.225426, 44.550327, -10.305368), (-20.225426, 44.550327, -10.305368), (-18.12025, 45.677273, -9.232729), (-17.612213, 45.677273, -10.168416), (-19.658365, 44.550327, -11.349763), (-19.658365, 44.550327, -11.349763), (-17.612213, 45.677273, -10.168416), (-17.055902, 45.677273, -11.076233), (-19.037424, 44.550327, -12.363048), (-19.037424, 44.550327, -12.363048), (-17.055902, 45.677273, -11.076233), (-16.452843, 45.677273, -11.95369), (-18.364302, 44.550327, -13.342446), (-18.364302, 44.550327, -13.342446), (-16.452843, 45.677273, -11.95369), (-15.804687, 45.677273, -12.798383), (-17.640844, 44.550327, -14.285274), (-17.640844, 44.550327, -14.285274), (-15.804687, 45.677273, -12.798383), (-15.113212, 45.677273, -13.607997), (-16.869034, 44.550327, -15.188947), (-16.869034, 44.550327, -15.188947), (-15.113212, 45.677273, -13.607997), (-14.380312, 45.677273, -14.380312), (-16.050987, 44.550327, -16.050987), (-16.050987, 44.550327, -16.050987), (-14.380312, 45.677273, -14.380312), (-13.607997, 45.677273, -15.113212), (-15.188947, 44.550327, -16.869034), (-15.188947, 44.550327, -16.869034), (-13.607997, 45.677273, -15.113212), (-12.798383, 45.677273, -15.804687), (-14.285274, 44.550327, -17.640844), (-14.285274, 44.550327, -17.640844), (-12.798383, 45.677273, -15.804687), (-11.95369, 45.677273, -16.452843), (-13.342446, 44.550327, -18.364302), (-13.342446, 44.550327, -18.364302), (-11.95369, 45.677273, -16.452843), (-11.076233, 45.677273, -17.055902), (-12.363048, 44.550327, -19.037424), (-12.363048, 44.550327, -19.037424), (-11.076233, 45.677273, -17.055902), (-10.168416, 45.677273, -17.612213), (-11.349763, 44.550327, -19.658365), (-11.349763, 44.550327, -19.658365), (-10.168416, 45.677273, -17.612213), (-9.232729, 45.677273, -18.12025), (-10.305368, 44.550327, -20.225426), (-10.305368, 44.550327, -20.225426), (-9.232729, 45.677273, -18.12025), (-8.271735, 45.677273, -18.57862), (-9.232729, 44.550327, -20.737047), (-9.232729, 44.550327, -20.737047), (-8.271735, 45.677273, -18.57862), (-7.288069, 45.677273, -18.986069), (-8.134782, 44.550327, -21.191832), (-8.134782, 44.550327, -21.191832), (-7.288069, 45.677273, -18.986069), (-6.2844267, 45.677273, -19.341476), (-7.014539, 44.550327, -21.588531), (-7.014539, 44.550327, -21.588531), (-6.2844267, 45.677273, -19.341476), (-5.2635593, 45.677273, -19.643871), (-5.8750696, 44.550327, -21.926058), (-5.8750696, 44.550327, -21.926058), (-5.2635593, 45.677273, -19.643871), (-4.2282653, 45.677273, -19.892424), (-4.7194967, 44.550327, -22.203485), (-4.7194967, 44.550327, -22.203485), (-4.2282653, 45.677273, -19.892424), (-3.1813815, 45.677273, -20.086452), (-3.550988, 44.550327, -22.420055), (-3.550988, 44.550327, -22.420055), (-3.1813815, 45.677273, -20.086452), (-2.1257777, 45.677273, -20.225426), (-2.3727465, 44.550327, -22.575174), (-2.3727465, 44.550327, -22.575174), (-2.1257777, 45.677273, -20.225426), (-1.0643475, 45.677273, -20.308962), (-1.1880014, 44.550327, -22.668417), (-1.1880014, 44.550327, -22.668417), (-1.0643475, 45.677273, -20.308962), (-3.7358155e-15, 45.677273, -20.336832), (-4.169835e-15, 44.550327, -22.699526), (-4.169835e-15, 44.550327, -22.699526), (-3.7358155e-15, 45.677273, -20.336832), (1.0643475, 45.677273, -20.308962), (1.1880014, 44.550327, -22.668417), (1.1880014, 44.550327, -22.668417), (1.0643475, 45.677273, -20.308962), (2.1257777, 45.677273, -20.225426), (2.3727465, 44.550327, -22.575174), (2.3727465, 44.550327, -22.575174), (2.1257777, 45.677273, -20.225426), (3.1813815, 45.677273, -20.086452), (3.550988, 44.550327, -22.420055), (3.550988, 44.550327, -22.420055), (3.1813815, 45.677273, -20.086452), (4.2282653, 45.677273, -19.892424), (4.7194967, 44.550327, -22.203485), (4.7194967, 44.550327, -22.203485), (4.2282653, 45.677273, -19.892424), (5.2635593, 45.677273, -19.643871), (5.8750696, 44.550327, -21.926058), (5.8750696, 44.550327, -21.926058), (5.2635593, 45.677273, -19.643871), (6.2844267, 45.677273, -19.341476), (7.014539, 44.550327, -21.588531), (7.014539, 44.550327, -21.588531), (6.2844267, 45.677273, -19.341476), (7.288069, 45.677273, -18.986069), (8.134782, 44.550327, -21.191832), (8.134782, 44.550327, -21.191832), (7.288069, 45.677273, -18.986069), (8.271735, 45.677273, -18.57862), (9.232729, 44.550327, -20.737047), (9.232729, 44.550327, -20.737047), (8.271735, 45.677273, -18.57862), (9.232729, 45.677273, -18.12025), (10.305368, 44.550327, -20.225426), (10.305368, 44.550327, -20.225426), (9.232729, 45.677273, -18.12025), (10.168416, 45.677273, -17.612213), (11.349763, 44.550327, -19.658365), (11.349763, 44.550327, -19.658365), (10.168416, 45.677273, -17.612213), (11.076233, 45.677273, -17.055902), (12.363048, 44.550327, -19.037424), (12.363048, 44.550327, -19.037424), (11.076233, 45.677273, -17.055902), (11.95369, 45.677273, -16.452843), (13.342446, 44.550327, -18.364302), (13.342446, 44.550327, -18.364302), (11.95369, 45.677273, -16.452843), (12.798383, 45.677273, -15.804687), (14.285274, 44.550327, -17.640844), (14.285274, 44.550327, -17.640844), (12.798383, 45.677273, -15.804687), (13.607997, 45.677273, -15.113212), (15.188947, 44.550327, -16.869034), (15.188947, 44.550327, -16.869034), (13.607997, 45.677273, -15.113212), (14.380312, 45.677273, -14.380312), (16.050987, 44.550327, -16.050987), (16.050987, 44.550327, -16.050987), (14.380312, 45.677273, -14.380312), (15.113212, 45.677273, -13.607997), (16.869034, 44.550327, -15.188947), (16.869034, 44.550327, -15.188947), (15.113212, 45.677273, -13.607997), (15.804687, 45.677273, -12.798383), (17.640844, 44.550327, -14.285274), (17.640844, 44.550327, -14.285274), (15.804687, 45.677273, -12.798383), (16.452843, 45.677273, -11.95369), (18.364302, 44.550327, -13.342446), (18.364302, 44.550327, -13.342446), (16.452843, 45.677273, -11.95369), (17.055902, 45.677273, -11.076233), (19.037424, 44.550327, -12.363048), (19.037424, 44.550327, -12.363048), (17.055902, 45.677273, -11.076233), (17.612213, 45.677273, -10.168416), (19.658365, 44.550327, -11.349763), (19.658365, 44.550327, -11.349763), (17.612213, 45.677273, -10.168416), (18.12025, 45.677273, -9.232729), (20.225426, 44.550327, -10.305368), (20.225426, 44.550327, -10.305368), (18.12025, 45.677273, -9.232729), (18.57862, 45.677273, -8.271735), (20.737047, 44.550327, -9.232729), (20.737047, 44.550327, -9.232729), (18.57862, 45.677273, -8.271735), (18.986069, 45.677273, -7.288069), (21.191832, 44.550327, -8.134782), (21.191832, 44.550327, -8.134782), (18.986069, 45.677273, -7.288069), (19.341476, 45.677273, -6.2844267), (21.588531, 44.550327, -7.014539), (21.588531, 44.550327, -7.014539), (19.341476, 45.677273, -6.2844267), (19.643871, 45.677273, -5.2635593), (21.926058, 44.550327, -5.8750696), (21.926058, 44.550327, -5.8750696), (19.643871, 45.677273, -5.2635593), (19.892424, 45.677273, -4.2282653), (22.203485, 44.550327, -4.7194967), (22.203485, 44.550327, -4.7194967), (19.892424, 45.677273, -4.2282653), (20.086452, 45.677273, -3.1813815), (22.420055, 44.550327, -3.550988), (22.420055, 44.550327, -3.550988), (20.086452, 45.677273, -3.1813815), (20.225426, 45.677273, -2.1257777), (22.575174, 44.550327, -2.3727465), (22.575174, 44.550327, -2.3727465), (20.225426, 45.677273, -2.1257777), (20.308962, 45.677273, -1.0643475), (22.668417, 44.550327, -1.1880014), (22.668417, 44.550327, -1.1880014), (20.308962, 45.677273, -1.0643475), (20.336832, 45.677273, 0), (22.699526, 44.550327, 0), (20.336832, 45.677273, 0), (17.918398, 46.67902, 0), (17.89384, 46.67902, 0.93777645), (20.308962, 45.677273, 1.0643475), (20.308962, 45.677273, 1.0643475), (17.89384, 46.67902, 0.93777645), (17.820238, 46.67902, 1.8729825), (20.225426, 45.677273, 2.1257777), (20.225426, 45.677273, 2.1257777), (17.820238, 46.67902, 1.8729825), (17.697792, 46.67902, 2.8030548), (20.086452, 45.677273, 3.1813815), (20.086452, 45.677273, 3.1813815), (17.697792, 46.67902, 2.8030548), (17.526838, 46.67902, 3.7254443), (19.892424, 45.677273, 4.2282653), (19.892424, 45.677273, 4.2282653), (17.526838, 46.67902, 3.7254443), (17.307842, 46.67902, 4.6376224), (19.643871, 45.677273, 5.2635593), (19.643871, 45.677273, 5.2635593), (17.307842, 46.67902, 4.6376224), (17.041409, 46.67902, 5.5370893), (19.341476, 45.677273, 6.2844267), (19.341476, 45.677273, 6.2844267), (17.041409, 46.67902, 5.5370893), (16.728266, 46.67902, 6.4213796), (18.986069, 45.677273, 7.288069), (18.986069, 45.677273, 7.288069), (16.728266, 46.67902, 6.4213796), (16.36927, 46.67902, 7.288069), (18.57862, 45.677273, 8.271735), (18.57862, 45.677273, 8.271735), (16.36927, 46.67902, 7.288069), (15.965409, 46.67902, 8.134782), (18.12025, 45.677273, 9.232729), (18.12025, 45.677273, 9.232729), (15.965409, 46.67902, 8.134782), (15.517787, 46.67902, 8.959199), (17.612213, 45.677273, 10.168416), (17.612213, 45.677273, 10.168416), (15.517787, 46.67902, 8.959199), (15.027633, 46.67902, 9.759059), (17.055902, 45.677273, 11.076233), (17.055902, 45.677273, 11.076233), (15.027633, 46.67902, 9.759059), (14.496288, 46.67902, 10.532169), (16.452843, 45.677273, 11.95369), (16.452843, 45.677273, 11.95369), (14.496288, 46.67902, 10.532169), (13.92521, 46.67902, 11.276413), (15.804687, 45.677273, 12.798383), (15.804687, 45.677273, 12.798383), (13.92521, 46.67902, 11.276413), (13.315965, 46.67902, 11.989748), (15.113212, 45.677273, 13.607997), (15.113212, 45.677273, 13.607997), (13.315965, 46.67902, 11.989748), (12.67022, 46.67902, 12.67022), (14.380312, 45.677273, 14.380312), (14.380312, 45.677273, 14.380312), (12.67022, 46.67902, 12.67022), (11.989748, 46.67902, 13.315965), (13.607997, 45.677273, 15.113212), (13.607997, 45.677273, 15.113212), (11.989748, 46.67902, 13.315965), (11.276413, 46.67902, 13.92521), (12.798383, 45.677273, 15.804687), (12.798383, 45.677273, 15.804687), (11.276413, 46.67902, 13.92521), (10.532169, 46.67902, 14.496288), (11.95369, 45.677273, 16.452843), (11.95369, 45.677273, 16.452843), (10.532169, 46.67902, 14.496288), (9.759059, 46.67902, 15.027633), (11.076233, 45.677273, 17.055902), (11.076233, 45.677273, 17.055902), (9.759059, 46.67902, 15.027633), (8.959199, 46.67902, 15.517787), (10.168416, 45.677273, 17.612213), (10.168416, 45.677273, 17.612213), (8.959199, 46.67902, 15.517787), (8.134782, 46.67902, 15.965409), (9.232729, 45.677273, 18.12025), (9.232729, 45.677273, 18.12025), (8.134782, 46.67902, 15.965409), (7.288069, 46.67902, 16.36927), (8.271735, 45.677273, 18.57862), (8.271735, 45.677273, 18.57862), (7.288069, 46.67902, 16.36927), (6.4213796, 46.67902, 16.728266), (7.288069, 45.677273, 18.986069), (7.288069, 45.677273, 18.986069), (6.4213796, 46.67902, 16.728266), (5.5370893, 46.67902, 17.041409), (6.2844267, 45.677273, 19.341476), (6.2844267, 45.677273, 19.341476), (5.5370893, 46.67902, 17.041409), (4.6376224, 46.67902, 17.307842), (5.2635593, 45.677273, 19.643871), (5.2635593, 45.677273, 19.643871), (4.6376224, 46.67902, 17.307842), (3.7254443, 46.67902, 17.526838), (4.2282653, 45.677273, 19.892424), (4.2282653, 45.677273, 19.892424), (3.7254443, 46.67902, 17.526838), (2.8030548, 46.67902, 17.697792), (3.1813815, 45.677273, 20.086452), (3.1813815, 45.677273, 20.086452), (2.8030548, 46.67902, 17.697792), (1.8729825, 46.67902, 17.820238), (2.1257777, 45.677273, 20.225426), (2.1257777, 45.677273, 20.225426), (1.8729825, 46.67902, 17.820238), (0.93777645, 46.67902, 17.89384), (1.0643475, 45.677273, 20.308962), (1.0643475, 45.677273, 20.308962), (0.93777645, 46.67902, 17.89384), (1.0971854e-15, 46.67902, 17.918398), (1.2452718e-15, 45.677273, 20.336832), (1.2452718e-15, 45.677273, 20.336832), (1.0971854e-15, 46.67902, 17.918398), (-0.93777645, 46.67902, 17.89384), (-1.0643475, 45.677273, 20.308962), (-1.0643475, 45.677273, 20.308962), (-0.93777645, 46.67902, 17.89384), (-1.8729825, 46.67902, 17.820238), (-2.1257777, 45.677273, 20.225426), (-2.1257777, 45.677273, 20.225426), (-1.8729825, 46.67902, 17.820238), (-2.8030548, 46.67902, 17.697792), (-3.1813815, 45.677273, 20.086452), (-3.1813815, 45.677273, 20.086452), (-2.8030548, 46.67902, 17.697792), (-3.7254443, 46.67902, 17.526838), (-4.2282653, 45.677273, 19.892424), (-4.2282653, 45.677273, 19.892424), (-3.7254443, 46.67902, 17.526838), (-4.6376224, 46.67902, 17.307842), (-5.2635593, 45.677273, 19.643871), (-5.2635593, 45.677273, 19.643871), (-4.6376224, 46.67902, 17.307842), (-5.5370893, 46.67902, 17.041409), (-6.2844267, 45.677273, 19.341476), (-6.2844267, 45.677273, 19.341476), (-5.5370893, 46.67902, 17.041409), (-6.4213796, 46.67902, 16.728266), (-7.288069, 45.677273, 18.986069), (-7.288069, 45.677273, 18.986069), (-6.4213796, 46.67902, 16.728266), (-7.288069, 46.67902, 16.36927), (-8.271735, 45.677273, 18.57862), (-8.271735, 45.677273, 18.57862), (-7.288069, 46.67902, 16.36927), (-8.134782, 46.67902, 15.965409), (-9.232729, 45.677273, 18.12025), (-9.232729, 45.677273, 18.12025), (-8.134782, 46.67902, 15.965409), (-8.959199, 46.67902, 15.517787), (-10.168416, 45.677273, 17.612213), (-10.168416, 45.677273, 17.612213), (-8.959199, 46.67902, 15.517787), (-9.759059, 46.67902, 15.027633), (-11.076233, 45.677273, 17.055902), (-11.076233, 45.677273, 17.055902), (-9.759059, 46.67902, 15.027633), (-10.532169, 46.67902, 14.496288), (-11.95369, 45.677273, 16.452843), (-11.95369, 45.677273, 16.452843), (-10.532169, 46.67902, 14.496288), (-11.276413, 46.67902, 13.92521), (-12.798383, 45.677273, 15.804687), (-12.798383, 45.677273, 15.804687), (-11.276413, 46.67902, 13.92521), (-11.989748, 46.67902, 13.315965), (-13.607997, 45.677273, 15.113212), (-13.607997, 45.677273, 15.113212), (-11.989748, 46.67902, 13.315965), (-12.67022, 46.67902, 12.67022), (-14.380312, 45.677273, 14.380312), (-14.380312, 45.677273, 14.380312), (-12.67022, 46.67902, 12.67022), (-13.315965, 46.67902, 11.989748), (-15.113212, 45.677273, 13.607997), (-15.113212, 45.677273, 13.607997), (-13.315965, 46.67902, 11.989748), (-13.92521, 46.67902, 11.276413), (-15.804687, 45.677273, 12.798383), (-15.804687, 45.677273, 12.798383), (-13.92521, 46.67902, 11.276413), (-14.496288, 46.67902, 10.532169), (-16.452843, 45.677273, 11.95369), (-16.452843, 45.677273, 11.95369), (-14.496288, 46.67902, 10.532169), (-15.027633, 46.67902, 9.759059), (-17.055902, 45.677273, 11.076233), (-17.055902, 45.677273, 11.076233), (-15.027633, 46.67902, 9.759059), (-15.517787, 46.67902, 8.959199), (-17.612213, 45.677273, 10.168416), (-17.612213, 45.677273, 10.168416), (-15.517787, 46.67902, 8.959199), (-15.965409, 46.67902, 8.134782), (-18.12025, 45.677273, 9.232729), (-18.12025, 45.677273, 9.232729), (-15.965409, 46.67902, 8.134782), (-16.36927, 46.67902, 7.288069), (-18.57862, 45.677273, 8.271735), (-18.57862, 45.677273, 8.271735), (-16.36927, 46.67902, 7.288069), (-16.728266, 46.67902, 6.4213796), (-18.986069, 45.677273, 7.288069), (-18.986069, 45.677273, 7.288069), (-16.728266, 46.67902, 6.4213796), (-17.041409, 46.67902, 5.5370893), (-19.341476, 45.677273, 6.2844267), (-19.341476, 45.677273, 6.2844267), (-17.041409, 46.67902, 5.5370893), (-17.307842, 46.67902, 4.6376224), (-19.643871, 45.677273, 5.2635593), (-19.643871, 45.677273, 5.2635593), (-17.307842, 46.67902, 4.6376224), (-17.526838, 46.67902, 3.7254443), (-19.892424, 45.677273, 4.2282653), (-19.892424, 45.677273, 4.2282653), (-17.526838, 46.67902, 3.7254443), (-17.697792, 46.67902, 2.8030548), (-20.086452, 45.677273, 3.1813815), (-20.086452, 45.677273, 3.1813815), (-17.697792, 46.67902, 2.8030548), (-17.820238, 46.67902, 1.8729825), (-20.225426, 45.677273, 2.1257777), (-20.225426, 45.677273, 2.1257777), (-17.820238, 46.67902, 1.8729825), (-17.89384, 46.67902, 0.93777645), (-20.308962, 45.677273, 1.0643475), (-20.308962, 45.677273, 1.0643475), (-17.89384, 46.67902, 0.93777645), (-17.918398, 46.67902, 2.1943708e-15), (-20.336832, 45.677273, 2.4905437e-15), (-20.336832, 45.677273, 2.4905437e-15), (-17.918398, 46.67902, 2.1943708e-15), (-17.89384, 46.67902, -0.93777645), (-20.308962, 45.677273, -1.0643475), (-20.308962, 45.677273, -1.0643475), (-17.89384, 46.67902, -0.93777645), (-17.820238, 46.67902, -1.8729825), (-20.225426, 45.677273, -2.1257777), (-20.225426, 45.677273, -2.1257777), (-17.820238, 46.67902, -1.8729825), (-17.697792, 46.67902, -2.8030548), (-20.086452, 45.677273, -3.1813815), (-20.086452, 45.677273, -3.1813815), (-17.697792, 46.67902, -2.8030548), (-17.526838, 46.67902, -3.7254443), (-19.892424, 45.677273, -4.2282653), (-19.892424, 45.677273, -4.2282653), (-17.526838, 46.67902, -3.7254443), (-17.307842, 46.67902, -4.6376224), (-19.643871, 45.677273, -5.2635593), (-19.643871, 45.677273, -5.2635593), (-17.307842, 46.67902, -4.6376224), (-17.041409, 46.67902, -5.5370893), (-19.341476, 45.677273, -6.2844267), (-19.341476, 45.677273, -6.2844267), (-17.041409, 46.67902, -5.5370893), (-16.728266, 46.67902, -6.4213796), (-18.986069, 45.677273, -7.288069), (-18.986069, 45.677273, -7.288069), (-16.728266, 46.67902, -6.4213796), (-16.36927, 46.67902, -7.288069), (-18.57862, 45.677273, -8.271735), (-18.57862, 45.677273, -8.271735), (-16.36927, 46.67902, -7.288069), (-15.965409, 46.67902, -8.134782), (-18.12025, 45.677273, -9.232729), (-18.12025, 45.677273, -9.232729), (-15.965409, 46.67902, -8.134782), (-15.517787, 46.67902, -8.959199), (-17.612213, 45.677273, -10.168416), (-17.612213, 45.677273, -10.168416), (-15.517787, 46.67902, -8.959199), (-15.027633, 46.67902, -9.759059), (-17.055902, 45.677273, -11.076233), (-17.055902, 45.677273, -11.076233), (-15.027633, 46.67902, -9.759059), (-14.496288, 46.67902, -10.532169), (-16.452843, 45.677273, -11.95369), (-16.452843, 45.677273, -11.95369), (-14.496288, 46.67902, -10.532169), (-13.92521, 46.67902, -11.276413), (-15.804687, 45.677273, -12.798383), (-15.804687, 45.677273, -12.798383), (-13.92521, 46.67902, -11.276413), (-13.315965, 46.67902, -11.989748), (-15.113212, 45.677273, -13.607997), (-15.113212, 45.677273, -13.607997), (-13.315965, 46.67902, -11.989748), (-12.67022, 46.67902, -12.67022), (-14.380312, 45.677273, -14.380312), (-14.380312, 45.677273, -14.380312), (-12.67022, 46.67902, -12.67022), (-11.989748, 46.67902, -13.315965), (-13.607997, 45.677273, -15.113212), (-13.607997, 45.677273, -15.113212), (-11.989748, 46.67902, -13.315965), (-11.276413, 46.67902, -13.92521), (-12.798383, 45.677273, -15.804687), (-12.798383, 45.677273, -15.804687), (-11.276413, 46.67902, -13.92521), (-10.532169, 46.67902, -14.496288), (-11.95369, 45.677273, -16.452843), (-11.95369, 45.677273, -16.452843), (-10.532169, 46.67902, -14.496288), (-9.759059, 46.67902, -15.027633), (-11.076233, 45.677273, -17.055902), (-11.076233, 45.677273, -17.055902), (-9.759059, 46.67902, -15.027633), (-8.959199, 46.67902, -15.517787), (-10.168416, 45.677273, -17.612213), (-10.168416, 45.677273, -17.612213), (-8.959199, 46.67902, -15.517787), (-8.134782, 46.67902, -15.965409), (-9.232729, 45.677273, -18.12025), (-9.232729, 45.677273, -18.12025), (-8.134782, 46.67902, -15.965409), (-7.288069, 46.67902, -16.36927), (-8.271735, 45.677273, -18.57862), (-8.271735, 45.677273, -18.57862), (-7.288069, 46.67902, -16.36927), (-6.4213796, 46.67902, -16.728266), (-7.288069, 45.677273, -18.986069), (-7.288069, 45.677273, -18.986069), (-6.4213796, 46.67902, -16.728266), (-5.5370893, 46.67902, -17.041409), (-6.2844267, 45.677273, -19.341476), (-6.2844267, 45.677273, -19.341476), (-5.5370893, 46.67902, -17.041409), (-4.6376224, 46.67902, -17.307842), (-5.2635593, 45.677273, -19.643871), (-5.2635593, 45.677273, -19.643871), (-4.6376224, 46.67902, -17.307842), (-3.7254443, 46.67902, -17.526838), (-4.2282653, 45.677273, -19.892424), (-4.2282653, 45.677273, -19.892424), (-3.7254443, 46.67902, -17.526838), (-2.8030548, 46.67902, -17.697792), (-3.1813815, 45.677273, -20.086452), (-3.1813815, 45.677273, -20.086452), (-2.8030548, 46.67902, -17.697792), (-1.8729825, 46.67902, -17.820238), (-2.1257777, 45.677273, -20.225426), (-2.1257777, 45.677273, -20.225426), (-1.8729825, 46.67902, -17.820238), (-0.93777645, 46.67902, -17.89384), (-1.0643475, 45.677273, -20.308962), (-1.0643475, 45.677273, -20.308962), (-0.93777645, 46.67902, -17.89384), (-3.2915563e-15, 46.67902, -17.918398), (-3.7358155e-15, 45.677273, -20.336832), (-3.7358155e-15, 45.677273, -20.336832), (-3.2915563e-15, 46.67902, -17.918398), (0.93777645, 46.67902, -17.89384), (1.0643475, 45.677273, -20.308962), (1.0643475, 45.677273, -20.308962), (0.93777645, 46.67902, -17.89384), (1.8729825, 46.67902, -17.820238), (2.1257777, 45.677273, -20.225426), (2.1257777, 45.677273, -20.225426), (1.8729825, 46.67902, -17.820238), (2.8030548, 46.67902, -17.697792), (3.1813815, 45.677273, -20.086452), (3.1813815, 45.677273, -20.086452), (2.8030548, 46.67902, -17.697792), (3.7254443, 46.67902, -17.526838), (4.2282653, 45.677273, -19.892424), (4.2282653, 45.677273, -19.892424), (3.7254443, 46.67902, -17.526838), (4.6376224, 46.67902, -17.307842), (5.2635593, 45.677273, -19.643871), (5.2635593, 45.677273, -19.643871), (4.6376224, 46.67902, -17.307842), (5.5370893, 46.67902, -17.041409), (6.2844267, 45.677273, -19.341476), (6.2844267, 45.677273, -19.341476), (5.5370893, 46.67902, -17.041409), (6.4213796, 46.67902, -16.728266), (7.288069, 45.677273, -18.986069), (7.288069, 45.677273, -18.986069), (6.4213796, 46.67902, -16.728266), (7.288069, 46.67902, -16.36927), (8.271735, 45.677273, -18.57862), (8.271735, 45.677273, -18.57862), (7.288069, 46.67902, -16.36927), (8.134782, 46.67902, -15.965409), (9.232729, 45.677273, -18.12025), (9.232729, 45.677273, -18.12025), (8.134782, 46.67902, -15.965409), (8.959199, 46.67902, -15.517787), (10.168416, 45.677273, -17.612213), (10.168416, 45.677273, -17.612213), (8.959199, 46.67902, -15.517787), (9.759059, 46.67902, -15.027633), (11.076233, 45.677273, -17.055902), (11.076233, 45.677273, -17.055902), (9.759059, 46.67902, -15.027633), (10.532169, 46.67902, -14.496288), (11.95369, 45.677273, -16.452843), (11.95369, 45.677273, -16.452843), (10.532169, 46.67902, -14.496288), (11.276413, 46.67902, -13.92521), (12.798383, 45.677273, -15.804687), (12.798383, 45.677273, -15.804687), (11.276413, 46.67902, -13.92521), (11.989748, 46.67902, -13.315965), (13.607997, 45.677273, -15.113212), (13.607997, 45.677273, -15.113212), (11.989748, 46.67902, -13.315965), (12.67022, 46.67902, -12.67022), (14.380312, 45.677273, -14.380312), (14.380312, 45.677273, -14.380312), (12.67022, 46.67902, -12.67022), (13.315965, 46.67902, -11.989748), (15.113212, 45.677273, -13.607997), (15.113212, 45.677273, -13.607997), (13.315965, 46.67902, -11.989748), (13.92521, 46.67902, -11.276413), (15.804687, 45.677273, -12.798383), (15.804687, 45.677273, -12.798383), (13.92521, 46.67902, -11.276413), (14.496288, 46.67902, -10.532169), (16.452843, 45.677273, -11.95369), (16.452843, 45.677273, -11.95369), (14.496288, 46.67902, -10.532169), (15.027633, 46.67902, -9.759059), (17.055902, 45.677273, -11.076233), (17.055902, 45.677273, -11.076233), (15.027633, 46.67902, -9.759059), (15.517787, 46.67902, -8.959199), (17.612213, 45.677273, -10.168416), (17.612213, 45.677273, -10.168416), (15.517787, 46.67902, -8.959199), (15.965409, 46.67902, -8.134782), (18.12025, 45.677273, -9.232729), (18.12025, 45.677273, -9.232729), (15.965409, 46.67902, -8.134782), (16.36927, 46.67902, -7.288069), (18.57862, 45.677273, -8.271735), (18.57862, 45.677273, -8.271735), (16.36927, 46.67902, -7.288069), (16.728266, 46.67902, -6.4213796), (18.986069, 45.677273, -7.288069), (18.986069, 45.677273, -7.288069), (16.728266, 46.67902, -6.4213796), (17.041409, 46.67902, -5.5370893), (19.341476, 45.677273, -6.2844267), (19.341476, 45.677273, -6.2844267), (17.041409, 46.67902, -5.5370893), (17.307842, 46.67902, -4.6376224), (19.643871, 45.677273, -5.2635593), (19.643871, 45.677273, -5.2635593), (17.307842, 46.67902, -4.6376224), (17.526838, 46.67902, -3.7254443), (19.892424, 45.677273, -4.2282653), (19.892424, 45.677273, -4.2282653), (17.526838, 46.67902, -3.7254443), (17.697792, 46.67902, -2.8030548), (20.086452, 45.677273, -3.1813815), (20.086452, 45.677273, -3.1813815), (17.697792, 46.67902, -2.8030548), (17.820238, 46.67902, -1.8729825), (20.225426, 45.677273, -2.1257777), (20.225426, 45.677273, -2.1257777), (17.820238, 46.67902, -1.8729825), (17.89384, 46.67902, -0.93777645), (20.308962, 45.677273, -1.0643475), (20.308962, 45.677273, -1.0643475), (17.89384, 46.67902, -0.93777645), (17.918398, 46.67902, 0), (20.336832, 45.677273, 0), (17.918398, 46.67902, 0), (15.45085, 47.552826, 0), (15.429675, 47.552826, 0.808635), (17.89384, 46.67902, 0.93777645), (17.89384, 46.67902, 0.93777645), (15.429675, 47.552826, 0.808635), (15.366208, 47.552826, 1.6150535), (17.820238, 46.67902, 1.8729825), (17.820238, 46.67902, 1.8729825), (15.366208, 47.552826, 1.6150535), (15.260624, 47.552826, 2.4170454), (17.697792, 46.67902, 2.8030548), (17.697792, 46.67902, 2.8030548), (15.260624, 47.552826, 2.4170454), (15.113212, 47.552826, 3.2124124), (17.526838, 46.67902, 3.7254443), (17.526838, 46.67902, 3.7254443), (15.113212, 47.552826, 3.2124124), (14.924375, 47.552826, 3.998974), (17.307842, 46.67902, 4.6376224), (17.307842, 46.67902, 4.6376224), (14.924375, 47.552826, 3.998974), (14.694632, 47.552826, 4.774575), (17.041409, 46.67902, 5.5370893), (17.041409, 46.67902, 5.5370893), (14.694632, 47.552826, 4.774575), (14.424611, 47.552826, 5.5370893), (16.728266, 46.67902, 6.4213796), (16.728266, 46.67902, 6.4213796), (14.424611, 47.552826, 5.5370893), (14.115053, 47.552826, 6.2844267), (16.36927, 46.67902, 7.288069), (16.36927, 46.67902, 7.288069), (14.115053, 47.552826, 6.2844267), (13.766808, 47.552826, 7.014539), (15.965409, 46.67902, 8.134782), (15.965409, 46.67902, 8.134782), (13.766808, 47.552826, 7.014539), (13.380828, 47.552826, 7.725425), (15.517787, 46.67902, 8.959199), (15.517787, 46.67902, 8.959199), (13.380828, 47.552826, 7.725425), (12.958173, 47.552826, 8.415136), (15.027633, 46.67902, 9.759059), (15.027633, 46.67902, 9.759059), (12.958173, 47.552826, 8.415136), (12.5, 47.552826, 9.081781), (14.496288, 46.67902, 10.532169), (14.496288, 46.67902, 10.532169), (12.5, 47.552826, 9.081781), (12.0075655, 47.552826, 9.723535), (13.92521, 46.67902, 11.276413), (13.92521, 46.67902, 11.276413), (12.0075655, 47.552826, 9.723535), (11.482219, 47.552826, 10.338636), (13.315965, 46.67902, 11.989748), (13.315965, 46.67902, 11.989748), (11.482219, 47.552826, 10.338636), (10.925401, 47.552826, 10.925401), (12.67022, 46.67902, 12.67022), (12.67022, 46.67902, 12.67022), (10.925401, 47.552826, 10.925401), (10.338636, 47.552826, 11.482219), (11.989748, 46.67902, 13.315965), (11.989748, 46.67902, 13.315965), (10.338636, 47.552826, 11.482219), (9.723535, 47.552826, 12.0075655), (11.276413, 46.67902, 13.92521), (11.276413, 46.67902, 13.92521), (9.723535, 47.552826, 12.0075655), (9.081781, 47.552826, 12.5), (10.532169, 46.67902, 14.496288), (10.532169, 46.67902, 14.496288), (9.081781, 47.552826, 12.5), (8.415136, 47.552826, 12.958173), (9.759059, 46.67902, 15.027633), (9.759059, 46.67902, 15.027633), (8.415136, 47.552826, 12.958173), (7.725425, 47.552826, 13.380828), (8.959199, 46.67902, 15.517787), (8.959199, 46.67902, 15.517787), (7.725425, 47.552826, 13.380828), (7.014539, 47.552826, 13.766808), (8.134782, 46.67902, 15.965409), (8.134782, 46.67902, 15.965409), (7.014539, 47.552826, 13.766808), (6.2844267, 47.552826, 14.115053), (7.288069, 46.67902, 16.36927), (7.288069, 46.67902, 16.36927), (6.2844267, 47.552826, 14.115053), (5.5370893, 47.552826, 14.424611), (6.4213796, 46.67902, 16.728266), (6.4213796, 46.67902, 16.728266), (5.5370893, 47.552826, 14.424611), (4.774575, 47.552826, 14.694632), (5.5370893, 46.67902, 17.041409), (5.5370893, 46.67902, 17.041409), (4.774575, 47.552826, 14.694632), (3.998974, 47.552826, 14.924375), (4.6376224, 46.67902, 17.307842), (4.6376224, 46.67902, 17.307842), (3.998974, 47.552826, 14.924375), (3.2124124, 47.552826, 15.113212), (3.7254443, 46.67902, 17.526838), (3.7254443, 46.67902, 17.526838), (3.2124124, 47.552826, 15.113212), (2.4170454, 47.552826, 15.260624), (2.8030548, 46.67902, 17.697792), (2.8030548, 46.67902, 17.697792), (2.4170454, 47.552826, 15.260624), (1.6150535, 47.552826, 15.366208), (1.8729825, 46.67902, 17.820238), (1.8729825, 46.67902, 17.820238), (1.6150535, 47.552826, 15.366208), (0.808635, 47.552826, 15.429675), (0.93777645, 46.67902, 17.89384), (0.93777645, 46.67902, 17.89384), (0.808635, 47.552826, 15.429675), (9.460917e-16, 47.552826, 15.45085), (1.0971854e-15, 46.67902, 17.918398), (1.0971854e-15, 46.67902, 17.918398), (9.460917e-16, 47.552826, 15.45085), (-0.808635, 47.552826, 15.429675), (-0.93777645, 46.67902, 17.89384), (-0.93777645, 46.67902, 17.89384), (-0.808635, 47.552826, 15.429675), (-1.6150535, 47.552826, 15.366208), (-1.8729825, 46.67902, 17.820238), (-1.8729825, 46.67902, 17.820238), (-1.6150535, 47.552826, 15.366208), (-2.4170454, 47.552826, 15.260624), (-2.8030548, 46.67902, 17.697792), (-2.8030548, 46.67902, 17.697792), (-2.4170454, 47.552826, 15.260624), (-3.2124124, 47.552826, 15.113212), (-3.7254443, 46.67902, 17.526838), (-3.7254443, 46.67902, 17.526838), (-3.2124124, 47.552826, 15.113212), (-3.998974, 47.552826, 14.924375), (-4.6376224, 46.67902, 17.307842), (-4.6376224, 46.67902, 17.307842), (-3.998974, 47.552826, 14.924375), (-4.774575, 47.552826, 14.694632), (-5.5370893, 46.67902, 17.041409), (-5.5370893, 46.67902, 17.041409), (-4.774575, 47.552826, 14.694632), (-5.5370893, 47.552826, 14.424611), (-6.4213796, 46.67902, 16.728266), (-6.4213796, 46.67902, 16.728266), (-5.5370893, 47.552826, 14.424611), (-6.2844267, 47.552826, 14.115053), (-7.288069, 46.67902, 16.36927), (-7.288069, 46.67902, 16.36927), (-6.2844267, 47.552826, 14.115053), (-7.014539, 47.552826, 13.766808), (-8.134782, 46.67902, 15.965409), (-8.134782, 46.67902, 15.965409), (-7.014539, 47.552826, 13.766808), (-7.725425, 47.552826, 13.380828), (-8.959199, 46.67902, 15.517787), (-8.959199, 46.67902, 15.517787), (-7.725425, 47.552826, 13.380828), (-8.415136, 47.552826, 12.958173), (-9.759059, 46.67902, 15.027633), (-9.759059, 46.67902, 15.027633), (-8.415136, 47.552826, 12.958173), (-9.081781, 47.552826, 12.5), (-10.532169, 46.67902, 14.496288), (-10.532169, 46.67902, 14.496288), (-9.081781, 47.552826, 12.5), (-9.723535, 47.552826, 12.0075655), (-11.276413, 46.67902, 13.92521), (-11.276413, 46.67902, 13.92521), (-9.723535, 47.552826, 12.0075655), (-10.338636, 47.552826, 11.482219), (-11.989748, 46.67902, 13.315965), (-11.989748, 46.67902, 13.315965), (-10.338636, 47.552826, 11.482219), (-10.925401, 47.552826, 10.925401), (-12.67022, 46.67902, 12.67022), (-12.67022, 46.67902, 12.67022), (-10.925401, 47.552826, 10.925401), (-11.482219, 47.552826, 10.338636), (-13.315965, 46.67902, 11.989748), (-13.315965, 46.67902, 11.989748), (-11.482219, 47.552826, 10.338636), (-12.0075655, 47.552826, 9.723535), (-13.92521, 46.67902, 11.276413), (-13.92521, 46.67902, 11.276413), (-12.0075655, 47.552826, 9.723535), (-12.5, 47.552826, 9.081781), (-14.496288, 46.67902, 10.532169), (-14.496288, 46.67902, 10.532169), (-12.5, 47.552826, 9.081781), (-12.958173, 47.552826, 8.415136), (-15.027633, 46.67902, 9.759059), (-15.027633, 46.67902, 9.759059), (-12.958173, 47.552826, 8.415136), (-13.380828, 47.552826, 7.725425), (-15.517787, 46.67902, 8.959199), (-15.517787, 46.67902, 8.959199), (-13.380828, 47.552826, 7.725425), (-13.766808, 47.552826, 7.014539), (-15.965409, 46.67902, 8.134782), (-15.965409, 46.67902, 8.134782), (-13.766808, 47.552826, 7.014539), (-14.115053, 47.552826, 6.2844267), (-16.36927, 46.67902, 7.288069), (-16.36927, 46.67902, 7.288069), (-14.115053, 47.552826, 6.2844267), (-14.424611, 47.552826, 5.5370893), (-16.728266, 46.67902, 6.4213796), (-16.728266, 46.67902, 6.4213796), (-14.424611, 47.552826, 5.5370893), (-14.694632, 47.552826, 4.774575), (-17.041409, 46.67902, 5.5370893), (-17.041409, 46.67902, 5.5370893), (-14.694632, 47.552826, 4.774575), (-14.924375, 47.552826, 3.998974), (-17.307842, 46.67902, 4.6376224), (-17.307842, 46.67902, 4.6376224), (-14.924375, 47.552826, 3.998974), (-15.113212, 47.552826, 3.2124124), (-17.526838, 46.67902, 3.7254443), (-17.526838, 46.67902, 3.7254443), (-15.113212, 47.552826, 3.2124124), (-15.260624, 47.552826, 2.4170454), (-17.697792, 46.67902, 2.8030548), (-17.697792, 46.67902, 2.8030548), (-15.260624, 47.552826, 2.4170454), (-15.366208, 47.552826, 1.6150535), (-17.820238, 46.67902, 1.8729825), (-17.820238, 46.67902, 1.8729825), (-15.366208, 47.552826, 1.6150535), (-15.429675, 47.552826, 0.808635), (-17.89384, 46.67902, 0.93777645), (-17.89384, 46.67902, 0.93777645), (-15.429675, 47.552826, 0.808635), (-15.45085, 47.552826, 1.8921833e-15), (-17.918398, 46.67902, 2.1943708e-15), (-17.918398, 46.67902, 2.1943708e-15), (-15.45085, 47.552826, 1.8921833e-15), (-15.429675, 47.552826, -0.808635), (-17.89384, 46.67902, -0.93777645), (-17.89384, 46.67902, -0.93777645), (-15.429675, 47.552826, -0.808635), (-15.366208, 47.552826, -1.6150535), (-17.820238, 46.67902, -1.8729825), (-17.820238, 46.67902, -1.8729825), (-15.366208, 47.552826, -1.6150535), (-15.260624, 47.552826, -2.4170454), (-17.697792, 46.67902, -2.8030548), (-17.697792, 46.67902, -2.8030548), (-15.260624, 47.552826, -2.4170454), (-15.113212, 47.552826, -3.2124124), (-17.526838, 46.67902, -3.7254443), (-17.526838, 46.67902, -3.7254443), (-15.113212, 47.552826, -3.2124124), (-14.924375, 47.552826, -3.998974), (-17.307842, 46.67902, -4.6376224), (-17.307842, 46.67902, -4.6376224), (-14.924375, 47.552826, -3.998974), (-14.694632, 47.552826, -4.774575), (-17.041409, 46.67902, -5.5370893), (-17.041409, 46.67902, -5.5370893), (-14.694632, 47.552826, -4.774575), (-14.424611, 47.552826, -5.5370893), (-16.728266, 46.67902, -6.4213796), (-16.728266, 46.67902, -6.4213796), (-14.424611, 47.552826, -5.5370893), (-14.115053, 47.552826, -6.2844267), (-16.36927, 46.67902, -7.288069), (-16.36927, 46.67902, -7.288069), (-14.115053, 47.552826, -6.2844267), (-13.766808, 47.552826, -7.014539), (-15.965409, 46.67902, -8.134782), (-15.965409, 46.67902, -8.134782), (-13.766808, 47.552826, -7.014539), (-13.380828, 47.552826, -7.725425), (-15.517787, 46.67902, -8.959199), (-15.517787, 46.67902, -8.959199), (-13.380828, 47.552826, -7.725425), (-12.958173, 47.552826, -8.415136), (-15.027633, 46.67902, -9.759059), (-15.027633, 46.67902, -9.759059), (-12.958173, 47.552826, -8.415136), (-12.5, 47.552826, -9.081781), (-14.496288, 46.67902, -10.532169), (-14.496288, 46.67902, -10.532169), (-12.5, 47.552826, -9.081781), (-12.0075655, 47.552826, -9.723535), (-13.92521, 46.67902, -11.276413), (-13.92521, 46.67902, -11.276413), (-12.0075655, 47.552826, -9.723535), (-11.482219, 47.552826, -10.338636), (-13.315965, 46.67902, -11.989748), (-13.315965, 46.67902, -11.989748), (-11.482219, 47.552826, -10.338636), (-10.925401, 47.552826, -10.925401), (-12.67022, 46.67902, -12.67022), (-12.67022, 46.67902, -12.67022), (-10.925401, 47.552826, -10.925401), (-10.338636, 47.552826, -11.482219), (-11.989748, 46.67902, -13.315965), (-11.989748, 46.67902, -13.315965), (-10.338636, 47.552826, -11.482219), (-9.723535, 47.552826, -12.0075655), (-11.276413, 46.67902, -13.92521), (-11.276413, 46.67902, -13.92521), (-9.723535, 47.552826, -12.0075655), (-9.081781, 47.552826, -12.5), (-10.532169, 46.67902, -14.496288), (-10.532169, 46.67902, -14.496288), (-9.081781, 47.552826, -12.5), (-8.415136, 47.552826, -12.958173), (-9.759059, 46.67902, -15.027633), (-9.759059, 46.67902, -15.027633), (-8.415136, 47.552826, -12.958173), (-7.725425, 47.552826, -13.380828), (-8.959199, 46.67902, -15.517787), (-8.959199, 46.67902, -15.517787), (-7.725425, 47.552826, -13.380828), (-7.014539, 47.552826, -13.766808), (-8.134782, 46.67902, -15.965409), (-8.134782, 46.67902, -15.965409), (-7.014539, 47.552826, -13.766808), (-6.2844267, 47.552826, -14.115053), (-7.288069, 46.67902, -16.36927), (-7.288069, 46.67902, -16.36927), (-6.2844267, 47.552826, -14.115053), (-5.5370893, 47.552826, -14.424611), (-6.4213796, 46.67902, -16.728266), (-6.4213796, 46.67902, -16.728266), (-5.5370893, 47.552826, -14.424611), (-4.774575, 47.552826, -14.694632), (-5.5370893, 46.67902, -17.041409), (-5.5370893, 46.67902, -17.041409), (-4.774575, 47.552826, -14.694632), (-3.998974, 47.552826, -14.924375), (-4.6376224, 46.67902, -17.307842), (-4.6376224, 46.67902, -17.307842), (-3.998974, 47.552826, -14.924375), (-3.2124124, 47.552826, -15.113212), (-3.7254443, 46.67902, -17.526838), (-3.7254443, 46.67902, -17.526838), (-3.2124124, 47.552826, -15.113212), (-2.4170454, 47.552826, -15.260624), (-2.8030548, 46.67902, -17.697792), (-2.8030548, 46.67902, -17.697792), (-2.4170454, 47.552826, -15.260624), (-1.6150535, 47.552826, -15.366208), (-1.8729825, 46.67902, -17.820238), (-1.8729825, 46.67902, -17.820238), (-1.6150535, 47.552826, -15.366208), (-0.808635, 47.552826, -15.429675), (-0.93777645, 46.67902, -17.89384), (-0.93777645, 46.67902, -17.89384), (-0.808635, 47.552826, -15.429675), (-2.838275e-15, 47.552826, -15.45085), (-3.2915563e-15, 46.67902, -17.918398), (-3.2915563e-15, 46.67902, -17.918398), (-2.838275e-15, 47.552826, -15.45085), (0.808635, 47.552826, -15.429675), (0.93777645, 46.67902, -17.89384), (0.93777645, 46.67902, -17.89384), (0.808635, 47.552826, -15.429675), (1.6150535, 47.552826, -15.366208), (1.8729825, 46.67902, -17.820238), (1.8729825, 46.67902, -17.820238), (1.6150535, 47.552826, -15.366208), (2.4170454, 47.552826, -15.260624), (2.8030548, 46.67902, -17.697792), (2.8030548, 46.67902, -17.697792), (2.4170454, 47.552826, -15.260624), (3.2124124, 47.552826, -15.113212), (3.7254443, 46.67902, -17.526838), (3.7254443, 46.67902, -17.526838), (3.2124124, 47.552826, -15.113212), (3.998974, 47.552826, -14.924375), (4.6376224, 46.67902, -17.307842), (4.6376224, 46.67902, -17.307842), (3.998974, 47.552826, -14.924375), (4.774575, 47.552826, -14.694632), (5.5370893, 46.67902, -17.041409), (5.5370893, 46.67902, -17.041409), (4.774575, 47.552826, -14.694632), (5.5370893, 47.552826, -14.424611), (6.4213796, 46.67902, -16.728266), (6.4213796, 46.67902, -16.728266), (5.5370893, 47.552826, -14.424611), (6.2844267, 47.552826, -14.115053), (7.288069, 46.67902, -16.36927), (7.288069, 46.67902, -16.36927), (6.2844267, 47.552826, -14.115053), (7.014539, 47.552826, -13.766808), (8.134782, 46.67902, -15.965409), (8.134782, 46.67902, -15.965409), (7.014539, 47.552826, -13.766808), (7.725425, 47.552826, -13.380828), (8.959199, 46.67902, -15.517787), (8.959199, 46.67902, -15.517787), (7.725425, 47.552826, -13.380828), (8.415136, 47.552826, -12.958173), (9.759059, 46.67902, -15.027633), (9.759059, 46.67902, -15.027633), (8.415136, 47.552826, -12.958173), (9.081781, 47.552826, -12.5), (10.532169, 46.67902, -14.496288), (10.532169, 46.67902, -14.496288), (9.081781, 47.552826, -12.5), (9.723535, 47.552826, -12.0075655), (11.276413, 46.67902, -13.92521), (11.276413, 46.67902, -13.92521), (9.723535, 47.552826, -12.0075655), (10.338636, 47.552826, -11.482219), (11.989748, 46.67902, -13.315965), (11.989748, 46.67902, -13.315965), (10.338636, 47.552826, -11.482219), (10.925401, 47.552826, -10.925401), (12.67022, 46.67902, -12.67022), (12.67022, 46.67902, -12.67022), (10.925401, 47.552826, -10.925401), (11.482219, 47.552826, -10.338636), (13.315965, 46.67902, -11.989748), (13.315965, 46.67902, -11.989748), (11.482219, 47.552826, -10.338636), (12.0075655, 47.552826, -9.723535), (13.92521, 46.67902, -11.276413), (13.92521, 46.67902, -11.276413), (12.0075655, 47.552826, -9.723535), (12.5, 47.552826, -9.081781), (14.496288, 46.67902, -10.532169), (14.496288, 46.67902, -10.532169), (12.5, 47.552826, -9.081781), (12.958173, 47.552826, -8.415136), (15.027633, 46.67902, -9.759059), (15.027633, 46.67902, -9.759059), (12.958173, 47.552826, -8.415136), (13.380828, 47.552826, -7.725425), (15.517787, 46.67902, -8.959199), (15.517787, 46.67902, -8.959199), (13.380828, 47.552826, -7.725425), (13.766808, 47.552826, -7.014539), (15.965409, 46.67902, -8.134782), (15.965409, 46.67902, -8.134782), (13.766808, 47.552826, -7.014539), (14.115053, 47.552826, -6.2844267), (16.36927, 46.67902, -7.288069), (16.36927, 46.67902, -7.288069), (14.115053, 47.552826, -6.2844267), (14.424611, 47.552826, -5.5370893), (16.728266, 46.67902, -6.4213796), (16.728266, 46.67902, -6.4213796), (14.424611, 47.552826, -5.5370893), (14.694632, 47.552826, -4.774575), (17.041409, 46.67902, -5.5370893), (17.041409, 46.67902, -5.5370893), (14.694632, 47.552826, -4.774575), (14.924375, 47.552826, -3.998974), (17.307842, 46.67902, -4.6376224), (17.307842, 46.67902, -4.6376224), (14.924375, 47.552826, -3.998974), (15.113212, 47.552826, -3.2124124), (17.526838, 46.67902, -3.7254443), (17.526838, 46.67902, -3.7254443), (15.113212, 47.552826, -3.2124124), (15.260624, 47.552826, -2.4170454), (17.697792, 46.67902, -2.8030548), (17.697792, 46.67902, -2.8030548), (15.260624, 47.552826, -2.4170454), (15.366208, 47.552826, -1.6150535), (17.820238, 46.67902, -1.8729825), (17.820238, 46.67902, -1.8729825), (15.366208, 47.552826, -1.6150535), (15.429675, 47.552826, -0.808635), (17.89384, 46.67902, -0.93777645), (17.89384, 46.67902, -0.93777645), (15.429675, 47.552826, -0.808635), (15.45085, 47.552826, 0), (17.918398, 46.67902, 0), (15.45085, 47.552826, 0), (12.940952, 48.29629, 0), (12.923217, 48.29629, 0.6772771), (15.429675, 47.552826, 0.808635), (15.429675, 47.552826, 0.808635), (12.923217, 48.29629, 0.6772771), (12.87006, 48.29629, 1.3526978), (15.366208, 47.552826, 1.6150535), (15.366208, 47.552826, 1.6150535), (12.87006, 48.29629, 1.3526978), (12.781628, 48.29629, 2.024411), (15.260624, 47.552826, 2.4170454), (15.260624, 47.552826, 2.4170454), (12.781628, 48.29629, 2.024411), (12.658161, 48.29629, 2.6905754), (15.113212, 47.552826, 3.2124124), (15.113212, 47.552826, 3.2124124), (12.658161, 48.29629, 2.6905754), (12.5, 48.29629, 3.349365), (14.924375, 47.552826, 3.998974), (14.924375, 47.552826, 3.998974), (12.5, 48.29629, 3.349365), (12.307577, 48.29629, 3.998974), (14.694632, 47.552826, 4.774575), (14.694632, 47.552826, 4.774575), (12.307577, 48.29629, 3.998974), (12.08142, 48.29629, 4.6376224), (14.424611, 47.552826, 5.5370893), (14.424611, 47.552826, 5.5370893), (12.08142, 48.29629, 4.6376224), (11.822148, 48.29629, 5.2635593), (14.115053, 47.552826, 6.2844267), (14.115053, 47.552826, 6.2844267), (11.822148, 48.29629, 5.2635593), (11.530473, 48.29629, 5.8750696), (13.766808, 47.552826, 7.014539), (13.766808, 47.552826, 7.014539), (11.530473, 48.29629, 5.8750696), (11.207193, 48.29629, 6.470476), (13.380828, 47.552826, 7.725425), (13.380828, 47.552826, 7.725425), (11.207193, 48.29629, 6.470476), (10.853196, 48.29629, 7.0481477), (12.958173, 47.552826, 8.415136), (12.958173, 47.552826, 8.415136), (10.853196, 48.29629, 7.0481477), (10.46945, 48.29629, 7.606501), (12.5, 47.552826, 9.081781), (12.5, 47.552826, 9.081781), (10.46945, 48.29629, 7.606501), (10.057009, 48.29629, 8.144005), (12.0075655, 47.552826, 9.723535), (12.0075655, 47.552826, 9.723535), (10.057009, 48.29629, 8.144005), (9.617002, 48.29629, 8.659187), (11.482219, 47.552826, 10.338636), (11.482219, 47.552826, 10.338636), (9.617002, 48.29629, 8.659187), (9.150635, 48.29629, 9.150635), (10.925401, 47.552826, 10.925401), (10.925401, 47.552826, 10.925401), (9.150635, 48.29629, 9.150635), (8.659187, 48.29629, 9.617002), (10.338636, 47.552826, 11.482219), (10.338636, 47.552826, 11.482219), (8.659187, 48.29629, 9.617002), (8.144005, 48.29629, 10.057009), (9.723535, 47.552826, 12.0075655), (9.723535, 47.552826, 12.0075655), (8.144005, 48.29629, 10.057009), (7.606501, 48.29629, 10.46945), (9.081781, 47.552826, 12.5), (9.081781, 47.552826, 12.5), (7.606501, 48.29629, 10.46945), (7.0481477, 48.29629, 10.853196), (8.415136, 47.552826, 12.958173), (8.415136, 47.552826, 12.958173), (7.0481477, 48.29629, 10.853196), (6.470476, 48.29629, 11.207193), (7.725425, 47.552826, 13.380828), (7.725425, 47.552826, 13.380828), (6.470476, 48.29629, 11.207193), (5.8750696, 48.29629, 11.530473), (7.014539, 47.552826, 13.766808), (7.014539, 47.552826, 13.766808), (5.8750696, 48.29629, 11.530473), (5.2635593, 48.29629, 11.822148), (6.2844267, 47.552826, 14.115053), (6.2844267, 47.552826, 14.115053), (5.2635593, 48.29629, 11.822148), (4.6376224, 48.29629, 12.08142), (5.5370893, 47.552826, 14.424611), (5.5370893, 47.552826, 14.424611), (4.6376224, 48.29629, 12.08142), (3.998974, 48.29629, 12.307577), (4.774575, 47.552826, 14.694632), (4.774575, 47.552826, 14.694632), (3.998974, 48.29629, 12.307577), (3.349365, 48.29629, 12.5), (3.998974, 47.552826, 14.924375), (3.998974, 47.552826, 14.924375), (3.349365, 48.29629, 12.5), (2.6905754, 48.29629, 12.658161), (3.2124124, 47.552826, 15.113212), (3.2124124, 47.552826, 15.113212), (2.6905754, 48.29629, 12.658161), (2.024411, 48.29629, 12.781628), (2.4170454, 47.552826, 15.260624), (2.4170454, 47.552826, 15.260624), (2.024411, 48.29629, 12.781628), (1.3526978, 48.29629, 12.87006), (1.6150535, 47.552826, 15.366208), (1.6150535, 47.552826, 15.366208), (1.3526978, 48.29629, 12.87006), (0.6772771, 48.29629, 12.923217), (0.808635, 47.552826, 15.429675), (0.808635, 47.552826, 15.429675), (0.6772771, 48.29629, 12.923217), (7.924048e-16, 48.29629, 12.940952), (9.460917e-16, 47.552826, 15.45085), (9.460917e-16, 47.552826, 15.45085), (7.924048e-16, 48.29629, 12.940952), (-0.6772771, 48.29629, 12.923217), (-0.808635, 47.552826, 15.429675), (-0.808635, 47.552826, 15.429675), (-0.6772771, 48.29629, 12.923217), (-1.3526978, 48.29629, 12.87006), (-1.6150535, 47.552826, 15.366208), (-1.6150535, 47.552826, 15.366208), (-1.3526978, 48.29629, 12.87006), (-2.024411, 48.29629, 12.781628), (-2.4170454, 47.552826, 15.260624), (-2.4170454, 47.552826, 15.260624), (-2.024411, 48.29629, 12.781628), (-2.6905754, 48.29629, 12.658161), (-3.2124124, 47.552826, 15.113212), (-3.2124124, 47.552826, 15.113212), (-2.6905754, 48.29629, 12.658161), (-3.349365, 48.29629, 12.5), (-3.998974, 47.552826, 14.924375), (-3.998974, 47.552826, 14.924375), (-3.349365, 48.29629, 12.5), (-3.998974, 48.29629, 12.307577), (-4.774575, 47.552826, 14.694632), (-4.774575, 47.552826, 14.694632), (-3.998974, 48.29629, 12.307577), (-4.6376224, 48.29629, 12.08142), (-5.5370893, 47.552826, 14.424611), (-5.5370893, 47.552826, 14.424611), (-4.6376224, 48.29629, 12.08142), (-5.2635593, 48.29629, 11.822148), (-6.2844267, 47.552826, 14.115053), (-6.2844267, 47.552826, 14.115053), (-5.2635593, 48.29629, 11.822148), (-5.8750696, 48.29629, 11.530473), (-7.014539, 47.552826, 13.766808), (-7.014539, 47.552826, 13.766808), (-5.8750696, 48.29629, 11.530473), (-6.470476, 48.29629, 11.207193), (-7.725425, 47.552826, 13.380828), (-7.725425, 47.552826, 13.380828), (-6.470476, 48.29629, 11.207193), (-7.0481477, 48.29629, 10.853196), (-8.415136, 47.552826, 12.958173), (-8.415136, 47.552826, 12.958173), (-7.0481477, 48.29629, 10.853196), (-7.606501, 48.29629, 10.46945), (-9.081781, 47.552826, 12.5), (-9.081781, 47.552826, 12.5), (-7.606501, 48.29629, 10.46945), (-8.144005, 48.29629, 10.057009), (-9.723535, 47.552826, 12.0075655), (-9.723535, 47.552826, 12.0075655), (-8.144005, 48.29629, 10.057009), (-8.659187, 48.29629, 9.617002), (-10.338636, 47.552826, 11.482219), (-10.338636, 47.552826, 11.482219), (-8.659187, 48.29629, 9.617002), (-9.150635, 48.29629, 9.150635), (-10.925401, 47.552826, 10.925401), (-10.925401, 47.552826, 10.925401), (-9.150635, 48.29629, 9.150635), (-9.617002, 48.29629, 8.659187), (-11.482219, 47.552826, 10.338636), (-11.482219, 47.552826, 10.338636), (-9.617002, 48.29629, 8.659187), (-10.057009, 48.29629, 8.144005), (-12.0075655, 47.552826, 9.723535), (-12.0075655, 47.552826, 9.723535), (-10.057009, 48.29629, 8.144005), (-10.46945, 48.29629, 7.606501), (-12.5, 47.552826, 9.081781), (-12.5, 47.552826, 9.081781), (-10.46945, 48.29629, 7.606501), (-10.853196, 48.29629, 7.0481477), (-12.958173, 47.552826, 8.415136), (-12.958173, 47.552826, 8.415136), (-10.853196, 48.29629, 7.0481477), (-11.207193, 48.29629, 6.470476), (-13.380828, 47.552826, 7.725425), (-13.380828, 47.552826, 7.725425), (-11.207193, 48.29629, 6.470476), (-11.530473, 48.29629, 5.8750696), (-13.766808, 47.552826, 7.014539), (-13.766808, 47.552826, 7.014539), (-11.530473, 48.29629, 5.8750696), (-11.822148, 48.29629, 5.2635593), (-14.115053, 47.552826, 6.2844267), (-14.115053, 47.552826, 6.2844267), (-11.822148, 48.29629, 5.2635593), (-12.08142, 48.29629, 4.6376224), (-14.424611, 47.552826, 5.5370893), (-14.424611, 47.552826, 5.5370893), (-12.08142, 48.29629, 4.6376224), (-12.307577, 48.29629, 3.998974), (-14.694632, 47.552826, 4.774575), (-14.694632, 47.552826, 4.774575), (-12.307577, 48.29629, 3.998974), (-12.5, 48.29629, 3.349365), (-14.924375, 47.552826, 3.998974), (-14.924375, 47.552826, 3.998974), (-12.5, 48.29629, 3.349365), (-12.658161, 48.29629, 2.6905754), (-15.113212, 47.552826, 3.2124124), (-15.113212, 47.552826, 3.2124124), (-12.658161, 48.29629, 2.6905754), (-12.781628, 48.29629, 2.024411), (-15.260624, 47.552826, 2.4170454), (-15.260624, 47.552826, 2.4170454), (-12.781628, 48.29629, 2.024411), (-12.87006, 48.29629, 1.3526978), (-15.366208, 47.552826, 1.6150535), (-15.366208, 47.552826, 1.6150535), (-12.87006, 48.29629, 1.3526978), (-12.923217, 48.29629, 0.6772771), (-15.429675, 47.552826, 0.808635), (-15.429675, 47.552826, 0.808635), (-12.923217, 48.29629, 0.6772771), (-12.940952, 48.29629, 1.5848095e-15), (-15.45085, 47.552826, 1.8921833e-15), (-15.45085, 47.552826, 1.8921833e-15), (-12.940952, 48.29629, 1.5848095e-15), (-12.923217, 48.29629, -0.6772771), (-15.429675, 47.552826, -0.808635), (-15.429675, 47.552826, -0.808635), (-12.923217, 48.29629, -0.6772771), (-12.87006, 48.29629, -1.3526978), (-15.366208, 47.552826, -1.6150535), (-15.366208, 47.552826, -1.6150535), (-12.87006, 48.29629, -1.3526978), (-12.781628, 48.29629, -2.024411), (-15.260624, 47.552826, -2.4170454), (-15.260624, 47.552826, -2.4170454), (-12.781628, 48.29629, -2.024411), (-12.658161, 48.29629, -2.6905754), (-15.113212, 47.552826, -3.2124124), (-15.113212, 47.552826, -3.2124124), (-12.658161, 48.29629, -2.6905754), (-12.5, 48.29629, -3.349365), (-14.924375, 47.552826, -3.998974), (-14.924375, 47.552826, -3.998974), (-12.5, 48.29629, -3.349365), (-12.307577, 48.29629, -3.998974), (-14.694632, 47.552826, -4.774575), (-14.694632, 47.552826, -4.774575), (-12.307577, 48.29629, -3.998974), (-12.08142, 48.29629, -4.6376224), (-14.424611, 47.552826, -5.5370893), (-14.424611, 47.552826, -5.5370893), (-12.08142, 48.29629, -4.6376224), (-11.822148, 48.29629, -5.2635593), (-14.115053, 47.552826, -6.2844267), (-14.115053, 47.552826, -6.2844267), (-11.822148, 48.29629, -5.2635593), (-11.530473, 48.29629, -5.8750696), (-13.766808, 47.552826, -7.014539), (-13.766808, 47.552826, -7.014539), (-11.530473, 48.29629, -5.8750696), (-11.207193, 48.29629, -6.470476), (-13.380828, 47.552826, -7.725425), (-13.380828, 47.552826, -7.725425), (-11.207193, 48.29629, -6.470476), (-10.853196, 48.29629, -7.0481477), (-12.958173, 47.552826, -8.415136), (-12.958173, 47.552826, -8.415136), (-10.853196, 48.29629, -7.0481477), (-10.46945, 48.29629, -7.606501), (-12.5, 47.552826, -9.081781), (-12.5, 47.552826, -9.081781), (-10.46945, 48.29629, -7.606501), (-10.057009, 48.29629, -8.144005), (-12.0075655, 47.552826, -9.723535), (-12.0075655, 47.552826, -9.723535), (-10.057009, 48.29629, -8.144005), (-9.617002, 48.29629, -8.659187), (-11.482219, 47.552826, -10.338636), (-11.482219, 47.552826, -10.338636), (-9.617002, 48.29629, -8.659187), (-9.150635, 48.29629, -9.150635), (-10.925401, 47.552826, -10.925401), (-10.925401, 47.552826, -10.925401), (-9.150635, 48.29629, -9.150635), (-8.659187, 48.29629, -9.617002), (-10.338636, 47.552826, -11.482219), (-10.338636, 47.552826, -11.482219), (-8.659187, 48.29629, -9.617002), (-8.144005, 48.29629, -10.057009), (-9.723535, 47.552826, -12.0075655), (-9.723535, 47.552826, -12.0075655), (-8.144005, 48.29629, -10.057009), (-7.606501, 48.29629, -10.46945), (-9.081781, 47.552826, -12.5), (-9.081781, 47.552826, -12.5), (-7.606501, 48.29629, -10.46945), (-7.0481477, 48.29629, -10.853196), (-8.415136, 47.552826, -12.958173), (-8.415136, 47.552826, -12.958173), (-7.0481477, 48.29629, -10.853196), (-6.470476, 48.29629, -11.207193), (-7.725425, 47.552826, -13.380828), (-7.725425, 47.552826, -13.380828), (-6.470476, 48.29629, -11.207193), (-5.8750696, 48.29629, -11.530473), (-7.014539, 47.552826, -13.766808), (-7.014539, 47.552826, -13.766808), (-5.8750696, 48.29629, -11.530473), (-5.2635593, 48.29629, -11.822148), (-6.2844267, 47.552826, -14.115053), (-6.2844267, 47.552826, -14.115053), (-5.2635593, 48.29629, -11.822148), (-4.6376224, 48.29629, -12.08142), (-5.5370893, 47.552826, -14.424611), (-5.5370893, 47.552826, -14.424611), (-4.6376224, 48.29629, -12.08142), (-3.998974, 48.29629, -12.307577), (-4.774575, 47.552826, -14.694632), (-4.774575, 47.552826, -14.694632), (-3.998974, 48.29629, -12.307577), (-3.349365, 48.29629, -12.5), (-3.998974, 47.552826, -14.924375), (-3.998974, 47.552826, -14.924375), (-3.349365, 48.29629, -12.5), (-2.6905754, 48.29629, -12.658161), (-3.2124124, 47.552826, -15.113212), (-3.2124124, 47.552826, -15.113212), (-2.6905754, 48.29629, -12.658161), (-2.024411, 48.29629, -12.781628), (-2.4170454, 47.552826, -15.260624), (-2.4170454, 47.552826, -15.260624), (-2.024411, 48.29629, -12.781628), (-1.3526978, 48.29629, -12.87006), (-1.6150535, 47.552826, -15.366208), (-1.6150535, 47.552826, -15.366208), (-1.3526978, 48.29629, -12.87006), (-0.6772771, 48.29629, -12.923217), (-0.808635, 47.552826, -15.429675), (-0.808635, 47.552826, -15.429675), (-0.6772771, 48.29629, -12.923217), (-2.3772143e-15, 48.29629, -12.940952), (-2.838275e-15, 47.552826, -15.45085), (-2.838275e-15, 47.552826, -15.45085), (-2.3772143e-15, 48.29629, -12.940952), (0.6772771, 48.29629, -12.923217), (0.808635, 47.552826, -15.429675), (0.808635, 47.552826, -15.429675), (0.6772771, 48.29629, -12.923217), (1.3526978, 48.29629, -12.87006), (1.6150535, 47.552826, -15.366208), (1.6150535, 47.552826, -15.366208), (1.3526978, 48.29629, -12.87006), (2.024411, 48.29629, -12.781628), (2.4170454, 47.552826, -15.260624), (2.4170454, 47.552826, -15.260624), (2.024411, 48.29629, -12.781628), (2.6905754, 48.29629, -12.658161), (3.2124124, 47.552826, -15.113212), (3.2124124, 47.552826, -15.113212), (2.6905754, 48.29629, -12.658161), (3.349365, 48.29629, -12.5), (3.998974, 47.552826, -14.924375), (3.998974, 47.552826, -14.924375), (3.349365, 48.29629, -12.5), (3.998974, 48.29629, -12.307577), (4.774575, 47.552826, -14.694632), (4.774575, 47.552826, -14.694632), (3.998974, 48.29629, -12.307577), (4.6376224, 48.29629, -12.08142), (5.5370893, 47.552826, -14.424611), (5.5370893, 47.552826, -14.424611), (4.6376224, 48.29629, -12.08142), (5.2635593, 48.29629, -11.822148), (6.2844267, 47.552826, -14.115053), (6.2844267, 47.552826, -14.115053), (5.2635593, 48.29629, -11.822148), (5.8750696, 48.29629, -11.530473), (7.014539, 47.552826, -13.766808), (7.014539, 47.552826, -13.766808), (5.8750696, 48.29629, -11.530473), (6.470476, 48.29629, -11.207193), (7.725425, 47.552826, -13.380828), (7.725425, 47.552826, -13.380828), (6.470476, 48.29629, -11.207193), (7.0481477, 48.29629, -10.853196), (8.415136, 47.552826, -12.958173), (8.415136, 47.552826, -12.958173), (7.0481477, 48.29629, -10.853196), (7.606501, 48.29629, -10.46945), (9.081781, 47.552826, -12.5), (9.081781, 47.552826, -12.5), (7.606501, 48.29629, -10.46945), (8.144005, 48.29629, -10.057009), (9.723535, 47.552826, -12.0075655), (9.723535, 47.552826, -12.0075655), (8.144005, 48.29629, -10.057009), (8.659187, 48.29629, -9.617002), (10.338636, 47.552826, -11.482219), (10.338636, 47.552826, -11.482219), (8.659187, 48.29629, -9.617002), (9.150635, 48.29629, -9.150635), (10.925401, 47.552826, -10.925401), (10.925401, 47.552826, -10.925401), (9.150635, 48.29629, -9.150635), (9.617002, 48.29629, -8.659187), (11.482219, 47.552826, -10.338636), (11.482219, 47.552826, -10.338636), (9.617002, 48.29629, -8.659187), (10.057009, 48.29629, -8.144005), (12.0075655, 47.552826, -9.723535), (12.0075655, 47.552826, -9.723535), (10.057009, 48.29629, -8.144005), (10.46945, 48.29629, -7.606501), (12.5, 47.552826, -9.081781), (12.5, 47.552826, -9.081781), (10.46945, 48.29629, -7.606501), (10.853196, 48.29629, -7.0481477), (12.958173, 47.552826, -8.415136), (12.958173, 47.552826, -8.415136), (10.853196, 48.29629, -7.0481477), (11.207193, 48.29629, -6.470476), (13.380828, 47.552826, -7.725425), (13.380828, 47.552826, -7.725425), (11.207193, 48.29629, -6.470476), (11.530473, 48.29629, -5.8750696), (13.766808, 47.552826, -7.014539), (13.766808, 47.552826, -7.014539), (11.530473, 48.29629, -5.8750696), (11.822148, 48.29629, -5.2635593), (14.115053, 47.552826, -6.2844267), (14.115053, 47.552826, -6.2844267), (11.822148, 48.29629, -5.2635593), (12.08142, 48.29629, -4.6376224), (14.424611, 47.552826, -5.5370893), (14.424611, 47.552826, -5.5370893), (12.08142, 48.29629, -4.6376224), (12.307577, 48.29629, -3.998974), (14.694632, 47.552826, -4.774575), (14.694632, 47.552826, -4.774575), (12.307577, 48.29629, -3.998974), (12.5, 48.29629, -3.349365), (14.924375, 47.552826, -3.998974), (14.924375, 47.552826, -3.998974), (12.5, 48.29629, -3.349365), (12.658161, 48.29629, -2.6905754), (15.113212, 47.552826, -3.2124124), (15.113212, 47.552826, -3.2124124), (12.658161, 48.29629, -2.6905754), (12.781628, 48.29629, -2.024411), (15.260624, 47.552826, -2.4170454), (15.260624, 47.552826, -2.4170454), (12.781628, 48.29629, -2.024411), (12.87006, 48.29629, -1.3526978), (15.366208, 47.552826, -1.6150535), (15.366208, 47.552826, -1.6150535), (12.87006, 48.29629, -1.3526978), (12.923217, 48.29629, -0.6772771), (15.429675, 47.552826, -0.808635), (15.429675, 47.552826, -0.808635), (12.923217, 48.29629, -0.6772771), (12.940952, 48.29629, 0), (15.45085, 47.552826, 0), (12.940952, 48.29629, 0), (10.395584, 48.90738, 0), (10.381338, 48.90738, 0.54406285), (12.923217, 48.29629, 0.6772771), (12.923217, 48.29629, 0.6772771), (10.381338, 48.90738, 0.54406285), (10.338636, 48.90738, 1.0866345), (12.87006, 48.29629, 1.3526978), (12.87006, 48.29629, 1.3526978), (10.338636, 48.90738, 1.0866345), (10.267597, 48.90738, 1.6262277), (12.781628, 48.29629, 2.024411), (12.781628, 48.29629, 2.024411), (10.267597, 48.90738, 1.6262277), (10.168416, 48.90738, 2.1613636), (12.658161, 48.29629, 2.6905754), (12.658161, 48.29629, 2.6905754), (10.168416, 48.90738, 2.1613636), (10.041364, 48.90738, 2.6905754), (12.5, 48.29629, 3.349365), (12.5, 48.29629, 3.349365), (10.041364, 48.90738, 2.6905754), (9.886788, 48.90738, 3.2124124), (12.307577, 48.29629, 3.998974), (12.307577, 48.29629, 3.998974), (9.886788, 48.90738, 3.2124124), (9.705114, 48.90738, 3.7254443), (12.08142, 48.29629, 4.6376224), (12.08142, 48.29629, 4.6376224), (9.705114, 48.90738, 3.7254443), (9.496839, 48.90738, 4.2282653), (11.822148, 48.29629, 5.2635593), (11.822148, 48.29629, 5.2635593), (9.496839, 48.90738, 4.2282653), (9.262533, 48.90738, 4.7194967), (11.530473, 48.29629, 5.8750696), (11.530473, 48.29629, 5.8750696), (9.262533, 48.90738, 4.7194967), (9.00284, 48.90738, 5.197792), (11.207193, 48.29629, 6.470476), (11.207193, 48.29629, 6.470476), (9.00284, 48.90738, 5.197792), (8.718471, 48.90738, 5.661841), (10.853196, 48.29629, 7.0481477), (10.853196, 48.29629, 7.0481477), (8.718471, 48.90738, 5.661841), (8.410205, 48.90738, 6.110371), (10.46945, 48.29629, 7.606501), (10.46945, 48.29629, 7.606501), (8.410205, 48.90738, 6.110371), (8.078887, 48.90738, 6.5421534), (10.057009, 48.29629, 8.144005), (10.057009, 48.29629, 8.144005), (8.078887, 48.90738, 6.5421534), (7.725425, 48.90738, 6.9560037), (9.617002, 48.29629, 8.659187), (9.617002, 48.29629, 8.659187), (7.725425, 48.90738, 6.9560037), (7.350788, 48.90738, 7.350788), (9.150635, 48.29629, 9.150635), (9.150635, 48.29629, 9.150635), (7.350788, 48.90738, 7.350788), (6.9560037, 48.90738, 7.725425), (8.659187, 48.29629, 9.617002), (8.659187, 48.29629, 9.617002), (6.9560037, 48.90738, 7.725425), (6.5421534, 48.90738, 8.078887), (8.144005, 48.29629, 10.057009), (8.144005, 48.29629, 10.057009), (6.5421534, 48.90738, 8.078887), (6.110371, 48.90738, 8.410205), (7.606501, 48.29629, 10.46945), (7.606501, 48.29629, 10.46945), (6.110371, 48.90738, 8.410205), (5.661841, 48.90738, 8.718471), (7.0481477, 48.29629, 10.853196), (7.0481477, 48.29629, 10.853196), (5.661841, 48.90738, 8.718471), (5.197792, 48.90738, 9.00284), (6.470476, 48.29629, 11.207193), (6.470476, 48.29629, 11.207193), (5.197792, 48.90738, 9.00284), (4.7194967, 48.90738, 9.262533), (5.8750696, 48.29629, 11.530473), (5.8750696, 48.29629, 11.530473), (4.7194967, 48.90738, 9.262533), (4.2282653, 48.90738, 9.496839), (5.2635593, 48.29629, 11.822148), (5.2635593, 48.29629, 11.822148), (4.2282653, 48.90738, 9.496839), (3.7254443, 48.90738, 9.705114), (4.6376224, 48.29629, 12.08142), (4.6376224, 48.29629, 12.08142), (3.7254443, 48.90738, 9.705114), (3.2124124, 48.90738, 9.886788), (3.998974, 48.29629, 12.307577), (3.998974, 48.29629, 12.307577), (3.2124124, 48.90738, 9.886788), (2.6905754, 48.90738, 10.041364), (3.349365, 48.29629, 12.5), (3.349365, 48.29629, 12.5), (2.6905754, 48.90738, 10.041364), (2.1613636, 48.90738, 10.168416), (2.6905754, 48.29629, 12.658161), (2.6905754, 48.29629, 12.658161), (2.1613636, 48.90738, 10.168416), (1.6262277, 48.90738, 10.267597), (2.024411, 48.29629, 12.781628), (2.024411, 48.29629, 12.781628), (1.6262277, 48.90738, 10.267597), (1.0866345, 48.90738, 10.338636), (1.3526978, 48.29629, 12.87006), (1.3526978, 48.29629, 12.87006), (1.0866345, 48.90738, 10.338636), (0.54406285, 48.90738, 10.381338), (0.6772771, 48.29629, 12.923217), (0.6772771, 48.29629, 12.923217), (0.54406285, 48.90738, 10.381338), (6.3654595e-16, 48.90738, 10.395584), (7.924048e-16, 48.29629, 12.940952), (7.924048e-16, 48.29629, 12.940952), (6.3654595e-16, 48.90738, 10.395584), (-0.54406285, 48.90738, 10.381338), (-0.6772771, 48.29629, 12.923217), (-0.6772771, 48.29629, 12.923217), (-0.54406285, 48.90738, 10.381338), (-1.0866345, 48.90738, 10.338636), (-1.3526978, 48.29629, 12.87006), (-1.3526978, 48.29629, 12.87006), (-1.0866345, 48.90738, 10.338636), (-1.6262277, 48.90738, 10.267597), (-2.024411, 48.29629, 12.781628), (-2.024411, 48.29629, 12.781628), (-1.6262277, 48.90738, 10.267597), (-2.1613636, 48.90738, 10.168416), (-2.6905754, 48.29629, 12.658161), (-2.6905754, 48.29629, 12.658161), (-2.1613636, 48.90738, 10.168416), (-2.6905754, 48.90738, 10.041364), (-3.349365, 48.29629, 12.5), (-3.349365, 48.29629, 12.5), (-2.6905754, 48.90738, 10.041364), (-3.2124124, 48.90738, 9.886788), (-3.998974, 48.29629, 12.307577), (-3.998974, 48.29629, 12.307577), (-3.2124124, 48.90738, 9.886788), (-3.7254443, 48.90738, 9.705114), (-4.6376224, 48.29629, 12.08142), (-4.6376224, 48.29629, 12.08142), (-3.7254443, 48.90738, 9.705114), (-4.2282653, 48.90738, 9.496839), (-5.2635593, 48.29629, 11.822148), (-5.2635593, 48.29629, 11.822148), (-4.2282653, 48.90738, 9.496839), (-4.7194967, 48.90738, 9.262533), (-5.8750696, 48.29629, 11.530473), (-5.8750696, 48.29629, 11.530473), (-4.7194967, 48.90738, 9.262533), (-5.197792, 48.90738, 9.00284), (-6.470476, 48.29629, 11.207193), (-6.470476, 48.29629, 11.207193), (-5.197792, 48.90738, 9.00284), (-5.661841, 48.90738, 8.718471), (-7.0481477, 48.29629, 10.853196), (-7.0481477, 48.29629, 10.853196), (-5.661841, 48.90738, 8.718471), (-6.110371, 48.90738, 8.410205), (-7.606501, 48.29629, 10.46945), (-7.606501, 48.29629, 10.46945), (-6.110371, 48.90738, 8.410205), (-6.5421534, 48.90738, 8.078887), (-8.144005, 48.29629, 10.057009), (-8.144005, 48.29629, 10.057009), (-6.5421534, 48.90738, 8.078887), (-6.9560037, 48.90738, 7.725425), (-8.659187, 48.29629, 9.617002), (-8.659187, 48.29629, 9.617002), (-6.9560037, 48.90738, 7.725425), (-7.350788, 48.90738, 7.350788), (-9.150635, 48.29629, 9.150635), (-9.150635, 48.29629, 9.150635), (-7.350788, 48.90738, 7.350788), (-7.725425, 48.90738, 6.9560037), (-9.617002, 48.29629, 8.659187), (-9.617002, 48.29629, 8.659187), (-7.725425, 48.90738, 6.9560037), (-8.078887, 48.90738, 6.5421534), (-10.057009, 48.29629, 8.144005), (-10.057009, 48.29629, 8.144005), (-8.078887, 48.90738, 6.5421534), (-8.410205, 48.90738, 6.110371), (-10.46945, 48.29629, 7.606501), (-10.46945, 48.29629, 7.606501), (-8.410205, 48.90738, 6.110371), (-8.718471, 48.90738, 5.661841), (-10.853196, 48.29629, 7.0481477), (-10.853196, 48.29629, 7.0481477), (-8.718471, 48.90738, 5.661841), (-9.00284, 48.90738, 5.197792), (-11.207193, 48.29629, 6.470476), (-11.207193, 48.29629, 6.470476), (-9.00284, 48.90738, 5.197792), (-9.262533, 48.90738, 4.7194967), (-11.530473, 48.29629, 5.8750696), (-11.530473, 48.29629, 5.8750696), (-9.262533, 48.90738, 4.7194967), (-9.496839, 48.90738, 4.2282653), (-11.822148, 48.29629, 5.2635593), (-11.822148, 48.29629, 5.2635593), (-9.496839, 48.90738, 4.2282653), (-9.705114, 48.90738, 3.7254443), (-12.08142, 48.29629, 4.6376224), (-12.08142, 48.29629, 4.6376224), (-9.705114, 48.90738, 3.7254443), (-9.886788, 48.90738, 3.2124124), (-12.307577, 48.29629, 3.998974), (-12.307577, 48.29629, 3.998974), (-9.886788, 48.90738, 3.2124124), (-10.041364, 48.90738, 2.6905754), (-12.5, 48.29629, 3.349365), (-12.5, 48.29629, 3.349365), (-10.041364, 48.90738, 2.6905754), (-10.168416, 48.90738, 2.1613636), (-12.658161, 48.29629, 2.6905754), (-12.658161, 48.29629, 2.6905754), (-10.168416, 48.90738, 2.1613636), (-10.267597, 48.90738, 1.6262277), (-12.781628, 48.29629, 2.024411), (-12.781628, 48.29629, 2.024411), (-10.267597, 48.90738, 1.6262277), (-10.338636, 48.90738, 1.0866345), (-12.87006, 48.29629, 1.3526978), (-12.87006, 48.29629, 1.3526978), (-10.338636, 48.90738, 1.0866345), (-10.381338, 48.90738, 0.54406285), (-12.923217, 48.29629, 0.6772771), (-12.923217, 48.29629, 0.6772771), (-10.381338, 48.90738, 0.54406285), (-10.395584, 48.90738, 1.2730919e-15), (-12.940952, 48.29629, 1.5848095e-15), (-12.940952, 48.29629, 1.5848095e-15), (-10.395584, 48.90738, 1.2730919e-15), (-10.381338, 48.90738, -0.54406285), (-12.923217, 48.29629, -0.6772771), (-12.923217, 48.29629, -0.6772771), (-10.381338, 48.90738, -0.54406285), (-10.338636, 48.90738, -1.0866345), (-12.87006, 48.29629, -1.3526978), (-12.87006, 48.29629, -1.3526978), (-10.338636, 48.90738, -1.0866345), (-10.267597, 48.90738, -1.6262277), (-12.781628, 48.29629, -2.024411), (-12.781628, 48.29629, -2.024411), (-10.267597, 48.90738, -1.6262277), (-10.168416, 48.90738, -2.1613636), (-12.658161, 48.29629, -2.6905754), (-12.658161, 48.29629, -2.6905754), (-10.168416, 48.90738, -2.1613636), (-10.041364, 48.90738, -2.6905754), (-12.5, 48.29629, -3.349365), (-12.5, 48.29629, -3.349365), (-10.041364, 48.90738, -2.6905754), (-9.886788, 48.90738, -3.2124124), (-12.307577, 48.29629, -3.998974), (-12.307577, 48.29629, -3.998974), (-9.886788, 48.90738, -3.2124124), (-9.705114, 48.90738, -3.7254443), (-12.08142, 48.29629, -4.6376224), (-12.08142, 48.29629, -4.6376224), (-9.705114, 48.90738, -3.7254443), (-9.496839, 48.90738, -4.2282653), (-11.822148, 48.29629, -5.2635593), (-11.822148, 48.29629, -5.2635593), (-9.496839, 48.90738, -4.2282653), (-9.262533, 48.90738, -4.7194967), (-11.530473, 48.29629, -5.8750696), (-11.530473, 48.29629, -5.8750696), (-9.262533, 48.90738, -4.7194967), (-9.00284, 48.90738, -5.197792), (-11.207193, 48.29629, -6.470476), (-11.207193, 48.29629, -6.470476), (-9.00284, 48.90738, -5.197792), (-8.718471, 48.90738, -5.661841), (-10.853196, 48.29629, -7.0481477), (-10.853196, 48.29629, -7.0481477), (-8.718471, 48.90738, -5.661841), (-8.410205, 48.90738, -6.110371), (-10.46945, 48.29629, -7.606501), (-10.46945, 48.29629, -7.606501), (-8.410205, 48.90738, -6.110371), (-8.078887, 48.90738, -6.5421534), (-10.057009, 48.29629, -8.144005), (-10.057009, 48.29629, -8.144005), (-8.078887, 48.90738, -6.5421534), (-7.725425, 48.90738, -6.9560037), (-9.617002, 48.29629, -8.659187), (-9.617002, 48.29629, -8.659187), (-7.725425, 48.90738, -6.9560037), (-7.350788, 48.90738, -7.350788), (-9.150635, 48.29629, -9.150635), (-9.150635, 48.29629, -9.150635), (-7.350788, 48.90738, -7.350788), (-6.9560037, 48.90738, -7.725425), (-8.659187, 48.29629, -9.617002), (-8.659187, 48.29629, -9.617002), (-6.9560037, 48.90738, -7.725425), (-6.5421534, 48.90738, -8.078887), (-8.144005, 48.29629, -10.057009), (-8.144005, 48.29629, -10.057009), (-6.5421534, 48.90738, -8.078887), (-6.110371, 48.90738, -8.410205), (-7.606501, 48.29629, -10.46945), (-7.606501, 48.29629, -10.46945), (-6.110371, 48.90738, -8.410205), (-5.661841, 48.90738, -8.718471), (-7.0481477, 48.29629, -10.853196), (-7.0481477, 48.29629, -10.853196), (-5.661841, 48.90738, -8.718471), (-5.197792, 48.90738, -9.00284), (-6.470476, 48.29629, -11.207193), (-6.470476, 48.29629, -11.207193), (-5.197792, 48.90738, -9.00284), (-4.7194967, 48.90738, -9.262533), (-5.8750696, 48.29629, -11.530473), (-5.8750696, 48.29629, -11.530473), (-4.7194967, 48.90738, -9.262533), (-4.2282653, 48.90738, -9.496839), (-5.2635593, 48.29629, -11.822148), (-5.2635593, 48.29629, -11.822148), (-4.2282653, 48.90738, -9.496839), (-3.7254443, 48.90738, -9.705114), (-4.6376224, 48.29629, -12.08142), (-4.6376224, 48.29629, -12.08142), (-3.7254443, 48.90738, -9.705114), (-3.2124124, 48.90738, -9.886788), (-3.998974, 48.29629, -12.307577), (-3.998974, 48.29629, -12.307577), (-3.2124124, 48.90738, -9.886788), (-2.6905754, 48.90738, -10.041364), (-3.349365, 48.29629, -12.5), (-3.349365, 48.29629, -12.5), (-2.6905754, 48.90738, -10.041364), (-2.1613636, 48.90738, -10.168416), (-2.6905754, 48.29629, -12.658161), (-2.6905754, 48.29629, -12.658161), (-2.1613636, 48.90738, -10.168416), (-1.6262277, 48.90738, -10.267597), (-2.024411, 48.29629, -12.781628), (-2.024411, 48.29629, -12.781628), (-1.6262277, 48.90738, -10.267597), (-1.0866345, 48.90738, -10.338636), (-1.3526978, 48.29629, -12.87006), (-1.3526978, 48.29629, -12.87006), (-1.0866345, 48.90738, -10.338636), (-0.54406285, 48.90738, -10.381338), (-0.6772771, 48.29629, -12.923217), (-0.6772771, 48.29629, -12.923217), (-0.54406285, 48.90738, -10.381338), (-1.909638e-15, 48.90738, -10.395584), (-2.3772143e-15, 48.29629, -12.940952), (-2.3772143e-15, 48.29629, -12.940952), (-1.909638e-15, 48.90738, -10.395584), (0.54406285, 48.90738, -10.381338), (0.6772771, 48.29629, -12.923217), (0.6772771, 48.29629, -12.923217), (0.54406285, 48.90738, -10.381338), (1.0866345, 48.90738, -10.338636), (1.3526978, 48.29629, -12.87006), (1.3526978, 48.29629, -12.87006), (1.0866345, 48.90738, -10.338636), (1.6262277, 48.90738, -10.267597), (2.024411, 48.29629, -12.781628), (2.024411, 48.29629, -12.781628), (1.6262277, 48.90738, -10.267597), (2.1613636, 48.90738, -10.168416), (2.6905754, 48.29629, -12.658161), (2.6905754, 48.29629, -12.658161), (2.1613636, 48.90738, -10.168416), (2.6905754, 48.90738, -10.041364), (3.349365, 48.29629, -12.5), (3.349365, 48.29629, -12.5), (2.6905754, 48.90738, -10.041364), (3.2124124, 48.90738, -9.886788), (3.998974, 48.29629, -12.307577), (3.998974, 48.29629, -12.307577), (3.2124124, 48.90738, -9.886788), (3.7254443, 48.90738, -9.705114), (4.6376224, 48.29629, -12.08142), (4.6376224, 48.29629, -12.08142), (3.7254443, 48.90738, -9.705114), (4.2282653, 48.90738, -9.496839), (5.2635593, 48.29629, -11.822148), (5.2635593, 48.29629, -11.822148), (4.2282653, 48.90738, -9.496839), (4.7194967, 48.90738, -9.262533), (5.8750696, 48.29629, -11.530473), (5.8750696, 48.29629, -11.530473), (4.7194967, 48.90738, -9.262533), (5.197792, 48.90738, -9.00284), (6.470476, 48.29629, -11.207193), (6.470476, 48.29629, -11.207193), (5.197792, 48.90738, -9.00284), (5.661841, 48.90738, -8.718471), (7.0481477, 48.29629, -10.853196), (7.0481477, 48.29629, -10.853196), (5.661841, 48.90738, -8.718471), (6.110371, 48.90738, -8.410205), (7.606501, 48.29629, -10.46945), (7.606501, 48.29629, -10.46945), (6.110371, 48.90738, -8.410205), (6.5421534, 48.90738, -8.078887), (8.144005, 48.29629, -10.057009), (8.144005, 48.29629, -10.057009), (6.5421534, 48.90738, -8.078887), (6.9560037, 48.90738, -7.725425), (8.659187, 48.29629, -9.617002), (8.659187, 48.29629, -9.617002), (6.9560037, 48.90738, -7.725425), (7.350788, 48.90738, -7.350788), (9.150635, 48.29629, -9.150635), (9.150635, 48.29629, -9.150635), (7.350788, 48.90738, -7.350788), (7.725425, 48.90738, -6.9560037), (9.617002, 48.29629, -8.659187), (9.617002, 48.29629, -8.659187), (7.725425, 48.90738, -6.9560037), (8.078887, 48.90738, -6.5421534), (10.057009, 48.29629, -8.144005), (10.057009, 48.29629, -8.144005), (8.078887, 48.90738, -6.5421534), (8.410205, 48.90738, -6.110371), (10.46945, 48.29629, -7.606501), (10.46945, 48.29629, -7.606501), (8.410205, 48.90738, -6.110371), (8.718471, 48.90738, -5.661841), (10.853196, 48.29629, -7.0481477), (10.853196, 48.29629, -7.0481477), (8.718471, 48.90738, -5.661841), (9.00284, 48.90738, -5.197792), (11.207193, 48.29629, -6.470476), (11.207193, 48.29629, -6.470476), (9.00284, 48.90738, -5.197792), (9.262533, 48.90738, -4.7194967), (11.530473, 48.29629, -5.8750696), (11.530473, 48.29629, -5.8750696), (9.262533, 48.90738, -4.7194967), (9.496839, 48.90738, -4.2282653), (11.822148, 48.29629, -5.2635593), (11.822148, 48.29629, -5.2635593), (9.496839, 48.90738, -4.2282653), (9.705114, 48.90738, -3.7254443), (12.08142, 48.29629, -4.6376224), (12.08142, 48.29629, -4.6376224), (9.705114, 48.90738, -3.7254443), (9.886788, 48.90738, -3.2124124), (12.307577, 48.29629, -3.998974), (12.307577, 48.29629, -3.998974), (9.886788, 48.90738, -3.2124124), (10.041364, 48.90738, -2.6905754), (12.5, 48.29629, -3.349365), (12.5, 48.29629, -3.349365), (10.041364, 48.90738, -2.6905754), (10.168416, 48.90738, -2.1613636), (12.658161, 48.29629, -2.6905754), (12.658161, 48.29629, -2.6905754), (10.168416, 48.90738, -2.1613636), (10.267597, 48.90738, -1.6262277), (12.781628, 48.29629, -2.024411), (12.781628, 48.29629, -2.024411), (10.267597, 48.90738, -1.6262277), (10.338636, 48.90738, -1.0866345), (12.87006, 48.29629, -1.3526978), (12.87006, 48.29629, -1.3526978), (10.338636, 48.90738, -1.0866345), (10.381338, 48.90738, -0.54406285), (12.923217, 48.29629, -0.6772771), (12.923217, 48.29629, -0.6772771), (10.381338, 48.90738, -0.54406285), (10.395584, 48.90738, 0), (12.940952, 48.29629, 0), (10.395584, 48.90738, 0), (7.8217235, 49.38442, 0), (7.8110037, 49.38442, 0.40935737), (10.381338, 48.90738, 0.54406285), (10.381338, 48.90738, 0.54406285), (7.8110037, 49.38442, 0.40935737), (7.778875, 49.38442, 0.81759274), (10.338636, 48.90738, 1.0866345), (10.338636, 48.90738, 1.0866345), (7.778875, 49.38442, 0.81759274), (7.725425, 49.38442, 1.223587), (10.267597, 48.90738, 1.6262277), (10.267597, 48.90738, 1.6262277), (7.725425, 49.38442, 1.223587), (7.6507998, 49.38442, 1.6262277), (10.168416, 48.90738, 2.1613636), (10.168416, 48.90738, 2.1613636), (7.6507998, 49.38442, 1.6262277), (7.5552044, 49.38442, 2.024411), (10.041364, 48.90738, 2.6905754), (10.041364, 48.90738, 2.6905754), (7.5552044, 49.38442, 2.024411), (7.438901, 49.38442, 2.4170454), (9.886788, 48.90738, 3.2124124), (9.886788, 48.90738, 3.2124124), (7.438901, 49.38442, 2.4170454), (7.302208, 49.38442, 2.8030548), (9.705114, 48.90738, 3.7254443), (9.705114, 48.90738, 3.7254443), (7.302208, 49.38442, 2.8030548), (7.1454997, 49.38442, 3.1813815), (9.496839, 48.90738, 4.2282653), (9.496839, 48.90738, 4.2282653), (7.1454997, 49.38442, 3.1813815), (6.9692063, 49.38442, 3.550988), (9.262533, 48.90738, 4.7194967), (9.262533, 48.90738, 4.7194967), (6.9692063, 49.38442, 3.550988), (6.773811, 49.38442, 3.9108617), (9.00284, 48.90738, 5.197792), (9.00284, 48.90738, 5.197792), (6.773811, 49.38442, 3.9108617), (6.5598493, 49.38442, 4.260016), (8.718471, 48.90738, 5.661841), (8.718471, 48.90738, 5.661841), (6.5598493, 49.38442, 4.260016), (6.327907, 49.38442, 4.5974936), (8.410205, 48.90738, 6.110371), (8.410205, 48.90738, 6.110371), (6.327907, 49.38442, 4.5974936), (6.0786204, 49.38442, 4.92237), (8.078887, 48.90738, 6.5421534), (8.078887, 48.90738, 6.5421534), (6.0786204, 49.38442, 4.92237), (5.812673, 49.38442, 5.2337546), (7.725425, 48.90738, 6.9560037), (7.725425, 48.90738, 6.9560037), (5.812673, 49.38442, 5.2337546), (5.5307937, 49.38442, 5.5307937), (7.350788, 48.90738, 7.350788), (7.350788, 48.90738, 7.350788), (5.5307937, 49.38442, 5.5307937), (5.2337546, 49.38442, 5.812673), (6.9560037, 48.90738, 7.725425), (6.9560037, 48.90738, 7.725425), (5.2337546, 49.38442, 5.812673), (4.92237, 49.38442, 6.0786204), (6.5421534, 48.90738, 8.078887), (6.5421534, 48.90738, 8.078887), (4.92237, 49.38442, 6.0786204), (4.5974936, 49.38442, 6.327907), (6.110371, 48.90738, 8.410205), (6.110371, 48.90738, 8.410205), (4.5974936, 49.38442, 6.327907), (4.260016, 49.38442, 6.5598493), (5.661841, 48.90738, 8.718471), (5.661841, 48.90738, 8.718471), (4.260016, 49.38442, 6.5598493), (3.9108617, 49.38442, 6.773811), (5.197792, 48.90738, 9.00284), (5.197792, 48.90738, 9.00284), (3.9108617, 49.38442, 6.773811), (3.550988, 49.38442, 6.9692063), (4.7194967, 48.90738, 9.262533), (4.7194967, 48.90738, 9.262533), (3.550988, 49.38442, 6.9692063), (3.1813815, 49.38442, 7.1454997), (4.2282653, 48.90738, 9.496839), (4.2282653, 48.90738, 9.496839), (3.1813815, 49.38442, 7.1454997), (2.8030548, 49.38442, 7.302208), (3.7254443, 48.90738, 9.705114), (3.7254443, 48.90738, 9.705114), (2.8030548, 49.38442, 7.302208), (2.4170454, 49.38442, 7.438901), (3.2124124, 48.90738, 9.886788), (3.2124124, 48.90738, 9.886788), (2.4170454, 49.38442, 7.438901), (2.024411, 49.38442, 7.5552044), (2.6905754, 48.90738, 10.041364), (2.6905754, 48.90738, 10.041364), (2.024411, 49.38442, 7.5552044), (1.6262277, 49.38442, 7.6507998), (2.1613636, 48.90738, 10.168416), (2.1613636, 48.90738, 10.168416), (1.6262277, 49.38442, 7.6507998), (1.223587, 49.38442, 7.725425), (1.6262277, 48.90738, 10.267597), (1.6262277, 48.90738, 10.267597), (1.223587, 49.38442, 7.725425), (0.81759274, 49.38442, 7.778875), (1.0866345, 48.90738, 10.338636), (1.0866345, 48.90738, 10.338636), (0.81759274, 49.38442, 7.778875), (0.40935737, 49.38442, 7.8110037), (0.54406285, 48.90738, 10.381338), (0.54406285, 48.90738, 10.381338), (0.40935737, 49.38442, 7.8110037), (4.789424e-16, 49.38442, 7.8217235), (6.3654595e-16, 48.90738, 10.395584), (6.3654595e-16, 48.90738, 10.395584), (4.789424e-16, 49.38442, 7.8217235), (-0.40935737, 49.38442, 7.8110037), (-0.54406285, 48.90738, 10.381338), (-0.54406285, 48.90738, 10.381338), (-0.40935737, 49.38442, 7.8110037), (-0.81759274, 49.38442, 7.778875), (-1.0866345, 48.90738, 10.338636), (-1.0866345, 48.90738, 10.338636), (-0.81759274, 49.38442, 7.778875), (-1.223587, 49.38442, 7.725425), (-1.6262277, 48.90738, 10.267597), (-1.6262277, 48.90738, 10.267597), (-1.223587, 49.38442, 7.725425), (-1.6262277, 49.38442, 7.6507998), (-2.1613636, 48.90738, 10.168416), (-2.1613636, 48.90738, 10.168416), (-1.6262277, 49.38442, 7.6507998), (-2.024411, 49.38442, 7.5552044), (-2.6905754, 48.90738, 10.041364), (-2.6905754, 48.90738, 10.041364), (-2.024411, 49.38442, 7.5552044), (-2.4170454, 49.38442, 7.438901), (-3.2124124, 48.90738, 9.886788), (-3.2124124, 48.90738, 9.886788), (-2.4170454, 49.38442, 7.438901), (-2.8030548, 49.38442, 7.302208), (-3.7254443, 48.90738, 9.705114), (-3.7254443, 48.90738, 9.705114), (-2.8030548, 49.38442, 7.302208), (-3.1813815, 49.38442, 7.1454997), (-4.2282653, 48.90738, 9.496839), (-4.2282653, 48.90738, 9.496839), (-3.1813815, 49.38442, 7.1454997), (-3.550988, 49.38442, 6.9692063), (-4.7194967, 48.90738, 9.262533), (-4.7194967, 48.90738, 9.262533), (-3.550988, 49.38442, 6.9692063), (-3.9108617, 49.38442, 6.773811), (-5.197792, 48.90738, 9.00284), (-5.197792, 48.90738, 9.00284), (-3.9108617, 49.38442, 6.773811), (-4.260016, 49.38442, 6.5598493), (-5.661841, 48.90738, 8.718471), (-5.661841, 48.90738, 8.718471), (-4.260016, 49.38442, 6.5598493), (-4.5974936, 49.38442, 6.327907), (-6.110371, 48.90738, 8.410205), (-6.110371, 48.90738, 8.410205), (-4.5974936, 49.38442, 6.327907), (-4.92237, 49.38442, 6.0786204), (-6.5421534, 48.90738, 8.078887), (-6.5421534, 48.90738, 8.078887), (-4.92237, 49.38442, 6.0786204), (-5.2337546, 49.38442, 5.812673), (-6.9560037, 48.90738, 7.725425), (-6.9560037, 48.90738, 7.725425), (-5.2337546, 49.38442, 5.812673), (-5.5307937, 49.38442, 5.5307937), (-7.350788, 48.90738, 7.350788), (-7.350788, 48.90738, 7.350788), (-5.5307937, 49.38442, 5.5307937), (-5.812673, 49.38442, 5.2337546), (-7.725425, 48.90738, 6.9560037), (-7.725425, 48.90738, 6.9560037), (-5.812673, 49.38442, 5.2337546), (-6.0786204, 49.38442, 4.92237), (-8.078887, 48.90738, 6.5421534), (-8.078887, 48.90738, 6.5421534), (-6.0786204, 49.38442, 4.92237), (-6.327907, 49.38442, 4.5974936), (-8.410205, 48.90738, 6.110371), (-8.410205, 48.90738, 6.110371), (-6.327907, 49.38442, 4.5974936), (-6.5598493, 49.38442, 4.260016), (-8.718471, 48.90738, 5.661841), (-8.718471, 48.90738, 5.661841), (-6.5598493, 49.38442, 4.260016), (-6.773811, 49.38442, 3.9108617), (-9.00284, 48.90738, 5.197792), (-9.00284, 48.90738, 5.197792), (-6.773811, 49.38442, 3.9108617), (-6.9692063, 49.38442, 3.550988), (-9.262533, 48.90738, 4.7194967), (-9.262533, 48.90738, 4.7194967), (-6.9692063, 49.38442, 3.550988), (-7.1454997, 49.38442, 3.1813815), (-9.496839, 48.90738, 4.2282653), (-9.496839, 48.90738, 4.2282653), (-7.1454997, 49.38442, 3.1813815), (-7.302208, 49.38442, 2.8030548), (-9.705114, 48.90738, 3.7254443), (-9.705114, 48.90738, 3.7254443), (-7.302208, 49.38442, 2.8030548), (-7.438901, 49.38442, 2.4170454), (-9.886788, 48.90738, 3.2124124), (-9.886788, 48.90738, 3.2124124), (-7.438901, 49.38442, 2.4170454), (-7.5552044, 49.38442, 2.024411), (-10.041364, 48.90738, 2.6905754), (-10.041364, 48.90738, 2.6905754), (-7.5552044, 49.38442, 2.024411), (-7.6507998, 49.38442, 1.6262277), (-10.168416, 48.90738, 2.1613636), (-10.168416, 48.90738, 2.1613636), (-7.6507998, 49.38442, 1.6262277), (-7.725425, 49.38442, 1.223587), (-10.267597, 48.90738, 1.6262277), (-10.267597, 48.90738, 1.6262277), (-7.725425, 49.38442, 1.223587), (-7.778875, 49.38442, 0.81759274), (-10.338636, 48.90738, 1.0866345), (-10.338636, 48.90738, 1.0866345), (-7.778875, 49.38442, 0.81759274), (-7.8110037, 49.38442, 0.40935737), (-10.381338, 48.90738, 0.54406285), (-10.381338, 48.90738, 0.54406285), (-7.8110037, 49.38442, 0.40935737), (-7.8217235, 49.38442, 9.578848e-16), (-10.395584, 48.90738, 1.2730919e-15), (-10.395584, 48.90738, 1.2730919e-15), (-7.8217235, 49.38442, 9.578848e-16), (-7.8110037, 49.38442, -0.40935737), (-10.381338, 48.90738, -0.54406285), (-10.381338, 48.90738, -0.54406285), (-7.8110037, 49.38442, -0.40935737), (-7.778875, 49.38442, -0.81759274), (-10.338636, 48.90738, -1.0866345), (-10.338636, 48.90738, -1.0866345), (-7.778875, 49.38442, -0.81759274), (-7.725425, 49.38442, -1.223587), (-10.267597, 48.90738, -1.6262277), (-10.267597, 48.90738, -1.6262277), (-7.725425, 49.38442, -1.223587), (-7.6507998, 49.38442, -1.6262277), (-10.168416, 48.90738, -2.1613636), (-10.168416, 48.90738, -2.1613636), (-7.6507998, 49.38442, -1.6262277), (-7.5552044, 49.38442, -2.024411), (-10.041364, 48.90738, -2.6905754), (-10.041364, 48.90738, -2.6905754), (-7.5552044, 49.38442, -2.024411), (-7.438901, 49.38442, -2.4170454), (-9.886788, 48.90738, -3.2124124), (-9.886788, 48.90738, -3.2124124), (-7.438901, 49.38442, -2.4170454), (-7.302208, 49.38442, -2.8030548), (-9.705114, 48.90738, -3.7254443), (-9.705114, 48.90738, -3.7254443), (-7.302208, 49.38442, -2.8030548), (-7.1454997, 49.38442, -3.1813815), (-9.496839, 48.90738, -4.2282653), (-9.496839, 48.90738, -4.2282653), (-7.1454997, 49.38442, -3.1813815), (-6.9692063, 49.38442, -3.550988), (-9.262533, 48.90738, -4.7194967), (-9.262533, 48.90738, -4.7194967), (-6.9692063, 49.38442, -3.550988), (-6.773811, 49.38442, -3.9108617), (-9.00284, 48.90738, -5.197792), (-9.00284, 48.90738, -5.197792), (-6.773811, 49.38442, -3.9108617), (-6.5598493, 49.38442, -4.260016), (-8.718471, 48.90738, -5.661841), (-8.718471, 48.90738, -5.661841), (-6.5598493, 49.38442, -4.260016), (-6.327907, 49.38442, -4.5974936), (-8.410205, 48.90738, -6.110371), (-8.410205, 48.90738, -6.110371), (-6.327907, 49.38442, -4.5974936), (-6.0786204, 49.38442, -4.92237), (-8.078887, 48.90738, -6.5421534), (-8.078887, 48.90738, -6.5421534), (-6.0786204, 49.38442, -4.92237), (-5.812673, 49.38442, -5.2337546), (-7.725425, 48.90738, -6.9560037), (-7.725425, 48.90738, -6.9560037), (-5.812673, 49.38442, -5.2337546), (-5.5307937, 49.38442, -5.5307937), (-7.350788, 48.90738, -7.350788), (-7.350788, 48.90738, -7.350788), (-5.5307937, 49.38442, -5.5307937), (-5.2337546, 49.38442, -5.812673), (-6.9560037, 48.90738, -7.725425), (-6.9560037, 48.90738, -7.725425), (-5.2337546, 49.38442, -5.812673), (-4.92237, 49.38442, -6.0786204), (-6.5421534, 48.90738, -8.078887), (-6.5421534, 48.90738, -8.078887), (-4.92237, 49.38442, -6.0786204), (-4.5974936, 49.38442, -6.327907), (-6.110371, 48.90738, -8.410205), (-6.110371, 48.90738, -8.410205), (-4.5974936, 49.38442, -6.327907), (-4.260016, 49.38442, -6.5598493), (-5.661841, 48.90738, -8.718471), (-5.661841, 48.90738, -8.718471), (-4.260016, 49.38442, -6.5598493), (-3.9108617, 49.38442, -6.773811), (-5.197792, 48.90738, -9.00284), (-5.197792, 48.90738, -9.00284), (-3.9108617, 49.38442, -6.773811), (-3.550988, 49.38442, -6.9692063), (-4.7194967, 48.90738, -9.262533), (-4.7194967, 48.90738, -9.262533), (-3.550988, 49.38442, -6.9692063), (-3.1813815, 49.38442, -7.1454997), (-4.2282653, 48.90738, -9.496839), (-4.2282653, 48.90738, -9.496839), (-3.1813815, 49.38442, -7.1454997), (-2.8030548, 49.38442, -7.302208), (-3.7254443, 48.90738, -9.705114), (-3.7254443, 48.90738, -9.705114), (-2.8030548, 49.38442, -7.302208), (-2.4170454, 49.38442, -7.438901), (-3.2124124, 48.90738, -9.886788), (-3.2124124, 48.90738, -9.886788), (-2.4170454, 49.38442, -7.438901), (-2.024411, 49.38442, -7.5552044), (-2.6905754, 48.90738, -10.041364), (-2.6905754, 48.90738, -10.041364), (-2.024411, 49.38442, -7.5552044), (-1.6262277, 49.38442, -7.6507998), (-2.1613636, 48.90738, -10.168416), (-2.1613636, 48.90738, -10.168416), (-1.6262277, 49.38442, -7.6507998), (-1.223587, 49.38442, -7.725425), (-1.6262277, 48.90738, -10.267597), (-1.6262277, 48.90738, -10.267597), (-1.223587, 49.38442, -7.725425), (-0.81759274, 49.38442, -7.778875), (-1.0866345, 48.90738, -10.338636), (-1.0866345, 48.90738, -10.338636), (-0.81759274, 49.38442, -7.778875), (-0.40935737, 49.38442, -7.8110037), (-0.54406285, 48.90738, -10.381338), (-0.54406285, 48.90738, -10.381338), (-0.40935737, 49.38442, -7.8110037), (-1.4368273e-15, 49.38442, -7.8217235), (-1.909638e-15, 48.90738, -10.395584), (-1.909638e-15, 48.90738, -10.395584), (-1.4368273e-15, 49.38442, -7.8217235), (0.40935737, 49.38442, -7.8110037), (0.54406285, 48.90738, -10.381338), (0.54406285, 48.90738, -10.381338), (0.40935737, 49.38442, -7.8110037), (0.81759274, 49.38442, -7.778875), (1.0866345, 48.90738, -10.338636), (1.0866345, 48.90738, -10.338636), (0.81759274, 49.38442, -7.778875), (1.223587, 49.38442, -7.725425), (1.6262277, 48.90738, -10.267597), (1.6262277, 48.90738, -10.267597), (1.223587, 49.38442, -7.725425), (1.6262277, 49.38442, -7.6507998), (2.1613636, 48.90738, -10.168416), (2.1613636, 48.90738, -10.168416), (1.6262277, 49.38442, -7.6507998), (2.024411, 49.38442, -7.5552044), (2.6905754, 48.90738, -10.041364), (2.6905754, 48.90738, -10.041364), (2.024411, 49.38442, -7.5552044), (2.4170454, 49.38442, -7.438901), (3.2124124, 48.90738, -9.886788), (3.2124124, 48.90738, -9.886788), (2.4170454, 49.38442, -7.438901), (2.8030548, 49.38442, -7.302208), (3.7254443, 48.90738, -9.705114), (3.7254443, 48.90738, -9.705114), (2.8030548, 49.38442, -7.302208), (3.1813815, 49.38442, -7.1454997), (4.2282653, 48.90738, -9.496839), (4.2282653, 48.90738, -9.496839), (3.1813815, 49.38442, -7.1454997), (3.550988, 49.38442, -6.9692063), (4.7194967, 48.90738, -9.262533), (4.7194967, 48.90738, -9.262533), (3.550988, 49.38442, -6.9692063), (3.9108617, 49.38442, -6.773811), (5.197792, 48.90738, -9.00284), (5.197792, 48.90738, -9.00284), (3.9108617, 49.38442, -6.773811), (4.260016, 49.38442, -6.5598493), (5.661841, 48.90738, -8.718471), (5.661841, 48.90738, -8.718471), (4.260016, 49.38442, -6.5598493), (4.5974936, 49.38442, -6.327907), (6.110371, 48.90738, -8.410205), (6.110371, 48.90738, -8.410205), (4.5974936, 49.38442, -6.327907), (4.92237, 49.38442, -6.0786204), (6.5421534, 48.90738, -8.078887), (6.5421534, 48.90738, -8.078887), (4.92237, 49.38442, -6.0786204), (5.2337546, 49.38442, -5.812673), (6.9560037, 48.90738, -7.725425), (6.9560037, 48.90738, -7.725425), (5.2337546, 49.38442, -5.812673), (5.5307937, 49.38442, -5.5307937), (7.350788, 48.90738, -7.350788), (7.350788, 48.90738, -7.350788), (5.5307937, 49.38442, -5.5307937), (5.812673, 49.38442, -5.2337546), (7.725425, 48.90738, -6.9560037), (7.725425, 48.90738, -6.9560037), (5.812673, 49.38442, -5.2337546), (6.0786204, 49.38442, -4.92237), (8.078887, 48.90738, -6.5421534), (8.078887, 48.90738, -6.5421534), (6.0786204, 49.38442, -4.92237), (6.327907, 49.38442, -4.5974936), (8.410205, 48.90738, -6.110371), (8.410205, 48.90738, -6.110371), (6.327907, 49.38442, -4.5974936), (6.5598493, 49.38442, -4.260016), (8.718471, 48.90738, -5.661841), (8.718471, 48.90738, -5.661841), (6.5598493, 49.38442, -4.260016), (6.773811, 49.38442, -3.9108617), (9.00284, 48.90738, -5.197792), (9.00284, 48.90738, -5.197792), (6.773811, 49.38442, -3.9108617), (6.9692063, 49.38442, -3.550988), (9.262533, 48.90738, -4.7194967), (9.262533, 48.90738, -4.7194967), (6.9692063, 49.38442, -3.550988), (7.1454997, 49.38442, -3.1813815), (9.496839, 48.90738, -4.2282653), (9.496839, 48.90738, -4.2282653), (7.1454997, 49.38442, -3.1813815), (7.302208, 49.38442, -2.8030548), (9.705114, 48.90738, -3.7254443), (9.705114, 48.90738, -3.7254443), (7.302208, 49.38442, -2.8030548), (7.438901, 49.38442, -2.4170454), (9.886788, 48.90738, -3.2124124), (9.886788, 48.90738, -3.2124124), (7.438901, 49.38442, -2.4170454), (7.5552044, 49.38442, -2.024411), (10.041364, 48.90738, -2.6905754), (10.041364, 48.90738, -2.6905754), (7.5552044, 49.38442, -2.024411), (7.6507998, 49.38442, -1.6262277), (10.168416, 48.90738, -2.1613636), (10.168416, 48.90738, -2.1613636), (7.6507998, 49.38442, -1.6262277), (7.725425, 49.38442, -1.223587), (10.267597, 48.90738, -1.6262277), (10.267597, 48.90738, -1.6262277), (7.725425, 49.38442, -1.223587), (7.778875, 49.38442, -0.81759274), (10.338636, 48.90738, -1.0866345), (10.338636, 48.90738, -1.0866345), (7.778875, 49.38442, -0.81759274), (7.8110037, 49.38442, -0.40935737), (10.381338, 48.90738, -0.54406285), (10.381338, 48.90738, -0.54406285), (7.8110037, 49.38442, -0.40935737), (7.8217235, 49.38442, 0), (10.395584, 48.90738, 0), (7.8217235, 49.38442, 0), (5.2264233, 49.726093, 0), (5.2192607, 49.726093, 0.27352986), (7.8110037, 49.38442, 0.40935737), (7.8110037, 49.38442, 0.40935737), (5.2192607, 49.726093, 0.27352986), (5.197792, 49.726093, 0.54631), (7.778875, 49.38442, 0.81759274), (7.778875, 49.38442, 0.81759274), (5.197792, 49.726093, 0.54631), (5.1620774, 49.726093, 0.81759274), (7.725425, 49.38442, 1.223587), (7.725425, 49.38442, 1.223587), (5.1620774, 49.726093, 0.81759274), (5.112213, 49.726093, 1.0866345), (7.6507998, 49.38442, 1.6262277), (7.6507998, 49.38442, 1.6262277), (5.112213, 49.726093, 1.0866345), (5.048337, 49.726093, 1.3526978), (7.5552044, 49.38442, 2.024411), (7.5552044, 49.38442, 2.024411), (5.048337, 49.726093, 1.3526978), (4.970624, 49.726093, 1.6150535), (7.438901, 49.38442, 2.4170454), (7.438901, 49.38442, 2.4170454), (4.970624, 49.726093, 1.6150535), (4.8792863, 49.726093, 1.8729825), (7.302208, 49.38442, 2.8030548), (7.302208, 49.38442, 2.8030548), (4.8792863, 49.726093, 1.8729825), (4.774575, 49.726093, 2.1257777), (7.1454997, 49.38442, 3.1813815), (7.1454997, 49.38442, 3.1813815), (4.774575, 49.726093, 2.1257777), (4.656777, 49.726093, 2.3727465), (6.9692063, 49.38442, 3.550988), (6.9692063, 49.38442, 3.550988), (4.656777, 49.726093, 2.3727465), (4.526215, 49.726093, 2.6132116), (6.773811, 49.38442, 3.9108617), (6.773811, 49.38442, 3.9108617), (4.526215, 49.726093, 2.6132116), (4.3832474, 49.726093, 2.846514), (6.5598493, 49.38442, 4.260016), (6.5598493, 49.38442, 4.260016), (4.3832474, 49.726093, 2.846514), (4.2282653, 49.726093, 3.0720146), (6.327907, 49.38442, 4.5974936), (6.327907, 49.38442, 4.5974936), (4.2282653, 49.726093, 3.0720146), (4.0616937, 49.726093, 3.2890947), (6.0786204, 49.38442, 4.92237), (6.0786204, 49.38442, 4.92237), (4.0616937, 49.726093, 3.2890947), (3.8839893, 49.726093, 3.4971597), (5.812673, 49.38442, 5.2337546), (5.812673, 49.38442, 5.2337546), (3.8839893, 49.726093, 3.4971597), (3.6956394, 49.726093, 3.6956394), (5.5307937, 49.38442, 5.5307937), (5.5307937, 49.38442, 5.5307937), (3.6956394, 49.726093, 3.6956394), (3.4971597, 49.726093, 3.8839893), (5.2337546, 49.38442, 5.812673), (5.2337546, 49.38442, 5.812673), (3.4971597, 49.726093, 3.8839893), (3.2890947, 49.726093, 4.0616937), (4.92237, 49.38442, 6.0786204), (4.92237, 49.38442, 6.0786204), (3.2890947, 49.726093, 4.0616937), (3.0720146, 49.726093, 4.2282653), (4.5974936, 49.38442, 6.327907), (4.5974936, 49.38442, 6.327907), (3.0720146, 49.726093, 4.2282653), (2.846514, 49.726093, 4.3832474), (4.260016, 49.38442, 6.5598493), (4.260016, 49.38442, 6.5598493), (2.846514, 49.726093, 4.3832474), (2.6132116, 49.726093, 4.526215), (3.9108617, 49.38442, 6.773811), (3.9108617, 49.38442, 6.773811), (2.6132116, 49.726093, 4.526215), (2.3727465, 49.726093, 4.656777), (3.550988, 49.38442, 6.9692063), (3.550988, 49.38442, 6.9692063), (2.3727465, 49.726093, 4.656777), (2.1257777, 49.726093, 4.774575), (3.1813815, 49.38442, 7.1454997), (3.1813815, 49.38442, 7.1454997), (2.1257777, 49.726093, 4.774575), (1.8729825, 49.726093, 4.8792863), (2.8030548, 49.38442, 7.302208), (2.8030548, 49.38442, 7.302208), (1.8729825, 49.726093, 4.8792863), (1.6150535, 49.726093, 4.970624), (2.4170454, 49.38442, 7.438901), (2.4170454, 49.38442, 7.438901), (1.6150535, 49.726093, 4.970624), (1.3526978, 49.726093, 5.048337), (2.024411, 49.38442, 7.5552044), (2.024411, 49.38442, 7.5552044), (1.3526978, 49.726093, 5.048337), (1.0866345, 49.726093, 5.112213), (1.6262277, 49.38442, 7.6507998), (1.6262277, 49.38442, 7.6507998), (1.0866345, 49.726093, 5.112213), (0.81759274, 49.726093, 5.1620774), (1.223587, 49.38442, 7.725425), (1.223587, 49.38442, 7.725425), (0.81759274, 49.726093, 5.1620774), (0.54631, 49.726093, 5.197792), (0.81759274, 49.38442, 7.778875), (0.81759274, 49.38442, 7.778875), (0.54631, 49.726093, 5.197792), (0.27352986, 49.726093, 5.2192607), (0.40935737, 49.38442, 7.8110037), (0.40935737, 49.38442, 7.8110037), (0.27352986, 49.726093, 5.2192607), (3.2002612e-16, 49.726093, 5.2264233), (4.789424e-16, 49.38442, 7.8217235), (4.789424e-16, 49.38442, 7.8217235), (3.2002612e-16, 49.726093, 5.2264233), (-0.27352986, 49.726093, 5.2192607), (-0.40935737, 49.38442, 7.8110037), (-0.40935737, 49.38442, 7.8110037), (-0.27352986, 49.726093, 5.2192607), (-0.54631, 49.726093, 5.197792), (-0.81759274, 49.38442, 7.778875), (-0.81759274, 49.38442, 7.778875), (-0.54631, 49.726093, 5.197792), (-0.81759274, 49.726093, 5.1620774), (-1.223587, 49.38442, 7.725425), (-1.223587, 49.38442, 7.725425), (-0.81759274, 49.726093, 5.1620774), (-1.0866345, 49.726093, 5.112213), (-1.6262277, 49.38442, 7.6507998), (-1.6262277, 49.38442, 7.6507998), (-1.0866345, 49.726093, 5.112213), (-1.3526978, 49.726093, 5.048337), (-2.024411, 49.38442, 7.5552044), (-2.024411, 49.38442, 7.5552044), (-1.3526978, 49.726093, 5.048337), (-1.6150535, 49.726093, 4.970624), (-2.4170454, 49.38442, 7.438901), (-2.4170454, 49.38442, 7.438901), (-1.6150535, 49.726093, 4.970624), (-1.8729825, 49.726093, 4.8792863), (-2.8030548, 49.38442, 7.302208), (-2.8030548, 49.38442, 7.302208), (-1.8729825, 49.726093, 4.8792863), (-2.1257777, 49.726093, 4.774575), (-3.1813815, 49.38442, 7.1454997), (-3.1813815, 49.38442, 7.1454997), (-2.1257777, 49.726093, 4.774575), (-2.3727465, 49.726093, 4.656777), (-3.550988, 49.38442, 6.9692063), (-3.550988, 49.38442, 6.9692063), (-2.3727465, 49.726093, 4.656777), (-2.6132116, 49.726093, 4.526215), (-3.9108617, 49.38442, 6.773811), (-3.9108617, 49.38442, 6.773811), (-2.6132116, 49.726093, 4.526215), (-2.846514, 49.726093, 4.3832474), (-4.260016, 49.38442, 6.5598493), (-4.260016, 49.38442, 6.5598493), (-2.846514, 49.726093, 4.3832474), (-3.0720146, 49.726093, 4.2282653), (-4.5974936, 49.38442, 6.327907), (-4.5974936, 49.38442, 6.327907), (-3.0720146, 49.726093, 4.2282653), (-3.2890947, 49.726093, 4.0616937), (-4.92237, 49.38442, 6.0786204), (-4.92237, 49.38442, 6.0786204), (-3.2890947, 49.726093, 4.0616937), (-3.4971597, 49.726093, 3.8839893), (-5.2337546, 49.38442, 5.812673), (-5.2337546, 49.38442, 5.812673), (-3.4971597, 49.726093, 3.8839893), (-3.6956394, 49.726093, 3.6956394), (-5.5307937, 49.38442, 5.5307937), (-5.5307937, 49.38442, 5.5307937), (-3.6956394, 49.726093, 3.6956394), (-3.8839893, 49.726093, 3.4971597), (-5.812673, 49.38442, 5.2337546), (-5.812673, 49.38442, 5.2337546), (-3.8839893, 49.726093, 3.4971597), (-4.0616937, 49.726093, 3.2890947), (-6.0786204, 49.38442, 4.92237), (-6.0786204, 49.38442, 4.92237), (-4.0616937, 49.726093, 3.2890947), (-4.2282653, 49.726093, 3.0720146), (-6.327907, 49.38442, 4.5974936), (-6.327907, 49.38442, 4.5974936), (-4.2282653, 49.726093, 3.0720146), (-4.3832474, 49.726093, 2.846514), (-6.5598493, 49.38442, 4.260016), (-6.5598493, 49.38442, 4.260016), (-4.3832474, 49.726093, 2.846514), (-4.526215, 49.726093, 2.6132116), (-6.773811, 49.38442, 3.9108617), (-6.773811, 49.38442, 3.9108617), (-4.526215, 49.726093, 2.6132116), (-4.656777, 49.726093, 2.3727465), (-6.9692063, 49.38442, 3.550988), (-6.9692063, 49.38442, 3.550988), (-4.656777, 49.726093, 2.3727465), (-4.774575, 49.726093, 2.1257777), (-7.1454997, 49.38442, 3.1813815), (-7.1454997, 49.38442, 3.1813815), (-4.774575, 49.726093, 2.1257777), (-4.8792863, 49.726093, 1.8729825), (-7.302208, 49.38442, 2.8030548), (-7.302208, 49.38442, 2.8030548), (-4.8792863, 49.726093, 1.8729825), (-4.970624, 49.726093, 1.6150535), (-7.438901, 49.38442, 2.4170454), (-7.438901, 49.38442, 2.4170454), (-4.970624, 49.726093, 1.6150535), (-5.048337, 49.726093, 1.3526978), (-7.5552044, 49.38442, 2.024411), (-7.5552044, 49.38442, 2.024411), (-5.048337, 49.726093, 1.3526978), (-5.112213, 49.726093, 1.0866345), (-7.6507998, 49.38442, 1.6262277), (-7.6507998, 49.38442, 1.6262277), (-5.112213, 49.726093, 1.0866345), (-5.1620774, 49.726093, 0.81759274), (-7.725425, 49.38442, 1.223587), (-7.725425, 49.38442, 1.223587), (-5.1620774, 49.726093, 0.81759274), (-5.197792, 49.726093, 0.54631), (-7.778875, 49.38442, 0.81759274), (-7.778875, 49.38442, 0.81759274), (-5.197792, 49.726093, 0.54631), (-5.2192607, 49.726093, 0.27352986), (-7.8110037, 49.38442, 0.40935737), (-7.8110037, 49.38442, 0.40935737), (-5.2192607, 49.726093, 0.27352986), (-5.2264233, 49.726093, 6.4005224e-16), (-7.8217235, 49.38442, 9.578848e-16), (-7.8217235, 49.38442, 9.578848e-16), (-5.2264233, 49.726093, 6.4005224e-16), (-5.2192607, 49.726093, -0.27352986), (-7.8110037, 49.38442, -0.40935737), (-7.8110037, 49.38442, -0.40935737), (-5.2192607, 49.726093, -0.27352986), (-5.197792, 49.726093, -0.54631), (-7.778875, 49.38442, -0.81759274), (-7.778875, 49.38442, -0.81759274), (-5.197792, 49.726093, -0.54631), (-5.1620774, 49.726093, -0.81759274), (-7.725425, 49.38442, -1.223587), (-7.725425, 49.38442, -1.223587), (-5.1620774, 49.726093, -0.81759274), (-5.112213, 49.726093, -1.0866345), (-7.6507998, 49.38442, -1.6262277), (-7.6507998, 49.38442, -1.6262277), (-5.112213, 49.726093, -1.0866345), (-5.048337, 49.726093, -1.3526978), (-7.5552044, 49.38442, -2.024411), (-7.5552044, 49.38442, -2.024411), (-5.048337, 49.726093, -1.3526978), (-4.970624, 49.726093, -1.6150535), (-7.438901, 49.38442, -2.4170454), (-7.438901, 49.38442, -2.4170454), (-4.970624, 49.726093, -1.6150535), (-4.8792863, 49.726093, -1.8729825), (-7.302208, 49.38442, -2.8030548), (-7.302208, 49.38442, -2.8030548), (-4.8792863, 49.726093, -1.8729825), (-4.774575, 49.726093, -2.1257777), (-7.1454997, 49.38442, -3.1813815), (-7.1454997, 49.38442, -3.1813815), (-4.774575, 49.726093, -2.1257777), (-4.656777, 49.726093, -2.3727465), (-6.9692063, 49.38442, -3.550988), (-6.9692063, 49.38442, -3.550988), (-4.656777, 49.726093, -2.3727465), (-4.526215, 49.726093, -2.6132116), (-6.773811, 49.38442, -3.9108617), (-6.773811, 49.38442, -3.9108617), (-4.526215, 49.726093, -2.6132116), (-4.3832474, 49.726093, -2.846514), (-6.5598493, 49.38442, -4.260016), (-6.5598493, 49.38442, -4.260016), (-4.3832474, 49.726093, -2.846514), (-4.2282653, 49.726093, -3.0720146), (-6.327907, 49.38442, -4.5974936), (-6.327907, 49.38442, -4.5974936), (-4.2282653, 49.726093, -3.0720146), (-4.0616937, 49.726093, -3.2890947), (-6.0786204, 49.38442, -4.92237), (-6.0786204, 49.38442, -4.92237), (-4.0616937, 49.726093, -3.2890947), (-3.8839893, 49.726093, -3.4971597), (-5.812673, 49.38442, -5.2337546), (-5.812673, 49.38442, -5.2337546), (-3.8839893, 49.726093, -3.4971597), (-3.6956394, 49.726093, -3.6956394), (-5.5307937, 49.38442, -5.5307937), (-5.5307937, 49.38442, -5.5307937), (-3.6956394, 49.726093, -3.6956394), (-3.4971597, 49.726093, -3.8839893), (-5.2337546, 49.38442, -5.812673), (-5.2337546, 49.38442, -5.812673), (-3.4971597, 49.726093, -3.8839893), (-3.2890947, 49.726093, -4.0616937), (-4.92237, 49.38442, -6.0786204), (-4.92237, 49.38442, -6.0786204), (-3.2890947, 49.726093, -4.0616937), (-3.0720146, 49.726093, -4.2282653), (-4.5974936, 49.38442, -6.327907), (-4.5974936, 49.38442, -6.327907), (-3.0720146, 49.726093, -4.2282653), (-2.846514, 49.726093, -4.3832474), (-4.260016, 49.38442, -6.5598493), (-4.260016, 49.38442, -6.5598493), (-2.846514, 49.726093, -4.3832474), (-2.6132116, 49.726093, -4.526215), (-3.9108617, 49.38442, -6.773811), (-3.9108617, 49.38442, -6.773811), (-2.6132116, 49.726093, -4.526215), (-2.3727465, 49.726093, -4.656777), (-3.550988, 49.38442, -6.9692063), (-3.550988, 49.38442, -6.9692063), (-2.3727465, 49.726093, -4.656777), (-2.1257777, 49.726093, -4.774575), (-3.1813815, 49.38442, -7.1454997), (-3.1813815, 49.38442, -7.1454997), (-2.1257777, 49.726093, -4.774575), (-1.8729825, 49.726093, -4.8792863), (-2.8030548, 49.38442, -7.302208), (-2.8030548, 49.38442, -7.302208), (-1.8729825, 49.726093, -4.8792863), (-1.6150535, 49.726093, -4.970624), (-2.4170454, 49.38442, -7.438901), (-2.4170454, 49.38442, -7.438901), (-1.6150535, 49.726093, -4.970624), (-1.3526978, 49.726093, -5.048337), (-2.024411, 49.38442, -7.5552044), (-2.024411, 49.38442, -7.5552044), (-1.3526978, 49.726093, -5.048337), (-1.0866345, 49.726093, -5.112213), (-1.6262277, 49.38442, -7.6507998), (-1.6262277, 49.38442, -7.6507998), (-1.0866345, 49.726093, -5.112213), (-0.81759274, 49.726093, -5.1620774), (-1.223587, 49.38442, -7.725425), (-1.223587, 49.38442, -7.725425), (-0.81759274, 49.726093, -5.1620774), (-0.54631, 49.726093, -5.197792), (-0.81759274, 49.38442, -7.778875), (-0.81759274, 49.38442, -7.778875), (-0.54631, 49.726093, -5.197792), (-0.27352986, 49.726093, -5.2192607), (-0.40935737, 49.38442, -7.8110037), (-0.40935737, 49.38442, -7.8110037), (-0.27352986, 49.726093, -5.2192607), (-9.600784e-16, 49.726093, -5.2264233), (-1.4368273e-15, 49.38442, -7.8217235), (-1.4368273e-15, 49.38442, -7.8217235), (-9.600784e-16, 49.726093, -5.2264233), (0.27352986, 49.726093, -5.2192607), (0.40935737, 49.38442, -7.8110037), (0.40935737, 49.38442, -7.8110037), (0.27352986, 49.726093, -5.2192607), (0.54631, 49.726093, -5.197792), (0.81759274, 49.38442, -7.778875), (0.81759274, 49.38442, -7.778875), (0.54631, 49.726093, -5.197792), (0.81759274, 49.726093, -5.1620774), (1.223587, 49.38442, -7.725425), (1.223587, 49.38442, -7.725425), (0.81759274, 49.726093, -5.1620774), (1.0866345, 49.726093, -5.112213), (1.6262277, 49.38442, -7.6507998), (1.6262277, 49.38442, -7.6507998), (1.0866345, 49.726093, -5.112213), (1.3526978, 49.726093, -5.048337), (2.024411, 49.38442, -7.5552044), (2.024411, 49.38442, -7.5552044), (1.3526978, 49.726093, -5.048337), (1.6150535, 49.726093, -4.970624), (2.4170454, 49.38442, -7.438901), (2.4170454, 49.38442, -7.438901), (1.6150535, 49.726093, -4.970624), (1.8729825, 49.726093, -4.8792863), (2.8030548, 49.38442, -7.302208), (2.8030548, 49.38442, -7.302208), (1.8729825, 49.726093, -4.8792863), (2.1257777, 49.726093, -4.774575), (3.1813815, 49.38442, -7.1454997), (3.1813815, 49.38442, -7.1454997), (2.1257777, 49.726093, -4.774575), (2.3727465, 49.726093, -4.656777), (3.550988, 49.38442, -6.9692063), (3.550988, 49.38442, -6.9692063), (2.3727465, 49.726093, -4.656777), (2.6132116, 49.726093, -4.526215), (3.9108617, 49.38442, -6.773811), (3.9108617, 49.38442, -6.773811), (2.6132116, 49.726093, -4.526215), (2.846514, 49.726093, -4.3832474), (4.260016, 49.38442, -6.5598493), (4.260016, 49.38442, -6.5598493), (2.846514, 49.726093, -4.3832474), (3.0720146, 49.726093, -4.2282653), (4.5974936, 49.38442, -6.327907), (4.5974936, 49.38442, -6.327907), (3.0720146, 49.726093, -4.2282653), (3.2890947, 49.726093, -4.0616937), (4.92237, 49.38442, -6.0786204), (4.92237, 49.38442, -6.0786204), (3.2890947, 49.726093, -4.0616937), (3.4971597, 49.726093, -3.8839893), (5.2337546, 49.38442, -5.812673), (5.2337546, 49.38442, -5.812673), (3.4971597, 49.726093, -3.8839893), (3.6956394, 49.726093, -3.6956394), (5.5307937, 49.38442, -5.5307937), (5.5307937, 49.38442, -5.5307937), (3.6956394, 49.726093, -3.6956394), (3.8839893, 49.726093, -3.4971597), (5.812673, 49.38442, -5.2337546), (5.812673, 49.38442, -5.2337546), (3.8839893, 49.726093, -3.4971597), (4.0616937, 49.726093, -3.2890947), (6.0786204, 49.38442, -4.92237), (6.0786204, 49.38442, -4.92237), (4.0616937, 49.726093, -3.2890947), (4.2282653, 49.726093, -3.0720146), (6.327907, 49.38442, -4.5974936), (6.327907, 49.38442, -4.5974936), (4.2282653, 49.726093, -3.0720146), (4.3832474, 49.726093, -2.846514), (6.5598493, 49.38442, -4.260016), (6.5598493, 49.38442, -4.260016), (4.3832474, 49.726093, -2.846514), (4.526215, 49.726093, -2.6132116), (6.773811, 49.38442, -3.9108617), (6.773811, 49.38442, -3.9108617), (4.526215, 49.726093, -2.6132116), (4.656777, 49.726093, -2.3727465), (6.9692063, 49.38442, -3.550988), (6.9692063, 49.38442, -3.550988), (4.656777, 49.726093, -2.3727465), (4.774575, 49.726093, -2.1257777), (7.1454997, 49.38442, -3.1813815), (7.1454997, 49.38442, -3.1813815), (4.774575, 49.726093, -2.1257777), (4.8792863, 49.726093, -1.8729825), (7.302208, 49.38442, -2.8030548), (7.302208, 49.38442, -2.8030548), (4.8792863, 49.726093, -1.8729825), (4.970624, 49.726093, -1.6150535), (7.438901, 49.38442, -2.4170454), (7.438901, 49.38442, -2.4170454), (4.970624, 49.726093, -1.6150535), (5.048337, 49.726093, -1.3526978), (7.5552044, 49.38442, -2.024411), (7.5552044, 49.38442, -2.024411), (5.048337, 49.726093, -1.3526978), (5.112213, 49.726093, -1.0866345), (7.6507998, 49.38442, -1.6262277), (7.6507998, 49.38442, -1.6262277), (5.112213, 49.726093, -1.0866345), (5.1620774, 49.726093, -0.81759274), (7.725425, 49.38442, -1.223587), (7.725425, 49.38442, -1.223587), (5.1620774, 49.726093, -0.81759274), (5.197792, 49.726093, -0.54631), (7.778875, 49.38442, -0.81759274), (7.778875, 49.38442, -0.81759274), (5.197792, 49.726093, -0.54631), (5.2192607, 49.726093, -0.27352986), (7.8110037, 49.38442, -0.40935737), (7.8110037, 49.38442, -0.40935737), (5.2192607, 49.726093, -0.27352986), (5.2264233, 49.726093, 0), (7.8217235, 49.38442, 0), (5.2264233, 49.726093, 0), (2.616798, 49.931477, 0), (2.6132116, 49.931477, 0.13695261), (5.2192607, 49.726093, 0.27352986), (5.2192607, 49.726093, 0.27352986), (2.6132116, 49.931477, 0.13695261), (2.6024628, 49.931477, 0.27352986), (5.197792, 49.726093, 0.54631), (5.197792, 49.726093, 0.54631), (2.6024628, 49.931477, 0.27352986), (2.5845807, 49.931477, 0.40935737), (5.1620774, 49.726093, 0.81759274), (5.1620774, 49.726093, 0.81759274), (2.5845807, 49.931477, 0.40935737), (2.5596144, 49.931477, 0.54406285), (5.112213, 49.726093, 1.0866345), (5.112213, 49.726093, 1.0866345), (2.5596144, 49.931477, 0.54406285), (2.5276325, 49.931477, 0.6772771), (5.048337, 49.726093, 1.3526978), (5.048337, 49.726093, 1.3526978), (2.5276325, 49.931477, 0.6772771), (2.4887226, 49.931477, 0.808635), (4.970624, 49.726093, 1.6150535), (4.970624, 49.726093, 1.6150535), (2.4887226, 49.931477, 0.808635), (2.4429913, 49.931477, 0.93777645), (4.8792863, 49.726093, 1.8729825), (4.8792863, 49.726093, 1.8729825), (2.4429913, 49.931477, 0.93777645), (2.3905637, 49.931477, 1.0643475), (4.774575, 49.726093, 2.1257777), (4.774575, 49.726093, 2.1257777), (2.3905637, 49.931477, 1.0643475), (2.331584, 49.931477, 1.1880014), (4.656777, 49.726093, 2.3727465), (4.656777, 49.726093, 2.3727465), (2.331584, 49.931477, 1.1880014), (2.2662134, 49.931477, 1.308399), (4.526215, 49.726093, 2.6132116), (4.526215, 49.726093, 2.6132116), (2.2662134, 49.931477, 1.308399), (2.1946313, 49.931477, 1.4252102), (4.3832474, 49.726093, 2.846514), (4.3832474, 49.726093, 2.846514), (2.1946313, 49.931477, 1.4252102), (2.117034, 49.931477, 1.5381151), (4.2282653, 49.726093, 3.0720146), (4.2282653, 49.726093, 3.0720146), (2.117034, 49.931477, 1.5381151), (2.033634, 49.931477, 1.6468042), (4.0616937, 49.726093, 3.2890947), (4.0616937, 49.726093, 3.2890947), (2.033634, 49.931477, 1.6468042), (1.9446597, 49.931477, 1.7509795), (3.8839893, 49.726093, 3.4971597), (3.8839893, 49.726093, 3.4971597), (1.9446597, 49.931477, 1.7509795), (1.8503555, 49.931477, 1.8503555), (3.6956394, 49.726093, 3.6956394), (3.6956394, 49.726093, 3.6956394), (1.8503555, 49.931477, 1.8503555), (1.7509795, 49.931477, 1.9446597), (3.4971597, 49.726093, 3.8839893), (3.4971597, 49.726093, 3.8839893), (1.7509795, 49.931477, 1.9446597), (1.6468042, 49.931477, 2.033634), (3.2890947, 49.726093, 4.0616937), (3.2890947, 49.726093, 4.0616937), (1.6468042, 49.931477, 2.033634), (1.5381151, 49.931477, 2.117034), (3.0720146, 49.726093, 4.2282653), (3.0720146, 49.726093, 4.2282653), (1.5381151, 49.931477, 2.117034), (1.4252102, 49.931477, 2.1946313), (2.846514, 49.726093, 4.3832474), (2.846514, 49.726093, 4.3832474), (1.4252102, 49.931477, 2.1946313), (1.308399, 49.931477, 2.2662134), (2.6132116, 49.726093, 4.526215), (2.6132116, 49.726093, 4.526215), (1.308399, 49.931477, 2.2662134), (1.1880014, 49.931477, 2.331584), (2.3727465, 49.726093, 4.656777), (2.3727465, 49.726093, 4.656777), (1.1880014, 49.931477, 2.331584), (1.0643475, 49.931477, 2.3905637), (2.1257777, 49.726093, 4.774575), (2.1257777, 49.726093, 4.774575), (1.0643475, 49.931477, 2.3905637), (0.93777645, 49.931477, 2.4429913), (1.8729825, 49.726093, 4.8792863), (1.8729825, 49.726093, 4.8792863), (0.93777645, 49.931477, 2.4429913), (0.808635, 49.931477, 2.4887226), (1.6150535, 49.726093, 4.970624), (1.6150535, 49.726093, 4.970624), (0.808635, 49.931477, 2.4887226), (0.6772771, 49.931477, 2.5276325), (1.3526978, 49.726093, 5.048337), (1.3526978, 49.726093, 5.048337), (0.6772771, 49.931477, 2.5276325), (0.54406285, 49.931477, 2.5596144), (1.0866345, 49.726093, 5.112213), (1.0866345, 49.726093, 5.112213), (0.54406285, 49.931477, 2.5596144), (0.40935737, 49.931477, 2.5845807), (0.81759274, 49.726093, 5.1620774), (0.81759274, 49.726093, 5.1620774), (0.40935737, 49.931477, 2.5845807), (0.27352986, 49.931477, 2.6024628), (0.54631, 49.726093, 5.197792), (0.54631, 49.726093, 5.197792), (0.27352986, 49.931477, 2.6024628), (0.13695261, 49.931477, 2.6132116), (0.27352986, 49.726093, 5.2192607), (0.27352986, 49.726093, 5.2192607), (0.13695261, 49.931477, 2.6132116), (1.6023265e-16, 49.931477, 2.616798), (3.2002612e-16, 49.726093, 5.2264233), (3.2002612e-16, 49.726093, 5.2264233), (1.6023265e-16, 49.931477, 2.616798), (-0.13695261, 49.931477, 2.6132116), (-0.27352986, 49.726093, 5.2192607), (-0.27352986, 49.726093, 5.2192607), (-0.13695261, 49.931477, 2.6132116), (-0.27352986, 49.931477, 2.6024628), (-0.54631, 49.726093, 5.197792), (-0.54631, 49.726093, 5.197792), (-0.27352986, 49.931477, 2.6024628), (-0.40935737, 49.931477, 2.5845807), (-0.81759274, 49.726093, 5.1620774), (-0.81759274, 49.726093, 5.1620774), (-0.40935737, 49.931477, 2.5845807), (-0.54406285, 49.931477, 2.5596144), (-1.0866345, 49.726093, 5.112213), (-1.0866345, 49.726093, 5.112213), (-0.54406285, 49.931477, 2.5596144), (-0.6772771, 49.931477, 2.5276325), (-1.3526978, 49.726093, 5.048337), (-1.3526978, 49.726093, 5.048337), (-0.6772771, 49.931477, 2.5276325), (-0.808635, 49.931477, 2.4887226), (-1.6150535, 49.726093, 4.970624), (-1.6150535, 49.726093, 4.970624), (-0.808635, 49.931477, 2.4887226), (-0.93777645, 49.931477, 2.4429913), (-1.8729825, 49.726093, 4.8792863), (-1.8729825, 49.726093, 4.8792863), (-0.93777645, 49.931477, 2.4429913), (-1.0643475, 49.931477, 2.3905637), (-2.1257777, 49.726093, 4.774575), (-2.1257777, 49.726093, 4.774575), (-1.0643475, 49.931477, 2.3905637), (-1.1880014, 49.931477, 2.331584), (-2.3727465, 49.726093, 4.656777), (-2.3727465, 49.726093, 4.656777), (-1.1880014, 49.931477, 2.331584), (-1.308399, 49.931477, 2.2662134), (-2.6132116, 49.726093, 4.526215), (-2.6132116, 49.726093, 4.526215), (-1.308399, 49.931477, 2.2662134), (-1.4252102, 49.931477, 2.1946313), (-2.846514, 49.726093, 4.3832474), (-2.846514, 49.726093, 4.3832474), (-1.4252102, 49.931477, 2.1946313), (-1.5381151, 49.931477, 2.117034), (-3.0720146, 49.726093, 4.2282653), (-3.0720146, 49.726093, 4.2282653), (-1.5381151, 49.931477, 2.117034), (-1.6468042, 49.931477, 2.033634), (-3.2890947, 49.726093, 4.0616937), (-3.2890947, 49.726093, 4.0616937), (-1.6468042, 49.931477, 2.033634), (-1.7509795, 49.931477, 1.9446597), (-3.4971597, 49.726093, 3.8839893), (-3.4971597, 49.726093, 3.8839893), (-1.7509795, 49.931477, 1.9446597), (-1.8503555, 49.931477, 1.8503555), (-3.6956394, 49.726093, 3.6956394), (-3.6956394, 49.726093, 3.6956394), (-1.8503555, 49.931477, 1.8503555), (-1.9446597, 49.931477, 1.7509795), (-3.8839893, 49.726093, 3.4971597), (-3.8839893, 49.726093, 3.4971597), (-1.9446597, 49.931477, 1.7509795), (-2.033634, 49.931477, 1.6468042), (-4.0616937, 49.726093, 3.2890947), (-4.0616937, 49.726093, 3.2890947), (-2.033634, 49.931477, 1.6468042), (-2.117034, 49.931477, 1.5381151), (-4.2282653, 49.726093, 3.0720146), (-4.2282653, 49.726093, 3.0720146), (-2.117034, 49.931477, 1.5381151), (-2.1946313, 49.931477, 1.4252102), (-4.3832474, 49.726093, 2.846514), (-4.3832474, 49.726093, 2.846514), (-2.1946313, 49.931477, 1.4252102), (-2.2662134, 49.931477, 1.308399), (-4.526215, 49.726093, 2.6132116), (-4.526215, 49.726093, 2.6132116), (-2.2662134, 49.931477, 1.308399), (-2.331584, 49.931477, 1.1880014), (-4.656777, 49.726093, 2.3727465), (-4.656777, 49.726093, 2.3727465), (-2.331584, 49.931477, 1.1880014), (-2.3905637, 49.931477, 1.0643475), (-4.774575, 49.726093, 2.1257777), (-4.774575, 49.726093, 2.1257777), (-2.3905637, 49.931477, 1.0643475), (-2.4429913, 49.931477, 0.93777645), (-4.8792863, 49.726093, 1.8729825), (-4.8792863, 49.726093, 1.8729825), (-2.4429913, 49.931477, 0.93777645), (-2.4887226, 49.931477, 0.808635), (-4.970624, 49.726093, 1.6150535), (-4.970624, 49.726093, 1.6150535), (-2.4887226, 49.931477, 0.808635), (-2.5276325, 49.931477, 0.6772771), (-5.048337, 49.726093, 1.3526978), (-5.048337, 49.726093, 1.3526978), (-2.5276325, 49.931477, 0.6772771), (-2.5596144, 49.931477, 0.54406285), (-5.112213, 49.726093, 1.0866345), (-5.112213, 49.726093, 1.0866345), (-2.5596144, 49.931477, 0.54406285), (-2.5845807, 49.931477, 0.40935737), (-5.1620774, 49.726093, 0.81759274), (-5.1620774, 49.726093, 0.81759274), (-2.5845807, 49.931477, 0.40935737), (-2.6024628, 49.931477, 0.27352986), (-5.197792, 49.726093, 0.54631), (-5.197792, 49.726093, 0.54631), (-2.6024628, 49.931477, 0.27352986), (-2.6132116, 49.931477, 0.13695261), (-5.2192607, 49.726093, 0.27352986), (-5.2192607, 49.726093, 0.27352986), (-2.6132116, 49.931477, 0.13695261), (-2.616798, 49.931477, 3.204653e-16), (-5.2264233, 49.726093, 6.4005224e-16), (-5.2264233, 49.726093, 6.4005224e-16), (-2.616798, 49.931477, 3.204653e-16), (-2.6132116, 49.931477, -0.13695261), (-5.2192607, 49.726093, -0.27352986), (-5.2192607, 49.726093, -0.27352986), (-2.6132116, 49.931477, -0.13695261), (-2.6024628, 49.931477, -0.27352986), (-5.197792, 49.726093, -0.54631), (-5.197792, 49.726093, -0.54631), (-2.6024628, 49.931477, -0.27352986), (-2.5845807, 49.931477, -0.40935737), (-5.1620774, 49.726093, -0.81759274), (-5.1620774, 49.726093, -0.81759274), (-2.5845807, 49.931477, -0.40935737), (-2.5596144, 49.931477, -0.54406285), (-5.112213, 49.726093, -1.0866345), (-5.112213, 49.726093, -1.0866345), (-2.5596144, 49.931477, -0.54406285), (-2.5276325, 49.931477, -0.6772771), (-5.048337, 49.726093, -1.3526978), (-5.048337, 49.726093, -1.3526978), (-2.5276325, 49.931477, -0.6772771), (-2.4887226, 49.931477, -0.808635), (-4.970624, 49.726093, -1.6150535), (-4.970624, 49.726093, -1.6150535), (-2.4887226, 49.931477, -0.808635), (-2.4429913, 49.931477, -0.93777645), (-4.8792863, 49.726093, -1.8729825), (-4.8792863, 49.726093, -1.8729825), (-2.4429913, 49.931477, -0.93777645), (-2.3905637, 49.931477, -1.0643475), (-4.774575, 49.726093, -2.1257777), (-4.774575, 49.726093, -2.1257777), (-2.3905637, 49.931477, -1.0643475), (-2.331584, 49.931477, -1.1880014), (-4.656777, 49.726093, -2.3727465), (-4.656777, 49.726093, -2.3727465), (-2.331584, 49.931477, -1.1880014), (-2.2662134, 49.931477, -1.308399), (-4.526215, 49.726093, -2.6132116), (-4.526215, 49.726093, -2.6132116), (-2.2662134, 49.931477, -1.308399), (-2.1946313, 49.931477, -1.4252102), (-4.3832474, 49.726093, -2.846514), (-4.3832474, 49.726093, -2.846514), (-2.1946313, 49.931477, -1.4252102), (-2.117034, 49.931477, -1.5381151), (-4.2282653, 49.726093, -3.0720146), (-4.2282653, 49.726093, -3.0720146), (-2.117034, 49.931477, -1.5381151), (-2.033634, 49.931477, -1.6468042), (-4.0616937, 49.726093, -3.2890947), (-4.0616937, 49.726093, -3.2890947), (-2.033634, 49.931477, -1.6468042), (-1.9446597, 49.931477, -1.7509795), (-3.8839893, 49.726093, -3.4971597), (-3.8839893, 49.726093, -3.4971597), (-1.9446597, 49.931477, -1.7509795), (-1.8503555, 49.931477, -1.8503555), (-3.6956394, 49.726093, -3.6956394), (-3.6956394, 49.726093, -3.6956394), (-1.8503555, 49.931477, -1.8503555), (-1.7509795, 49.931477, -1.9446597), (-3.4971597, 49.726093, -3.8839893), (-3.4971597, 49.726093, -3.8839893), (-1.7509795, 49.931477, -1.9446597), (-1.6468042, 49.931477, -2.033634), (-3.2890947, 49.726093, -4.0616937), (-3.2890947, 49.726093, -4.0616937), (-1.6468042, 49.931477, -2.033634), (-1.5381151, 49.931477, -2.117034), (-3.0720146, 49.726093, -4.2282653), (-3.0720146, 49.726093, -4.2282653), (-1.5381151, 49.931477, -2.117034), (-1.4252102, 49.931477, -2.1946313), (-2.846514, 49.726093, -4.3832474), (-2.846514, 49.726093, -4.3832474), (-1.4252102, 49.931477, -2.1946313), (-1.308399, 49.931477, -2.2662134), (-2.6132116, 49.726093, -4.526215), (-2.6132116, 49.726093, -4.526215), (-1.308399, 49.931477, -2.2662134), (-1.1880014, 49.931477, -2.331584), (-2.3727465, 49.726093, -4.656777), (-2.3727465, 49.726093, -4.656777), (-1.1880014, 49.931477, -2.331584), (-1.0643475, 49.931477, -2.3905637), (-2.1257777, 49.726093, -4.774575), (-2.1257777, 49.726093, -4.774575), (-1.0643475, 49.931477, -2.3905637), (-0.93777645, 49.931477, -2.4429913), (-1.8729825, 49.726093, -4.8792863), (-1.8729825, 49.726093, -4.8792863), (-0.93777645, 49.931477, -2.4429913), (-0.808635, 49.931477, -2.4887226), (-1.6150535, 49.726093, -4.970624), (-1.6150535, 49.726093, -4.970624), (-0.808635, 49.931477, -2.4887226), (-0.6772771, 49.931477, -2.5276325), (-1.3526978, 49.726093, -5.048337), (-1.3526978, 49.726093, -5.048337), (-0.6772771, 49.931477, -2.5276325), (-0.54406285, 49.931477, -2.5596144), (-1.0866345, 49.726093, -5.112213), (-1.0866345, 49.726093, -5.112213), (-0.54406285, 49.931477, -2.5596144), (-0.40935737, 49.931477, -2.5845807), (-0.81759274, 49.726093, -5.1620774), (-0.81759274, 49.726093, -5.1620774), (-0.40935737, 49.931477, -2.5845807), (-0.27352986, 49.931477, -2.6024628), (-0.54631, 49.726093, -5.197792), (-0.54631, 49.726093, -5.197792), (-0.27352986, 49.931477, -2.6024628), (-0.13695261, 49.931477, -2.6132116), (-0.27352986, 49.726093, -5.2192607), (-0.27352986, 49.726093, -5.2192607), (-0.13695261, 49.931477, -2.6132116), (-4.80698e-16, 49.931477, -2.616798), (-9.600784e-16, 49.726093, -5.2264233), (-9.600784e-16, 49.726093, -5.2264233), (-4.80698e-16, 49.931477, -2.616798), (0.13695261, 49.931477, -2.6132116), (0.27352986, 49.726093, -5.2192607), (0.27352986, 49.726093, -5.2192607), (0.13695261, 49.931477, -2.6132116), (0.27352986, 49.931477, -2.6024628), (0.54631, 49.726093, -5.197792), (0.54631, 49.726093, -5.197792), (0.27352986, 49.931477, -2.6024628), (0.40935737, 49.931477, -2.5845807), (0.81759274, 49.726093, -5.1620774), (0.81759274, 49.726093, -5.1620774), (0.40935737, 49.931477, -2.5845807), (0.54406285, 49.931477, -2.5596144), (1.0866345, 49.726093, -5.112213), (1.0866345, 49.726093, -5.112213), (0.54406285, 49.931477, -2.5596144), (0.6772771, 49.931477, -2.5276325), (1.3526978, 49.726093, -5.048337), (1.3526978, 49.726093, -5.048337), (0.6772771, 49.931477, -2.5276325), (0.808635, 49.931477, -2.4887226), (1.6150535, 49.726093, -4.970624), (1.6150535, 49.726093, -4.970624), (0.808635, 49.931477, -2.4887226), (0.93777645, 49.931477, -2.4429913), (1.8729825, 49.726093, -4.8792863), (1.8729825, 49.726093, -4.8792863), (0.93777645, 49.931477, -2.4429913), (1.0643475, 49.931477, -2.3905637), (2.1257777, 49.726093, -4.774575), (2.1257777, 49.726093, -4.774575), (1.0643475, 49.931477, -2.3905637), (1.1880014, 49.931477, -2.331584), (2.3727465, 49.726093, -4.656777), (2.3727465, 49.726093, -4.656777), (1.1880014, 49.931477, -2.331584), (1.308399, 49.931477, -2.2662134), (2.6132116, 49.726093, -4.526215), (2.6132116, 49.726093, -4.526215), (1.308399, 49.931477, -2.2662134), (1.4252102, 49.931477, -2.1946313), (2.846514, 49.726093, -4.3832474), (2.846514, 49.726093, -4.3832474), (1.4252102, 49.931477, -2.1946313), (1.5381151, 49.931477, -2.117034), (3.0720146, 49.726093, -4.2282653), (3.0720146, 49.726093, -4.2282653), (1.5381151, 49.931477, -2.117034), (1.6468042, 49.931477, -2.033634), (3.2890947, 49.726093, -4.0616937), (3.2890947, 49.726093, -4.0616937), (1.6468042, 49.931477, -2.033634), (1.7509795, 49.931477, -1.9446597), (3.4971597, 49.726093, -3.8839893), (3.4971597, 49.726093, -3.8839893), (1.7509795, 49.931477, -1.9446597), (1.8503555, 49.931477, -1.8503555), (3.6956394, 49.726093, -3.6956394), (3.6956394, 49.726093, -3.6956394), (1.8503555, 49.931477, -1.8503555), (1.9446597, 49.931477, -1.7509795), (3.8839893, 49.726093, -3.4971597), (3.8839893, 49.726093, -3.4971597), (1.9446597, 49.931477, -1.7509795), (2.033634, 49.931477, -1.6468042), (4.0616937, 49.726093, -3.2890947), (4.0616937, 49.726093, -3.2890947), (2.033634, 49.931477, -1.6468042), (2.117034, 49.931477, -1.5381151), (4.2282653, 49.726093, -3.0720146), (4.2282653, 49.726093, -3.0720146), (2.117034, 49.931477, -1.5381151), (2.1946313, 49.931477, -1.4252102), (4.3832474, 49.726093, -2.846514), (4.3832474, 49.726093, -2.846514), (2.1946313, 49.931477, -1.4252102), (2.2662134, 49.931477, -1.308399), (4.526215, 49.726093, -2.6132116), (4.526215, 49.726093, -2.6132116), (2.2662134, 49.931477, -1.308399), (2.331584, 49.931477, -1.1880014), (4.656777, 49.726093, -2.3727465), (4.656777, 49.726093, -2.3727465), (2.331584, 49.931477, -1.1880014), (2.3905637, 49.931477, -1.0643475), (4.774575, 49.726093, -2.1257777), (4.774575, 49.726093, -2.1257777), (2.3905637, 49.931477, -1.0643475), (2.4429913, 49.931477, -0.93777645), (4.8792863, 49.726093, -1.8729825), (4.8792863, 49.726093, -1.8729825), (2.4429913, 49.931477, -0.93777645), (2.4887226, 49.931477, -0.808635), (4.970624, 49.726093, -1.6150535), (4.970624, 49.726093, -1.6150535), (2.4887226, 49.931477, -0.808635), (2.5276325, 49.931477, -0.6772771), (5.048337, 49.726093, -1.3526978), (5.048337, 49.726093, -1.3526978), (2.5276325, 49.931477, -0.6772771), (2.5596144, 49.931477, -0.54406285), (5.112213, 49.726093, -1.0866345), (5.112213, 49.726093, -1.0866345), (2.5596144, 49.931477, -0.54406285), (2.5845807, 49.931477, -0.40935737), (5.1620774, 49.726093, -0.81759274), (5.1620774, 49.726093, -0.81759274), (2.5845807, 49.931477, -0.40935737), (2.6024628, 49.931477, -0.27352986), (5.197792, 49.726093, -0.54631), (5.197792, 49.726093, -0.54631), (2.6024628, 49.931477, -0.27352986), (2.6132116, 49.931477, -0.13695261), (5.2192607, 49.726093, -0.27352986), (5.2192607, 49.726093, -0.27352986), (2.6132116, 49.931477, -0.13695261), (2.616798, 49.931477, 0), (5.2264233, 49.726093, 0), (0, 50, 0), (2.6132116, 49.931477, 0.13695261), (2.616798, 49.931477, 0), (0, 50, 0), (2.6024628, 49.931477, 0.27352986), (2.6132116, 49.931477, 0.13695261), (0, 50, 0), (2.5845807, 49.931477, 0.40935737), (2.6024628, 49.931477, 0.27352986), (0, 50, 0), (2.5596144, 49.931477, 0.54406285), (2.5845807, 49.931477, 0.40935737), (0, 50, 0), (2.5276325, 49.931477, 0.6772771), (2.5596144, 49.931477, 0.54406285), (0, 50, 0), (2.4887226, 49.931477, 0.808635), (2.5276325, 49.931477, 0.6772771), (0, 50, 0), (2.4429913, 49.931477, 0.93777645), (2.4887226, 49.931477, 0.808635), (0, 50, 0), (2.3905637, 49.931477, 1.0643475), (2.4429913, 49.931477, 0.93777645), (0, 50, 0), (2.331584, 49.931477, 1.1880014), (2.3905637, 49.931477, 1.0643475), (0, 50, 0), (2.2662134, 49.931477, 1.308399), (2.331584, 49.931477, 1.1880014), (0, 50, 0), (2.1946313, 49.931477, 1.4252102), (2.2662134, 49.931477, 1.308399), (0, 50, 0), (2.117034, 49.931477, 1.5381151), (2.1946313, 49.931477, 1.4252102), (0, 50, 0), (2.033634, 49.931477, 1.6468042), (2.117034, 49.931477, 1.5381151), (0, 50, 0), (1.9446597, 49.931477, 1.7509795), (2.033634, 49.931477, 1.6468042), (0, 50, 0), (1.8503555, 49.931477, 1.8503555), (1.9446597, 49.931477, 1.7509795), (0, 50, 0), (1.7509795, 49.931477, 1.9446597), (1.8503555, 49.931477, 1.8503555), (0, 50, 0), (1.6468042, 49.931477, 2.033634), (1.7509795, 49.931477, 1.9446597), (0, 50, 0), (1.5381151, 49.931477, 2.117034), (1.6468042, 49.931477, 2.033634), (0, 50, 0), (1.4252102, 49.931477, 2.1946313), (1.5381151, 49.931477, 2.117034), (0, 50, 0), (1.308399, 49.931477, 2.2662134), (1.4252102, 49.931477, 2.1946313), (0, 50, 0), (1.1880014, 49.931477, 2.331584), (1.308399, 49.931477, 2.2662134), (0, 50, 0), (1.0643475, 49.931477, 2.3905637), (1.1880014, 49.931477, 2.331584), (0, 50, 0), (0.93777645, 49.931477, 2.4429913), (1.0643475, 49.931477, 2.3905637), (0, 50, 0), (0.808635, 49.931477, 2.4887226), (0.93777645, 49.931477, 2.4429913), (0, 50, 0), (0.6772771, 49.931477, 2.5276325), (0.808635, 49.931477, 2.4887226), (0, 50, 0), (0.54406285, 49.931477, 2.5596144), (0.6772771, 49.931477, 2.5276325), (0, 50, 0), (0.40935737, 49.931477, 2.5845807), (0.54406285, 49.931477, 2.5596144), (0, 50, 0), (0.27352986, 49.931477, 2.6024628), (0.40935737, 49.931477, 2.5845807), (0, 50, 0), (0.13695261, 49.931477, 2.6132116), (0.27352986, 49.931477, 2.6024628), (0, 50, 0), (1.6023265e-16, 49.931477, 2.616798), (0.13695261, 49.931477, 2.6132116), (0, 50, 0), (-0.13695261, 49.931477, 2.6132116), (1.6023265e-16, 49.931477, 2.616798), (0, 50, 0), (-0.27352986, 49.931477, 2.6024628), (-0.13695261, 49.931477, 2.6132116), (0, 50, 0), (-0.40935737, 49.931477, 2.5845807), (-0.27352986, 49.931477, 2.6024628), (0, 50, 0), (-0.54406285, 49.931477, 2.5596144), (-0.40935737, 49.931477, 2.5845807), (0, 50, 0), (-0.6772771, 49.931477, 2.5276325), (-0.54406285, 49.931477, 2.5596144), (0, 50, 0), (-0.808635, 49.931477, 2.4887226), (-0.6772771, 49.931477, 2.5276325), (0, 50, 0), (-0.93777645, 49.931477, 2.4429913), (-0.808635, 49.931477, 2.4887226), (0, 50, 0), (-1.0643475, 49.931477, 2.3905637), (-0.93777645, 49.931477, 2.4429913), (0, 50, 0), (-1.1880014, 49.931477, 2.331584), (-1.0643475, 49.931477, 2.3905637), (0, 50, 0), (-1.308399, 49.931477, 2.2662134), (-1.1880014, 49.931477, 2.331584), (0, 50, 0), (-1.4252102, 49.931477, 2.1946313), (-1.308399, 49.931477, 2.2662134), (0, 50, 0), (-1.5381151, 49.931477, 2.117034), (-1.4252102, 49.931477, 2.1946313), (0, 50, 0), (-1.6468042, 49.931477, 2.033634), (-1.5381151, 49.931477, 2.117034), (0, 50, 0), (-1.7509795, 49.931477, 1.9446597), (-1.6468042, 49.931477, 2.033634), (0, 50, 0), (-1.8503555, 49.931477, 1.8503555), (-1.7509795, 49.931477, 1.9446597), (0, 50, 0), (-1.9446597, 49.931477, 1.7509795), (-1.8503555, 49.931477, 1.8503555), (0, 50, 0), (-2.033634, 49.931477, 1.6468042), (-1.9446597, 49.931477, 1.7509795), (0, 50, 0), (-2.117034, 49.931477, 1.5381151), (-2.033634, 49.931477, 1.6468042), (0, 50, 0), (-2.1946313, 49.931477, 1.4252102), (-2.117034, 49.931477, 1.5381151), (0, 50, 0), (-2.2662134, 49.931477, 1.308399), (-2.1946313, 49.931477, 1.4252102), (0, 50, 0), (-2.331584, 49.931477, 1.1880014), (-2.2662134, 49.931477, 1.308399), (0, 50, 0), (-2.3905637, 49.931477, 1.0643475), (-2.331584, 49.931477, 1.1880014), (0, 50, 0), (-2.4429913, 49.931477, 0.93777645), (-2.3905637, 49.931477, 1.0643475), (0, 50, 0), (-2.4887226, 49.931477, 0.808635), (-2.4429913, 49.931477, 0.93777645), (0, 50, 0), (-2.5276325, 49.931477, 0.6772771), (-2.4887226, 49.931477, 0.808635), (0, 50, 0), (-2.5596144, 49.931477, 0.54406285), (-2.5276325, 49.931477, 0.6772771), (0, 50, 0), (-2.5845807, 49.931477, 0.40935737), (-2.5596144, 49.931477, 0.54406285), (0, 50, 0), (-2.6024628, 49.931477, 0.27352986), (-2.5845807, 49.931477, 0.40935737), (0, 50, 0), (-2.6132116, 49.931477, 0.13695261), (-2.6024628, 49.931477, 0.27352986), (0, 50, 0), (-2.616798, 49.931477, 3.204653e-16), (-2.6132116, 49.931477, 0.13695261), (0, 50, 0), (-2.6132116, 49.931477, -0.13695261), (-2.616798, 49.931477, 3.204653e-16), (0, 50, 0), (-2.6024628, 49.931477, -0.27352986), (-2.6132116, 49.931477, -0.13695261), (0, 50, 0), (-2.5845807, 49.931477, -0.40935737), (-2.6024628, 49.931477, -0.27352986), (0, 50, 0), (-2.5596144, 49.931477, -0.54406285), (-2.5845807, 49.931477, -0.40935737), (0, 50, 0), (-2.5276325, 49.931477, -0.6772771), (-2.5596144, 49.931477, -0.54406285), (0, 50, 0), (-2.4887226, 49.931477, -0.808635), (-2.5276325, 49.931477, -0.6772771), (0, 50, 0), (-2.4429913, 49.931477, -0.93777645), (-2.4887226, 49.931477, -0.808635), (0, 50, 0), (-2.3905637, 49.931477, -1.0643475), (-2.4429913, 49.931477, -0.93777645), (0, 50, 0), (-2.331584, 49.931477, -1.1880014), (-2.3905637, 49.931477, -1.0643475), (0, 50, 0), (-2.2662134, 49.931477, -1.308399), (-2.331584, 49.931477, -1.1880014), (0, 50, 0), (-2.1946313, 49.931477, -1.4252102), (-2.2662134, 49.931477, -1.308399), (0, 50, 0), (-2.117034, 49.931477, -1.5381151), (-2.1946313, 49.931477, -1.4252102), (0, 50, 0), (-2.033634, 49.931477, -1.6468042), (-2.117034, 49.931477, -1.5381151), (0, 50, 0), (-1.9446597, 49.931477, -1.7509795), (-2.033634, 49.931477, -1.6468042), (0, 50, 0), (-1.8503555, 49.931477, -1.8503555), (-1.9446597, 49.931477, -1.7509795), (0, 50, 0), (-1.7509795, 49.931477, -1.9446597), (-1.8503555, 49.931477, -1.8503555), (0, 50, 0), (-1.6468042, 49.931477, -2.033634), (-1.7509795, 49.931477, -1.9446597), (0, 50, 0), (-1.5381151, 49.931477, -2.117034), (-1.6468042, 49.931477, -2.033634), (0, 50, 0), (-1.4252102, 49.931477, -2.1946313), (-1.5381151, 49.931477, -2.117034), (0, 50, 0), (-1.308399, 49.931477, -2.2662134), (-1.4252102, 49.931477, -2.1946313), (0, 50, 0), (-1.1880014, 49.931477, -2.331584), (-1.308399, 49.931477, -2.2662134), (0, 50, 0), (-1.0643475, 49.931477, -2.3905637), (-1.1880014, 49.931477, -2.331584), (0, 50, 0), (-0.93777645, 49.931477, -2.4429913), (-1.0643475, 49.931477, -2.3905637), (0, 50, 0), (-0.808635, 49.931477, -2.4887226), (-0.93777645, 49.931477, -2.4429913), (0, 50, 0), (-0.6772771, 49.931477, -2.5276325), (-0.808635, 49.931477, -2.4887226), (0, 50, 0), (-0.54406285, 49.931477, -2.5596144), (-0.6772771, 49.931477, -2.5276325), (0, 50, 0), (-0.40935737, 49.931477, -2.5845807), (-0.54406285, 49.931477, -2.5596144), (0, 50, 0), (-0.27352986, 49.931477, -2.6024628), (-0.40935737, 49.931477, -2.5845807), (0, 50, 0), (-0.13695261, 49.931477, -2.6132116), (-0.27352986, 49.931477, -2.6024628), (0, 50, 0), (-4.80698e-16, 49.931477, -2.616798), (-0.13695261, 49.931477, -2.6132116), (0, 50, 0), (0.13695261, 49.931477, -2.6132116), (-4.80698e-16, 49.931477, -2.616798), (0, 50, 0), (0.27352986, 49.931477, -2.6024628), (0.13695261, 49.931477, -2.6132116), (0, 50, 0), (0.40935737, 49.931477, -2.5845807), (0.27352986, 49.931477, -2.6024628), (0, 50, 0), (0.54406285, 49.931477, -2.5596144), (0.40935737, 49.931477, -2.5845807), (0, 50, 0), (0.6772771, 49.931477, -2.5276325), (0.54406285, 49.931477, -2.5596144), (0, 50, 0), (0.808635, 49.931477, -2.4887226), (0.6772771, 49.931477, -2.5276325), (0, 50, 0), (0.93777645, 49.931477, -2.4429913), (0.808635, 49.931477, -2.4887226), (0, 50, 0), (1.0643475, 49.931477, -2.3905637), (0.93777645, 49.931477, -2.4429913), (0, 50, 0), (1.1880014, 49.931477, -2.331584), (1.0643475, 49.931477, -2.3905637), (0, 50, 0), (1.308399, 49.931477, -2.2662134), (1.1880014, 49.931477, -2.331584), (0, 50, 0), (1.4252102, 49.931477, -2.1946313), (1.308399, 49.931477, -2.2662134), (0, 50, 0), (1.5381151, 49.931477, -2.117034), (1.4252102, 49.931477, -2.1946313), (0, 50, 0), (1.6468042, 49.931477, -2.033634), (1.5381151, 49.931477, -2.117034), (0, 50, 0), (1.7509795, 49.931477, -1.9446597), (1.6468042, 49.931477, -2.033634), (0, 50, 0), (1.8503555, 49.931477, -1.8503555), (1.7509795, 49.931477, -1.9446597), (0, 50, 0), (1.9446597, 49.931477, -1.7509795), (1.8503555, 49.931477, -1.8503555), (0, 50, 0), (2.033634, 49.931477, -1.6468042), (1.9446597, 49.931477, -1.7509795), (0, 50, 0), (2.117034, 49.931477, -1.5381151), (2.033634, 49.931477, -1.6468042), (0, 50, 0), (2.1946313, 49.931477, -1.4252102), (2.117034, 49.931477, -1.5381151), (0, 50, 0), (2.2662134, 49.931477, -1.308399), (2.1946313, 49.931477, -1.4252102), (0, 50, 0), (2.331584, 49.931477, -1.1880014), (2.2662134, 49.931477, -1.308399), (0, 50, 0), (2.3905637, 49.931477, -1.0643475), (2.331584, 49.931477, -1.1880014), (0, 50, 0), (2.4429913, 49.931477, -0.93777645), (2.3905637, 49.931477, -1.0643475), (0, 50, 0), (2.4887226, 49.931477, -0.808635), (2.4429913, 49.931477, -0.93777645), (0, 50, 0), (2.5276325, 49.931477, -0.6772771), (2.4887226, 49.931477, -0.808635), (0, 50, 0), (2.5596144, 49.931477, -0.54406285), (2.5276325, 49.931477, -0.6772771), (0, 50, 0), (2.5845807, 49.931477, -0.40935737), (2.5596144, 49.931477, -0.54406285), (0, 50, 0), (2.6024628, 49.931477, -0.27352986), (2.5845807, 49.931477, -0.40935737), (0, 50, 0), (2.6132116, 49.931477, -0.13695261), (2.6024628, 49.931477, -0.27352986), (0, 50, 0), (2.616798, 49.931477, 0), (2.6132116, 49.931477, -0.13695261)] ( interpolation = "faceVarying" ) point3f[] points = [(0, -50, 0), (2.616798, -49.931477, 0), (2.6132116, -49.931477, 0.13695261), (2.6024628, -49.931477, 0.27352986), (2.5845807, -49.931477, 0.40935737), (2.5596144, -49.931477, 0.54406285), (2.5276325, -49.931477, 0.6772771), (2.4887226, -49.931477, 0.808635), (2.4429913, -49.931477, 0.93777645), (2.3905637, -49.931477, 1.0643475), (2.331584, -49.931477, 1.1880014), (2.2662134, -49.931477, 1.308399), (2.1946313, -49.931477, 1.4252102), (2.117034, -49.931477, 1.5381151), (2.033634, -49.931477, 1.6468042), (1.9446597, -49.931477, 1.7509795), (1.8503555, -49.931477, 1.8503555), (1.7509795, -49.931477, 1.9446597), (1.6468042, -49.931477, 2.033634), (1.5381151, -49.931477, 2.117034), (1.4252102, -49.931477, 2.1946313), (1.308399, -49.931477, 2.2662134), (1.1880014, -49.931477, 2.331584), (1.0643475, -49.931477, 2.3905637), (0.93777645, -49.931477, 2.4429913), (0.808635, -49.931477, 2.4887226), (0.6772771, -49.931477, 2.5276325), (0.54406285, -49.931477, 2.5596144), (0.40935737, -49.931477, 2.5845807), (0.27352986, -49.931477, 2.6024628), (0.13695261, -49.931477, 2.6132116), (1.6023265e-16, -49.931477, 2.616798), (-0.13695261, -49.931477, 2.6132116), (-0.27352986, -49.931477, 2.6024628), (-0.40935737, -49.931477, 2.5845807), (-0.54406285, -49.931477, 2.5596144), (-0.6772771, -49.931477, 2.5276325), (-0.808635, -49.931477, 2.4887226), (-0.93777645, -49.931477, 2.4429913), (-1.0643475, -49.931477, 2.3905637), (-1.1880014, -49.931477, 2.331584), (-1.308399, -49.931477, 2.2662134), (-1.4252102, -49.931477, 2.1946313), (-1.5381151, -49.931477, 2.117034), (-1.6468042, -49.931477, 2.033634), (-1.7509795, -49.931477, 1.9446597), (-1.8503555, -49.931477, 1.8503555), (-1.9446597, -49.931477, 1.7509795), (-2.033634, -49.931477, 1.6468042), (-2.117034, -49.931477, 1.5381151), (-2.1946313, -49.931477, 1.4252102), (-2.2662134, -49.931477, 1.308399), (-2.331584, -49.931477, 1.1880014), (-2.3905637, -49.931477, 1.0643475), (-2.4429913, -49.931477, 0.93777645), (-2.4887226, -49.931477, 0.808635), (-2.5276325, -49.931477, 0.6772771), (-2.5596144, -49.931477, 0.54406285), (-2.5845807, -49.931477, 0.40935737), (-2.6024628, -49.931477, 0.27352986), (-2.6132116, -49.931477, 0.13695261), (-2.616798, -49.931477, 3.204653e-16), (-2.6132116, -49.931477, -0.13695261), (-2.6024628, -49.931477, -0.27352986), (-2.5845807, -49.931477, -0.40935737), (-2.5596144, -49.931477, -0.54406285), (-2.5276325, -49.931477, -0.6772771), (-2.4887226, -49.931477, -0.808635), (-2.4429913, -49.931477, -0.93777645), (-2.3905637, -49.931477, -1.0643475), (-2.331584, -49.931477, -1.1880014), (-2.2662134, -49.931477, -1.308399), (-2.1946313, -49.931477, -1.4252102), (-2.117034, -49.931477, -1.5381151), (-2.033634, -49.931477, -1.6468042), (-1.9446597, -49.931477, -1.7509795), (-1.8503555, -49.931477, -1.8503555), (-1.7509795, -49.931477, -1.9446597), (-1.6468042, -49.931477, -2.033634), (-1.5381151, -49.931477, -2.117034), (-1.4252102, -49.931477, -2.1946313), (-1.308399, -49.931477, -2.2662134), (-1.1880014, -49.931477, -2.331584), (-1.0643475, -49.931477, -2.3905637), (-0.93777645, -49.931477, -2.4429913), (-0.808635, -49.931477, -2.4887226), (-0.6772771, -49.931477, -2.5276325), (-0.54406285, -49.931477, -2.5596144), (-0.40935737, -49.931477, -2.5845807), (-0.27352986, -49.931477, -2.6024628), (-0.13695261, -49.931477, -2.6132116), (-4.80698e-16, -49.931477, -2.616798), (0.13695261, -49.931477, -2.6132116), (0.27352986, -49.931477, -2.6024628), (0.40935737, -49.931477, -2.5845807), (0.54406285, -49.931477, -2.5596144), (0.6772771, -49.931477, -2.5276325), (0.808635, -49.931477, -2.4887226), (0.93777645, -49.931477, -2.4429913), (1.0643475, -49.931477, -2.3905637), (1.1880014, -49.931477, -2.331584), (1.308399, -49.931477, -2.2662134), (1.4252102, -49.931477, -2.1946313), (1.5381151, -49.931477, -2.117034), (1.6468042, -49.931477, -2.033634), (1.7509795, -49.931477, -1.9446597), (1.8503555, -49.931477, -1.8503555), (1.9446597, -49.931477, -1.7509795), (2.033634, -49.931477, -1.6468042), (2.117034, -49.931477, -1.5381151), (2.1946313, -49.931477, -1.4252102), (2.2662134, -49.931477, -1.308399), (2.331584, -49.931477, -1.1880014), (2.3905637, -49.931477, -1.0643475), (2.4429913, -49.931477, -0.93777645), (2.4887226, -49.931477, -0.808635), (2.5276325, -49.931477, -0.6772771), (2.5596144, -49.931477, -0.54406285), (2.5845807, -49.931477, -0.40935737), (2.6024628, -49.931477, -0.27352986), (2.6132116, -49.931477, -0.13695261), (5.2264233, -49.726093, 0), (5.2192607, -49.726093, 0.27352986), (5.197792, -49.726093, 0.54631), (5.1620774, -49.726093, 0.81759274), (5.112213, -49.726093, 1.0866345), (5.048337, -49.726093, 1.3526978), (4.970624, -49.726093, 1.6150535), (4.8792863, -49.726093, 1.8729825), (4.774575, -49.726093, 2.1257777), (4.656777, -49.726093, 2.3727465), (4.526215, -49.726093, 2.6132116), (4.3832474, -49.726093, 2.846514), (4.2282653, -49.726093, 3.0720146), (4.0616937, -49.726093, 3.2890947), (3.8839893, -49.726093, 3.4971597), (3.6956394, -49.726093, 3.6956394), (3.4971597, -49.726093, 3.8839893), (3.2890947, -49.726093, 4.0616937), (3.0720146, -49.726093, 4.2282653), (2.846514, -49.726093, 4.3832474), (2.6132116, -49.726093, 4.526215), (2.3727465, -49.726093, 4.656777), (2.1257777, -49.726093, 4.774575), (1.8729825, -49.726093, 4.8792863), (1.6150535, -49.726093, 4.970624), (1.3526978, -49.726093, 5.048337), (1.0866345, -49.726093, 5.112213), (0.81759274, -49.726093, 5.1620774), (0.54631, -49.726093, 5.197792), (0.27352986, -49.726093, 5.2192607), (3.2002612e-16, -49.726093, 5.2264233), (-0.27352986, -49.726093, 5.2192607), (-0.54631, -49.726093, 5.197792), (-0.81759274, -49.726093, 5.1620774), (-1.0866345, -49.726093, 5.112213), (-1.3526978, -49.726093, 5.048337), (-1.6150535, -49.726093, 4.970624), (-1.8729825, -49.726093, 4.8792863), (-2.1257777, -49.726093, 4.774575), (-2.3727465, -49.726093, 4.656777), (-2.6132116, -49.726093, 4.526215), (-2.846514, -49.726093, 4.3832474), (-3.0720146, -49.726093, 4.2282653), (-3.2890947, -49.726093, 4.0616937), (-3.4971597, -49.726093, 3.8839893), (-3.6956394, -49.726093, 3.6956394), (-3.8839893, -49.726093, 3.4971597), (-4.0616937, -49.726093, 3.2890947), (-4.2282653, -49.726093, 3.0720146), (-4.3832474, -49.726093, 2.846514), (-4.526215, -49.726093, 2.6132116), (-4.656777, -49.726093, 2.3727465), (-4.774575, -49.726093, 2.1257777), (-4.8792863, -49.726093, 1.8729825), (-4.970624, -49.726093, 1.6150535), (-5.048337, -49.726093, 1.3526978), (-5.112213, -49.726093, 1.0866345), (-5.1620774, -49.726093, 0.81759274), (-5.197792, -49.726093, 0.54631), (-5.2192607, -49.726093, 0.27352986), (-5.2264233, -49.726093, 6.4005224e-16), (-5.2192607, -49.726093, -0.27352986), (-5.197792, -49.726093, -0.54631), (-5.1620774, -49.726093, -0.81759274), (-5.112213, -49.726093, -1.0866345), (-5.048337, -49.726093, -1.3526978), (-4.970624, -49.726093, -1.6150535), (-4.8792863, -49.726093, -1.8729825), (-4.774575, -49.726093, -2.1257777), (-4.656777, -49.726093, -2.3727465), (-4.526215, -49.726093, -2.6132116), (-4.3832474, -49.726093, -2.846514), (-4.2282653, -49.726093, -3.0720146), (-4.0616937, -49.726093, -3.2890947), (-3.8839893, -49.726093, -3.4971597), (-3.6956394, -49.726093, -3.6956394), (-3.4971597, -49.726093, -3.8839893), (-3.2890947, -49.726093, -4.0616937), (-3.0720146, -49.726093, -4.2282653), (-2.846514, -49.726093, -4.3832474), (-2.6132116, -49.726093, -4.526215), (-2.3727465, -49.726093, -4.656777), (-2.1257777, -49.726093, -4.774575), (-1.8729825, -49.726093, -4.8792863), (-1.6150535, -49.726093, -4.970624), (-1.3526978, -49.726093, -5.048337), (-1.0866345, -49.726093, -5.112213), (-0.81759274, -49.726093, -5.1620774), (-0.54631, -49.726093, -5.197792), (-0.27352986, -49.726093, -5.2192607), (-9.600784e-16, -49.726093, -5.2264233), (0.27352986, -49.726093, -5.2192607), (0.54631, -49.726093, -5.197792), (0.81759274, -49.726093, -5.1620774), (1.0866345, -49.726093, -5.112213), (1.3526978, -49.726093, -5.048337), (1.6150535, -49.726093, -4.970624), (1.8729825, -49.726093, -4.8792863), (2.1257777, -49.726093, -4.774575), (2.3727465, -49.726093, -4.656777), (2.6132116, -49.726093, -4.526215), (2.846514, -49.726093, -4.3832474), (3.0720146, -49.726093, -4.2282653), (3.2890947, -49.726093, -4.0616937), (3.4971597, -49.726093, -3.8839893), (3.6956394, -49.726093, -3.6956394), (3.8839893, -49.726093, -3.4971597), (4.0616937, -49.726093, -3.2890947), (4.2282653, -49.726093, -3.0720146), (4.3832474, -49.726093, -2.846514), (4.526215, -49.726093, -2.6132116), (4.656777, -49.726093, -2.3727465), (4.774575, -49.726093, -2.1257777), (4.8792863, -49.726093, -1.8729825), (4.970624, -49.726093, -1.6150535), (5.048337, -49.726093, -1.3526978), (5.112213, -49.726093, -1.0866345), (5.1620774, -49.726093, -0.81759274), (5.197792, -49.726093, -0.54631), (5.2192607, -49.726093, -0.27352986), (7.8217235, -49.38442, 0), (7.8110037, -49.38442, 0.40935737), (7.778875, -49.38442, 0.81759274), (7.725425, -49.38442, 1.223587), (7.6507998, -49.38442, 1.6262277), (7.5552044, -49.38442, 2.024411), (7.438901, -49.38442, 2.4170454), (7.302208, -49.38442, 2.8030548), (7.1454997, -49.38442, 3.1813815), (6.9692063, -49.38442, 3.550988), (6.773811, -49.38442, 3.9108617), (6.5598493, -49.38442, 4.260016), (6.327907, -49.38442, 4.5974936), (6.0786204, -49.38442, 4.92237), (5.812673, -49.38442, 5.2337546), (5.5307937, -49.38442, 5.5307937), (5.2337546, -49.38442, 5.812673), (4.92237, -49.38442, 6.0786204), (4.5974936, -49.38442, 6.327907), (4.260016, -49.38442, 6.5598493), (3.9108617, -49.38442, 6.773811), (3.550988, -49.38442, 6.9692063), (3.1813815, -49.38442, 7.1454997), (2.8030548, -49.38442, 7.302208), (2.4170454, -49.38442, 7.438901), (2.024411, -49.38442, 7.5552044), (1.6262277, -49.38442, 7.6507998), (1.223587, -49.38442, 7.725425), (0.81759274, -49.38442, 7.778875), (0.40935737, -49.38442, 7.8110037), (4.789424e-16, -49.38442, 7.8217235), (-0.40935737, -49.38442, 7.8110037), (-0.81759274, -49.38442, 7.778875), (-1.223587, -49.38442, 7.725425), (-1.6262277, -49.38442, 7.6507998), (-2.024411, -49.38442, 7.5552044), (-2.4170454, -49.38442, 7.438901), (-2.8030548, -49.38442, 7.302208), (-3.1813815, -49.38442, 7.1454997), (-3.550988, -49.38442, 6.9692063), (-3.9108617, -49.38442, 6.773811), (-4.260016, -49.38442, 6.5598493), (-4.5974936, -49.38442, 6.327907), (-4.92237, -49.38442, 6.0786204), (-5.2337546, -49.38442, 5.812673), (-5.5307937, -49.38442, 5.5307937), (-5.812673, -49.38442, 5.2337546), (-6.0786204, -49.38442, 4.92237), (-6.327907, -49.38442, 4.5974936), (-6.5598493, -49.38442, 4.260016), (-6.773811, -49.38442, 3.9108617), (-6.9692063, -49.38442, 3.550988), (-7.1454997, -49.38442, 3.1813815), (-7.302208, -49.38442, 2.8030548), (-7.438901, -49.38442, 2.4170454), (-7.5552044, -49.38442, 2.024411), (-7.6507998, -49.38442, 1.6262277), (-7.725425, -49.38442, 1.223587), (-7.778875, -49.38442, 0.81759274), (-7.8110037, -49.38442, 0.40935737), (-7.8217235, -49.38442, 9.578848e-16), (-7.8110037, -49.38442, -0.40935737), (-7.778875, -49.38442, -0.81759274), (-7.725425, -49.38442, -1.223587), (-7.6507998, -49.38442, -1.6262277), (-7.5552044, -49.38442, -2.024411), (-7.438901, -49.38442, -2.4170454), (-7.302208, -49.38442, -2.8030548), (-7.1454997, -49.38442, -3.1813815), (-6.9692063, -49.38442, -3.550988), (-6.773811, -49.38442, -3.9108617), (-6.5598493, -49.38442, -4.260016), (-6.327907, -49.38442, -4.5974936), (-6.0786204, -49.38442, -4.92237), (-5.812673, -49.38442, -5.2337546), (-5.5307937, -49.38442, -5.5307937), (-5.2337546, -49.38442, -5.812673), (-4.92237, -49.38442, -6.0786204), (-4.5974936, -49.38442, -6.327907), (-4.260016, -49.38442, -6.5598493), (-3.9108617, -49.38442, -6.773811), (-3.550988, -49.38442, -6.9692063), (-3.1813815, -49.38442, -7.1454997), (-2.8030548, -49.38442, -7.302208), (-2.4170454, -49.38442, -7.438901), (-2.024411, -49.38442, -7.5552044), (-1.6262277, -49.38442, -7.6507998), (-1.223587, -49.38442, -7.725425), (-0.81759274, -49.38442, -7.778875), (-0.40935737, -49.38442, -7.8110037), (-1.4368273e-15, -49.38442, -7.8217235), (0.40935737, -49.38442, -7.8110037), (0.81759274, -49.38442, -7.778875), (1.223587, -49.38442, -7.725425), (1.6262277, -49.38442, -7.6507998), (2.024411, -49.38442, -7.5552044), (2.4170454, -49.38442, -7.438901), (2.8030548, -49.38442, -7.302208), (3.1813815, -49.38442, -7.1454997), (3.550988, -49.38442, -6.9692063), (3.9108617, -49.38442, -6.773811), (4.260016, -49.38442, -6.5598493), (4.5974936, -49.38442, -6.327907), (4.92237, -49.38442, -6.0786204), (5.2337546, -49.38442, -5.812673), (5.5307937, -49.38442, -5.5307937), (5.812673, -49.38442, -5.2337546), (6.0786204, -49.38442, -4.92237), (6.327907, -49.38442, -4.5974936), (6.5598493, -49.38442, -4.260016), (6.773811, -49.38442, -3.9108617), (6.9692063, -49.38442, -3.550988), (7.1454997, -49.38442, -3.1813815), (7.302208, -49.38442, -2.8030548), (7.438901, -49.38442, -2.4170454), (7.5552044, -49.38442, -2.024411), (7.6507998, -49.38442, -1.6262277), (7.725425, -49.38442, -1.223587), (7.778875, -49.38442, -0.81759274), (7.8110037, -49.38442, -0.40935737), (10.395584, -48.90738, 0), (10.381338, -48.90738, 0.54406285), (10.338636, -48.90738, 1.0866345), (10.267597, -48.90738, 1.6262277), (10.168416, -48.90738, 2.1613636), (10.041364, -48.90738, 2.6905754), (9.886788, -48.90738, 3.2124124), (9.705114, -48.90738, 3.7254443), (9.496839, -48.90738, 4.2282653), (9.262533, -48.90738, 4.7194967), (9.00284, -48.90738, 5.197792), (8.718471, -48.90738, 5.661841), (8.410205, -48.90738, 6.110371), (8.078887, -48.90738, 6.5421534), (7.725425, -48.90738, 6.9560037), (7.350788, -48.90738, 7.350788), (6.9560037, -48.90738, 7.725425), (6.5421534, -48.90738, 8.078887), (6.110371, -48.90738, 8.410205), (5.661841, -48.90738, 8.718471), (5.197792, -48.90738, 9.00284), (4.7194967, -48.90738, 9.262533), (4.2282653, -48.90738, 9.496839), (3.7254443, -48.90738, 9.705114), (3.2124124, -48.90738, 9.886788), (2.6905754, -48.90738, 10.041364), (2.1613636, -48.90738, 10.168416), (1.6262277, -48.90738, 10.267597), (1.0866345, -48.90738, 10.338636), (0.54406285, -48.90738, 10.381338), (6.3654595e-16, -48.90738, 10.395584), (-0.54406285, -48.90738, 10.381338), (-1.0866345, -48.90738, 10.338636), (-1.6262277, -48.90738, 10.267597), (-2.1613636, -48.90738, 10.168416), (-2.6905754, -48.90738, 10.041364), (-3.2124124, -48.90738, 9.886788), (-3.7254443, -48.90738, 9.705114), (-4.2282653, -48.90738, 9.496839), (-4.7194967, -48.90738, 9.262533), (-5.197792, -48.90738, 9.00284), (-5.661841, -48.90738, 8.718471), (-6.110371, -48.90738, 8.410205), (-6.5421534, -48.90738, 8.078887), (-6.9560037, -48.90738, 7.725425), (-7.350788, -48.90738, 7.350788), (-7.725425, -48.90738, 6.9560037), (-8.078887, -48.90738, 6.5421534), (-8.410205, -48.90738, 6.110371), (-8.718471, -48.90738, 5.661841), (-9.00284, -48.90738, 5.197792), (-9.262533, -48.90738, 4.7194967), (-9.496839, -48.90738, 4.2282653), (-9.705114, -48.90738, 3.7254443), (-9.886788, -48.90738, 3.2124124), (-10.041364, -48.90738, 2.6905754), (-10.168416, -48.90738, 2.1613636), (-10.267597, -48.90738, 1.6262277), (-10.338636, -48.90738, 1.0866345), (-10.381338, -48.90738, 0.54406285), (-10.395584, -48.90738, 1.2730919e-15), (-10.381338, -48.90738, -0.54406285), (-10.338636, -48.90738, -1.0866345), (-10.267597, -48.90738, -1.6262277), (-10.168416, -48.90738, -2.1613636), (-10.041364, -48.90738, -2.6905754), (-9.886788, -48.90738, -3.2124124), (-9.705114, -48.90738, -3.7254443), (-9.496839, -48.90738, -4.2282653), (-9.262533, -48.90738, -4.7194967), (-9.00284, -48.90738, -5.197792), (-8.718471, -48.90738, -5.661841), (-8.410205, -48.90738, -6.110371), (-8.078887, -48.90738, -6.5421534), (-7.725425, -48.90738, -6.9560037), (-7.350788, -48.90738, -7.350788), (-6.9560037, -48.90738, -7.725425), (-6.5421534, -48.90738, -8.078887), (-6.110371, -48.90738, -8.410205), (-5.661841, -48.90738, -8.718471), (-5.197792, -48.90738, -9.00284), (-4.7194967, -48.90738, -9.262533), (-4.2282653, -48.90738, -9.496839), (-3.7254443, -48.90738, -9.705114), (-3.2124124, -48.90738, -9.886788), (-2.6905754, -48.90738, -10.041364), (-2.1613636, -48.90738, -10.168416), (-1.6262277, -48.90738, -10.267597), (-1.0866345, -48.90738, -10.338636), (-0.54406285, -48.90738, -10.381338), (-1.909638e-15, -48.90738, -10.395584), (0.54406285, -48.90738, -10.381338), (1.0866345, -48.90738, -10.338636), (1.6262277, -48.90738, -10.267597), (2.1613636, -48.90738, -10.168416), (2.6905754, -48.90738, -10.041364), (3.2124124, -48.90738, -9.886788), (3.7254443, -48.90738, -9.705114), (4.2282653, -48.90738, -9.496839), (4.7194967, -48.90738, -9.262533), (5.197792, -48.90738, -9.00284), (5.661841, -48.90738, -8.718471), (6.110371, -48.90738, -8.410205), (6.5421534, -48.90738, -8.078887), (6.9560037, -48.90738, -7.725425), (7.350788, -48.90738, -7.350788), (7.725425, -48.90738, -6.9560037), (8.078887, -48.90738, -6.5421534), (8.410205, -48.90738, -6.110371), (8.718471, -48.90738, -5.661841), (9.00284, -48.90738, -5.197792), (9.262533, -48.90738, -4.7194967), (9.496839, -48.90738, -4.2282653), (9.705114, -48.90738, -3.7254443), (9.886788, -48.90738, -3.2124124), (10.041364, -48.90738, -2.6905754), (10.168416, -48.90738, -2.1613636), (10.267597, -48.90738, -1.6262277), (10.338636, -48.90738, -1.0866345), (10.381338, -48.90738, -0.54406285), (12.940952, -48.29629, 0), (12.923217, -48.29629, 0.6772771), (12.87006, -48.29629, 1.3526978), (12.781628, -48.29629, 2.024411), (12.658161, -48.29629, 2.6905754), (12.5, -48.29629, 3.349365), (12.307577, -48.29629, 3.998974), (12.08142, -48.29629, 4.6376224), (11.822148, -48.29629, 5.2635593), (11.530473, -48.29629, 5.8750696), (11.207193, -48.29629, 6.470476), (10.853196, -48.29629, 7.0481477), (10.46945, -48.29629, 7.606501), (10.057009, -48.29629, 8.144005), (9.617002, -48.29629, 8.659187), (9.150635, -48.29629, 9.150635), (8.659187, -48.29629, 9.617002), (8.144005, -48.29629, 10.057009), (7.606501, -48.29629, 10.46945), (7.0481477, -48.29629, 10.853196), (6.470476, -48.29629, 11.207193), (5.8750696, -48.29629, 11.530473), (5.2635593, -48.29629, 11.822148), (4.6376224, -48.29629, 12.08142), (3.998974, -48.29629, 12.307577), (3.349365, -48.29629, 12.5), (2.6905754, -48.29629, 12.658161), (2.024411, -48.29629, 12.781628), (1.3526978, -48.29629, 12.87006), (0.6772771, -48.29629, 12.923217), (7.924048e-16, -48.29629, 12.940952), (-0.6772771, -48.29629, 12.923217), (-1.3526978, -48.29629, 12.87006), (-2.024411, -48.29629, 12.781628), (-2.6905754, -48.29629, 12.658161), (-3.349365, -48.29629, 12.5), (-3.998974, -48.29629, 12.307577), (-4.6376224, -48.29629, 12.08142), (-5.2635593, -48.29629, 11.822148), (-5.8750696, -48.29629, 11.530473), (-6.470476, -48.29629, 11.207193), (-7.0481477, -48.29629, 10.853196), (-7.606501, -48.29629, 10.46945), (-8.144005, -48.29629, 10.057009), (-8.659187, -48.29629, 9.617002), (-9.150635, -48.29629, 9.150635), (-9.617002, -48.29629, 8.659187), (-10.057009, -48.29629, 8.144005), (-10.46945, -48.29629, 7.606501), (-10.853196, -48.29629, 7.0481477), (-11.207193, -48.29629, 6.470476), (-11.530473, -48.29629, 5.8750696), (-11.822148, -48.29629, 5.2635593), (-12.08142, -48.29629, 4.6376224), (-12.307577, -48.29629, 3.998974), (-12.5, -48.29629, 3.349365), (-12.658161, -48.29629, 2.6905754), (-12.781628, -48.29629, 2.024411), (-12.87006, -48.29629, 1.3526978), (-12.923217, -48.29629, 0.6772771), (-12.940952, -48.29629, 1.5848095e-15), (-12.923217, -48.29629, -0.6772771), (-12.87006, -48.29629, -1.3526978), (-12.781628, -48.29629, -2.024411), (-12.658161, -48.29629, -2.6905754), (-12.5, -48.29629, -3.349365), (-12.307577, -48.29629, -3.998974), (-12.08142, -48.29629, -4.6376224), (-11.822148, -48.29629, -5.2635593), (-11.530473, -48.29629, -5.8750696), (-11.207193, -48.29629, -6.470476), (-10.853196, -48.29629, -7.0481477), (-10.46945, -48.29629, -7.606501), (-10.057009, -48.29629, -8.144005), (-9.617002, -48.29629, -8.659187), (-9.150635, -48.29629, -9.150635), (-8.659187, -48.29629, -9.617002), (-8.144005, -48.29629, -10.057009), (-7.606501, -48.29629, -10.46945), (-7.0481477, -48.29629, -10.853196), (-6.470476, -48.29629, -11.207193), (-5.8750696, -48.29629, -11.530473), (-5.2635593, -48.29629, -11.822148), (-4.6376224, -48.29629, -12.08142), (-3.998974, -48.29629, -12.307577), (-3.349365, -48.29629, -12.5), (-2.6905754, -48.29629, -12.658161), (-2.024411, -48.29629, -12.781628), (-1.3526978, -48.29629, -12.87006), (-0.6772771, -48.29629, -12.923217), (-2.3772143e-15, -48.29629, -12.940952), (0.6772771, -48.29629, -12.923217), (1.3526978, -48.29629, -12.87006), (2.024411, -48.29629, -12.781628), (2.6905754, -48.29629, -12.658161), (3.349365, -48.29629, -12.5), (3.998974, -48.29629, -12.307577), (4.6376224, -48.29629, -12.08142), (5.2635593, -48.29629, -11.822148), (5.8750696, -48.29629, -11.530473), (6.470476, -48.29629, -11.207193), (7.0481477, -48.29629, -10.853196), (7.606501, -48.29629, -10.46945), (8.144005, -48.29629, -10.057009), (8.659187, -48.29629, -9.617002), (9.150635, -48.29629, -9.150635), (9.617002, -48.29629, -8.659187), (10.057009, -48.29629, -8.144005), (10.46945, -48.29629, -7.606501), (10.853196, -48.29629, -7.0481477), (11.207193, -48.29629, -6.470476), (11.530473, -48.29629, -5.8750696), (11.822148, -48.29629, -5.2635593), (12.08142, -48.29629, -4.6376224), (12.307577, -48.29629, -3.998974), (12.5, -48.29629, -3.349365), (12.658161, -48.29629, -2.6905754), (12.781628, -48.29629, -2.024411), (12.87006, -48.29629, -1.3526978), (12.923217, -48.29629, -0.6772771), (15.45085, -47.552826, 0), (15.429675, -47.552826, 0.808635), (15.366208, -47.552826, 1.6150535), (15.260624, -47.552826, 2.4170454), (15.113212, -47.552826, 3.2124124), (14.924375, -47.552826, 3.998974), (14.694632, -47.552826, 4.774575), (14.424611, -47.552826, 5.5370893), (14.115053, -47.552826, 6.2844267), (13.766808, -47.552826, 7.014539), (13.380828, -47.552826, 7.725425), (12.958173, -47.552826, 8.415136), (12.5, -47.552826, 9.081781), (12.0075655, -47.552826, 9.723535), (11.482219, -47.552826, 10.338636), (10.925401, -47.552826, 10.925401), (10.338636, -47.552826, 11.482219), (9.723535, -47.552826, 12.0075655), (9.081781, -47.552826, 12.5), (8.415136, -47.552826, 12.958173), (7.725425, -47.552826, 13.380828), (7.014539, -47.552826, 13.766808), (6.2844267, -47.552826, 14.115053), (5.5370893, -47.552826, 14.424611), (4.774575, -47.552826, 14.694632), (3.998974, -47.552826, 14.924375), (3.2124124, -47.552826, 15.113212), (2.4170454, -47.552826, 15.260624), (1.6150535, -47.552826, 15.366208), (0.808635, -47.552826, 15.429675), (9.460917e-16, -47.552826, 15.45085), (-0.808635, -47.552826, 15.429675), (-1.6150535, -47.552826, 15.366208), (-2.4170454, -47.552826, 15.260624), (-3.2124124, -47.552826, 15.113212), (-3.998974, -47.552826, 14.924375), (-4.774575, -47.552826, 14.694632), (-5.5370893, -47.552826, 14.424611), (-6.2844267, -47.552826, 14.115053), (-7.014539, -47.552826, 13.766808), (-7.725425, -47.552826, 13.380828), (-8.415136, -47.552826, 12.958173), (-9.081781, -47.552826, 12.5), (-9.723535, -47.552826, 12.0075655), (-10.338636, -47.552826, 11.482219), (-10.925401, -47.552826, 10.925401), (-11.482219, -47.552826, 10.338636), (-12.0075655, -47.552826, 9.723535), (-12.5, -47.552826, 9.081781), (-12.958173, -47.552826, 8.415136), (-13.380828, -47.552826, 7.725425), (-13.766808, -47.552826, 7.014539), (-14.115053, -47.552826, 6.2844267), (-14.424611, -47.552826, 5.5370893), (-14.694632, -47.552826, 4.774575), (-14.924375, -47.552826, 3.998974), (-15.113212, -47.552826, 3.2124124), (-15.260624, -47.552826, 2.4170454), (-15.366208, -47.552826, 1.6150535), (-15.429675, -47.552826, 0.808635), (-15.45085, -47.552826, 1.8921833e-15), (-15.429675, -47.552826, -0.808635), (-15.366208, -47.552826, -1.6150535), (-15.260624, -47.552826, -2.4170454), (-15.113212, -47.552826, -3.2124124), (-14.924375, -47.552826, -3.998974), (-14.694632, -47.552826, -4.774575), (-14.424611, -47.552826, -5.5370893), (-14.115053, -47.552826, -6.2844267), (-13.766808, -47.552826, -7.014539), (-13.380828, -47.552826, -7.725425), (-12.958173, -47.552826, -8.415136), (-12.5, -47.552826, -9.081781), (-12.0075655, -47.552826, -9.723535), (-11.482219, -47.552826, -10.338636), (-10.925401, -47.552826, -10.925401), (-10.338636, -47.552826, -11.482219), (-9.723535, -47.552826, -12.0075655), (-9.081781, -47.552826, -12.5), (-8.415136, -47.552826, -12.958173), (-7.725425, -47.552826, -13.380828), (-7.014539, -47.552826, -13.766808), (-6.2844267, -47.552826, -14.115053), (-5.5370893, -47.552826, -14.424611), (-4.774575, -47.552826, -14.694632), (-3.998974, -47.552826, -14.924375), (-3.2124124, -47.552826, -15.113212), (-2.4170454, -47.552826, -15.260624), (-1.6150535, -47.552826, -15.366208), (-0.808635, -47.552826, -15.429675), (-2.838275e-15, -47.552826, -15.45085), (0.808635, -47.552826, -15.429675), (1.6150535, -47.552826, -15.366208), (2.4170454, -47.552826, -15.260624), (3.2124124, -47.552826, -15.113212), (3.998974, -47.552826, -14.924375), (4.774575, -47.552826, -14.694632), (5.5370893, -47.552826, -14.424611), (6.2844267, -47.552826, -14.115053), (7.014539, -47.552826, -13.766808), (7.725425, -47.552826, -13.380828), (8.415136, -47.552826, -12.958173), (9.081781, -47.552826, -12.5), (9.723535, -47.552826, -12.0075655), (10.338636, -47.552826, -11.482219), (10.925401, -47.552826, -10.925401), (11.482219, -47.552826, -10.338636), (12.0075655, -47.552826, -9.723535), (12.5, -47.552826, -9.081781), (12.958173, -47.552826, -8.415136), (13.380828, -47.552826, -7.725425), (13.766808, -47.552826, -7.014539), (14.115053, -47.552826, -6.2844267), (14.424611, -47.552826, -5.5370893), (14.694632, -47.552826, -4.774575), (14.924375, -47.552826, -3.998974), (15.113212, -47.552826, -3.2124124), (15.260624, -47.552826, -2.4170454), (15.366208, -47.552826, -1.6150535), (15.429675, -47.552826, -0.808635), (17.918398, -46.67902, 0), (17.89384, -46.67902, 0.93777645), (17.820238, -46.67902, 1.8729825), (17.697792, -46.67902, 2.8030548), (17.526838, -46.67902, 3.7254443), (17.307842, -46.67902, 4.6376224), (17.041409, -46.67902, 5.5370893), (16.728266, -46.67902, 6.4213796), (16.36927, -46.67902, 7.288069), (15.965409, -46.67902, 8.134782), (15.517787, -46.67902, 8.959199), (15.027633, -46.67902, 9.759059), (14.496288, -46.67902, 10.532169), (13.92521, -46.67902, 11.276413), (13.315965, -46.67902, 11.989748), (12.67022, -46.67902, 12.67022), (11.989748, -46.67902, 13.315965), (11.276413, -46.67902, 13.92521), (10.532169, -46.67902, 14.496288), (9.759059, -46.67902, 15.027633), (8.959199, -46.67902, 15.517787), (8.134782, -46.67902, 15.965409), (7.288069, -46.67902, 16.36927), (6.4213796, -46.67902, 16.728266), (5.5370893, -46.67902, 17.041409), (4.6376224, -46.67902, 17.307842), (3.7254443, -46.67902, 17.526838), (2.8030548, -46.67902, 17.697792), (1.8729825, -46.67902, 17.820238), (0.93777645, -46.67902, 17.89384), (1.0971854e-15, -46.67902, 17.918398), (-0.93777645, -46.67902, 17.89384), (-1.8729825, -46.67902, 17.820238), (-2.8030548, -46.67902, 17.697792), (-3.7254443, -46.67902, 17.526838), (-4.6376224, -46.67902, 17.307842), (-5.5370893, -46.67902, 17.041409), (-6.4213796, -46.67902, 16.728266), (-7.288069, -46.67902, 16.36927), (-8.134782, -46.67902, 15.965409), (-8.959199, -46.67902, 15.517787), (-9.759059, -46.67902, 15.027633), (-10.532169, -46.67902, 14.496288), (-11.276413, -46.67902, 13.92521), (-11.989748, -46.67902, 13.315965), (-12.67022, -46.67902, 12.67022), (-13.315965, -46.67902, 11.989748), (-13.92521, -46.67902, 11.276413), (-14.496288, -46.67902, 10.532169), (-15.027633, -46.67902, 9.759059), (-15.517787, -46.67902, 8.959199), (-15.965409, -46.67902, 8.134782), (-16.36927, -46.67902, 7.288069), (-16.728266, -46.67902, 6.4213796), (-17.041409, -46.67902, 5.5370893), (-17.307842, -46.67902, 4.6376224), (-17.526838, -46.67902, 3.7254443), (-17.697792, -46.67902, 2.8030548), (-17.820238, -46.67902, 1.8729825), (-17.89384, -46.67902, 0.93777645), (-17.918398, -46.67902, 2.1943708e-15), (-17.89384, -46.67902, -0.93777645), (-17.820238, -46.67902, -1.8729825), (-17.697792, -46.67902, -2.8030548), (-17.526838, -46.67902, -3.7254443), (-17.307842, -46.67902, -4.6376224), (-17.041409, -46.67902, -5.5370893), (-16.728266, -46.67902, -6.4213796), (-16.36927, -46.67902, -7.288069), (-15.965409, -46.67902, -8.134782), (-15.517787, -46.67902, -8.959199), (-15.027633, -46.67902, -9.759059), (-14.496288, -46.67902, -10.532169), (-13.92521, -46.67902, -11.276413), (-13.315965, -46.67902, -11.989748), (-12.67022, -46.67902, -12.67022), (-11.989748, -46.67902, -13.315965), (-11.276413, -46.67902, -13.92521), (-10.532169, -46.67902, -14.496288), (-9.759059, -46.67902, -15.027633), (-8.959199, -46.67902, -15.517787), (-8.134782, -46.67902, -15.965409), (-7.288069, -46.67902, -16.36927), (-6.4213796, -46.67902, -16.728266), (-5.5370893, -46.67902, -17.041409), (-4.6376224, -46.67902, -17.307842), (-3.7254443, -46.67902, -17.526838), (-2.8030548, -46.67902, -17.697792), (-1.8729825, -46.67902, -17.820238), (-0.93777645, -46.67902, -17.89384), (-3.2915563e-15, -46.67902, -17.918398), (0.93777645, -46.67902, -17.89384), (1.8729825, -46.67902, -17.820238), (2.8030548, -46.67902, -17.697792), (3.7254443, -46.67902, -17.526838), (4.6376224, -46.67902, -17.307842), (5.5370893, -46.67902, -17.041409), (6.4213796, -46.67902, -16.728266), (7.288069, -46.67902, -16.36927), (8.134782, -46.67902, -15.965409), (8.959199, -46.67902, -15.517787), (9.759059, -46.67902, -15.027633), (10.532169, -46.67902, -14.496288), (11.276413, -46.67902, -13.92521), (11.989748, -46.67902, -13.315965), (12.67022, -46.67902, -12.67022), (13.315965, -46.67902, -11.989748), (13.92521, -46.67902, -11.276413), (14.496288, -46.67902, -10.532169), (15.027633, -46.67902, -9.759059), (15.517787, -46.67902, -8.959199), (15.965409, -46.67902, -8.134782), (16.36927, -46.67902, -7.288069), (16.728266, -46.67902, -6.4213796), (17.041409, -46.67902, -5.5370893), (17.307842, -46.67902, -4.6376224), (17.526838, -46.67902, -3.7254443), (17.697792, -46.67902, -2.8030548), (17.820238, -46.67902, -1.8729825), (17.89384, -46.67902, -0.93777645), (20.336832, -45.677273, 0), (20.308962, -45.677273, 1.0643475), (20.225426, -45.677273, 2.1257777), (20.086452, -45.677273, 3.1813815), (19.892424, -45.677273, 4.2282653), (19.643871, -45.677273, 5.2635593), (19.341476, -45.677273, 6.2844267), (18.986069, -45.677273, 7.288069), (18.57862, -45.677273, 8.271735), (18.12025, -45.677273, 9.232729), (17.612213, -45.677273, 10.168416), (17.055902, -45.677273, 11.076233), (16.452843, -45.677273, 11.95369), (15.804687, -45.677273, 12.798383), (15.113212, -45.677273, 13.607997), (14.380312, -45.677273, 14.380312), (13.607997, -45.677273, 15.113212), (12.798383, -45.677273, 15.804687), (11.95369, -45.677273, 16.452843), (11.076233, -45.677273, 17.055902), (10.168416, -45.677273, 17.612213), (9.232729, -45.677273, 18.12025), (8.271735, -45.677273, 18.57862), (7.288069, -45.677273, 18.986069), (6.2844267, -45.677273, 19.341476), (5.2635593, -45.677273, 19.643871), (4.2282653, -45.677273, 19.892424), (3.1813815, -45.677273, 20.086452), (2.1257777, -45.677273, 20.225426), (1.0643475, -45.677273, 20.308962), (1.2452718e-15, -45.677273, 20.336832), (-1.0643475, -45.677273, 20.308962), (-2.1257777, -45.677273, 20.225426), (-3.1813815, -45.677273, 20.086452), (-4.2282653, -45.677273, 19.892424), (-5.2635593, -45.677273, 19.643871), (-6.2844267, -45.677273, 19.341476), (-7.288069, -45.677273, 18.986069), (-8.271735, -45.677273, 18.57862), (-9.232729, -45.677273, 18.12025), (-10.168416, -45.677273, 17.612213), (-11.076233, -45.677273, 17.055902), (-11.95369, -45.677273, 16.452843), (-12.798383, -45.677273, 15.804687), (-13.607997, -45.677273, 15.113212), (-14.380312, -45.677273, 14.380312), (-15.113212, -45.677273, 13.607997), (-15.804687, -45.677273, 12.798383), (-16.452843, -45.677273, 11.95369), (-17.055902, -45.677273, 11.076233), (-17.612213, -45.677273, 10.168416), (-18.12025, -45.677273, 9.232729), (-18.57862, -45.677273, 8.271735), (-18.986069, -45.677273, 7.288069), (-19.341476, -45.677273, 6.2844267), (-19.643871, -45.677273, 5.2635593), (-19.892424, -45.677273, 4.2282653), (-20.086452, -45.677273, 3.1813815), (-20.225426, -45.677273, 2.1257777), (-20.308962, -45.677273, 1.0643475), (-20.336832, -45.677273, 2.4905437e-15), (-20.308962, -45.677273, -1.0643475), (-20.225426, -45.677273, -2.1257777), (-20.086452, -45.677273, -3.1813815), (-19.892424, -45.677273, -4.2282653), (-19.643871, -45.677273, -5.2635593), (-19.341476, -45.677273, -6.2844267), (-18.986069, -45.677273, -7.288069), (-18.57862, -45.677273, -8.271735), (-18.12025, -45.677273, -9.232729), (-17.612213, -45.677273, -10.168416), (-17.055902, -45.677273, -11.076233), (-16.452843, -45.677273, -11.95369), (-15.804687, -45.677273, -12.798383), (-15.113212, -45.677273, -13.607997), (-14.380312, -45.677273, -14.380312), (-13.607997, -45.677273, -15.113212), (-12.798383, -45.677273, -15.804687), (-11.95369, -45.677273, -16.452843), (-11.076233, -45.677273, -17.055902), (-10.168416, -45.677273, -17.612213), (-9.232729, -45.677273, -18.12025), (-8.271735, -45.677273, -18.57862), (-7.288069, -45.677273, -18.986069), (-6.2844267, -45.677273, -19.341476), (-5.2635593, -45.677273, -19.643871), (-4.2282653, -45.677273, -19.892424), (-3.1813815, -45.677273, -20.086452), (-2.1257777, -45.677273, -20.225426), (-1.0643475, -45.677273, -20.308962), (-3.7358155e-15, -45.677273, -20.336832), (1.0643475, -45.677273, -20.308962), (2.1257777, -45.677273, -20.225426), (3.1813815, -45.677273, -20.086452), (4.2282653, -45.677273, -19.892424), (5.2635593, -45.677273, -19.643871), (6.2844267, -45.677273, -19.341476), (7.288069, -45.677273, -18.986069), (8.271735, -45.677273, -18.57862), (9.232729, -45.677273, -18.12025), (10.168416, -45.677273, -17.612213), (11.076233, -45.677273, -17.055902), (11.95369, -45.677273, -16.452843), (12.798383, -45.677273, -15.804687), (13.607997, -45.677273, -15.113212), (14.380312, -45.677273, -14.380312), (15.113212, -45.677273, -13.607997), (15.804687, -45.677273, -12.798383), (16.452843, -45.677273, -11.95369), (17.055902, -45.677273, -11.076233), (17.612213, -45.677273, -10.168416), (18.12025, -45.677273, -9.232729), (18.57862, -45.677273, -8.271735), (18.986069, -45.677273, -7.288069), (19.341476, -45.677273, -6.2844267), (19.643871, -45.677273, -5.2635593), (19.892424, -45.677273, -4.2282653), (20.086452, -45.677273, -3.1813815), (20.225426, -45.677273, -2.1257777), (20.308962, -45.677273, -1.0643475), (22.699526, -44.550327, 0), (22.668417, -44.550327, 1.1880014), (22.575174, -44.550327, 2.3727465), (22.420055, -44.550327, 3.550988), (22.203485, -44.550327, 4.7194967), (21.926058, -44.550327, 5.8750696), (21.588531, -44.550327, 7.014539), (21.191832, -44.550327, 8.134782), (20.737047, -44.550327, 9.232729), (20.225426, -44.550327, 10.305368), (19.658365, -44.550327, 11.349763), (19.037424, -44.550327, 12.363048), (18.364302, -44.550327, 13.342446), (17.640844, -44.550327, 14.285274), (16.869034, -44.550327, 15.188947), (16.050987, -44.550327, 16.050987), (15.188947, -44.550327, 16.869034), (14.285274, -44.550327, 17.640844), (13.342446, -44.550327, 18.364302), (12.363048, -44.550327, 19.037424), (11.349763, -44.550327, 19.658365), (10.305368, -44.550327, 20.225426), (9.232729, -44.550327, 20.737047), (8.134782, -44.550327, 21.191832), (7.014539, -44.550327, 21.588531), (5.8750696, -44.550327, 21.926058), (4.7194967, -44.550327, 22.203485), (3.550988, -44.550327, 22.420055), (2.3727465, -44.550327, 22.575174), (1.1880014, -44.550327, 22.668417), (1.3899451e-15, -44.550327, 22.699526), (-1.1880014, -44.550327, 22.668417), (-2.3727465, -44.550327, 22.575174), (-3.550988, -44.550327, 22.420055), (-4.7194967, -44.550327, 22.203485), (-5.8750696, -44.550327, 21.926058), (-7.014539, -44.550327, 21.588531), (-8.134782, -44.550327, 21.191832), (-9.232729, -44.550327, 20.737047), (-10.305368, -44.550327, 20.225426), (-11.349763, -44.550327, 19.658365), (-12.363048, -44.550327, 19.037424), (-13.342446, -44.550327, 18.364302), (-14.285274, -44.550327, 17.640844), (-15.188947, -44.550327, 16.869034), (-16.050987, -44.550327, 16.050987), (-16.869034, -44.550327, 15.188947), (-17.640844, -44.550327, 14.285274), (-18.364302, -44.550327, 13.342446), (-19.037424, -44.550327, 12.363048), (-19.658365, -44.550327, 11.349763), (-20.225426, -44.550327, 10.305368), (-20.737047, -44.550327, 9.232729), (-21.191832, -44.550327, 8.134782), (-21.588531, -44.550327, 7.014539), (-21.926058, -44.550327, 5.8750696), (-22.203485, -44.550327, 4.7194967), (-22.420055, -44.550327, 3.550988), (-22.575174, -44.550327, 2.3727465), (-22.668417, -44.550327, 1.1880014), (-22.699526, -44.550327, 2.7798901e-15), (-22.668417, -44.550327, -1.1880014), (-22.575174, -44.550327, -2.3727465), (-22.420055, -44.550327, -3.550988), (-22.203485, -44.550327, -4.7194967), (-21.926058, -44.550327, -5.8750696), (-21.588531, -44.550327, -7.014539), (-21.191832, -44.550327, -8.134782), (-20.737047, -44.550327, -9.232729), (-20.225426, -44.550327, -10.305368), (-19.658365, -44.550327, -11.349763), (-19.037424, -44.550327, -12.363048), (-18.364302, -44.550327, -13.342446), (-17.640844, -44.550327, -14.285274), (-16.869034, -44.550327, -15.188947), (-16.050987, -44.550327, -16.050987), (-15.188947, -44.550327, -16.869034), (-14.285274, -44.550327, -17.640844), (-13.342446, -44.550327, -18.364302), (-12.363048, -44.550327, -19.037424), (-11.349763, -44.550327, -19.658365), (-10.305368, -44.550327, -20.225426), (-9.232729, -44.550327, -20.737047), (-8.134782, -44.550327, -21.191832), (-7.014539, -44.550327, -21.588531), (-5.8750696, -44.550327, -21.926058), (-4.7194967, -44.550327, -22.203485), (-3.550988, -44.550327, -22.420055), (-2.3727465, -44.550327, -22.575174), (-1.1880014, -44.550327, -22.668417), (-4.169835e-15, -44.550327, -22.699526), (1.1880014, -44.550327, -22.668417), (2.3727465, -44.550327, -22.575174), (3.550988, -44.550327, -22.420055), (4.7194967, -44.550327, -22.203485), (5.8750696, -44.550327, -21.926058), (7.014539, -44.550327, -21.588531), (8.134782, -44.550327, -21.191832), (9.232729, -44.550327, -20.737047), (10.305368, -44.550327, -20.225426), (11.349763, -44.550327, -19.658365), (12.363048, -44.550327, -19.037424), (13.342446, -44.550327, -18.364302), (14.285274, -44.550327, -17.640844), (15.188947, -44.550327, -16.869034), (16.050987, -44.550327, -16.050987), (16.869034, -44.550327, -15.188947), (17.640844, -44.550327, -14.285274), (18.364302, -44.550327, -13.342446), (19.037424, -44.550327, -12.363048), (19.658365, -44.550327, -11.349763), (20.225426, -44.550327, -10.305368), (20.737047, -44.550327, -9.232729), (21.191832, -44.550327, -8.134782), (21.588531, -44.550327, -7.014539), (21.926058, -44.550327, -5.8750696), (22.203485, -44.550327, -4.7194967), (22.420055, -44.550327, -3.550988), (22.575174, -44.550327, -2.3727465), (22.668417, -44.550327, -1.1880014), (25, -43.30127, 0), (24.965738, -43.30127, 1.308399), (24.863047, -43.30127, 2.6132116), (24.69221, -43.30127, 3.9108617), (24.45369, -43.30127, 5.197792), (24.148146, -43.30127, 6.470476), (23.776413, -43.30127, 7.725425), (23.33951, -43.30127, 8.959199), (22.838636, -43.30127, 10.168416), (22.275164, -43.30127, 11.349763), (21.650635, -43.30127, 12.5), (20.966764, -43.30127, 13.615976), (20.225426, -43.30127, 14.694632), (19.42865, -43.30127, 15.733009), (18.57862, -43.30127, 16.728266), (17.67767, -43.30127, 17.67767), (16.728266, -43.30127, 18.57862), (15.733009, -43.30127, 19.42865), (14.694632, -43.30127, 20.225426), (13.615976, -43.30127, 20.966764), (12.5, -43.30127, 21.650635), (11.349763, -43.30127, 22.275164), (10.168416, -43.30127, 22.838636), (8.959199, -43.30127, 23.33951), (7.725425, -43.30127, 23.776413), (6.470476, -43.30127, 24.148146), (5.197792, -43.30127, 24.45369), (3.9108617, -43.30127, 24.69221), (2.6132116, -43.30127, 24.863047), (1.308399, -43.30127, 24.965738), (1.5308084e-15, -43.30127, 25), (-1.308399, -43.30127, 24.965738), (-2.6132116, -43.30127, 24.863047), (-3.9108617, -43.30127, 24.69221), (-5.197792, -43.30127, 24.45369), (-6.470476, -43.30127, 24.148146), (-7.725425, -43.30127, 23.776413), (-8.959199, -43.30127, 23.33951), (-10.168416, -43.30127, 22.838636), (-11.349763, -43.30127, 22.275164), (-12.5, -43.30127, 21.650635), (-13.615976, -43.30127, 20.966764), (-14.694632, -43.30127, 20.225426), (-15.733009, -43.30127, 19.42865), (-16.728266, -43.30127, 18.57862), (-17.67767, -43.30127, 17.67767), (-18.57862, -43.30127, 16.728266), (-19.42865, -43.30127, 15.733009), (-20.225426, -43.30127, 14.694632), (-20.966764, -43.30127, 13.615976), (-21.650635, -43.30127, 12.5), (-22.275164, -43.30127, 11.349763), (-22.838636, -43.30127, 10.168416), (-23.33951, -43.30127, 8.959199), (-23.776413, -43.30127, 7.725425), (-24.148146, -43.30127, 6.470476), (-24.45369, -43.30127, 5.197792), (-24.69221, -43.30127, 3.9108617), (-24.863047, -43.30127, 2.6132116), (-24.965738, -43.30127, 1.308399), (-25, -43.30127, 3.0616169e-15), (-24.965738, -43.30127, -1.308399), (-24.863047, -43.30127, -2.6132116), (-24.69221, -43.30127, -3.9108617), (-24.45369, -43.30127, -5.197792), (-24.148146, -43.30127, -6.470476), (-23.776413, -43.30127, -7.725425), (-23.33951, -43.30127, -8.959199), (-22.838636, -43.30127, -10.168416), (-22.275164, -43.30127, -11.349763), (-21.650635, -43.30127, -12.5), (-20.966764, -43.30127, -13.615976), (-20.225426, -43.30127, -14.694632), (-19.42865, -43.30127, -15.733009), (-18.57862, -43.30127, -16.728266), (-17.67767, -43.30127, -17.67767), (-16.728266, -43.30127, -18.57862), (-15.733009, -43.30127, -19.42865), (-14.694632, -43.30127, -20.225426), (-13.615976, -43.30127, -20.966764), (-12.5, -43.30127, -21.650635), (-11.349763, -43.30127, -22.275164), (-10.168416, -43.30127, -22.838636), (-8.959199, -43.30127, -23.33951), (-7.725425, -43.30127, -23.776413), (-6.470476, -43.30127, -24.148146), (-5.197792, -43.30127, -24.45369), (-3.9108617, -43.30127, -24.69221), (-2.6132116, -43.30127, -24.863047), (-1.308399, -43.30127, -24.965738), (-4.5924254e-15, -43.30127, -25), (1.308399, -43.30127, -24.965738), (2.6132116, -43.30127, -24.863047), (3.9108617, -43.30127, -24.69221), (5.197792, -43.30127, -24.45369), (6.470476, -43.30127, -24.148146), (7.725425, -43.30127, -23.776413), (8.959199, -43.30127, -23.33951), (10.168416, -43.30127, -22.838636), (11.349763, -43.30127, -22.275164), (12.5, -43.30127, -21.650635), (13.615976, -43.30127, -20.966764), (14.694632, -43.30127, -20.225426), (15.733009, -43.30127, -19.42865), (16.728266, -43.30127, -18.57862), (17.67767, -43.30127, -17.67767), (18.57862, -43.30127, -16.728266), (19.42865, -43.30127, -15.733009), (20.225426, -43.30127, -14.694632), (20.966764, -43.30127, -13.615976), (21.650635, -43.30127, -12.5), (22.275164, -43.30127, -11.349763), (22.838636, -43.30127, -10.168416), (23.33951, -43.30127, -8.959199), (23.776413, -43.30127, -7.725425), (24.148146, -43.30127, -6.470476), (24.45369, -43.30127, -5.197792), (24.69221, -43.30127, -3.9108617), (24.863047, -43.30127, -2.6132116), (24.965738, -43.30127, -1.308399), (27.231953, -41.93353, 0), (27.194632, -41.93353, 1.4252102), (27.082773, -41.93353, 2.846514), (26.89668, -41.93353, 4.260016), (26.636868, -41.93353, 5.661841), (26.304045, -41.93353, 7.0481477), (25.899126, -41.93353, 8.415136), (25.423218, -41.93353, 9.759059), (24.877626, -41.93353, 11.076233), (24.263847, -41.93353, 12.363048), (23.583563, -41.93353, 13.615976), (22.838636, -41.93353, 14.831584), (22.031113, -41.93353, 16.00654), (21.1632, -41.93353, 17.137623), (20.237284, -41.93353, 18.221733), (19.255898, -41.93353, 19.255898), (18.221733, -41.93353, 20.237284), (17.137623, -41.93353, 21.1632), (16.00654, -41.93353, 22.031113), (14.831584, -41.93353, 22.838636), (13.615976, -41.93353, 23.583563), (12.363048, -41.93353, 24.263847), (11.076233, -41.93353, 24.877626), (9.759059, -41.93353, 25.423218), (8.415136, -41.93353, 25.899126), (7.0481477, -41.93353, 26.304045), (5.661841, -41.93353, 26.636868), (4.260016, -41.93353, 26.89668), (2.846514, -41.93353, 27.082773), (1.4252102, -41.93353, 27.194632), (1.6674762e-15, -41.93353, 27.231953), (-1.4252102, -41.93353, 27.194632), (-2.846514, -41.93353, 27.082773), (-4.260016, -41.93353, 26.89668), (-5.661841, -41.93353, 26.636868), (-7.0481477, -41.93353, 26.304045), (-8.415136, -41.93353, 25.899126), (-9.759059, -41.93353, 25.423218), (-11.076233, -41.93353, 24.877626), (-12.363048, -41.93353, 24.263847), (-13.615976, -41.93353, 23.583563), (-14.831584, -41.93353, 22.838636), (-16.00654, -41.93353, 22.031113), (-17.137623, -41.93353, 21.1632), (-18.221733, -41.93353, 20.237284), (-19.255898, -41.93353, 19.255898), (-20.237284, -41.93353, 18.221733), (-21.1632, -41.93353, 17.137623), (-22.031113, -41.93353, 16.00654), (-22.838636, -41.93353, 14.831584), (-23.583563, -41.93353, 13.615976), (-24.263847, -41.93353, 12.363048), (-24.877626, -41.93353, 11.076233), (-25.423218, -41.93353, 9.759059), (-25.899126, -41.93353, 8.415136), (-26.304045, -41.93353, 7.0481477), (-26.636868, -41.93353, 5.661841), (-26.89668, -41.93353, 4.260016), (-27.082773, -41.93353, 2.846514), (-27.194632, -41.93353, 1.4252102), (-27.231953, -41.93353, 3.3349523e-15), (-27.194632, -41.93353, -1.4252102), (-27.082773, -41.93353, -2.846514), (-26.89668, -41.93353, -4.260016), (-26.636868, -41.93353, -5.661841), (-26.304045, -41.93353, -7.0481477), (-25.899126, -41.93353, -8.415136), (-25.423218, -41.93353, -9.759059), (-24.877626, -41.93353, -11.076233), (-24.263847, -41.93353, -12.363048), (-23.583563, -41.93353, -13.615976), (-22.838636, -41.93353, -14.831584), (-22.031113, -41.93353, -16.00654), (-21.1632, -41.93353, -17.137623), (-20.237284, -41.93353, -18.221733), (-19.255898, -41.93353, -19.255898), (-18.221733, -41.93353, -20.237284), (-17.137623, -41.93353, -21.1632), (-16.00654, -41.93353, -22.031113), (-14.831584, -41.93353, -22.838636), (-13.615976, -41.93353, -23.583563), (-12.363048, -41.93353, -24.263847), (-11.076233, -41.93353, -24.877626), (-9.759059, -41.93353, -25.423218), (-8.415136, -41.93353, -25.899126), (-7.0481477, -41.93353, -26.304045), (-5.661841, -41.93353, -26.636868), (-4.260016, -41.93353, -26.89668), (-2.846514, -41.93353, -27.082773), (-1.4252102, -41.93353, -27.194632), (-5.0024284e-15, -41.93353, -27.231953), (1.4252102, -41.93353, -27.194632), (2.846514, -41.93353, -27.082773), (4.260016, -41.93353, -26.89668), (5.661841, -41.93353, -26.636868), (7.0481477, -41.93353, -26.304045), (8.415136, -41.93353, -25.899126), (9.759059, -41.93353, -25.423218), (11.076233, -41.93353, -24.877626), (12.363048, -41.93353, -24.263847), (13.615976, -41.93353, -23.583563), (14.831584, -41.93353, -22.838636), (16.00654, -41.93353, -22.031113), (17.137623, -41.93353, -21.1632), (18.221733, -41.93353, -20.237284), (19.255898, -41.93353, -19.255898), (20.237284, -41.93353, -18.221733), (21.1632, -41.93353, -17.137623), (22.031113, -41.93353, -16.00654), (22.838636, -41.93353, -14.831584), (23.583563, -41.93353, -13.615976), (24.263847, -41.93353, -12.363048), (24.877626, -41.93353, -11.076233), (25.423218, -41.93353, -9.759059), (25.899126, -41.93353, -8.415136), (26.304045, -41.93353, -7.0481477), (26.636868, -41.93353, -5.661841), (26.89668, -41.93353, -4.260016), (27.082773, -41.93353, -2.846514), (27.194632, -41.93353, -1.4252102), (29.389263, -40.45085, 0), (29.348986, -40.45085, 1.5381151), (29.228266, -40.45085, 3.0720146), (29.027431, -40.45085, 4.5974936), (28.747036, -40.45085, 6.110371), (28.387848, -40.45085, 7.606501), (27.95085, -40.45085, 9.081781), (27.43724, -40.45085, 10.532169), (26.848427, -40.45085, 11.95369), (26.186026, -40.45085, 13.342446), (25.451847, -40.45085, 14.694632), (24.64791, -40.45085, 16.00654), (23.776413, -40.45085, 17.274574), (22.839746, -40.45085, 18.495262), (21.840479, -40.45085, 19.665255), (20.781347, -40.45085, 20.781347), (19.665255, -40.45085, 21.840479), (18.495262, -40.45085, 22.839746), (17.274574, -40.45085, 23.776413), (16.00654, -40.45085, 24.64791), (14.694632, -40.45085, 25.451847), (13.342446, -40.45085, 26.186026), (11.95369, -40.45085, 26.848427), (10.532169, -40.45085, 27.43724), (9.081781, -40.45085, 27.95085), (7.606501, -40.45085, 28.387848), (6.110371, -40.45085, 28.747036), (4.5974936, -40.45085, 29.027431), (3.0720146, -40.45085, 29.228266), (1.5381151, -40.45085, 29.348986), (1.7995734e-15, -40.45085, 29.389263), (-1.5381151, -40.45085, 29.348986), (-3.0720146, -40.45085, 29.228266), (-4.5974936, -40.45085, 29.027431), (-6.110371, -40.45085, 28.747036), (-7.606501, -40.45085, 28.387848), (-9.081781, -40.45085, 27.95085), (-10.532169, -40.45085, 27.43724), (-11.95369, -40.45085, 26.848427), (-13.342446, -40.45085, 26.186026), (-14.694632, -40.45085, 25.451847), (-16.00654, -40.45085, 24.64791), (-17.274574, -40.45085, 23.776413), (-18.495262, -40.45085, 22.839746), (-19.665255, -40.45085, 21.840479), (-20.781347, -40.45085, 20.781347), (-21.840479, -40.45085, 19.665255), (-22.839746, -40.45085, 18.495262), (-23.776413, -40.45085, 17.274574), (-24.64791, -40.45085, 16.00654), (-25.451847, -40.45085, 14.694632), (-26.186026, -40.45085, 13.342446), (-26.848427, -40.45085, 11.95369), (-27.43724, -40.45085, 10.532169), (-27.95085, -40.45085, 9.081781), (-28.387848, -40.45085, 7.606501), (-28.747036, -40.45085, 6.110371), (-29.027431, -40.45085, 4.5974936), (-29.228266, -40.45085, 3.0720146), (-29.348986, -40.45085, 1.5381151), (-29.389263, -40.45085, 3.5991468e-15), (-29.348986, -40.45085, -1.5381151), (-29.228266, -40.45085, -3.0720146), (-29.027431, -40.45085, -4.5974936), (-28.747036, -40.45085, -6.110371), (-28.387848, -40.45085, -7.606501), (-27.95085, -40.45085, -9.081781), (-27.43724, -40.45085, -10.532169), (-26.848427, -40.45085, -11.95369), (-26.186026, -40.45085, -13.342446), (-25.451847, -40.45085, -14.694632), (-24.64791, -40.45085, -16.00654), (-23.776413, -40.45085, -17.274574), (-22.839746, -40.45085, -18.495262), (-21.840479, -40.45085, -19.665255), (-20.781347, -40.45085, -20.781347), (-19.665255, -40.45085, -21.840479), (-18.495262, -40.45085, -22.839746), (-17.274574, -40.45085, -23.776413), (-16.00654, -40.45085, -24.64791), (-14.694632, -40.45085, -25.451847), (-13.342446, -40.45085, -26.186026), (-11.95369, -40.45085, -26.848427), (-10.532169, -40.45085, -27.43724), (-9.081781, -40.45085, -27.95085), (-7.606501, -40.45085, -28.387848), (-6.110371, -40.45085, -28.747036), (-4.5974936, -40.45085, -29.027431), (-3.0720146, -40.45085, -29.228266), (-1.5381151, -40.45085, -29.348986), (-5.39872e-15, -40.45085, -29.389263), (1.5381151, -40.45085, -29.348986), (3.0720146, -40.45085, -29.228266), (4.5974936, -40.45085, -29.027431), (6.110371, -40.45085, -28.747036), (7.606501, -40.45085, -28.387848), (9.081781, -40.45085, -27.95085), (10.532169, -40.45085, -27.43724), (11.95369, -40.45085, -26.848427), (13.342446, -40.45085, -26.186026), (14.694632, -40.45085, -25.451847), (16.00654, -40.45085, -24.64791), (17.274574, -40.45085, -23.776413), (18.495262, -40.45085, -22.839746), (19.665255, -40.45085, -21.840479), (20.781347, -40.45085, -20.781347), (21.840479, -40.45085, -19.665255), (22.839746, -40.45085, -18.495262), (23.776413, -40.45085, -17.274574), (24.64791, -40.45085, -16.00654), (25.451847, -40.45085, -14.694632), (26.186026, -40.45085, -13.342446), (26.848427, -40.45085, -11.95369), (27.43724, -40.45085, -10.532169), (27.95085, -40.45085, -9.081781), (28.387848, -40.45085, -7.606501), (28.747036, -40.45085, -6.110371), (29.027431, -40.45085, -4.5974936), (29.228266, -40.45085, -3.0720146), (29.348986, -40.45085, -1.5381151), (31.466019, -38.8573, 0), (31.422897, -38.8573, 1.6468042), (31.293646, -38.8573, 3.2890947), (31.07862, -38.8573, 4.92237), (30.778412, -38.8573, 6.5421534), (30.39384, -38.8573, 8.144005), (29.925962, -38.8573, 9.723535), (29.37606, -38.8573, 11.276413), (28.74564, -38.8573, 12.798383), (28.036428, -38.8573, 14.285274), (27.250372, -38.8573, 15.733009), (26.389624, -38.8573, 17.137623), (25.456545, -38.8573, 18.495262), (24.45369, -38.8573, 19.802208), (23.38381, -38.8573, 21.054876), (22.249836, -38.8573, 22.249836), (21.054876, -38.8573, 23.38381), (19.802208, -38.8573, 24.45369), (18.495262, -38.8573, 25.456545), (17.137623, -38.8573, 26.389624), (15.733009, -38.8573, 27.250372), (14.285274, -38.8573, 28.036428), (12.798383, -38.8573, 28.74564), (11.276413, -38.8573, 29.37606), (9.723535, -38.8573, 29.925962), (8.144005, -38.8573, 30.39384), (6.5421534, -38.8573, 30.778412), (4.92237, -38.8573, 31.07862), (3.2890947, -38.8573, 31.293646), (1.6468042, -38.8573, 31.422897), (1.926738e-15, -38.8573, 31.466019), (-1.6468042, -38.8573, 31.422897), (-3.2890947, -38.8573, 31.293646), (-4.92237, -38.8573, 31.07862), (-6.5421534, -38.8573, 30.778412), (-8.144005, -38.8573, 30.39384), (-9.723535, -38.8573, 29.925962), (-11.276413, -38.8573, 29.37606), (-12.798383, -38.8573, 28.74564), (-14.285274, -38.8573, 28.036428), (-15.733009, -38.8573, 27.250372), (-17.137623, -38.8573, 26.389624), (-18.495262, -38.8573, 25.456545), (-19.802208, -38.8573, 24.45369), (-21.054876, -38.8573, 23.38381), (-22.249836, -38.8573, 22.249836), (-23.38381, -38.8573, 21.054876), (-24.45369, -38.8573, 19.802208), (-25.456545, -38.8573, 18.495262), (-26.389624, -38.8573, 17.137623), (-27.250372, -38.8573, 15.733009), (-28.036428, -38.8573, 14.285274), (-28.74564, -38.8573, 12.798383), (-29.37606, -38.8573, 11.276413), (-29.925962, -38.8573, 9.723535), (-30.39384, -38.8573, 8.144005), (-30.778412, -38.8573, 6.5421534), (-31.07862, -38.8573, 4.92237), (-31.293646, -38.8573, 3.2890947), (-31.422897, -38.8573, 1.6468042), (-31.466019, -38.8573, 3.853476e-15), (-31.422897, -38.8573, -1.6468042), (-31.293646, -38.8573, -3.2890947), (-31.07862, -38.8573, -4.92237), (-30.778412, -38.8573, -6.5421534), (-30.39384, -38.8573, -8.144005), (-29.925962, -38.8573, -9.723535), (-29.37606, -38.8573, -11.276413), (-28.74564, -38.8573, -12.798383), (-28.036428, -38.8573, -14.285274), (-27.250372, -38.8573, -15.733009), (-26.389624, -38.8573, -17.137623), (-25.456545, -38.8573, -18.495262), (-24.45369, -38.8573, -19.802208), (-23.38381, -38.8573, -21.054876), (-22.249836, -38.8573, -22.249836), (-21.054876, -38.8573, -23.38381), (-19.802208, -38.8573, -24.45369), (-18.495262, -38.8573, -25.456545), (-17.137623, -38.8573, -26.389624), (-15.733009, -38.8573, -27.250372), (-14.285274, -38.8573, -28.036428), (-12.798383, -38.8573, -28.74564), (-11.276413, -38.8573, -29.37606), (-9.723535, -38.8573, -29.925962), (-8.144005, -38.8573, -30.39384), (-6.5421534, -38.8573, -30.778412), (-4.92237, -38.8573, -31.07862), (-3.2890947, -38.8573, -31.293646), (-1.6468042, -38.8573, -31.422897), (-5.780214e-15, -38.8573, -31.466019), (1.6468042, -38.8573, -31.422897), (3.2890947, -38.8573, -31.293646), (4.92237, -38.8573, -31.07862), (6.5421534, -38.8573, -30.778412), (8.144005, -38.8573, -30.39384), (9.723535, -38.8573, -29.925962), (11.276413, -38.8573, -29.37606), (12.798383, -38.8573, -28.74564), (14.285274, -38.8573, -28.036428), (15.733009, -38.8573, -27.250372), (17.137623, -38.8573, -26.389624), (18.495262, -38.8573, -25.456545), (19.802208, -38.8573, -24.45369), (21.054876, -38.8573, -23.38381), (22.249836, -38.8573, -22.249836), (23.38381, -38.8573, -21.054876), (24.45369, -38.8573, -19.802208), (25.456545, -38.8573, -18.495262), (26.389624, -38.8573, -17.137623), (27.250372, -38.8573, -15.733009), (28.036428, -38.8573, -14.285274), (28.74564, -38.8573, -12.798383), (29.37606, -38.8573, -11.276413), (29.925962, -38.8573, -9.723535), (30.39384, -38.8573, -8.144005), (30.778412, -38.8573, -6.5421534), (31.07862, -38.8573, -4.92237), (31.293646, -38.8573, -3.2890947), (31.422897, -38.8573, -1.6468042), (33.45653, -37.15724, 0), (33.41068, -37.15724, 1.7509795), (33.27325, -37.15724, 3.4971597), (33.044624, -37.15724, 5.2337546), (32.725426, -37.15724, 6.9560037), (32.31653, -37.15724, 8.659187), (31.819052, -37.15724, 10.338636), (31.234362, -37.15724, 11.989748), (30.564062, -37.15724, 13.607997), (29.809986, -37.15724, 15.188947), (28.974205, -37.15724, 16.728266), (28.059008, -37.15724, 18.221733), (27.066902, -37.15724, 19.665255), (26.000607, -37.15724, 21.054876), (24.863047, -37.15724, 22.38679), (23.65734, -37.15724, 23.65734), (22.38679, -37.15724, 24.863047), (21.054876, -37.15724, 26.000607), (19.665255, -37.15724, 27.066902), (18.221733, -37.15724, 28.059008), (16.728266, -37.15724, 28.974205), (15.188947, -37.15724, 29.809986), (13.607997, -37.15724, 30.564062), (11.989748, -37.15724, 31.234362), (10.338636, -37.15724, 31.819052), (8.659187, -37.15724, 32.31653), (6.9560037, -37.15724, 32.725426), (5.2337546, -37.15724, 33.044624), (3.4971597, -37.15724, 33.27325), (1.7509795, -37.15724, 33.41068), (2.0486216e-15, -37.15724, 33.45653), (-1.7509795, -37.15724, 33.41068), (-3.4971597, -37.15724, 33.27325), (-5.2337546, -37.15724, 33.044624), (-6.9560037, -37.15724, 32.725426), (-8.659187, -37.15724, 32.31653), (-10.338636, -37.15724, 31.819052), (-11.989748, -37.15724, 31.234362), (-13.607997, -37.15724, 30.564062), (-15.188947, -37.15724, 29.809986), (-16.728266, -37.15724, 28.974205), (-18.221733, -37.15724, 28.059008), (-19.665255, -37.15724, 27.066902), (-21.054876, -37.15724, 26.000607), (-22.38679, -37.15724, 24.863047), (-23.65734, -37.15724, 23.65734), (-24.863047, -37.15724, 22.38679), (-26.000607, -37.15724, 21.054876), (-27.066902, -37.15724, 19.665255), (-28.059008, -37.15724, 18.221733), (-28.974205, -37.15724, 16.728266), (-29.809986, -37.15724, 15.188947), (-30.564062, -37.15724, 13.607997), (-31.234362, -37.15724, 11.989748), (-31.819052, -37.15724, 10.338636), (-32.31653, -37.15724, 8.659187), (-32.725426, -37.15724, 6.9560037), (-33.044624, -37.15724, 5.2337546), (-33.27325, -37.15724, 3.4971597), (-33.41068, -37.15724, 1.7509795), (-33.45653, -37.15724, 4.097243e-15), (-33.41068, -37.15724, -1.7509795), (-33.27325, -37.15724, -3.4971597), (-33.044624, -37.15724, -5.2337546), (-32.725426, -37.15724, -6.9560037), (-32.31653, -37.15724, -8.659187), (-31.819052, -37.15724, -10.338636), (-31.234362, -37.15724, -11.989748), (-30.564062, -37.15724, -13.607997), (-29.809986, -37.15724, -15.188947), (-28.974205, -37.15724, -16.728266), (-28.059008, -37.15724, -18.221733), (-27.066902, -37.15724, -19.665255), (-26.000607, -37.15724, -21.054876), (-24.863047, -37.15724, -22.38679), (-23.65734, -37.15724, -23.65734), (-22.38679, -37.15724, -24.863047), (-21.054876, -37.15724, -26.000607), (-19.665255, -37.15724, -27.066902), (-18.221733, -37.15724, -28.059008), (-16.728266, -37.15724, -28.974205), (-15.188947, -37.15724, -29.809986), (-13.607997, -37.15724, -30.564062), (-11.989748, -37.15724, -31.234362), (-10.338636, -37.15724, -31.819052), (-8.659187, -37.15724, -32.31653), (-6.9560037, -37.15724, -32.725426), (-5.2337546, -37.15724, -33.044624), (-3.4971597, -37.15724, -33.27325), (-1.7509795, -37.15724, -33.41068), (-6.145865e-15, -37.15724, -33.45653), (1.7509795, -37.15724, -33.41068), (3.4971597, -37.15724, -33.27325), (5.2337546, -37.15724, -33.044624), (6.9560037, -37.15724, -32.725426), (8.659187, -37.15724, -32.31653), (10.338636, -37.15724, -31.819052), (11.989748, -37.15724, -31.234362), (13.607997, -37.15724, -30.564062), (15.188947, -37.15724, -29.809986), (16.728266, -37.15724, -28.974205), (18.221733, -37.15724, -28.059008), (19.665255, -37.15724, -27.066902), (21.054876, -37.15724, -26.000607), (22.38679, -37.15724, -24.863047), (23.65734, -37.15724, -23.65734), (24.863047, -37.15724, -22.38679), (26.000607, -37.15724, -21.054876), (27.066902, -37.15724, -19.665255), (28.059008, -37.15724, -18.221733), (28.974205, -37.15724, -16.728266), (29.809986, -37.15724, -15.188947), (30.564062, -37.15724, -13.607997), (31.234362, -37.15724, -11.989748), (31.819052, -37.15724, -10.338636), (32.31653, -37.15724, -8.659187), (32.725426, -37.15724, -6.9560037), (33.044624, -37.15724, -5.2337546), (33.27325, -37.15724, -3.4971597), (33.41068, -37.15724, -1.7509795), (35.35534, -35.35534, 0), (35.306885, -35.35534, 1.8503555), (35.16166, -35.35534, 3.6956394), (34.920055, -35.35534, 5.5307937), (34.58274, -35.35534, 7.350788), (34.150635, -35.35534, 9.150635), (33.624924, -35.35534, 10.925401), (33.007053, -35.35534, 12.67022), (32.29871, -35.35534, 14.380312), (31.501839, -35.35534, 16.050987), (30.618622, -35.35534, 17.67767), (29.651482, -35.35534, 19.255898), (28.60307, -35.35534, 20.781347), (27.47626, -35.35534, 22.249836), (26.274137, -35.35534, 23.65734), (25, -35.35534, 25), (23.65734, -35.35534, 26.274137), (22.249836, -35.35534, 27.47626), (20.781347, -35.35534, 28.60307), (19.255898, -35.35534, 29.651482), (17.67767, -35.35534, 30.618622), (16.050987, -35.35534, 31.501839), (14.380312, -35.35534, 32.29871), (12.67022, -35.35534, 33.007053), (10.925401, -35.35534, 33.624924), (9.150635, -35.35534, 34.150635), (7.350788, -35.35534, 34.58274), (5.5307937, -35.35534, 34.920055), (3.6956394, -35.35534, 35.16166), (1.8503555, -35.35534, 35.306885), (2.1648902e-15, -35.35534, 35.35534), (-1.8503555, -35.35534, 35.306885), (-3.6956394, -35.35534, 35.16166), (-5.5307937, -35.35534, 34.920055), (-7.350788, -35.35534, 34.58274), (-9.150635, -35.35534, 34.150635), (-10.925401, -35.35534, 33.624924), (-12.67022, -35.35534, 33.007053), (-14.380312, -35.35534, 32.29871), (-16.050987, -35.35534, 31.501839), (-17.67767, -35.35534, 30.618622), (-19.255898, -35.35534, 29.651482), (-20.781347, -35.35534, 28.60307), (-22.249836, -35.35534, 27.47626), (-23.65734, -35.35534, 26.274137), (-25, -35.35534, 25), (-26.274137, -35.35534, 23.65734), (-27.47626, -35.35534, 22.249836), (-28.60307, -35.35534, 20.781347), (-29.651482, -35.35534, 19.255898), (-30.618622, -35.35534, 17.67767), (-31.501839, -35.35534, 16.050987), (-32.29871, -35.35534, 14.380312), (-33.007053, -35.35534, 12.67022), (-33.624924, -35.35534, 10.925401), (-34.150635, -35.35534, 9.150635), (-34.58274, -35.35534, 7.350788), (-34.920055, -35.35534, 5.5307937), (-35.16166, -35.35534, 3.6956394), (-35.306885, -35.35534, 1.8503555), (-35.35534, -35.35534, 4.3297804e-15), (-35.306885, -35.35534, -1.8503555), (-35.16166, -35.35534, -3.6956394), (-34.920055, -35.35534, -5.5307937), (-34.58274, -35.35534, -7.350788), (-34.150635, -35.35534, -9.150635), (-33.624924, -35.35534, -10.925401), (-33.007053, -35.35534, -12.67022), (-32.29871, -35.35534, -14.380312), (-31.501839, -35.35534, -16.050987), (-30.618622, -35.35534, -17.67767), (-29.651482, -35.35534, -19.255898), (-28.60307, -35.35534, -20.781347), (-27.47626, -35.35534, -22.249836), (-26.274137, -35.35534, -23.65734), (-25, -35.35534, -25), (-23.65734, -35.35534, -26.274137), (-22.249836, -35.35534, -27.47626), (-20.781347, -35.35534, -28.60307), (-19.255898, -35.35534, -29.651482), (-17.67767, -35.35534, -30.618622), (-16.050987, -35.35534, -31.501839), (-14.380312, -35.35534, -32.29871), (-12.67022, -35.35534, -33.007053), (-10.925401, -35.35534, -33.624924), (-9.150635, -35.35534, -34.150635), (-7.350788, -35.35534, -34.58274), (-5.5307937, -35.35534, -34.920055), (-3.6956394, -35.35534, -35.16166), (-1.8503555, -35.35534, -35.306885), (-6.4946704e-15, -35.35534, -35.35534), (1.8503555, -35.35534, -35.306885), (3.6956394, -35.35534, -35.16166), (5.5307937, -35.35534, -34.920055), (7.350788, -35.35534, -34.58274), (9.150635, -35.35534, -34.150635), (10.925401, -35.35534, -33.624924), (12.67022, -35.35534, -33.007053), (14.380312, -35.35534, -32.29871), (16.050987, -35.35534, -31.501839), (17.67767, -35.35534, -30.618622), (19.255898, -35.35534, -29.651482), (20.781347, -35.35534, -28.60307), (22.249836, -35.35534, -27.47626), (23.65734, -35.35534, -26.274137), (25, -35.35534, -25), (26.274137, -35.35534, -23.65734), (27.47626, -35.35534, -22.249836), (28.60307, -35.35534, -20.781347), (29.651482, -35.35534, -19.255898), (30.618622, -35.35534, -17.67767), (31.501839, -35.35534, -16.050987), (32.29871, -35.35534, -14.380312), (33.007053, -35.35534, -12.67022), (33.624924, -35.35534, -10.925401), (34.150635, -35.35534, -9.150635), (34.58274, -35.35534, -7.350788), (34.920055, -35.35534, -5.5307937), (35.16166, -35.35534, -3.6956394), (35.306885, -35.35534, -1.8503555), (37.15724, -33.45653, 0), (37.10632, -33.45653, 1.9446597), (36.95369, -33.45653, 3.8839893), (36.699776, -33.45653, 5.812673), (36.34527, -33.45653, 7.725425), (35.89114, -33.45653, 9.617002), (35.33864, -33.45653, 11.482219), (34.689274, -33.45653, 13.315965), (33.944828, -33.45653, 15.113212), (33.107346, -33.45653, 16.869034), (32.179115, -33.45653, 18.57862), (31.162685, -33.45653, 20.237284), (30.06084, -33.45653, 21.840479), (28.8766, -33.45653, 23.38381), (27.61321, -33.45653, 24.863047), (26.274137, -33.45653, 26.274137), (24.863047, -33.45653, 27.61321), (23.38381, -33.45653, 28.8766), (21.840479, -33.45653, 30.06084), (20.237284, -33.45653, 31.162685), (18.57862, -33.45653, 32.179115), (16.869034, -33.45653, 33.107346), (15.113212, -33.45653, 33.944828), (13.315965, -33.45653, 34.689274), (11.482219, -33.45653, 35.33864), (9.617002, -33.45653, 35.89114), (7.725425, -33.45653, 36.34527), (5.812673, -33.45653, 36.699776), (3.8839893, -33.45653, 36.95369), (1.9446597, -33.45653, 37.10632), (2.2752247e-15, -33.45653, 37.15724), (-1.9446597, -33.45653, 37.10632), (-3.8839893, -33.45653, 36.95369), (-5.812673, -33.45653, 36.699776), (-7.725425, -33.45653, 36.34527), (-9.617002, -33.45653, 35.89114), (-11.482219, -33.45653, 35.33864), (-13.315965, -33.45653, 34.689274), (-15.113212, -33.45653, 33.944828), (-16.869034, -33.45653, 33.107346), (-18.57862, -33.45653, 32.179115), (-20.237284, -33.45653, 31.162685), (-21.840479, -33.45653, 30.06084), (-23.38381, -33.45653, 28.8766), (-24.863047, -33.45653, 27.61321), (-26.274137, -33.45653, 26.274137), (-27.61321, -33.45653, 24.863047), (-28.8766, -33.45653, 23.38381), (-30.06084, -33.45653, 21.840479), (-31.162685, -33.45653, 20.237284), (-32.179115, -33.45653, 18.57862), (-33.107346, -33.45653, 16.869034), (-33.944828, -33.45653, 15.113212), (-34.689274, -33.45653, 13.315965), (-35.33864, -33.45653, 11.482219), (-35.89114, -33.45653, 9.617002), (-36.34527, -33.45653, 7.725425), (-36.699776, -33.45653, 5.812673), (-36.95369, -33.45653, 3.8839893), (-37.10632, -33.45653, 1.9446597), (-37.15724, -33.45653, 4.5504495e-15), (-37.10632, -33.45653, -1.9446597), (-36.95369, -33.45653, -3.8839893), (-36.699776, -33.45653, -5.812673), (-36.34527, -33.45653, -7.725425), (-35.89114, -33.45653, -9.617002), (-35.33864, -33.45653, -11.482219), (-34.689274, -33.45653, -13.315965), (-33.944828, -33.45653, -15.113212), (-33.107346, -33.45653, -16.869034), (-32.179115, -33.45653, -18.57862), (-31.162685, -33.45653, -20.237284), (-30.06084, -33.45653, -21.840479), (-28.8766, -33.45653, -23.38381), (-27.61321, -33.45653, -24.863047), (-26.274137, -33.45653, -26.274137), (-24.863047, -33.45653, -27.61321), (-23.38381, -33.45653, -28.8766), (-21.840479, -33.45653, -30.06084), (-20.237284, -33.45653, -31.162685), (-18.57862, -33.45653, -32.179115), (-16.869034, -33.45653, -33.107346), (-15.113212, -33.45653, -33.944828), (-13.315965, -33.45653, -34.689274), (-11.482219, -33.45653, -35.33864), (-9.617002, -33.45653, -35.89114), (-7.725425, -33.45653, -36.34527), (-5.812673, -33.45653, -36.699776), (-3.8839893, -33.45653, -36.95369), (-1.9446597, -33.45653, -37.10632), (-6.8256744e-15, -33.45653, -37.15724), (1.9446597, -33.45653, -37.10632), (3.8839893, -33.45653, -36.95369), (5.812673, -33.45653, -36.699776), (7.725425, -33.45653, -36.34527), (9.617002, -33.45653, -35.89114), (11.482219, -33.45653, -35.33864), (13.315965, -33.45653, -34.689274), (15.113212, -33.45653, -33.944828), (16.869034, -33.45653, -33.107346), (18.57862, -33.45653, -32.179115), (20.237284, -33.45653, -31.162685), (21.840479, -33.45653, -30.06084), (23.38381, -33.45653, -28.8766), (24.863047, -33.45653, -27.61321), (26.274137, -33.45653, -26.274137), (27.61321, -33.45653, -24.863047), (28.8766, -33.45653, -23.38381), (30.06084, -33.45653, -21.840479), (31.162685, -33.45653, -20.237284), (32.179115, -33.45653, -18.57862), (33.107346, -33.45653, -16.869034), (33.944828, -33.45653, -15.113212), (34.689274, -33.45653, -13.315965), (35.33864, -33.45653, -11.482219), (35.89114, -33.45653, -9.617002), (36.34527, -33.45653, -7.725425), (36.699776, -33.45653, -5.812673), (36.95369, -33.45653, -3.8839893), (37.10632, -33.45653, -1.9446597), (38.8573, -31.466019, 0), (38.804047, -31.466019, 2.033634), (38.644432, -31.466019, 4.0616937), (38.3789, -31.466019, 6.0786204), (38.00817, -31.466019, 8.078887), (37.533268, -31.466019, 10.057009), (36.955486, -31.466019, 12.0075655), (36.276413, -31.466019, 13.92521), (35.49791, -31.466019, 15.804687), (34.622105, -31.466019, 17.640844), (33.65141, -31.466019, 19.42865), (32.58847, -31.466019, 21.1632), (31.436214, -31.466019, 22.839746), (30.197792, -31.466019, 24.45369), (28.8766, -31.466019, 26.000607), (27.47626, -31.466019, 27.47626), (26.000607, -31.466019, 28.8766), (24.45369, -31.466019, 30.197792), (22.839746, -31.466019, 31.436214), (21.1632, -31.466019, 32.58847), (19.42865, -31.466019, 33.65141), (17.640844, -31.466019, 34.622105), (15.804687, -31.466019, 35.49791), (13.92521, -31.466019, 36.276413), (12.0075655, -31.466019, 36.955486), (10.057009, -31.466019, 37.533268), (8.078887, -31.466019, 38.00817), (6.0786204, -31.466019, 38.3789), (4.0616937, -31.466019, 38.644432), (2.033634, -31.466019, 38.804047), (2.3793234e-15, -31.466019, 38.8573), (-2.033634, -31.466019, 38.804047), (-4.0616937, -31.466019, 38.644432), (-6.0786204, -31.466019, 38.3789), (-8.078887, -31.466019, 38.00817), (-10.057009, -31.466019, 37.533268), (-12.0075655, -31.466019, 36.955486), (-13.92521, -31.466019, 36.276413), (-15.804687, -31.466019, 35.49791), (-17.640844, -31.466019, 34.622105), (-19.42865, -31.466019, 33.65141), (-21.1632, -31.466019, 32.58847), (-22.839746, -31.466019, 31.436214), (-24.45369, -31.466019, 30.197792), (-26.000607, -31.466019, 28.8766), (-27.47626, -31.466019, 27.47626), (-28.8766, -31.466019, 26.000607), (-30.197792, -31.466019, 24.45369), (-31.436214, -31.466019, 22.839746), (-32.58847, -31.466019, 21.1632), (-33.65141, -31.466019, 19.42865), (-34.622105, -31.466019, 17.640844), (-35.49791, -31.466019, 15.804687), (-36.276413, -31.466019, 13.92521), (-36.955486, -31.466019, 12.0075655), (-37.533268, -31.466019, 10.057009), (-38.00817, -31.466019, 8.078887), (-38.3789, -31.466019, 6.0786204), (-38.644432, -31.466019, 4.0616937), (-38.804047, -31.466019, 2.033634), (-38.8573, -31.466019, 4.7586468e-15), (-38.804047, -31.466019, -2.033634), (-38.644432, -31.466019, -4.0616937), (-38.3789, -31.466019, -6.0786204), (-38.00817, -31.466019, -8.078887), (-37.533268, -31.466019, -10.057009), (-36.955486, -31.466019, -12.0075655), (-36.276413, -31.466019, -13.92521), (-35.49791, -31.466019, -15.804687), (-34.622105, -31.466019, -17.640844), (-33.65141, -31.466019, -19.42865), (-32.58847, -31.466019, -21.1632), (-31.436214, -31.466019, -22.839746), (-30.197792, -31.466019, -24.45369), (-28.8766, -31.466019, -26.000607), (-27.47626, -31.466019, -27.47626), (-26.000607, -31.466019, -28.8766), (-24.45369, -31.466019, -30.197792), (-22.839746, -31.466019, -31.436214), (-21.1632, -31.466019, -32.58847), (-19.42865, -31.466019, -33.65141), (-17.640844, -31.466019, -34.622105), (-15.804687, -31.466019, -35.49791), (-13.92521, -31.466019, -36.276413), (-12.0075655, -31.466019, -36.955486), (-10.057009, -31.466019, -37.533268), (-8.078887, -31.466019, -38.00817), (-6.0786204, -31.466019, -38.3789), (-4.0616937, -31.466019, -38.644432), (-2.033634, -31.466019, -38.804047), (-7.1379695e-15, -31.466019, -38.8573), (2.033634, -31.466019, -38.804047), (4.0616937, -31.466019, -38.644432), (6.0786204, -31.466019, -38.3789), (8.078887, -31.466019, -38.00817), (10.057009, -31.466019, -37.533268), (12.0075655, -31.466019, -36.955486), (13.92521, -31.466019, -36.276413), (15.804687, -31.466019, -35.49791), (17.640844, -31.466019, -34.622105), (19.42865, -31.466019, -33.65141), (21.1632, -31.466019, -32.58847), (22.839746, -31.466019, -31.436214), (24.45369, -31.466019, -30.197792), (26.000607, -31.466019, -28.8766), (27.47626, -31.466019, -27.47626), (28.8766, -31.466019, -26.000607), (30.197792, -31.466019, -24.45369), (31.436214, -31.466019, -22.839746), (32.58847, -31.466019, -21.1632), (33.65141, -31.466019, -19.42865), (34.622105, -31.466019, -17.640844), (35.49791, -31.466019, -15.804687), (36.276413, -31.466019, -13.92521), (36.955486, -31.466019, -12.0075655), (37.533268, -31.466019, -10.057009), (38.00817, -31.466019, -8.078887), (38.3789, -31.466019, -6.0786204), (38.644432, -31.466019, -4.0616937), (38.804047, -31.466019, -2.033634), (40.45085, -29.389263, 0), (40.395412, -29.389263, 2.117034), (40.229256, -29.389263, 4.2282653), (39.95283, -29.389263, 6.327907), (39.566902, -29.389263, 8.410205), (39.07252, -29.389263, 10.46945), (38.471043, -29.389263, 12.5), (37.764122, -29.389263, 14.496288), (36.95369, -29.389263, 16.452843), (36.04197, -29.389263, 18.364302), (35.031464, -29.389263, 20.225426), (33.92494, -29.389263, 22.031113), (32.725426, -29.389263, 23.776413), (31.436214, -29.389263, 25.456545), (30.06084, -29.389263, 27.066902), (28.60307, -29.389263, 28.60307), (27.066902, -29.389263, 30.06084), (25.456545, -29.389263, 31.436214), (23.776413, -29.389263, 32.725426), (22.031113, -29.389263, 33.92494), (20.225426, -29.389263, 35.031464), (18.364302, -29.389263, 36.04197), (16.452843, -29.389263, 36.95369), (14.496288, -29.389263, 37.764122), (12.5, -29.389263, 38.471043), (10.46945, -29.389263, 39.07252), (8.410205, -29.389263, 39.566902), (6.327907, -29.389263, 39.95283), (4.2282653, -29.389263, 40.229256), (2.117034, -29.389263, 40.395412), (2.4769e-15, -29.389263, 40.45085), (-2.117034, -29.389263, 40.395412), (-4.2282653, -29.389263, 40.229256), (-6.327907, -29.389263, 39.95283), (-8.410205, -29.389263, 39.566902), (-10.46945, -29.389263, 39.07252), (-12.5, -29.389263, 38.471043), (-14.496288, -29.389263, 37.764122), (-16.452843, -29.389263, 36.95369), (-18.364302, -29.389263, 36.04197), (-20.225426, -29.389263, 35.031464), (-22.031113, -29.389263, 33.92494), (-23.776413, -29.389263, 32.725426), (-25.456545, -29.389263, 31.436214), (-27.066902, -29.389263, 30.06084), (-28.60307, -29.389263, 28.60307), (-30.06084, -29.389263, 27.066902), (-31.436214, -29.389263, 25.456545), (-32.725426, -29.389263, 23.776413), (-33.92494, -29.389263, 22.031113), (-35.031464, -29.389263, 20.225426), (-36.04197, -29.389263, 18.364302), (-36.95369, -29.389263, 16.452843), (-37.764122, -29.389263, 14.496288), (-38.471043, -29.389263, 12.5), (-39.07252, -29.389263, 10.46945), (-39.566902, -29.389263, 8.410205), (-39.95283, -29.389263, 6.327907), (-40.229256, -29.389263, 4.2282653), (-40.395412, -29.389263, 2.117034), (-40.45085, -29.389263, 4.9538e-15), (-40.395412, -29.389263, -2.117034), (-40.229256, -29.389263, -4.2282653), (-39.95283, -29.389263, -6.327907), (-39.566902, -29.389263, -8.410205), (-39.07252, -29.389263, -10.46945), (-38.471043, -29.389263, -12.5), (-37.764122, -29.389263, -14.496288), (-36.95369, -29.389263, -16.452843), (-36.04197, -29.389263, -18.364302), (-35.031464, -29.389263, -20.225426), (-33.92494, -29.389263, -22.031113), (-32.725426, -29.389263, -23.776413), (-31.436214, -29.389263, -25.456545), (-30.06084, -29.389263, -27.066902), (-28.60307, -29.389263, -28.60307), (-27.066902, -29.389263, -30.06084), (-25.456545, -29.389263, -31.436214), (-23.776413, -29.389263, -32.725426), (-22.031113, -29.389263, -33.92494), (-20.225426, -29.389263, -35.031464), (-18.364302, -29.389263, -36.04197), (-16.452843, -29.389263, -36.95369), (-14.496288, -29.389263, -37.764122), (-12.5, -29.389263, -38.471043), (-10.46945, -29.389263, -39.07252), (-8.410205, -29.389263, -39.566902), (-6.327907, -29.389263, -39.95283), (-4.2282653, -29.389263, -40.229256), (-2.117034, -29.389263, -40.395412), (-7.430701e-15, -29.389263, -40.45085), (2.117034, -29.389263, -40.395412), (4.2282653, -29.389263, -40.229256), (6.327907, -29.389263, -39.95283), (8.410205, -29.389263, -39.566902), (10.46945, -29.389263, -39.07252), (12.5, -29.389263, -38.471043), (14.496288, -29.389263, -37.764122), (16.452843, -29.389263, -36.95369), (18.364302, -29.389263, -36.04197), (20.225426, -29.389263, -35.031464), (22.031113, -29.389263, -33.92494), (23.776413, -29.389263, -32.725426), (25.456545, -29.389263, -31.436214), (27.066902, -29.389263, -30.06084), (28.60307, -29.389263, -28.60307), (30.06084, -29.389263, -27.066902), (31.436214, -29.389263, -25.456545), (32.725426, -29.389263, -23.776413), (33.92494, -29.389263, -22.031113), (35.031464, -29.389263, -20.225426), (36.04197, -29.389263, -18.364302), (36.95369, -29.389263, -16.452843), (37.764122, -29.389263, -14.496288), (38.471043, -29.389263, -12.5), (39.07252, -29.389263, -10.46945), (39.566902, -29.389263, -8.410205), (39.95283, -29.389263, -6.327907), (40.229256, -29.389263, -4.2282653), (40.395412, -29.389263, -2.117034), (41.93353, -27.231953, 0), (41.87606, -27.231953, 2.1946313), (41.70381, -27.231953, 4.3832474), (41.417255, -27.231953, 6.5598493), (41.01718, -27.231953, 8.718471), (40.504677, -27.231953, 10.853196), (39.881157, -27.231953, 12.958173), (39.148323, -27.231953, 15.027633), (38.308186, -27.231953, 17.055902), (37.36305, -27.231953, 19.037424), (36.315502, -27.231953, 20.966764), (35.168415, -27.231953, 22.838636), (33.92494, -27.231953, 24.64791), (32.58847, -27.231953, 26.389624), (31.162685, -27.231953, 28.059008), (29.651482, -27.231953, 29.651482), (28.059008, -27.231953, 31.162685), (26.389624, -27.231953, 32.58847), (24.64791, -27.231953, 33.92494), (22.838636, -27.231953, 35.168415), (20.966764, -27.231953, 36.315502), (19.037424, -27.231953, 37.36305), (17.055902, -27.231953, 38.308186), (15.027633, -27.231953, 39.148323), (12.958173, -27.231953, 39.881157), (10.853196, -27.231953, 40.504677), (8.718471, -27.231953, 41.01718), (6.5598493, -27.231953, 41.417255), (4.3832474, -27.231953, 41.70381), (2.1946313, -27.231953, 41.87606), (2.567688e-15, -27.231953, 41.93353), (-2.1946313, -27.231953, 41.87606), (-4.3832474, -27.231953, 41.70381), (-6.5598493, -27.231953, 41.417255), (-8.718471, -27.231953, 41.01718), (-10.853196, -27.231953, 40.504677), (-12.958173, -27.231953, 39.881157), (-15.027633, -27.231953, 39.148323), (-17.055902, -27.231953, 38.308186), (-19.037424, -27.231953, 37.36305), (-20.966764, -27.231953, 36.315502), (-22.838636, -27.231953, 35.168415), (-24.64791, -27.231953, 33.92494), (-26.389624, -27.231953, 32.58847), (-28.059008, -27.231953, 31.162685), (-29.651482, -27.231953, 29.651482), (-31.162685, -27.231953, 28.059008), (-32.58847, -27.231953, 26.389624), (-33.92494, -27.231953, 24.64791), (-35.168415, -27.231953, 22.838636), (-36.315502, -27.231953, 20.966764), (-37.36305, -27.231953, 19.037424), (-38.308186, -27.231953, 17.055902), (-39.148323, -27.231953, 15.027633), (-39.881157, -27.231953, 12.958173), (-40.504677, -27.231953, 10.853196), (-41.01718, -27.231953, 8.718471), (-41.417255, -27.231953, 6.5598493), (-41.70381, -27.231953, 4.3832474), (-41.87606, -27.231953, 2.1946313), (-41.93353, -27.231953, 5.135376e-15), (-41.87606, -27.231953, -2.1946313), (-41.70381, -27.231953, -4.3832474), (-41.417255, -27.231953, -6.5598493), (-41.01718, -27.231953, -8.718471), (-40.504677, -27.231953, -10.853196), (-39.881157, -27.231953, -12.958173), (-39.148323, -27.231953, -15.027633), (-38.308186, -27.231953, -17.055902), (-37.36305, -27.231953, -19.037424), (-36.315502, -27.231953, -20.966764), (-35.168415, -27.231953, -22.838636), (-33.92494, -27.231953, -24.64791), (-32.58847, -27.231953, -26.389624), (-31.162685, -27.231953, -28.059008), (-29.651482, -27.231953, -29.651482), (-28.059008, -27.231953, -31.162685), (-26.389624, -27.231953, -32.58847), (-24.64791, -27.231953, -33.92494), (-22.838636, -27.231953, -35.168415), (-20.966764, -27.231953, -36.315502), (-19.037424, -27.231953, -37.36305), (-17.055902, -27.231953, -38.308186), (-15.027633, -27.231953, -39.148323), (-12.958173, -27.231953, -39.881157), (-10.853196, -27.231953, -40.504677), (-8.718471, -27.231953, -41.01718), (-6.5598493, -27.231953, -41.417255), (-4.3832474, -27.231953, -41.70381), (-2.1946313, -27.231953, -41.87606), (-7.703064e-15, -27.231953, -41.93353), (2.1946313, -27.231953, -41.87606), (4.3832474, -27.231953, -41.70381), (6.5598493, -27.231953, -41.417255), (8.718471, -27.231953, -41.01718), (10.853196, -27.231953, -40.504677), (12.958173, -27.231953, -39.881157), (15.027633, -27.231953, -39.148323), (17.055902, -27.231953, -38.308186), (19.037424, -27.231953, -37.36305), (20.966764, -27.231953, -36.315502), (22.838636, -27.231953, -35.168415), (24.64791, -27.231953, -33.92494), (26.389624, -27.231953, -32.58847), (28.059008, -27.231953, -31.162685), (29.651482, -27.231953, -29.651482), (31.162685, -27.231953, -28.059008), (32.58847, -27.231953, -26.389624), (33.92494, -27.231953, -24.64791), (35.168415, -27.231953, -22.838636), (36.315502, -27.231953, -20.966764), (37.36305, -27.231953, -19.037424), (38.308186, -27.231953, -17.055902), (39.148323, -27.231953, -15.027633), (39.881157, -27.231953, -12.958173), (40.504677, -27.231953, -10.853196), (41.01718, -27.231953, -8.718471), (41.417255, -27.231953, -6.5598493), (41.70381, -27.231953, -4.3832474), (41.87606, -27.231953, -2.1946313), (43.30127, -25, 0), (43.24193, -25, 2.2662134), (43.06406, -25, 4.526215), (42.768158, -25, 6.773811), (42.355034, -25, 9.00284), (41.825813, -25, 11.207193), (41.181953, -25, 13.380828), (40.425217, -25, 15.517787), (39.55768, -25, 17.612213), (38.581715, -25, 19.658365), (37.5, -25, 21.650635), (36.315502, -25, 23.583563), (35.031464, -25, 25.451847), (33.65141, -25, 27.250372), (32.179115, -25, 28.974205), (30.618622, -25, 30.618622), (28.974205, -25, 32.179115), (27.250372, -25, 33.65141), (25.451847, -25, 35.031464), (23.583563, -25, 36.315502), (21.650635, -25, 37.5), (19.658365, -25, 38.581715), (17.612213, -25, 39.55768), (15.517787, -25, 40.425217), (13.380828, -25, 41.181953), (11.207193, -25, 41.825813), (9.00284, -25, 42.355034), (6.773811, -25, 42.768158), (4.526215, -25, 43.06406), (2.2662134, -25, 43.24193), (2.651438e-15, -25, 43.30127), (-2.2662134, -25, 43.24193), (-4.526215, -25, 43.06406), (-6.773811, -25, 42.768158), (-9.00284, -25, 42.355034), (-11.207193, -25, 41.825813), (-13.380828, -25, 41.181953), (-15.517787, -25, 40.425217), (-17.612213, -25, 39.55768), (-19.658365, -25, 38.581715), (-21.650635, -25, 37.5), (-23.583563, -25, 36.315502), (-25.451847, -25, 35.031464), (-27.250372, -25, 33.65141), (-28.974205, -25, 32.179115), (-30.618622, -25, 30.618622), (-32.179115, -25, 28.974205), (-33.65141, -25, 27.250372), (-35.031464, -25, 25.451847), (-36.315502, -25, 23.583563), (-37.5, -25, 21.650635), (-38.581715, -25, 19.658365), (-39.55768, -25, 17.612213), (-40.425217, -25, 15.517787), (-41.181953, -25, 13.380828), (-41.825813, -25, 11.207193), (-42.355034, -25, 9.00284), (-42.768158, -25, 6.773811), (-43.06406, -25, 4.526215), (-43.24193, -25, 2.2662134), (-43.30127, -25, 5.302876e-15), (-43.24193, -25, -2.2662134), (-43.06406, -25, -4.526215), (-42.768158, -25, -6.773811), (-42.355034, -25, -9.00284), (-41.825813, -25, -11.207193), (-41.181953, -25, -13.380828), (-40.425217, -25, -15.517787), (-39.55768, -25, -17.612213), (-38.581715, -25, -19.658365), (-37.5, -25, -21.650635), (-36.315502, -25, -23.583563), (-35.031464, -25, -25.451847), (-33.65141, -25, -27.250372), (-32.179115, -25, -28.974205), (-30.618622, -25, -30.618622), (-28.974205, -25, -32.179115), (-27.250372, -25, -33.65141), (-25.451847, -25, -35.031464), (-23.583563, -25, -36.315502), (-21.650635, -25, -37.5), (-19.658365, -25, -38.581715), (-17.612213, -25, -39.55768), (-15.517787, -25, -40.425217), (-13.380828, -25, -41.181953), (-11.207193, -25, -41.825813), (-9.00284, -25, -42.355034), (-6.773811, -25, -42.768158), (-4.526215, -25, -43.06406), (-2.2662134, -25, -43.24193), (-7.9543145e-15, -25, -43.30127), (2.2662134, -25, -43.24193), (4.526215, -25, -43.06406), (6.773811, -25, -42.768158), (9.00284, -25, -42.355034), (11.207193, -25, -41.825813), (13.380828, -25, -41.181953), (15.517787, -25, -40.425217), (17.612213, -25, -39.55768), (19.658365, -25, -38.581715), (21.650635, -25, -37.5), (23.583563, -25, -36.315502), (25.451847, -25, -35.031464), (27.250372, -25, -33.65141), (28.974205, -25, -32.179115), (30.618622, -25, -30.618622), (32.179115, -25, -28.974205), (33.65141, -25, -27.250372), (35.031464, -25, -25.451847), (36.315502, -25, -23.583563), (37.5, -25, -21.650635), (38.581715, -25, -19.658365), (39.55768, -25, -17.612213), (40.425217, -25, -15.517787), (41.181953, -25, -13.380828), (41.825813, -25, -11.207193), (42.355034, -25, -9.00284), (42.768158, -25, -6.773811), (43.06406, -25, -4.526215), (43.24193, -25, -2.2662134), (44.550327, -22.699526, 0), (44.489273, -22.699526, 2.331584), (44.306274, -22.699526, 4.656777), (44.00184, -22.699526, 6.9692063), (43.576794, -22.699526, 9.262533), (43.03231, -22.699526, 11.530473), (42.369877, -22.699526, 13.766808), (41.591312, -22.699526, 15.965409), (40.69875, -22.699526, 18.12025), (39.69463, -22.699526, 20.225426), (38.581715, -22.699526, 22.275164), (37.36305, -22.699526, 24.263847), (36.04197, -22.699526, 26.186026), (34.622105, -22.699526, 28.036428), (33.107346, -22.699526, 29.809986), (31.501839, -22.699526, 31.501839), (29.809986, -22.699526, 33.107346), (28.036428, -22.699526, 34.622105), (26.186026, -22.699526, 36.04197), (24.263847, -22.699526, 37.36305), (22.275164, -22.699526, 38.581715), (20.225426, -22.699526, 39.69463), (18.12025, -22.699526, 40.69875), (15.965409, -22.699526, 41.591312), (13.766808, -22.699526, 42.369877), (11.530473, -22.699526, 43.03231), (9.262533, -22.699526, 43.576794), (6.9692063, -22.699526, 44.00184), (4.656777, -22.699526, 44.306274), (2.331584, -22.699526, 44.489273), (2.7279206e-15, -22.699526, 44.550327), (-2.331584, -22.699526, 44.489273), (-4.656777, -22.699526, 44.306274), (-6.9692063, -22.699526, 44.00184), (-9.262533, -22.699526, 43.576794), (-11.530473, -22.699526, 43.03231), (-13.766808, -22.699526, 42.369877), (-15.965409, -22.699526, 41.591312), (-18.12025, -22.699526, 40.69875), (-20.225426, -22.699526, 39.69463), (-22.275164, -22.699526, 38.581715), (-24.263847, -22.699526, 37.36305), (-26.186026, -22.699526, 36.04197), (-28.036428, -22.699526, 34.622105), (-29.809986, -22.699526, 33.107346), (-31.501839, -22.699526, 31.501839), (-33.107346, -22.699526, 29.809986), (-34.622105, -22.699526, 28.036428), (-36.04197, -22.699526, 26.186026), (-37.36305, -22.699526, 24.263847), (-38.581715, -22.699526, 22.275164), (-39.69463, -22.699526, 20.225426), (-40.69875, -22.699526, 18.12025), (-41.591312, -22.699526, 15.965409), (-42.369877, -22.699526, 13.766808), (-43.03231, -22.699526, 11.530473), (-43.576794, -22.699526, 9.262533), (-44.00184, -22.699526, 6.9692063), (-44.306274, -22.699526, 4.656777), (-44.489273, -22.699526, 2.331584), (-44.550327, -22.699526, 5.4558413e-15), (-44.489273, -22.699526, -2.331584), (-44.306274, -22.699526, -4.656777), (-44.00184, -22.699526, -6.9692063), (-43.576794, -22.699526, -9.262533), (-43.03231, -22.699526, -11.530473), (-42.369877, -22.699526, -13.766808), (-41.591312, -22.699526, -15.965409), (-40.69875, -22.699526, -18.12025), (-39.69463, -22.699526, -20.225426), (-38.581715, -22.699526, -22.275164), (-37.36305, -22.699526, -24.263847), (-36.04197, -22.699526, -26.186026), (-34.622105, -22.699526, -28.036428), (-33.107346, -22.699526, -29.809986), (-31.501839, -22.699526, -31.501839), (-29.809986, -22.699526, -33.107346), (-28.036428, -22.699526, -34.622105), (-26.186026, -22.699526, -36.04197), (-24.263847, -22.699526, -37.36305), (-22.275164, -22.699526, -38.581715), (-20.225426, -22.699526, -39.69463), (-18.12025, -22.699526, -40.69875), (-15.965409, -22.699526, -41.591312), (-13.766808, -22.699526, -42.369877), (-11.530473, -22.699526, -43.03231), (-9.262533, -22.699526, -43.576794), (-6.9692063, -22.699526, -44.00184), (-4.656777, -22.699526, -44.306274), (-2.331584, -22.699526, -44.489273), (-8.183762e-15, -22.699526, -44.550327), (2.331584, -22.699526, -44.489273), (4.656777, -22.699526, -44.306274), (6.9692063, -22.699526, -44.00184), (9.262533, -22.699526, -43.576794), (11.530473, -22.699526, -43.03231), (13.766808, -22.699526, -42.369877), (15.965409, -22.699526, -41.591312), (18.12025, -22.699526, -40.69875), (20.225426, -22.699526, -39.69463), (22.275164, -22.699526, -38.581715), (24.263847, -22.699526, -37.36305), (26.186026, -22.699526, -36.04197), (28.036428, -22.699526, -34.622105), (29.809986, -22.699526, -33.107346), (31.501839, -22.699526, -31.501839), (33.107346, -22.699526, -29.809986), (34.622105, -22.699526, -28.036428), (36.04197, -22.699526, -26.186026), (37.36305, -22.699526, -24.263847), (38.581715, -22.699526, -22.275164), (39.69463, -22.699526, -20.225426), (40.69875, -22.699526, -18.12025), (41.591312, -22.699526, -15.965409), (42.369877, -22.699526, -13.766808), (43.03231, -22.699526, -11.530473), (43.576794, -22.699526, -9.262533), (44.00184, -22.699526, -6.9692063), (44.306274, -22.699526, -4.656777), (44.489273, -22.699526, -2.331584), (45.677273, -20.336832, 0), (45.614674, -20.336832, 2.3905637), (45.427048, -20.336832, 4.774575), (45.11491, -20.336832, 7.1454997), (44.679115, -20.336832, 9.496839), (44.120857, -20.336832, 11.822148), (43.44167, -20.336832, 14.115053), (42.64341, -20.336832, 16.36927), (41.728264, -20.336832, 18.57862), (40.69875, -20.336832, 20.737047), (39.55768, -20.336832, 22.838636), (38.308186, -20.336832, 24.877626), (36.95369, -20.336832, 26.848427), (35.49791, -20.336832, 28.74564), (33.944828, -20.336832, 30.564062), (32.29871, -20.336832, 32.29871), (30.564062, -20.336832, 33.944828), (28.74564, -20.336832, 35.49791), (26.848427, -20.336832, 36.95369), (24.877626, -20.336832, 38.308186), (22.838636, -20.336832, 39.55768), (20.737047, -20.336832, 40.69875), (18.57862, -20.336832, 41.728264), (16.36927, -20.336832, 42.64341), (14.115053, -20.336832, 43.44167), (11.822148, -20.336832, 44.120857), (9.496839, -20.336832, 44.679115), (7.1454997, -20.336832, 45.11491), (4.774575, -20.336832, 45.427048), (2.3905637, -20.336832, 45.614674), (2.7969263e-15, -20.336832, 45.677273), (-2.3905637, -20.336832, 45.614674), (-4.774575, -20.336832, 45.427048), (-7.1454997, -20.336832, 45.11491), (-9.496839, -20.336832, 44.679115), (-11.822148, -20.336832, 44.120857), (-14.115053, -20.336832, 43.44167), (-16.36927, -20.336832, 42.64341), (-18.57862, -20.336832, 41.728264), (-20.737047, -20.336832, 40.69875), (-22.838636, -20.336832, 39.55768), (-24.877626, -20.336832, 38.308186), (-26.848427, -20.336832, 36.95369), (-28.74564, -20.336832, 35.49791), (-30.564062, -20.336832, 33.944828), (-32.29871, -20.336832, 32.29871), (-33.944828, -20.336832, 30.564062), (-35.49791, -20.336832, 28.74564), (-36.95369, -20.336832, 26.848427), (-38.308186, -20.336832, 24.877626), (-39.55768, -20.336832, 22.838636), (-40.69875, -20.336832, 20.737047), (-41.728264, -20.336832, 18.57862), (-42.64341, -20.336832, 16.36927), (-43.44167, -20.336832, 14.115053), (-44.120857, -20.336832, 11.822148), (-44.679115, -20.336832, 9.496839), (-45.11491, -20.336832, 7.1454997), (-45.427048, -20.336832, 4.774575), (-45.614674, -20.336832, 2.3905637), (-45.677273, -20.336832, 5.5938526e-15), (-45.614674, -20.336832, -2.3905637), (-45.427048, -20.336832, -4.774575), (-45.11491, -20.336832, -7.1454997), (-44.679115, -20.336832, -9.496839), (-44.120857, -20.336832, -11.822148), (-43.44167, -20.336832, -14.115053), (-42.64341, -20.336832, -16.36927), (-41.728264, -20.336832, -18.57862), (-40.69875, -20.336832, -20.737047), (-39.55768, -20.336832, -22.838636), (-38.308186, -20.336832, -24.877626), (-36.95369, -20.336832, -26.848427), (-35.49791, -20.336832, -28.74564), (-33.944828, -20.336832, -30.564062), (-32.29871, -20.336832, -32.29871), (-30.564062, -20.336832, -33.944828), (-28.74564, -20.336832, -35.49791), (-26.848427, -20.336832, -36.95369), (-24.877626, -20.336832, -38.308186), (-22.838636, -20.336832, -39.55768), (-20.737047, -20.336832, -40.69875), (-18.57862, -20.336832, -41.728264), (-16.36927, -20.336832, -42.64341), (-14.115053, -20.336832, -43.44167), (-11.822148, -20.336832, -44.120857), (-9.496839, -20.336832, -44.679115), (-7.1454997, -20.336832, -45.11491), (-4.774575, -20.336832, -45.427048), (-2.3905637, -20.336832, -45.614674), (-8.390779e-15, -20.336832, -45.677273), (2.3905637, -20.336832, -45.614674), (4.774575, -20.336832, -45.427048), (7.1454997, -20.336832, -45.11491), (9.496839, -20.336832, -44.679115), (11.822148, -20.336832, -44.120857), (14.115053, -20.336832, -43.44167), (16.36927, -20.336832, -42.64341), (18.57862, -20.336832, -41.728264), (20.737047, -20.336832, -40.69875), (22.838636, -20.336832, -39.55768), (24.877626, -20.336832, -38.308186), (26.848427, -20.336832, -36.95369), (28.74564, -20.336832, -35.49791), (30.564062, -20.336832, -33.944828), (32.29871, -20.336832, -32.29871), (33.944828, -20.336832, -30.564062), (35.49791, -20.336832, -28.74564), (36.95369, -20.336832, -26.848427), (38.308186, -20.336832, -24.877626), (39.55768, -20.336832, -22.838636), (40.69875, -20.336832, -20.737047), (41.728264, -20.336832, -18.57862), (42.64341, -20.336832, -16.36927), (43.44167, -20.336832, -14.115053), (44.120857, -20.336832, -11.822148), (44.679115, -20.336832, -9.496839), (45.11491, -20.336832, -7.1454997), (45.427048, -20.336832, -4.774575), (45.614674, -20.336832, -2.3905637), (46.67902, -17.918398, 0), (46.615047, -17.918398, 2.4429913), (46.42331, -17.918398, 4.8792863), (46.104324, -17.918398, 7.302208), (45.658974, -17.918398, 9.705114), (45.08847, -17.918398, 12.08142), (44.394386, -17.918398, 14.424611), (43.57862, -17.918398, 16.728266), (42.64341, -17.918398, 18.986069), (41.591312, -17.918398, 21.191832), (40.425217, -17.918398, 23.33951), (39.148323, -17.918398, 25.423218), (37.764122, -17.918398, 27.43724), (36.276413, -17.918398, 29.37606), (34.689274, -17.918398, 31.234362), (33.007053, -17.918398, 33.007053), (31.234362, -17.918398, 34.689274), (29.37606, -17.918398, 36.276413), (27.43724, -17.918398, 37.764122), (25.423218, -17.918398, 39.148323), (23.33951, -17.918398, 40.425217), (21.191832, -17.918398, 41.591312), (18.986069, -17.918398, 42.64341), (16.728266, -17.918398, 43.57862), (14.424611, -17.918398, 44.394386), (12.08142, -17.918398, 45.08847), (9.705114, -17.918398, 45.658974), (7.302208, -17.918398, 46.104324), (4.8792863, -17.918398, 46.42331), (2.4429913, -17.918398, 46.615047), (2.8582657e-15, -17.918398, 46.67902), (-2.4429913, -17.918398, 46.615047), (-4.8792863, -17.918398, 46.42331), (-7.302208, -17.918398, 46.104324), (-9.705114, -17.918398, 45.658974), (-12.08142, -17.918398, 45.08847), (-14.424611, -17.918398, 44.394386), (-16.728266, -17.918398, 43.57862), (-18.986069, -17.918398, 42.64341), (-21.191832, -17.918398, 41.591312), (-23.33951, -17.918398, 40.425217), (-25.423218, -17.918398, 39.148323), (-27.43724, -17.918398, 37.764122), (-29.37606, -17.918398, 36.276413), (-31.234362, -17.918398, 34.689274), (-33.007053, -17.918398, 33.007053), (-34.689274, -17.918398, 31.234362), (-36.276413, -17.918398, 29.37606), (-37.764122, -17.918398, 27.43724), (-39.148323, -17.918398, 25.423218), (-40.425217, -17.918398, 23.33951), (-41.591312, -17.918398, 21.191832), (-42.64341, -17.918398, 18.986069), (-43.57862, -17.918398, 16.728266), (-44.394386, -17.918398, 14.424611), (-45.08847, -17.918398, 12.08142), (-45.658974, -17.918398, 9.705114), (-46.104324, -17.918398, 7.302208), (-46.42331, -17.918398, 4.8792863), (-46.615047, -17.918398, 2.4429913), (-46.67902, -17.918398, 5.7165313e-15), (-46.615047, -17.918398, -2.4429913), (-46.42331, -17.918398, -4.8792863), (-46.104324, -17.918398, -7.302208), (-45.658974, -17.918398, -9.705114), (-45.08847, -17.918398, -12.08142), (-44.394386, -17.918398, -14.424611), (-43.57862, -17.918398, -16.728266), (-42.64341, -17.918398, -18.986069), (-41.591312, -17.918398, -21.191832), (-40.425217, -17.918398, -23.33951), (-39.148323, -17.918398, -25.423218), (-37.764122, -17.918398, -27.43724), (-36.276413, -17.918398, -29.37606), (-34.689274, -17.918398, -31.234362), (-33.007053, -17.918398, -33.007053), (-31.234362, -17.918398, -34.689274), (-29.37606, -17.918398, -36.276413), (-27.43724, -17.918398, -37.764122), (-25.423218, -17.918398, -39.148323), (-23.33951, -17.918398, -40.425217), (-21.191832, -17.918398, -41.591312), (-18.986069, -17.918398, -42.64341), (-16.728266, -17.918398, -43.57862), (-14.424611, -17.918398, -44.394386), (-12.08142, -17.918398, -45.08847), (-9.705114, -17.918398, -45.658974), (-7.302208, -17.918398, -46.104324), (-4.8792863, -17.918398, -46.42331), (-2.4429913, -17.918398, -46.615047), (-8.5747974e-15, -17.918398, -46.67902), (2.4429913, -17.918398, -46.615047), (4.8792863, -17.918398, -46.42331), (7.302208, -17.918398, -46.104324), (9.705114, -17.918398, -45.658974), (12.08142, -17.918398, -45.08847), (14.424611, -17.918398, -44.394386), (16.728266, -17.918398, -43.57862), (18.986069, -17.918398, -42.64341), (21.191832, -17.918398, -41.591312), (23.33951, -17.918398, -40.425217), (25.423218, -17.918398, -39.148323), (27.43724, -17.918398, -37.764122), (29.37606, -17.918398, -36.276413), (31.234362, -17.918398, -34.689274), (33.007053, -17.918398, -33.007053), (34.689274, -17.918398, -31.234362), (36.276413, -17.918398, -29.37606), (37.764122, -17.918398, -27.43724), (39.148323, -17.918398, -25.423218), (40.425217, -17.918398, -23.33951), (41.591312, -17.918398, -21.191832), (42.64341, -17.918398, -18.986069), (43.57862, -17.918398, -16.728266), (44.394386, -17.918398, -14.424611), (45.08847, -17.918398, -12.08142), (45.658974, -17.918398, -9.705114), (46.104324, -17.918398, -7.302208), (46.42331, -17.918398, -4.8792863), (46.615047, -17.918398, -2.4429913), (47.552826, -15.45085, 0), (47.487656, -15.45085, 2.4887226), (47.292328, -15.45085, 4.970624), (46.967373, -15.45085, 7.438901), (46.513683, -15.45085, 9.886788), (45.932503, -15.45085, 12.307577), (45.225426, -15.45085, 14.694632), (44.394386, -15.45085, 17.041409), (43.44167, -15.45085, 19.341476), (42.369877, -15.45085, 21.588531), (41.181953, -15.45085, 23.776413), (39.881157, -15.45085, 25.899126), (38.471043, -15.45085, 27.95085), (36.955486, -15.45085, 29.925962), (35.33864, -15.45085, 31.819052), (33.624924, -15.45085, 33.624924), (31.819052, -15.45085, 35.33864), (29.925962, -15.45085, 36.955486), (27.95085, -15.45085, 38.471043), (25.899126, -15.45085, 39.881157), (23.776413, -15.45085, 41.181953), (21.588531, -15.45085, 42.369877), (19.341476, -15.45085, 43.44167), (17.041409, -15.45085, 44.394386), (14.694632, -15.45085, 45.225426), (12.307577, -15.45085, 45.932503), (9.886788, -15.45085, 46.513683), (7.438901, -15.45085, 46.967373), (4.970624, -15.45085, 47.292328), (2.4887226, -15.45085, 47.487656), (2.9117708e-15, -15.45085, 47.552826), (-2.4887226, -15.45085, 47.487656), (-4.970624, -15.45085, 47.292328), (-7.438901, -15.45085, 46.967373), (-9.886788, -15.45085, 46.513683), (-12.307577, -15.45085, 45.932503), (-14.694632, -15.45085, 45.225426), (-17.041409, -15.45085, 44.394386), (-19.341476, -15.45085, 43.44167), (-21.588531, -15.45085, 42.369877), (-23.776413, -15.45085, 41.181953), (-25.899126, -15.45085, 39.881157), (-27.95085, -15.45085, 38.471043), (-29.925962, -15.45085, 36.955486), (-31.819052, -15.45085, 35.33864), (-33.624924, -15.45085, 33.624924), (-35.33864, -15.45085, 31.819052), (-36.955486, -15.45085, 29.925962), (-38.471043, -15.45085, 27.95085), (-39.881157, -15.45085, 25.899126), (-41.181953, -15.45085, 23.776413), (-42.369877, -15.45085, 21.588531), (-43.44167, -15.45085, 19.341476), (-44.394386, -15.45085, 17.041409), (-45.225426, -15.45085, 14.694632), (-45.932503, -15.45085, 12.307577), (-46.513683, -15.45085, 9.886788), (-46.967373, -15.45085, 7.438901), (-47.292328, -15.45085, 4.970624), (-47.487656, -15.45085, 2.4887226), (-47.552826, -15.45085, 5.8235417e-15), (-47.487656, -15.45085, -2.4887226), (-47.292328, -15.45085, -4.970624), (-46.967373, -15.45085, -7.438901), (-46.513683, -15.45085, -9.886788), (-45.932503, -15.45085, -12.307577), (-45.225426, -15.45085, -14.694632), (-44.394386, -15.45085, -17.041409), (-43.44167, -15.45085, -19.341476), (-42.369877, -15.45085, -21.588531), (-41.181953, -15.45085, -23.776413), (-39.881157, -15.45085, -25.899126), (-38.471043, -15.45085, -27.95085), (-36.955486, -15.45085, -29.925962), (-35.33864, -15.45085, -31.819052), (-33.624924, -15.45085, -33.624924), (-31.819052, -15.45085, -35.33864), (-29.925962, -15.45085, -36.955486), (-27.95085, -15.45085, -38.471043), (-25.899126, -15.45085, -39.881157), (-23.776413, -15.45085, -41.181953), (-21.588531, -15.45085, -42.369877), (-19.341476, -15.45085, -43.44167), (-17.041409, -15.45085, -44.394386), (-14.694632, -15.45085, -45.225426), (-12.307577, -15.45085, -45.932503), (-9.886788, -15.45085, -46.513683), (-7.438901, -15.45085, -46.967373), (-4.970624, -15.45085, -47.292328), (-2.4887226, -15.45085, -47.487656), (-8.735313e-15, -15.45085, -47.552826), (2.4887226, -15.45085, -47.487656), (4.970624, -15.45085, -47.292328), (7.438901, -15.45085, -46.967373), (9.886788, -15.45085, -46.513683), (12.307577, -15.45085, -45.932503), (14.694632, -15.45085, -45.225426), (17.041409, -15.45085, -44.394386), (19.341476, -15.45085, -43.44167), (21.588531, -15.45085, -42.369877), (23.776413, -15.45085, -41.181953), (25.899126, -15.45085, -39.881157), (27.95085, -15.45085, -38.471043), (29.925962, -15.45085, -36.955486), (31.819052, -15.45085, -35.33864), (33.624924, -15.45085, -33.624924), (35.33864, -15.45085, -31.819052), (36.955486, -15.45085, -29.925962), (38.471043, -15.45085, -27.95085), (39.881157, -15.45085, -25.899126), (41.181953, -15.45085, -23.776413), (42.369877, -15.45085, -21.588531), (43.44167, -15.45085, -19.341476), (44.394386, -15.45085, -17.041409), (45.225426, -15.45085, -14.694632), (45.932503, -15.45085, -12.307577), (46.513683, -15.45085, -9.886788), (46.967373, -15.45085, -7.438901), (47.292328, -15.45085, -4.970624), (47.487656, -15.45085, -2.4887226), (48.29629, -12.940952, 0), (48.230103, -12.940952, 2.5276325), (48.03172, -12.940952, 5.048337), (47.701683, -12.940952, 7.5552044), (47.240902, -12.940952, 10.041364), (46.650635, -12.940952, 12.5), (45.932503, -12.940952, 14.924375), (45.08847, -12.940952, 17.307842), (44.120857, -12.940952, 19.643871), (43.03231, -12.940952, 21.926058), (41.825813, -12.940952, 24.148146), (40.504677, -12.940952, 26.304045), (39.07252, -12.940952, 28.387848), (37.533268, -12.940952, 30.39384), (35.89114, -12.940952, 32.31653), (34.150635, -12.940952, 34.150635), (32.31653, -12.940952, 35.89114), (30.39384, -12.940952, 37.533268), (28.387848, -12.940952, 39.07252), (26.304045, -12.940952, 40.504677), (24.148146, -12.940952, 41.825813), (21.926058, -12.940952, 43.03231), (19.643871, -12.940952, 44.120857), (17.307842, -12.940952, 45.08847), (14.924375, -12.940952, 45.932503), (12.5, -12.940952, 46.650635), (10.041364, -12.940952, 47.240902), (7.5552044, -12.940952, 47.701683), (5.048337, -12.940952, 48.03172), (2.5276325, -12.940952, 48.230103), (2.9572948e-15, -12.940952, 48.29629), (-2.5276325, -12.940952, 48.230103), (-5.048337, -12.940952, 48.03172), (-7.5552044, -12.940952, 47.701683), (-10.041364, -12.940952, 47.240902), (-12.5, -12.940952, 46.650635), (-14.924375, -12.940952, 45.932503), (-17.307842, -12.940952, 45.08847), (-19.643871, -12.940952, 44.120857), (-21.926058, -12.940952, 43.03231), (-24.148146, -12.940952, 41.825813), (-26.304045, -12.940952, 40.504677), (-28.387848, -12.940952, 39.07252), (-30.39384, -12.940952, 37.533268), (-32.31653, -12.940952, 35.89114), (-34.150635, -12.940952, 34.150635), (-35.89114, -12.940952, 32.31653), (-37.533268, -12.940952, 30.39384), (-39.07252, -12.940952, 28.387848), (-40.504677, -12.940952, 26.304045), (-41.825813, -12.940952, 24.148146), (-43.03231, -12.940952, 21.926058), (-44.120857, -12.940952, 19.643871), (-45.08847, -12.940952, 17.307842), (-45.932503, -12.940952, 14.924375), (-46.650635, -12.940952, 12.5), (-47.240902, -12.940952, 10.041364), (-47.701683, -12.940952, 7.5552044), (-48.03172, -12.940952, 5.048337), (-48.230103, -12.940952, 2.5276325), (-48.29629, -12.940952, 5.9145897e-15), (-48.230103, -12.940952, -2.5276325), (-48.03172, -12.940952, -5.048337), (-47.701683, -12.940952, -7.5552044), (-47.240902, -12.940952, -10.041364), (-46.650635, -12.940952, -12.5), (-45.932503, -12.940952, -14.924375), (-45.08847, -12.940952, -17.307842), (-44.120857, -12.940952, -19.643871), (-43.03231, -12.940952, -21.926058), (-41.825813, -12.940952, -24.148146), (-40.504677, -12.940952, -26.304045), (-39.07252, -12.940952, -28.387848), (-37.533268, -12.940952, -30.39384), (-35.89114, -12.940952, -32.31653), (-34.150635, -12.940952, -34.150635), (-32.31653, -12.940952, -35.89114), (-30.39384, -12.940952, -37.533268), (-28.387848, -12.940952, -39.07252), (-26.304045, -12.940952, -40.504677), (-24.148146, -12.940952, -41.825813), (-21.926058, -12.940952, -43.03231), (-19.643871, -12.940952, -44.120857), (-17.307842, -12.940952, -45.08847), (-14.924375, -12.940952, -45.932503), (-12.5, -12.940952, -46.650635), (-10.041364, -12.940952, -47.240902), (-7.5552044, -12.940952, -47.701683), (-5.048337, -12.940952, -48.03172), (-2.5276325, -12.940952, -48.230103), (-8.871885e-15, -12.940952, -48.29629), (2.5276325, -12.940952, -48.230103), (5.048337, -12.940952, -48.03172), (7.5552044, -12.940952, -47.701683), (10.041364, -12.940952, -47.240902), (12.5, -12.940952, -46.650635), (14.924375, -12.940952, -45.932503), (17.307842, -12.940952, -45.08847), (19.643871, -12.940952, -44.120857), (21.926058, -12.940952, -43.03231), (24.148146, -12.940952, -41.825813), (26.304045, -12.940952, -40.504677), (28.387848, -12.940952, -39.07252), (30.39384, -12.940952, -37.533268), (32.31653, -12.940952, -35.89114), (34.150635, -12.940952, -34.150635), (35.89114, -12.940952, -32.31653), (37.533268, -12.940952, -30.39384), (39.07252, -12.940952, -28.387848), (40.504677, -12.940952, -26.304045), (41.825813, -12.940952, -24.148146), (43.03231, -12.940952, -21.926058), (44.120857, -12.940952, -19.643871), (45.08847, -12.940952, -17.307842), (45.932503, -12.940952, -14.924375), (46.650635, -12.940952, -12.5), (47.240902, -12.940952, -10.041364), (47.701683, -12.940952, -7.5552044), (48.03172, -12.940952, -5.048337), (48.230103, -12.940952, -2.5276325), (48.90738, -10.395584, 0), (48.840355, -10.395584, 2.5596144), (48.63946, -10.395584, 5.112213), (48.30525, -10.395584, 7.6507998), (47.83864, -10.395584, 10.168416), (47.240902, -10.395584, 12.658161), (46.513683, -10.395584, 15.113212), (45.658974, -10.395584, 17.526838), (44.679115, -10.395584, 19.892424), (43.576794, -10.395584, 22.203485), (42.355034, -10.395584, 24.45369), (41.01718, -10.395584, 26.636868), (39.566902, -10.395584, 28.747036), (38.00817, -10.395584, 30.778412), (36.34527, -10.395584, 32.725426), (34.58274, -10.395584, 34.58274), (32.725426, -10.395584, 36.34527), (30.778412, -10.395584, 38.00817), (28.747036, -10.395584, 39.566902), (26.636868, -10.395584, 41.01718), (24.45369, -10.395584, 42.355034), (22.203485, -10.395584, 43.576794), (19.892424, -10.395584, 44.679115), (17.526838, -10.395584, 45.658974), (15.113212, -10.395584, 46.513683), (12.658161, -10.395584, 47.240902), (10.168416, -10.395584, 47.83864), (7.6507998, -10.395584, 48.30525), (5.112213, -10.395584, 48.63946), (2.5596144, -10.395584, 48.840355), (2.9947134e-15, -10.395584, 48.90738), (-2.5596144, -10.395584, 48.840355), (-5.112213, -10.395584, 48.63946), (-7.6507998, -10.395584, 48.30525), (-10.168416, -10.395584, 47.83864), (-12.658161, -10.395584, 47.240902), (-15.113212, -10.395584, 46.513683), (-17.526838, -10.395584, 45.658974), (-19.892424, -10.395584, 44.679115), (-22.203485, -10.395584, 43.576794), (-24.45369, -10.395584, 42.355034), (-26.636868, -10.395584, 41.01718), (-28.747036, -10.395584, 39.566902), (-30.778412, -10.395584, 38.00817), (-32.725426, -10.395584, 36.34527), (-34.58274, -10.395584, 34.58274), (-36.34527, -10.395584, 32.725426), (-38.00817, -10.395584, 30.778412), (-39.566902, -10.395584, 28.747036), (-41.01718, -10.395584, 26.636868), (-42.355034, -10.395584, 24.45369), (-43.576794, -10.395584, 22.203485), (-44.679115, -10.395584, 19.892424), (-45.658974, -10.395584, 17.526838), (-46.513683, -10.395584, 15.113212), (-47.240902, -10.395584, 12.658161), (-47.83864, -10.395584, 10.168416), (-48.30525, -10.395584, 7.6507998), (-48.63946, -10.395584, 5.112213), (-48.840355, -10.395584, 2.5596144), (-48.90738, -10.395584, 5.9894267e-15), (-48.840355, -10.395584, -2.5596144), (-48.63946, -10.395584, -5.112213), (-48.30525, -10.395584, -7.6507998), (-47.83864, -10.395584, -10.168416), (-47.240902, -10.395584, -12.658161), (-46.513683, -10.395584, -15.113212), (-45.658974, -10.395584, -17.526838), (-44.679115, -10.395584, -19.892424), (-43.576794, -10.395584, -22.203485), (-42.355034, -10.395584, -24.45369), (-41.01718, -10.395584, -26.636868), (-39.566902, -10.395584, -28.747036), (-38.00817, -10.395584, -30.778412), (-36.34527, -10.395584, -32.725426), (-34.58274, -10.395584, -34.58274), (-32.725426, -10.395584, -36.34527), (-30.778412, -10.395584, -38.00817), (-28.747036, -10.395584, -39.566902), (-26.636868, -10.395584, -41.01718), (-24.45369, -10.395584, -42.355034), (-22.203485, -10.395584, -43.576794), (-19.892424, -10.395584, -44.679115), (-17.526838, -10.395584, -45.658974), (-15.113212, -10.395584, -46.513683), (-12.658161, -10.395584, -47.240902), (-10.168416, -10.395584, -47.83864), (-7.6507998, -10.395584, -48.30525), (-5.112213, -10.395584, -48.63946), (-2.5596144, -10.395584, -48.840355), (-8.98414e-15, -10.395584, -48.90738), (2.5596144, -10.395584, -48.840355), (5.112213, -10.395584, -48.63946), (7.6507998, -10.395584, -48.30525), (10.168416, -10.395584, -47.83864), (12.658161, -10.395584, -47.240902), (15.113212, -10.395584, -46.513683), (17.526838, -10.395584, -45.658974), (19.892424, -10.395584, -44.679115), (22.203485, -10.395584, -43.576794), (24.45369, -10.395584, -42.355034), (26.636868, -10.395584, -41.01718), (28.747036, -10.395584, -39.566902), (30.778412, -10.395584, -38.00817), (32.725426, -10.395584, -36.34527), (34.58274, -10.395584, -34.58274), (36.34527, -10.395584, -32.725426), (38.00817, -10.395584, -30.778412), (39.566902, -10.395584, -28.747036), (41.01718, -10.395584, -26.636868), (42.355034, -10.395584, -24.45369), (43.576794, -10.395584, -22.203485), (44.679115, -10.395584, -19.892424), (45.658974, -10.395584, -17.526838), (46.513683, -10.395584, -15.113212), (47.240902, -10.395584, -12.658161), (47.83864, -10.395584, -10.168416), (48.30525, -10.395584, -7.6507998), (48.63946, -10.395584, -5.112213), (48.840355, -10.395584, -2.5596144), (49.38442, -7.8217235, 0), (49.31674, -7.8217235, 2.5845807), (49.113884, -7.8217235, 5.1620774), (48.776413, -7.8217235, 7.725425), (48.30525, -7.8217235, 10.267597), (47.701683, -7.8217235, 12.781628), (46.967373, -7.8217235, 15.260624), (46.104324, -7.8217235, 17.697792), (45.11491, -7.8217235, 20.086452), (44.00184, -7.8217235, 22.420055), (42.768158, -7.8217235, 24.69221), (41.417255, -7.8217235, 26.89668), (39.95283, -7.8217235, 29.027431), (38.3789, -7.8217235, 31.07862), (36.699776, -7.8217235, 33.044624), (34.920055, -7.8217235, 34.920055), (33.044624, -7.8217235, 36.699776), (31.07862, -7.8217235, 38.3789), (29.027431, -7.8217235, 39.95283), (26.89668, -7.8217235, 41.417255), (24.69221, -7.8217235, 42.768158), (22.420055, -7.8217235, 44.00184), (20.086452, -7.8217235, 45.11491), (17.697792, -7.8217235, 46.104324), (15.260624, -7.8217235, 46.967373), (12.781628, -7.8217235, 47.701683), (10.267597, -7.8217235, 48.30525), (7.725425, -7.8217235, 48.776413), (5.1620774, -7.8217235, 49.113884), (2.5845807, -7.8217235, 49.31674), (3.0239235e-15, -7.8217235, 49.38442), (-2.5845807, -7.8217235, 49.31674), (-5.1620774, -7.8217235, 49.113884), (-7.725425, -7.8217235, 48.776413), (-10.267597, -7.8217235, 48.30525), (-12.781628, -7.8217235, 47.701683), (-15.260624, -7.8217235, 46.967373), (-17.697792, -7.8217235, 46.104324), (-20.086452, -7.8217235, 45.11491), (-22.420055, -7.8217235, 44.00184), (-24.69221, -7.8217235, 42.768158), (-26.89668, -7.8217235, 41.417255), (-29.027431, -7.8217235, 39.95283), (-31.07862, -7.8217235, 38.3789), (-33.044624, -7.8217235, 36.699776), (-34.920055, -7.8217235, 34.920055), (-36.699776, -7.8217235, 33.044624), (-38.3789, -7.8217235, 31.07862), (-39.95283, -7.8217235, 29.027431), (-41.417255, -7.8217235, 26.89668), (-42.768158, -7.8217235, 24.69221), (-44.00184, -7.8217235, 22.420055), (-45.11491, -7.8217235, 20.086452), (-46.104324, -7.8217235, 17.697792), (-46.967373, -7.8217235, 15.260624), (-47.701683, -7.8217235, 12.781628), (-48.30525, -7.8217235, 10.267597), (-48.776413, -7.8217235, 7.725425), (-49.113884, -7.8217235, 5.1620774), (-49.31674, -7.8217235, 2.5845807), (-49.38442, -7.8217235, 6.047847e-15), (-49.31674, -7.8217235, -2.5845807), (-49.113884, -7.8217235, -5.1620774), (-48.776413, -7.8217235, -7.725425), (-48.30525, -7.8217235, -10.267597), (-47.701683, -7.8217235, -12.781628), (-46.967373, -7.8217235, -15.260624), (-46.104324, -7.8217235, -17.697792), (-45.11491, -7.8217235, -20.086452), (-44.00184, -7.8217235, -22.420055), (-42.768158, -7.8217235, -24.69221), (-41.417255, -7.8217235, -26.89668), (-39.95283, -7.8217235, -29.027431), (-38.3789, -7.8217235, -31.07862), (-36.699776, -7.8217235, -33.044624), (-34.920055, -7.8217235, -34.920055), (-33.044624, -7.8217235, -36.699776), (-31.07862, -7.8217235, -38.3789), (-29.027431, -7.8217235, -39.95283), (-26.89668, -7.8217235, -41.417255), (-24.69221, -7.8217235, -42.768158), (-22.420055, -7.8217235, -44.00184), (-20.086452, -7.8217235, -45.11491), (-17.697792, -7.8217235, -46.104324), (-15.260624, -7.8217235, -46.967373), (-12.781628, -7.8217235, -47.701683), (-10.267597, -7.8217235, -48.30525), (-7.725425, -7.8217235, -48.776413), (-5.1620774, -7.8217235, -49.113884), (-2.5845807, -7.8217235, -49.31674), (-9.07177e-15, -7.8217235, -49.38442), (2.5845807, -7.8217235, -49.31674), (5.1620774, -7.8217235, -49.113884), (7.725425, -7.8217235, -48.776413), (10.267597, -7.8217235, -48.30525), (12.781628, -7.8217235, -47.701683), (15.260624, -7.8217235, -46.967373), (17.697792, -7.8217235, -46.104324), (20.086452, -7.8217235, -45.11491), (22.420055, -7.8217235, -44.00184), (24.69221, -7.8217235, -42.768158), (26.89668, -7.8217235, -41.417255), (29.027431, -7.8217235, -39.95283), (31.07862, -7.8217235, -38.3789), (33.044624, -7.8217235, -36.699776), (34.920055, -7.8217235, -34.920055), (36.699776, -7.8217235, -33.044624), (38.3789, -7.8217235, -31.07862), (39.95283, -7.8217235, -29.027431), (41.417255, -7.8217235, -26.89668), (42.768158, -7.8217235, -24.69221), (44.00184, -7.8217235, -22.420055), (45.11491, -7.8217235, -20.086452), (46.104324, -7.8217235, -17.697792), (46.967373, -7.8217235, -15.260624), (47.701683, -7.8217235, -12.781628), (48.30525, -7.8217235, -10.267597), (48.776413, -7.8217235, -7.725425), (49.113884, -7.8217235, -5.1620774), (49.31674, -7.8217235, -2.5845807), (49.726093, -5.2264233, 0), (49.657948, -5.2264233, 2.6024628), (49.45369, -5.2264233, 5.197792), (49.113884, -5.2264233, 7.778875), (48.63946, -5.2264233, 10.338636), (48.03172, -5.2264233, 12.87006), (47.292328, -5.2264233, 15.366208), (46.42331, -5.2264233, 17.820238), (45.427048, -5.2264233, 20.225426), (44.306274, -5.2264233, 22.575174), (43.06406, -5.2264233, 24.863047), (41.70381, -5.2264233, 27.082773), (40.229256, -5.2264233, 29.228266), (38.644432, -5.2264233, 31.293646), (36.95369, -5.2264233, 33.27325), (35.16166, -5.2264233, 35.16166), (33.27325, -5.2264233, 36.95369), (31.293646, -5.2264233, 38.644432), (29.228266, -5.2264233, 40.229256), (27.082773, -5.2264233, 41.70381), (24.863047, -5.2264233, 43.06406), (22.575174, -5.2264233, 44.306274), (20.225426, -5.2264233, 45.427048), (17.820238, -5.2264233, 46.42331), (15.366208, -5.2264233, 47.292328), (12.87006, -5.2264233, 48.03172), (10.338636, -5.2264233, 48.63946), (7.778875, -5.2264233, 49.113884), (5.197792, -5.2264233, 49.45369), (2.6024628, -5.2264233, 49.657948), (3.0448452e-15, -5.2264233, 49.726093), (-2.6024628, -5.2264233, 49.657948), (-5.197792, -5.2264233, 49.45369), (-7.778875, -5.2264233, 49.113884), (-10.338636, -5.2264233, 48.63946), (-12.87006, -5.2264233, 48.03172), (-15.366208, -5.2264233, 47.292328), (-17.820238, -5.2264233, 46.42331), (-20.225426, -5.2264233, 45.427048), (-22.575174, -5.2264233, 44.306274), (-24.863047, -5.2264233, 43.06406), (-27.082773, -5.2264233, 41.70381), (-29.228266, -5.2264233, 40.229256), (-31.293646, -5.2264233, 38.644432), (-33.27325, -5.2264233, 36.95369), (-35.16166, -5.2264233, 35.16166), (-36.95369, -5.2264233, 33.27325), (-38.644432, -5.2264233, 31.293646), (-40.229256, -5.2264233, 29.228266), (-41.70381, -5.2264233, 27.082773), (-43.06406, -5.2264233, 24.863047), (-44.306274, -5.2264233, 22.575174), (-45.427048, -5.2264233, 20.225426), (-46.42331, -5.2264233, 17.820238), (-47.292328, -5.2264233, 15.366208), (-48.03172, -5.2264233, 12.87006), (-48.63946, -5.2264233, 10.338636), (-49.113884, -5.2264233, 7.778875), (-49.45369, -5.2264233, 5.197792), (-49.657948, -5.2264233, 2.6024628), (-49.726093, -5.2264233, 6.0896904e-15), (-49.657948, -5.2264233, -2.6024628), (-49.45369, -5.2264233, -5.197792), (-49.113884, -5.2264233, -7.778875), (-48.63946, -5.2264233, -10.338636), (-48.03172, -5.2264233, -12.87006), (-47.292328, -5.2264233, -15.366208), (-46.42331, -5.2264233, -17.820238), (-45.427048, -5.2264233, -20.225426), (-44.306274, -5.2264233, -22.575174), (-43.06406, -5.2264233, -24.863047), (-41.70381, -5.2264233, -27.082773), (-40.229256, -5.2264233, -29.228266), (-38.644432, -5.2264233, -31.293646), (-36.95369, -5.2264233, -33.27325), (-35.16166, -5.2264233, -35.16166), (-33.27325, -5.2264233, -36.95369), (-31.293646, -5.2264233, -38.644432), (-29.228266, -5.2264233, -40.229256), (-27.082773, -5.2264233, -41.70381), (-24.863047, -5.2264233, -43.06406), (-22.575174, -5.2264233, -44.306274), (-20.225426, -5.2264233, -45.427048), (-17.820238, -5.2264233, -46.42331), (-15.366208, -5.2264233, -47.292328), (-12.87006, -5.2264233, -48.03172), (-10.338636, -5.2264233, -48.63946), (-7.778875, -5.2264233, -49.113884), (-5.197792, -5.2264233, -49.45369), (-2.6024628, -5.2264233, -49.657948), (-9.1345354e-15, -5.2264233, -49.726093), (2.6024628, -5.2264233, -49.657948), (5.197792, -5.2264233, -49.45369), (7.778875, -5.2264233, -49.113884), (10.338636, -5.2264233, -48.63946), (12.87006, -5.2264233, -48.03172), (15.366208, -5.2264233, -47.292328), (17.820238, -5.2264233, -46.42331), (20.225426, -5.2264233, -45.427048), (22.575174, -5.2264233, -44.306274), (24.863047, -5.2264233, -43.06406), (27.082773, -5.2264233, -41.70381), (29.228266, -5.2264233, -40.229256), (31.293646, -5.2264233, -38.644432), (33.27325, -5.2264233, -36.95369), (35.16166, -5.2264233, -35.16166), (36.95369, -5.2264233, -33.27325), (38.644432, -5.2264233, -31.293646), (40.229256, -5.2264233, -29.228266), (41.70381, -5.2264233, -27.082773), (43.06406, -5.2264233, -24.863047), (44.306274, -5.2264233, -22.575174), (45.427048, -5.2264233, -20.225426), (46.42331, -5.2264233, -17.820238), (47.292328, -5.2264233, -15.366208), (48.03172, -5.2264233, -12.87006), (48.63946, -5.2264233, -10.338636), (49.113884, -5.2264233, -7.778875), (49.45369, -5.2264233, -5.197792), (49.657948, -5.2264233, -2.6024628), (49.931477, -2.616798, 0), (49.86305, -2.616798, 2.6132116), (49.657948, -2.616798, 5.2192607), (49.31674, -2.616798, 7.8110037), (48.840355, -2.616798, 10.381338), (48.230103, -2.616798, 12.923217), (47.487656, -2.616798, 15.429675), (46.615047, -2.616798, 17.89384), (45.614674, -2.616798, 20.308962), (44.489273, -2.616798, 22.668417), (43.24193, -2.616798, 24.965738), (41.87606, -2.616798, 27.194632), (40.395412, -2.616798, 29.348986), (38.804047, -2.616798, 31.422897), (37.10632, -2.616798, 33.41068), (35.306885, -2.616798, 35.306885), (33.41068, -2.616798, 37.10632), (31.422897, -2.616798, 38.804047), (29.348986, -2.616798, 40.395412), (27.194632, -2.616798, 41.87606), (24.965738, -2.616798, 43.24193), (22.668417, -2.616798, 44.489273), (20.308962, -2.616798, 45.614674), (17.89384, -2.616798, 46.615047), (15.429675, -2.616798, 47.487656), (12.923217, -2.616798, 48.230103), (10.381338, -2.616798, 48.840355), (7.8110037, -2.616798, 49.31674), (5.2192607, -2.616798, 49.657948), (2.6132116, -2.616798, 49.86305), (3.0574211e-15, -2.616798, 49.931477), (-2.6132116, -2.616798, 49.86305), (-5.2192607, -2.616798, 49.657948), (-7.8110037, -2.616798, 49.31674), (-10.381338, -2.616798, 48.840355), (-12.923217, -2.616798, 48.230103), (-15.429675, -2.616798, 47.487656), (-17.89384, -2.616798, 46.615047), (-20.308962, -2.616798, 45.614674), (-22.668417, -2.616798, 44.489273), (-24.965738, -2.616798, 43.24193), (-27.194632, -2.616798, 41.87606), (-29.348986, -2.616798, 40.395412), (-31.422897, -2.616798, 38.804047), (-33.41068, -2.616798, 37.10632), (-35.306885, -2.616798, 35.306885), (-37.10632, -2.616798, 33.41068), (-38.804047, -2.616798, 31.422897), (-40.395412, -2.616798, 29.348986), (-41.87606, -2.616798, 27.194632), (-43.24193, -2.616798, 24.965738), (-44.489273, -2.616798, 22.668417), (-45.614674, -2.616798, 20.308962), (-46.615047, -2.616798, 17.89384), (-47.487656, -2.616798, 15.429675), (-48.230103, -2.616798, 12.923217), (-48.840355, -2.616798, 10.381338), (-49.31674, -2.616798, 7.8110037), (-49.657948, -2.616798, 5.2192607), (-49.86305, -2.616798, 2.6132116), (-49.931477, -2.616798, 6.1148422e-15), (-49.86305, -2.616798, -2.6132116), (-49.657948, -2.616798, -5.2192607), (-49.31674, -2.616798, -7.8110037), (-48.840355, -2.616798, -10.381338), (-48.230103, -2.616798, -12.923217), (-47.487656, -2.616798, -15.429675), (-46.615047, -2.616798, -17.89384), (-45.614674, -2.616798, -20.308962), (-44.489273, -2.616798, -22.668417), (-43.24193, -2.616798, -24.965738), (-41.87606, -2.616798, -27.194632), (-40.395412, -2.616798, -29.348986), (-38.804047, -2.616798, -31.422897), (-37.10632, -2.616798, -33.41068), (-35.306885, -2.616798, -35.306885), (-33.41068, -2.616798, -37.10632), (-31.422897, -2.616798, -38.804047), (-29.348986, -2.616798, -40.395412), (-27.194632, -2.616798, -41.87606), (-24.965738, -2.616798, -43.24193), (-22.668417, -2.616798, -44.489273), (-20.308962, -2.616798, -45.614674), (-17.89384, -2.616798, -46.615047), (-15.429675, -2.616798, -47.487656), (-12.923217, -2.616798, -48.230103), (-10.381338, -2.616798, -48.840355), (-7.8110037, -2.616798, -49.31674), (-5.2192607, -2.616798, -49.657948), (-2.6132116, -2.616798, -49.86305), (-9.172263e-15, -2.616798, -49.931477), (2.6132116, -2.616798, -49.86305), (5.2192607, -2.616798, -49.657948), (7.8110037, -2.616798, -49.31674), (10.381338, -2.616798, -48.840355), (12.923217, -2.616798, -48.230103), (15.429675, -2.616798, -47.487656), (17.89384, -2.616798, -46.615047), (20.308962, -2.616798, -45.614674), (22.668417, -2.616798, -44.489273), (24.965738, -2.616798, -43.24193), (27.194632, -2.616798, -41.87606), (29.348986, -2.616798, -40.395412), (31.422897, -2.616798, -38.804047), (33.41068, -2.616798, -37.10632), (35.306885, -2.616798, -35.306885), (37.10632, -2.616798, -33.41068), (38.804047, -2.616798, -31.422897), (40.395412, -2.616798, -29.348986), (41.87606, -2.616798, -27.194632), (43.24193, -2.616798, -24.965738), (44.489273, -2.616798, -22.668417), (45.614674, -2.616798, -20.308962), (46.615047, -2.616798, -17.89384), (47.487656, -2.616798, -15.429675), (48.230103, -2.616798, -12.923217), (48.840355, -2.616798, -10.381338), (49.31674, -2.616798, -7.8110037), (49.657948, -2.616798, -5.2192607), (49.86305, -2.616798, -2.6132116), (50, 0, 0), (49.931477, 0, 2.616798), (49.726093, 0, 5.2264233), (49.38442, 0, 7.8217235), (48.90738, 0, 10.395584), (48.29629, 0, 12.940952), (47.552826, 0, 15.45085), (46.67902, 0, 17.918398), (45.677273, 0, 20.336832), (44.550327, 0, 22.699526), (43.30127, 0, 25), (41.93353, 0, 27.231953), (40.45085, 0, 29.389263), (38.8573, 0, 31.466019), (37.15724, 0, 33.45653), (35.35534, 0, 35.35534), (33.45653, 0, 37.15724), (31.466019, 0, 38.8573), (29.389263, 0, 40.45085), (27.231953, 0, 41.93353), (25, 0, 43.30127), (22.699526, 0, 44.550327), (20.336832, 0, 45.677273), (17.918398, 0, 46.67902), (15.45085, 0, 47.552826), (12.940952, 0, 48.29629), (10.395584, 0, 48.90738), (7.8217235, 0, 49.38442), (5.2264233, 0, 49.726093), (2.616798, 0, 49.931477), (3.0616169e-15, 0, 50), (-2.616798, 0, 49.931477), (-5.2264233, 0, 49.726093), (-7.8217235, 0, 49.38442), (-10.395584, 0, 48.90738), (-12.940952, 0, 48.29629), (-15.45085, 0, 47.552826), (-17.918398, 0, 46.67902), (-20.336832, 0, 45.677273), (-22.699526, 0, 44.550327), (-25, 0, 43.30127), (-27.231953, 0, 41.93353), (-29.389263, 0, 40.45085), (-31.466019, 0, 38.8573), (-33.45653, 0, 37.15724), (-35.35534, 0, 35.35534), (-37.15724, 0, 33.45653), (-38.8573, 0, 31.466019), (-40.45085, 0, 29.389263), (-41.93353, 0, 27.231953), (-43.30127, 0, 25), (-44.550327, 0, 22.699526), (-45.677273, 0, 20.336832), (-46.67902, 0, 17.918398), (-47.552826, 0, 15.45085), (-48.29629, 0, 12.940952), (-48.90738, 0, 10.395584), (-49.38442, 0, 7.8217235), (-49.726093, 0, 5.2264233), (-49.931477, 0, 2.616798), (-50, 0, 6.1232338e-15), (-49.931477, 0, -2.616798), (-49.726093, 0, -5.2264233), (-49.38442, 0, -7.8217235), (-48.90738, 0, -10.395584), (-48.29629, 0, -12.940952), (-47.552826, 0, -15.45085), (-46.67902, 0, -17.918398), (-45.677273, 0, -20.336832), (-44.550327, 0, -22.699526), (-43.30127, 0, -25), (-41.93353, 0, -27.231953), (-40.45085, 0, -29.389263), (-38.8573, 0, -31.466019), (-37.15724, 0, -33.45653), (-35.35534, 0, -35.35534), (-33.45653, 0, -37.15724), (-31.466019, 0, -38.8573), (-29.389263, 0, -40.45085), (-27.231953, 0, -41.93353), (-25, 0, -43.30127), (-22.699526, 0, -44.550327), (-20.336832, 0, -45.677273), (-17.918398, 0, -46.67902), (-15.45085, 0, -47.552826), (-12.940952, 0, -48.29629), (-10.395584, 0, -48.90738), (-7.8217235, 0, -49.38442), (-5.2264233, 0, -49.726093), (-2.616798, 0, -49.931477), (-9.184851e-15, 0, -50), (2.616798, 0, -49.931477), (5.2264233, 0, -49.726093), (7.8217235, 0, -49.38442), (10.395584, 0, -48.90738), (12.940952, 0, -48.29629), (15.45085, 0, -47.552826), (17.918398, 0, -46.67902), (20.336832, 0, -45.677273), (22.699526, 0, -44.550327), (25, 0, -43.30127), (27.231953, 0, -41.93353), (29.389263, 0, -40.45085), (31.466019, 0, -38.8573), (33.45653, 0, -37.15724), (35.35534, 0, -35.35534), (37.15724, 0, -33.45653), (38.8573, 0, -31.466019), (40.45085, 0, -29.389263), (41.93353, 0, -27.231953), (43.30127, 0, -25), (44.550327, 0, -22.699526), (45.677273, 0, -20.336832), (46.67902, 0, -17.918398), (47.552826, 0, -15.45085), (48.29629, 0, -12.940952), (48.90738, 0, -10.395584), (49.38442, 0, -7.8217235), (49.726093, 0, -5.2264233), (49.931477, 0, -2.616798), (49.931477, 2.616798, 0), (49.86305, 2.616798, 2.6132116), (49.657948, 2.616798, 5.2192607), (49.31674, 2.616798, 7.8110037), (48.840355, 2.616798, 10.381338), (48.230103, 2.616798, 12.923217), (47.487656, 2.616798, 15.429675), (46.615047, 2.616798, 17.89384), (45.614674, 2.616798, 20.308962), (44.489273, 2.616798, 22.668417), (43.24193, 2.616798, 24.965738), (41.87606, 2.616798, 27.194632), (40.395412, 2.616798, 29.348986), (38.804047, 2.616798, 31.422897), (37.10632, 2.616798, 33.41068), (35.306885, 2.616798, 35.306885), (33.41068, 2.616798, 37.10632), (31.422897, 2.616798, 38.804047), (29.348986, 2.616798, 40.395412), (27.194632, 2.616798, 41.87606), (24.965738, 2.616798, 43.24193), (22.668417, 2.616798, 44.489273), (20.308962, 2.616798, 45.614674), (17.89384, 2.616798, 46.615047), (15.429675, 2.616798, 47.487656), (12.923217, 2.616798, 48.230103), (10.381338, 2.616798, 48.840355), (7.8110037, 2.616798, 49.31674), (5.2192607, 2.616798, 49.657948), (2.6132116, 2.616798, 49.86305), (3.0574211e-15, 2.616798, 49.931477), (-2.6132116, 2.616798, 49.86305), (-5.2192607, 2.616798, 49.657948), (-7.8110037, 2.616798, 49.31674), (-10.381338, 2.616798, 48.840355), (-12.923217, 2.616798, 48.230103), (-15.429675, 2.616798, 47.487656), (-17.89384, 2.616798, 46.615047), (-20.308962, 2.616798, 45.614674), (-22.668417, 2.616798, 44.489273), (-24.965738, 2.616798, 43.24193), (-27.194632, 2.616798, 41.87606), (-29.348986, 2.616798, 40.395412), (-31.422897, 2.616798, 38.804047), (-33.41068, 2.616798, 37.10632), (-35.306885, 2.616798, 35.306885), (-37.10632, 2.616798, 33.41068), (-38.804047, 2.616798, 31.422897), (-40.395412, 2.616798, 29.348986), (-41.87606, 2.616798, 27.194632), (-43.24193, 2.616798, 24.965738), (-44.489273, 2.616798, 22.668417), (-45.614674, 2.616798, 20.308962), (-46.615047, 2.616798, 17.89384), (-47.487656, 2.616798, 15.429675), (-48.230103, 2.616798, 12.923217), (-48.840355, 2.616798, 10.381338), (-49.31674, 2.616798, 7.8110037), (-49.657948, 2.616798, 5.2192607), (-49.86305, 2.616798, 2.6132116), (-49.931477, 2.616798, 6.1148422e-15), (-49.86305, 2.616798, -2.6132116), (-49.657948, 2.616798, -5.2192607), (-49.31674, 2.616798, -7.8110037), (-48.840355, 2.616798, -10.381338), (-48.230103, 2.616798, -12.923217), (-47.487656, 2.616798, -15.429675), (-46.615047, 2.616798, -17.89384), (-45.614674, 2.616798, -20.308962), (-44.489273, 2.616798, -22.668417), (-43.24193, 2.616798, -24.965738), (-41.87606, 2.616798, -27.194632), (-40.395412, 2.616798, -29.348986), (-38.804047, 2.616798, -31.422897), (-37.10632, 2.616798, -33.41068), (-35.306885, 2.616798, -35.306885), (-33.41068, 2.616798, -37.10632), (-31.422897, 2.616798, -38.804047), (-29.348986, 2.616798, -40.395412), (-27.194632, 2.616798, -41.87606), (-24.965738, 2.616798, -43.24193), (-22.668417, 2.616798, -44.489273), (-20.308962, 2.616798, -45.614674), (-17.89384, 2.616798, -46.615047), (-15.429675, 2.616798, -47.487656), (-12.923217, 2.616798, -48.230103), (-10.381338, 2.616798, -48.840355), (-7.8110037, 2.616798, -49.31674), (-5.2192607, 2.616798, -49.657948), (-2.6132116, 2.616798, -49.86305), (-9.172263e-15, 2.616798, -49.931477), (2.6132116, 2.616798, -49.86305), (5.2192607, 2.616798, -49.657948), (7.8110037, 2.616798, -49.31674), (10.381338, 2.616798, -48.840355), (12.923217, 2.616798, -48.230103), (15.429675, 2.616798, -47.487656), (17.89384, 2.616798, -46.615047), (20.308962, 2.616798, -45.614674), (22.668417, 2.616798, -44.489273), (24.965738, 2.616798, -43.24193), (27.194632, 2.616798, -41.87606), (29.348986, 2.616798, -40.395412), (31.422897, 2.616798, -38.804047), (33.41068, 2.616798, -37.10632), (35.306885, 2.616798, -35.306885), (37.10632, 2.616798, -33.41068), (38.804047, 2.616798, -31.422897), (40.395412, 2.616798, -29.348986), (41.87606, 2.616798, -27.194632), (43.24193, 2.616798, -24.965738), (44.489273, 2.616798, -22.668417), (45.614674, 2.616798, -20.308962), (46.615047, 2.616798, -17.89384), (47.487656, 2.616798, -15.429675), (48.230103, 2.616798, -12.923217), (48.840355, 2.616798, -10.381338), (49.31674, 2.616798, -7.8110037), (49.657948, 2.616798, -5.2192607), (49.86305, 2.616798, -2.6132116), (49.726093, 5.2264233, 0), (49.657948, 5.2264233, 2.6024628), (49.45369, 5.2264233, 5.197792), (49.113884, 5.2264233, 7.778875), (48.63946, 5.2264233, 10.338636), (48.03172, 5.2264233, 12.87006), (47.292328, 5.2264233, 15.366208), (46.42331, 5.2264233, 17.820238), (45.427048, 5.2264233, 20.225426), (44.306274, 5.2264233, 22.575174), (43.06406, 5.2264233, 24.863047), (41.70381, 5.2264233, 27.082773), (40.229256, 5.2264233, 29.228266), (38.644432, 5.2264233, 31.293646), (36.95369, 5.2264233, 33.27325), (35.16166, 5.2264233, 35.16166), (33.27325, 5.2264233, 36.95369), (31.293646, 5.2264233, 38.644432), (29.228266, 5.2264233, 40.229256), (27.082773, 5.2264233, 41.70381), (24.863047, 5.2264233, 43.06406), (22.575174, 5.2264233, 44.306274), (20.225426, 5.2264233, 45.427048), (17.820238, 5.2264233, 46.42331), (15.366208, 5.2264233, 47.292328), (12.87006, 5.2264233, 48.03172), (10.338636, 5.2264233, 48.63946), (7.778875, 5.2264233, 49.113884), (5.197792, 5.2264233, 49.45369), (2.6024628, 5.2264233, 49.657948), (3.0448452e-15, 5.2264233, 49.726093), (-2.6024628, 5.2264233, 49.657948), (-5.197792, 5.2264233, 49.45369), (-7.778875, 5.2264233, 49.113884), (-10.338636, 5.2264233, 48.63946), (-12.87006, 5.2264233, 48.03172), (-15.366208, 5.2264233, 47.292328), (-17.820238, 5.2264233, 46.42331), (-20.225426, 5.2264233, 45.427048), (-22.575174, 5.2264233, 44.306274), (-24.863047, 5.2264233, 43.06406), (-27.082773, 5.2264233, 41.70381), (-29.228266, 5.2264233, 40.229256), (-31.293646, 5.2264233, 38.644432), (-33.27325, 5.2264233, 36.95369), (-35.16166, 5.2264233, 35.16166), (-36.95369, 5.2264233, 33.27325), (-38.644432, 5.2264233, 31.293646), (-40.229256, 5.2264233, 29.228266), (-41.70381, 5.2264233, 27.082773), (-43.06406, 5.2264233, 24.863047), (-44.306274, 5.2264233, 22.575174), (-45.427048, 5.2264233, 20.225426), (-46.42331, 5.2264233, 17.820238), (-47.292328, 5.2264233, 15.366208), (-48.03172, 5.2264233, 12.87006), (-48.63946, 5.2264233, 10.338636), (-49.113884, 5.2264233, 7.778875), (-49.45369, 5.2264233, 5.197792), (-49.657948, 5.2264233, 2.6024628), (-49.726093, 5.2264233, 6.0896904e-15), (-49.657948, 5.2264233, -2.6024628), (-49.45369, 5.2264233, -5.197792), (-49.113884, 5.2264233, -7.778875), (-48.63946, 5.2264233, -10.338636), (-48.03172, 5.2264233, -12.87006), (-47.292328, 5.2264233, -15.366208), (-46.42331, 5.2264233, -17.820238), (-45.427048, 5.2264233, -20.225426), (-44.306274, 5.2264233, -22.575174), (-43.06406, 5.2264233, -24.863047), (-41.70381, 5.2264233, -27.082773), (-40.229256, 5.2264233, -29.228266), (-38.644432, 5.2264233, -31.293646), (-36.95369, 5.2264233, -33.27325), (-35.16166, 5.2264233, -35.16166), (-33.27325, 5.2264233, -36.95369), (-31.293646, 5.2264233, -38.644432), (-29.228266, 5.2264233, -40.229256), (-27.082773, 5.2264233, -41.70381), (-24.863047, 5.2264233, -43.06406), (-22.575174, 5.2264233, -44.306274), (-20.225426, 5.2264233, -45.427048), (-17.820238, 5.2264233, -46.42331), (-15.366208, 5.2264233, -47.292328), (-12.87006, 5.2264233, -48.03172), (-10.338636, 5.2264233, -48.63946), (-7.778875, 5.2264233, -49.113884), (-5.197792, 5.2264233, -49.45369), (-2.6024628, 5.2264233, -49.657948), (-9.1345354e-15, 5.2264233, -49.726093), (2.6024628, 5.2264233, -49.657948), (5.197792, 5.2264233, -49.45369), (7.778875, 5.2264233, -49.113884), (10.338636, 5.2264233, -48.63946), (12.87006, 5.2264233, -48.03172), (15.366208, 5.2264233, -47.292328), (17.820238, 5.2264233, -46.42331), (20.225426, 5.2264233, -45.427048), (22.575174, 5.2264233, -44.306274), (24.863047, 5.2264233, -43.06406), (27.082773, 5.2264233, -41.70381), (29.228266, 5.2264233, -40.229256), (31.293646, 5.2264233, -38.644432), (33.27325, 5.2264233, -36.95369), (35.16166, 5.2264233, -35.16166), (36.95369, 5.2264233, -33.27325), (38.644432, 5.2264233, -31.293646), (40.229256, 5.2264233, -29.228266), (41.70381, 5.2264233, -27.082773), (43.06406, 5.2264233, -24.863047), (44.306274, 5.2264233, -22.575174), (45.427048, 5.2264233, -20.225426), (46.42331, 5.2264233, -17.820238), (47.292328, 5.2264233, -15.366208), (48.03172, 5.2264233, -12.87006), (48.63946, 5.2264233, -10.338636), (49.113884, 5.2264233, -7.778875), (49.45369, 5.2264233, -5.197792), (49.657948, 5.2264233, -2.6024628), (49.38442, 7.8217235, 0), (49.31674, 7.8217235, 2.5845807), (49.113884, 7.8217235, 5.1620774), (48.776413, 7.8217235, 7.725425), (48.30525, 7.8217235, 10.267597), (47.701683, 7.8217235, 12.781628), (46.967373, 7.8217235, 15.260624), (46.104324, 7.8217235, 17.697792), (45.11491, 7.8217235, 20.086452), (44.00184, 7.8217235, 22.420055), (42.768158, 7.8217235, 24.69221), (41.417255, 7.8217235, 26.89668), (39.95283, 7.8217235, 29.027431), (38.3789, 7.8217235, 31.07862), (36.699776, 7.8217235, 33.044624), (34.920055, 7.8217235, 34.920055), (33.044624, 7.8217235, 36.699776), (31.07862, 7.8217235, 38.3789), (29.027431, 7.8217235, 39.95283), (26.89668, 7.8217235, 41.417255), (24.69221, 7.8217235, 42.768158), (22.420055, 7.8217235, 44.00184), (20.086452, 7.8217235, 45.11491), (17.697792, 7.8217235, 46.104324), (15.260624, 7.8217235, 46.967373), (12.781628, 7.8217235, 47.701683), (10.267597, 7.8217235, 48.30525), (7.725425, 7.8217235, 48.776413), (5.1620774, 7.8217235, 49.113884), (2.5845807, 7.8217235, 49.31674), (3.0239235e-15, 7.8217235, 49.38442), (-2.5845807, 7.8217235, 49.31674), (-5.1620774, 7.8217235, 49.113884), (-7.725425, 7.8217235, 48.776413), (-10.267597, 7.8217235, 48.30525), (-12.781628, 7.8217235, 47.701683), (-15.260624, 7.8217235, 46.967373), (-17.697792, 7.8217235, 46.104324), (-20.086452, 7.8217235, 45.11491), (-22.420055, 7.8217235, 44.00184), (-24.69221, 7.8217235, 42.768158), (-26.89668, 7.8217235, 41.417255), (-29.027431, 7.8217235, 39.95283), (-31.07862, 7.8217235, 38.3789), (-33.044624, 7.8217235, 36.699776), (-34.920055, 7.8217235, 34.920055), (-36.699776, 7.8217235, 33.044624), (-38.3789, 7.8217235, 31.07862), (-39.95283, 7.8217235, 29.027431), (-41.417255, 7.8217235, 26.89668), (-42.768158, 7.8217235, 24.69221), (-44.00184, 7.8217235, 22.420055), (-45.11491, 7.8217235, 20.086452), (-46.104324, 7.8217235, 17.697792), (-46.967373, 7.8217235, 15.260624), (-47.701683, 7.8217235, 12.781628), (-48.30525, 7.8217235, 10.267597), (-48.776413, 7.8217235, 7.725425), (-49.113884, 7.8217235, 5.1620774), (-49.31674, 7.8217235, 2.5845807), (-49.38442, 7.8217235, 6.047847e-15), (-49.31674, 7.8217235, -2.5845807), (-49.113884, 7.8217235, -5.1620774), (-48.776413, 7.8217235, -7.725425), (-48.30525, 7.8217235, -10.267597), (-47.701683, 7.8217235, -12.781628), (-46.967373, 7.8217235, -15.260624), (-46.104324, 7.8217235, -17.697792), (-45.11491, 7.8217235, -20.086452), (-44.00184, 7.8217235, -22.420055), (-42.768158, 7.8217235, -24.69221), (-41.417255, 7.8217235, -26.89668), (-39.95283, 7.8217235, -29.027431), (-38.3789, 7.8217235, -31.07862), (-36.699776, 7.8217235, -33.044624), (-34.920055, 7.8217235, -34.920055), (-33.044624, 7.8217235, -36.699776), (-31.07862, 7.8217235, -38.3789), (-29.027431, 7.8217235, -39.95283), (-26.89668, 7.8217235, -41.417255), (-24.69221, 7.8217235, -42.768158), (-22.420055, 7.8217235, -44.00184), (-20.086452, 7.8217235, -45.11491), (-17.697792, 7.8217235, -46.104324), (-15.260624, 7.8217235, -46.967373), (-12.781628, 7.8217235, -47.701683), (-10.267597, 7.8217235, -48.30525), (-7.725425, 7.8217235, -48.776413), (-5.1620774, 7.8217235, -49.113884), (-2.5845807, 7.8217235, -49.31674), (-9.07177e-15, 7.8217235, -49.38442), (2.5845807, 7.8217235, -49.31674), (5.1620774, 7.8217235, -49.113884), (7.725425, 7.8217235, -48.776413), (10.267597, 7.8217235, -48.30525), (12.781628, 7.8217235, -47.701683), (15.260624, 7.8217235, -46.967373), (17.697792, 7.8217235, -46.104324), (20.086452, 7.8217235, -45.11491), (22.420055, 7.8217235, -44.00184), (24.69221, 7.8217235, -42.768158), (26.89668, 7.8217235, -41.417255), (29.027431, 7.8217235, -39.95283), (31.07862, 7.8217235, -38.3789), (33.044624, 7.8217235, -36.699776), (34.920055, 7.8217235, -34.920055), (36.699776, 7.8217235, -33.044624), (38.3789, 7.8217235, -31.07862), (39.95283, 7.8217235, -29.027431), (41.417255, 7.8217235, -26.89668), (42.768158, 7.8217235, -24.69221), (44.00184, 7.8217235, -22.420055), (45.11491, 7.8217235, -20.086452), (46.104324, 7.8217235, -17.697792), (46.967373, 7.8217235, -15.260624), (47.701683, 7.8217235, -12.781628), (48.30525, 7.8217235, -10.267597), (48.776413, 7.8217235, -7.725425), (49.113884, 7.8217235, -5.1620774), (49.31674, 7.8217235, -2.5845807), (48.90738, 10.395584, 0), (48.840355, 10.395584, 2.5596144), (48.63946, 10.395584, 5.112213), (48.30525, 10.395584, 7.6507998), (47.83864, 10.395584, 10.168416), (47.240902, 10.395584, 12.658161), (46.513683, 10.395584, 15.113212), (45.658974, 10.395584, 17.526838), (44.679115, 10.395584, 19.892424), (43.576794, 10.395584, 22.203485), (42.355034, 10.395584, 24.45369), (41.01718, 10.395584, 26.636868), (39.566902, 10.395584, 28.747036), (38.00817, 10.395584, 30.778412), (36.34527, 10.395584, 32.725426), (34.58274, 10.395584, 34.58274), (32.725426, 10.395584, 36.34527), (30.778412, 10.395584, 38.00817), (28.747036, 10.395584, 39.566902), (26.636868, 10.395584, 41.01718), (24.45369, 10.395584, 42.355034), (22.203485, 10.395584, 43.576794), (19.892424, 10.395584, 44.679115), (17.526838, 10.395584, 45.658974), (15.113212, 10.395584, 46.513683), (12.658161, 10.395584, 47.240902), (10.168416, 10.395584, 47.83864), (7.6507998, 10.395584, 48.30525), (5.112213, 10.395584, 48.63946), (2.5596144, 10.395584, 48.840355), (2.9947134e-15, 10.395584, 48.90738), (-2.5596144, 10.395584, 48.840355), (-5.112213, 10.395584, 48.63946), (-7.6507998, 10.395584, 48.30525), (-10.168416, 10.395584, 47.83864), (-12.658161, 10.395584, 47.240902), (-15.113212, 10.395584, 46.513683), (-17.526838, 10.395584, 45.658974), (-19.892424, 10.395584, 44.679115), (-22.203485, 10.395584, 43.576794), (-24.45369, 10.395584, 42.355034), (-26.636868, 10.395584, 41.01718), (-28.747036, 10.395584, 39.566902), (-30.778412, 10.395584, 38.00817), (-32.725426, 10.395584, 36.34527), (-34.58274, 10.395584, 34.58274), (-36.34527, 10.395584, 32.725426), (-38.00817, 10.395584, 30.778412), (-39.566902, 10.395584, 28.747036), (-41.01718, 10.395584, 26.636868), (-42.355034, 10.395584, 24.45369), (-43.576794, 10.395584, 22.203485), (-44.679115, 10.395584, 19.892424), (-45.658974, 10.395584, 17.526838), (-46.513683, 10.395584, 15.113212), (-47.240902, 10.395584, 12.658161), (-47.83864, 10.395584, 10.168416), (-48.30525, 10.395584, 7.6507998), (-48.63946, 10.395584, 5.112213), (-48.840355, 10.395584, 2.5596144), (-48.90738, 10.395584, 5.9894267e-15), (-48.840355, 10.395584, -2.5596144), (-48.63946, 10.395584, -5.112213), (-48.30525, 10.395584, -7.6507998), (-47.83864, 10.395584, -10.168416), (-47.240902, 10.395584, -12.658161), (-46.513683, 10.395584, -15.113212), (-45.658974, 10.395584, -17.526838), (-44.679115, 10.395584, -19.892424), (-43.576794, 10.395584, -22.203485), (-42.355034, 10.395584, -24.45369), (-41.01718, 10.395584, -26.636868), (-39.566902, 10.395584, -28.747036), (-38.00817, 10.395584, -30.778412), (-36.34527, 10.395584, -32.725426), (-34.58274, 10.395584, -34.58274), (-32.725426, 10.395584, -36.34527), (-30.778412, 10.395584, -38.00817), (-28.747036, 10.395584, -39.566902), (-26.636868, 10.395584, -41.01718), (-24.45369, 10.395584, -42.355034), (-22.203485, 10.395584, -43.576794), (-19.892424, 10.395584, -44.679115), (-17.526838, 10.395584, -45.658974), (-15.113212, 10.395584, -46.513683), (-12.658161, 10.395584, -47.240902), (-10.168416, 10.395584, -47.83864), (-7.6507998, 10.395584, -48.30525), (-5.112213, 10.395584, -48.63946), (-2.5596144, 10.395584, -48.840355), (-8.98414e-15, 10.395584, -48.90738), (2.5596144, 10.395584, -48.840355), (5.112213, 10.395584, -48.63946), (7.6507998, 10.395584, -48.30525), (10.168416, 10.395584, -47.83864), (12.658161, 10.395584, -47.240902), (15.113212, 10.395584, -46.513683), (17.526838, 10.395584, -45.658974), (19.892424, 10.395584, -44.679115), (22.203485, 10.395584, -43.576794), (24.45369, 10.395584, -42.355034), (26.636868, 10.395584, -41.01718), (28.747036, 10.395584, -39.566902), (30.778412, 10.395584, -38.00817), (32.725426, 10.395584, -36.34527), (34.58274, 10.395584, -34.58274), (36.34527, 10.395584, -32.725426), (38.00817, 10.395584, -30.778412), (39.566902, 10.395584, -28.747036), (41.01718, 10.395584, -26.636868), (42.355034, 10.395584, -24.45369), (43.576794, 10.395584, -22.203485), (44.679115, 10.395584, -19.892424), (45.658974, 10.395584, -17.526838), (46.513683, 10.395584, -15.113212), (47.240902, 10.395584, -12.658161), (47.83864, 10.395584, -10.168416), (48.30525, 10.395584, -7.6507998), (48.63946, 10.395584, -5.112213), (48.840355, 10.395584, -2.5596144), (48.29629, 12.940952, 0), (48.230103, 12.940952, 2.5276325), (48.03172, 12.940952, 5.048337), (47.701683, 12.940952, 7.5552044), (47.240902, 12.940952, 10.041364), (46.650635, 12.940952, 12.5), (45.932503, 12.940952, 14.924375), (45.08847, 12.940952, 17.307842), (44.120857, 12.940952, 19.643871), (43.03231, 12.940952, 21.926058), (41.825813, 12.940952, 24.148146), (40.504677, 12.940952, 26.304045), (39.07252, 12.940952, 28.387848), (37.533268, 12.940952, 30.39384), (35.89114, 12.940952, 32.31653), (34.150635, 12.940952, 34.150635), (32.31653, 12.940952, 35.89114), (30.39384, 12.940952, 37.533268), (28.387848, 12.940952, 39.07252), (26.304045, 12.940952, 40.504677), (24.148146, 12.940952, 41.825813), (21.926058, 12.940952, 43.03231), (19.643871, 12.940952, 44.120857), (17.307842, 12.940952, 45.08847), (14.924375, 12.940952, 45.932503), (12.5, 12.940952, 46.650635), (10.041364, 12.940952, 47.240902), (7.5552044, 12.940952, 47.701683), (5.048337, 12.940952, 48.03172), (2.5276325, 12.940952, 48.230103), (2.9572948e-15, 12.940952, 48.29629), (-2.5276325, 12.940952, 48.230103), (-5.048337, 12.940952, 48.03172), (-7.5552044, 12.940952, 47.701683), (-10.041364, 12.940952, 47.240902), (-12.5, 12.940952, 46.650635), (-14.924375, 12.940952, 45.932503), (-17.307842, 12.940952, 45.08847), (-19.643871, 12.940952, 44.120857), (-21.926058, 12.940952, 43.03231), (-24.148146, 12.940952, 41.825813), (-26.304045, 12.940952, 40.504677), (-28.387848, 12.940952, 39.07252), (-30.39384, 12.940952, 37.533268), (-32.31653, 12.940952, 35.89114), (-34.150635, 12.940952, 34.150635), (-35.89114, 12.940952, 32.31653), (-37.533268, 12.940952, 30.39384), (-39.07252, 12.940952, 28.387848), (-40.504677, 12.940952, 26.304045), (-41.825813, 12.940952, 24.148146), (-43.03231, 12.940952, 21.926058), (-44.120857, 12.940952, 19.643871), (-45.08847, 12.940952, 17.307842), (-45.932503, 12.940952, 14.924375), (-46.650635, 12.940952, 12.5), (-47.240902, 12.940952, 10.041364), (-47.701683, 12.940952, 7.5552044), (-48.03172, 12.940952, 5.048337), (-48.230103, 12.940952, 2.5276325), (-48.29629, 12.940952, 5.9145897e-15), (-48.230103, 12.940952, -2.5276325), (-48.03172, 12.940952, -5.048337), (-47.701683, 12.940952, -7.5552044), (-47.240902, 12.940952, -10.041364), (-46.650635, 12.940952, -12.5), (-45.932503, 12.940952, -14.924375), (-45.08847, 12.940952, -17.307842), (-44.120857, 12.940952, -19.643871), (-43.03231, 12.940952, -21.926058), (-41.825813, 12.940952, -24.148146), (-40.504677, 12.940952, -26.304045), (-39.07252, 12.940952, -28.387848), (-37.533268, 12.940952, -30.39384), (-35.89114, 12.940952, -32.31653), (-34.150635, 12.940952, -34.150635), (-32.31653, 12.940952, -35.89114), (-30.39384, 12.940952, -37.533268), (-28.387848, 12.940952, -39.07252), (-26.304045, 12.940952, -40.504677), (-24.148146, 12.940952, -41.825813), (-21.926058, 12.940952, -43.03231), (-19.643871, 12.940952, -44.120857), (-17.307842, 12.940952, -45.08847), (-14.924375, 12.940952, -45.932503), (-12.5, 12.940952, -46.650635), (-10.041364, 12.940952, -47.240902), (-7.5552044, 12.940952, -47.701683), (-5.048337, 12.940952, -48.03172), (-2.5276325, 12.940952, -48.230103), (-8.871885e-15, 12.940952, -48.29629), (2.5276325, 12.940952, -48.230103), (5.048337, 12.940952, -48.03172), (7.5552044, 12.940952, -47.701683), (10.041364, 12.940952, -47.240902), (12.5, 12.940952, -46.650635), (14.924375, 12.940952, -45.932503), (17.307842, 12.940952, -45.08847), (19.643871, 12.940952, -44.120857), (21.926058, 12.940952, -43.03231), (24.148146, 12.940952, -41.825813), (26.304045, 12.940952, -40.504677), (28.387848, 12.940952, -39.07252), (30.39384, 12.940952, -37.533268), (32.31653, 12.940952, -35.89114), (34.150635, 12.940952, -34.150635), (35.89114, 12.940952, -32.31653), (37.533268, 12.940952, -30.39384), (39.07252, 12.940952, -28.387848), (40.504677, 12.940952, -26.304045), (41.825813, 12.940952, -24.148146), (43.03231, 12.940952, -21.926058), (44.120857, 12.940952, -19.643871), (45.08847, 12.940952, -17.307842), (45.932503, 12.940952, -14.924375), (46.650635, 12.940952, -12.5), (47.240902, 12.940952, -10.041364), (47.701683, 12.940952, -7.5552044), (48.03172, 12.940952, -5.048337), (48.230103, 12.940952, -2.5276325), (47.552826, 15.45085, 0), (47.487656, 15.45085, 2.4887226), (47.292328, 15.45085, 4.970624), (46.967373, 15.45085, 7.438901), (46.513683, 15.45085, 9.886788), (45.932503, 15.45085, 12.307577), (45.225426, 15.45085, 14.694632), (44.394386, 15.45085, 17.041409), (43.44167, 15.45085, 19.341476), (42.369877, 15.45085, 21.588531), (41.181953, 15.45085, 23.776413), (39.881157, 15.45085, 25.899126), (38.471043, 15.45085, 27.95085), (36.955486, 15.45085, 29.925962), (35.33864, 15.45085, 31.819052), (33.624924, 15.45085, 33.624924), (31.819052, 15.45085, 35.33864), (29.925962, 15.45085, 36.955486), (27.95085, 15.45085, 38.471043), (25.899126, 15.45085, 39.881157), (23.776413, 15.45085, 41.181953), (21.588531, 15.45085, 42.369877), (19.341476, 15.45085, 43.44167), (17.041409, 15.45085, 44.394386), (14.694632, 15.45085, 45.225426), (12.307577, 15.45085, 45.932503), (9.886788, 15.45085, 46.513683), (7.438901, 15.45085, 46.967373), (4.970624, 15.45085, 47.292328), (2.4887226, 15.45085, 47.487656), (2.9117708e-15, 15.45085, 47.552826), (-2.4887226, 15.45085, 47.487656), (-4.970624, 15.45085, 47.292328), (-7.438901, 15.45085, 46.967373), (-9.886788, 15.45085, 46.513683), (-12.307577, 15.45085, 45.932503), (-14.694632, 15.45085, 45.225426), (-17.041409, 15.45085, 44.394386), (-19.341476, 15.45085, 43.44167), (-21.588531, 15.45085, 42.369877), (-23.776413, 15.45085, 41.181953), (-25.899126, 15.45085, 39.881157), (-27.95085, 15.45085, 38.471043), (-29.925962, 15.45085, 36.955486), (-31.819052, 15.45085, 35.33864), (-33.624924, 15.45085, 33.624924), (-35.33864, 15.45085, 31.819052), (-36.955486, 15.45085, 29.925962), (-38.471043, 15.45085, 27.95085), (-39.881157, 15.45085, 25.899126), (-41.181953, 15.45085, 23.776413), (-42.369877, 15.45085, 21.588531), (-43.44167, 15.45085, 19.341476), (-44.394386, 15.45085, 17.041409), (-45.225426, 15.45085, 14.694632), (-45.932503, 15.45085, 12.307577), (-46.513683, 15.45085, 9.886788), (-46.967373, 15.45085, 7.438901), (-47.292328, 15.45085, 4.970624), (-47.487656, 15.45085, 2.4887226), (-47.552826, 15.45085, 5.8235417e-15), (-47.487656, 15.45085, -2.4887226), (-47.292328, 15.45085, -4.970624), (-46.967373, 15.45085, -7.438901), (-46.513683, 15.45085, -9.886788), (-45.932503, 15.45085, -12.307577), (-45.225426, 15.45085, -14.694632), (-44.394386, 15.45085, -17.041409), (-43.44167, 15.45085, -19.341476), (-42.369877, 15.45085, -21.588531), (-41.181953, 15.45085, -23.776413), (-39.881157, 15.45085, -25.899126), (-38.471043, 15.45085, -27.95085), (-36.955486, 15.45085, -29.925962), (-35.33864, 15.45085, -31.819052), (-33.624924, 15.45085, -33.624924), (-31.819052, 15.45085, -35.33864), (-29.925962, 15.45085, -36.955486), (-27.95085, 15.45085, -38.471043), (-25.899126, 15.45085, -39.881157), (-23.776413, 15.45085, -41.181953), (-21.588531, 15.45085, -42.369877), (-19.341476, 15.45085, -43.44167), (-17.041409, 15.45085, -44.394386), (-14.694632, 15.45085, -45.225426), (-12.307577, 15.45085, -45.932503), (-9.886788, 15.45085, -46.513683), (-7.438901, 15.45085, -46.967373), (-4.970624, 15.45085, -47.292328), (-2.4887226, 15.45085, -47.487656), (-8.735313e-15, 15.45085, -47.552826), (2.4887226, 15.45085, -47.487656), (4.970624, 15.45085, -47.292328), (7.438901, 15.45085, -46.967373), (9.886788, 15.45085, -46.513683), (12.307577, 15.45085, -45.932503), (14.694632, 15.45085, -45.225426), (17.041409, 15.45085, -44.394386), (19.341476, 15.45085, -43.44167), (21.588531, 15.45085, -42.369877), (23.776413, 15.45085, -41.181953), (25.899126, 15.45085, -39.881157), (27.95085, 15.45085, -38.471043), (29.925962, 15.45085, -36.955486), (31.819052, 15.45085, -35.33864), (33.624924, 15.45085, -33.624924), (35.33864, 15.45085, -31.819052), (36.955486, 15.45085, -29.925962), (38.471043, 15.45085, -27.95085), (39.881157, 15.45085, -25.899126), (41.181953, 15.45085, -23.776413), (42.369877, 15.45085, -21.588531), (43.44167, 15.45085, -19.341476), (44.394386, 15.45085, -17.041409), (45.225426, 15.45085, -14.694632), (45.932503, 15.45085, -12.307577), (46.513683, 15.45085, -9.886788), (46.967373, 15.45085, -7.438901), (47.292328, 15.45085, -4.970624), (47.487656, 15.45085, -2.4887226), (46.67902, 17.918398, 0), (46.615047, 17.918398, 2.4429913), (46.42331, 17.918398, 4.8792863), (46.104324, 17.918398, 7.302208), (45.658974, 17.918398, 9.705114), (45.08847, 17.918398, 12.08142), (44.394386, 17.918398, 14.424611), (43.57862, 17.918398, 16.728266), (42.64341, 17.918398, 18.986069), (41.591312, 17.918398, 21.191832), (40.425217, 17.918398, 23.33951), (39.148323, 17.918398, 25.423218), (37.764122, 17.918398, 27.43724), (36.276413, 17.918398, 29.37606), (34.689274, 17.918398, 31.234362), (33.007053, 17.918398, 33.007053), (31.234362, 17.918398, 34.689274), (29.37606, 17.918398, 36.276413), (27.43724, 17.918398, 37.764122), (25.423218, 17.918398, 39.148323), (23.33951, 17.918398, 40.425217), (21.191832, 17.918398, 41.591312), (18.986069, 17.918398, 42.64341), (16.728266, 17.918398, 43.57862), (14.424611, 17.918398, 44.394386), (12.08142, 17.918398, 45.08847), (9.705114, 17.918398, 45.658974), (7.302208, 17.918398, 46.104324), (4.8792863, 17.918398, 46.42331), (2.4429913, 17.918398, 46.615047), (2.8582657e-15, 17.918398, 46.67902), (-2.4429913, 17.918398, 46.615047), (-4.8792863, 17.918398, 46.42331), (-7.302208, 17.918398, 46.104324), (-9.705114, 17.918398, 45.658974), (-12.08142, 17.918398, 45.08847), (-14.424611, 17.918398, 44.394386), (-16.728266, 17.918398, 43.57862), (-18.986069, 17.918398, 42.64341), (-21.191832, 17.918398, 41.591312), (-23.33951, 17.918398, 40.425217), (-25.423218, 17.918398, 39.148323), (-27.43724, 17.918398, 37.764122), (-29.37606, 17.918398, 36.276413), (-31.234362, 17.918398, 34.689274), (-33.007053, 17.918398, 33.007053), (-34.689274, 17.918398, 31.234362), (-36.276413, 17.918398, 29.37606), (-37.764122, 17.918398, 27.43724), (-39.148323, 17.918398, 25.423218), (-40.425217, 17.918398, 23.33951), (-41.591312, 17.918398, 21.191832), (-42.64341, 17.918398, 18.986069), (-43.57862, 17.918398, 16.728266), (-44.394386, 17.918398, 14.424611), (-45.08847, 17.918398, 12.08142), (-45.658974, 17.918398, 9.705114), (-46.104324, 17.918398, 7.302208), (-46.42331, 17.918398, 4.8792863), (-46.615047, 17.918398, 2.4429913), (-46.67902, 17.918398, 5.7165313e-15), (-46.615047, 17.918398, -2.4429913), (-46.42331, 17.918398, -4.8792863), (-46.104324, 17.918398, -7.302208), (-45.658974, 17.918398, -9.705114), (-45.08847, 17.918398, -12.08142), (-44.394386, 17.918398, -14.424611), (-43.57862, 17.918398, -16.728266), (-42.64341, 17.918398, -18.986069), (-41.591312, 17.918398, -21.191832), (-40.425217, 17.918398, -23.33951), (-39.148323, 17.918398, -25.423218), (-37.764122, 17.918398, -27.43724), (-36.276413, 17.918398, -29.37606), (-34.689274, 17.918398, -31.234362), (-33.007053, 17.918398, -33.007053), (-31.234362, 17.918398, -34.689274), (-29.37606, 17.918398, -36.276413), (-27.43724, 17.918398, -37.764122), (-25.423218, 17.918398, -39.148323), (-23.33951, 17.918398, -40.425217), (-21.191832, 17.918398, -41.591312), (-18.986069, 17.918398, -42.64341), (-16.728266, 17.918398, -43.57862), (-14.424611, 17.918398, -44.394386), (-12.08142, 17.918398, -45.08847), (-9.705114, 17.918398, -45.658974), (-7.302208, 17.918398, -46.104324), (-4.8792863, 17.918398, -46.42331), (-2.4429913, 17.918398, -46.615047), (-8.5747974e-15, 17.918398, -46.67902), (2.4429913, 17.918398, -46.615047), (4.8792863, 17.918398, -46.42331), (7.302208, 17.918398, -46.104324), (9.705114, 17.918398, -45.658974), (12.08142, 17.918398, -45.08847), (14.424611, 17.918398, -44.394386), (16.728266, 17.918398, -43.57862), (18.986069, 17.918398, -42.64341), (21.191832, 17.918398, -41.591312), (23.33951, 17.918398, -40.425217), (25.423218, 17.918398, -39.148323), (27.43724, 17.918398, -37.764122), (29.37606, 17.918398, -36.276413), (31.234362, 17.918398, -34.689274), (33.007053, 17.918398, -33.007053), (34.689274, 17.918398, -31.234362), (36.276413, 17.918398, -29.37606), (37.764122, 17.918398, -27.43724), (39.148323, 17.918398, -25.423218), (40.425217, 17.918398, -23.33951), (41.591312, 17.918398, -21.191832), (42.64341, 17.918398, -18.986069), (43.57862, 17.918398, -16.728266), (44.394386, 17.918398, -14.424611), (45.08847, 17.918398, -12.08142), (45.658974, 17.918398, -9.705114), (46.104324, 17.918398, -7.302208), (46.42331, 17.918398, -4.8792863), (46.615047, 17.918398, -2.4429913), (45.677273, 20.336832, 0), (45.614674, 20.336832, 2.3905637), (45.427048, 20.336832, 4.774575), (45.11491, 20.336832, 7.1454997), (44.679115, 20.336832, 9.496839), (44.120857, 20.336832, 11.822148), (43.44167, 20.336832, 14.115053), (42.64341, 20.336832, 16.36927), (41.728264, 20.336832, 18.57862), (40.69875, 20.336832, 20.737047), (39.55768, 20.336832, 22.838636), (38.308186, 20.336832, 24.877626), (36.95369, 20.336832, 26.848427), (35.49791, 20.336832, 28.74564), (33.944828, 20.336832, 30.564062), (32.29871, 20.336832, 32.29871), (30.564062, 20.336832, 33.944828), (28.74564, 20.336832, 35.49791), (26.848427, 20.336832, 36.95369), (24.877626, 20.336832, 38.308186), (22.838636, 20.336832, 39.55768), (20.737047, 20.336832, 40.69875), (18.57862, 20.336832, 41.728264), (16.36927, 20.336832, 42.64341), (14.115053, 20.336832, 43.44167), (11.822148, 20.336832, 44.120857), (9.496839, 20.336832, 44.679115), (7.1454997, 20.336832, 45.11491), (4.774575, 20.336832, 45.427048), (2.3905637, 20.336832, 45.614674), (2.7969263e-15, 20.336832, 45.677273), (-2.3905637, 20.336832, 45.614674), (-4.774575, 20.336832, 45.427048), (-7.1454997, 20.336832, 45.11491), (-9.496839, 20.336832, 44.679115), (-11.822148, 20.336832, 44.120857), (-14.115053, 20.336832, 43.44167), (-16.36927, 20.336832, 42.64341), (-18.57862, 20.336832, 41.728264), (-20.737047, 20.336832, 40.69875), (-22.838636, 20.336832, 39.55768), (-24.877626, 20.336832, 38.308186), (-26.848427, 20.336832, 36.95369), (-28.74564, 20.336832, 35.49791), (-30.564062, 20.336832, 33.944828), (-32.29871, 20.336832, 32.29871), (-33.944828, 20.336832, 30.564062), (-35.49791, 20.336832, 28.74564), (-36.95369, 20.336832, 26.848427), (-38.308186, 20.336832, 24.877626), (-39.55768, 20.336832, 22.838636), (-40.69875, 20.336832, 20.737047), (-41.728264, 20.336832, 18.57862), (-42.64341, 20.336832, 16.36927), (-43.44167, 20.336832, 14.115053), (-44.120857, 20.336832, 11.822148), (-44.679115, 20.336832, 9.496839), (-45.11491, 20.336832, 7.1454997), (-45.427048, 20.336832, 4.774575), (-45.614674, 20.336832, 2.3905637), (-45.677273, 20.336832, 5.5938526e-15), (-45.614674, 20.336832, -2.3905637), (-45.427048, 20.336832, -4.774575), (-45.11491, 20.336832, -7.1454997), (-44.679115, 20.336832, -9.496839), (-44.120857, 20.336832, -11.822148), (-43.44167, 20.336832, -14.115053), (-42.64341, 20.336832, -16.36927), (-41.728264, 20.336832, -18.57862), (-40.69875, 20.336832, -20.737047), (-39.55768, 20.336832, -22.838636), (-38.308186, 20.336832, -24.877626), (-36.95369, 20.336832, -26.848427), (-35.49791, 20.336832, -28.74564), (-33.944828, 20.336832, -30.564062), (-32.29871, 20.336832, -32.29871), (-30.564062, 20.336832, -33.944828), (-28.74564, 20.336832, -35.49791), (-26.848427, 20.336832, -36.95369), (-24.877626, 20.336832, -38.308186), (-22.838636, 20.336832, -39.55768), (-20.737047, 20.336832, -40.69875), (-18.57862, 20.336832, -41.728264), (-16.36927, 20.336832, -42.64341), (-14.115053, 20.336832, -43.44167), (-11.822148, 20.336832, -44.120857), (-9.496839, 20.336832, -44.679115), (-7.1454997, 20.336832, -45.11491), (-4.774575, 20.336832, -45.427048), (-2.3905637, 20.336832, -45.614674), (-8.390779e-15, 20.336832, -45.677273), (2.3905637, 20.336832, -45.614674), (4.774575, 20.336832, -45.427048), (7.1454997, 20.336832, -45.11491), (9.496839, 20.336832, -44.679115), (11.822148, 20.336832, -44.120857), (14.115053, 20.336832, -43.44167), (16.36927, 20.336832, -42.64341), (18.57862, 20.336832, -41.728264), (20.737047, 20.336832, -40.69875), (22.838636, 20.336832, -39.55768), (24.877626, 20.336832, -38.308186), (26.848427, 20.336832, -36.95369), (28.74564, 20.336832, -35.49791), (30.564062, 20.336832, -33.944828), (32.29871, 20.336832, -32.29871), (33.944828, 20.336832, -30.564062), (35.49791, 20.336832, -28.74564), (36.95369, 20.336832, -26.848427), (38.308186, 20.336832, -24.877626), (39.55768, 20.336832, -22.838636), (40.69875, 20.336832, -20.737047), (41.728264, 20.336832, -18.57862), (42.64341, 20.336832, -16.36927), (43.44167, 20.336832, -14.115053), (44.120857, 20.336832, -11.822148), (44.679115, 20.336832, -9.496839), (45.11491, 20.336832, -7.1454997), (45.427048, 20.336832, -4.774575), (45.614674, 20.336832, -2.3905637), (44.550327, 22.699526, 0), (44.489273, 22.699526, 2.331584), (44.306274, 22.699526, 4.656777), (44.00184, 22.699526, 6.9692063), (43.576794, 22.699526, 9.262533), (43.03231, 22.699526, 11.530473), (42.369877, 22.699526, 13.766808), (41.591312, 22.699526, 15.965409), (40.69875, 22.699526, 18.12025), (39.69463, 22.699526, 20.225426), (38.581715, 22.699526, 22.275164), (37.36305, 22.699526, 24.263847), (36.04197, 22.699526, 26.186026), (34.622105, 22.699526, 28.036428), (33.107346, 22.699526, 29.809986), (31.501839, 22.699526, 31.501839), (29.809986, 22.699526, 33.107346), (28.036428, 22.699526, 34.622105), (26.186026, 22.699526, 36.04197), (24.263847, 22.699526, 37.36305), (22.275164, 22.699526, 38.581715), (20.225426, 22.699526, 39.69463), (18.12025, 22.699526, 40.69875), (15.965409, 22.699526, 41.591312), (13.766808, 22.699526, 42.369877), (11.530473, 22.699526, 43.03231), (9.262533, 22.699526, 43.576794), (6.9692063, 22.699526, 44.00184), (4.656777, 22.699526, 44.306274), (2.331584, 22.699526, 44.489273), (2.7279206e-15, 22.699526, 44.550327), (-2.331584, 22.699526, 44.489273), (-4.656777, 22.699526, 44.306274), (-6.9692063, 22.699526, 44.00184), (-9.262533, 22.699526, 43.576794), (-11.530473, 22.699526, 43.03231), (-13.766808, 22.699526, 42.369877), (-15.965409, 22.699526, 41.591312), (-18.12025, 22.699526, 40.69875), (-20.225426, 22.699526, 39.69463), (-22.275164, 22.699526, 38.581715), (-24.263847, 22.699526, 37.36305), (-26.186026, 22.699526, 36.04197), (-28.036428, 22.699526, 34.622105), (-29.809986, 22.699526, 33.107346), (-31.501839, 22.699526, 31.501839), (-33.107346, 22.699526, 29.809986), (-34.622105, 22.699526, 28.036428), (-36.04197, 22.699526, 26.186026), (-37.36305, 22.699526, 24.263847), (-38.581715, 22.699526, 22.275164), (-39.69463, 22.699526, 20.225426), (-40.69875, 22.699526, 18.12025), (-41.591312, 22.699526, 15.965409), (-42.369877, 22.699526, 13.766808), (-43.03231, 22.699526, 11.530473), (-43.576794, 22.699526, 9.262533), (-44.00184, 22.699526, 6.9692063), (-44.306274, 22.699526, 4.656777), (-44.489273, 22.699526, 2.331584), (-44.550327, 22.699526, 5.4558413e-15), (-44.489273, 22.699526, -2.331584), (-44.306274, 22.699526, -4.656777), (-44.00184, 22.699526, -6.9692063), (-43.576794, 22.699526, -9.262533), (-43.03231, 22.699526, -11.530473), (-42.369877, 22.699526, -13.766808), (-41.591312, 22.699526, -15.965409), (-40.69875, 22.699526, -18.12025), (-39.69463, 22.699526, -20.225426), (-38.581715, 22.699526, -22.275164), (-37.36305, 22.699526, -24.263847), (-36.04197, 22.699526, -26.186026), (-34.622105, 22.699526, -28.036428), (-33.107346, 22.699526, -29.809986), (-31.501839, 22.699526, -31.501839), (-29.809986, 22.699526, -33.107346), (-28.036428, 22.699526, -34.622105), (-26.186026, 22.699526, -36.04197), (-24.263847, 22.699526, -37.36305), (-22.275164, 22.699526, -38.581715), (-20.225426, 22.699526, -39.69463), (-18.12025, 22.699526, -40.69875), (-15.965409, 22.699526, -41.591312), (-13.766808, 22.699526, -42.369877), (-11.530473, 22.699526, -43.03231), (-9.262533, 22.699526, -43.576794), (-6.9692063, 22.699526, -44.00184), (-4.656777, 22.699526, -44.306274), (-2.331584, 22.699526, -44.489273), (-8.183762e-15, 22.699526, -44.550327), (2.331584, 22.699526, -44.489273), (4.656777, 22.699526, -44.306274), (6.9692063, 22.699526, -44.00184), (9.262533, 22.699526, -43.576794), (11.530473, 22.699526, -43.03231), (13.766808, 22.699526, -42.369877), (15.965409, 22.699526, -41.591312), (18.12025, 22.699526, -40.69875), (20.225426, 22.699526, -39.69463), (22.275164, 22.699526, -38.581715), (24.263847, 22.699526, -37.36305), (26.186026, 22.699526, -36.04197), (28.036428, 22.699526, -34.622105), (29.809986, 22.699526, -33.107346), (31.501839, 22.699526, -31.501839), (33.107346, 22.699526, -29.809986), (34.622105, 22.699526, -28.036428), (36.04197, 22.699526, -26.186026), (37.36305, 22.699526, -24.263847), (38.581715, 22.699526, -22.275164), (39.69463, 22.699526, -20.225426), (40.69875, 22.699526, -18.12025), (41.591312, 22.699526, -15.965409), (42.369877, 22.699526, -13.766808), (43.03231, 22.699526, -11.530473), (43.576794, 22.699526, -9.262533), (44.00184, 22.699526, -6.9692063), (44.306274, 22.699526, -4.656777), (44.489273, 22.699526, -2.331584), (43.30127, 25, 0), (43.24193, 25, 2.2662134), (43.06406, 25, 4.526215), (42.768158, 25, 6.773811), (42.355034, 25, 9.00284), (41.825813, 25, 11.207193), (41.181953, 25, 13.380828), (40.425217, 25, 15.517787), (39.55768, 25, 17.612213), (38.581715, 25, 19.658365), (37.5, 25, 21.650635), (36.315502, 25, 23.583563), (35.031464, 25, 25.451847), (33.65141, 25, 27.250372), (32.179115, 25, 28.974205), (30.618622, 25, 30.618622), (28.974205, 25, 32.179115), (27.250372, 25, 33.65141), (25.451847, 25, 35.031464), (23.583563, 25, 36.315502), (21.650635, 25, 37.5), (19.658365, 25, 38.581715), (17.612213, 25, 39.55768), (15.517787, 25, 40.425217), (13.380828, 25, 41.181953), (11.207193, 25, 41.825813), (9.00284, 25, 42.355034), (6.773811, 25, 42.768158), (4.526215, 25, 43.06406), (2.2662134, 25, 43.24193), (2.651438e-15, 25, 43.30127), (-2.2662134, 25, 43.24193), (-4.526215, 25, 43.06406), (-6.773811, 25, 42.768158), (-9.00284, 25, 42.355034), (-11.207193, 25, 41.825813), (-13.380828, 25, 41.181953), (-15.517787, 25, 40.425217), (-17.612213, 25, 39.55768), (-19.658365, 25, 38.581715), (-21.650635, 25, 37.5), (-23.583563, 25, 36.315502), (-25.451847, 25, 35.031464), (-27.250372, 25, 33.65141), (-28.974205, 25, 32.179115), (-30.618622, 25, 30.618622), (-32.179115, 25, 28.974205), (-33.65141, 25, 27.250372), (-35.031464, 25, 25.451847), (-36.315502, 25, 23.583563), (-37.5, 25, 21.650635), (-38.581715, 25, 19.658365), (-39.55768, 25, 17.612213), (-40.425217, 25, 15.517787), (-41.181953, 25, 13.380828), (-41.825813, 25, 11.207193), (-42.355034, 25, 9.00284), (-42.768158, 25, 6.773811), (-43.06406, 25, 4.526215), (-43.24193, 25, 2.2662134), (-43.30127, 25, 5.302876e-15), (-43.24193, 25, -2.2662134), (-43.06406, 25, -4.526215), (-42.768158, 25, -6.773811), (-42.355034, 25, -9.00284), (-41.825813, 25, -11.207193), (-41.181953, 25, -13.380828), (-40.425217, 25, -15.517787), (-39.55768, 25, -17.612213), (-38.581715, 25, -19.658365), (-37.5, 25, -21.650635), (-36.315502, 25, -23.583563), (-35.031464, 25, -25.451847), (-33.65141, 25, -27.250372), (-32.179115, 25, -28.974205), (-30.618622, 25, -30.618622), (-28.974205, 25, -32.179115), (-27.250372, 25, -33.65141), (-25.451847, 25, -35.031464), (-23.583563, 25, -36.315502), (-21.650635, 25, -37.5), (-19.658365, 25, -38.581715), (-17.612213, 25, -39.55768), (-15.517787, 25, -40.425217), (-13.380828, 25, -41.181953), (-11.207193, 25, -41.825813), (-9.00284, 25, -42.355034), (-6.773811, 25, -42.768158), (-4.526215, 25, -43.06406), (-2.2662134, 25, -43.24193), (-7.9543145e-15, 25, -43.30127), (2.2662134, 25, -43.24193), (4.526215, 25, -43.06406), (6.773811, 25, -42.768158), (9.00284, 25, -42.355034), (11.207193, 25, -41.825813), (13.380828, 25, -41.181953), (15.517787, 25, -40.425217), (17.612213, 25, -39.55768), (19.658365, 25, -38.581715), (21.650635, 25, -37.5), (23.583563, 25, -36.315502), (25.451847, 25, -35.031464), (27.250372, 25, -33.65141), (28.974205, 25, -32.179115), (30.618622, 25, -30.618622), (32.179115, 25, -28.974205), (33.65141, 25, -27.250372), (35.031464, 25, -25.451847), (36.315502, 25, -23.583563), (37.5, 25, -21.650635), (38.581715, 25, -19.658365), (39.55768, 25, -17.612213), (40.425217, 25, -15.517787), (41.181953, 25, -13.380828), (41.825813, 25, -11.207193), (42.355034, 25, -9.00284), (42.768158, 25, -6.773811), (43.06406, 25, -4.526215), (43.24193, 25, -2.2662134), (41.93353, 27.231953, 0), (41.87606, 27.231953, 2.1946313), (41.70381, 27.231953, 4.3832474), (41.417255, 27.231953, 6.5598493), (41.01718, 27.231953, 8.718471), (40.504677, 27.231953, 10.853196), (39.881157, 27.231953, 12.958173), (39.148323, 27.231953, 15.027633), (38.308186, 27.231953, 17.055902), (37.36305, 27.231953, 19.037424), (36.315502, 27.231953, 20.966764), (35.168415, 27.231953, 22.838636), (33.92494, 27.231953, 24.64791), (32.58847, 27.231953, 26.389624), (31.162685, 27.231953, 28.059008), (29.651482, 27.231953, 29.651482), (28.059008, 27.231953, 31.162685), (26.389624, 27.231953, 32.58847), (24.64791, 27.231953, 33.92494), (22.838636, 27.231953, 35.168415), (20.966764, 27.231953, 36.315502), (19.037424, 27.231953, 37.36305), (17.055902, 27.231953, 38.308186), (15.027633, 27.231953, 39.148323), (12.958173, 27.231953, 39.881157), (10.853196, 27.231953, 40.504677), (8.718471, 27.231953, 41.01718), (6.5598493, 27.231953, 41.417255), (4.3832474, 27.231953, 41.70381), (2.1946313, 27.231953, 41.87606), (2.567688e-15, 27.231953, 41.93353), (-2.1946313, 27.231953, 41.87606), (-4.3832474, 27.231953, 41.70381), (-6.5598493, 27.231953, 41.417255), (-8.718471, 27.231953, 41.01718), (-10.853196, 27.231953, 40.504677), (-12.958173, 27.231953, 39.881157), (-15.027633, 27.231953, 39.148323), (-17.055902, 27.231953, 38.308186), (-19.037424, 27.231953, 37.36305), (-20.966764, 27.231953, 36.315502), (-22.838636, 27.231953, 35.168415), (-24.64791, 27.231953, 33.92494), (-26.389624, 27.231953, 32.58847), (-28.059008, 27.231953, 31.162685), (-29.651482, 27.231953, 29.651482), (-31.162685, 27.231953, 28.059008), (-32.58847, 27.231953, 26.389624), (-33.92494, 27.231953, 24.64791), (-35.168415, 27.231953, 22.838636), (-36.315502, 27.231953, 20.966764), (-37.36305, 27.231953, 19.037424), (-38.308186, 27.231953, 17.055902), (-39.148323, 27.231953, 15.027633), (-39.881157, 27.231953, 12.958173), (-40.504677, 27.231953, 10.853196), (-41.01718, 27.231953, 8.718471), (-41.417255, 27.231953, 6.5598493), (-41.70381, 27.231953, 4.3832474), (-41.87606, 27.231953, 2.1946313), (-41.93353, 27.231953, 5.135376e-15), (-41.87606, 27.231953, -2.1946313), (-41.70381, 27.231953, -4.3832474), (-41.417255, 27.231953, -6.5598493), (-41.01718, 27.231953, -8.718471), (-40.504677, 27.231953, -10.853196), (-39.881157, 27.231953, -12.958173), (-39.148323, 27.231953, -15.027633), (-38.308186, 27.231953, -17.055902), (-37.36305, 27.231953, -19.037424), (-36.315502, 27.231953, -20.966764), (-35.168415, 27.231953, -22.838636), (-33.92494, 27.231953, -24.64791), (-32.58847, 27.231953, -26.389624), (-31.162685, 27.231953, -28.059008), (-29.651482, 27.231953, -29.651482), (-28.059008, 27.231953, -31.162685), (-26.389624, 27.231953, -32.58847), (-24.64791, 27.231953, -33.92494), (-22.838636, 27.231953, -35.168415), (-20.966764, 27.231953, -36.315502), (-19.037424, 27.231953, -37.36305), (-17.055902, 27.231953, -38.308186), (-15.027633, 27.231953, -39.148323), (-12.958173, 27.231953, -39.881157), (-10.853196, 27.231953, -40.504677), (-8.718471, 27.231953, -41.01718), (-6.5598493, 27.231953, -41.417255), (-4.3832474, 27.231953, -41.70381), (-2.1946313, 27.231953, -41.87606), (-7.703064e-15, 27.231953, -41.93353), (2.1946313, 27.231953, -41.87606), (4.3832474, 27.231953, -41.70381), (6.5598493, 27.231953, -41.417255), (8.718471, 27.231953, -41.01718), (10.853196, 27.231953, -40.504677), (12.958173, 27.231953, -39.881157), (15.027633, 27.231953, -39.148323), (17.055902, 27.231953, -38.308186), (19.037424, 27.231953, -37.36305), (20.966764, 27.231953, -36.315502), (22.838636, 27.231953, -35.168415), (24.64791, 27.231953, -33.92494), (26.389624, 27.231953, -32.58847), (28.059008, 27.231953, -31.162685), (29.651482, 27.231953, -29.651482), (31.162685, 27.231953, -28.059008), (32.58847, 27.231953, -26.389624), (33.92494, 27.231953, -24.64791), (35.168415, 27.231953, -22.838636), (36.315502, 27.231953, -20.966764), (37.36305, 27.231953, -19.037424), (38.308186, 27.231953, -17.055902), (39.148323, 27.231953, -15.027633), (39.881157, 27.231953, -12.958173), (40.504677, 27.231953, -10.853196), (41.01718, 27.231953, -8.718471), (41.417255, 27.231953, -6.5598493), (41.70381, 27.231953, -4.3832474), (41.87606, 27.231953, -2.1946313), (40.45085, 29.389263, 0), (40.395412, 29.389263, 2.117034), (40.229256, 29.389263, 4.2282653), (39.95283, 29.389263, 6.327907), (39.566902, 29.389263, 8.410205), (39.07252, 29.389263, 10.46945), (38.471043, 29.389263, 12.5), (37.764122, 29.389263, 14.496288), (36.95369, 29.389263, 16.452843), (36.04197, 29.389263, 18.364302), (35.031464, 29.389263, 20.225426), (33.92494, 29.389263, 22.031113), (32.725426, 29.389263, 23.776413), (31.436214, 29.389263, 25.456545), (30.06084, 29.389263, 27.066902), (28.60307, 29.389263, 28.60307), (27.066902, 29.389263, 30.06084), (25.456545, 29.389263, 31.436214), (23.776413, 29.389263, 32.725426), (22.031113, 29.389263, 33.92494), (20.225426, 29.389263, 35.031464), (18.364302, 29.389263, 36.04197), (16.452843, 29.389263, 36.95369), (14.496288, 29.389263, 37.764122), (12.5, 29.389263, 38.471043), (10.46945, 29.389263, 39.07252), (8.410205, 29.389263, 39.566902), (6.327907, 29.389263, 39.95283), (4.2282653, 29.389263, 40.229256), (2.117034, 29.389263, 40.395412), (2.4769e-15, 29.389263, 40.45085), (-2.117034, 29.389263, 40.395412), (-4.2282653, 29.389263, 40.229256), (-6.327907, 29.389263, 39.95283), (-8.410205, 29.389263, 39.566902), (-10.46945, 29.389263, 39.07252), (-12.5, 29.389263, 38.471043), (-14.496288, 29.389263, 37.764122), (-16.452843, 29.389263, 36.95369), (-18.364302, 29.389263, 36.04197), (-20.225426, 29.389263, 35.031464), (-22.031113, 29.389263, 33.92494), (-23.776413, 29.389263, 32.725426), (-25.456545, 29.389263, 31.436214), (-27.066902, 29.389263, 30.06084), (-28.60307, 29.389263, 28.60307), (-30.06084, 29.389263, 27.066902), (-31.436214, 29.389263, 25.456545), (-32.725426, 29.389263, 23.776413), (-33.92494, 29.389263, 22.031113), (-35.031464, 29.389263, 20.225426), (-36.04197, 29.389263, 18.364302), (-36.95369, 29.389263, 16.452843), (-37.764122, 29.389263, 14.496288), (-38.471043, 29.389263, 12.5), (-39.07252, 29.389263, 10.46945), (-39.566902, 29.389263, 8.410205), (-39.95283, 29.389263, 6.327907), (-40.229256, 29.389263, 4.2282653), (-40.395412, 29.389263, 2.117034), (-40.45085, 29.389263, 4.9538e-15), (-40.395412, 29.389263, -2.117034), (-40.229256, 29.389263, -4.2282653), (-39.95283, 29.389263, -6.327907), (-39.566902, 29.389263, -8.410205), (-39.07252, 29.389263, -10.46945), (-38.471043, 29.389263, -12.5), (-37.764122, 29.389263, -14.496288), (-36.95369, 29.389263, -16.452843), (-36.04197, 29.389263, -18.364302), (-35.031464, 29.389263, -20.225426), (-33.92494, 29.389263, -22.031113), (-32.725426, 29.389263, -23.776413), (-31.436214, 29.389263, -25.456545), (-30.06084, 29.389263, -27.066902), (-28.60307, 29.389263, -28.60307), (-27.066902, 29.389263, -30.06084), (-25.456545, 29.389263, -31.436214), (-23.776413, 29.389263, -32.725426), (-22.031113, 29.389263, -33.92494), (-20.225426, 29.389263, -35.031464), (-18.364302, 29.389263, -36.04197), (-16.452843, 29.389263, -36.95369), (-14.496288, 29.389263, -37.764122), (-12.5, 29.389263, -38.471043), (-10.46945, 29.389263, -39.07252), (-8.410205, 29.389263, -39.566902), (-6.327907, 29.389263, -39.95283), (-4.2282653, 29.389263, -40.229256), (-2.117034, 29.389263, -40.395412), (-7.430701e-15, 29.389263, -40.45085), (2.117034, 29.389263, -40.395412), (4.2282653, 29.389263, -40.229256), (6.327907, 29.389263, -39.95283), (8.410205, 29.389263, -39.566902), (10.46945, 29.389263, -39.07252), (12.5, 29.389263, -38.471043), (14.496288, 29.389263, -37.764122), (16.452843, 29.389263, -36.95369), (18.364302, 29.389263, -36.04197), (20.225426, 29.389263, -35.031464), (22.031113, 29.389263, -33.92494), (23.776413, 29.389263, -32.725426), (25.456545, 29.389263, -31.436214), (27.066902, 29.389263, -30.06084), (28.60307, 29.389263, -28.60307), (30.06084, 29.389263, -27.066902), (31.436214, 29.389263, -25.456545), (32.725426, 29.389263, -23.776413), (33.92494, 29.389263, -22.031113), (35.031464, 29.389263, -20.225426), (36.04197, 29.389263, -18.364302), (36.95369, 29.389263, -16.452843), (37.764122, 29.389263, -14.496288), (38.471043, 29.389263, -12.5), (39.07252, 29.389263, -10.46945), (39.566902, 29.389263, -8.410205), (39.95283, 29.389263, -6.327907), (40.229256, 29.389263, -4.2282653), (40.395412, 29.389263, -2.117034), (38.8573, 31.466019, 0), (38.804047, 31.466019, 2.033634), (38.644432, 31.466019, 4.0616937), (38.3789, 31.466019, 6.0786204), (38.00817, 31.466019, 8.078887), (37.533268, 31.466019, 10.057009), (36.955486, 31.466019, 12.0075655), (36.276413, 31.466019, 13.92521), (35.49791, 31.466019, 15.804687), (34.622105, 31.466019, 17.640844), (33.65141, 31.466019, 19.42865), (32.58847, 31.466019, 21.1632), (31.436214, 31.466019, 22.839746), (30.197792, 31.466019, 24.45369), (28.8766, 31.466019, 26.000607), (27.47626, 31.466019, 27.47626), (26.000607, 31.466019, 28.8766), (24.45369, 31.466019, 30.197792), (22.839746, 31.466019, 31.436214), (21.1632, 31.466019, 32.58847), (19.42865, 31.466019, 33.65141), (17.640844, 31.466019, 34.622105), (15.804687, 31.466019, 35.49791), (13.92521, 31.466019, 36.276413), (12.0075655, 31.466019, 36.955486), (10.057009, 31.466019, 37.533268), (8.078887, 31.466019, 38.00817), (6.0786204, 31.466019, 38.3789), (4.0616937, 31.466019, 38.644432), (2.033634, 31.466019, 38.804047), (2.3793234e-15, 31.466019, 38.8573), (-2.033634, 31.466019, 38.804047), (-4.0616937, 31.466019, 38.644432), (-6.0786204, 31.466019, 38.3789), (-8.078887, 31.466019, 38.00817), (-10.057009, 31.466019, 37.533268), (-12.0075655, 31.466019, 36.955486), (-13.92521, 31.466019, 36.276413), (-15.804687, 31.466019, 35.49791), (-17.640844, 31.466019, 34.622105), (-19.42865, 31.466019, 33.65141), (-21.1632, 31.466019, 32.58847), (-22.839746, 31.466019, 31.436214), (-24.45369, 31.466019, 30.197792), (-26.000607, 31.466019, 28.8766), (-27.47626, 31.466019, 27.47626), (-28.8766, 31.466019, 26.000607), (-30.197792, 31.466019, 24.45369), (-31.436214, 31.466019, 22.839746), (-32.58847, 31.466019, 21.1632), (-33.65141, 31.466019, 19.42865), (-34.622105, 31.466019, 17.640844), (-35.49791, 31.466019, 15.804687), (-36.276413, 31.466019, 13.92521), (-36.955486, 31.466019, 12.0075655), (-37.533268, 31.466019, 10.057009), (-38.00817, 31.466019, 8.078887), (-38.3789, 31.466019, 6.0786204), (-38.644432, 31.466019, 4.0616937), (-38.804047, 31.466019, 2.033634), (-38.8573, 31.466019, 4.7586468e-15), (-38.804047, 31.466019, -2.033634), (-38.644432, 31.466019, -4.0616937), (-38.3789, 31.466019, -6.0786204), (-38.00817, 31.466019, -8.078887), (-37.533268, 31.466019, -10.057009), (-36.955486, 31.466019, -12.0075655), (-36.276413, 31.466019, -13.92521), (-35.49791, 31.466019, -15.804687), (-34.622105, 31.466019, -17.640844), (-33.65141, 31.466019, -19.42865), (-32.58847, 31.466019, -21.1632), (-31.436214, 31.466019, -22.839746), (-30.197792, 31.466019, -24.45369), (-28.8766, 31.466019, -26.000607), (-27.47626, 31.466019, -27.47626), (-26.000607, 31.466019, -28.8766), (-24.45369, 31.466019, -30.197792), (-22.839746, 31.466019, -31.436214), (-21.1632, 31.466019, -32.58847), (-19.42865, 31.466019, -33.65141), (-17.640844, 31.466019, -34.622105), (-15.804687, 31.466019, -35.49791), (-13.92521, 31.466019, -36.276413), (-12.0075655, 31.466019, -36.955486), (-10.057009, 31.466019, -37.533268), (-8.078887, 31.466019, -38.00817), (-6.0786204, 31.466019, -38.3789), (-4.0616937, 31.466019, -38.644432), (-2.033634, 31.466019, -38.804047), (-7.1379695e-15, 31.466019, -38.8573), (2.033634, 31.466019, -38.804047), (4.0616937, 31.466019, -38.644432), (6.0786204, 31.466019, -38.3789), (8.078887, 31.466019, -38.00817), (10.057009, 31.466019, -37.533268), (12.0075655, 31.466019, -36.955486), (13.92521, 31.466019, -36.276413), (15.804687, 31.466019, -35.49791), (17.640844, 31.466019, -34.622105), (19.42865, 31.466019, -33.65141), (21.1632, 31.466019, -32.58847), (22.839746, 31.466019, -31.436214), (24.45369, 31.466019, -30.197792), (26.000607, 31.466019, -28.8766), (27.47626, 31.466019, -27.47626), (28.8766, 31.466019, -26.000607), (30.197792, 31.466019, -24.45369), (31.436214, 31.466019, -22.839746), (32.58847, 31.466019, -21.1632), (33.65141, 31.466019, -19.42865), (34.622105, 31.466019, -17.640844), (35.49791, 31.466019, -15.804687), (36.276413, 31.466019, -13.92521), (36.955486, 31.466019, -12.0075655), (37.533268, 31.466019, -10.057009), (38.00817, 31.466019, -8.078887), (38.3789, 31.466019, -6.0786204), (38.644432, 31.466019, -4.0616937), (38.804047, 31.466019, -2.033634), (37.15724, 33.45653, 0), (37.10632, 33.45653, 1.9446597), (36.95369, 33.45653, 3.8839893), (36.699776, 33.45653, 5.812673), (36.34527, 33.45653, 7.725425), (35.89114, 33.45653, 9.617002), (35.33864, 33.45653, 11.482219), (34.689274, 33.45653, 13.315965), (33.944828, 33.45653, 15.113212), (33.107346, 33.45653, 16.869034), (32.179115, 33.45653, 18.57862), (31.162685, 33.45653, 20.237284), (30.06084, 33.45653, 21.840479), (28.8766, 33.45653, 23.38381), (27.61321, 33.45653, 24.863047), (26.274137, 33.45653, 26.274137), (24.863047, 33.45653, 27.61321), (23.38381, 33.45653, 28.8766), (21.840479, 33.45653, 30.06084), (20.237284, 33.45653, 31.162685), (18.57862, 33.45653, 32.179115), (16.869034, 33.45653, 33.107346), (15.113212, 33.45653, 33.944828), (13.315965, 33.45653, 34.689274), (11.482219, 33.45653, 35.33864), (9.617002, 33.45653, 35.89114), (7.725425, 33.45653, 36.34527), (5.812673, 33.45653, 36.699776), (3.8839893, 33.45653, 36.95369), (1.9446597, 33.45653, 37.10632), (2.2752247e-15, 33.45653, 37.15724), (-1.9446597, 33.45653, 37.10632), (-3.8839893, 33.45653, 36.95369), (-5.812673, 33.45653, 36.699776), (-7.725425, 33.45653, 36.34527), (-9.617002, 33.45653, 35.89114), (-11.482219, 33.45653, 35.33864), (-13.315965, 33.45653, 34.689274), (-15.113212, 33.45653, 33.944828), (-16.869034, 33.45653, 33.107346), (-18.57862, 33.45653, 32.179115), (-20.237284, 33.45653, 31.162685), (-21.840479, 33.45653, 30.06084), (-23.38381, 33.45653, 28.8766), (-24.863047, 33.45653, 27.61321), (-26.274137, 33.45653, 26.274137), (-27.61321, 33.45653, 24.863047), (-28.8766, 33.45653, 23.38381), (-30.06084, 33.45653, 21.840479), (-31.162685, 33.45653, 20.237284), (-32.179115, 33.45653, 18.57862), (-33.107346, 33.45653, 16.869034), (-33.944828, 33.45653, 15.113212), (-34.689274, 33.45653, 13.315965), (-35.33864, 33.45653, 11.482219), (-35.89114, 33.45653, 9.617002), (-36.34527, 33.45653, 7.725425), (-36.699776, 33.45653, 5.812673), (-36.95369, 33.45653, 3.8839893), (-37.10632, 33.45653, 1.9446597), (-37.15724, 33.45653, 4.5504495e-15), (-37.10632, 33.45653, -1.9446597), (-36.95369, 33.45653, -3.8839893), (-36.699776, 33.45653, -5.812673), (-36.34527, 33.45653, -7.725425), (-35.89114, 33.45653, -9.617002), (-35.33864, 33.45653, -11.482219), (-34.689274, 33.45653, -13.315965), (-33.944828, 33.45653, -15.113212), (-33.107346, 33.45653, -16.869034), (-32.179115, 33.45653, -18.57862), (-31.162685, 33.45653, -20.237284), (-30.06084, 33.45653, -21.840479), (-28.8766, 33.45653, -23.38381), (-27.61321, 33.45653, -24.863047), (-26.274137, 33.45653, -26.274137), (-24.863047, 33.45653, -27.61321), (-23.38381, 33.45653, -28.8766), (-21.840479, 33.45653, -30.06084), (-20.237284, 33.45653, -31.162685), (-18.57862, 33.45653, -32.179115), (-16.869034, 33.45653, -33.107346), (-15.113212, 33.45653, -33.944828), (-13.315965, 33.45653, -34.689274), (-11.482219, 33.45653, -35.33864), (-9.617002, 33.45653, -35.89114), (-7.725425, 33.45653, -36.34527), (-5.812673, 33.45653, -36.699776), (-3.8839893, 33.45653, -36.95369), (-1.9446597, 33.45653, -37.10632), (-6.8256744e-15, 33.45653, -37.15724), (1.9446597, 33.45653, -37.10632), (3.8839893, 33.45653, -36.95369), (5.812673, 33.45653, -36.699776), (7.725425, 33.45653, -36.34527), (9.617002, 33.45653, -35.89114), (11.482219, 33.45653, -35.33864), (13.315965, 33.45653, -34.689274), (15.113212, 33.45653, -33.944828), (16.869034, 33.45653, -33.107346), (18.57862, 33.45653, -32.179115), (20.237284, 33.45653, -31.162685), (21.840479, 33.45653, -30.06084), (23.38381, 33.45653, -28.8766), (24.863047, 33.45653, -27.61321), (26.274137, 33.45653, -26.274137), (27.61321, 33.45653, -24.863047), (28.8766, 33.45653, -23.38381), (30.06084, 33.45653, -21.840479), (31.162685, 33.45653, -20.237284), (32.179115, 33.45653, -18.57862), (33.107346, 33.45653, -16.869034), (33.944828, 33.45653, -15.113212), (34.689274, 33.45653, -13.315965), (35.33864, 33.45653, -11.482219), (35.89114, 33.45653, -9.617002), (36.34527, 33.45653, -7.725425), (36.699776, 33.45653, -5.812673), (36.95369, 33.45653, -3.8839893), (37.10632, 33.45653, -1.9446597), (35.35534, 35.35534, 0), (35.306885, 35.35534, 1.8503555), (35.16166, 35.35534, 3.6956394), (34.920055, 35.35534, 5.5307937), (34.58274, 35.35534, 7.350788), (34.150635, 35.35534, 9.150635), (33.624924, 35.35534, 10.925401), (33.007053, 35.35534, 12.67022), (32.29871, 35.35534, 14.380312), (31.501839, 35.35534, 16.050987), (30.618622, 35.35534, 17.67767), (29.651482, 35.35534, 19.255898), (28.60307, 35.35534, 20.781347), (27.47626, 35.35534, 22.249836), (26.274137, 35.35534, 23.65734), (25, 35.35534, 25), (23.65734, 35.35534, 26.274137), (22.249836, 35.35534, 27.47626), (20.781347, 35.35534, 28.60307), (19.255898, 35.35534, 29.651482), (17.67767, 35.35534, 30.618622), (16.050987, 35.35534, 31.501839), (14.380312, 35.35534, 32.29871), (12.67022, 35.35534, 33.007053), (10.925401, 35.35534, 33.624924), (9.150635, 35.35534, 34.150635), (7.350788, 35.35534, 34.58274), (5.5307937, 35.35534, 34.920055), (3.6956394, 35.35534, 35.16166), (1.8503555, 35.35534, 35.306885), (2.1648902e-15, 35.35534, 35.35534), (-1.8503555, 35.35534, 35.306885), (-3.6956394, 35.35534, 35.16166), (-5.5307937, 35.35534, 34.920055), (-7.350788, 35.35534, 34.58274), (-9.150635, 35.35534, 34.150635), (-10.925401, 35.35534, 33.624924), (-12.67022, 35.35534, 33.007053), (-14.380312, 35.35534, 32.29871), (-16.050987, 35.35534, 31.501839), (-17.67767, 35.35534, 30.618622), (-19.255898, 35.35534, 29.651482), (-20.781347, 35.35534, 28.60307), (-22.249836, 35.35534, 27.47626), (-23.65734, 35.35534, 26.274137), (-25, 35.35534, 25), (-26.274137, 35.35534, 23.65734), (-27.47626, 35.35534, 22.249836), (-28.60307, 35.35534, 20.781347), (-29.651482, 35.35534, 19.255898), (-30.618622, 35.35534, 17.67767), (-31.501839, 35.35534, 16.050987), (-32.29871, 35.35534, 14.380312), (-33.007053, 35.35534, 12.67022), (-33.624924, 35.35534, 10.925401), (-34.150635, 35.35534, 9.150635), (-34.58274, 35.35534, 7.350788), (-34.920055, 35.35534, 5.5307937), (-35.16166, 35.35534, 3.6956394), (-35.306885, 35.35534, 1.8503555), (-35.35534, 35.35534, 4.3297804e-15), (-35.306885, 35.35534, -1.8503555), (-35.16166, 35.35534, -3.6956394), (-34.920055, 35.35534, -5.5307937), (-34.58274, 35.35534, -7.350788), (-34.150635, 35.35534, -9.150635), (-33.624924, 35.35534, -10.925401), (-33.007053, 35.35534, -12.67022), (-32.29871, 35.35534, -14.380312), (-31.501839, 35.35534, -16.050987), (-30.618622, 35.35534, -17.67767), (-29.651482, 35.35534, -19.255898), (-28.60307, 35.35534, -20.781347), (-27.47626, 35.35534, -22.249836), (-26.274137, 35.35534, -23.65734), (-25, 35.35534, -25), (-23.65734, 35.35534, -26.274137), (-22.249836, 35.35534, -27.47626), (-20.781347, 35.35534, -28.60307), (-19.255898, 35.35534, -29.651482), (-17.67767, 35.35534, -30.618622), (-16.050987, 35.35534, -31.501839), (-14.380312, 35.35534, -32.29871), (-12.67022, 35.35534, -33.007053), (-10.925401, 35.35534, -33.624924), (-9.150635, 35.35534, -34.150635), (-7.350788, 35.35534, -34.58274), (-5.5307937, 35.35534, -34.920055), (-3.6956394, 35.35534, -35.16166), (-1.8503555, 35.35534, -35.306885), (-6.4946704e-15, 35.35534, -35.35534), (1.8503555, 35.35534, -35.306885), (3.6956394, 35.35534, -35.16166), (5.5307937, 35.35534, -34.920055), (7.350788, 35.35534, -34.58274), (9.150635, 35.35534, -34.150635), (10.925401, 35.35534, -33.624924), (12.67022, 35.35534, -33.007053), (14.380312, 35.35534, -32.29871), (16.050987, 35.35534, -31.501839), (17.67767, 35.35534, -30.618622), (19.255898, 35.35534, -29.651482), (20.781347, 35.35534, -28.60307), (22.249836, 35.35534, -27.47626), (23.65734, 35.35534, -26.274137), (25, 35.35534, -25), (26.274137, 35.35534, -23.65734), (27.47626, 35.35534, -22.249836), (28.60307, 35.35534, -20.781347), (29.651482, 35.35534, -19.255898), (30.618622, 35.35534, -17.67767), (31.501839, 35.35534, -16.050987), (32.29871, 35.35534, -14.380312), (33.007053, 35.35534, -12.67022), (33.624924, 35.35534, -10.925401), (34.150635, 35.35534, -9.150635), (34.58274, 35.35534, -7.350788), (34.920055, 35.35534, -5.5307937), (35.16166, 35.35534, -3.6956394), (35.306885, 35.35534, -1.8503555), (33.45653, 37.15724, 0), (33.41068, 37.15724, 1.7509795), (33.27325, 37.15724, 3.4971597), (33.044624, 37.15724, 5.2337546), (32.725426, 37.15724, 6.9560037), (32.31653, 37.15724, 8.659187), (31.819052, 37.15724, 10.338636), (31.234362, 37.15724, 11.989748), (30.564062, 37.15724, 13.607997), (29.809986, 37.15724, 15.188947), (28.974205, 37.15724, 16.728266), (28.059008, 37.15724, 18.221733), (27.066902, 37.15724, 19.665255), (26.000607, 37.15724, 21.054876), (24.863047, 37.15724, 22.38679), (23.65734, 37.15724, 23.65734), (22.38679, 37.15724, 24.863047), (21.054876, 37.15724, 26.000607), (19.665255, 37.15724, 27.066902), (18.221733, 37.15724, 28.059008), (16.728266, 37.15724, 28.974205), (15.188947, 37.15724, 29.809986), (13.607997, 37.15724, 30.564062), (11.989748, 37.15724, 31.234362), (10.338636, 37.15724, 31.819052), (8.659187, 37.15724, 32.31653), (6.9560037, 37.15724, 32.725426), (5.2337546, 37.15724, 33.044624), (3.4971597, 37.15724, 33.27325), (1.7509795, 37.15724, 33.41068), (2.0486216e-15, 37.15724, 33.45653), (-1.7509795, 37.15724, 33.41068), (-3.4971597, 37.15724, 33.27325), (-5.2337546, 37.15724, 33.044624), (-6.9560037, 37.15724, 32.725426), (-8.659187, 37.15724, 32.31653), (-10.338636, 37.15724, 31.819052), (-11.989748, 37.15724, 31.234362), (-13.607997, 37.15724, 30.564062), (-15.188947, 37.15724, 29.809986), (-16.728266, 37.15724, 28.974205), (-18.221733, 37.15724, 28.059008), (-19.665255, 37.15724, 27.066902), (-21.054876, 37.15724, 26.000607), (-22.38679, 37.15724, 24.863047), (-23.65734, 37.15724, 23.65734), (-24.863047, 37.15724, 22.38679), (-26.000607, 37.15724, 21.054876), (-27.066902, 37.15724, 19.665255), (-28.059008, 37.15724, 18.221733), (-28.974205, 37.15724, 16.728266), (-29.809986, 37.15724, 15.188947), (-30.564062, 37.15724, 13.607997), (-31.234362, 37.15724, 11.989748), (-31.819052, 37.15724, 10.338636), (-32.31653, 37.15724, 8.659187), (-32.725426, 37.15724, 6.9560037), (-33.044624, 37.15724, 5.2337546), (-33.27325, 37.15724, 3.4971597), (-33.41068, 37.15724, 1.7509795), (-33.45653, 37.15724, 4.097243e-15), (-33.41068, 37.15724, -1.7509795), (-33.27325, 37.15724, -3.4971597), (-33.044624, 37.15724, -5.2337546), (-32.725426, 37.15724, -6.9560037), (-32.31653, 37.15724, -8.659187), (-31.819052, 37.15724, -10.338636), (-31.234362, 37.15724, -11.989748), (-30.564062, 37.15724, -13.607997), (-29.809986, 37.15724, -15.188947), (-28.974205, 37.15724, -16.728266), (-28.059008, 37.15724, -18.221733), (-27.066902, 37.15724, -19.665255), (-26.000607, 37.15724, -21.054876), (-24.863047, 37.15724, -22.38679), (-23.65734, 37.15724, -23.65734), (-22.38679, 37.15724, -24.863047), (-21.054876, 37.15724, -26.000607), (-19.665255, 37.15724, -27.066902), (-18.221733, 37.15724, -28.059008), (-16.728266, 37.15724, -28.974205), (-15.188947, 37.15724, -29.809986), (-13.607997, 37.15724, -30.564062), (-11.989748, 37.15724, -31.234362), (-10.338636, 37.15724, -31.819052), (-8.659187, 37.15724, -32.31653), (-6.9560037, 37.15724, -32.725426), (-5.2337546, 37.15724, -33.044624), (-3.4971597, 37.15724, -33.27325), (-1.7509795, 37.15724, -33.41068), (-6.145865e-15, 37.15724, -33.45653), (1.7509795, 37.15724, -33.41068), (3.4971597, 37.15724, -33.27325), (5.2337546, 37.15724, -33.044624), (6.9560037, 37.15724, -32.725426), (8.659187, 37.15724, -32.31653), (10.338636, 37.15724, -31.819052), (11.989748, 37.15724, -31.234362), (13.607997, 37.15724, -30.564062), (15.188947, 37.15724, -29.809986), (16.728266, 37.15724, -28.974205), (18.221733, 37.15724, -28.059008), (19.665255, 37.15724, -27.066902), (21.054876, 37.15724, -26.000607), (22.38679, 37.15724, -24.863047), (23.65734, 37.15724, -23.65734), (24.863047, 37.15724, -22.38679), (26.000607, 37.15724, -21.054876), (27.066902, 37.15724, -19.665255), (28.059008, 37.15724, -18.221733), (28.974205, 37.15724, -16.728266), (29.809986, 37.15724, -15.188947), (30.564062, 37.15724, -13.607997), (31.234362, 37.15724, -11.989748), (31.819052, 37.15724, -10.338636), (32.31653, 37.15724, -8.659187), (32.725426, 37.15724, -6.9560037), (33.044624, 37.15724, -5.2337546), (33.27325, 37.15724, -3.4971597), (33.41068, 37.15724, -1.7509795), (31.466019, 38.8573, 0), (31.422897, 38.8573, 1.6468042), (31.293646, 38.8573, 3.2890947), (31.07862, 38.8573, 4.92237), (30.778412, 38.8573, 6.5421534), (30.39384, 38.8573, 8.144005), (29.925962, 38.8573, 9.723535), (29.37606, 38.8573, 11.276413), (28.74564, 38.8573, 12.798383), (28.036428, 38.8573, 14.285274), (27.250372, 38.8573, 15.733009), (26.389624, 38.8573, 17.137623), (25.456545, 38.8573, 18.495262), (24.45369, 38.8573, 19.802208), (23.38381, 38.8573, 21.054876), (22.249836, 38.8573, 22.249836), (21.054876, 38.8573, 23.38381), (19.802208, 38.8573, 24.45369), (18.495262, 38.8573, 25.456545), (17.137623, 38.8573, 26.389624), (15.733009, 38.8573, 27.250372), (14.285274, 38.8573, 28.036428), (12.798383, 38.8573, 28.74564), (11.276413, 38.8573, 29.37606), (9.723535, 38.8573, 29.925962), (8.144005, 38.8573, 30.39384), (6.5421534, 38.8573, 30.778412), (4.92237, 38.8573, 31.07862), (3.2890947, 38.8573, 31.293646), (1.6468042, 38.8573, 31.422897), (1.926738e-15, 38.8573, 31.466019), (-1.6468042, 38.8573, 31.422897), (-3.2890947, 38.8573, 31.293646), (-4.92237, 38.8573, 31.07862), (-6.5421534, 38.8573, 30.778412), (-8.144005, 38.8573, 30.39384), (-9.723535, 38.8573, 29.925962), (-11.276413, 38.8573, 29.37606), (-12.798383, 38.8573, 28.74564), (-14.285274, 38.8573, 28.036428), (-15.733009, 38.8573, 27.250372), (-17.137623, 38.8573, 26.389624), (-18.495262, 38.8573, 25.456545), (-19.802208, 38.8573, 24.45369), (-21.054876, 38.8573, 23.38381), (-22.249836, 38.8573, 22.249836), (-23.38381, 38.8573, 21.054876), (-24.45369, 38.8573, 19.802208), (-25.456545, 38.8573, 18.495262), (-26.389624, 38.8573, 17.137623), (-27.250372, 38.8573, 15.733009), (-28.036428, 38.8573, 14.285274), (-28.74564, 38.8573, 12.798383), (-29.37606, 38.8573, 11.276413), (-29.925962, 38.8573, 9.723535), (-30.39384, 38.8573, 8.144005), (-30.778412, 38.8573, 6.5421534), (-31.07862, 38.8573, 4.92237), (-31.293646, 38.8573, 3.2890947), (-31.422897, 38.8573, 1.6468042), (-31.466019, 38.8573, 3.853476e-15), (-31.422897, 38.8573, -1.6468042), (-31.293646, 38.8573, -3.2890947), (-31.07862, 38.8573, -4.92237), (-30.778412, 38.8573, -6.5421534), (-30.39384, 38.8573, -8.144005), (-29.925962, 38.8573, -9.723535), (-29.37606, 38.8573, -11.276413), (-28.74564, 38.8573, -12.798383), (-28.036428, 38.8573, -14.285274), (-27.250372, 38.8573, -15.733009), (-26.389624, 38.8573, -17.137623), (-25.456545, 38.8573, -18.495262), (-24.45369, 38.8573, -19.802208), (-23.38381, 38.8573, -21.054876), (-22.249836, 38.8573, -22.249836), (-21.054876, 38.8573, -23.38381), (-19.802208, 38.8573, -24.45369), (-18.495262, 38.8573, -25.456545), (-17.137623, 38.8573, -26.389624), (-15.733009, 38.8573, -27.250372), (-14.285274, 38.8573, -28.036428), (-12.798383, 38.8573, -28.74564), (-11.276413, 38.8573, -29.37606), (-9.723535, 38.8573, -29.925962), (-8.144005, 38.8573, -30.39384), (-6.5421534, 38.8573, -30.778412), (-4.92237, 38.8573, -31.07862), (-3.2890947, 38.8573, -31.293646), (-1.6468042, 38.8573, -31.422897), (-5.780214e-15, 38.8573, -31.466019), (1.6468042, 38.8573, -31.422897), (3.2890947, 38.8573, -31.293646), (4.92237, 38.8573, -31.07862), (6.5421534, 38.8573, -30.778412), (8.144005, 38.8573, -30.39384), (9.723535, 38.8573, -29.925962), (11.276413, 38.8573, -29.37606), (12.798383, 38.8573, -28.74564), (14.285274, 38.8573, -28.036428), (15.733009, 38.8573, -27.250372), (17.137623, 38.8573, -26.389624), (18.495262, 38.8573, -25.456545), (19.802208, 38.8573, -24.45369), (21.054876, 38.8573, -23.38381), (22.249836, 38.8573, -22.249836), (23.38381, 38.8573, -21.054876), (24.45369, 38.8573, -19.802208), (25.456545, 38.8573, -18.495262), (26.389624, 38.8573, -17.137623), (27.250372, 38.8573, -15.733009), (28.036428, 38.8573, -14.285274), (28.74564, 38.8573, -12.798383), (29.37606, 38.8573, -11.276413), (29.925962, 38.8573, -9.723535), (30.39384, 38.8573, -8.144005), (30.778412, 38.8573, -6.5421534), (31.07862, 38.8573, -4.92237), (31.293646, 38.8573, -3.2890947), (31.422897, 38.8573, -1.6468042), (29.389263, 40.45085, 0), (29.348986, 40.45085, 1.5381151), (29.228266, 40.45085, 3.0720146), (29.027431, 40.45085, 4.5974936), (28.747036, 40.45085, 6.110371), (28.387848, 40.45085, 7.606501), (27.95085, 40.45085, 9.081781), (27.43724, 40.45085, 10.532169), (26.848427, 40.45085, 11.95369), (26.186026, 40.45085, 13.342446), (25.451847, 40.45085, 14.694632), (24.64791, 40.45085, 16.00654), (23.776413, 40.45085, 17.274574), (22.839746, 40.45085, 18.495262), (21.840479, 40.45085, 19.665255), (20.781347, 40.45085, 20.781347), (19.665255, 40.45085, 21.840479), (18.495262, 40.45085, 22.839746), (17.274574, 40.45085, 23.776413), (16.00654, 40.45085, 24.64791), (14.694632, 40.45085, 25.451847), (13.342446, 40.45085, 26.186026), (11.95369, 40.45085, 26.848427), (10.532169, 40.45085, 27.43724), (9.081781, 40.45085, 27.95085), (7.606501, 40.45085, 28.387848), (6.110371, 40.45085, 28.747036), (4.5974936, 40.45085, 29.027431), (3.0720146, 40.45085, 29.228266), (1.5381151, 40.45085, 29.348986), (1.7995734e-15, 40.45085, 29.389263), (-1.5381151, 40.45085, 29.348986), (-3.0720146, 40.45085, 29.228266), (-4.5974936, 40.45085, 29.027431), (-6.110371, 40.45085, 28.747036), (-7.606501, 40.45085, 28.387848), (-9.081781, 40.45085, 27.95085), (-10.532169, 40.45085, 27.43724), (-11.95369, 40.45085, 26.848427), (-13.342446, 40.45085, 26.186026), (-14.694632, 40.45085, 25.451847), (-16.00654, 40.45085, 24.64791), (-17.274574, 40.45085, 23.776413), (-18.495262, 40.45085, 22.839746), (-19.665255, 40.45085, 21.840479), (-20.781347, 40.45085, 20.781347), (-21.840479, 40.45085, 19.665255), (-22.839746, 40.45085, 18.495262), (-23.776413, 40.45085, 17.274574), (-24.64791, 40.45085, 16.00654), (-25.451847, 40.45085, 14.694632), (-26.186026, 40.45085, 13.342446), (-26.848427, 40.45085, 11.95369), (-27.43724, 40.45085, 10.532169), (-27.95085, 40.45085, 9.081781), (-28.387848, 40.45085, 7.606501), (-28.747036, 40.45085, 6.110371), (-29.027431, 40.45085, 4.5974936), (-29.228266, 40.45085, 3.0720146), (-29.348986, 40.45085, 1.5381151), (-29.389263, 40.45085, 3.5991468e-15), (-29.348986, 40.45085, -1.5381151), (-29.228266, 40.45085, -3.0720146), (-29.027431, 40.45085, -4.5974936), (-28.747036, 40.45085, -6.110371), (-28.387848, 40.45085, -7.606501), (-27.95085, 40.45085, -9.081781), (-27.43724, 40.45085, -10.532169), (-26.848427, 40.45085, -11.95369), (-26.186026, 40.45085, -13.342446), (-25.451847, 40.45085, -14.694632), (-24.64791, 40.45085, -16.00654), (-23.776413, 40.45085, -17.274574), (-22.839746, 40.45085, -18.495262), (-21.840479, 40.45085, -19.665255), (-20.781347, 40.45085, -20.781347), (-19.665255, 40.45085, -21.840479), (-18.495262, 40.45085, -22.839746), (-17.274574, 40.45085, -23.776413), (-16.00654, 40.45085, -24.64791), (-14.694632, 40.45085, -25.451847), (-13.342446, 40.45085, -26.186026), (-11.95369, 40.45085, -26.848427), (-10.532169, 40.45085, -27.43724), (-9.081781, 40.45085, -27.95085), (-7.606501, 40.45085, -28.387848), (-6.110371, 40.45085, -28.747036), (-4.5974936, 40.45085, -29.027431), (-3.0720146, 40.45085, -29.228266), (-1.5381151, 40.45085, -29.348986), (-5.39872e-15, 40.45085, -29.389263), (1.5381151, 40.45085, -29.348986), (3.0720146, 40.45085, -29.228266), (4.5974936, 40.45085, -29.027431), (6.110371, 40.45085, -28.747036), (7.606501, 40.45085, -28.387848), (9.081781, 40.45085, -27.95085), (10.532169, 40.45085, -27.43724), (11.95369, 40.45085, -26.848427), (13.342446, 40.45085, -26.186026), (14.694632, 40.45085, -25.451847), (16.00654, 40.45085, -24.64791), (17.274574, 40.45085, -23.776413), (18.495262, 40.45085, -22.839746), (19.665255, 40.45085, -21.840479), (20.781347, 40.45085, -20.781347), (21.840479, 40.45085, -19.665255), (22.839746, 40.45085, -18.495262), (23.776413, 40.45085, -17.274574), (24.64791, 40.45085, -16.00654), (25.451847, 40.45085, -14.694632), (26.186026, 40.45085, -13.342446), (26.848427, 40.45085, -11.95369), (27.43724, 40.45085, -10.532169), (27.95085, 40.45085, -9.081781), (28.387848, 40.45085, -7.606501), (28.747036, 40.45085, -6.110371), (29.027431, 40.45085, -4.5974936), (29.228266, 40.45085, -3.0720146), (29.348986, 40.45085, -1.5381151), (27.231953, 41.93353, 0), (27.194632, 41.93353, 1.4252102), (27.082773, 41.93353, 2.846514), (26.89668, 41.93353, 4.260016), (26.636868, 41.93353, 5.661841), (26.304045, 41.93353, 7.0481477), (25.899126, 41.93353, 8.415136), (25.423218, 41.93353, 9.759059), (24.877626, 41.93353, 11.076233), (24.263847, 41.93353, 12.363048), (23.583563, 41.93353, 13.615976), (22.838636, 41.93353, 14.831584), (22.031113, 41.93353, 16.00654), (21.1632, 41.93353, 17.137623), (20.237284, 41.93353, 18.221733), (19.255898, 41.93353, 19.255898), (18.221733, 41.93353, 20.237284), (17.137623, 41.93353, 21.1632), (16.00654, 41.93353, 22.031113), (14.831584, 41.93353, 22.838636), (13.615976, 41.93353, 23.583563), (12.363048, 41.93353, 24.263847), (11.076233, 41.93353, 24.877626), (9.759059, 41.93353, 25.423218), (8.415136, 41.93353, 25.899126), (7.0481477, 41.93353, 26.304045), (5.661841, 41.93353, 26.636868), (4.260016, 41.93353, 26.89668), (2.846514, 41.93353, 27.082773), (1.4252102, 41.93353, 27.194632), (1.6674762e-15, 41.93353, 27.231953), (-1.4252102, 41.93353, 27.194632), (-2.846514, 41.93353, 27.082773), (-4.260016, 41.93353, 26.89668), (-5.661841, 41.93353, 26.636868), (-7.0481477, 41.93353, 26.304045), (-8.415136, 41.93353, 25.899126), (-9.759059, 41.93353, 25.423218), (-11.076233, 41.93353, 24.877626), (-12.363048, 41.93353, 24.263847), (-13.615976, 41.93353, 23.583563), (-14.831584, 41.93353, 22.838636), (-16.00654, 41.93353, 22.031113), (-17.137623, 41.93353, 21.1632), (-18.221733, 41.93353, 20.237284), (-19.255898, 41.93353, 19.255898), (-20.237284, 41.93353, 18.221733), (-21.1632, 41.93353, 17.137623), (-22.031113, 41.93353, 16.00654), (-22.838636, 41.93353, 14.831584), (-23.583563, 41.93353, 13.615976), (-24.263847, 41.93353, 12.363048), (-24.877626, 41.93353, 11.076233), (-25.423218, 41.93353, 9.759059), (-25.899126, 41.93353, 8.415136), (-26.304045, 41.93353, 7.0481477), (-26.636868, 41.93353, 5.661841), (-26.89668, 41.93353, 4.260016), (-27.082773, 41.93353, 2.846514), (-27.194632, 41.93353, 1.4252102), (-27.231953, 41.93353, 3.3349523e-15), (-27.194632, 41.93353, -1.4252102), (-27.082773, 41.93353, -2.846514), (-26.89668, 41.93353, -4.260016), (-26.636868, 41.93353, -5.661841), (-26.304045, 41.93353, -7.0481477), (-25.899126, 41.93353, -8.415136), (-25.423218, 41.93353, -9.759059), (-24.877626, 41.93353, -11.076233), (-24.263847, 41.93353, -12.363048), (-23.583563, 41.93353, -13.615976), (-22.838636, 41.93353, -14.831584), (-22.031113, 41.93353, -16.00654), (-21.1632, 41.93353, -17.137623), (-20.237284, 41.93353, -18.221733), (-19.255898, 41.93353, -19.255898), (-18.221733, 41.93353, -20.237284), (-17.137623, 41.93353, -21.1632), (-16.00654, 41.93353, -22.031113), (-14.831584, 41.93353, -22.838636), (-13.615976, 41.93353, -23.583563), (-12.363048, 41.93353, -24.263847), (-11.076233, 41.93353, -24.877626), (-9.759059, 41.93353, -25.423218), (-8.415136, 41.93353, -25.899126), (-7.0481477, 41.93353, -26.304045), (-5.661841, 41.93353, -26.636868), (-4.260016, 41.93353, -26.89668), (-2.846514, 41.93353, -27.082773), (-1.4252102, 41.93353, -27.194632), (-5.0024284e-15, 41.93353, -27.231953), (1.4252102, 41.93353, -27.194632), (2.846514, 41.93353, -27.082773), (4.260016, 41.93353, -26.89668), (5.661841, 41.93353, -26.636868), (7.0481477, 41.93353, -26.304045), (8.415136, 41.93353, -25.899126), (9.759059, 41.93353, -25.423218), (11.076233, 41.93353, -24.877626), (12.363048, 41.93353, -24.263847), (13.615976, 41.93353, -23.583563), (14.831584, 41.93353, -22.838636), (16.00654, 41.93353, -22.031113), (17.137623, 41.93353, -21.1632), (18.221733, 41.93353, -20.237284), (19.255898, 41.93353, -19.255898), (20.237284, 41.93353, -18.221733), (21.1632, 41.93353, -17.137623), (22.031113, 41.93353, -16.00654), (22.838636, 41.93353, -14.831584), (23.583563, 41.93353, -13.615976), (24.263847, 41.93353, -12.363048), (24.877626, 41.93353, -11.076233), (25.423218, 41.93353, -9.759059), (25.899126, 41.93353, -8.415136), (26.304045, 41.93353, -7.0481477), (26.636868, 41.93353, -5.661841), (26.89668, 41.93353, -4.260016), (27.082773, 41.93353, -2.846514), (27.194632, 41.93353, -1.4252102), (25, 43.30127, 0), (24.965738, 43.30127, 1.308399), (24.863047, 43.30127, 2.6132116), (24.69221, 43.30127, 3.9108617), (24.45369, 43.30127, 5.197792), (24.148146, 43.30127, 6.470476), (23.776413, 43.30127, 7.725425), (23.33951, 43.30127, 8.959199), (22.838636, 43.30127, 10.168416), (22.275164, 43.30127, 11.349763), (21.650635, 43.30127, 12.5), (20.966764, 43.30127, 13.615976), (20.225426, 43.30127, 14.694632), (19.42865, 43.30127, 15.733009), (18.57862, 43.30127, 16.728266), (17.67767, 43.30127, 17.67767), (16.728266, 43.30127, 18.57862), (15.733009, 43.30127, 19.42865), (14.694632, 43.30127, 20.225426), (13.615976, 43.30127, 20.966764), (12.5, 43.30127, 21.650635), (11.349763, 43.30127, 22.275164), (10.168416, 43.30127, 22.838636), (8.959199, 43.30127, 23.33951), (7.725425, 43.30127, 23.776413), (6.470476, 43.30127, 24.148146), (5.197792, 43.30127, 24.45369), (3.9108617, 43.30127, 24.69221), (2.6132116, 43.30127, 24.863047), (1.308399, 43.30127, 24.965738), (1.5308084e-15, 43.30127, 25), (-1.308399, 43.30127, 24.965738), (-2.6132116, 43.30127, 24.863047), (-3.9108617, 43.30127, 24.69221), (-5.197792, 43.30127, 24.45369), (-6.470476, 43.30127, 24.148146), (-7.725425, 43.30127, 23.776413), (-8.959199, 43.30127, 23.33951), (-10.168416, 43.30127, 22.838636), (-11.349763, 43.30127, 22.275164), (-12.5, 43.30127, 21.650635), (-13.615976, 43.30127, 20.966764), (-14.694632, 43.30127, 20.225426), (-15.733009, 43.30127, 19.42865), (-16.728266, 43.30127, 18.57862), (-17.67767, 43.30127, 17.67767), (-18.57862, 43.30127, 16.728266), (-19.42865, 43.30127, 15.733009), (-20.225426, 43.30127, 14.694632), (-20.966764, 43.30127, 13.615976), (-21.650635, 43.30127, 12.5), (-22.275164, 43.30127, 11.349763), (-22.838636, 43.30127, 10.168416), (-23.33951, 43.30127, 8.959199), (-23.776413, 43.30127, 7.725425), (-24.148146, 43.30127, 6.470476), (-24.45369, 43.30127, 5.197792), (-24.69221, 43.30127, 3.9108617), (-24.863047, 43.30127, 2.6132116), (-24.965738, 43.30127, 1.308399), (-25, 43.30127, 3.0616169e-15), (-24.965738, 43.30127, -1.308399), (-24.863047, 43.30127, -2.6132116), (-24.69221, 43.30127, -3.9108617), (-24.45369, 43.30127, -5.197792), (-24.148146, 43.30127, -6.470476), (-23.776413, 43.30127, -7.725425), (-23.33951, 43.30127, -8.959199), (-22.838636, 43.30127, -10.168416), (-22.275164, 43.30127, -11.349763), (-21.650635, 43.30127, -12.5), (-20.966764, 43.30127, -13.615976), (-20.225426, 43.30127, -14.694632), (-19.42865, 43.30127, -15.733009), (-18.57862, 43.30127, -16.728266), (-17.67767, 43.30127, -17.67767), (-16.728266, 43.30127, -18.57862), (-15.733009, 43.30127, -19.42865), (-14.694632, 43.30127, -20.225426), (-13.615976, 43.30127, -20.966764), (-12.5, 43.30127, -21.650635), (-11.349763, 43.30127, -22.275164), (-10.168416, 43.30127, -22.838636), (-8.959199, 43.30127, -23.33951), (-7.725425, 43.30127, -23.776413), (-6.470476, 43.30127, -24.148146), (-5.197792, 43.30127, -24.45369), (-3.9108617, 43.30127, -24.69221), (-2.6132116, 43.30127, -24.863047), (-1.308399, 43.30127, -24.965738), (-4.5924254e-15, 43.30127, -25), (1.308399, 43.30127, -24.965738), (2.6132116, 43.30127, -24.863047), (3.9108617, 43.30127, -24.69221), (5.197792, 43.30127, -24.45369), (6.470476, 43.30127, -24.148146), (7.725425, 43.30127, -23.776413), (8.959199, 43.30127, -23.33951), (10.168416, 43.30127, -22.838636), (11.349763, 43.30127, -22.275164), (12.5, 43.30127, -21.650635), (13.615976, 43.30127, -20.966764), (14.694632, 43.30127, -20.225426), (15.733009, 43.30127, -19.42865), (16.728266, 43.30127, -18.57862), (17.67767, 43.30127, -17.67767), (18.57862, 43.30127, -16.728266), (19.42865, 43.30127, -15.733009), (20.225426, 43.30127, -14.694632), (20.966764, 43.30127, -13.615976), (21.650635, 43.30127, -12.5), (22.275164, 43.30127, -11.349763), (22.838636, 43.30127, -10.168416), (23.33951, 43.30127, -8.959199), (23.776413, 43.30127, -7.725425), (24.148146, 43.30127, -6.470476), (24.45369, 43.30127, -5.197792), (24.69221, 43.30127, -3.9108617), (24.863047, 43.30127, -2.6132116), (24.965738, 43.30127, -1.308399), (22.699526, 44.550327, 0), (22.668417, 44.550327, 1.1880014), (22.575174, 44.550327, 2.3727465), (22.420055, 44.550327, 3.550988), (22.203485, 44.550327, 4.7194967), (21.926058, 44.550327, 5.8750696), (21.588531, 44.550327, 7.014539), (21.191832, 44.550327, 8.134782), (20.737047, 44.550327, 9.232729), (20.225426, 44.550327, 10.305368), (19.658365, 44.550327, 11.349763), (19.037424, 44.550327, 12.363048), (18.364302, 44.550327, 13.342446), (17.640844, 44.550327, 14.285274), (16.869034, 44.550327, 15.188947), (16.050987, 44.550327, 16.050987), (15.188947, 44.550327, 16.869034), (14.285274, 44.550327, 17.640844), (13.342446, 44.550327, 18.364302), (12.363048, 44.550327, 19.037424), (11.349763, 44.550327, 19.658365), (10.305368, 44.550327, 20.225426), (9.232729, 44.550327, 20.737047), (8.134782, 44.550327, 21.191832), (7.014539, 44.550327, 21.588531), (5.8750696, 44.550327, 21.926058), (4.7194967, 44.550327, 22.203485), (3.550988, 44.550327, 22.420055), (2.3727465, 44.550327, 22.575174), (1.1880014, 44.550327, 22.668417), (1.3899451e-15, 44.550327, 22.699526), (-1.1880014, 44.550327, 22.668417), (-2.3727465, 44.550327, 22.575174), (-3.550988, 44.550327, 22.420055), (-4.7194967, 44.550327, 22.203485), (-5.8750696, 44.550327, 21.926058), (-7.014539, 44.550327, 21.588531), (-8.134782, 44.550327, 21.191832), (-9.232729, 44.550327, 20.737047), (-10.305368, 44.550327, 20.225426), (-11.349763, 44.550327, 19.658365), (-12.363048, 44.550327, 19.037424), (-13.342446, 44.550327, 18.364302), (-14.285274, 44.550327, 17.640844), (-15.188947, 44.550327, 16.869034), (-16.050987, 44.550327, 16.050987), (-16.869034, 44.550327, 15.188947), (-17.640844, 44.550327, 14.285274), (-18.364302, 44.550327, 13.342446), (-19.037424, 44.550327, 12.363048), (-19.658365, 44.550327, 11.349763), (-20.225426, 44.550327, 10.305368), (-20.737047, 44.550327, 9.232729), (-21.191832, 44.550327, 8.134782), (-21.588531, 44.550327, 7.014539), (-21.926058, 44.550327, 5.8750696), (-22.203485, 44.550327, 4.7194967), (-22.420055, 44.550327, 3.550988), (-22.575174, 44.550327, 2.3727465), (-22.668417, 44.550327, 1.1880014), (-22.699526, 44.550327, 2.7798901e-15), (-22.668417, 44.550327, -1.1880014), (-22.575174, 44.550327, -2.3727465), (-22.420055, 44.550327, -3.550988), (-22.203485, 44.550327, -4.7194967), (-21.926058, 44.550327, -5.8750696), (-21.588531, 44.550327, -7.014539), (-21.191832, 44.550327, -8.134782), (-20.737047, 44.550327, -9.232729), (-20.225426, 44.550327, -10.305368), (-19.658365, 44.550327, -11.349763), (-19.037424, 44.550327, -12.363048), (-18.364302, 44.550327, -13.342446), (-17.640844, 44.550327, -14.285274), (-16.869034, 44.550327, -15.188947), (-16.050987, 44.550327, -16.050987), (-15.188947, 44.550327, -16.869034), (-14.285274, 44.550327, -17.640844), (-13.342446, 44.550327, -18.364302), (-12.363048, 44.550327, -19.037424), (-11.349763, 44.550327, -19.658365), (-10.305368, 44.550327, -20.225426), (-9.232729, 44.550327, -20.737047), (-8.134782, 44.550327, -21.191832), (-7.014539, 44.550327, -21.588531), (-5.8750696, 44.550327, -21.926058), (-4.7194967, 44.550327, -22.203485), (-3.550988, 44.550327, -22.420055), (-2.3727465, 44.550327, -22.575174), (-1.1880014, 44.550327, -22.668417), (-4.169835e-15, 44.550327, -22.699526), (1.1880014, 44.550327, -22.668417), (2.3727465, 44.550327, -22.575174), (3.550988, 44.550327, -22.420055), (4.7194967, 44.550327, -22.203485), (5.8750696, 44.550327, -21.926058), (7.014539, 44.550327, -21.588531), (8.134782, 44.550327, -21.191832), (9.232729, 44.550327, -20.737047), (10.305368, 44.550327, -20.225426), (11.349763, 44.550327, -19.658365), (12.363048, 44.550327, -19.037424), (13.342446, 44.550327, -18.364302), (14.285274, 44.550327, -17.640844), (15.188947, 44.550327, -16.869034), (16.050987, 44.550327, -16.050987), (16.869034, 44.550327, -15.188947), (17.640844, 44.550327, -14.285274), (18.364302, 44.550327, -13.342446), (19.037424, 44.550327, -12.363048), (19.658365, 44.550327, -11.349763), (20.225426, 44.550327, -10.305368), (20.737047, 44.550327, -9.232729), (21.191832, 44.550327, -8.134782), (21.588531, 44.550327, -7.014539), (21.926058, 44.550327, -5.8750696), (22.203485, 44.550327, -4.7194967), (22.420055, 44.550327, -3.550988), (22.575174, 44.550327, -2.3727465), (22.668417, 44.550327, -1.1880014), (20.336832, 45.677273, 0), (20.308962, 45.677273, 1.0643475), (20.225426, 45.677273, 2.1257777), (20.086452, 45.677273, 3.1813815), (19.892424, 45.677273, 4.2282653), (19.643871, 45.677273, 5.2635593), (19.341476, 45.677273, 6.2844267), (18.986069, 45.677273, 7.288069), (18.57862, 45.677273, 8.271735), (18.12025, 45.677273, 9.232729), (17.612213, 45.677273, 10.168416), (17.055902, 45.677273, 11.076233), (16.452843, 45.677273, 11.95369), (15.804687, 45.677273, 12.798383), (15.113212, 45.677273, 13.607997), (14.380312, 45.677273, 14.380312), (13.607997, 45.677273, 15.113212), (12.798383, 45.677273, 15.804687), (11.95369, 45.677273, 16.452843), (11.076233, 45.677273, 17.055902), (10.168416, 45.677273, 17.612213), (9.232729, 45.677273, 18.12025), (8.271735, 45.677273, 18.57862), (7.288069, 45.677273, 18.986069), (6.2844267, 45.677273, 19.341476), (5.2635593, 45.677273, 19.643871), (4.2282653, 45.677273, 19.892424), (3.1813815, 45.677273, 20.086452), (2.1257777, 45.677273, 20.225426), (1.0643475, 45.677273, 20.308962), (1.2452718e-15, 45.677273, 20.336832), (-1.0643475, 45.677273, 20.308962), (-2.1257777, 45.677273, 20.225426), (-3.1813815, 45.677273, 20.086452), (-4.2282653, 45.677273, 19.892424), (-5.2635593, 45.677273, 19.643871), (-6.2844267, 45.677273, 19.341476), (-7.288069, 45.677273, 18.986069), (-8.271735, 45.677273, 18.57862), (-9.232729, 45.677273, 18.12025), (-10.168416, 45.677273, 17.612213), (-11.076233, 45.677273, 17.055902), (-11.95369, 45.677273, 16.452843), (-12.798383, 45.677273, 15.804687), (-13.607997, 45.677273, 15.113212), (-14.380312, 45.677273, 14.380312), (-15.113212, 45.677273, 13.607997), (-15.804687, 45.677273, 12.798383), (-16.452843, 45.677273, 11.95369), (-17.055902, 45.677273, 11.076233), (-17.612213, 45.677273, 10.168416), (-18.12025, 45.677273, 9.232729), (-18.57862, 45.677273, 8.271735), (-18.986069, 45.677273, 7.288069), (-19.341476, 45.677273, 6.2844267), (-19.643871, 45.677273, 5.2635593), (-19.892424, 45.677273, 4.2282653), (-20.086452, 45.677273, 3.1813815), (-20.225426, 45.677273, 2.1257777), (-20.308962, 45.677273, 1.0643475), (-20.336832, 45.677273, 2.4905437e-15), (-20.308962, 45.677273, -1.0643475), (-20.225426, 45.677273, -2.1257777), (-20.086452, 45.677273, -3.1813815), (-19.892424, 45.677273, -4.2282653), (-19.643871, 45.677273, -5.2635593), (-19.341476, 45.677273, -6.2844267), (-18.986069, 45.677273, -7.288069), (-18.57862, 45.677273, -8.271735), (-18.12025, 45.677273, -9.232729), (-17.612213, 45.677273, -10.168416), (-17.055902, 45.677273, -11.076233), (-16.452843, 45.677273, -11.95369), (-15.804687, 45.677273, -12.798383), (-15.113212, 45.677273, -13.607997), (-14.380312, 45.677273, -14.380312), (-13.607997, 45.677273, -15.113212), (-12.798383, 45.677273, -15.804687), (-11.95369, 45.677273, -16.452843), (-11.076233, 45.677273, -17.055902), (-10.168416, 45.677273, -17.612213), (-9.232729, 45.677273, -18.12025), (-8.271735, 45.677273, -18.57862), (-7.288069, 45.677273, -18.986069), (-6.2844267, 45.677273, -19.341476), (-5.2635593, 45.677273, -19.643871), (-4.2282653, 45.677273, -19.892424), (-3.1813815, 45.677273, -20.086452), (-2.1257777, 45.677273, -20.225426), (-1.0643475, 45.677273, -20.308962), (-3.7358155e-15, 45.677273, -20.336832), (1.0643475, 45.677273, -20.308962), (2.1257777, 45.677273, -20.225426), (3.1813815, 45.677273, -20.086452), (4.2282653, 45.677273, -19.892424), (5.2635593, 45.677273, -19.643871), (6.2844267, 45.677273, -19.341476), (7.288069, 45.677273, -18.986069), (8.271735, 45.677273, -18.57862), (9.232729, 45.677273, -18.12025), (10.168416, 45.677273, -17.612213), (11.076233, 45.677273, -17.055902), (11.95369, 45.677273, -16.452843), (12.798383, 45.677273, -15.804687), (13.607997, 45.677273, -15.113212), (14.380312, 45.677273, -14.380312), (15.113212, 45.677273, -13.607997), (15.804687, 45.677273, -12.798383), (16.452843, 45.677273, -11.95369), (17.055902, 45.677273, -11.076233), (17.612213, 45.677273, -10.168416), (18.12025, 45.677273, -9.232729), (18.57862, 45.677273, -8.271735), (18.986069, 45.677273, -7.288069), (19.341476, 45.677273, -6.2844267), (19.643871, 45.677273, -5.2635593), (19.892424, 45.677273, -4.2282653), (20.086452, 45.677273, -3.1813815), (20.225426, 45.677273, -2.1257777), (20.308962, 45.677273, -1.0643475), (17.918398, 46.67902, 0), (17.89384, 46.67902, 0.93777645), (17.820238, 46.67902, 1.8729825), (17.697792, 46.67902, 2.8030548), (17.526838, 46.67902, 3.7254443), (17.307842, 46.67902, 4.6376224), (17.041409, 46.67902, 5.5370893), (16.728266, 46.67902, 6.4213796), (16.36927, 46.67902, 7.288069), (15.965409, 46.67902, 8.134782), (15.517787, 46.67902, 8.959199), (15.027633, 46.67902, 9.759059), (14.496288, 46.67902, 10.532169), (13.92521, 46.67902, 11.276413), (13.315965, 46.67902, 11.989748), (12.67022, 46.67902, 12.67022), (11.989748, 46.67902, 13.315965), (11.276413, 46.67902, 13.92521), (10.532169, 46.67902, 14.496288), (9.759059, 46.67902, 15.027633), (8.959199, 46.67902, 15.517787), (8.134782, 46.67902, 15.965409), (7.288069, 46.67902, 16.36927), (6.4213796, 46.67902, 16.728266), (5.5370893, 46.67902, 17.041409), (4.6376224, 46.67902, 17.307842), (3.7254443, 46.67902, 17.526838), (2.8030548, 46.67902, 17.697792), (1.8729825, 46.67902, 17.820238), (0.93777645, 46.67902, 17.89384), (1.0971854e-15, 46.67902, 17.918398), (-0.93777645, 46.67902, 17.89384), (-1.8729825, 46.67902, 17.820238), (-2.8030548, 46.67902, 17.697792), (-3.7254443, 46.67902, 17.526838), (-4.6376224, 46.67902, 17.307842), (-5.5370893, 46.67902, 17.041409), (-6.4213796, 46.67902, 16.728266), (-7.288069, 46.67902, 16.36927), (-8.134782, 46.67902, 15.965409), (-8.959199, 46.67902, 15.517787), (-9.759059, 46.67902, 15.027633), (-10.532169, 46.67902, 14.496288), (-11.276413, 46.67902, 13.92521), (-11.989748, 46.67902, 13.315965), (-12.67022, 46.67902, 12.67022), (-13.315965, 46.67902, 11.989748), (-13.92521, 46.67902, 11.276413), (-14.496288, 46.67902, 10.532169), (-15.027633, 46.67902, 9.759059), (-15.517787, 46.67902, 8.959199), (-15.965409, 46.67902, 8.134782), (-16.36927, 46.67902, 7.288069), (-16.728266, 46.67902, 6.4213796), (-17.041409, 46.67902, 5.5370893), (-17.307842, 46.67902, 4.6376224), (-17.526838, 46.67902, 3.7254443), (-17.697792, 46.67902, 2.8030548), (-17.820238, 46.67902, 1.8729825), (-17.89384, 46.67902, 0.93777645), (-17.918398, 46.67902, 2.1943708e-15), (-17.89384, 46.67902, -0.93777645), (-17.820238, 46.67902, -1.8729825), (-17.697792, 46.67902, -2.8030548), (-17.526838, 46.67902, -3.7254443), (-17.307842, 46.67902, -4.6376224), (-17.041409, 46.67902, -5.5370893), (-16.728266, 46.67902, -6.4213796), (-16.36927, 46.67902, -7.288069), (-15.965409, 46.67902, -8.134782), (-15.517787, 46.67902, -8.959199), (-15.027633, 46.67902, -9.759059), (-14.496288, 46.67902, -10.532169), (-13.92521, 46.67902, -11.276413), (-13.315965, 46.67902, -11.989748), (-12.67022, 46.67902, -12.67022), (-11.989748, 46.67902, -13.315965), (-11.276413, 46.67902, -13.92521), (-10.532169, 46.67902, -14.496288), (-9.759059, 46.67902, -15.027633), (-8.959199, 46.67902, -15.517787), (-8.134782, 46.67902, -15.965409), (-7.288069, 46.67902, -16.36927), (-6.4213796, 46.67902, -16.728266), (-5.5370893, 46.67902, -17.041409), (-4.6376224, 46.67902, -17.307842), (-3.7254443, 46.67902, -17.526838), (-2.8030548, 46.67902, -17.697792), (-1.8729825, 46.67902, -17.820238), (-0.93777645, 46.67902, -17.89384), (-3.2915563e-15, 46.67902, -17.918398), (0.93777645, 46.67902, -17.89384), (1.8729825, 46.67902, -17.820238), (2.8030548, 46.67902, -17.697792), (3.7254443, 46.67902, -17.526838), (4.6376224, 46.67902, -17.307842), (5.5370893, 46.67902, -17.041409), (6.4213796, 46.67902, -16.728266), (7.288069, 46.67902, -16.36927), (8.134782, 46.67902, -15.965409), (8.959199, 46.67902, -15.517787), (9.759059, 46.67902, -15.027633), (10.532169, 46.67902, -14.496288), (11.276413, 46.67902, -13.92521), (11.989748, 46.67902, -13.315965), (12.67022, 46.67902, -12.67022), (13.315965, 46.67902, -11.989748), (13.92521, 46.67902, -11.276413), (14.496288, 46.67902, -10.532169), (15.027633, 46.67902, -9.759059), (15.517787, 46.67902, -8.959199), (15.965409, 46.67902, -8.134782), (16.36927, 46.67902, -7.288069), (16.728266, 46.67902, -6.4213796), (17.041409, 46.67902, -5.5370893), (17.307842, 46.67902, -4.6376224), (17.526838, 46.67902, -3.7254443), (17.697792, 46.67902, -2.8030548), (17.820238, 46.67902, -1.8729825), (17.89384, 46.67902, -0.93777645), (15.45085, 47.552826, 0), (15.429675, 47.552826, 0.808635), (15.366208, 47.552826, 1.6150535), (15.260624, 47.552826, 2.4170454), (15.113212, 47.552826, 3.2124124), (14.924375, 47.552826, 3.998974), (14.694632, 47.552826, 4.774575), (14.424611, 47.552826, 5.5370893), (14.115053, 47.552826, 6.2844267), (13.766808, 47.552826, 7.014539), (13.380828, 47.552826, 7.725425), (12.958173, 47.552826, 8.415136), (12.5, 47.552826, 9.081781), (12.0075655, 47.552826, 9.723535), (11.482219, 47.552826, 10.338636), (10.925401, 47.552826, 10.925401), (10.338636, 47.552826, 11.482219), (9.723535, 47.552826, 12.0075655), (9.081781, 47.552826, 12.5), (8.415136, 47.552826, 12.958173), (7.725425, 47.552826, 13.380828), (7.014539, 47.552826, 13.766808), (6.2844267, 47.552826, 14.115053), (5.5370893, 47.552826, 14.424611), (4.774575, 47.552826, 14.694632), (3.998974, 47.552826, 14.924375), (3.2124124, 47.552826, 15.113212), (2.4170454, 47.552826, 15.260624), (1.6150535, 47.552826, 15.366208), (0.808635, 47.552826, 15.429675), (9.460917e-16, 47.552826, 15.45085), (-0.808635, 47.552826, 15.429675), (-1.6150535, 47.552826, 15.366208), (-2.4170454, 47.552826, 15.260624), (-3.2124124, 47.552826, 15.113212), (-3.998974, 47.552826, 14.924375), (-4.774575, 47.552826, 14.694632), (-5.5370893, 47.552826, 14.424611), (-6.2844267, 47.552826, 14.115053), (-7.014539, 47.552826, 13.766808), (-7.725425, 47.552826, 13.380828), (-8.415136, 47.552826, 12.958173), (-9.081781, 47.552826, 12.5), (-9.723535, 47.552826, 12.0075655), (-10.338636, 47.552826, 11.482219), (-10.925401, 47.552826, 10.925401), (-11.482219, 47.552826, 10.338636), (-12.0075655, 47.552826, 9.723535), (-12.5, 47.552826, 9.081781), (-12.958173, 47.552826, 8.415136), (-13.380828, 47.552826, 7.725425), (-13.766808, 47.552826, 7.014539), (-14.115053, 47.552826, 6.2844267), (-14.424611, 47.552826, 5.5370893), (-14.694632, 47.552826, 4.774575), (-14.924375, 47.552826, 3.998974), (-15.113212, 47.552826, 3.2124124), (-15.260624, 47.552826, 2.4170454), (-15.366208, 47.552826, 1.6150535), (-15.429675, 47.552826, 0.808635), (-15.45085, 47.552826, 1.8921833e-15), (-15.429675, 47.552826, -0.808635), (-15.366208, 47.552826, -1.6150535), (-15.260624, 47.552826, -2.4170454), (-15.113212, 47.552826, -3.2124124), (-14.924375, 47.552826, -3.998974), (-14.694632, 47.552826, -4.774575), (-14.424611, 47.552826, -5.5370893), (-14.115053, 47.552826, -6.2844267), (-13.766808, 47.552826, -7.014539), (-13.380828, 47.552826, -7.725425), (-12.958173, 47.552826, -8.415136), (-12.5, 47.552826, -9.081781), (-12.0075655, 47.552826, -9.723535), (-11.482219, 47.552826, -10.338636), (-10.925401, 47.552826, -10.925401), (-10.338636, 47.552826, -11.482219), (-9.723535, 47.552826, -12.0075655), (-9.081781, 47.552826, -12.5), (-8.415136, 47.552826, -12.958173), (-7.725425, 47.552826, -13.380828), (-7.014539, 47.552826, -13.766808), (-6.2844267, 47.552826, -14.115053), (-5.5370893, 47.552826, -14.424611), (-4.774575, 47.552826, -14.694632), (-3.998974, 47.552826, -14.924375), (-3.2124124, 47.552826, -15.113212), (-2.4170454, 47.552826, -15.260624), (-1.6150535, 47.552826, -15.366208), (-0.808635, 47.552826, -15.429675), (-2.838275e-15, 47.552826, -15.45085), (0.808635, 47.552826, -15.429675), (1.6150535, 47.552826, -15.366208), (2.4170454, 47.552826, -15.260624), (3.2124124, 47.552826, -15.113212), (3.998974, 47.552826, -14.924375), (4.774575, 47.552826, -14.694632), (5.5370893, 47.552826, -14.424611), (6.2844267, 47.552826, -14.115053), (7.014539, 47.552826, -13.766808), (7.725425, 47.552826, -13.380828), (8.415136, 47.552826, -12.958173), (9.081781, 47.552826, -12.5), (9.723535, 47.552826, -12.0075655), (10.338636, 47.552826, -11.482219), (10.925401, 47.552826, -10.925401), (11.482219, 47.552826, -10.338636), (12.0075655, 47.552826, -9.723535), (12.5, 47.552826, -9.081781), (12.958173, 47.552826, -8.415136), (13.380828, 47.552826, -7.725425), (13.766808, 47.552826, -7.014539), (14.115053, 47.552826, -6.2844267), (14.424611, 47.552826, -5.5370893), (14.694632, 47.552826, -4.774575), (14.924375, 47.552826, -3.998974), (15.113212, 47.552826, -3.2124124), (15.260624, 47.552826, -2.4170454), (15.366208, 47.552826, -1.6150535), (15.429675, 47.552826, -0.808635), (12.940952, 48.29629, 0), (12.923217, 48.29629, 0.6772771), (12.87006, 48.29629, 1.3526978), (12.781628, 48.29629, 2.024411), (12.658161, 48.29629, 2.6905754), (12.5, 48.29629, 3.349365), (12.307577, 48.29629, 3.998974), (12.08142, 48.29629, 4.6376224), (11.822148, 48.29629, 5.2635593), (11.530473, 48.29629, 5.8750696), (11.207193, 48.29629, 6.470476), (10.853196, 48.29629, 7.0481477), (10.46945, 48.29629, 7.606501), (10.057009, 48.29629, 8.144005), (9.617002, 48.29629, 8.659187), (9.150635, 48.29629, 9.150635), (8.659187, 48.29629, 9.617002), (8.144005, 48.29629, 10.057009), (7.606501, 48.29629, 10.46945), (7.0481477, 48.29629, 10.853196), (6.470476, 48.29629, 11.207193), (5.8750696, 48.29629, 11.530473), (5.2635593, 48.29629, 11.822148), (4.6376224, 48.29629, 12.08142), (3.998974, 48.29629, 12.307577), (3.349365, 48.29629, 12.5), (2.6905754, 48.29629, 12.658161), (2.024411, 48.29629, 12.781628), (1.3526978, 48.29629, 12.87006), (0.6772771, 48.29629, 12.923217), (7.924048e-16, 48.29629, 12.940952), (-0.6772771, 48.29629, 12.923217), (-1.3526978, 48.29629, 12.87006), (-2.024411, 48.29629, 12.781628), (-2.6905754, 48.29629, 12.658161), (-3.349365, 48.29629, 12.5), (-3.998974, 48.29629, 12.307577), (-4.6376224, 48.29629, 12.08142), (-5.2635593, 48.29629, 11.822148), (-5.8750696, 48.29629, 11.530473), (-6.470476, 48.29629, 11.207193), (-7.0481477, 48.29629, 10.853196), (-7.606501, 48.29629, 10.46945), (-8.144005, 48.29629, 10.057009), (-8.659187, 48.29629, 9.617002), (-9.150635, 48.29629, 9.150635), (-9.617002, 48.29629, 8.659187), (-10.057009, 48.29629, 8.144005), (-10.46945, 48.29629, 7.606501), (-10.853196, 48.29629, 7.0481477), (-11.207193, 48.29629, 6.470476), (-11.530473, 48.29629, 5.8750696), (-11.822148, 48.29629, 5.2635593), (-12.08142, 48.29629, 4.6376224), (-12.307577, 48.29629, 3.998974), (-12.5, 48.29629, 3.349365), (-12.658161, 48.29629, 2.6905754), (-12.781628, 48.29629, 2.024411), (-12.87006, 48.29629, 1.3526978), (-12.923217, 48.29629, 0.6772771), (-12.940952, 48.29629, 1.5848095e-15), (-12.923217, 48.29629, -0.6772771), (-12.87006, 48.29629, -1.3526978), (-12.781628, 48.29629, -2.024411), (-12.658161, 48.29629, -2.6905754), (-12.5, 48.29629, -3.349365), (-12.307577, 48.29629, -3.998974), (-12.08142, 48.29629, -4.6376224), (-11.822148, 48.29629, -5.2635593), (-11.530473, 48.29629, -5.8750696), (-11.207193, 48.29629, -6.470476), (-10.853196, 48.29629, -7.0481477), (-10.46945, 48.29629, -7.606501), (-10.057009, 48.29629, -8.144005), (-9.617002, 48.29629, -8.659187), (-9.150635, 48.29629, -9.150635), (-8.659187, 48.29629, -9.617002), (-8.144005, 48.29629, -10.057009), (-7.606501, 48.29629, -10.46945), (-7.0481477, 48.29629, -10.853196), (-6.470476, 48.29629, -11.207193), (-5.8750696, 48.29629, -11.530473), (-5.2635593, 48.29629, -11.822148), (-4.6376224, 48.29629, -12.08142), (-3.998974, 48.29629, -12.307577), (-3.349365, 48.29629, -12.5), (-2.6905754, 48.29629, -12.658161), (-2.024411, 48.29629, -12.781628), (-1.3526978, 48.29629, -12.87006), (-0.6772771, 48.29629, -12.923217), (-2.3772143e-15, 48.29629, -12.940952), (0.6772771, 48.29629, -12.923217), (1.3526978, 48.29629, -12.87006), (2.024411, 48.29629, -12.781628), (2.6905754, 48.29629, -12.658161), (3.349365, 48.29629, -12.5), (3.998974, 48.29629, -12.307577), (4.6376224, 48.29629, -12.08142), (5.2635593, 48.29629, -11.822148), (5.8750696, 48.29629, -11.530473), (6.470476, 48.29629, -11.207193), (7.0481477, 48.29629, -10.853196), (7.606501, 48.29629, -10.46945), (8.144005, 48.29629, -10.057009), (8.659187, 48.29629, -9.617002), (9.150635, 48.29629, -9.150635), (9.617002, 48.29629, -8.659187), (10.057009, 48.29629, -8.144005), (10.46945, 48.29629, -7.606501), (10.853196, 48.29629, -7.0481477), (11.207193, 48.29629, -6.470476), (11.530473, 48.29629, -5.8750696), (11.822148, 48.29629, -5.2635593), (12.08142, 48.29629, -4.6376224), (12.307577, 48.29629, -3.998974), (12.5, 48.29629, -3.349365), (12.658161, 48.29629, -2.6905754), (12.781628, 48.29629, -2.024411), (12.87006, 48.29629, -1.3526978), (12.923217, 48.29629, -0.6772771), (10.395584, 48.90738, 0), (10.381338, 48.90738, 0.54406285), (10.338636, 48.90738, 1.0866345), (10.267597, 48.90738, 1.6262277), (10.168416, 48.90738, 2.1613636), (10.041364, 48.90738, 2.6905754), (9.886788, 48.90738, 3.2124124), (9.705114, 48.90738, 3.7254443), (9.496839, 48.90738, 4.2282653), (9.262533, 48.90738, 4.7194967), (9.00284, 48.90738, 5.197792), (8.718471, 48.90738, 5.661841), (8.410205, 48.90738, 6.110371), (8.078887, 48.90738, 6.5421534), (7.725425, 48.90738, 6.9560037), (7.350788, 48.90738, 7.350788), (6.9560037, 48.90738, 7.725425), (6.5421534, 48.90738, 8.078887), (6.110371, 48.90738, 8.410205), (5.661841, 48.90738, 8.718471), (5.197792, 48.90738, 9.00284), (4.7194967, 48.90738, 9.262533), (4.2282653, 48.90738, 9.496839), (3.7254443, 48.90738, 9.705114), (3.2124124, 48.90738, 9.886788), (2.6905754, 48.90738, 10.041364), (2.1613636, 48.90738, 10.168416), (1.6262277, 48.90738, 10.267597), (1.0866345, 48.90738, 10.338636), (0.54406285, 48.90738, 10.381338), (6.3654595e-16, 48.90738, 10.395584), (-0.54406285, 48.90738, 10.381338), (-1.0866345, 48.90738, 10.338636), (-1.6262277, 48.90738, 10.267597), (-2.1613636, 48.90738, 10.168416), (-2.6905754, 48.90738, 10.041364), (-3.2124124, 48.90738, 9.886788), (-3.7254443, 48.90738, 9.705114), (-4.2282653, 48.90738, 9.496839), (-4.7194967, 48.90738, 9.262533), (-5.197792, 48.90738, 9.00284), (-5.661841, 48.90738, 8.718471), (-6.110371, 48.90738, 8.410205), (-6.5421534, 48.90738, 8.078887), (-6.9560037, 48.90738, 7.725425), (-7.350788, 48.90738, 7.350788), (-7.725425, 48.90738, 6.9560037), (-8.078887, 48.90738, 6.5421534), (-8.410205, 48.90738, 6.110371), (-8.718471, 48.90738, 5.661841), (-9.00284, 48.90738, 5.197792), (-9.262533, 48.90738, 4.7194967), (-9.496839, 48.90738, 4.2282653), (-9.705114, 48.90738, 3.7254443), (-9.886788, 48.90738, 3.2124124), (-10.041364, 48.90738, 2.6905754), (-10.168416, 48.90738, 2.1613636), (-10.267597, 48.90738, 1.6262277), (-10.338636, 48.90738, 1.0866345), (-10.381338, 48.90738, 0.54406285), (-10.395584, 48.90738, 1.2730919e-15), (-10.381338, 48.90738, -0.54406285), (-10.338636, 48.90738, -1.0866345), (-10.267597, 48.90738, -1.6262277), (-10.168416, 48.90738, -2.1613636), (-10.041364, 48.90738, -2.6905754), (-9.886788, 48.90738, -3.2124124), (-9.705114, 48.90738, -3.7254443), (-9.496839, 48.90738, -4.2282653), (-9.262533, 48.90738, -4.7194967), (-9.00284, 48.90738, -5.197792), (-8.718471, 48.90738, -5.661841), (-8.410205, 48.90738, -6.110371), (-8.078887, 48.90738, -6.5421534), (-7.725425, 48.90738, -6.9560037), (-7.350788, 48.90738, -7.350788), (-6.9560037, 48.90738, -7.725425), (-6.5421534, 48.90738, -8.078887), (-6.110371, 48.90738, -8.410205), (-5.661841, 48.90738, -8.718471), (-5.197792, 48.90738, -9.00284), (-4.7194967, 48.90738, -9.262533), (-4.2282653, 48.90738, -9.496839), (-3.7254443, 48.90738, -9.705114), (-3.2124124, 48.90738, -9.886788), (-2.6905754, 48.90738, -10.041364), (-2.1613636, 48.90738, -10.168416), (-1.6262277, 48.90738, -10.267597), (-1.0866345, 48.90738, -10.338636), (-0.54406285, 48.90738, -10.381338), (-1.909638e-15, 48.90738, -10.395584), (0.54406285, 48.90738, -10.381338), (1.0866345, 48.90738, -10.338636), (1.6262277, 48.90738, -10.267597), (2.1613636, 48.90738, -10.168416), (2.6905754, 48.90738, -10.041364), (3.2124124, 48.90738, -9.886788), (3.7254443, 48.90738, -9.705114), (4.2282653, 48.90738, -9.496839), (4.7194967, 48.90738, -9.262533), (5.197792, 48.90738, -9.00284), (5.661841, 48.90738, -8.718471), (6.110371, 48.90738, -8.410205), (6.5421534, 48.90738, -8.078887), (6.9560037, 48.90738, -7.725425), (7.350788, 48.90738, -7.350788), (7.725425, 48.90738, -6.9560037), (8.078887, 48.90738, -6.5421534), (8.410205, 48.90738, -6.110371), (8.718471, 48.90738, -5.661841), (9.00284, 48.90738, -5.197792), (9.262533, 48.90738, -4.7194967), (9.496839, 48.90738, -4.2282653), (9.705114, 48.90738, -3.7254443), (9.886788, 48.90738, -3.2124124), (10.041364, 48.90738, -2.6905754), (10.168416, 48.90738, -2.1613636), (10.267597, 48.90738, -1.6262277), (10.338636, 48.90738, -1.0866345), (10.381338, 48.90738, -0.54406285), (7.8217235, 49.38442, 0), (7.8110037, 49.38442, 0.40935737), (7.778875, 49.38442, 0.81759274), (7.725425, 49.38442, 1.223587), (7.6507998, 49.38442, 1.6262277), (7.5552044, 49.38442, 2.024411), (7.438901, 49.38442, 2.4170454), (7.302208, 49.38442, 2.8030548), (7.1454997, 49.38442, 3.1813815), (6.9692063, 49.38442, 3.550988), (6.773811, 49.38442, 3.9108617), (6.5598493, 49.38442, 4.260016), (6.327907, 49.38442, 4.5974936), (6.0786204, 49.38442, 4.92237), (5.812673, 49.38442, 5.2337546), (5.5307937, 49.38442, 5.5307937), (5.2337546, 49.38442, 5.812673), (4.92237, 49.38442, 6.0786204), (4.5974936, 49.38442, 6.327907), (4.260016, 49.38442, 6.5598493), (3.9108617, 49.38442, 6.773811), (3.550988, 49.38442, 6.9692063), (3.1813815, 49.38442, 7.1454997), (2.8030548, 49.38442, 7.302208), (2.4170454, 49.38442, 7.438901), (2.024411, 49.38442, 7.5552044), (1.6262277, 49.38442, 7.6507998), (1.223587, 49.38442, 7.725425), (0.81759274, 49.38442, 7.778875), (0.40935737, 49.38442, 7.8110037), (4.789424e-16, 49.38442, 7.8217235), (-0.40935737, 49.38442, 7.8110037), (-0.81759274, 49.38442, 7.778875), (-1.223587, 49.38442, 7.725425), (-1.6262277, 49.38442, 7.6507998), (-2.024411, 49.38442, 7.5552044), (-2.4170454, 49.38442, 7.438901), (-2.8030548, 49.38442, 7.302208), (-3.1813815, 49.38442, 7.1454997), (-3.550988, 49.38442, 6.9692063), (-3.9108617, 49.38442, 6.773811), (-4.260016, 49.38442, 6.5598493), (-4.5974936, 49.38442, 6.327907), (-4.92237, 49.38442, 6.0786204), (-5.2337546, 49.38442, 5.812673), (-5.5307937, 49.38442, 5.5307937), (-5.812673, 49.38442, 5.2337546), (-6.0786204, 49.38442, 4.92237), (-6.327907, 49.38442, 4.5974936), (-6.5598493, 49.38442, 4.260016), (-6.773811, 49.38442, 3.9108617), (-6.9692063, 49.38442, 3.550988), (-7.1454997, 49.38442, 3.1813815), (-7.302208, 49.38442, 2.8030548), (-7.438901, 49.38442, 2.4170454), (-7.5552044, 49.38442, 2.024411), (-7.6507998, 49.38442, 1.6262277), (-7.725425, 49.38442, 1.223587), (-7.778875, 49.38442, 0.81759274), (-7.8110037, 49.38442, 0.40935737), (-7.8217235, 49.38442, 9.578848e-16), (-7.8110037, 49.38442, -0.40935737), (-7.778875, 49.38442, -0.81759274), (-7.725425, 49.38442, -1.223587), (-7.6507998, 49.38442, -1.6262277), (-7.5552044, 49.38442, -2.024411), (-7.438901, 49.38442, -2.4170454), (-7.302208, 49.38442, -2.8030548), (-7.1454997, 49.38442, -3.1813815), (-6.9692063, 49.38442, -3.550988), (-6.773811, 49.38442, -3.9108617), (-6.5598493, 49.38442, -4.260016), (-6.327907, 49.38442, -4.5974936), (-6.0786204, 49.38442, -4.92237), (-5.812673, 49.38442, -5.2337546), (-5.5307937, 49.38442, -5.5307937), (-5.2337546, 49.38442, -5.812673), (-4.92237, 49.38442, -6.0786204), (-4.5974936, 49.38442, -6.327907), (-4.260016, 49.38442, -6.5598493), (-3.9108617, 49.38442, -6.773811), (-3.550988, 49.38442, -6.9692063), (-3.1813815, 49.38442, -7.1454997), (-2.8030548, 49.38442, -7.302208), (-2.4170454, 49.38442, -7.438901), (-2.024411, 49.38442, -7.5552044), (-1.6262277, 49.38442, -7.6507998), (-1.223587, 49.38442, -7.725425), (-0.81759274, 49.38442, -7.778875), (-0.40935737, 49.38442, -7.8110037), (-1.4368273e-15, 49.38442, -7.8217235), (0.40935737, 49.38442, -7.8110037), (0.81759274, 49.38442, -7.778875), (1.223587, 49.38442, -7.725425), (1.6262277, 49.38442, -7.6507998), (2.024411, 49.38442, -7.5552044), (2.4170454, 49.38442, -7.438901), (2.8030548, 49.38442, -7.302208), (3.1813815, 49.38442, -7.1454997), (3.550988, 49.38442, -6.9692063), (3.9108617, 49.38442, -6.773811), (4.260016, 49.38442, -6.5598493), (4.5974936, 49.38442, -6.327907), (4.92237, 49.38442, -6.0786204), (5.2337546, 49.38442, -5.812673), (5.5307937, 49.38442, -5.5307937), (5.812673, 49.38442, -5.2337546), (6.0786204, 49.38442, -4.92237), (6.327907, 49.38442, -4.5974936), (6.5598493, 49.38442, -4.260016), (6.773811, 49.38442, -3.9108617), (6.9692063, 49.38442, -3.550988), (7.1454997, 49.38442, -3.1813815), (7.302208, 49.38442, -2.8030548), (7.438901, 49.38442, -2.4170454), (7.5552044, 49.38442, -2.024411), (7.6507998, 49.38442, -1.6262277), (7.725425, 49.38442, -1.223587), (7.778875, 49.38442, -0.81759274), (7.8110037, 49.38442, -0.40935737), (5.2264233, 49.726093, 0), (5.2192607, 49.726093, 0.27352986), (5.197792, 49.726093, 0.54631), (5.1620774, 49.726093, 0.81759274), (5.112213, 49.726093, 1.0866345), (5.048337, 49.726093, 1.3526978), (4.970624, 49.726093, 1.6150535), (4.8792863, 49.726093, 1.8729825), (4.774575, 49.726093, 2.1257777), (4.656777, 49.726093, 2.3727465), (4.526215, 49.726093, 2.6132116), (4.3832474, 49.726093, 2.846514), (4.2282653, 49.726093, 3.0720146), (4.0616937, 49.726093, 3.2890947), (3.8839893, 49.726093, 3.4971597), (3.6956394, 49.726093, 3.6956394), (3.4971597, 49.726093, 3.8839893), (3.2890947, 49.726093, 4.0616937), (3.0720146, 49.726093, 4.2282653), (2.846514, 49.726093, 4.3832474), (2.6132116, 49.726093, 4.526215), (2.3727465, 49.726093, 4.656777), (2.1257777, 49.726093, 4.774575), (1.8729825, 49.726093, 4.8792863), (1.6150535, 49.726093, 4.970624), (1.3526978, 49.726093, 5.048337), (1.0866345, 49.726093, 5.112213), (0.81759274, 49.726093, 5.1620774), (0.54631, 49.726093, 5.197792), (0.27352986, 49.726093, 5.2192607), (3.2002612e-16, 49.726093, 5.2264233), (-0.27352986, 49.726093, 5.2192607), (-0.54631, 49.726093, 5.197792), (-0.81759274, 49.726093, 5.1620774), (-1.0866345, 49.726093, 5.112213), (-1.3526978, 49.726093, 5.048337), (-1.6150535, 49.726093, 4.970624), (-1.8729825, 49.726093, 4.8792863), (-2.1257777, 49.726093, 4.774575), (-2.3727465, 49.726093, 4.656777), (-2.6132116, 49.726093, 4.526215), (-2.846514, 49.726093, 4.3832474), (-3.0720146, 49.726093, 4.2282653), (-3.2890947, 49.726093, 4.0616937), (-3.4971597, 49.726093, 3.8839893), (-3.6956394, 49.726093, 3.6956394), (-3.8839893, 49.726093, 3.4971597), (-4.0616937, 49.726093, 3.2890947), (-4.2282653, 49.726093, 3.0720146), (-4.3832474, 49.726093, 2.846514), (-4.526215, 49.726093, 2.6132116), (-4.656777, 49.726093, 2.3727465), (-4.774575, 49.726093, 2.1257777), (-4.8792863, 49.726093, 1.8729825), (-4.970624, 49.726093, 1.6150535), (-5.048337, 49.726093, 1.3526978), (-5.112213, 49.726093, 1.0866345), (-5.1620774, 49.726093, 0.81759274), (-5.197792, 49.726093, 0.54631), (-5.2192607, 49.726093, 0.27352986), (-5.2264233, 49.726093, 6.4005224e-16), (-5.2192607, 49.726093, -0.27352986), (-5.197792, 49.726093, -0.54631), (-5.1620774, 49.726093, -0.81759274), (-5.112213, 49.726093, -1.0866345), (-5.048337, 49.726093, -1.3526978), (-4.970624, 49.726093, -1.6150535), (-4.8792863, 49.726093, -1.8729825), (-4.774575, 49.726093, -2.1257777), (-4.656777, 49.726093, -2.3727465), (-4.526215, 49.726093, -2.6132116), (-4.3832474, 49.726093, -2.846514), (-4.2282653, 49.726093, -3.0720146), (-4.0616937, 49.726093, -3.2890947), (-3.8839893, 49.726093, -3.4971597), (-3.6956394, 49.726093, -3.6956394), (-3.4971597, 49.726093, -3.8839893), (-3.2890947, 49.726093, -4.0616937), (-3.0720146, 49.726093, -4.2282653), (-2.846514, 49.726093, -4.3832474), (-2.6132116, 49.726093, -4.526215), (-2.3727465, 49.726093, -4.656777), (-2.1257777, 49.726093, -4.774575), (-1.8729825, 49.726093, -4.8792863), (-1.6150535, 49.726093, -4.970624), (-1.3526978, 49.726093, -5.048337), (-1.0866345, 49.726093, -5.112213), (-0.81759274, 49.726093, -5.1620774), (-0.54631, 49.726093, -5.197792), (-0.27352986, 49.726093, -5.2192607), (-9.600784e-16, 49.726093, -5.2264233), (0.27352986, 49.726093, -5.2192607), (0.54631, 49.726093, -5.197792), (0.81759274, 49.726093, -5.1620774), (1.0866345, 49.726093, -5.112213), (1.3526978, 49.726093, -5.048337), (1.6150535, 49.726093, -4.970624), (1.8729825, 49.726093, -4.8792863), (2.1257777, 49.726093, -4.774575), (2.3727465, 49.726093, -4.656777), (2.6132116, 49.726093, -4.526215), (2.846514, 49.726093, -4.3832474), (3.0720146, 49.726093, -4.2282653), (3.2890947, 49.726093, -4.0616937), (3.4971597, 49.726093, -3.8839893), (3.6956394, 49.726093, -3.6956394), (3.8839893, 49.726093, -3.4971597), (4.0616937, 49.726093, -3.2890947), (4.2282653, 49.726093, -3.0720146), (4.3832474, 49.726093, -2.846514), (4.526215, 49.726093, -2.6132116), (4.656777, 49.726093, -2.3727465), (4.774575, 49.726093, -2.1257777), (4.8792863, 49.726093, -1.8729825), (4.970624, 49.726093, -1.6150535), (5.048337, 49.726093, -1.3526978), (5.112213, 49.726093, -1.0866345), (5.1620774, 49.726093, -0.81759274), (5.197792, 49.726093, -0.54631), (5.2192607, 49.726093, -0.27352986), (2.616798, 49.931477, 0), (2.6132116, 49.931477, 0.13695261), (2.6024628, 49.931477, 0.27352986), (2.5845807, 49.931477, 0.40935737), (2.5596144, 49.931477, 0.54406285), (2.5276325, 49.931477, 0.6772771), (2.4887226, 49.931477, 0.808635), (2.4429913, 49.931477, 0.93777645), (2.3905637, 49.931477, 1.0643475), (2.331584, 49.931477, 1.1880014), (2.2662134, 49.931477, 1.308399), (2.1946313, 49.931477, 1.4252102), (2.117034, 49.931477, 1.5381151), (2.033634, 49.931477, 1.6468042), (1.9446597, 49.931477, 1.7509795), (1.8503555, 49.931477, 1.8503555), (1.7509795, 49.931477, 1.9446597), (1.6468042, 49.931477, 2.033634), (1.5381151, 49.931477, 2.117034), (1.4252102, 49.931477, 2.1946313), (1.308399, 49.931477, 2.2662134), (1.1880014, 49.931477, 2.331584), (1.0643475, 49.931477, 2.3905637), (0.93777645, 49.931477, 2.4429913), (0.808635, 49.931477, 2.4887226), (0.6772771, 49.931477, 2.5276325), (0.54406285, 49.931477, 2.5596144), (0.40935737, 49.931477, 2.5845807), (0.27352986, 49.931477, 2.6024628), (0.13695261, 49.931477, 2.6132116), (1.6023265e-16, 49.931477, 2.616798), (-0.13695261, 49.931477, 2.6132116), (-0.27352986, 49.931477, 2.6024628), (-0.40935737, 49.931477, 2.5845807), (-0.54406285, 49.931477, 2.5596144), (-0.6772771, 49.931477, 2.5276325), (-0.808635, 49.931477, 2.4887226), (-0.93777645, 49.931477, 2.4429913), (-1.0643475, 49.931477, 2.3905637), (-1.1880014, 49.931477, 2.331584), (-1.308399, 49.931477, 2.2662134), (-1.4252102, 49.931477, 2.1946313), (-1.5381151, 49.931477, 2.117034), (-1.6468042, 49.931477, 2.033634), (-1.7509795, 49.931477, 1.9446597), (-1.8503555, 49.931477, 1.8503555), (-1.9446597, 49.931477, 1.7509795), (-2.033634, 49.931477, 1.6468042), (-2.117034, 49.931477, 1.5381151), (-2.1946313, 49.931477, 1.4252102), (-2.2662134, 49.931477, 1.308399), (-2.331584, 49.931477, 1.1880014), (-2.3905637, 49.931477, 1.0643475), (-2.4429913, 49.931477, 0.93777645), (-2.4887226, 49.931477, 0.808635), (-2.5276325, 49.931477, 0.6772771), (-2.5596144, 49.931477, 0.54406285), (-2.5845807, 49.931477, 0.40935737), (-2.6024628, 49.931477, 0.27352986), (-2.6132116, 49.931477, 0.13695261), (-2.616798, 49.931477, 3.204653e-16), (-2.6132116, 49.931477, -0.13695261), (-2.6024628, 49.931477, -0.27352986), (-2.5845807, 49.931477, -0.40935737), (-2.5596144, 49.931477, -0.54406285), (-2.5276325, 49.931477, -0.6772771), (-2.4887226, 49.931477, -0.808635), (-2.4429913, 49.931477, -0.93777645), (-2.3905637, 49.931477, -1.0643475), (-2.331584, 49.931477, -1.1880014), (-2.2662134, 49.931477, -1.308399), (-2.1946313, 49.931477, -1.4252102), (-2.117034, 49.931477, -1.5381151), (-2.033634, 49.931477, -1.6468042), (-1.9446597, 49.931477, -1.7509795), (-1.8503555, 49.931477, -1.8503555), (-1.7509795, 49.931477, -1.9446597), (-1.6468042, 49.931477, -2.033634), (-1.5381151, 49.931477, -2.117034), (-1.4252102, 49.931477, -2.1946313), (-1.308399, 49.931477, -2.2662134), (-1.1880014, 49.931477, -2.331584), (-1.0643475, 49.931477, -2.3905637), (-0.93777645, 49.931477, -2.4429913), (-0.808635, 49.931477, -2.4887226), (-0.6772771, 49.931477, -2.5276325), (-0.54406285, 49.931477, -2.5596144), (-0.40935737, 49.931477, -2.5845807), (-0.27352986, 49.931477, -2.6024628), (-0.13695261, 49.931477, -2.6132116), (-4.80698e-16, 49.931477, -2.616798), (0.13695261, 49.931477, -2.6132116), (0.27352986, 49.931477, -2.6024628), (0.40935737, 49.931477, -2.5845807), (0.54406285, 49.931477, -2.5596144), (0.6772771, 49.931477, -2.5276325), (0.808635, 49.931477, -2.4887226), (0.93777645, 49.931477, -2.4429913), (1.0643475, 49.931477, -2.3905637), (1.1880014, 49.931477, -2.331584), (1.308399, 49.931477, -2.2662134), (1.4252102, 49.931477, -2.1946313), (1.5381151, 49.931477, -2.117034), (1.6468042, 49.931477, -2.033634), (1.7509795, 49.931477, -1.9446597), (1.8503555, 49.931477, -1.8503555), (1.9446597, 49.931477, -1.7509795), (2.033634, 49.931477, -1.6468042), (2.117034, 49.931477, -1.5381151), (2.1946313, 49.931477, -1.4252102), (2.2662134, 49.931477, -1.308399), (2.331584, 49.931477, -1.1880014), (2.3905637, 49.931477, -1.0643475), (2.4429913, 49.931477, -0.93777645), (2.4887226, 49.931477, -0.808635), (2.5276325, 49.931477, -0.6772771), (2.5596144, 49.931477, -0.54406285), (2.5845807, 49.931477, -0.40935737), (2.6024628, 49.931477, -0.27352986), (2.6132116, 49.931477, -0.13695261), (0, 50, 0)] float2[] primvars:st = [(0.5, 0), (1, 0.016666668), (0.9916667, 0.016666668), (0.5, 0), (0.9916667, 0.016666668), (0.98333335, 0.016666668), (0.5, 0), (0.98333335, 0.016666668), (0.975, 0.016666668), (0.5, 0), (0.975, 0.016666668), (0.96666664, 0.016666668), (0.5, 0), (0.96666664, 0.016666668), (0.9583333, 0.016666668), (0.5, 0), (0.9583333, 0.016666668), (0.95, 0.016666668), (0.5, 0), (0.95, 0.016666668), (0.94166666, 0.016666668), (0.5, 0), (0.94166666, 0.016666668), (0.93333334, 0.016666668), (0.5, 0), (0.93333334, 0.016666668), (0.925, 0.016666668), (0.5, 0), (0.925, 0.016666668), (0.9166667, 0.016666668), (0.5, 0), (0.9166667, 0.016666668), (0.90833336, 0.016666668), (0.5, 0), (0.90833336, 0.016666668), (0.9, 0.016666668), (0.5, 0), (0.9, 0.016666668), (0.89166665, 0.016666668), (0.5, 0), (0.89166665, 0.016666668), (0.8833333, 0.016666668), (0.5, 0), (0.8833333, 0.016666668), (0.875, 0.016666668), (0.5, 0), (0.875, 0.016666668), (0.8666667, 0.016666668), (0.5, 0), (0.8666667, 0.016666668), (0.85833335, 0.016666668), (0.5, 0), (0.85833335, 0.016666668), (0.85, 0.016666668), (0.5, 0), (0.85, 0.016666668), (0.84166664, 0.016666668), (0.5, 0), (0.84166664, 0.016666668), (0.8333333, 0.016666668), (0.5, 0), (0.8333333, 0.016666668), (0.825, 0.016666668), (0.5, 0), (0.825, 0.016666668), (0.81666666, 0.016666668), (0.5, 0), (0.81666666, 0.016666668), (0.80833334, 0.016666668), (0.5, 0), (0.80833334, 0.016666668), (0.8, 0.016666668), (0.5, 0), (0.8, 0.016666668), (0.7916667, 0.016666668), (0.5, 0), (0.7916667, 0.016666668), (0.78333336, 0.016666668), (0.5, 0), (0.78333336, 0.016666668), (0.775, 0.016666668), (0.5, 0), (0.775, 0.016666668), (0.76666665, 0.016666668), (0.5, 0), (0.76666665, 0.016666668), (0.7583333, 0.016666668), (0.5, 0), (0.7583333, 0.016666668), (0.75, 0.016666668), (0.5, 0), (0.75, 0.016666668), (0.7416667, 0.016666668), (0.5, 0), (0.7416667, 0.016666668), (0.73333335, 0.016666668), (0.5, 0), (0.73333335, 0.016666668), (0.725, 0.016666668), (0.5, 0), (0.725, 0.016666668), (0.71666664, 0.016666668), (0.5, 0), (0.71666664, 0.016666668), (0.7083333, 0.016666668), (0.5, 0), (0.7083333, 0.016666668), (0.7, 0.016666668), (0.5, 0), (0.7, 0.016666668), (0.69166666, 0.016666668), (0.5, 0), (0.69166666, 0.016666668), (0.68333334, 0.016666668), (0.5, 0), (0.68333334, 0.016666668), (0.675, 0.016666668), (0.5, 0), (0.675, 0.016666668), (0.6666667, 0.016666668), (0.5, 0), (0.6666667, 0.016666668), (0.65833336, 0.016666668), (0.5, 0), (0.65833336, 0.016666668), (0.65, 0.016666668), (0.5, 0), (0.65, 0.016666668), (0.64166665, 0.016666668), (0.5, 0), (0.64166665, 0.016666668), (0.6333333, 0.016666668), (0.5, 0), (0.6333333, 0.016666668), (0.625, 0.016666668), (0.5, 0), (0.625, 0.016666668), (0.6166667, 0.016666668), (0.5, 0), (0.6166667, 0.016666668), (0.60833335, 0.016666668), (0.5, 0), (0.60833335, 0.016666668), (0.6, 0.016666668), (0.5, 0), (0.6, 0.016666668), (0.59166664, 0.016666668), (0.5, 0), (0.59166664, 0.016666668), (0.5833333, 0.016666668), (0.5, 0), (0.5833333, 0.016666668), (0.575, 0.016666668), (0.5, 0), (0.575, 0.016666668), (0.56666666, 0.016666668), (0.5, 0), (0.56666666, 0.016666668), (0.55833334, 0.016666668), (0.5, 0), (0.55833334, 0.016666668), (0.55, 0.016666668), (0.5, 0), (0.55, 0.016666668), (0.5416667, 0.016666668), (0.5, 0), (0.5416667, 0.016666668), (0.53333336, 0.016666668), (0.5, 0), (0.53333336, 0.016666668), (0.525, 0.016666668), (0.5, 0), (0.525, 0.016666668), (0.51666665, 0.016666668), (0.5, 0), (0.51666665, 0.016666668), (0.5083333, 0.016666668), (0.5, 0), (0.5083333, 0.016666668), (0.5, 0.016666668), (0.5, 0), (0.5, 0.016666668), (0.49166667, 0.016666668), (0.5, 0), (0.49166667, 0.016666668), (0.48333332, 0.016666668), (0.5, 0), (0.48333332, 0.016666668), (0.475, 0.016666668), (0.5, 0), (0.475, 0.016666668), (0.46666667, 0.016666668), (0.5, 0), (0.46666667, 0.016666668), (0.45833334, 0.016666668), (0.5, 0), (0.45833334, 0.016666668), (0.45, 0.016666668), (0.5, 0), (0.45, 0.016666668), (0.44166666, 0.016666668), (0.5, 0), (0.44166666, 0.016666668), (0.43333334, 0.016666668), (0.5, 0), (0.43333334, 0.016666668), (0.425, 0.016666668), (0.5, 0), (0.425, 0.016666668), (0.41666666, 0.016666668), (0.5, 0), (0.41666666, 0.016666668), (0.40833333, 0.016666668), (0.5, 0), (0.40833333, 0.016666668), (0.4, 0.016666668), (0.5, 0), (0.4, 0.016666668), (0.39166668, 0.016666668), (0.5, 0), (0.39166668, 0.016666668), (0.38333333, 0.016666668), (0.5, 0), (0.38333333, 0.016666668), (0.375, 0.016666668), (0.5, 0), (0.375, 0.016666668), (0.36666667, 0.016666668), (0.5, 0), (0.36666667, 0.016666668), (0.35833332, 0.016666668), (0.5, 0), (0.35833332, 0.016666668), (0.35, 0.016666668), (0.5, 0), (0.35, 0.016666668), (0.34166667, 0.016666668), (0.5, 0), (0.34166667, 0.016666668), (0.33333334, 0.016666668), (0.5, 0), (0.33333334, 0.016666668), (0.325, 0.016666668), (0.5, 0), (0.325, 0.016666668), (0.31666666, 0.016666668), (0.5, 0), (0.31666666, 0.016666668), (0.30833334, 0.016666668), (0.5, 0), (0.30833334, 0.016666668), (0.3, 0.016666668), (0.5, 0), (0.3, 0.016666668), (0.29166666, 0.016666668), (0.5, 0), (0.29166666, 0.016666668), (0.28333333, 0.016666668), (0.5, 0), (0.28333333, 0.016666668), (0.275, 0.016666668), (0.5, 0), (0.275, 0.016666668), (0.26666668, 0.016666668), (0.5, 0), (0.26666668, 0.016666668), (0.25833333, 0.016666668), (0.5, 0), (0.25833333, 0.016666668), (0.25, 0.016666668), (0.5, 0), (0.25, 0.016666668), (0.24166666, 0.016666668), (0.5, 0), (0.24166666, 0.016666668), (0.23333333, 0.016666668), (0.5, 0), (0.23333333, 0.016666668), (0.225, 0.016666668), (0.5, 0), (0.225, 0.016666668), (0.21666667, 0.016666668), (0.5, 0), (0.21666667, 0.016666668), (0.20833333, 0.016666668), (0.5, 0), (0.20833333, 0.016666668), (0.2, 0.016666668), (0.5, 0), (0.2, 0.016666668), (0.19166666, 0.016666668), (0.5, 0), (0.19166666, 0.016666668), (0.18333334, 0.016666668), (0.5, 0), (0.18333334, 0.016666668), (0.175, 0.016666668), (0.5, 0), (0.175, 0.016666668), (0.16666667, 0.016666668), (0.5, 0), (0.16666667, 0.016666668), (0.15833333, 0.016666668), (0.5, 0), (0.15833333, 0.016666668), (0.15, 0.016666668), (0.5, 0), (0.15, 0.016666668), (0.14166667, 0.016666668), (0.5, 0), (0.14166667, 0.016666668), (0.13333334, 0.016666668), (0.5, 0), (0.13333334, 0.016666668), (0.125, 0.016666668), (0.5, 0), (0.125, 0.016666668), (0.11666667, 0.016666668), (0.5, 0), (0.11666667, 0.016666668), (0.108333334, 0.016666668), (0.5, 0), (0.108333334, 0.016666668), (0.1, 0.016666668), (0.5, 0), (0.1, 0.016666668), (0.09166667, 0.016666668), (0.5, 0), (0.09166667, 0.016666668), (0.083333336, 0.016666668), (0.5, 0), (0.083333336, 0.016666668), (0.075, 0.016666668), (0.5, 0), (0.075, 0.016666668), (0.06666667, 0.016666668), (0.5, 0), (0.06666667, 0.016666668), (0.058333334, 0.016666668), (0.5, 0), (0.058333334, 0.016666668), (0.05, 0.016666668), (0.5, 0), (0.05, 0.016666668), (0.041666668, 0.016666668), (0.5, 0), (0.041666668, 0.016666668), (0.033333335, 0.016666668), (0.5, 0), (0.033333335, 0.016666668), (0.025, 0.016666668), (0.5, 0), (0.025, 0.016666668), (0.016666668, 0.016666668), (0.5, 0), (0.016666668, 0.016666668), (0.008333334, 0.016666668), (0.5, 0), (0.008333334, 0.016666668), (0, 0.016666668), (1, 0.016666668), (1, 0.033333335), (0.9916667, 0.033333335), (0.9916667, 0.016666668), (0.9916667, 0.016666668), (0.9916667, 0.033333335), (0.98333335, 0.033333335), (0.98333335, 0.016666668), (0.98333335, 0.016666668), (0.98333335, 0.033333335), (0.975, 0.033333335), (0.975, 0.016666668), (0.975, 0.016666668), (0.975, 0.033333335), (0.96666664, 0.033333335), (0.96666664, 0.016666668), (0.96666664, 0.016666668), (0.96666664, 0.033333335), (0.9583333, 0.033333335), (0.9583333, 0.016666668), (0.9583333, 0.016666668), (0.9583333, 0.033333335), (0.95, 0.033333335), (0.95, 0.016666668), (0.95, 0.016666668), (0.95, 0.033333335), (0.94166666, 0.033333335), (0.94166666, 0.016666668), (0.94166666, 0.016666668), (0.94166666, 0.033333335), (0.93333334, 0.033333335), (0.93333334, 0.016666668), (0.93333334, 0.016666668), (0.93333334, 0.033333335), (0.925, 0.033333335), (0.925, 0.016666668), (0.925, 0.016666668), (0.925, 0.033333335), (0.9166667, 0.033333335), (0.9166667, 0.016666668), (0.9166667, 0.016666668), (0.9166667, 0.033333335), (0.90833336, 0.033333335), (0.90833336, 0.016666668), (0.90833336, 0.016666668), (0.90833336, 0.033333335), (0.9, 0.033333335), (0.9, 0.016666668), (0.9, 0.016666668), (0.9, 0.033333335), (0.89166665, 0.033333335), (0.89166665, 0.016666668), (0.89166665, 0.016666668), (0.89166665, 0.033333335), (0.8833333, 0.033333335), (0.8833333, 0.016666668), (0.8833333, 0.016666668), (0.8833333, 0.033333335), (0.875, 0.033333335), (0.875, 0.016666668), (0.875, 0.016666668), (0.875, 0.033333335), (0.8666667, 0.033333335), (0.8666667, 0.016666668), (0.8666667, 0.016666668), (0.8666667, 0.033333335), (0.85833335, 0.033333335), (0.85833335, 0.016666668), (0.85833335, 0.016666668), (0.85833335, 0.033333335), (0.85, 0.033333335), (0.85, 0.016666668), (0.85, 0.016666668), (0.85, 0.033333335), (0.84166664, 0.033333335), (0.84166664, 0.016666668), (0.84166664, 0.016666668), (0.84166664, 0.033333335), (0.8333333, 0.033333335), (0.8333333, 0.016666668), (0.8333333, 0.016666668), (0.8333333, 0.033333335), (0.825, 0.033333335), (0.825, 0.016666668), (0.825, 0.016666668), (0.825, 0.033333335), (0.81666666, 0.033333335), (0.81666666, 0.016666668), (0.81666666, 0.016666668), (0.81666666, 0.033333335), (0.80833334, 0.033333335), (0.80833334, 0.016666668), (0.80833334, 0.016666668), (0.80833334, 0.033333335), (0.8, 0.033333335), (0.8, 0.016666668), (0.8, 0.016666668), (0.8, 0.033333335), (0.7916667, 0.033333335), (0.7916667, 0.016666668), (0.7916667, 0.016666668), (0.7916667, 0.033333335), (0.78333336, 0.033333335), (0.78333336, 0.016666668), (0.78333336, 0.016666668), (0.78333336, 0.033333335), (0.775, 0.033333335), (0.775, 0.016666668), (0.775, 0.016666668), (0.775, 0.033333335), (0.76666665, 0.033333335), (0.76666665, 0.016666668), (0.76666665, 0.016666668), (0.76666665, 0.033333335), (0.7583333, 0.033333335), (0.7583333, 0.016666668), (0.7583333, 0.016666668), (0.7583333, 0.033333335), (0.75, 0.033333335), (0.75, 0.016666668), (0.75, 0.016666668), (0.75, 0.033333335), (0.7416667, 0.033333335), (0.7416667, 0.016666668), (0.7416667, 0.016666668), (0.7416667, 0.033333335), (0.73333335, 0.033333335), (0.73333335, 0.016666668), (0.73333335, 0.016666668), (0.73333335, 0.033333335), (0.725, 0.033333335), (0.725, 0.016666668), (0.725, 0.016666668), (0.725, 0.033333335), (0.71666664, 0.033333335), (0.71666664, 0.016666668), (0.71666664, 0.016666668), (0.71666664, 0.033333335), (0.7083333, 0.033333335), (0.7083333, 0.016666668), (0.7083333, 0.016666668), (0.7083333, 0.033333335), (0.7, 0.033333335), (0.7, 0.016666668), (0.7, 0.016666668), (0.7, 0.033333335), (0.69166666, 0.033333335), (0.69166666, 0.016666668), (0.69166666, 0.016666668), (0.69166666, 0.033333335), (0.68333334, 0.033333335), (0.68333334, 0.016666668), (0.68333334, 0.016666668), (0.68333334, 0.033333335), (0.675, 0.033333335), (0.675, 0.016666668), (0.675, 0.016666668), (0.675, 0.033333335), (0.6666667, 0.033333335), (0.6666667, 0.016666668), (0.6666667, 0.016666668), (0.6666667, 0.033333335), (0.65833336, 0.033333335), (0.65833336, 0.016666668), (0.65833336, 0.016666668), (0.65833336, 0.033333335), (0.65, 0.033333335), (0.65, 0.016666668), (0.65, 0.016666668), (0.65, 0.033333335), (0.64166665, 0.033333335), (0.64166665, 0.016666668), (0.64166665, 0.016666668), (0.64166665, 0.033333335), (0.6333333, 0.033333335), (0.6333333, 0.016666668), (0.6333333, 0.016666668), (0.6333333, 0.033333335), (0.625, 0.033333335), (0.625, 0.016666668), (0.625, 0.016666668), (0.625, 0.033333335), (0.6166667, 0.033333335), (0.6166667, 0.016666668), (0.6166667, 0.016666668), (0.6166667, 0.033333335), (0.60833335, 0.033333335), (0.60833335, 0.016666668), (0.60833335, 0.016666668), (0.60833335, 0.033333335), (0.6, 0.033333335), (0.6, 0.016666668), (0.6, 0.016666668), (0.6, 0.033333335), (0.59166664, 0.033333335), (0.59166664, 0.016666668), (0.59166664, 0.016666668), (0.59166664, 0.033333335), (0.5833333, 0.033333335), (0.5833333, 0.016666668), (0.5833333, 0.016666668), (0.5833333, 0.033333335), (0.575, 0.033333335), (0.575, 0.016666668), (0.575, 0.016666668), (0.575, 0.033333335), (0.56666666, 0.033333335), (0.56666666, 0.016666668), (0.56666666, 0.016666668), (0.56666666, 0.033333335), (0.55833334, 0.033333335), (0.55833334, 0.016666668), (0.55833334, 0.016666668), (0.55833334, 0.033333335), (0.55, 0.033333335), (0.55, 0.016666668), (0.55, 0.016666668), (0.55, 0.033333335), (0.5416667, 0.033333335), (0.5416667, 0.016666668), (0.5416667, 0.016666668), (0.5416667, 0.033333335), (0.53333336, 0.033333335), (0.53333336, 0.016666668), (0.53333336, 0.016666668), (0.53333336, 0.033333335), (0.525, 0.033333335), (0.525, 0.016666668), (0.525, 0.016666668), (0.525, 0.033333335), (0.51666665, 0.033333335), (0.51666665, 0.016666668), (0.51666665, 0.016666668), (0.51666665, 0.033333335), (0.5083333, 0.033333335), (0.5083333, 0.016666668), (0.5083333, 0.016666668), (0.5083333, 0.033333335), (0.5, 0.033333335), (0.5, 0.016666668), (0.5, 0.016666668), (0.5, 0.033333335), (0.49166667, 0.033333335), (0.49166667, 0.016666668), (0.49166667, 0.016666668), (0.49166667, 0.033333335), (0.48333332, 0.033333335), (0.48333332, 0.016666668), (0.48333332, 0.016666668), (0.48333332, 0.033333335), (0.475, 0.033333335), (0.475, 0.016666668), (0.475, 0.016666668), (0.475, 0.033333335), (0.46666667, 0.033333335), (0.46666667, 0.016666668), (0.46666667, 0.016666668), (0.46666667, 0.033333335), (0.45833334, 0.033333335), (0.45833334, 0.016666668), (0.45833334, 0.016666668), (0.45833334, 0.033333335), (0.45, 0.033333335), (0.45, 0.016666668), (0.45, 0.016666668), (0.45, 0.033333335), (0.44166666, 0.033333335), (0.44166666, 0.016666668), (0.44166666, 0.016666668), (0.44166666, 0.033333335), (0.43333334, 0.033333335), (0.43333334, 0.016666668), (0.43333334, 0.016666668), (0.43333334, 0.033333335), (0.425, 0.033333335), (0.425, 0.016666668), (0.425, 0.016666668), (0.425, 0.033333335), (0.41666666, 0.033333335), (0.41666666, 0.016666668), (0.41666666, 0.016666668), (0.41666666, 0.033333335), (0.40833333, 0.033333335), (0.40833333, 0.016666668), (0.40833333, 0.016666668), (0.40833333, 0.033333335), (0.4, 0.033333335), (0.4, 0.016666668), (0.4, 0.016666668), (0.4, 0.033333335), (0.39166668, 0.033333335), (0.39166668, 0.016666668), (0.39166668, 0.016666668), (0.39166668, 0.033333335), (0.38333333, 0.033333335), (0.38333333, 0.016666668), (0.38333333, 0.016666668), (0.38333333, 0.033333335), (0.375, 0.033333335), (0.375, 0.016666668), (0.375, 0.016666668), (0.375, 0.033333335), (0.36666667, 0.033333335), (0.36666667, 0.016666668), (0.36666667, 0.016666668), (0.36666667, 0.033333335), (0.35833332, 0.033333335), (0.35833332, 0.016666668), (0.35833332, 0.016666668), (0.35833332, 0.033333335), (0.35, 0.033333335), (0.35, 0.016666668), (0.35, 0.016666668), (0.35, 0.033333335), (0.34166667, 0.033333335), (0.34166667, 0.016666668), (0.34166667, 0.016666668), (0.34166667, 0.033333335), (0.33333334, 0.033333335), (0.33333334, 0.016666668), (0.33333334, 0.016666668), (0.33333334, 0.033333335), (0.325, 0.033333335), (0.325, 0.016666668), (0.325, 0.016666668), (0.325, 0.033333335), (0.31666666, 0.033333335), (0.31666666, 0.016666668), (0.31666666, 0.016666668), (0.31666666, 0.033333335), (0.30833334, 0.033333335), (0.30833334, 0.016666668), (0.30833334, 0.016666668), (0.30833334, 0.033333335), (0.3, 0.033333335), (0.3, 0.016666668), (0.3, 0.016666668), (0.3, 0.033333335), (0.29166666, 0.033333335), (0.29166666, 0.016666668), (0.29166666, 0.016666668), (0.29166666, 0.033333335), (0.28333333, 0.033333335), (0.28333333, 0.016666668), (0.28333333, 0.016666668), (0.28333333, 0.033333335), (0.275, 0.033333335), (0.275, 0.016666668), (0.275, 0.016666668), (0.275, 0.033333335), (0.26666668, 0.033333335), (0.26666668, 0.016666668), (0.26666668, 0.016666668), (0.26666668, 0.033333335), (0.25833333, 0.033333335), (0.25833333, 0.016666668), (0.25833333, 0.016666668), (0.25833333, 0.033333335), (0.25, 0.033333335), (0.25, 0.016666668), (0.25, 0.016666668), (0.25, 0.033333335), (0.24166666, 0.033333335), (0.24166666, 0.016666668), (0.24166666, 0.016666668), (0.24166666, 0.033333335), (0.23333333, 0.033333335), (0.23333333, 0.016666668), (0.23333333, 0.016666668), (0.23333333, 0.033333335), (0.225, 0.033333335), (0.225, 0.016666668), (0.225, 0.016666668), (0.225, 0.033333335), (0.21666667, 0.033333335), (0.21666667, 0.016666668), (0.21666667, 0.016666668), (0.21666667, 0.033333335), (0.20833333, 0.033333335), (0.20833333, 0.016666668), (0.20833333, 0.016666668), (0.20833333, 0.033333335), (0.2, 0.033333335), (0.2, 0.016666668), (0.2, 0.016666668), (0.2, 0.033333335), (0.19166666, 0.033333335), (0.19166666, 0.016666668), (0.19166666, 0.016666668), (0.19166666, 0.033333335), (0.18333334, 0.033333335), (0.18333334, 0.016666668), (0.18333334, 0.016666668), (0.18333334, 0.033333335), (0.175, 0.033333335), (0.175, 0.016666668), (0.175, 0.016666668), (0.175, 0.033333335), (0.16666667, 0.033333335), (0.16666667, 0.016666668), (0.16666667, 0.016666668), (0.16666667, 0.033333335), (0.15833333, 0.033333335), (0.15833333, 0.016666668), (0.15833333, 0.016666668), (0.15833333, 0.033333335), (0.15, 0.033333335), (0.15, 0.016666668), (0.15, 0.016666668), (0.15, 0.033333335), (0.14166667, 0.033333335), (0.14166667, 0.016666668), (0.14166667, 0.016666668), (0.14166667, 0.033333335), (0.13333334, 0.033333335), (0.13333334, 0.016666668), (0.13333334, 0.016666668), (0.13333334, 0.033333335), (0.125, 0.033333335), (0.125, 0.016666668), (0.125, 0.016666668), (0.125, 0.033333335), (0.11666667, 0.033333335), (0.11666667, 0.016666668), (0.11666667, 0.016666668), (0.11666667, 0.033333335), (0.108333334, 0.033333335), (0.108333334, 0.016666668), (0.108333334, 0.016666668), (0.108333334, 0.033333335), (0.1, 0.033333335), (0.1, 0.016666668), (0.1, 0.016666668), (0.1, 0.033333335), (0.09166667, 0.033333335), (0.09166667, 0.016666668), (0.09166667, 0.016666668), (0.09166667, 0.033333335), (0.083333336, 0.033333335), (0.083333336, 0.016666668), (0.083333336, 0.016666668), (0.083333336, 0.033333335), (0.075, 0.033333335), (0.075, 0.016666668), (0.075, 0.016666668), (0.075, 0.033333335), (0.06666667, 0.033333335), (0.06666667, 0.016666668), (0.06666667, 0.016666668), (0.06666667, 0.033333335), (0.058333334, 0.033333335), (0.058333334, 0.016666668), (0.058333334, 0.016666668), (0.058333334, 0.033333335), (0.05, 0.033333335), (0.05, 0.016666668), (0.05, 0.016666668), (0.05, 0.033333335), (0.041666668, 0.033333335), (0.041666668, 0.016666668), (0.041666668, 0.016666668), (0.041666668, 0.033333335), (0.033333335, 0.033333335), (0.033333335, 0.016666668), (0.033333335, 0.016666668), (0.033333335, 0.033333335), (0.025, 0.033333335), (0.025, 0.016666668), (0.025, 0.016666668), (0.025, 0.033333335), (0.016666668, 0.033333335), (0.016666668, 0.016666668), (0.016666668, 0.016666668), (0.016666668, 0.033333335), (0.008333334, 0.033333335), (0.008333334, 0.016666668), (0.008333334, 0.016666668), (0.008333334, 0.033333335), (0, 0.033333335), (0, 0.016666668), (1, 0.033333335), (1, 0.05), (0.9916667, 0.05), (0.9916667, 0.033333335), (0.9916667, 0.033333335), (0.9916667, 0.05), (0.98333335, 0.05), (0.98333335, 0.033333335), (0.98333335, 0.033333335), (0.98333335, 0.05), (0.975, 0.05), (0.975, 0.033333335), (0.975, 0.033333335), (0.975, 0.05), (0.96666664, 0.05), (0.96666664, 0.033333335), (0.96666664, 0.033333335), (0.96666664, 0.05), (0.9583333, 0.05), (0.9583333, 0.033333335), (0.9583333, 0.033333335), (0.9583333, 0.05), (0.95, 0.05), (0.95, 0.033333335), (0.95, 0.033333335), (0.95, 0.05), (0.94166666, 0.05), (0.94166666, 0.033333335), (0.94166666, 0.033333335), (0.94166666, 0.05), (0.93333334, 0.05), (0.93333334, 0.033333335), (0.93333334, 0.033333335), (0.93333334, 0.05), (0.925, 0.05), (0.925, 0.033333335), (0.925, 0.033333335), (0.925, 0.05), (0.9166667, 0.05), (0.9166667, 0.033333335), (0.9166667, 0.033333335), (0.9166667, 0.05), (0.90833336, 0.05), (0.90833336, 0.033333335), (0.90833336, 0.033333335), (0.90833336, 0.05), (0.9, 0.05), (0.9, 0.033333335), (0.9, 0.033333335), (0.9, 0.05), (0.89166665, 0.05), (0.89166665, 0.033333335), (0.89166665, 0.033333335), (0.89166665, 0.05), (0.8833333, 0.05), (0.8833333, 0.033333335), (0.8833333, 0.033333335), (0.8833333, 0.05), (0.875, 0.05), (0.875, 0.033333335), (0.875, 0.033333335), (0.875, 0.05), (0.8666667, 0.05), (0.8666667, 0.033333335), (0.8666667, 0.033333335), (0.8666667, 0.05), (0.85833335, 0.05), (0.85833335, 0.033333335), (0.85833335, 0.033333335), (0.85833335, 0.05), (0.85, 0.05), (0.85, 0.033333335), (0.85, 0.033333335), (0.85, 0.05), (0.84166664, 0.05), (0.84166664, 0.033333335), (0.84166664, 0.033333335), (0.84166664, 0.05), (0.8333333, 0.05), (0.8333333, 0.033333335), (0.8333333, 0.033333335), (0.8333333, 0.05), (0.825, 0.05), (0.825, 0.033333335), (0.825, 0.033333335), (0.825, 0.05), (0.81666666, 0.05), (0.81666666, 0.033333335), (0.81666666, 0.033333335), (0.81666666, 0.05), (0.80833334, 0.05), (0.80833334, 0.033333335), (0.80833334, 0.033333335), (0.80833334, 0.05), (0.8, 0.05), (0.8, 0.033333335), (0.8, 0.033333335), (0.8, 0.05), (0.7916667, 0.05), (0.7916667, 0.033333335), (0.7916667, 0.033333335), (0.7916667, 0.05), (0.78333336, 0.05), (0.78333336, 0.033333335), (0.78333336, 0.033333335), (0.78333336, 0.05), (0.775, 0.05), (0.775, 0.033333335), (0.775, 0.033333335), (0.775, 0.05), (0.76666665, 0.05), (0.76666665, 0.033333335), (0.76666665, 0.033333335), (0.76666665, 0.05), (0.7583333, 0.05), (0.7583333, 0.033333335), (0.7583333, 0.033333335), (0.7583333, 0.05), (0.75, 0.05), (0.75, 0.033333335), (0.75, 0.033333335), (0.75, 0.05), (0.7416667, 0.05), (0.7416667, 0.033333335), (0.7416667, 0.033333335), (0.7416667, 0.05), (0.73333335, 0.05), (0.73333335, 0.033333335), (0.73333335, 0.033333335), (0.73333335, 0.05), (0.725, 0.05), (0.725, 0.033333335), (0.725, 0.033333335), (0.725, 0.05), (0.71666664, 0.05), (0.71666664, 0.033333335), (0.71666664, 0.033333335), (0.71666664, 0.05), (0.7083333, 0.05), (0.7083333, 0.033333335), (0.7083333, 0.033333335), (0.7083333, 0.05), (0.7, 0.05), (0.7, 0.033333335), (0.7, 0.033333335), (0.7, 0.05), (0.69166666, 0.05), (0.69166666, 0.033333335), (0.69166666, 0.033333335), (0.69166666, 0.05), (0.68333334, 0.05), (0.68333334, 0.033333335), (0.68333334, 0.033333335), (0.68333334, 0.05), (0.675, 0.05), (0.675, 0.033333335), (0.675, 0.033333335), (0.675, 0.05), (0.6666667, 0.05), (0.6666667, 0.033333335), (0.6666667, 0.033333335), (0.6666667, 0.05), (0.65833336, 0.05), (0.65833336, 0.033333335), (0.65833336, 0.033333335), (0.65833336, 0.05), (0.65, 0.05), (0.65, 0.033333335), (0.65, 0.033333335), (0.65, 0.05), (0.64166665, 0.05), (0.64166665, 0.033333335), (0.64166665, 0.033333335), (0.64166665, 0.05), (0.6333333, 0.05), (0.6333333, 0.033333335), (0.6333333, 0.033333335), (0.6333333, 0.05), (0.625, 0.05), (0.625, 0.033333335), (0.625, 0.033333335), (0.625, 0.05), (0.6166667, 0.05), (0.6166667, 0.033333335), (0.6166667, 0.033333335), (0.6166667, 0.05), (0.60833335, 0.05), (0.60833335, 0.033333335), (0.60833335, 0.033333335), (0.60833335, 0.05), (0.6, 0.05), (0.6, 0.033333335), (0.6, 0.033333335), (0.6, 0.05), (0.59166664, 0.05), (0.59166664, 0.033333335), (0.59166664, 0.033333335), (0.59166664, 0.05), (0.5833333, 0.05), (0.5833333, 0.033333335), (0.5833333, 0.033333335), (0.5833333, 0.05), (0.575, 0.05), (0.575, 0.033333335), (0.575, 0.033333335), (0.575, 0.05), (0.56666666, 0.05), (0.56666666, 0.033333335), (0.56666666, 0.033333335), (0.56666666, 0.05), (0.55833334, 0.05), (0.55833334, 0.033333335), (0.55833334, 0.033333335), (0.55833334, 0.05), (0.55, 0.05), (0.55, 0.033333335), (0.55, 0.033333335), (0.55, 0.05), (0.5416667, 0.05), (0.5416667, 0.033333335), (0.5416667, 0.033333335), (0.5416667, 0.05), (0.53333336, 0.05), (0.53333336, 0.033333335), (0.53333336, 0.033333335), (0.53333336, 0.05), (0.525, 0.05), (0.525, 0.033333335), (0.525, 0.033333335), (0.525, 0.05), (0.51666665, 0.05), (0.51666665, 0.033333335), (0.51666665, 0.033333335), (0.51666665, 0.05), (0.5083333, 0.05), (0.5083333, 0.033333335), (0.5083333, 0.033333335), (0.5083333, 0.05), (0.5, 0.05), (0.5, 0.033333335), (0.5, 0.033333335), (0.5, 0.05), (0.49166667, 0.05), (0.49166667, 0.033333335), (0.49166667, 0.033333335), (0.49166667, 0.05), (0.48333332, 0.05), (0.48333332, 0.033333335), (0.48333332, 0.033333335), (0.48333332, 0.05), (0.475, 0.05), (0.475, 0.033333335), (0.475, 0.033333335), (0.475, 0.05), (0.46666667, 0.05), (0.46666667, 0.033333335), (0.46666667, 0.033333335), (0.46666667, 0.05), (0.45833334, 0.05), (0.45833334, 0.033333335), (0.45833334, 0.033333335), (0.45833334, 0.05), (0.45, 0.05), (0.45, 0.033333335), (0.45, 0.033333335), (0.45, 0.05), (0.44166666, 0.05), (0.44166666, 0.033333335), (0.44166666, 0.033333335), (0.44166666, 0.05), (0.43333334, 0.05), (0.43333334, 0.033333335), (0.43333334, 0.033333335), (0.43333334, 0.05), (0.425, 0.05), (0.425, 0.033333335), (0.425, 0.033333335), (0.425, 0.05), (0.41666666, 0.05), (0.41666666, 0.033333335), (0.41666666, 0.033333335), (0.41666666, 0.05), (0.40833333, 0.05), (0.40833333, 0.033333335), (0.40833333, 0.033333335), (0.40833333, 0.05), (0.4, 0.05), (0.4, 0.033333335), (0.4, 0.033333335), (0.4, 0.05), (0.39166668, 0.05), (0.39166668, 0.033333335), (0.39166668, 0.033333335), (0.39166668, 0.05), (0.38333333, 0.05), (0.38333333, 0.033333335), (0.38333333, 0.033333335), (0.38333333, 0.05), (0.375, 0.05), (0.375, 0.033333335), (0.375, 0.033333335), (0.375, 0.05), (0.36666667, 0.05), (0.36666667, 0.033333335), (0.36666667, 0.033333335), (0.36666667, 0.05), (0.35833332, 0.05), (0.35833332, 0.033333335), (0.35833332, 0.033333335), (0.35833332, 0.05), (0.35, 0.05), (0.35, 0.033333335), (0.35, 0.033333335), (0.35, 0.05), (0.34166667, 0.05), (0.34166667, 0.033333335), (0.34166667, 0.033333335), (0.34166667, 0.05), (0.33333334, 0.05), (0.33333334, 0.033333335), (0.33333334, 0.033333335), (0.33333334, 0.05), (0.325, 0.05), (0.325, 0.033333335), (0.325, 0.033333335), (0.325, 0.05), (0.31666666, 0.05), (0.31666666, 0.033333335), (0.31666666, 0.033333335), (0.31666666, 0.05), (0.30833334, 0.05), (0.30833334, 0.033333335), (0.30833334, 0.033333335), (0.30833334, 0.05), (0.3, 0.05), (0.3, 0.033333335), (0.3, 0.033333335), (0.3, 0.05), (0.29166666, 0.05), (0.29166666, 0.033333335), (0.29166666, 0.033333335), (0.29166666, 0.05), (0.28333333, 0.05), (0.28333333, 0.033333335), (0.28333333, 0.033333335), (0.28333333, 0.05), (0.275, 0.05), (0.275, 0.033333335), (0.275, 0.033333335), (0.275, 0.05), (0.26666668, 0.05), (0.26666668, 0.033333335), (0.26666668, 0.033333335), (0.26666668, 0.05), (0.25833333, 0.05), (0.25833333, 0.033333335), (0.25833333, 0.033333335), (0.25833333, 0.05), (0.25, 0.05), (0.25, 0.033333335), (0.25, 0.033333335), (0.25, 0.05), (0.24166666, 0.05), (0.24166666, 0.033333335), (0.24166666, 0.033333335), (0.24166666, 0.05), (0.23333333, 0.05), (0.23333333, 0.033333335), (0.23333333, 0.033333335), (0.23333333, 0.05), (0.225, 0.05), (0.225, 0.033333335), (0.225, 0.033333335), (0.225, 0.05), (0.21666667, 0.05), (0.21666667, 0.033333335), (0.21666667, 0.033333335), (0.21666667, 0.05), (0.20833333, 0.05), (0.20833333, 0.033333335), (0.20833333, 0.033333335), (0.20833333, 0.05), (0.2, 0.05), (0.2, 0.033333335), (0.2, 0.033333335), (0.2, 0.05), (0.19166666, 0.05), (0.19166666, 0.033333335), (0.19166666, 0.033333335), (0.19166666, 0.05), (0.18333334, 0.05), (0.18333334, 0.033333335), (0.18333334, 0.033333335), (0.18333334, 0.05), (0.175, 0.05), (0.175, 0.033333335), (0.175, 0.033333335), (0.175, 0.05), (0.16666667, 0.05), (0.16666667, 0.033333335), (0.16666667, 0.033333335), (0.16666667, 0.05), (0.15833333, 0.05), (0.15833333, 0.033333335), (0.15833333, 0.033333335), (0.15833333, 0.05), (0.15, 0.05), (0.15, 0.033333335), (0.15, 0.033333335), (0.15, 0.05), (0.14166667, 0.05), (0.14166667, 0.033333335), (0.14166667, 0.033333335), (0.14166667, 0.05), (0.13333334, 0.05), (0.13333334, 0.033333335), (0.13333334, 0.033333335), (0.13333334, 0.05), (0.125, 0.05), (0.125, 0.033333335), (0.125, 0.033333335), (0.125, 0.05), (0.11666667, 0.05), (0.11666667, 0.033333335), (0.11666667, 0.033333335), (0.11666667, 0.05), (0.108333334, 0.05), (0.108333334, 0.033333335), (0.108333334, 0.033333335), (0.108333334, 0.05), (0.1, 0.05), (0.1, 0.033333335), (0.1, 0.033333335), (0.1, 0.05), (0.09166667, 0.05), (0.09166667, 0.033333335), (0.09166667, 0.033333335), (0.09166667, 0.05), (0.083333336, 0.05), (0.083333336, 0.033333335), (0.083333336, 0.033333335), (0.083333336, 0.05), (0.075, 0.05), (0.075, 0.033333335), (0.075, 0.033333335), (0.075, 0.05), (0.06666667, 0.05), (0.06666667, 0.033333335), (0.06666667, 0.033333335), (0.06666667, 0.05), (0.058333334, 0.05), (0.058333334, 0.033333335), (0.058333334, 0.033333335), (0.058333334, 0.05), (0.05, 0.05), (0.05, 0.033333335), (0.05, 0.033333335), (0.05, 0.05), (0.041666668, 0.05), (0.041666668, 0.033333335), (0.041666668, 0.033333335), (0.041666668, 0.05), (0.033333335, 0.05), (0.033333335, 0.033333335), (0.033333335, 0.033333335), (0.033333335, 0.05), (0.025, 0.05), (0.025, 0.033333335), (0.025, 0.033333335), (0.025, 0.05), (0.016666668, 0.05), (0.016666668, 0.033333335), (0.016666668, 0.033333335), (0.016666668, 0.05), (0.008333334, 0.05), (0.008333334, 0.033333335), (0.008333334, 0.033333335), (0.008333334, 0.05), (0, 0.05), (0, 0.033333335), (1, 0.05), (1, 0.06666667), (0.9916667, 0.06666667), (0.9916667, 0.05), (0.9916667, 0.05), (0.9916667, 0.06666667), (0.98333335, 0.06666667), (0.98333335, 0.05), (0.98333335, 0.05), (0.98333335, 0.06666667), (0.975, 0.06666667), (0.975, 0.05), (0.975, 0.05), (0.975, 0.06666667), (0.96666664, 0.06666667), (0.96666664, 0.05), (0.96666664, 0.05), (0.96666664, 0.06666667), (0.9583333, 0.06666667), (0.9583333, 0.05), (0.9583333, 0.05), (0.9583333, 0.06666667), (0.95, 0.06666667), (0.95, 0.05), (0.95, 0.05), (0.95, 0.06666667), (0.94166666, 0.06666667), (0.94166666, 0.05), (0.94166666, 0.05), (0.94166666, 0.06666667), (0.93333334, 0.06666667), (0.93333334, 0.05), (0.93333334, 0.05), (0.93333334, 0.06666667), (0.925, 0.06666667), (0.925, 0.05), (0.925, 0.05), (0.925, 0.06666667), (0.9166667, 0.06666667), (0.9166667, 0.05), (0.9166667, 0.05), (0.9166667, 0.06666667), (0.90833336, 0.06666667), (0.90833336, 0.05), (0.90833336, 0.05), (0.90833336, 0.06666667), (0.9, 0.06666667), (0.9, 0.05), (0.9, 0.05), (0.9, 0.06666667), (0.89166665, 0.06666667), (0.89166665, 0.05), (0.89166665, 0.05), (0.89166665, 0.06666667), (0.8833333, 0.06666667), (0.8833333, 0.05), (0.8833333, 0.05), (0.8833333, 0.06666667), (0.875, 0.06666667), (0.875, 0.05), (0.875, 0.05), (0.875, 0.06666667), (0.8666667, 0.06666667), (0.8666667, 0.05), (0.8666667, 0.05), (0.8666667, 0.06666667), (0.85833335, 0.06666667), (0.85833335, 0.05), (0.85833335, 0.05), (0.85833335, 0.06666667), (0.85, 0.06666667), (0.85, 0.05), (0.85, 0.05), (0.85, 0.06666667), (0.84166664, 0.06666667), (0.84166664, 0.05), (0.84166664, 0.05), (0.84166664, 0.06666667), (0.8333333, 0.06666667), (0.8333333, 0.05), (0.8333333, 0.05), (0.8333333, 0.06666667), (0.825, 0.06666667), (0.825, 0.05), (0.825, 0.05), (0.825, 0.06666667), (0.81666666, 0.06666667), (0.81666666, 0.05), (0.81666666, 0.05), (0.81666666, 0.06666667), (0.80833334, 0.06666667), (0.80833334, 0.05), (0.80833334, 0.05), (0.80833334, 0.06666667), (0.8, 0.06666667), (0.8, 0.05), (0.8, 0.05), (0.8, 0.06666667), (0.7916667, 0.06666667), (0.7916667, 0.05), (0.7916667, 0.05), (0.7916667, 0.06666667), (0.78333336, 0.06666667), (0.78333336, 0.05), (0.78333336, 0.05), (0.78333336, 0.06666667), (0.775, 0.06666667), (0.775, 0.05), (0.775, 0.05), (0.775, 0.06666667), (0.76666665, 0.06666667), (0.76666665, 0.05), (0.76666665, 0.05), (0.76666665, 0.06666667), (0.7583333, 0.06666667), (0.7583333, 0.05), (0.7583333, 0.05), (0.7583333, 0.06666667), (0.75, 0.06666667), (0.75, 0.05), (0.75, 0.05), (0.75, 0.06666667), (0.7416667, 0.06666667), (0.7416667, 0.05), (0.7416667, 0.05), (0.7416667, 0.06666667), (0.73333335, 0.06666667), (0.73333335, 0.05), (0.73333335, 0.05), (0.73333335, 0.06666667), (0.725, 0.06666667), (0.725, 0.05), (0.725, 0.05), (0.725, 0.06666667), (0.71666664, 0.06666667), (0.71666664, 0.05), (0.71666664, 0.05), (0.71666664, 0.06666667), (0.7083333, 0.06666667), (0.7083333, 0.05), (0.7083333, 0.05), (0.7083333, 0.06666667), (0.7, 0.06666667), (0.7, 0.05), (0.7, 0.05), (0.7, 0.06666667), (0.69166666, 0.06666667), (0.69166666, 0.05), (0.69166666, 0.05), (0.69166666, 0.06666667), (0.68333334, 0.06666667), (0.68333334, 0.05), (0.68333334, 0.05), (0.68333334, 0.06666667), (0.675, 0.06666667), (0.675, 0.05), (0.675, 0.05), (0.675, 0.06666667), (0.6666667, 0.06666667), (0.6666667, 0.05), (0.6666667, 0.05), (0.6666667, 0.06666667), (0.65833336, 0.06666667), (0.65833336, 0.05), (0.65833336, 0.05), (0.65833336, 0.06666667), (0.65, 0.06666667), (0.65, 0.05), (0.65, 0.05), (0.65, 0.06666667), (0.64166665, 0.06666667), (0.64166665, 0.05), (0.64166665, 0.05), (0.64166665, 0.06666667), (0.6333333, 0.06666667), (0.6333333, 0.05), (0.6333333, 0.05), (0.6333333, 0.06666667), (0.625, 0.06666667), (0.625, 0.05), (0.625, 0.05), (0.625, 0.06666667), (0.6166667, 0.06666667), (0.6166667, 0.05), (0.6166667, 0.05), (0.6166667, 0.06666667), (0.60833335, 0.06666667), (0.60833335, 0.05), (0.60833335, 0.05), (0.60833335, 0.06666667), (0.6, 0.06666667), (0.6, 0.05), (0.6, 0.05), (0.6, 0.06666667), (0.59166664, 0.06666667), (0.59166664, 0.05), (0.59166664, 0.05), (0.59166664, 0.06666667), (0.5833333, 0.06666667), (0.5833333, 0.05), (0.5833333, 0.05), (0.5833333, 0.06666667), (0.575, 0.06666667), (0.575, 0.05), (0.575, 0.05), (0.575, 0.06666667), (0.56666666, 0.06666667), (0.56666666, 0.05), (0.56666666, 0.05), (0.56666666, 0.06666667), (0.55833334, 0.06666667), (0.55833334, 0.05), (0.55833334, 0.05), (0.55833334, 0.06666667), (0.55, 0.06666667), (0.55, 0.05), (0.55, 0.05), (0.55, 0.06666667), (0.5416667, 0.06666667), (0.5416667, 0.05), (0.5416667, 0.05), (0.5416667, 0.06666667), (0.53333336, 0.06666667), (0.53333336, 0.05), (0.53333336, 0.05), (0.53333336, 0.06666667), (0.525, 0.06666667), (0.525, 0.05), (0.525, 0.05), (0.525, 0.06666667), (0.51666665, 0.06666667), (0.51666665, 0.05), (0.51666665, 0.05), (0.51666665, 0.06666667), (0.5083333, 0.06666667), (0.5083333, 0.05), (0.5083333, 0.05), (0.5083333, 0.06666667), (0.5, 0.06666667), (0.5, 0.05), (0.5, 0.05), (0.5, 0.06666667), (0.49166667, 0.06666667), (0.49166667, 0.05), (0.49166667, 0.05), (0.49166667, 0.06666667), (0.48333332, 0.06666667), (0.48333332, 0.05), (0.48333332, 0.05), (0.48333332, 0.06666667), (0.475, 0.06666667), (0.475, 0.05), (0.475, 0.05), (0.475, 0.06666667), (0.46666667, 0.06666667), (0.46666667, 0.05), (0.46666667, 0.05), (0.46666667, 0.06666667), (0.45833334, 0.06666667), (0.45833334, 0.05), (0.45833334, 0.05), (0.45833334, 0.06666667), (0.45, 0.06666667), (0.45, 0.05), (0.45, 0.05), (0.45, 0.06666667), (0.44166666, 0.06666667), (0.44166666, 0.05), (0.44166666, 0.05), (0.44166666, 0.06666667), (0.43333334, 0.06666667), (0.43333334, 0.05), (0.43333334, 0.05), (0.43333334, 0.06666667), (0.425, 0.06666667), (0.425, 0.05), (0.425, 0.05), (0.425, 0.06666667), (0.41666666, 0.06666667), (0.41666666, 0.05), (0.41666666, 0.05), (0.41666666, 0.06666667), (0.40833333, 0.06666667), (0.40833333, 0.05), (0.40833333, 0.05), (0.40833333, 0.06666667), (0.4, 0.06666667), (0.4, 0.05), (0.4, 0.05), (0.4, 0.06666667), (0.39166668, 0.06666667), (0.39166668, 0.05), (0.39166668, 0.05), (0.39166668, 0.06666667), (0.38333333, 0.06666667), (0.38333333, 0.05), (0.38333333, 0.05), (0.38333333, 0.06666667), (0.375, 0.06666667), (0.375, 0.05), (0.375, 0.05), (0.375, 0.06666667), (0.36666667, 0.06666667), (0.36666667, 0.05), (0.36666667, 0.05), (0.36666667, 0.06666667), (0.35833332, 0.06666667), (0.35833332, 0.05), (0.35833332, 0.05), (0.35833332, 0.06666667), (0.35, 0.06666667), (0.35, 0.05), (0.35, 0.05), (0.35, 0.06666667), (0.34166667, 0.06666667), (0.34166667, 0.05), (0.34166667, 0.05), (0.34166667, 0.06666667), (0.33333334, 0.06666667), (0.33333334, 0.05), (0.33333334, 0.05), (0.33333334, 0.06666667), (0.325, 0.06666667), (0.325, 0.05), (0.325, 0.05), (0.325, 0.06666667), (0.31666666, 0.06666667), (0.31666666, 0.05), (0.31666666, 0.05), (0.31666666, 0.06666667), (0.30833334, 0.06666667), (0.30833334, 0.05), (0.30833334, 0.05), (0.30833334, 0.06666667), (0.3, 0.06666667), (0.3, 0.05), (0.3, 0.05), (0.3, 0.06666667), (0.29166666, 0.06666667), (0.29166666, 0.05), (0.29166666, 0.05), (0.29166666, 0.06666667), (0.28333333, 0.06666667), (0.28333333, 0.05), (0.28333333, 0.05), (0.28333333, 0.06666667), (0.275, 0.06666667), (0.275, 0.05), (0.275, 0.05), (0.275, 0.06666667), (0.26666668, 0.06666667), (0.26666668, 0.05), (0.26666668, 0.05), (0.26666668, 0.06666667), (0.25833333, 0.06666667), (0.25833333, 0.05), (0.25833333, 0.05), (0.25833333, 0.06666667), (0.25, 0.06666667), (0.25, 0.05), (0.25, 0.05), (0.25, 0.06666667), (0.24166666, 0.06666667), (0.24166666, 0.05), (0.24166666, 0.05), (0.24166666, 0.06666667), (0.23333333, 0.06666667), (0.23333333, 0.05), (0.23333333, 0.05), (0.23333333, 0.06666667), (0.225, 0.06666667), (0.225, 0.05), (0.225, 0.05), (0.225, 0.06666667), (0.21666667, 0.06666667), (0.21666667, 0.05), (0.21666667, 0.05), (0.21666667, 0.06666667), (0.20833333, 0.06666667), (0.20833333, 0.05), (0.20833333, 0.05), (0.20833333, 0.06666667), (0.2, 0.06666667), (0.2, 0.05), (0.2, 0.05), (0.2, 0.06666667), (0.19166666, 0.06666667), (0.19166666, 0.05), (0.19166666, 0.05), (0.19166666, 0.06666667), (0.18333334, 0.06666667), (0.18333334, 0.05), (0.18333334, 0.05), (0.18333334, 0.06666667), (0.175, 0.06666667), (0.175, 0.05), (0.175, 0.05), (0.175, 0.06666667), (0.16666667, 0.06666667), (0.16666667, 0.05), (0.16666667, 0.05), (0.16666667, 0.06666667), (0.15833333, 0.06666667), (0.15833333, 0.05), (0.15833333, 0.05), (0.15833333, 0.06666667), (0.15, 0.06666667), (0.15, 0.05), (0.15, 0.05), (0.15, 0.06666667), (0.14166667, 0.06666667), (0.14166667, 0.05), (0.14166667, 0.05), (0.14166667, 0.06666667), (0.13333334, 0.06666667), (0.13333334, 0.05), (0.13333334, 0.05), (0.13333334, 0.06666667), (0.125, 0.06666667), (0.125, 0.05), (0.125, 0.05), (0.125, 0.06666667), (0.11666667, 0.06666667), (0.11666667, 0.05), (0.11666667, 0.05), (0.11666667, 0.06666667), (0.108333334, 0.06666667), (0.108333334, 0.05), (0.108333334, 0.05), (0.108333334, 0.06666667), (0.1, 0.06666667), (0.1, 0.05), (0.1, 0.05), (0.1, 0.06666667), (0.09166667, 0.06666667), (0.09166667, 0.05), (0.09166667, 0.05), (0.09166667, 0.06666667), (0.083333336, 0.06666667), (0.083333336, 0.05), (0.083333336, 0.05), (0.083333336, 0.06666667), (0.075, 0.06666667), (0.075, 0.05), (0.075, 0.05), (0.075, 0.06666667), (0.06666667, 0.06666667), (0.06666667, 0.05), (0.06666667, 0.05), (0.06666667, 0.06666667), (0.058333334, 0.06666667), (0.058333334, 0.05), (0.058333334, 0.05), (0.058333334, 0.06666667), (0.05, 0.06666667), (0.05, 0.05), (0.05, 0.05), (0.05, 0.06666667), (0.041666668, 0.06666667), (0.041666668, 0.05), (0.041666668, 0.05), (0.041666668, 0.06666667), (0.033333335, 0.06666667), (0.033333335, 0.05), (0.033333335, 0.05), (0.033333335, 0.06666667), (0.025, 0.06666667), (0.025, 0.05), (0.025, 0.05), (0.025, 0.06666667), (0.016666668, 0.06666667), (0.016666668, 0.05), (0.016666668, 0.05), (0.016666668, 0.06666667), (0.008333334, 0.06666667), (0.008333334, 0.05), (0.008333334, 0.05), (0.008333334, 0.06666667), (0, 0.06666667), (0, 0.05), (1, 0.06666667), (1, 0.083333336), (0.9916667, 0.083333336), (0.9916667, 0.06666667), (0.9916667, 0.06666667), (0.9916667, 0.083333336), (0.98333335, 0.083333336), (0.98333335, 0.06666667), (0.98333335, 0.06666667), (0.98333335, 0.083333336), (0.975, 0.083333336), (0.975, 0.06666667), (0.975, 0.06666667), (0.975, 0.083333336), (0.96666664, 0.083333336), (0.96666664, 0.06666667), (0.96666664, 0.06666667), (0.96666664, 0.083333336), (0.9583333, 0.083333336), (0.9583333, 0.06666667), (0.9583333, 0.06666667), (0.9583333, 0.083333336), (0.95, 0.083333336), (0.95, 0.06666667), (0.95, 0.06666667), (0.95, 0.083333336), (0.94166666, 0.083333336), (0.94166666, 0.06666667), (0.94166666, 0.06666667), (0.94166666, 0.083333336), (0.93333334, 0.083333336), (0.93333334, 0.06666667), (0.93333334, 0.06666667), (0.93333334, 0.083333336), (0.925, 0.083333336), (0.925, 0.06666667), (0.925, 0.06666667), (0.925, 0.083333336), (0.9166667, 0.083333336), (0.9166667, 0.06666667), (0.9166667, 0.06666667), (0.9166667, 0.083333336), (0.90833336, 0.083333336), (0.90833336, 0.06666667), (0.90833336, 0.06666667), (0.90833336, 0.083333336), (0.9, 0.083333336), (0.9, 0.06666667), (0.9, 0.06666667), (0.9, 0.083333336), (0.89166665, 0.083333336), (0.89166665, 0.06666667), (0.89166665, 0.06666667), (0.89166665, 0.083333336), (0.8833333, 0.083333336), (0.8833333, 0.06666667), (0.8833333, 0.06666667), (0.8833333, 0.083333336), (0.875, 0.083333336), (0.875, 0.06666667), (0.875, 0.06666667), (0.875, 0.083333336), (0.8666667, 0.083333336), (0.8666667, 0.06666667), (0.8666667, 0.06666667), (0.8666667, 0.083333336), (0.85833335, 0.083333336), (0.85833335, 0.06666667), (0.85833335, 0.06666667), (0.85833335, 0.083333336), (0.85, 0.083333336), (0.85, 0.06666667), (0.85, 0.06666667), (0.85, 0.083333336), (0.84166664, 0.083333336), (0.84166664, 0.06666667), (0.84166664, 0.06666667), (0.84166664, 0.083333336), (0.8333333, 0.083333336), (0.8333333, 0.06666667), (0.8333333, 0.06666667), (0.8333333, 0.083333336), (0.825, 0.083333336), (0.825, 0.06666667), (0.825, 0.06666667), (0.825, 0.083333336), (0.81666666, 0.083333336), (0.81666666, 0.06666667), (0.81666666, 0.06666667), (0.81666666, 0.083333336), (0.80833334, 0.083333336), (0.80833334, 0.06666667), (0.80833334, 0.06666667), (0.80833334, 0.083333336), (0.8, 0.083333336), (0.8, 0.06666667), (0.8, 0.06666667), (0.8, 0.083333336), (0.7916667, 0.083333336), (0.7916667, 0.06666667), (0.7916667, 0.06666667), (0.7916667, 0.083333336), (0.78333336, 0.083333336), (0.78333336, 0.06666667), (0.78333336, 0.06666667), (0.78333336, 0.083333336), (0.775, 0.083333336), (0.775, 0.06666667), (0.775, 0.06666667), (0.775, 0.083333336), (0.76666665, 0.083333336), (0.76666665, 0.06666667), (0.76666665, 0.06666667), (0.76666665, 0.083333336), (0.7583333, 0.083333336), (0.7583333, 0.06666667), (0.7583333, 0.06666667), (0.7583333, 0.083333336), (0.75, 0.083333336), (0.75, 0.06666667), (0.75, 0.06666667), (0.75, 0.083333336), (0.7416667, 0.083333336), (0.7416667, 0.06666667), (0.7416667, 0.06666667), (0.7416667, 0.083333336), (0.73333335, 0.083333336), (0.73333335, 0.06666667), (0.73333335, 0.06666667), (0.73333335, 0.083333336), (0.725, 0.083333336), (0.725, 0.06666667), (0.725, 0.06666667), (0.725, 0.083333336), (0.71666664, 0.083333336), (0.71666664, 0.06666667), (0.71666664, 0.06666667), (0.71666664, 0.083333336), (0.7083333, 0.083333336), (0.7083333, 0.06666667), (0.7083333, 0.06666667), (0.7083333, 0.083333336), (0.7, 0.083333336), (0.7, 0.06666667), (0.7, 0.06666667), (0.7, 0.083333336), (0.69166666, 0.083333336), (0.69166666, 0.06666667), (0.69166666, 0.06666667), (0.69166666, 0.083333336), (0.68333334, 0.083333336), (0.68333334, 0.06666667), (0.68333334, 0.06666667), (0.68333334, 0.083333336), (0.675, 0.083333336), (0.675, 0.06666667), (0.675, 0.06666667), (0.675, 0.083333336), (0.6666667, 0.083333336), (0.6666667, 0.06666667), (0.6666667, 0.06666667), (0.6666667, 0.083333336), (0.65833336, 0.083333336), (0.65833336, 0.06666667), (0.65833336, 0.06666667), (0.65833336, 0.083333336), (0.65, 0.083333336), (0.65, 0.06666667), (0.65, 0.06666667), (0.65, 0.083333336), (0.64166665, 0.083333336), (0.64166665, 0.06666667), (0.64166665, 0.06666667), (0.64166665, 0.083333336), (0.6333333, 0.083333336), (0.6333333, 0.06666667), (0.6333333, 0.06666667), (0.6333333, 0.083333336), (0.625, 0.083333336), (0.625, 0.06666667), (0.625, 0.06666667), (0.625, 0.083333336), (0.6166667, 0.083333336), (0.6166667, 0.06666667), (0.6166667, 0.06666667), (0.6166667, 0.083333336), (0.60833335, 0.083333336), (0.60833335, 0.06666667), (0.60833335, 0.06666667), (0.60833335, 0.083333336), (0.6, 0.083333336), (0.6, 0.06666667), (0.6, 0.06666667), (0.6, 0.083333336), (0.59166664, 0.083333336), (0.59166664, 0.06666667), (0.59166664, 0.06666667), (0.59166664, 0.083333336), (0.5833333, 0.083333336), (0.5833333, 0.06666667), (0.5833333, 0.06666667), (0.5833333, 0.083333336), (0.575, 0.083333336), (0.575, 0.06666667), (0.575, 0.06666667), (0.575, 0.083333336), (0.56666666, 0.083333336), (0.56666666, 0.06666667), (0.56666666, 0.06666667), (0.56666666, 0.083333336), (0.55833334, 0.083333336), (0.55833334, 0.06666667), (0.55833334, 0.06666667), (0.55833334, 0.083333336), (0.55, 0.083333336), (0.55, 0.06666667), (0.55, 0.06666667), (0.55, 0.083333336), (0.5416667, 0.083333336), (0.5416667, 0.06666667), (0.5416667, 0.06666667), (0.5416667, 0.083333336), (0.53333336, 0.083333336), (0.53333336, 0.06666667), (0.53333336, 0.06666667), (0.53333336, 0.083333336), (0.525, 0.083333336), (0.525, 0.06666667), (0.525, 0.06666667), (0.525, 0.083333336), (0.51666665, 0.083333336), (0.51666665, 0.06666667), (0.51666665, 0.06666667), (0.51666665, 0.083333336), (0.5083333, 0.083333336), (0.5083333, 0.06666667), (0.5083333, 0.06666667), (0.5083333, 0.083333336), (0.5, 0.083333336), (0.5, 0.06666667), (0.5, 0.06666667), (0.5, 0.083333336), (0.49166667, 0.083333336), (0.49166667, 0.06666667), (0.49166667, 0.06666667), (0.49166667, 0.083333336), (0.48333332, 0.083333336), (0.48333332, 0.06666667), (0.48333332, 0.06666667), (0.48333332, 0.083333336), (0.475, 0.083333336), (0.475, 0.06666667), (0.475, 0.06666667), (0.475, 0.083333336), (0.46666667, 0.083333336), (0.46666667, 0.06666667), (0.46666667, 0.06666667), (0.46666667, 0.083333336), (0.45833334, 0.083333336), (0.45833334, 0.06666667), (0.45833334, 0.06666667), (0.45833334, 0.083333336), (0.45, 0.083333336), (0.45, 0.06666667), (0.45, 0.06666667), (0.45, 0.083333336), (0.44166666, 0.083333336), (0.44166666, 0.06666667), (0.44166666, 0.06666667), (0.44166666, 0.083333336), (0.43333334, 0.083333336), (0.43333334, 0.06666667), (0.43333334, 0.06666667), (0.43333334, 0.083333336), (0.425, 0.083333336), (0.425, 0.06666667), (0.425, 0.06666667), (0.425, 0.083333336), (0.41666666, 0.083333336), (0.41666666, 0.06666667), (0.41666666, 0.06666667), (0.41666666, 0.083333336), (0.40833333, 0.083333336), (0.40833333, 0.06666667), (0.40833333, 0.06666667), (0.40833333, 0.083333336), (0.4, 0.083333336), (0.4, 0.06666667), (0.4, 0.06666667), (0.4, 0.083333336), (0.39166668, 0.083333336), (0.39166668, 0.06666667), (0.39166668, 0.06666667), (0.39166668, 0.083333336), (0.38333333, 0.083333336), (0.38333333, 0.06666667), (0.38333333, 0.06666667), (0.38333333, 0.083333336), (0.375, 0.083333336), (0.375, 0.06666667), (0.375, 0.06666667), (0.375, 0.083333336), (0.36666667, 0.083333336), (0.36666667, 0.06666667), (0.36666667, 0.06666667), (0.36666667, 0.083333336), (0.35833332, 0.083333336), (0.35833332, 0.06666667), (0.35833332, 0.06666667), (0.35833332, 0.083333336), (0.35, 0.083333336), (0.35, 0.06666667), (0.35, 0.06666667), (0.35, 0.083333336), (0.34166667, 0.083333336), (0.34166667, 0.06666667), (0.34166667, 0.06666667), (0.34166667, 0.083333336), (0.33333334, 0.083333336), (0.33333334, 0.06666667), (0.33333334, 0.06666667), (0.33333334, 0.083333336), (0.325, 0.083333336), (0.325, 0.06666667), (0.325, 0.06666667), (0.325, 0.083333336), (0.31666666, 0.083333336), (0.31666666, 0.06666667), (0.31666666, 0.06666667), (0.31666666, 0.083333336), (0.30833334, 0.083333336), (0.30833334, 0.06666667), (0.30833334, 0.06666667), (0.30833334, 0.083333336), (0.3, 0.083333336), (0.3, 0.06666667), (0.3, 0.06666667), (0.3, 0.083333336), (0.29166666, 0.083333336), (0.29166666, 0.06666667), (0.29166666, 0.06666667), (0.29166666, 0.083333336), (0.28333333, 0.083333336), (0.28333333, 0.06666667), (0.28333333, 0.06666667), (0.28333333, 0.083333336), (0.275, 0.083333336), (0.275, 0.06666667), (0.275, 0.06666667), (0.275, 0.083333336), (0.26666668, 0.083333336), (0.26666668, 0.06666667), (0.26666668, 0.06666667), (0.26666668, 0.083333336), (0.25833333, 0.083333336), (0.25833333, 0.06666667), (0.25833333, 0.06666667), (0.25833333, 0.083333336), (0.25, 0.083333336), (0.25, 0.06666667), (0.25, 0.06666667), (0.25, 0.083333336), (0.24166666, 0.083333336), (0.24166666, 0.06666667), (0.24166666, 0.06666667), (0.24166666, 0.083333336), (0.23333333, 0.083333336), (0.23333333, 0.06666667), (0.23333333, 0.06666667), (0.23333333, 0.083333336), (0.225, 0.083333336), (0.225, 0.06666667), (0.225, 0.06666667), (0.225, 0.083333336), (0.21666667, 0.083333336), (0.21666667, 0.06666667), (0.21666667, 0.06666667), (0.21666667, 0.083333336), (0.20833333, 0.083333336), (0.20833333, 0.06666667), (0.20833333, 0.06666667), (0.20833333, 0.083333336), (0.2, 0.083333336), (0.2, 0.06666667), (0.2, 0.06666667), (0.2, 0.083333336), (0.19166666, 0.083333336), (0.19166666, 0.06666667), (0.19166666, 0.06666667), (0.19166666, 0.083333336), (0.18333334, 0.083333336), (0.18333334, 0.06666667), (0.18333334, 0.06666667), (0.18333334, 0.083333336), (0.175, 0.083333336), (0.175, 0.06666667), (0.175, 0.06666667), (0.175, 0.083333336), (0.16666667, 0.083333336), (0.16666667, 0.06666667), (0.16666667, 0.06666667), (0.16666667, 0.083333336), (0.15833333, 0.083333336), (0.15833333, 0.06666667), (0.15833333, 0.06666667), (0.15833333, 0.083333336), (0.15, 0.083333336), (0.15, 0.06666667), (0.15, 0.06666667), (0.15, 0.083333336), (0.14166667, 0.083333336), (0.14166667, 0.06666667), (0.14166667, 0.06666667), (0.14166667, 0.083333336), (0.13333334, 0.083333336), (0.13333334, 0.06666667), (0.13333334, 0.06666667), (0.13333334, 0.083333336), (0.125, 0.083333336), (0.125, 0.06666667), (0.125, 0.06666667), (0.125, 0.083333336), (0.11666667, 0.083333336), (0.11666667, 0.06666667), (0.11666667, 0.06666667), (0.11666667, 0.083333336), (0.108333334, 0.083333336), (0.108333334, 0.06666667), (0.108333334, 0.06666667), (0.108333334, 0.083333336), (0.1, 0.083333336), (0.1, 0.06666667), (0.1, 0.06666667), (0.1, 0.083333336), (0.09166667, 0.083333336), (0.09166667, 0.06666667), (0.09166667, 0.06666667), (0.09166667, 0.083333336), (0.083333336, 0.083333336), (0.083333336, 0.06666667), (0.083333336, 0.06666667), (0.083333336, 0.083333336), (0.075, 0.083333336), (0.075, 0.06666667), (0.075, 0.06666667), (0.075, 0.083333336), (0.06666667, 0.083333336), (0.06666667, 0.06666667), (0.06666667, 0.06666667), (0.06666667, 0.083333336), (0.058333334, 0.083333336), (0.058333334, 0.06666667), (0.058333334, 0.06666667), (0.058333334, 0.083333336), (0.05, 0.083333336), (0.05, 0.06666667), (0.05, 0.06666667), (0.05, 0.083333336), (0.041666668, 0.083333336), (0.041666668, 0.06666667), (0.041666668, 0.06666667), (0.041666668, 0.083333336), (0.033333335, 0.083333336), (0.033333335, 0.06666667), (0.033333335, 0.06666667), (0.033333335, 0.083333336), (0.025, 0.083333336), (0.025, 0.06666667), (0.025, 0.06666667), (0.025, 0.083333336), (0.016666668, 0.083333336), (0.016666668, 0.06666667), (0.016666668, 0.06666667), (0.016666668, 0.083333336), (0.008333334, 0.083333336), (0.008333334, 0.06666667), (0.008333334, 0.06666667), (0.008333334, 0.083333336), (0, 0.083333336), (0, 0.06666667), (1, 0.083333336), (1, 0.1), (0.9916667, 0.1), (0.9916667, 0.083333336), (0.9916667, 0.083333336), (0.9916667, 0.1), (0.98333335, 0.1), (0.98333335, 0.083333336), (0.98333335, 0.083333336), (0.98333335, 0.1), (0.975, 0.1), (0.975, 0.083333336), (0.975, 0.083333336), (0.975, 0.1), (0.96666664, 0.1), (0.96666664, 0.083333336), (0.96666664, 0.083333336), (0.96666664, 0.1), (0.9583333, 0.1), (0.9583333, 0.083333336), (0.9583333, 0.083333336), (0.9583333, 0.1), (0.95, 0.1), (0.95, 0.083333336), (0.95, 0.083333336), (0.95, 0.1), (0.94166666, 0.1), (0.94166666, 0.083333336), (0.94166666, 0.083333336), (0.94166666, 0.1), (0.93333334, 0.1), (0.93333334, 0.083333336), (0.93333334, 0.083333336), (0.93333334, 0.1), (0.925, 0.1), (0.925, 0.083333336), (0.925, 0.083333336), (0.925, 0.1), (0.9166667, 0.1), (0.9166667, 0.083333336), (0.9166667, 0.083333336), (0.9166667, 0.1), (0.90833336, 0.1), (0.90833336, 0.083333336), (0.90833336, 0.083333336), (0.90833336, 0.1), (0.9, 0.1), (0.9, 0.083333336), (0.9, 0.083333336), (0.9, 0.1), (0.89166665, 0.1), (0.89166665, 0.083333336), (0.89166665, 0.083333336), (0.89166665, 0.1), (0.8833333, 0.1), (0.8833333, 0.083333336), (0.8833333, 0.083333336), (0.8833333, 0.1), (0.875, 0.1), (0.875, 0.083333336), (0.875, 0.083333336), (0.875, 0.1), (0.8666667, 0.1), (0.8666667, 0.083333336), (0.8666667, 0.083333336), (0.8666667, 0.1), (0.85833335, 0.1), (0.85833335, 0.083333336), (0.85833335, 0.083333336), (0.85833335, 0.1), (0.85, 0.1), (0.85, 0.083333336), (0.85, 0.083333336), (0.85, 0.1), (0.84166664, 0.1), (0.84166664, 0.083333336), (0.84166664, 0.083333336), (0.84166664, 0.1), (0.8333333, 0.1), (0.8333333, 0.083333336), (0.8333333, 0.083333336), (0.8333333, 0.1), (0.825, 0.1), (0.825, 0.083333336), (0.825, 0.083333336), (0.825, 0.1), (0.81666666, 0.1), (0.81666666, 0.083333336), (0.81666666, 0.083333336), (0.81666666, 0.1), (0.80833334, 0.1), (0.80833334, 0.083333336), (0.80833334, 0.083333336), (0.80833334, 0.1), (0.8, 0.1), (0.8, 0.083333336), (0.8, 0.083333336), (0.8, 0.1), (0.7916667, 0.1), (0.7916667, 0.083333336), (0.7916667, 0.083333336), (0.7916667, 0.1), (0.78333336, 0.1), (0.78333336, 0.083333336), (0.78333336, 0.083333336), (0.78333336, 0.1), (0.775, 0.1), (0.775, 0.083333336), (0.775, 0.083333336), (0.775, 0.1), (0.76666665, 0.1), (0.76666665, 0.083333336), (0.76666665, 0.083333336), (0.76666665, 0.1), (0.7583333, 0.1), (0.7583333, 0.083333336), (0.7583333, 0.083333336), (0.7583333, 0.1), (0.75, 0.1), (0.75, 0.083333336), (0.75, 0.083333336), (0.75, 0.1), (0.7416667, 0.1), (0.7416667, 0.083333336), (0.7416667, 0.083333336), (0.7416667, 0.1), (0.73333335, 0.1), (0.73333335, 0.083333336), (0.73333335, 0.083333336), (0.73333335, 0.1), (0.725, 0.1), (0.725, 0.083333336), (0.725, 0.083333336), (0.725, 0.1), (0.71666664, 0.1), (0.71666664, 0.083333336), (0.71666664, 0.083333336), (0.71666664, 0.1), (0.7083333, 0.1), (0.7083333, 0.083333336), (0.7083333, 0.083333336), (0.7083333, 0.1), (0.7, 0.1), (0.7, 0.083333336), (0.7, 0.083333336), (0.7, 0.1), (0.69166666, 0.1), (0.69166666, 0.083333336), (0.69166666, 0.083333336), (0.69166666, 0.1), (0.68333334, 0.1), (0.68333334, 0.083333336), (0.68333334, 0.083333336), (0.68333334, 0.1), (0.675, 0.1), (0.675, 0.083333336), (0.675, 0.083333336), (0.675, 0.1), (0.6666667, 0.1), (0.6666667, 0.083333336), (0.6666667, 0.083333336), (0.6666667, 0.1), (0.65833336, 0.1), (0.65833336, 0.083333336), (0.65833336, 0.083333336), (0.65833336, 0.1), (0.65, 0.1), (0.65, 0.083333336), (0.65, 0.083333336), (0.65, 0.1), (0.64166665, 0.1), (0.64166665, 0.083333336), (0.64166665, 0.083333336), (0.64166665, 0.1), (0.6333333, 0.1), (0.6333333, 0.083333336), (0.6333333, 0.083333336), (0.6333333, 0.1), (0.625, 0.1), (0.625, 0.083333336), (0.625, 0.083333336), (0.625, 0.1), (0.6166667, 0.1), (0.6166667, 0.083333336), (0.6166667, 0.083333336), (0.6166667, 0.1), (0.60833335, 0.1), (0.60833335, 0.083333336), (0.60833335, 0.083333336), (0.60833335, 0.1), (0.6, 0.1), (0.6, 0.083333336), (0.6, 0.083333336), (0.6, 0.1), (0.59166664, 0.1), (0.59166664, 0.083333336), (0.59166664, 0.083333336), (0.59166664, 0.1), (0.5833333, 0.1), (0.5833333, 0.083333336), (0.5833333, 0.083333336), (0.5833333, 0.1), (0.575, 0.1), (0.575, 0.083333336), (0.575, 0.083333336), (0.575, 0.1), (0.56666666, 0.1), (0.56666666, 0.083333336), (0.56666666, 0.083333336), (0.56666666, 0.1), (0.55833334, 0.1), (0.55833334, 0.083333336), (0.55833334, 0.083333336), (0.55833334, 0.1), (0.55, 0.1), (0.55, 0.083333336), (0.55, 0.083333336), (0.55, 0.1), (0.5416667, 0.1), (0.5416667, 0.083333336), (0.5416667, 0.083333336), (0.5416667, 0.1), (0.53333336, 0.1), (0.53333336, 0.083333336), (0.53333336, 0.083333336), (0.53333336, 0.1), (0.525, 0.1), (0.525, 0.083333336), (0.525, 0.083333336), (0.525, 0.1), (0.51666665, 0.1), (0.51666665, 0.083333336), (0.51666665, 0.083333336), (0.51666665, 0.1), (0.5083333, 0.1), (0.5083333, 0.083333336), (0.5083333, 0.083333336), (0.5083333, 0.1), (0.5, 0.1), (0.5, 0.083333336), (0.5, 0.083333336), (0.5, 0.1), (0.49166667, 0.1), (0.49166667, 0.083333336), (0.49166667, 0.083333336), (0.49166667, 0.1), (0.48333332, 0.1), (0.48333332, 0.083333336), (0.48333332, 0.083333336), (0.48333332, 0.1), (0.475, 0.1), (0.475, 0.083333336), (0.475, 0.083333336), (0.475, 0.1), (0.46666667, 0.1), (0.46666667, 0.083333336), (0.46666667, 0.083333336), (0.46666667, 0.1), (0.45833334, 0.1), (0.45833334, 0.083333336), (0.45833334, 0.083333336), (0.45833334, 0.1), (0.45, 0.1), (0.45, 0.083333336), (0.45, 0.083333336), (0.45, 0.1), (0.44166666, 0.1), (0.44166666, 0.083333336), (0.44166666, 0.083333336), (0.44166666, 0.1), (0.43333334, 0.1), (0.43333334, 0.083333336), (0.43333334, 0.083333336), (0.43333334, 0.1), (0.425, 0.1), (0.425, 0.083333336), (0.425, 0.083333336), (0.425, 0.1), (0.41666666, 0.1), (0.41666666, 0.083333336), (0.41666666, 0.083333336), (0.41666666, 0.1), (0.40833333, 0.1), (0.40833333, 0.083333336), (0.40833333, 0.083333336), (0.40833333, 0.1), (0.4, 0.1), (0.4, 0.083333336), (0.4, 0.083333336), (0.4, 0.1), (0.39166668, 0.1), (0.39166668, 0.083333336), (0.39166668, 0.083333336), (0.39166668, 0.1), (0.38333333, 0.1), (0.38333333, 0.083333336), (0.38333333, 0.083333336), (0.38333333, 0.1), (0.375, 0.1), (0.375, 0.083333336), (0.375, 0.083333336), (0.375, 0.1), (0.36666667, 0.1), (0.36666667, 0.083333336), (0.36666667, 0.083333336), (0.36666667, 0.1), (0.35833332, 0.1), (0.35833332, 0.083333336), (0.35833332, 0.083333336), (0.35833332, 0.1), (0.35, 0.1), (0.35, 0.083333336), (0.35, 0.083333336), (0.35, 0.1), (0.34166667, 0.1), (0.34166667, 0.083333336), (0.34166667, 0.083333336), (0.34166667, 0.1), (0.33333334, 0.1), (0.33333334, 0.083333336), (0.33333334, 0.083333336), (0.33333334, 0.1), (0.325, 0.1), (0.325, 0.083333336), (0.325, 0.083333336), (0.325, 0.1), (0.31666666, 0.1), (0.31666666, 0.083333336), (0.31666666, 0.083333336), (0.31666666, 0.1), (0.30833334, 0.1), (0.30833334, 0.083333336), (0.30833334, 0.083333336), (0.30833334, 0.1), (0.3, 0.1), (0.3, 0.083333336), (0.3, 0.083333336), (0.3, 0.1), (0.29166666, 0.1), (0.29166666, 0.083333336), (0.29166666, 0.083333336), (0.29166666, 0.1), (0.28333333, 0.1), (0.28333333, 0.083333336), (0.28333333, 0.083333336), (0.28333333, 0.1), (0.275, 0.1), (0.275, 0.083333336), (0.275, 0.083333336), (0.275, 0.1), (0.26666668, 0.1), (0.26666668, 0.083333336), (0.26666668, 0.083333336), (0.26666668, 0.1), (0.25833333, 0.1), (0.25833333, 0.083333336), (0.25833333, 0.083333336), (0.25833333, 0.1), (0.25, 0.1), (0.25, 0.083333336), (0.25, 0.083333336), (0.25, 0.1), (0.24166666, 0.1), (0.24166666, 0.083333336), (0.24166666, 0.083333336), (0.24166666, 0.1), (0.23333333, 0.1), (0.23333333, 0.083333336), (0.23333333, 0.083333336), (0.23333333, 0.1), (0.225, 0.1), (0.225, 0.083333336), (0.225, 0.083333336), (0.225, 0.1), (0.21666667, 0.1), (0.21666667, 0.083333336), (0.21666667, 0.083333336), (0.21666667, 0.1), (0.20833333, 0.1), (0.20833333, 0.083333336), (0.20833333, 0.083333336), (0.20833333, 0.1), (0.2, 0.1), (0.2, 0.083333336), (0.2, 0.083333336), (0.2, 0.1), (0.19166666, 0.1), (0.19166666, 0.083333336), (0.19166666, 0.083333336), (0.19166666, 0.1), (0.18333334, 0.1), (0.18333334, 0.083333336), (0.18333334, 0.083333336), (0.18333334, 0.1), (0.175, 0.1), (0.175, 0.083333336), (0.175, 0.083333336), (0.175, 0.1), (0.16666667, 0.1), (0.16666667, 0.083333336), (0.16666667, 0.083333336), (0.16666667, 0.1), (0.15833333, 0.1), (0.15833333, 0.083333336), (0.15833333, 0.083333336), (0.15833333, 0.1), (0.15, 0.1), (0.15, 0.083333336), (0.15, 0.083333336), (0.15, 0.1), (0.14166667, 0.1), (0.14166667, 0.083333336), (0.14166667, 0.083333336), (0.14166667, 0.1), (0.13333334, 0.1), (0.13333334, 0.083333336), (0.13333334, 0.083333336), (0.13333334, 0.1), (0.125, 0.1), (0.125, 0.083333336), (0.125, 0.083333336), (0.125, 0.1), (0.11666667, 0.1), (0.11666667, 0.083333336), (0.11666667, 0.083333336), (0.11666667, 0.1), (0.108333334, 0.1), (0.108333334, 0.083333336), (0.108333334, 0.083333336), (0.108333334, 0.1), (0.1, 0.1), (0.1, 0.083333336), (0.1, 0.083333336), (0.1, 0.1), (0.09166667, 0.1), (0.09166667, 0.083333336), (0.09166667, 0.083333336), (0.09166667, 0.1), (0.083333336, 0.1), (0.083333336, 0.083333336), (0.083333336, 0.083333336), (0.083333336, 0.1), (0.075, 0.1), (0.075, 0.083333336), (0.075, 0.083333336), (0.075, 0.1), (0.06666667, 0.1), (0.06666667, 0.083333336), (0.06666667, 0.083333336), (0.06666667, 0.1), (0.058333334, 0.1), (0.058333334, 0.083333336), (0.058333334, 0.083333336), (0.058333334, 0.1), (0.05, 0.1), (0.05, 0.083333336), (0.05, 0.083333336), (0.05, 0.1), (0.041666668, 0.1), (0.041666668, 0.083333336), (0.041666668, 0.083333336), (0.041666668, 0.1), (0.033333335, 0.1), (0.033333335, 0.083333336), (0.033333335, 0.083333336), (0.033333335, 0.1), (0.025, 0.1), (0.025, 0.083333336), (0.025, 0.083333336), (0.025, 0.1), (0.016666668, 0.1), (0.016666668, 0.083333336), (0.016666668, 0.083333336), (0.016666668, 0.1), (0.008333334, 0.1), (0.008333334, 0.083333336), (0.008333334, 0.083333336), (0.008333334, 0.1), (0, 0.1), (0, 0.083333336), (1, 0.1), (1, 0.11666667), (0.9916667, 0.11666667), (0.9916667, 0.1), (0.9916667, 0.1), (0.9916667, 0.11666667), (0.98333335, 0.11666667), (0.98333335, 0.1), (0.98333335, 0.1), (0.98333335, 0.11666667), (0.975, 0.11666667), (0.975, 0.1), (0.975, 0.1), (0.975, 0.11666667), (0.96666664, 0.11666667), (0.96666664, 0.1), (0.96666664, 0.1), (0.96666664, 0.11666667), (0.9583333, 0.11666667), (0.9583333, 0.1), (0.9583333, 0.1), (0.9583333, 0.11666667), (0.95, 0.11666667), (0.95, 0.1), (0.95, 0.1), (0.95, 0.11666667), (0.94166666, 0.11666667), (0.94166666, 0.1), (0.94166666, 0.1), (0.94166666, 0.11666667), (0.93333334, 0.11666667), (0.93333334, 0.1), (0.93333334, 0.1), (0.93333334, 0.11666667), (0.925, 0.11666667), (0.925, 0.1), (0.925, 0.1), (0.925, 0.11666667), (0.9166667, 0.11666667), (0.9166667, 0.1), (0.9166667, 0.1), (0.9166667, 0.11666667), (0.90833336, 0.11666667), (0.90833336, 0.1), (0.90833336, 0.1), (0.90833336, 0.11666667), (0.9, 0.11666667), (0.9, 0.1), (0.9, 0.1), (0.9, 0.11666667), (0.89166665, 0.11666667), (0.89166665, 0.1), (0.89166665, 0.1), (0.89166665, 0.11666667), (0.8833333, 0.11666667), (0.8833333, 0.1), (0.8833333, 0.1), (0.8833333, 0.11666667), (0.875, 0.11666667), (0.875, 0.1), (0.875, 0.1), (0.875, 0.11666667), (0.8666667, 0.11666667), (0.8666667, 0.1), (0.8666667, 0.1), (0.8666667, 0.11666667), (0.85833335, 0.11666667), (0.85833335, 0.1), (0.85833335, 0.1), (0.85833335, 0.11666667), (0.85, 0.11666667), (0.85, 0.1), (0.85, 0.1), (0.85, 0.11666667), (0.84166664, 0.11666667), (0.84166664, 0.1), (0.84166664, 0.1), (0.84166664, 0.11666667), (0.8333333, 0.11666667), (0.8333333, 0.1), (0.8333333, 0.1), (0.8333333, 0.11666667), (0.825, 0.11666667), (0.825, 0.1), (0.825, 0.1), (0.825, 0.11666667), (0.81666666, 0.11666667), (0.81666666, 0.1), (0.81666666, 0.1), (0.81666666, 0.11666667), (0.80833334, 0.11666667), (0.80833334, 0.1), (0.80833334, 0.1), (0.80833334, 0.11666667), (0.8, 0.11666667), (0.8, 0.1), (0.8, 0.1), (0.8, 0.11666667), (0.7916667, 0.11666667), (0.7916667, 0.1), (0.7916667, 0.1), (0.7916667, 0.11666667), (0.78333336, 0.11666667), (0.78333336, 0.1), (0.78333336, 0.1), (0.78333336, 0.11666667), (0.775, 0.11666667), (0.775, 0.1), (0.775, 0.1), (0.775, 0.11666667), (0.76666665, 0.11666667), (0.76666665, 0.1), (0.76666665, 0.1), (0.76666665, 0.11666667), (0.7583333, 0.11666667), (0.7583333, 0.1), (0.7583333, 0.1), (0.7583333, 0.11666667), (0.75, 0.11666667), (0.75, 0.1), (0.75, 0.1), (0.75, 0.11666667), (0.7416667, 0.11666667), (0.7416667, 0.1), (0.7416667, 0.1), (0.7416667, 0.11666667), (0.73333335, 0.11666667), (0.73333335, 0.1), (0.73333335, 0.1), (0.73333335, 0.11666667), (0.725, 0.11666667), (0.725, 0.1), (0.725, 0.1), (0.725, 0.11666667), (0.71666664, 0.11666667), (0.71666664, 0.1), (0.71666664, 0.1), (0.71666664, 0.11666667), (0.7083333, 0.11666667), (0.7083333, 0.1), (0.7083333, 0.1), (0.7083333, 0.11666667), (0.7, 0.11666667), (0.7, 0.1), (0.7, 0.1), (0.7, 0.11666667), (0.69166666, 0.11666667), (0.69166666, 0.1), (0.69166666, 0.1), (0.69166666, 0.11666667), (0.68333334, 0.11666667), (0.68333334, 0.1), (0.68333334, 0.1), (0.68333334, 0.11666667), (0.675, 0.11666667), (0.675, 0.1), (0.675, 0.1), (0.675, 0.11666667), (0.6666667, 0.11666667), (0.6666667, 0.1), (0.6666667, 0.1), (0.6666667, 0.11666667), (0.65833336, 0.11666667), (0.65833336, 0.1), (0.65833336, 0.1), (0.65833336, 0.11666667), (0.65, 0.11666667), (0.65, 0.1), (0.65, 0.1), (0.65, 0.11666667), (0.64166665, 0.11666667), (0.64166665, 0.1), (0.64166665, 0.1), (0.64166665, 0.11666667), (0.6333333, 0.11666667), (0.6333333, 0.1), (0.6333333, 0.1), (0.6333333, 0.11666667), (0.625, 0.11666667), (0.625, 0.1), (0.625, 0.1), (0.625, 0.11666667), (0.6166667, 0.11666667), (0.6166667, 0.1), (0.6166667, 0.1), (0.6166667, 0.11666667), (0.60833335, 0.11666667), (0.60833335, 0.1), (0.60833335, 0.1), (0.60833335, 0.11666667), (0.6, 0.11666667), (0.6, 0.1), (0.6, 0.1), (0.6, 0.11666667), (0.59166664, 0.11666667), (0.59166664, 0.1), (0.59166664, 0.1), (0.59166664, 0.11666667), (0.5833333, 0.11666667), (0.5833333, 0.1), (0.5833333, 0.1), (0.5833333, 0.11666667), (0.575, 0.11666667), (0.575, 0.1), (0.575, 0.1), (0.575, 0.11666667), (0.56666666, 0.11666667), (0.56666666, 0.1), (0.56666666, 0.1), (0.56666666, 0.11666667), (0.55833334, 0.11666667), (0.55833334, 0.1), (0.55833334, 0.1), (0.55833334, 0.11666667), (0.55, 0.11666667), (0.55, 0.1), (0.55, 0.1), (0.55, 0.11666667), (0.5416667, 0.11666667), (0.5416667, 0.1), (0.5416667, 0.1), (0.5416667, 0.11666667), (0.53333336, 0.11666667), (0.53333336, 0.1), (0.53333336, 0.1), (0.53333336, 0.11666667), (0.525, 0.11666667), (0.525, 0.1), (0.525, 0.1), (0.525, 0.11666667), (0.51666665, 0.11666667), (0.51666665, 0.1), (0.51666665, 0.1), (0.51666665, 0.11666667), (0.5083333, 0.11666667), (0.5083333, 0.1), (0.5083333, 0.1), (0.5083333, 0.11666667), (0.5, 0.11666667), (0.5, 0.1), (0.5, 0.1), (0.5, 0.11666667), (0.49166667, 0.11666667), (0.49166667, 0.1), (0.49166667, 0.1), (0.49166667, 0.11666667), (0.48333332, 0.11666667), (0.48333332, 0.1), (0.48333332, 0.1), (0.48333332, 0.11666667), (0.475, 0.11666667), (0.475, 0.1), (0.475, 0.1), (0.475, 0.11666667), (0.46666667, 0.11666667), (0.46666667, 0.1), (0.46666667, 0.1), (0.46666667, 0.11666667), (0.45833334, 0.11666667), (0.45833334, 0.1), (0.45833334, 0.1), (0.45833334, 0.11666667), (0.45, 0.11666667), (0.45, 0.1), (0.45, 0.1), (0.45, 0.11666667), (0.44166666, 0.11666667), (0.44166666, 0.1), (0.44166666, 0.1), (0.44166666, 0.11666667), (0.43333334, 0.11666667), (0.43333334, 0.1), (0.43333334, 0.1), (0.43333334, 0.11666667), (0.425, 0.11666667), (0.425, 0.1), (0.425, 0.1), (0.425, 0.11666667), (0.41666666, 0.11666667), (0.41666666, 0.1), (0.41666666, 0.1), (0.41666666, 0.11666667), (0.40833333, 0.11666667), (0.40833333, 0.1), (0.40833333, 0.1), (0.40833333, 0.11666667), (0.4, 0.11666667), (0.4, 0.1), (0.4, 0.1), (0.4, 0.11666667), (0.39166668, 0.11666667), (0.39166668, 0.1), (0.39166668, 0.1), (0.39166668, 0.11666667), (0.38333333, 0.11666667), (0.38333333, 0.1), (0.38333333, 0.1), (0.38333333, 0.11666667), (0.375, 0.11666667), (0.375, 0.1), (0.375, 0.1), (0.375, 0.11666667), (0.36666667, 0.11666667), (0.36666667, 0.1), (0.36666667, 0.1), (0.36666667, 0.11666667), (0.35833332, 0.11666667), (0.35833332, 0.1), (0.35833332, 0.1), (0.35833332, 0.11666667), (0.35, 0.11666667), (0.35, 0.1), (0.35, 0.1), (0.35, 0.11666667), (0.34166667, 0.11666667), (0.34166667, 0.1), (0.34166667, 0.1), (0.34166667, 0.11666667), (0.33333334, 0.11666667), (0.33333334, 0.1), (0.33333334, 0.1), (0.33333334, 0.11666667), (0.325, 0.11666667), (0.325, 0.1), (0.325, 0.1), (0.325, 0.11666667), (0.31666666, 0.11666667), (0.31666666, 0.1), (0.31666666, 0.1), (0.31666666, 0.11666667), (0.30833334, 0.11666667), (0.30833334, 0.1), (0.30833334, 0.1), (0.30833334, 0.11666667), (0.3, 0.11666667), (0.3, 0.1), (0.3, 0.1), (0.3, 0.11666667), (0.29166666, 0.11666667), (0.29166666, 0.1), (0.29166666, 0.1), (0.29166666, 0.11666667), (0.28333333, 0.11666667), (0.28333333, 0.1), (0.28333333, 0.1), (0.28333333, 0.11666667), (0.275, 0.11666667), (0.275, 0.1), (0.275, 0.1), (0.275, 0.11666667), (0.26666668, 0.11666667), (0.26666668, 0.1), (0.26666668, 0.1), (0.26666668, 0.11666667), (0.25833333, 0.11666667), (0.25833333, 0.1), (0.25833333, 0.1), (0.25833333, 0.11666667), (0.25, 0.11666667), (0.25, 0.1), (0.25, 0.1), (0.25, 0.11666667), (0.24166666, 0.11666667), (0.24166666, 0.1), (0.24166666, 0.1), (0.24166666, 0.11666667), (0.23333333, 0.11666667), (0.23333333, 0.1), (0.23333333, 0.1), (0.23333333, 0.11666667), (0.225, 0.11666667), (0.225, 0.1), (0.225, 0.1), (0.225, 0.11666667), (0.21666667, 0.11666667), (0.21666667, 0.1), (0.21666667, 0.1), (0.21666667, 0.11666667), (0.20833333, 0.11666667), (0.20833333, 0.1), (0.20833333, 0.1), (0.20833333, 0.11666667), (0.2, 0.11666667), (0.2, 0.1), (0.2, 0.1), (0.2, 0.11666667), (0.19166666, 0.11666667), (0.19166666, 0.1), (0.19166666, 0.1), (0.19166666, 0.11666667), (0.18333334, 0.11666667), (0.18333334, 0.1), (0.18333334, 0.1), (0.18333334, 0.11666667), (0.175, 0.11666667), (0.175, 0.1), (0.175, 0.1), (0.175, 0.11666667), (0.16666667, 0.11666667), (0.16666667, 0.1), (0.16666667, 0.1), (0.16666667, 0.11666667), (0.15833333, 0.11666667), (0.15833333, 0.1), (0.15833333, 0.1), (0.15833333, 0.11666667), (0.15, 0.11666667), (0.15, 0.1), (0.15, 0.1), (0.15, 0.11666667), (0.14166667, 0.11666667), (0.14166667, 0.1), (0.14166667, 0.1), (0.14166667, 0.11666667), (0.13333334, 0.11666667), (0.13333334, 0.1), (0.13333334, 0.1), (0.13333334, 0.11666667), (0.125, 0.11666667), (0.125, 0.1), (0.125, 0.1), (0.125, 0.11666667), (0.11666667, 0.11666667), (0.11666667, 0.1), (0.11666667, 0.1), (0.11666667, 0.11666667), (0.108333334, 0.11666667), (0.108333334, 0.1), (0.108333334, 0.1), (0.108333334, 0.11666667), (0.1, 0.11666667), (0.1, 0.1), (0.1, 0.1), (0.1, 0.11666667), (0.09166667, 0.11666667), (0.09166667, 0.1), (0.09166667, 0.1), (0.09166667, 0.11666667), (0.083333336, 0.11666667), (0.083333336, 0.1), (0.083333336, 0.1), (0.083333336, 0.11666667), (0.075, 0.11666667), (0.075, 0.1), (0.075, 0.1), (0.075, 0.11666667), (0.06666667, 0.11666667), (0.06666667, 0.1), (0.06666667, 0.1), (0.06666667, 0.11666667), (0.058333334, 0.11666667), (0.058333334, 0.1), (0.058333334, 0.1), (0.058333334, 0.11666667), (0.05, 0.11666667), (0.05, 0.1), (0.05, 0.1), (0.05, 0.11666667), (0.041666668, 0.11666667), (0.041666668, 0.1), (0.041666668, 0.1), (0.041666668, 0.11666667), (0.033333335, 0.11666667), (0.033333335, 0.1), (0.033333335, 0.1), (0.033333335, 0.11666667), (0.025, 0.11666667), (0.025, 0.1), (0.025, 0.1), (0.025, 0.11666667), (0.016666668, 0.11666667), (0.016666668, 0.1), (0.016666668, 0.1), (0.016666668, 0.11666667), (0.008333334, 0.11666667), (0.008333334, 0.1), (0.008333334, 0.1), (0.008333334, 0.11666667), (0, 0.11666667), (0, 0.1), (1, 0.11666667), (1, 0.13333334), (0.9916667, 0.13333334), (0.9916667, 0.11666667), (0.9916667, 0.11666667), (0.9916667, 0.13333334), (0.98333335, 0.13333334), (0.98333335, 0.11666667), (0.98333335, 0.11666667), (0.98333335, 0.13333334), (0.975, 0.13333334), (0.975, 0.11666667), (0.975, 0.11666667), (0.975, 0.13333334), (0.96666664, 0.13333334), (0.96666664, 0.11666667), (0.96666664, 0.11666667), (0.96666664, 0.13333334), (0.9583333, 0.13333334), (0.9583333, 0.11666667), (0.9583333, 0.11666667), (0.9583333, 0.13333334), (0.95, 0.13333334), (0.95, 0.11666667), (0.95, 0.11666667), (0.95, 0.13333334), (0.94166666, 0.13333334), (0.94166666, 0.11666667), (0.94166666, 0.11666667), (0.94166666, 0.13333334), (0.93333334, 0.13333334), (0.93333334, 0.11666667), (0.93333334, 0.11666667), (0.93333334, 0.13333334), (0.925, 0.13333334), (0.925, 0.11666667), (0.925, 0.11666667), (0.925, 0.13333334), (0.9166667, 0.13333334), (0.9166667, 0.11666667), (0.9166667, 0.11666667), (0.9166667, 0.13333334), (0.90833336, 0.13333334), (0.90833336, 0.11666667), (0.90833336, 0.11666667), (0.90833336, 0.13333334), (0.9, 0.13333334), (0.9, 0.11666667), (0.9, 0.11666667), (0.9, 0.13333334), (0.89166665, 0.13333334), (0.89166665, 0.11666667), (0.89166665, 0.11666667), (0.89166665, 0.13333334), (0.8833333, 0.13333334), (0.8833333, 0.11666667), (0.8833333, 0.11666667), (0.8833333, 0.13333334), (0.875, 0.13333334), (0.875, 0.11666667), (0.875, 0.11666667), (0.875, 0.13333334), (0.8666667, 0.13333334), (0.8666667, 0.11666667), (0.8666667, 0.11666667), (0.8666667, 0.13333334), (0.85833335, 0.13333334), (0.85833335, 0.11666667), (0.85833335, 0.11666667), (0.85833335, 0.13333334), (0.85, 0.13333334), (0.85, 0.11666667), (0.85, 0.11666667), (0.85, 0.13333334), (0.84166664, 0.13333334), (0.84166664, 0.11666667), (0.84166664, 0.11666667), (0.84166664, 0.13333334), (0.8333333, 0.13333334), (0.8333333, 0.11666667), (0.8333333, 0.11666667), (0.8333333, 0.13333334), (0.825, 0.13333334), (0.825, 0.11666667), (0.825, 0.11666667), (0.825, 0.13333334), (0.81666666, 0.13333334), (0.81666666, 0.11666667), (0.81666666, 0.11666667), (0.81666666, 0.13333334), (0.80833334, 0.13333334), (0.80833334, 0.11666667), (0.80833334, 0.11666667), (0.80833334, 0.13333334), (0.8, 0.13333334), (0.8, 0.11666667), (0.8, 0.11666667), (0.8, 0.13333334), (0.7916667, 0.13333334), (0.7916667, 0.11666667), (0.7916667, 0.11666667), (0.7916667, 0.13333334), (0.78333336, 0.13333334), (0.78333336, 0.11666667), (0.78333336, 0.11666667), (0.78333336, 0.13333334), (0.775, 0.13333334), (0.775, 0.11666667), (0.775, 0.11666667), (0.775, 0.13333334), (0.76666665, 0.13333334), (0.76666665, 0.11666667), (0.76666665, 0.11666667), (0.76666665, 0.13333334), (0.7583333, 0.13333334), (0.7583333, 0.11666667), (0.7583333, 0.11666667), (0.7583333, 0.13333334), (0.75, 0.13333334), (0.75, 0.11666667), (0.75, 0.11666667), (0.75, 0.13333334), (0.7416667, 0.13333334), (0.7416667, 0.11666667), (0.7416667, 0.11666667), (0.7416667, 0.13333334), (0.73333335, 0.13333334), (0.73333335, 0.11666667), (0.73333335, 0.11666667), (0.73333335, 0.13333334), (0.725, 0.13333334), (0.725, 0.11666667), (0.725, 0.11666667), (0.725, 0.13333334), (0.71666664, 0.13333334), (0.71666664, 0.11666667), (0.71666664, 0.11666667), (0.71666664, 0.13333334), (0.7083333, 0.13333334), (0.7083333, 0.11666667), (0.7083333, 0.11666667), (0.7083333, 0.13333334), (0.7, 0.13333334), (0.7, 0.11666667), (0.7, 0.11666667), (0.7, 0.13333334), (0.69166666, 0.13333334), (0.69166666, 0.11666667), (0.69166666, 0.11666667), (0.69166666, 0.13333334), (0.68333334, 0.13333334), (0.68333334, 0.11666667), (0.68333334, 0.11666667), (0.68333334, 0.13333334), (0.675, 0.13333334), (0.675, 0.11666667), (0.675, 0.11666667), (0.675, 0.13333334), (0.6666667, 0.13333334), (0.6666667, 0.11666667), (0.6666667, 0.11666667), (0.6666667, 0.13333334), (0.65833336, 0.13333334), (0.65833336, 0.11666667), (0.65833336, 0.11666667), (0.65833336, 0.13333334), (0.65, 0.13333334), (0.65, 0.11666667), (0.65, 0.11666667), (0.65, 0.13333334), (0.64166665, 0.13333334), (0.64166665, 0.11666667), (0.64166665, 0.11666667), (0.64166665, 0.13333334), (0.6333333, 0.13333334), (0.6333333, 0.11666667), (0.6333333, 0.11666667), (0.6333333, 0.13333334), (0.625, 0.13333334), (0.625, 0.11666667), (0.625, 0.11666667), (0.625, 0.13333334), (0.6166667, 0.13333334), (0.6166667, 0.11666667), (0.6166667, 0.11666667), (0.6166667, 0.13333334), (0.60833335, 0.13333334), (0.60833335, 0.11666667), (0.60833335, 0.11666667), (0.60833335, 0.13333334), (0.6, 0.13333334), (0.6, 0.11666667), (0.6, 0.11666667), (0.6, 0.13333334), (0.59166664, 0.13333334), (0.59166664, 0.11666667), (0.59166664, 0.11666667), (0.59166664, 0.13333334), (0.5833333, 0.13333334), (0.5833333, 0.11666667), (0.5833333, 0.11666667), (0.5833333, 0.13333334), (0.575, 0.13333334), (0.575, 0.11666667), (0.575, 0.11666667), (0.575, 0.13333334), (0.56666666, 0.13333334), (0.56666666, 0.11666667), (0.56666666, 0.11666667), (0.56666666, 0.13333334), (0.55833334, 0.13333334), (0.55833334, 0.11666667), (0.55833334, 0.11666667), (0.55833334, 0.13333334), (0.55, 0.13333334), (0.55, 0.11666667), (0.55, 0.11666667), (0.55, 0.13333334), (0.5416667, 0.13333334), (0.5416667, 0.11666667), (0.5416667, 0.11666667), (0.5416667, 0.13333334), (0.53333336, 0.13333334), (0.53333336, 0.11666667), (0.53333336, 0.11666667), (0.53333336, 0.13333334), (0.525, 0.13333334), (0.525, 0.11666667), (0.525, 0.11666667), (0.525, 0.13333334), (0.51666665, 0.13333334), (0.51666665, 0.11666667), (0.51666665, 0.11666667), (0.51666665, 0.13333334), (0.5083333, 0.13333334), (0.5083333, 0.11666667), (0.5083333, 0.11666667), (0.5083333, 0.13333334), (0.5, 0.13333334), (0.5, 0.11666667), (0.5, 0.11666667), (0.5, 0.13333334), (0.49166667, 0.13333334), (0.49166667, 0.11666667), (0.49166667, 0.11666667), (0.49166667, 0.13333334), (0.48333332, 0.13333334), (0.48333332, 0.11666667), (0.48333332, 0.11666667), (0.48333332, 0.13333334), (0.475, 0.13333334), (0.475, 0.11666667), (0.475, 0.11666667), (0.475, 0.13333334), (0.46666667, 0.13333334), (0.46666667, 0.11666667), (0.46666667, 0.11666667), (0.46666667, 0.13333334), (0.45833334, 0.13333334), (0.45833334, 0.11666667), (0.45833334, 0.11666667), (0.45833334, 0.13333334), (0.45, 0.13333334), (0.45, 0.11666667), (0.45, 0.11666667), (0.45, 0.13333334), (0.44166666, 0.13333334), (0.44166666, 0.11666667), (0.44166666, 0.11666667), (0.44166666, 0.13333334), (0.43333334, 0.13333334), (0.43333334, 0.11666667), (0.43333334, 0.11666667), (0.43333334, 0.13333334), (0.425, 0.13333334), (0.425, 0.11666667), (0.425, 0.11666667), (0.425, 0.13333334), (0.41666666, 0.13333334), (0.41666666, 0.11666667), (0.41666666, 0.11666667), (0.41666666, 0.13333334), (0.40833333, 0.13333334), (0.40833333, 0.11666667), (0.40833333, 0.11666667), (0.40833333, 0.13333334), (0.4, 0.13333334), (0.4, 0.11666667), (0.4, 0.11666667), (0.4, 0.13333334), (0.39166668, 0.13333334), (0.39166668, 0.11666667), (0.39166668, 0.11666667), (0.39166668, 0.13333334), (0.38333333, 0.13333334), (0.38333333, 0.11666667), (0.38333333, 0.11666667), (0.38333333, 0.13333334), (0.375, 0.13333334), (0.375, 0.11666667), (0.375, 0.11666667), (0.375, 0.13333334), (0.36666667, 0.13333334), (0.36666667, 0.11666667), (0.36666667, 0.11666667), (0.36666667, 0.13333334), (0.35833332, 0.13333334), (0.35833332, 0.11666667), (0.35833332, 0.11666667), (0.35833332, 0.13333334), (0.35, 0.13333334), (0.35, 0.11666667), (0.35, 0.11666667), (0.35, 0.13333334), (0.34166667, 0.13333334), (0.34166667, 0.11666667), (0.34166667, 0.11666667), (0.34166667, 0.13333334), (0.33333334, 0.13333334), (0.33333334, 0.11666667), (0.33333334, 0.11666667), (0.33333334, 0.13333334), (0.325, 0.13333334), (0.325, 0.11666667), (0.325, 0.11666667), (0.325, 0.13333334), (0.31666666, 0.13333334), (0.31666666, 0.11666667), (0.31666666, 0.11666667), (0.31666666, 0.13333334), (0.30833334, 0.13333334), (0.30833334, 0.11666667), (0.30833334, 0.11666667), (0.30833334, 0.13333334), (0.3, 0.13333334), (0.3, 0.11666667), (0.3, 0.11666667), (0.3, 0.13333334), (0.29166666, 0.13333334), (0.29166666, 0.11666667), (0.29166666, 0.11666667), (0.29166666, 0.13333334), (0.28333333, 0.13333334), (0.28333333, 0.11666667), (0.28333333, 0.11666667), (0.28333333, 0.13333334), (0.275, 0.13333334), (0.275, 0.11666667), (0.275, 0.11666667), (0.275, 0.13333334), (0.26666668, 0.13333334), (0.26666668, 0.11666667), (0.26666668, 0.11666667), (0.26666668, 0.13333334), (0.25833333, 0.13333334), (0.25833333, 0.11666667), (0.25833333, 0.11666667), (0.25833333, 0.13333334), (0.25, 0.13333334), (0.25, 0.11666667), (0.25, 0.11666667), (0.25, 0.13333334), (0.24166666, 0.13333334), (0.24166666, 0.11666667), (0.24166666, 0.11666667), (0.24166666, 0.13333334), (0.23333333, 0.13333334), (0.23333333, 0.11666667), (0.23333333, 0.11666667), (0.23333333, 0.13333334), (0.225, 0.13333334), (0.225, 0.11666667), (0.225, 0.11666667), (0.225, 0.13333334), (0.21666667, 0.13333334), (0.21666667, 0.11666667), (0.21666667, 0.11666667), (0.21666667, 0.13333334), (0.20833333, 0.13333334), (0.20833333, 0.11666667), (0.20833333, 0.11666667), (0.20833333, 0.13333334), (0.2, 0.13333334), (0.2, 0.11666667), (0.2, 0.11666667), (0.2, 0.13333334), (0.19166666, 0.13333334), (0.19166666, 0.11666667), (0.19166666, 0.11666667), (0.19166666, 0.13333334), (0.18333334, 0.13333334), (0.18333334, 0.11666667), (0.18333334, 0.11666667), (0.18333334, 0.13333334), (0.175, 0.13333334), (0.175, 0.11666667), (0.175, 0.11666667), (0.175, 0.13333334), (0.16666667, 0.13333334), (0.16666667, 0.11666667), (0.16666667, 0.11666667), (0.16666667, 0.13333334), (0.15833333, 0.13333334), (0.15833333, 0.11666667), (0.15833333, 0.11666667), (0.15833333, 0.13333334), (0.15, 0.13333334), (0.15, 0.11666667), (0.15, 0.11666667), (0.15, 0.13333334), (0.14166667, 0.13333334), (0.14166667, 0.11666667), (0.14166667, 0.11666667), (0.14166667, 0.13333334), (0.13333334, 0.13333334), (0.13333334, 0.11666667), (0.13333334, 0.11666667), (0.13333334, 0.13333334), (0.125, 0.13333334), (0.125, 0.11666667), (0.125, 0.11666667), (0.125, 0.13333334), (0.11666667, 0.13333334), (0.11666667, 0.11666667), (0.11666667, 0.11666667), (0.11666667, 0.13333334), (0.108333334, 0.13333334), (0.108333334, 0.11666667), (0.108333334, 0.11666667), (0.108333334, 0.13333334), (0.1, 0.13333334), (0.1, 0.11666667), (0.1, 0.11666667), (0.1, 0.13333334), (0.09166667, 0.13333334), (0.09166667, 0.11666667), (0.09166667, 0.11666667), (0.09166667, 0.13333334), (0.083333336, 0.13333334), (0.083333336, 0.11666667), (0.083333336, 0.11666667), (0.083333336, 0.13333334), (0.075, 0.13333334), (0.075, 0.11666667), (0.075, 0.11666667), (0.075, 0.13333334), (0.06666667, 0.13333334), (0.06666667, 0.11666667), (0.06666667, 0.11666667), (0.06666667, 0.13333334), (0.058333334, 0.13333334), (0.058333334, 0.11666667), (0.058333334, 0.11666667), (0.058333334, 0.13333334), (0.05, 0.13333334), (0.05, 0.11666667), (0.05, 0.11666667), (0.05, 0.13333334), (0.041666668, 0.13333334), (0.041666668, 0.11666667), (0.041666668, 0.11666667), (0.041666668, 0.13333334), (0.033333335, 0.13333334), (0.033333335, 0.11666667), (0.033333335, 0.11666667), (0.033333335, 0.13333334), (0.025, 0.13333334), (0.025, 0.11666667), (0.025, 0.11666667), (0.025, 0.13333334), (0.016666668, 0.13333334), (0.016666668, 0.11666667), (0.016666668, 0.11666667), (0.016666668, 0.13333334), (0.008333334, 0.13333334), (0.008333334, 0.11666667), (0.008333334, 0.11666667), (0.008333334, 0.13333334), (0, 0.13333334), (0, 0.11666667), (1, 0.13333334), (1, 0.15), (0.9916667, 0.15), (0.9916667, 0.13333334), (0.9916667, 0.13333334), (0.9916667, 0.15), (0.98333335, 0.15), (0.98333335, 0.13333334), (0.98333335, 0.13333334), (0.98333335, 0.15), (0.975, 0.15), (0.975, 0.13333334), (0.975, 0.13333334), (0.975, 0.15), (0.96666664, 0.15), (0.96666664, 0.13333334), (0.96666664, 0.13333334), (0.96666664, 0.15), (0.9583333, 0.15), (0.9583333, 0.13333334), (0.9583333, 0.13333334), (0.9583333, 0.15), (0.95, 0.15), (0.95, 0.13333334), (0.95, 0.13333334), (0.95, 0.15), (0.94166666, 0.15), (0.94166666, 0.13333334), (0.94166666, 0.13333334), (0.94166666, 0.15), (0.93333334, 0.15), (0.93333334, 0.13333334), (0.93333334, 0.13333334), (0.93333334, 0.15), (0.925, 0.15), (0.925, 0.13333334), (0.925, 0.13333334), (0.925, 0.15), (0.9166667, 0.15), (0.9166667, 0.13333334), (0.9166667, 0.13333334), (0.9166667, 0.15), (0.90833336, 0.15), (0.90833336, 0.13333334), (0.90833336, 0.13333334), (0.90833336, 0.15), (0.9, 0.15), (0.9, 0.13333334), (0.9, 0.13333334), (0.9, 0.15), (0.89166665, 0.15), (0.89166665, 0.13333334), (0.89166665, 0.13333334), (0.89166665, 0.15), (0.8833333, 0.15), (0.8833333, 0.13333334), (0.8833333, 0.13333334), (0.8833333, 0.15), (0.875, 0.15), (0.875, 0.13333334), (0.875, 0.13333334), (0.875, 0.15), (0.8666667, 0.15), (0.8666667, 0.13333334), (0.8666667, 0.13333334), (0.8666667, 0.15), (0.85833335, 0.15), (0.85833335, 0.13333334), (0.85833335, 0.13333334), (0.85833335, 0.15), (0.85, 0.15), (0.85, 0.13333334), (0.85, 0.13333334), (0.85, 0.15), (0.84166664, 0.15), (0.84166664, 0.13333334), (0.84166664, 0.13333334), (0.84166664, 0.15), (0.8333333, 0.15), (0.8333333, 0.13333334), (0.8333333, 0.13333334), (0.8333333, 0.15), (0.825, 0.15), (0.825, 0.13333334), (0.825, 0.13333334), (0.825, 0.15), (0.81666666, 0.15), (0.81666666, 0.13333334), (0.81666666, 0.13333334), (0.81666666, 0.15), (0.80833334, 0.15), (0.80833334, 0.13333334), (0.80833334, 0.13333334), (0.80833334, 0.15), (0.8, 0.15), (0.8, 0.13333334), (0.8, 0.13333334), (0.8, 0.15), (0.7916667, 0.15), (0.7916667, 0.13333334), (0.7916667, 0.13333334), (0.7916667, 0.15), (0.78333336, 0.15), (0.78333336, 0.13333334), (0.78333336, 0.13333334), (0.78333336, 0.15), (0.775, 0.15), (0.775, 0.13333334), (0.775, 0.13333334), (0.775, 0.15), (0.76666665, 0.15), (0.76666665, 0.13333334), (0.76666665, 0.13333334), (0.76666665, 0.15), (0.7583333, 0.15), (0.7583333, 0.13333334), (0.7583333, 0.13333334), (0.7583333, 0.15), (0.75, 0.15), (0.75, 0.13333334), (0.75, 0.13333334), (0.75, 0.15), (0.7416667, 0.15), (0.7416667, 0.13333334), (0.7416667, 0.13333334), (0.7416667, 0.15), (0.73333335, 0.15), (0.73333335, 0.13333334), (0.73333335, 0.13333334), (0.73333335, 0.15), (0.725, 0.15), (0.725, 0.13333334), (0.725, 0.13333334), (0.725, 0.15), (0.71666664, 0.15), (0.71666664, 0.13333334), (0.71666664, 0.13333334), (0.71666664, 0.15), (0.7083333, 0.15), (0.7083333, 0.13333334), (0.7083333, 0.13333334), (0.7083333, 0.15), (0.7, 0.15), (0.7, 0.13333334), (0.7, 0.13333334), (0.7, 0.15), (0.69166666, 0.15), (0.69166666, 0.13333334), (0.69166666, 0.13333334), (0.69166666, 0.15), (0.68333334, 0.15), (0.68333334, 0.13333334), (0.68333334, 0.13333334), (0.68333334, 0.15), (0.675, 0.15), (0.675, 0.13333334), (0.675, 0.13333334), (0.675, 0.15), (0.6666667, 0.15), (0.6666667, 0.13333334), (0.6666667, 0.13333334), (0.6666667, 0.15), (0.65833336, 0.15), (0.65833336, 0.13333334), (0.65833336, 0.13333334), (0.65833336, 0.15), (0.65, 0.15), (0.65, 0.13333334), (0.65, 0.13333334), (0.65, 0.15), (0.64166665, 0.15), (0.64166665, 0.13333334), (0.64166665, 0.13333334), (0.64166665, 0.15), (0.6333333, 0.15), (0.6333333, 0.13333334), (0.6333333, 0.13333334), (0.6333333, 0.15), (0.625, 0.15), (0.625, 0.13333334), (0.625, 0.13333334), (0.625, 0.15), (0.6166667, 0.15), (0.6166667, 0.13333334), (0.6166667, 0.13333334), (0.6166667, 0.15), (0.60833335, 0.15), (0.60833335, 0.13333334), (0.60833335, 0.13333334), (0.60833335, 0.15), (0.6, 0.15), (0.6, 0.13333334), (0.6, 0.13333334), (0.6, 0.15), (0.59166664, 0.15), (0.59166664, 0.13333334), (0.59166664, 0.13333334), (0.59166664, 0.15), (0.5833333, 0.15), (0.5833333, 0.13333334), (0.5833333, 0.13333334), (0.5833333, 0.15), (0.575, 0.15), (0.575, 0.13333334), (0.575, 0.13333334), (0.575, 0.15), (0.56666666, 0.15), (0.56666666, 0.13333334), (0.56666666, 0.13333334), (0.56666666, 0.15), (0.55833334, 0.15), (0.55833334, 0.13333334), (0.55833334, 0.13333334), (0.55833334, 0.15), (0.55, 0.15), (0.55, 0.13333334), (0.55, 0.13333334), (0.55, 0.15), (0.5416667, 0.15), (0.5416667, 0.13333334), (0.5416667, 0.13333334), (0.5416667, 0.15), (0.53333336, 0.15), (0.53333336, 0.13333334), (0.53333336, 0.13333334), (0.53333336, 0.15), (0.525, 0.15), (0.525, 0.13333334), (0.525, 0.13333334), (0.525, 0.15), (0.51666665, 0.15), (0.51666665, 0.13333334), (0.51666665, 0.13333334), (0.51666665, 0.15), (0.5083333, 0.15), (0.5083333, 0.13333334), (0.5083333, 0.13333334), (0.5083333, 0.15), (0.5, 0.15), (0.5, 0.13333334), (0.5, 0.13333334), (0.5, 0.15), (0.49166667, 0.15), (0.49166667, 0.13333334), (0.49166667, 0.13333334), (0.49166667, 0.15), (0.48333332, 0.15), (0.48333332, 0.13333334), (0.48333332, 0.13333334), (0.48333332, 0.15), (0.475, 0.15), (0.475, 0.13333334), (0.475, 0.13333334), (0.475, 0.15), (0.46666667, 0.15), (0.46666667, 0.13333334), (0.46666667, 0.13333334), (0.46666667, 0.15), (0.45833334, 0.15), (0.45833334, 0.13333334), (0.45833334, 0.13333334), (0.45833334, 0.15), (0.45, 0.15), (0.45, 0.13333334), (0.45, 0.13333334), (0.45, 0.15), (0.44166666, 0.15), (0.44166666, 0.13333334), (0.44166666, 0.13333334), (0.44166666, 0.15), (0.43333334, 0.15), (0.43333334, 0.13333334), (0.43333334, 0.13333334), (0.43333334, 0.15), (0.425, 0.15), (0.425, 0.13333334), (0.425, 0.13333334), (0.425, 0.15), (0.41666666, 0.15), (0.41666666, 0.13333334), (0.41666666, 0.13333334), (0.41666666, 0.15), (0.40833333, 0.15), (0.40833333, 0.13333334), (0.40833333, 0.13333334), (0.40833333, 0.15), (0.4, 0.15), (0.4, 0.13333334), (0.4, 0.13333334), (0.4, 0.15), (0.39166668, 0.15), (0.39166668, 0.13333334), (0.39166668, 0.13333334), (0.39166668, 0.15), (0.38333333, 0.15), (0.38333333, 0.13333334), (0.38333333, 0.13333334), (0.38333333, 0.15), (0.375, 0.15), (0.375, 0.13333334), (0.375, 0.13333334), (0.375, 0.15), (0.36666667, 0.15), (0.36666667, 0.13333334), (0.36666667, 0.13333334), (0.36666667, 0.15), (0.35833332, 0.15), (0.35833332, 0.13333334), (0.35833332, 0.13333334), (0.35833332, 0.15), (0.35, 0.15), (0.35, 0.13333334), (0.35, 0.13333334), (0.35, 0.15), (0.34166667, 0.15), (0.34166667, 0.13333334), (0.34166667, 0.13333334), (0.34166667, 0.15), (0.33333334, 0.15), (0.33333334, 0.13333334), (0.33333334, 0.13333334), (0.33333334, 0.15), (0.325, 0.15), (0.325, 0.13333334), (0.325, 0.13333334), (0.325, 0.15), (0.31666666, 0.15), (0.31666666, 0.13333334), (0.31666666, 0.13333334), (0.31666666, 0.15), (0.30833334, 0.15), (0.30833334, 0.13333334), (0.30833334, 0.13333334), (0.30833334, 0.15), (0.3, 0.15), (0.3, 0.13333334), (0.3, 0.13333334), (0.3, 0.15), (0.29166666, 0.15), (0.29166666, 0.13333334), (0.29166666, 0.13333334), (0.29166666, 0.15), (0.28333333, 0.15), (0.28333333, 0.13333334), (0.28333333, 0.13333334), (0.28333333, 0.15), (0.275, 0.15), (0.275, 0.13333334), (0.275, 0.13333334), (0.275, 0.15), (0.26666668, 0.15), (0.26666668, 0.13333334), (0.26666668, 0.13333334), (0.26666668, 0.15), (0.25833333, 0.15), (0.25833333, 0.13333334), (0.25833333, 0.13333334), (0.25833333, 0.15), (0.25, 0.15), (0.25, 0.13333334), (0.25, 0.13333334), (0.25, 0.15), (0.24166666, 0.15), (0.24166666, 0.13333334), (0.24166666, 0.13333334), (0.24166666, 0.15), (0.23333333, 0.15), (0.23333333, 0.13333334), (0.23333333, 0.13333334), (0.23333333, 0.15), (0.225, 0.15), (0.225, 0.13333334), (0.225, 0.13333334), (0.225, 0.15), (0.21666667, 0.15), (0.21666667, 0.13333334), (0.21666667, 0.13333334), (0.21666667, 0.15), (0.20833333, 0.15), (0.20833333, 0.13333334), (0.20833333, 0.13333334), (0.20833333, 0.15), (0.2, 0.15), (0.2, 0.13333334), (0.2, 0.13333334), (0.2, 0.15), (0.19166666, 0.15), (0.19166666, 0.13333334), (0.19166666, 0.13333334), (0.19166666, 0.15), (0.18333334, 0.15), (0.18333334, 0.13333334), (0.18333334, 0.13333334), (0.18333334, 0.15), (0.175, 0.15), (0.175, 0.13333334), (0.175, 0.13333334), (0.175, 0.15), (0.16666667, 0.15), (0.16666667, 0.13333334), (0.16666667, 0.13333334), (0.16666667, 0.15), (0.15833333, 0.15), (0.15833333, 0.13333334), (0.15833333, 0.13333334), (0.15833333, 0.15), (0.15, 0.15), (0.15, 0.13333334), (0.15, 0.13333334), (0.15, 0.15), (0.14166667, 0.15), (0.14166667, 0.13333334), (0.14166667, 0.13333334), (0.14166667, 0.15), (0.13333334, 0.15), (0.13333334, 0.13333334), (0.13333334, 0.13333334), (0.13333334, 0.15), (0.125, 0.15), (0.125, 0.13333334), (0.125, 0.13333334), (0.125, 0.15), (0.11666667, 0.15), (0.11666667, 0.13333334), (0.11666667, 0.13333334), (0.11666667, 0.15), (0.108333334, 0.15), (0.108333334, 0.13333334), (0.108333334, 0.13333334), (0.108333334, 0.15), (0.1, 0.15), (0.1, 0.13333334), (0.1, 0.13333334), (0.1, 0.15), (0.09166667, 0.15), (0.09166667, 0.13333334), (0.09166667, 0.13333334), (0.09166667, 0.15), (0.083333336, 0.15), (0.083333336, 0.13333334), (0.083333336, 0.13333334), (0.083333336, 0.15), (0.075, 0.15), (0.075, 0.13333334), (0.075, 0.13333334), (0.075, 0.15), (0.06666667, 0.15), (0.06666667, 0.13333334), (0.06666667, 0.13333334), (0.06666667, 0.15), (0.058333334, 0.15), (0.058333334, 0.13333334), (0.058333334, 0.13333334), (0.058333334, 0.15), (0.05, 0.15), (0.05, 0.13333334), (0.05, 0.13333334), (0.05, 0.15), (0.041666668, 0.15), (0.041666668, 0.13333334), (0.041666668, 0.13333334), (0.041666668, 0.15), (0.033333335, 0.15), (0.033333335, 0.13333334), (0.033333335, 0.13333334), (0.033333335, 0.15), (0.025, 0.15), (0.025, 0.13333334), (0.025, 0.13333334), (0.025, 0.15), (0.016666668, 0.15), (0.016666668, 0.13333334), (0.016666668, 0.13333334), (0.016666668, 0.15), (0.008333334, 0.15), (0.008333334, 0.13333334), (0.008333334, 0.13333334), (0.008333334, 0.15), (0, 0.15), (0, 0.13333334), (1, 0.15), (1, 0.16666667), (0.9916667, 0.16666667), (0.9916667, 0.15), (0.9916667, 0.15), (0.9916667, 0.16666667), (0.98333335, 0.16666667), (0.98333335, 0.15), (0.98333335, 0.15), (0.98333335, 0.16666667), (0.975, 0.16666667), (0.975, 0.15), (0.975, 0.15), (0.975, 0.16666667), (0.96666664, 0.16666667), (0.96666664, 0.15), (0.96666664, 0.15), (0.96666664, 0.16666667), (0.9583333, 0.16666667), (0.9583333, 0.15), (0.9583333, 0.15), (0.9583333, 0.16666667), (0.95, 0.16666667), (0.95, 0.15), (0.95, 0.15), (0.95, 0.16666667), (0.94166666, 0.16666667), (0.94166666, 0.15), (0.94166666, 0.15), (0.94166666, 0.16666667), (0.93333334, 0.16666667), (0.93333334, 0.15), (0.93333334, 0.15), (0.93333334, 0.16666667), (0.925, 0.16666667), (0.925, 0.15), (0.925, 0.15), (0.925, 0.16666667), (0.9166667, 0.16666667), (0.9166667, 0.15), (0.9166667, 0.15), (0.9166667, 0.16666667), (0.90833336, 0.16666667), (0.90833336, 0.15), (0.90833336, 0.15), (0.90833336, 0.16666667), (0.9, 0.16666667), (0.9, 0.15), (0.9, 0.15), (0.9, 0.16666667), (0.89166665, 0.16666667), (0.89166665, 0.15), (0.89166665, 0.15), (0.89166665, 0.16666667), (0.8833333, 0.16666667), (0.8833333, 0.15), (0.8833333, 0.15), (0.8833333, 0.16666667), (0.875, 0.16666667), (0.875, 0.15), (0.875, 0.15), (0.875, 0.16666667), (0.8666667, 0.16666667), (0.8666667, 0.15), (0.8666667, 0.15), (0.8666667, 0.16666667), (0.85833335, 0.16666667), (0.85833335, 0.15), (0.85833335, 0.15), (0.85833335, 0.16666667), (0.85, 0.16666667), (0.85, 0.15), (0.85, 0.15), (0.85, 0.16666667), (0.84166664, 0.16666667), (0.84166664, 0.15), (0.84166664, 0.15), (0.84166664, 0.16666667), (0.8333333, 0.16666667), (0.8333333, 0.15), (0.8333333, 0.15), (0.8333333, 0.16666667), (0.825, 0.16666667), (0.825, 0.15), (0.825, 0.15), (0.825, 0.16666667), (0.81666666, 0.16666667), (0.81666666, 0.15), (0.81666666, 0.15), (0.81666666, 0.16666667), (0.80833334, 0.16666667), (0.80833334, 0.15), (0.80833334, 0.15), (0.80833334, 0.16666667), (0.8, 0.16666667), (0.8, 0.15), (0.8, 0.15), (0.8, 0.16666667), (0.7916667, 0.16666667), (0.7916667, 0.15), (0.7916667, 0.15), (0.7916667, 0.16666667), (0.78333336, 0.16666667), (0.78333336, 0.15), (0.78333336, 0.15), (0.78333336, 0.16666667), (0.775, 0.16666667), (0.775, 0.15), (0.775, 0.15), (0.775, 0.16666667), (0.76666665, 0.16666667), (0.76666665, 0.15), (0.76666665, 0.15), (0.76666665, 0.16666667), (0.7583333, 0.16666667), (0.7583333, 0.15), (0.7583333, 0.15), (0.7583333, 0.16666667), (0.75, 0.16666667), (0.75, 0.15), (0.75, 0.15), (0.75, 0.16666667), (0.7416667, 0.16666667), (0.7416667, 0.15), (0.7416667, 0.15), (0.7416667, 0.16666667), (0.73333335, 0.16666667), (0.73333335, 0.15), (0.73333335, 0.15), (0.73333335, 0.16666667), (0.725, 0.16666667), (0.725, 0.15), (0.725, 0.15), (0.725, 0.16666667), (0.71666664, 0.16666667), (0.71666664, 0.15), (0.71666664, 0.15), (0.71666664, 0.16666667), (0.7083333, 0.16666667), (0.7083333, 0.15), (0.7083333, 0.15), (0.7083333, 0.16666667), (0.7, 0.16666667), (0.7, 0.15), (0.7, 0.15), (0.7, 0.16666667), (0.69166666, 0.16666667), (0.69166666, 0.15), (0.69166666, 0.15), (0.69166666, 0.16666667), (0.68333334, 0.16666667), (0.68333334, 0.15), (0.68333334, 0.15), (0.68333334, 0.16666667), (0.675, 0.16666667), (0.675, 0.15), (0.675, 0.15), (0.675, 0.16666667), (0.6666667, 0.16666667), (0.6666667, 0.15), (0.6666667, 0.15), (0.6666667, 0.16666667), (0.65833336, 0.16666667), (0.65833336, 0.15), (0.65833336, 0.15), (0.65833336, 0.16666667), (0.65, 0.16666667), (0.65, 0.15), (0.65, 0.15), (0.65, 0.16666667), (0.64166665, 0.16666667), (0.64166665, 0.15), (0.64166665, 0.15), (0.64166665, 0.16666667), (0.6333333, 0.16666667), (0.6333333, 0.15), (0.6333333, 0.15), (0.6333333, 0.16666667), (0.625, 0.16666667), (0.625, 0.15), (0.625, 0.15), (0.625, 0.16666667), (0.6166667, 0.16666667), (0.6166667, 0.15), (0.6166667, 0.15), (0.6166667, 0.16666667), (0.60833335, 0.16666667), (0.60833335, 0.15), (0.60833335, 0.15), (0.60833335, 0.16666667), (0.6, 0.16666667), (0.6, 0.15), (0.6, 0.15), (0.6, 0.16666667), (0.59166664, 0.16666667), (0.59166664, 0.15), (0.59166664, 0.15), (0.59166664, 0.16666667), (0.5833333, 0.16666667), (0.5833333, 0.15), (0.5833333, 0.15), (0.5833333, 0.16666667), (0.575, 0.16666667), (0.575, 0.15), (0.575, 0.15), (0.575, 0.16666667), (0.56666666, 0.16666667), (0.56666666, 0.15), (0.56666666, 0.15), (0.56666666, 0.16666667), (0.55833334, 0.16666667), (0.55833334, 0.15), (0.55833334, 0.15), (0.55833334, 0.16666667), (0.55, 0.16666667), (0.55, 0.15), (0.55, 0.15), (0.55, 0.16666667), (0.5416667, 0.16666667), (0.5416667, 0.15), (0.5416667, 0.15), (0.5416667, 0.16666667), (0.53333336, 0.16666667), (0.53333336, 0.15), (0.53333336, 0.15), (0.53333336, 0.16666667), (0.525, 0.16666667), (0.525, 0.15), (0.525, 0.15), (0.525, 0.16666667), (0.51666665, 0.16666667), (0.51666665, 0.15), (0.51666665, 0.15), (0.51666665, 0.16666667), (0.5083333, 0.16666667), (0.5083333, 0.15), (0.5083333, 0.15), (0.5083333, 0.16666667), (0.5, 0.16666667), (0.5, 0.15), (0.5, 0.15), (0.5, 0.16666667), (0.49166667, 0.16666667), (0.49166667, 0.15), (0.49166667, 0.15), (0.49166667, 0.16666667), (0.48333332, 0.16666667), (0.48333332, 0.15), (0.48333332, 0.15), (0.48333332, 0.16666667), (0.475, 0.16666667), (0.475, 0.15), (0.475, 0.15), (0.475, 0.16666667), (0.46666667, 0.16666667), (0.46666667, 0.15), (0.46666667, 0.15), (0.46666667, 0.16666667), (0.45833334, 0.16666667), (0.45833334, 0.15), (0.45833334, 0.15), (0.45833334, 0.16666667), (0.45, 0.16666667), (0.45, 0.15), (0.45, 0.15), (0.45, 0.16666667), (0.44166666, 0.16666667), (0.44166666, 0.15), (0.44166666, 0.15), (0.44166666, 0.16666667), (0.43333334, 0.16666667), (0.43333334, 0.15), (0.43333334, 0.15), (0.43333334, 0.16666667), (0.425, 0.16666667), (0.425, 0.15), (0.425, 0.15), (0.425, 0.16666667), (0.41666666, 0.16666667), (0.41666666, 0.15), (0.41666666, 0.15), (0.41666666, 0.16666667), (0.40833333, 0.16666667), (0.40833333, 0.15), (0.40833333, 0.15), (0.40833333, 0.16666667), (0.4, 0.16666667), (0.4, 0.15), (0.4, 0.15), (0.4, 0.16666667), (0.39166668, 0.16666667), (0.39166668, 0.15), (0.39166668, 0.15), (0.39166668, 0.16666667), (0.38333333, 0.16666667), (0.38333333, 0.15), (0.38333333, 0.15), (0.38333333, 0.16666667), (0.375, 0.16666667), (0.375, 0.15), (0.375, 0.15), (0.375, 0.16666667), (0.36666667, 0.16666667), (0.36666667, 0.15), (0.36666667, 0.15), (0.36666667, 0.16666667), (0.35833332, 0.16666667), (0.35833332, 0.15), (0.35833332, 0.15), (0.35833332, 0.16666667), (0.35, 0.16666667), (0.35, 0.15), (0.35, 0.15), (0.35, 0.16666667), (0.34166667, 0.16666667), (0.34166667, 0.15), (0.34166667, 0.15), (0.34166667, 0.16666667), (0.33333334, 0.16666667), (0.33333334, 0.15), (0.33333334, 0.15), (0.33333334, 0.16666667), (0.325, 0.16666667), (0.325, 0.15), (0.325, 0.15), (0.325, 0.16666667), (0.31666666, 0.16666667), (0.31666666, 0.15), (0.31666666, 0.15), (0.31666666, 0.16666667), (0.30833334, 0.16666667), (0.30833334, 0.15), (0.30833334, 0.15), (0.30833334, 0.16666667), (0.3, 0.16666667), (0.3, 0.15), (0.3, 0.15), (0.3, 0.16666667), (0.29166666, 0.16666667), (0.29166666, 0.15), (0.29166666, 0.15), (0.29166666, 0.16666667), (0.28333333, 0.16666667), (0.28333333, 0.15), (0.28333333, 0.15), (0.28333333, 0.16666667), (0.275, 0.16666667), (0.275, 0.15), (0.275, 0.15), (0.275, 0.16666667), (0.26666668, 0.16666667), (0.26666668, 0.15), (0.26666668, 0.15), (0.26666668, 0.16666667), (0.25833333, 0.16666667), (0.25833333, 0.15), (0.25833333, 0.15), (0.25833333, 0.16666667), (0.25, 0.16666667), (0.25, 0.15), (0.25, 0.15), (0.25, 0.16666667), (0.24166666, 0.16666667), (0.24166666, 0.15), (0.24166666, 0.15), (0.24166666, 0.16666667), (0.23333333, 0.16666667), (0.23333333, 0.15), (0.23333333, 0.15), (0.23333333, 0.16666667), (0.225, 0.16666667), (0.225, 0.15), (0.225, 0.15), (0.225, 0.16666667), (0.21666667, 0.16666667), (0.21666667, 0.15), (0.21666667, 0.15), (0.21666667, 0.16666667), (0.20833333, 0.16666667), (0.20833333, 0.15), (0.20833333, 0.15), (0.20833333, 0.16666667), (0.2, 0.16666667), (0.2, 0.15), (0.2, 0.15), (0.2, 0.16666667), (0.19166666, 0.16666667), (0.19166666, 0.15), (0.19166666, 0.15), (0.19166666, 0.16666667), (0.18333334, 0.16666667), (0.18333334, 0.15), (0.18333334, 0.15), (0.18333334, 0.16666667), (0.175, 0.16666667), (0.175, 0.15), (0.175, 0.15), (0.175, 0.16666667), (0.16666667, 0.16666667), (0.16666667, 0.15), (0.16666667, 0.15), (0.16666667, 0.16666667), (0.15833333, 0.16666667), (0.15833333, 0.15), (0.15833333, 0.15), (0.15833333, 0.16666667), (0.15, 0.16666667), (0.15, 0.15), (0.15, 0.15), (0.15, 0.16666667), (0.14166667, 0.16666667), (0.14166667, 0.15), (0.14166667, 0.15), (0.14166667, 0.16666667), (0.13333334, 0.16666667), (0.13333334, 0.15), (0.13333334, 0.15), (0.13333334, 0.16666667), (0.125, 0.16666667), (0.125, 0.15), (0.125, 0.15), (0.125, 0.16666667), (0.11666667, 0.16666667), (0.11666667, 0.15), (0.11666667, 0.15), (0.11666667, 0.16666667), (0.108333334, 0.16666667), (0.108333334, 0.15), (0.108333334, 0.15), (0.108333334, 0.16666667), (0.1, 0.16666667), (0.1, 0.15), (0.1, 0.15), (0.1, 0.16666667), (0.09166667, 0.16666667), (0.09166667, 0.15), (0.09166667, 0.15), (0.09166667, 0.16666667), (0.083333336, 0.16666667), (0.083333336, 0.15), (0.083333336, 0.15), (0.083333336, 0.16666667), (0.075, 0.16666667), (0.075, 0.15), (0.075, 0.15), (0.075, 0.16666667), (0.06666667, 0.16666667), (0.06666667, 0.15), (0.06666667, 0.15), (0.06666667, 0.16666667), (0.058333334, 0.16666667), (0.058333334, 0.15), (0.058333334, 0.15), (0.058333334, 0.16666667), (0.05, 0.16666667), (0.05, 0.15), (0.05, 0.15), (0.05, 0.16666667), (0.041666668, 0.16666667), (0.041666668, 0.15), (0.041666668, 0.15), (0.041666668, 0.16666667), (0.033333335, 0.16666667), (0.033333335, 0.15), (0.033333335, 0.15), (0.033333335, 0.16666667), (0.025, 0.16666667), (0.025, 0.15), (0.025, 0.15), (0.025, 0.16666667), (0.016666668, 0.16666667), (0.016666668, 0.15), (0.016666668, 0.15), (0.016666668, 0.16666667), (0.008333334, 0.16666667), (0.008333334, 0.15), (0.008333334, 0.15), (0.008333334, 0.16666667), (0, 0.16666667), (0, 0.15), (1, 0.16666667), (1, 0.18333334), (0.9916667, 0.18333334), (0.9916667, 0.16666667), (0.9916667, 0.16666667), (0.9916667, 0.18333334), (0.98333335, 0.18333334), (0.98333335, 0.16666667), (0.98333335, 0.16666667), (0.98333335, 0.18333334), (0.975, 0.18333334), (0.975, 0.16666667), (0.975, 0.16666667), (0.975, 0.18333334), (0.96666664, 0.18333334), (0.96666664, 0.16666667), (0.96666664, 0.16666667), (0.96666664, 0.18333334), (0.9583333, 0.18333334), (0.9583333, 0.16666667), (0.9583333, 0.16666667), (0.9583333, 0.18333334), (0.95, 0.18333334), (0.95, 0.16666667), (0.95, 0.16666667), (0.95, 0.18333334), (0.94166666, 0.18333334), (0.94166666, 0.16666667), (0.94166666, 0.16666667), (0.94166666, 0.18333334), (0.93333334, 0.18333334), (0.93333334, 0.16666667), (0.93333334, 0.16666667), (0.93333334, 0.18333334), (0.925, 0.18333334), (0.925, 0.16666667), (0.925, 0.16666667), (0.925, 0.18333334), (0.9166667, 0.18333334), (0.9166667, 0.16666667), (0.9166667, 0.16666667), (0.9166667, 0.18333334), (0.90833336, 0.18333334), (0.90833336, 0.16666667), (0.90833336, 0.16666667), (0.90833336, 0.18333334), (0.9, 0.18333334), (0.9, 0.16666667), (0.9, 0.16666667), (0.9, 0.18333334), (0.89166665, 0.18333334), (0.89166665, 0.16666667), (0.89166665, 0.16666667), (0.89166665, 0.18333334), (0.8833333, 0.18333334), (0.8833333, 0.16666667), (0.8833333, 0.16666667), (0.8833333, 0.18333334), (0.875, 0.18333334), (0.875, 0.16666667), (0.875, 0.16666667), (0.875, 0.18333334), (0.8666667, 0.18333334), (0.8666667, 0.16666667), (0.8666667, 0.16666667), (0.8666667, 0.18333334), (0.85833335, 0.18333334), (0.85833335, 0.16666667), (0.85833335, 0.16666667), (0.85833335, 0.18333334), (0.85, 0.18333334), (0.85, 0.16666667), (0.85, 0.16666667), (0.85, 0.18333334), (0.84166664, 0.18333334), (0.84166664, 0.16666667), (0.84166664, 0.16666667), (0.84166664, 0.18333334), (0.8333333, 0.18333334), (0.8333333, 0.16666667), (0.8333333, 0.16666667), (0.8333333, 0.18333334), (0.825, 0.18333334), (0.825, 0.16666667), (0.825, 0.16666667), (0.825, 0.18333334), (0.81666666, 0.18333334), (0.81666666, 0.16666667), (0.81666666, 0.16666667), (0.81666666, 0.18333334), (0.80833334, 0.18333334), (0.80833334, 0.16666667), (0.80833334, 0.16666667), (0.80833334, 0.18333334), (0.8, 0.18333334), (0.8, 0.16666667), (0.8, 0.16666667), (0.8, 0.18333334), (0.7916667, 0.18333334), (0.7916667, 0.16666667), (0.7916667, 0.16666667), (0.7916667, 0.18333334), (0.78333336, 0.18333334), (0.78333336, 0.16666667), (0.78333336, 0.16666667), (0.78333336, 0.18333334), (0.775, 0.18333334), (0.775, 0.16666667), (0.775, 0.16666667), (0.775, 0.18333334), (0.76666665, 0.18333334), (0.76666665, 0.16666667), (0.76666665, 0.16666667), (0.76666665, 0.18333334), (0.7583333, 0.18333334), (0.7583333, 0.16666667), (0.7583333, 0.16666667), (0.7583333, 0.18333334), (0.75, 0.18333334), (0.75, 0.16666667), (0.75, 0.16666667), (0.75, 0.18333334), (0.7416667, 0.18333334), (0.7416667, 0.16666667), (0.7416667, 0.16666667), (0.7416667, 0.18333334), (0.73333335, 0.18333334), (0.73333335, 0.16666667), (0.73333335, 0.16666667), (0.73333335, 0.18333334), (0.725, 0.18333334), (0.725, 0.16666667), (0.725, 0.16666667), (0.725, 0.18333334), (0.71666664, 0.18333334), (0.71666664, 0.16666667), (0.71666664, 0.16666667), (0.71666664, 0.18333334), (0.7083333, 0.18333334), (0.7083333, 0.16666667), (0.7083333, 0.16666667), (0.7083333, 0.18333334), (0.7, 0.18333334), (0.7, 0.16666667), (0.7, 0.16666667), (0.7, 0.18333334), (0.69166666, 0.18333334), (0.69166666, 0.16666667), (0.69166666, 0.16666667), (0.69166666, 0.18333334), (0.68333334, 0.18333334), (0.68333334, 0.16666667), (0.68333334, 0.16666667), (0.68333334, 0.18333334), (0.675, 0.18333334), (0.675, 0.16666667), (0.675, 0.16666667), (0.675, 0.18333334), (0.6666667, 0.18333334), (0.6666667, 0.16666667), (0.6666667, 0.16666667), (0.6666667, 0.18333334), (0.65833336, 0.18333334), (0.65833336, 0.16666667), (0.65833336, 0.16666667), (0.65833336, 0.18333334), (0.65, 0.18333334), (0.65, 0.16666667), (0.65, 0.16666667), (0.65, 0.18333334), (0.64166665, 0.18333334), (0.64166665, 0.16666667), (0.64166665, 0.16666667), (0.64166665, 0.18333334), (0.6333333, 0.18333334), (0.6333333, 0.16666667), (0.6333333, 0.16666667), (0.6333333, 0.18333334), (0.625, 0.18333334), (0.625, 0.16666667), (0.625, 0.16666667), (0.625, 0.18333334), (0.6166667, 0.18333334), (0.6166667, 0.16666667), (0.6166667, 0.16666667), (0.6166667, 0.18333334), (0.60833335, 0.18333334), (0.60833335, 0.16666667), (0.60833335, 0.16666667), (0.60833335, 0.18333334), (0.6, 0.18333334), (0.6, 0.16666667), (0.6, 0.16666667), (0.6, 0.18333334), (0.59166664, 0.18333334), (0.59166664, 0.16666667), (0.59166664, 0.16666667), (0.59166664, 0.18333334), (0.5833333, 0.18333334), (0.5833333, 0.16666667), (0.5833333, 0.16666667), (0.5833333, 0.18333334), (0.575, 0.18333334), (0.575, 0.16666667), (0.575, 0.16666667), (0.575, 0.18333334), (0.56666666, 0.18333334), (0.56666666, 0.16666667), (0.56666666, 0.16666667), (0.56666666, 0.18333334), (0.55833334, 0.18333334), (0.55833334, 0.16666667), (0.55833334, 0.16666667), (0.55833334, 0.18333334), (0.55, 0.18333334), (0.55, 0.16666667), (0.55, 0.16666667), (0.55, 0.18333334), (0.5416667, 0.18333334), (0.5416667, 0.16666667), (0.5416667, 0.16666667), (0.5416667, 0.18333334), (0.53333336, 0.18333334), (0.53333336, 0.16666667), (0.53333336, 0.16666667), (0.53333336, 0.18333334), (0.525, 0.18333334), (0.525, 0.16666667), (0.525, 0.16666667), (0.525, 0.18333334), (0.51666665, 0.18333334), (0.51666665, 0.16666667), (0.51666665, 0.16666667), (0.51666665, 0.18333334), (0.5083333, 0.18333334), (0.5083333, 0.16666667), (0.5083333, 0.16666667), (0.5083333, 0.18333334), (0.5, 0.18333334), (0.5, 0.16666667), (0.5, 0.16666667), (0.5, 0.18333334), (0.49166667, 0.18333334), (0.49166667, 0.16666667), (0.49166667, 0.16666667), (0.49166667, 0.18333334), (0.48333332, 0.18333334), (0.48333332, 0.16666667), (0.48333332, 0.16666667), (0.48333332, 0.18333334), (0.475, 0.18333334), (0.475, 0.16666667), (0.475, 0.16666667), (0.475, 0.18333334), (0.46666667, 0.18333334), (0.46666667, 0.16666667), (0.46666667, 0.16666667), (0.46666667, 0.18333334), (0.45833334, 0.18333334), (0.45833334, 0.16666667), (0.45833334, 0.16666667), (0.45833334, 0.18333334), (0.45, 0.18333334), (0.45, 0.16666667), (0.45, 0.16666667), (0.45, 0.18333334), (0.44166666, 0.18333334), (0.44166666, 0.16666667), (0.44166666, 0.16666667), (0.44166666, 0.18333334), (0.43333334, 0.18333334), (0.43333334, 0.16666667), (0.43333334, 0.16666667), (0.43333334, 0.18333334), (0.425, 0.18333334), (0.425, 0.16666667), (0.425, 0.16666667), (0.425, 0.18333334), (0.41666666, 0.18333334), (0.41666666, 0.16666667), (0.41666666, 0.16666667), (0.41666666, 0.18333334), (0.40833333, 0.18333334), (0.40833333, 0.16666667), (0.40833333, 0.16666667), (0.40833333, 0.18333334), (0.4, 0.18333334), (0.4, 0.16666667), (0.4, 0.16666667), (0.4, 0.18333334), (0.39166668, 0.18333334), (0.39166668, 0.16666667), (0.39166668, 0.16666667), (0.39166668, 0.18333334), (0.38333333, 0.18333334), (0.38333333, 0.16666667), (0.38333333, 0.16666667), (0.38333333, 0.18333334), (0.375, 0.18333334), (0.375, 0.16666667), (0.375, 0.16666667), (0.375, 0.18333334), (0.36666667, 0.18333334), (0.36666667, 0.16666667), (0.36666667, 0.16666667), (0.36666667, 0.18333334), (0.35833332, 0.18333334), (0.35833332, 0.16666667), (0.35833332, 0.16666667), (0.35833332, 0.18333334), (0.35, 0.18333334), (0.35, 0.16666667), (0.35, 0.16666667), (0.35, 0.18333334), (0.34166667, 0.18333334), (0.34166667, 0.16666667), (0.34166667, 0.16666667), (0.34166667, 0.18333334), (0.33333334, 0.18333334), (0.33333334, 0.16666667), (0.33333334, 0.16666667), (0.33333334, 0.18333334), (0.325, 0.18333334), (0.325, 0.16666667), (0.325, 0.16666667), (0.325, 0.18333334), (0.31666666, 0.18333334), (0.31666666, 0.16666667), (0.31666666, 0.16666667), (0.31666666, 0.18333334), (0.30833334, 0.18333334), (0.30833334, 0.16666667), (0.30833334, 0.16666667), (0.30833334, 0.18333334), (0.3, 0.18333334), (0.3, 0.16666667), (0.3, 0.16666667), (0.3, 0.18333334), (0.29166666, 0.18333334), (0.29166666, 0.16666667), (0.29166666, 0.16666667), (0.29166666, 0.18333334), (0.28333333, 0.18333334), (0.28333333, 0.16666667), (0.28333333, 0.16666667), (0.28333333, 0.18333334), (0.275, 0.18333334), (0.275, 0.16666667), (0.275, 0.16666667), (0.275, 0.18333334), (0.26666668, 0.18333334), (0.26666668, 0.16666667), (0.26666668, 0.16666667), (0.26666668, 0.18333334), (0.25833333, 0.18333334), (0.25833333, 0.16666667), (0.25833333, 0.16666667), (0.25833333, 0.18333334), (0.25, 0.18333334), (0.25, 0.16666667), (0.25, 0.16666667), (0.25, 0.18333334), (0.24166666, 0.18333334), (0.24166666, 0.16666667), (0.24166666, 0.16666667), (0.24166666, 0.18333334), (0.23333333, 0.18333334), (0.23333333, 0.16666667), (0.23333333, 0.16666667), (0.23333333, 0.18333334), (0.225, 0.18333334), (0.225, 0.16666667), (0.225, 0.16666667), (0.225, 0.18333334), (0.21666667, 0.18333334), (0.21666667, 0.16666667), (0.21666667, 0.16666667), (0.21666667, 0.18333334), (0.20833333, 0.18333334), (0.20833333, 0.16666667), (0.20833333, 0.16666667), (0.20833333, 0.18333334), (0.2, 0.18333334), (0.2, 0.16666667), (0.2, 0.16666667), (0.2, 0.18333334), (0.19166666, 0.18333334), (0.19166666, 0.16666667), (0.19166666, 0.16666667), (0.19166666, 0.18333334), (0.18333334, 0.18333334), (0.18333334, 0.16666667), (0.18333334, 0.16666667), (0.18333334, 0.18333334), (0.175, 0.18333334), (0.175, 0.16666667), (0.175, 0.16666667), (0.175, 0.18333334), (0.16666667, 0.18333334), (0.16666667, 0.16666667), (0.16666667, 0.16666667), (0.16666667, 0.18333334), (0.15833333, 0.18333334), (0.15833333, 0.16666667), (0.15833333, 0.16666667), (0.15833333, 0.18333334), (0.15, 0.18333334), (0.15, 0.16666667), (0.15, 0.16666667), (0.15, 0.18333334), (0.14166667, 0.18333334), (0.14166667, 0.16666667), (0.14166667, 0.16666667), (0.14166667, 0.18333334), (0.13333334, 0.18333334), (0.13333334, 0.16666667), (0.13333334, 0.16666667), (0.13333334, 0.18333334), (0.125, 0.18333334), (0.125, 0.16666667), (0.125, 0.16666667), (0.125, 0.18333334), (0.11666667, 0.18333334), (0.11666667, 0.16666667), (0.11666667, 0.16666667), (0.11666667, 0.18333334), (0.108333334, 0.18333334), (0.108333334, 0.16666667), (0.108333334, 0.16666667), (0.108333334, 0.18333334), (0.1, 0.18333334), (0.1, 0.16666667), (0.1, 0.16666667), (0.1, 0.18333334), (0.09166667, 0.18333334), (0.09166667, 0.16666667), (0.09166667, 0.16666667), (0.09166667, 0.18333334), (0.083333336, 0.18333334), (0.083333336, 0.16666667), (0.083333336, 0.16666667), (0.083333336, 0.18333334), (0.075, 0.18333334), (0.075, 0.16666667), (0.075, 0.16666667), (0.075, 0.18333334), (0.06666667, 0.18333334), (0.06666667, 0.16666667), (0.06666667, 0.16666667), (0.06666667, 0.18333334), (0.058333334, 0.18333334), (0.058333334, 0.16666667), (0.058333334, 0.16666667), (0.058333334, 0.18333334), (0.05, 0.18333334), (0.05, 0.16666667), (0.05, 0.16666667), (0.05, 0.18333334), (0.041666668, 0.18333334), (0.041666668, 0.16666667), (0.041666668, 0.16666667), (0.041666668, 0.18333334), (0.033333335, 0.18333334), (0.033333335, 0.16666667), (0.033333335, 0.16666667), (0.033333335, 0.18333334), (0.025, 0.18333334), (0.025, 0.16666667), (0.025, 0.16666667), (0.025, 0.18333334), (0.016666668, 0.18333334), (0.016666668, 0.16666667), (0.016666668, 0.16666667), (0.016666668, 0.18333334), (0.008333334, 0.18333334), (0.008333334, 0.16666667), (0.008333334, 0.16666667), (0.008333334, 0.18333334), (0, 0.18333334), (0, 0.16666667), (1, 0.18333334), (1, 0.2), (0.9916667, 0.2), (0.9916667, 0.18333334), (0.9916667, 0.18333334), (0.9916667, 0.2), (0.98333335, 0.2), (0.98333335, 0.18333334), (0.98333335, 0.18333334), (0.98333335, 0.2), (0.975, 0.2), (0.975, 0.18333334), (0.975, 0.18333334), (0.975, 0.2), (0.96666664, 0.2), (0.96666664, 0.18333334), (0.96666664, 0.18333334), (0.96666664, 0.2), (0.9583333, 0.2), (0.9583333, 0.18333334), (0.9583333, 0.18333334), (0.9583333, 0.2), (0.95, 0.2), (0.95, 0.18333334), (0.95, 0.18333334), (0.95, 0.2), (0.94166666, 0.2), (0.94166666, 0.18333334), (0.94166666, 0.18333334), (0.94166666, 0.2), (0.93333334, 0.2), (0.93333334, 0.18333334), (0.93333334, 0.18333334), (0.93333334, 0.2), (0.925, 0.2), (0.925, 0.18333334), (0.925, 0.18333334), (0.925, 0.2), (0.9166667, 0.2), (0.9166667, 0.18333334), (0.9166667, 0.18333334), (0.9166667, 0.2), (0.90833336, 0.2), (0.90833336, 0.18333334), (0.90833336, 0.18333334), (0.90833336, 0.2), (0.9, 0.2), (0.9, 0.18333334), (0.9, 0.18333334), (0.9, 0.2), (0.89166665, 0.2), (0.89166665, 0.18333334), (0.89166665, 0.18333334), (0.89166665, 0.2), (0.8833333, 0.2), (0.8833333, 0.18333334), (0.8833333, 0.18333334), (0.8833333, 0.2), (0.875, 0.2), (0.875, 0.18333334), (0.875, 0.18333334), (0.875, 0.2), (0.8666667, 0.2), (0.8666667, 0.18333334), (0.8666667, 0.18333334), (0.8666667, 0.2), (0.85833335, 0.2), (0.85833335, 0.18333334), (0.85833335, 0.18333334), (0.85833335, 0.2), (0.85, 0.2), (0.85, 0.18333334), (0.85, 0.18333334), (0.85, 0.2), (0.84166664, 0.2), (0.84166664, 0.18333334), (0.84166664, 0.18333334), (0.84166664, 0.2), (0.8333333, 0.2), (0.8333333, 0.18333334), (0.8333333, 0.18333334), (0.8333333, 0.2), (0.825, 0.2), (0.825, 0.18333334), (0.825, 0.18333334), (0.825, 0.2), (0.81666666, 0.2), (0.81666666, 0.18333334), (0.81666666, 0.18333334), (0.81666666, 0.2), (0.80833334, 0.2), (0.80833334, 0.18333334), (0.80833334, 0.18333334), (0.80833334, 0.2), (0.8, 0.2), (0.8, 0.18333334), (0.8, 0.18333334), (0.8, 0.2), (0.7916667, 0.2), (0.7916667, 0.18333334), (0.7916667, 0.18333334), (0.7916667, 0.2), (0.78333336, 0.2), (0.78333336, 0.18333334), (0.78333336, 0.18333334), (0.78333336, 0.2), (0.775, 0.2), (0.775, 0.18333334), (0.775, 0.18333334), (0.775, 0.2), (0.76666665, 0.2), (0.76666665, 0.18333334), (0.76666665, 0.18333334), (0.76666665, 0.2), (0.7583333, 0.2), (0.7583333, 0.18333334), (0.7583333, 0.18333334), (0.7583333, 0.2), (0.75, 0.2), (0.75, 0.18333334), (0.75, 0.18333334), (0.75, 0.2), (0.7416667, 0.2), (0.7416667, 0.18333334), (0.7416667, 0.18333334), (0.7416667, 0.2), (0.73333335, 0.2), (0.73333335, 0.18333334), (0.73333335, 0.18333334), (0.73333335, 0.2), (0.725, 0.2), (0.725, 0.18333334), (0.725, 0.18333334), (0.725, 0.2), (0.71666664, 0.2), (0.71666664, 0.18333334), (0.71666664, 0.18333334), (0.71666664, 0.2), (0.7083333, 0.2), (0.7083333, 0.18333334), (0.7083333, 0.18333334), (0.7083333, 0.2), (0.7, 0.2), (0.7, 0.18333334), (0.7, 0.18333334), (0.7, 0.2), (0.69166666, 0.2), (0.69166666, 0.18333334), (0.69166666, 0.18333334), (0.69166666, 0.2), (0.68333334, 0.2), (0.68333334, 0.18333334), (0.68333334, 0.18333334), (0.68333334, 0.2), (0.675, 0.2), (0.675, 0.18333334), (0.675, 0.18333334), (0.675, 0.2), (0.6666667, 0.2), (0.6666667, 0.18333334), (0.6666667, 0.18333334), (0.6666667, 0.2), (0.65833336, 0.2), (0.65833336, 0.18333334), (0.65833336, 0.18333334), (0.65833336, 0.2), (0.65, 0.2), (0.65, 0.18333334), (0.65, 0.18333334), (0.65, 0.2), (0.64166665, 0.2), (0.64166665, 0.18333334), (0.64166665, 0.18333334), (0.64166665, 0.2), (0.6333333, 0.2), (0.6333333, 0.18333334), (0.6333333, 0.18333334), (0.6333333, 0.2), (0.625, 0.2), (0.625, 0.18333334), (0.625, 0.18333334), (0.625, 0.2), (0.6166667, 0.2), (0.6166667, 0.18333334), (0.6166667, 0.18333334), (0.6166667, 0.2), (0.60833335, 0.2), (0.60833335, 0.18333334), (0.60833335, 0.18333334), (0.60833335, 0.2), (0.6, 0.2), (0.6, 0.18333334), (0.6, 0.18333334), (0.6, 0.2), (0.59166664, 0.2), (0.59166664, 0.18333334), (0.59166664, 0.18333334), (0.59166664, 0.2), (0.5833333, 0.2), (0.5833333, 0.18333334), (0.5833333, 0.18333334), (0.5833333, 0.2), (0.575, 0.2), (0.575, 0.18333334), (0.575, 0.18333334), (0.575, 0.2), (0.56666666, 0.2), (0.56666666, 0.18333334), (0.56666666, 0.18333334), (0.56666666, 0.2), (0.55833334, 0.2), (0.55833334, 0.18333334), (0.55833334, 0.18333334), (0.55833334, 0.2), (0.55, 0.2), (0.55, 0.18333334), (0.55, 0.18333334), (0.55, 0.2), (0.5416667, 0.2), (0.5416667, 0.18333334), (0.5416667, 0.18333334), (0.5416667, 0.2), (0.53333336, 0.2), (0.53333336, 0.18333334), (0.53333336, 0.18333334), (0.53333336, 0.2), (0.525, 0.2), (0.525, 0.18333334), (0.525, 0.18333334), (0.525, 0.2), (0.51666665, 0.2), (0.51666665, 0.18333334), (0.51666665, 0.18333334), (0.51666665, 0.2), (0.5083333, 0.2), (0.5083333, 0.18333334), (0.5083333, 0.18333334), (0.5083333, 0.2), (0.5, 0.2), (0.5, 0.18333334), (0.5, 0.18333334), (0.5, 0.2), (0.49166667, 0.2), (0.49166667, 0.18333334), (0.49166667, 0.18333334), (0.49166667, 0.2), (0.48333332, 0.2), (0.48333332, 0.18333334), (0.48333332, 0.18333334), (0.48333332, 0.2), (0.475, 0.2), (0.475, 0.18333334), (0.475, 0.18333334), (0.475, 0.2), (0.46666667, 0.2), (0.46666667, 0.18333334), (0.46666667, 0.18333334), (0.46666667, 0.2), (0.45833334, 0.2), (0.45833334, 0.18333334), (0.45833334, 0.18333334), (0.45833334, 0.2), (0.45, 0.2), (0.45, 0.18333334), (0.45, 0.18333334), (0.45, 0.2), (0.44166666, 0.2), (0.44166666, 0.18333334), (0.44166666, 0.18333334), (0.44166666, 0.2), (0.43333334, 0.2), (0.43333334, 0.18333334), (0.43333334, 0.18333334), (0.43333334, 0.2), (0.425, 0.2), (0.425, 0.18333334), (0.425, 0.18333334), (0.425, 0.2), (0.41666666, 0.2), (0.41666666, 0.18333334), (0.41666666, 0.18333334), (0.41666666, 0.2), (0.40833333, 0.2), (0.40833333, 0.18333334), (0.40833333, 0.18333334), (0.40833333, 0.2), (0.4, 0.2), (0.4, 0.18333334), (0.4, 0.18333334), (0.4, 0.2), (0.39166668, 0.2), (0.39166668, 0.18333334), (0.39166668, 0.18333334), (0.39166668, 0.2), (0.38333333, 0.2), (0.38333333, 0.18333334), (0.38333333, 0.18333334), (0.38333333, 0.2), (0.375, 0.2), (0.375, 0.18333334), (0.375, 0.18333334), (0.375, 0.2), (0.36666667, 0.2), (0.36666667, 0.18333334), (0.36666667, 0.18333334), (0.36666667, 0.2), (0.35833332, 0.2), (0.35833332, 0.18333334), (0.35833332, 0.18333334), (0.35833332, 0.2), (0.35, 0.2), (0.35, 0.18333334), (0.35, 0.18333334), (0.35, 0.2), (0.34166667, 0.2), (0.34166667, 0.18333334), (0.34166667, 0.18333334), (0.34166667, 0.2), (0.33333334, 0.2), (0.33333334, 0.18333334), (0.33333334, 0.18333334), (0.33333334, 0.2), (0.325, 0.2), (0.325, 0.18333334), (0.325, 0.18333334), (0.325, 0.2), (0.31666666, 0.2), (0.31666666, 0.18333334), (0.31666666, 0.18333334), (0.31666666, 0.2), (0.30833334, 0.2), (0.30833334, 0.18333334), (0.30833334, 0.18333334), (0.30833334, 0.2), (0.3, 0.2), (0.3, 0.18333334), (0.3, 0.18333334), (0.3, 0.2), (0.29166666, 0.2), (0.29166666, 0.18333334), (0.29166666, 0.18333334), (0.29166666, 0.2), (0.28333333, 0.2), (0.28333333, 0.18333334), (0.28333333, 0.18333334), (0.28333333, 0.2), (0.275, 0.2), (0.275, 0.18333334), (0.275, 0.18333334), (0.275, 0.2), (0.26666668, 0.2), (0.26666668, 0.18333334), (0.26666668, 0.18333334), (0.26666668, 0.2), (0.25833333, 0.2), (0.25833333, 0.18333334), (0.25833333, 0.18333334), (0.25833333, 0.2), (0.25, 0.2), (0.25, 0.18333334), (0.25, 0.18333334), (0.25, 0.2), (0.24166666, 0.2), (0.24166666, 0.18333334), (0.24166666, 0.18333334), (0.24166666, 0.2), (0.23333333, 0.2), (0.23333333, 0.18333334), (0.23333333, 0.18333334), (0.23333333, 0.2), (0.225, 0.2), (0.225, 0.18333334), (0.225, 0.18333334), (0.225, 0.2), (0.21666667, 0.2), (0.21666667, 0.18333334), (0.21666667, 0.18333334), (0.21666667, 0.2), (0.20833333, 0.2), (0.20833333, 0.18333334), (0.20833333, 0.18333334), (0.20833333, 0.2), (0.2, 0.2), (0.2, 0.18333334), (0.2, 0.18333334), (0.2, 0.2), (0.19166666, 0.2), (0.19166666, 0.18333334), (0.19166666, 0.18333334), (0.19166666, 0.2), (0.18333334, 0.2), (0.18333334, 0.18333334), (0.18333334, 0.18333334), (0.18333334, 0.2), (0.175, 0.2), (0.175, 0.18333334), (0.175, 0.18333334), (0.175, 0.2), (0.16666667, 0.2), (0.16666667, 0.18333334), (0.16666667, 0.18333334), (0.16666667, 0.2), (0.15833333, 0.2), (0.15833333, 0.18333334), (0.15833333, 0.18333334), (0.15833333, 0.2), (0.15, 0.2), (0.15, 0.18333334), (0.15, 0.18333334), (0.15, 0.2), (0.14166667, 0.2), (0.14166667, 0.18333334), (0.14166667, 0.18333334), (0.14166667, 0.2), (0.13333334, 0.2), (0.13333334, 0.18333334), (0.13333334, 0.18333334), (0.13333334, 0.2), (0.125, 0.2), (0.125, 0.18333334), (0.125, 0.18333334), (0.125, 0.2), (0.11666667, 0.2), (0.11666667, 0.18333334), (0.11666667, 0.18333334), (0.11666667, 0.2), (0.108333334, 0.2), (0.108333334, 0.18333334), (0.108333334, 0.18333334), (0.108333334, 0.2), (0.1, 0.2), (0.1, 0.18333334), (0.1, 0.18333334), (0.1, 0.2), (0.09166667, 0.2), (0.09166667, 0.18333334), (0.09166667, 0.18333334), (0.09166667, 0.2), (0.083333336, 0.2), (0.083333336, 0.18333334), (0.083333336, 0.18333334), (0.083333336, 0.2), (0.075, 0.2), (0.075, 0.18333334), (0.075, 0.18333334), (0.075, 0.2), (0.06666667, 0.2), (0.06666667, 0.18333334), (0.06666667, 0.18333334), (0.06666667, 0.2), (0.058333334, 0.2), (0.058333334, 0.18333334), (0.058333334, 0.18333334), (0.058333334, 0.2), (0.05, 0.2), (0.05, 0.18333334), (0.05, 0.18333334), (0.05, 0.2), (0.041666668, 0.2), (0.041666668, 0.18333334), (0.041666668, 0.18333334), (0.041666668, 0.2), (0.033333335, 0.2), (0.033333335, 0.18333334), (0.033333335, 0.18333334), (0.033333335, 0.2), (0.025, 0.2), (0.025, 0.18333334), (0.025, 0.18333334), (0.025, 0.2), (0.016666668, 0.2), (0.016666668, 0.18333334), (0.016666668, 0.18333334), (0.016666668, 0.2), (0.008333334, 0.2), (0.008333334, 0.18333334), (0.008333334, 0.18333334), (0.008333334, 0.2), (0, 0.2), (0, 0.18333334), (1, 0.2), (1, 0.21666667), (0.9916667, 0.21666667), (0.9916667, 0.2), (0.9916667, 0.2), (0.9916667, 0.21666667), (0.98333335, 0.21666667), (0.98333335, 0.2), (0.98333335, 0.2), (0.98333335, 0.21666667), (0.975, 0.21666667), (0.975, 0.2), (0.975, 0.2), (0.975, 0.21666667), (0.96666664, 0.21666667), (0.96666664, 0.2), (0.96666664, 0.2), (0.96666664, 0.21666667), (0.9583333, 0.21666667), (0.9583333, 0.2), (0.9583333, 0.2), (0.9583333, 0.21666667), (0.95, 0.21666667), (0.95, 0.2), (0.95, 0.2), (0.95, 0.21666667), (0.94166666, 0.21666667), (0.94166666, 0.2), (0.94166666, 0.2), (0.94166666, 0.21666667), (0.93333334, 0.21666667), (0.93333334, 0.2), (0.93333334, 0.2), (0.93333334, 0.21666667), (0.925, 0.21666667), (0.925, 0.2), (0.925, 0.2), (0.925, 0.21666667), (0.9166667, 0.21666667), (0.9166667, 0.2), (0.9166667, 0.2), (0.9166667, 0.21666667), (0.90833336, 0.21666667), (0.90833336, 0.2), (0.90833336, 0.2), (0.90833336, 0.21666667), (0.9, 0.21666667), (0.9, 0.2), (0.9, 0.2), (0.9, 0.21666667), (0.89166665, 0.21666667), (0.89166665, 0.2), (0.89166665, 0.2), (0.89166665, 0.21666667), (0.8833333, 0.21666667), (0.8833333, 0.2), (0.8833333, 0.2), (0.8833333, 0.21666667), (0.875, 0.21666667), (0.875, 0.2), (0.875, 0.2), (0.875, 0.21666667), (0.8666667, 0.21666667), (0.8666667, 0.2), (0.8666667, 0.2), (0.8666667, 0.21666667), (0.85833335, 0.21666667), (0.85833335, 0.2), (0.85833335, 0.2), (0.85833335, 0.21666667), (0.85, 0.21666667), (0.85, 0.2), (0.85, 0.2), (0.85, 0.21666667), (0.84166664, 0.21666667), (0.84166664, 0.2), (0.84166664, 0.2), (0.84166664, 0.21666667), (0.8333333, 0.21666667), (0.8333333, 0.2), (0.8333333, 0.2), (0.8333333, 0.21666667), (0.825, 0.21666667), (0.825, 0.2), (0.825, 0.2), (0.825, 0.21666667), (0.81666666, 0.21666667), (0.81666666, 0.2), (0.81666666, 0.2), (0.81666666, 0.21666667), (0.80833334, 0.21666667), (0.80833334, 0.2), (0.80833334, 0.2), (0.80833334, 0.21666667), (0.8, 0.21666667), (0.8, 0.2), (0.8, 0.2), (0.8, 0.21666667), (0.7916667, 0.21666667), (0.7916667, 0.2), (0.7916667, 0.2), (0.7916667, 0.21666667), (0.78333336, 0.21666667), (0.78333336, 0.2), (0.78333336, 0.2), (0.78333336, 0.21666667), (0.775, 0.21666667), (0.775, 0.2), (0.775, 0.2), (0.775, 0.21666667), (0.76666665, 0.21666667), (0.76666665, 0.2), (0.76666665, 0.2), (0.76666665, 0.21666667), (0.7583333, 0.21666667), (0.7583333, 0.2), (0.7583333, 0.2), (0.7583333, 0.21666667), (0.75, 0.21666667), (0.75, 0.2), (0.75, 0.2), (0.75, 0.21666667), (0.7416667, 0.21666667), (0.7416667, 0.2), (0.7416667, 0.2), (0.7416667, 0.21666667), (0.73333335, 0.21666667), (0.73333335, 0.2), (0.73333335, 0.2), (0.73333335, 0.21666667), (0.725, 0.21666667), (0.725, 0.2), (0.725, 0.2), (0.725, 0.21666667), (0.71666664, 0.21666667), (0.71666664, 0.2), (0.71666664, 0.2), (0.71666664, 0.21666667), (0.7083333, 0.21666667), (0.7083333, 0.2), (0.7083333, 0.2), (0.7083333, 0.21666667), (0.7, 0.21666667), (0.7, 0.2), (0.7, 0.2), (0.7, 0.21666667), (0.69166666, 0.21666667), (0.69166666, 0.2), (0.69166666, 0.2), (0.69166666, 0.21666667), (0.68333334, 0.21666667), (0.68333334, 0.2), (0.68333334, 0.2), (0.68333334, 0.21666667), (0.675, 0.21666667), (0.675, 0.2), (0.675, 0.2), (0.675, 0.21666667), (0.6666667, 0.21666667), (0.6666667, 0.2), (0.6666667, 0.2), (0.6666667, 0.21666667), (0.65833336, 0.21666667), (0.65833336, 0.2), (0.65833336, 0.2), (0.65833336, 0.21666667), (0.65, 0.21666667), (0.65, 0.2), (0.65, 0.2), (0.65, 0.21666667), (0.64166665, 0.21666667), (0.64166665, 0.2), (0.64166665, 0.2), (0.64166665, 0.21666667), (0.6333333, 0.21666667), (0.6333333, 0.2), (0.6333333, 0.2), (0.6333333, 0.21666667), (0.625, 0.21666667), (0.625, 0.2), (0.625, 0.2), (0.625, 0.21666667), (0.6166667, 0.21666667), (0.6166667, 0.2), (0.6166667, 0.2), (0.6166667, 0.21666667), (0.60833335, 0.21666667), (0.60833335, 0.2), (0.60833335, 0.2), (0.60833335, 0.21666667), (0.6, 0.21666667), (0.6, 0.2), (0.6, 0.2), (0.6, 0.21666667), (0.59166664, 0.21666667), (0.59166664, 0.2), (0.59166664, 0.2), (0.59166664, 0.21666667), (0.5833333, 0.21666667), (0.5833333, 0.2), (0.5833333, 0.2), (0.5833333, 0.21666667), (0.575, 0.21666667), (0.575, 0.2), (0.575, 0.2), (0.575, 0.21666667), (0.56666666, 0.21666667), (0.56666666, 0.2), (0.56666666, 0.2), (0.56666666, 0.21666667), (0.55833334, 0.21666667), (0.55833334, 0.2), (0.55833334, 0.2), (0.55833334, 0.21666667), (0.55, 0.21666667), (0.55, 0.2), (0.55, 0.2), (0.55, 0.21666667), (0.5416667, 0.21666667), (0.5416667, 0.2), (0.5416667, 0.2), (0.5416667, 0.21666667), (0.53333336, 0.21666667), (0.53333336, 0.2), (0.53333336, 0.2), (0.53333336, 0.21666667), (0.525, 0.21666667), (0.525, 0.2), (0.525, 0.2), (0.525, 0.21666667), (0.51666665, 0.21666667), (0.51666665, 0.2), (0.51666665, 0.2), (0.51666665, 0.21666667), (0.5083333, 0.21666667), (0.5083333, 0.2), (0.5083333, 0.2), (0.5083333, 0.21666667), (0.5, 0.21666667), (0.5, 0.2), (0.5, 0.2), (0.5, 0.21666667), (0.49166667, 0.21666667), (0.49166667, 0.2), (0.49166667, 0.2), (0.49166667, 0.21666667), (0.48333332, 0.21666667), (0.48333332, 0.2), (0.48333332, 0.2), (0.48333332, 0.21666667), (0.475, 0.21666667), (0.475, 0.2), (0.475, 0.2), (0.475, 0.21666667), (0.46666667, 0.21666667), (0.46666667, 0.2), (0.46666667, 0.2), (0.46666667, 0.21666667), (0.45833334, 0.21666667), (0.45833334, 0.2), (0.45833334, 0.2), (0.45833334, 0.21666667), (0.45, 0.21666667), (0.45, 0.2), (0.45, 0.2), (0.45, 0.21666667), (0.44166666, 0.21666667), (0.44166666, 0.2), (0.44166666, 0.2), (0.44166666, 0.21666667), (0.43333334, 0.21666667), (0.43333334, 0.2), (0.43333334, 0.2), (0.43333334, 0.21666667), (0.425, 0.21666667), (0.425, 0.2), (0.425, 0.2), (0.425, 0.21666667), (0.41666666, 0.21666667), (0.41666666, 0.2), (0.41666666, 0.2), (0.41666666, 0.21666667), (0.40833333, 0.21666667), (0.40833333, 0.2), (0.40833333, 0.2), (0.40833333, 0.21666667), (0.4, 0.21666667), (0.4, 0.2), (0.4, 0.2), (0.4, 0.21666667), (0.39166668, 0.21666667), (0.39166668, 0.2), (0.39166668, 0.2), (0.39166668, 0.21666667), (0.38333333, 0.21666667), (0.38333333, 0.2), (0.38333333, 0.2), (0.38333333, 0.21666667), (0.375, 0.21666667), (0.375, 0.2), (0.375, 0.2), (0.375, 0.21666667), (0.36666667, 0.21666667), (0.36666667, 0.2), (0.36666667, 0.2), (0.36666667, 0.21666667), (0.35833332, 0.21666667), (0.35833332, 0.2), (0.35833332, 0.2), (0.35833332, 0.21666667), (0.35, 0.21666667), (0.35, 0.2), (0.35, 0.2), (0.35, 0.21666667), (0.34166667, 0.21666667), (0.34166667, 0.2), (0.34166667, 0.2), (0.34166667, 0.21666667), (0.33333334, 0.21666667), (0.33333334, 0.2), (0.33333334, 0.2), (0.33333334, 0.21666667), (0.325, 0.21666667), (0.325, 0.2), (0.325, 0.2), (0.325, 0.21666667), (0.31666666, 0.21666667), (0.31666666, 0.2), (0.31666666, 0.2), (0.31666666, 0.21666667), (0.30833334, 0.21666667), (0.30833334, 0.2), (0.30833334, 0.2), (0.30833334, 0.21666667), (0.3, 0.21666667), (0.3, 0.2), (0.3, 0.2), (0.3, 0.21666667), (0.29166666, 0.21666667), (0.29166666, 0.2), (0.29166666, 0.2), (0.29166666, 0.21666667), (0.28333333, 0.21666667), (0.28333333, 0.2), (0.28333333, 0.2), (0.28333333, 0.21666667), (0.275, 0.21666667), (0.275, 0.2), (0.275, 0.2), (0.275, 0.21666667), (0.26666668, 0.21666667), (0.26666668, 0.2), (0.26666668, 0.2), (0.26666668, 0.21666667), (0.25833333, 0.21666667), (0.25833333, 0.2), (0.25833333, 0.2), (0.25833333, 0.21666667), (0.25, 0.21666667), (0.25, 0.2), (0.25, 0.2), (0.25, 0.21666667), (0.24166666, 0.21666667), (0.24166666, 0.2), (0.24166666, 0.2), (0.24166666, 0.21666667), (0.23333333, 0.21666667), (0.23333333, 0.2), (0.23333333, 0.2), (0.23333333, 0.21666667), (0.225, 0.21666667), (0.225, 0.2), (0.225, 0.2), (0.225, 0.21666667), (0.21666667, 0.21666667), (0.21666667, 0.2), (0.21666667, 0.2), (0.21666667, 0.21666667), (0.20833333, 0.21666667), (0.20833333, 0.2), (0.20833333, 0.2), (0.20833333, 0.21666667), (0.2, 0.21666667), (0.2, 0.2), (0.2, 0.2), (0.2, 0.21666667), (0.19166666, 0.21666667), (0.19166666, 0.2), (0.19166666, 0.2), (0.19166666, 0.21666667), (0.18333334, 0.21666667), (0.18333334, 0.2), (0.18333334, 0.2), (0.18333334, 0.21666667), (0.175, 0.21666667), (0.175, 0.2), (0.175, 0.2), (0.175, 0.21666667), (0.16666667, 0.21666667), (0.16666667, 0.2), (0.16666667, 0.2), (0.16666667, 0.21666667), (0.15833333, 0.21666667), (0.15833333, 0.2), (0.15833333, 0.2), (0.15833333, 0.21666667), (0.15, 0.21666667), (0.15, 0.2), (0.15, 0.2), (0.15, 0.21666667), (0.14166667, 0.21666667), (0.14166667, 0.2), (0.14166667, 0.2), (0.14166667, 0.21666667), (0.13333334, 0.21666667), (0.13333334, 0.2), (0.13333334, 0.2), (0.13333334, 0.21666667), (0.125, 0.21666667), (0.125, 0.2), (0.125, 0.2), (0.125, 0.21666667), (0.11666667, 0.21666667), (0.11666667, 0.2), (0.11666667, 0.2), (0.11666667, 0.21666667), (0.108333334, 0.21666667), (0.108333334, 0.2), (0.108333334, 0.2), (0.108333334, 0.21666667), (0.1, 0.21666667), (0.1, 0.2), (0.1, 0.2), (0.1, 0.21666667), (0.09166667, 0.21666667), (0.09166667, 0.2), (0.09166667, 0.2), (0.09166667, 0.21666667), (0.083333336, 0.21666667), (0.083333336, 0.2), (0.083333336, 0.2), (0.083333336, 0.21666667), (0.075, 0.21666667), (0.075, 0.2), (0.075, 0.2), (0.075, 0.21666667), (0.06666667, 0.21666667), (0.06666667, 0.2), (0.06666667, 0.2), (0.06666667, 0.21666667), (0.058333334, 0.21666667), (0.058333334, 0.2), (0.058333334, 0.2), (0.058333334, 0.21666667), (0.05, 0.21666667), (0.05, 0.2), (0.05, 0.2), (0.05, 0.21666667), (0.041666668, 0.21666667), (0.041666668, 0.2), (0.041666668, 0.2), (0.041666668, 0.21666667), (0.033333335, 0.21666667), (0.033333335, 0.2), (0.033333335, 0.2), (0.033333335, 0.21666667), (0.025, 0.21666667), (0.025, 0.2), (0.025, 0.2), (0.025, 0.21666667), (0.016666668, 0.21666667), (0.016666668, 0.2), (0.016666668, 0.2), (0.016666668, 0.21666667), (0.008333334, 0.21666667), (0.008333334, 0.2), (0.008333334, 0.2), (0.008333334, 0.21666667), (0, 0.21666667), (0, 0.2), (1, 0.21666667), (1, 0.23333333), (0.9916667, 0.23333333), (0.9916667, 0.21666667), (0.9916667, 0.21666667), (0.9916667, 0.23333333), (0.98333335, 0.23333333), (0.98333335, 0.21666667), (0.98333335, 0.21666667), (0.98333335, 0.23333333), (0.975, 0.23333333), (0.975, 0.21666667), (0.975, 0.21666667), (0.975, 0.23333333), (0.96666664, 0.23333333), (0.96666664, 0.21666667), (0.96666664, 0.21666667), (0.96666664, 0.23333333), (0.9583333, 0.23333333), (0.9583333, 0.21666667), (0.9583333, 0.21666667), (0.9583333, 0.23333333), (0.95, 0.23333333), (0.95, 0.21666667), (0.95, 0.21666667), (0.95, 0.23333333), (0.94166666, 0.23333333), (0.94166666, 0.21666667), (0.94166666, 0.21666667), (0.94166666, 0.23333333), (0.93333334, 0.23333333), (0.93333334, 0.21666667), (0.93333334, 0.21666667), (0.93333334, 0.23333333), (0.925, 0.23333333), (0.925, 0.21666667), (0.925, 0.21666667), (0.925, 0.23333333), (0.9166667, 0.23333333), (0.9166667, 0.21666667), (0.9166667, 0.21666667), (0.9166667, 0.23333333), (0.90833336, 0.23333333), (0.90833336, 0.21666667), (0.90833336, 0.21666667), (0.90833336, 0.23333333), (0.9, 0.23333333), (0.9, 0.21666667), (0.9, 0.21666667), (0.9, 0.23333333), (0.89166665, 0.23333333), (0.89166665, 0.21666667), (0.89166665, 0.21666667), (0.89166665, 0.23333333), (0.8833333, 0.23333333), (0.8833333, 0.21666667), (0.8833333, 0.21666667), (0.8833333, 0.23333333), (0.875, 0.23333333), (0.875, 0.21666667), (0.875, 0.21666667), (0.875, 0.23333333), (0.8666667, 0.23333333), (0.8666667, 0.21666667), (0.8666667, 0.21666667), (0.8666667, 0.23333333), (0.85833335, 0.23333333), (0.85833335, 0.21666667), (0.85833335, 0.21666667), (0.85833335, 0.23333333), (0.85, 0.23333333), (0.85, 0.21666667), (0.85, 0.21666667), (0.85, 0.23333333), (0.84166664, 0.23333333), (0.84166664, 0.21666667), (0.84166664, 0.21666667), (0.84166664, 0.23333333), (0.8333333, 0.23333333), (0.8333333, 0.21666667), (0.8333333, 0.21666667), (0.8333333, 0.23333333), (0.825, 0.23333333), (0.825, 0.21666667), (0.825, 0.21666667), (0.825, 0.23333333), (0.81666666, 0.23333333), (0.81666666, 0.21666667), (0.81666666, 0.21666667), (0.81666666, 0.23333333), (0.80833334, 0.23333333), (0.80833334, 0.21666667), (0.80833334, 0.21666667), (0.80833334, 0.23333333), (0.8, 0.23333333), (0.8, 0.21666667), (0.8, 0.21666667), (0.8, 0.23333333), (0.7916667, 0.23333333), (0.7916667, 0.21666667), (0.7916667, 0.21666667), (0.7916667, 0.23333333), (0.78333336, 0.23333333), (0.78333336, 0.21666667), (0.78333336, 0.21666667), (0.78333336, 0.23333333), (0.775, 0.23333333), (0.775, 0.21666667), (0.775, 0.21666667), (0.775, 0.23333333), (0.76666665, 0.23333333), (0.76666665, 0.21666667), (0.76666665, 0.21666667), (0.76666665, 0.23333333), (0.7583333, 0.23333333), (0.7583333, 0.21666667), (0.7583333, 0.21666667), (0.7583333, 0.23333333), (0.75, 0.23333333), (0.75, 0.21666667), (0.75, 0.21666667), (0.75, 0.23333333), (0.7416667, 0.23333333), (0.7416667, 0.21666667), (0.7416667, 0.21666667), (0.7416667, 0.23333333), (0.73333335, 0.23333333), (0.73333335, 0.21666667), (0.73333335, 0.21666667), (0.73333335, 0.23333333), (0.725, 0.23333333), (0.725, 0.21666667), (0.725, 0.21666667), (0.725, 0.23333333), (0.71666664, 0.23333333), (0.71666664, 0.21666667), (0.71666664, 0.21666667), (0.71666664, 0.23333333), (0.7083333, 0.23333333), (0.7083333, 0.21666667), (0.7083333, 0.21666667), (0.7083333, 0.23333333), (0.7, 0.23333333), (0.7, 0.21666667), (0.7, 0.21666667), (0.7, 0.23333333), (0.69166666, 0.23333333), (0.69166666, 0.21666667), (0.69166666, 0.21666667), (0.69166666, 0.23333333), (0.68333334, 0.23333333), (0.68333334, 0.21666667), (0.68333334, 0.21666667), (0.68333334, 0.23333333), (0.675, 0.23333333), (0.675, 0.21666667), (0.675, 0.21666667), (0.675, 0.23333333), (0.6666667, 0.23333333), (0.6666667, 0.21666667), (0.6666667, 0.21666667), (0.6666667, 0.23333333), (0.65833336, 0.23333333), (0.65833336, 0.21666667), (0.65833336, 0.21666667), (0.65833336, 0.23333333), (0.65, 0.23333333), (0.65, 0.21666667), (0.65, 0.21666667), (0.65, 0.23333333), (0.64166665, 0.23333333), (0.64166665, 0.21666667), (0.64166665, 0.21666667), (0.64166665, 0.23333333), (0.6333333, 0.23333333), (0.6333333, 0.21666667), (0.6333333, 0.21666667), (0.6333333, 0.23333333), (0.625, 0.23333333), (0.625, 0.21666667), (0.625, 0.21666667), (0.625, 0.23333333), (0.6166667, 0.23333333), (0.6166667, 0.21666667), (0.6166667, 0.21666667), (0.6166667, 0.23333333), (0.60833335, 0.23333333), (0.60833335, 0.21666667), (0.60833335, 0.21666667), (0.60833335, 0.23333333), (0.6, 0.23333333), (0.6, 0.21666667), (0.6, 0.21666667), (0.6, 0.23333333), (0.59166664, 0.23333333), (0.59166664, 0.21666667), (0.59166664, 0.21666667), (0.59166664, 0.23333333), (0.5833333, 0.23333333), (0.5833333, 0.21666667), (0.5833333, 0.21666667), (0.5833333, 0.23333333), (0.575, 0.23333333), (0.575, 0.21666667), (0.575, 0.21666667), (0.575, 0.23333333), (0.56666666, 0.23333333), (0.56666666, 0.21666667), (0.56666666, 0.21666667), (0.56666666, 0.23333333), (0.55833334, 0.23333333), (0.55833334, 0.21666667), (0.55833334, 0.21666667), (0.55833334, 0.23333333), (0.55, 0.23333333), (0.55, 0.21666667), (0.55, 0.21666667), (0.55, 0.23333333), (0.5416667, 0.23333333), (0.5416667, 0.21666667), (0.5416667, 0.21666667), (0.5416667, 0.23333333), (0.53333336, 0.23333333), (0.53333336, 0.21666667), (0.53333336, 0.21666667), (0.53333336, 0.23333333), (0.525, 0.23333333), (0.525, 0.21666667), (0.525, 0.21666667), (0.525, 0.23333333), (0.51666665, 0.23333333), (0.51666665, 0.21666667), (0.51666665, 0.21666667), (0.51666665, 0.23333333), (0.5083333, 0.23333333), (0.5083333, 0.21666667), (0.5083333, 0.21666667), (0.5083333, 0.23333333), (0.5, 0.23333333), (0.5, 0.21666667), (0.5, 0.21666667), (0.5, 0.23333333), (0.49166667, 0.23333333), (0.49166667, 0.21666667), (0.49166667, 0.21666667), (0.49166667, 0.23333333), (0.48333332, 0.23333333), (0.48333332, 0.21666667), (0.48333332, 0.21666667), (0.48333332, 0.23333333), (0.475, 0.23333333), (0.475, 0.21666667), (0.475, 0.21666667), (0.475, 0.23333333), (0.46666667, 0.23333333), (0.46666667, 0.21666667), (0.46666667, 0.21666667), (0.46666667, 0.23333333), (0.45833334, 0.23333333), (0.45833334, 0.21666667), (0.45833334, 0.21666667), (0.45833334, 0.23333333), (0.45, 0.23333333), (0.45, 0.21666667), (0.45, 0.21666667), (0.45, 0.23333333), (0.44166666, 0.23333333), (0.44166666, 0.21666667), (0.44166666, 0.21666667), (0.44166666, 0.23333333), (0.43333334, 0.23333333), (0.43333334, 0.21666667), (0.43333334, 0.21666667), (0.43333334, 0.23333333), (0.425, 0.23333333), (0.425, 0.21666667), (0.425, 0.21666667), (0.425, 0.23333333), (0.41666666, 0.23333333), (0.41666666, 0.21666667), (0.41666666, 0.21666667), (0.41666666, 0.23333333), (0.40833333, 0.23333333), (0.40833333, 0.21666667), (0.40833333, 0.21666667), (0.40833333, 0.23333333), (0.4, 0.23333333), (0.4, 0.21666667), (0.4, 0.21666667), (0.4, 0.23333333), (0.39166668, 0.23333333), (0.39166668, 0.21666667), (0.39166668, 0.21666667), (0.39166668, 0.23333333), (0.38333333, 0.23333333), (0.38333333, 0.21666667), (0.38333333, 0.21666667), (0.38333333, 0.23333333), (0.375, 0.23333333), (0.375, 0.21666667), (0.375, 0.21666667), (0.375, 0.23333333), (0.36666667, 0.23333333), (0.36666667, 0.21666667), (0.36666667, 0.21666667), (0.36666667, 0.23333333), (0.35833332, 0.23333333), (0.35833332, 0.21666667), (0.35833332, 0.21666667), (0.35833332, 0.23333333), (0.35, 0.23333333), (0.35, 0.21666667), (0.35, 0.21666667), (0.35, 0.23333333), (0.34166667, 0.23333333), (0.34166667, 0.21666667), (0.34166667, 0.21666667), (0.34166667, 0.23333333), (0.33333334, 0.23333333), (0.33333334, 0.21666667), (0.33333334, 0.21666667), (0.33333334, 0.23333333), (0.325, 0.23333333), (0.325, 0.21666667), (0.325, 0.21666667), (0.325, 0.23333333), (0.31666666, 0.23333333), (0.31666666, 0.21666667), (0.31666666, 0.21666667), (0.31666666, 0.23333333), (0.30833334, 0.23333333), (0.30833334, 0.21666667), (0.30833334, 0.21666667), (0.30833334, 0.23333333), (0.3, 0.23333333), (0.3, 0.21666667), (0.3, 0.21666667), (0.3, 0.23333333), (0.29166666, 0.23333333), (0.29166666, 0.21666667), (0.29166666, 0.21666667), (0.29166666, 0.23333333), (0.28333333, 0.23333333), (0.28333333, 0.21666667), (0.28333333, 0.21666667), (0.28333333, 0.23333333), (0.275, 0.23333333), (0.275, 0.21666667), (0.275, 0.21666667), (0.275, 0.23333333), (0.26666668, 0.23333333), (0.26666668, 0.21666667), (0.26666668, 0.21666667), (0.26666668, 0.23333333), (0.25833333, 0.23333333), (0.25833333, 0.21666667), (0.25833333, 0.21666667), (0.25833333, 0.23333333), (0.25, 0.23333333), (0.25, 0.21666667), (0.25, 0.21666667), (0.25, 0.23333333), (0.24166666, 0.23333333), (0.24166666, 0.21666667), (0.24166666, 0.21666667), (0.24166666, 0.23333333), (0.23333333, 0.23333333), (0.23333333, 0.21666667), (0.23333333, 0.21666667), (0.23333333, 0.23333333), (0.225, 0.23333333), (0.225, 0.21666667), (0.225, 0.21666667), (0.225, 0.23333333), (0.21666667, 0.23333333), (0.21666667, 0.21666667), (0.21666667, 0.21666667), (0.21666667, 0.23333333), (0.20833333, 0.23333333), (0.20833333, 0.21666667), (0.20833333, 0.21666667), (0.20833333, 0.23333333), (0.2, 0.23333333), (0.2, 0.21666667), (0.2, 0.21666667), (0.2, 0.23333333), (0.19166666, 0.23333333), (0.19166666, 0.21666667), (0.19166666, 0.21666667), (0.19166666, 0.23333333), (0.18333334, 0.23333333), (0.18333334, 0.21666667), (0.18333334, 0.21666667), (0.18333334, 0.23333333), (0.175, 0.23333333), (0.175, 0.21666667), (0.175, 0.21666667), (0.175, 0.23333333), (0.16666667, 0.23333333), (0.16666667, 0.21666667), (0.16666667, 0.21666667), (0.16666667, 0.23333333), (0.15833333, 0.23333333), (0.15833333, 0.21666667), (0.15833333, 0.21666667), (0.15833333, 0.23333333), (0.15, 0.23333333), (0.15, 0.21666667), (0.15, 0.21666667), (0.15, 0.23333333), (0.14166667, 0.23333333), (0.14166667, 0.21666667), (0.14166667, 0.21666667), (0.14166667, 0.23333333), (0.13333334, 0.23333333), (0.13333334, 0.21666667), (0.13333334, 0.21666667), (0.13333334, 0.23333333), (0.125, 0.23333333), (0.125, 0.21666667), (0.125, 0.21666667), (0.125, 0.23333333), (0.11666667, 0.23333333), (0.11666667, 0.21666667), (0.11666667, 0.21666667), (0.11666667, 0.23333333), (0.108333334, 0.23333333), (0.108333334, 0.21666667), (0.108333334, 0.21666667), (0.108333334, 0.23333333), (0.1, 0.23333333), (0.1, 0.21666667), (0.1, 0.21666667), (0.1, 0.23333333), (0.09166667, 0.23333333), (0.09166667, 0.21666667), (0.09166667, 0.21666667), (0.09166667, 0.23333333), (0.083333336, 0.23333333), (0.083333336, 0.21666667), (0.083333336, 0.21666667), (0.083333336, 0.23333333), (0.075, 0.23333333), (0.075, 0.21666667), (0.075, 0.21666667), (0.075, 0.23333333), (0.06666667, 0.23333333), (0.06666667, 0.21666667), (0.06666667, 0.21666667), (0.06666667, 0.23333333), (0.058333334, 0.23333333), (0.058333334, 0.21666667), (0.058333334, 0.21666667), (0.058333334, 0.23333333), (0.05, 0.23333333), (0.05, 0.21666667), (0.05, 0.21666667), (0.05, 0.23333333), (0.041666668, 0.23333333), (0.041666668, 0.21666667), (0.041666668, 0.21666667), (0.041666668, 0.23333333), (0.033333335, 0.23333333), (0.033333335, 0.21666667), (0.033333335, 0.21666667), (0.033333335, 0.23333333), (0.025, 0.23333333), (0.025, 0.21666667), (0.025, 0.21666667), (0.025, 0.23333333), (0.016666668, 0.23333333), (0.016666668, 0.21666667), (0.016666668, 0.21666667), (0.016666668, 0.23333333), (0.008333334, 0.23333333), (0.008333334, 0.21666667), (0.008333334, 0.21666667), (0.008333334, 0.23333333), (0, 0.23333333), (0, 0.21666667), (1, 0.23333333), (1, 0.25), (0.9916667, 0.25), (0.9916667, 0.23333333), (0.9916667, 0.23333333), (0.9916667, 0.25), (0.98333335, 0.25), (0.98333335, 0.23333333), (0.98333335, 0.23333333), (0.98333335, 0.25), (0.975, 0.25), (0.975, 0.23333333), (0.975, 0.23333333), (0.975, 0.25), (0.96666664, 0.25), (0.96666664, 0.23333333), (0.96666664, 0.23333333), (0.96666664, 0.25), (0.9583333, 0.25), (0.9583333, 0.23333333), (0.9583333, 0.23333333), (0.9583333, 0.25), (0.95, 0.25), (0.95, 0.23333333), (0.95, 0.23333333), (0.95, 0.25), (0.94166666, 0.25), (0.94166666, 0.23333333), (0.94166666, 0.23333333), (0.94166666, 0.25), (0.93333334, 0.25), (0.93333334, 0.23333333), (0.93333334, 0.23333333), (0.93333334, 0.25), (0.925, 0.25), (0.925, 0.23333333), (0.925, 0.23333333), (0.925, 0.25), (0.9166667, 0.25), (0.9166667, 0.23333333), (0.9166667, 0.23333333), (0.9166667, 0.25), (0.90833336, 0.25), (0.90833336, 0.23333333), (0.90833336, 0.23333333), (0.90833336, 0.25), (0.9, 0.25), (0.9, 0.23333333), (0.9, 0.23333333), (0.9, 0.25), (0.89166665, 0.25), (0.89166665, 0.23333333), (0.89166665, 0.23333333), (0.89166665, 0.25), (0.8833333, 0.25), (0.8833333, 0.23333333), (0.8833333, 0.23333333), (0.8833333, 0.25), (0.875, 0.25), (0.875, 0.23333333), (0.875, 0.23333333), (0.875, 0.25), (0.8666667, 0.25), (0.8666667, 0.23333333), (0.8666667, 0.23333333), (0.8666667, 0.25), (0.85833335, 0.25), (0.85833335, 0.23333333), (0.85833335, 0.23333333), (0.85833335, 0.25), (0.85, 0.25), (0.85, 0.23333333), (0.85, 0.23333333), (0.85, 0.25), (0.84166664, 0.25), (0.84166664, 0.23333333), (0.84166664, 0.23333333), (0.84166664, 0.25), (0.8333333, 0.25), (0.8333333, 0.23333333), (0.8333333, 0.23333333), (0.8333333, 0.25), (0.825, 0.25), (0.825, 0.23333333), (0.825, 0.23333333), (0.825, 0.25), (0.81666666, 0.25), (0.81666666, 0.23333333), (0.81666666, 0.23333333), (0.81666666, 0.25), (0.80833334, 0.25), (0.80833334, 0.23333333), (0.80833334, 0.23333333), (0.80833334, 0.25), (0.8, 0.25), (0.8, 0.23333333), (0.8, 0.23333333), (0.8, 0.25), (0.7916667, 0.25), (0.7916667, 0.23333333), (0.7916667, 0.23333333), (0.7916667, 0.25), (0.78333336, 0.25), (0.78333336, 0.23333333), (0.78333336, 0.23333333), (0.78333336, 0.25), (0.775, 0.25), (0.775, 0.23333333), (0.775, 0.23333333), (0.775, 0.25), (0.76666665, 0.25), (0.76666665, 0.23333333), (0.76666665, 0.23333333), (0.76666665, 0.25), (0.7583333, 0.25), (0.7583333, 0.23333333), (0.7583333, 0.23333333), (0.7583333, 0.25), (0.75, 0.25), (0.75, 0.23333333), (0.75, 0.23333333), (0.75, 0.25), (0.7416667, 0.25), (0.7416667, 0.23333333), (0.7416667, 0.23333333), (0.7416667, 0.25), (0.73333335, 0.25), (0.73333335, 0.23333333), (0.73333335, 0.23333333), (0.73333335, 0.25), (0.725, 0.25), (0.725, 0.23333333), (0.725, 0.23333333), (0.725, 0.25), (0.71666664, 0.25), (0.71666664, 0.23333333), (0.71666664, 0.23333333), (0.71666664, 0.25), (0.7083333, 0.25), (0.7083333, 0.23333333), (0.7083333, 0.23333333), (0.7083333, 0.25), (0.7, 0.25), (0.7, 0.23333333), (0.7, 0.23333333), (0.7, 0.25), (0.69166666, 0.25), (0.69166666, 0.23333333), (0.69166666, 0.23333333), (0.69166666, 0.25), (0.68333334, 0.25), (0.68333334, 0.23333333), (0.68333334, 0.23333333), (0.68333334, 0.25), (0.675, 0.25), (0.675, 0.23333333), (0.675, 0.23333333), (0.675, 0.25), (0.6666667, 0.25), (0.6666667, 0.23333333), (0.6666667, 0.23333333), (0.6666667, 0.25), (0.65833336, 0.25), (0.65833336, 0.23333333), (0.65833336, 0.23333333), (0.65833336, 0.25), (0.65, 0.25), (0.65, 0.23333333), (0.65, 0.23333333), (0.65, 0.25), (0.64166665, 0.25), (0.64166665, 0.23333333), (0.64166665, 0.23333333), (0.64166665, 0.25), (0.6333333, 0.25), (0.6333333, 0.23333333), (0.6333333, 0.23333333), (0.6333333, 0.25), (0.625, 0.25), (0.625, 0.23333333), (0.625, 0.23333333), (0.625, 0.25), (0.6166667, 0.25), (0.6166667, 0.23333333), (0.6166667, 0.23333333), (0.6166667, 0.25), (0.60833335, 0.25), (0.60833335, 0.23333333), (0.60833335, 0.23333333), (0.60833335, 0.25), (0.6, 0.25), (0.6, 0.23333333), (0.6, 0.23333333), (0.6, 0.25), (0.59166664, 0.25), (0.59166664, 0.23333333), (0.59166664, 0.23333333), (0.59166664, 0.25), (0.5833333, 0.25), (0.5833333, 0.23333333), (0.5833333, 0.23333333), (0.5833333, 0.25), (0.575, 0.25), (0.575, 0.23333333), (0.575, 0.23333333), (0.575, 0.25), (0.56666666, 0.25), (0.56666666, 0.23333333), (0.56666666, 0.23333333), (0.56666666, 0.25), (0.55833334, 0.25), (0.55833334, 0.23333333), (0.55833334, 0.23333333), (0.55833334, 0.25), (0.55, 0.25), (0.55, 0.23333333), (0.55, 0.23333333), (0.55, 0.25), (0.5416667, 0.25), (0.5416667, 0.23333333), (0.5416667, 0.23333333), (0.5416667, 0.25), (0.53333336, 0.25), (0.53333336, 0.23333333), (0.53333336, 0.23333333), (0.53333336, 0.25), (0.525, 0.25), (0.525, 0.23333333), (0.525, 0.23333333), (0.525, 0.25), (0.51666665, 0.25), (0.51666665, 0.23333333), (0.51666665, 0.23333333), (0.51666665, 0.25), (0.5083333, 0.25), (0.5083333, 0.23333333), (0.5083333, 0.23333333), (0.5083333, 0.25), (0.5, 0.25), (0.5, 0.23333333), (0.5, 0.23333333), (0.5, 0.25), (0.49166667, 0.25), (0.49166667, 0.23333333), (0.49166667, 0.23333333), (0.49166667, 0.25), (0.48333332, 0.25), (0.48333332, 0.23333333), (0.48333332, 0.23333333), (0.48333332, 0.25), (0.475, 0.25), (0.475, 0.23333333), (0.475, 0.23333333), (0.475, 0.25), (0.46666667, 0.25), (0.46666667, 0.23333333), (0.46666667, 0.23333333), (0.46666667, 0.25), (0.45833334, 0.25), (0.45833334, 0.23333333), (0.45833334, 0.23333333), (0.45833334, 0.25), (0.45, 0.25), (0.45, 0.23333333), (0.45, 0.23333333), (0.45, 0.25), (0.44166666, 0.25), (0.44166666, 0.23333333), (0.44166666, 0.23333333), (0.44166666, 0.25), (0.43333334, 0.25), (0.43333334, 0.23333333), (0.43333334, 0.23333333), (0.43333334, 0.25), (0.425, 0.25), (0.425, 0.23333333), (0.425, 0.23333333), (0.425, 0.25), (0.41666666, 0.25), (0.41666666, 0.23333333), (0.41666666, 0.23333333), (0.41666666, 0.25), (0.40833333, 0.25), (0.40833333, 0.23333333), (0.40833333, 0.23333333), (0.40833333, 0.25), (0.4, 0.25), (0.4, 0.23333333), (0.4, 0.23333333), (0.4, 0.25), (0.39166668, 0.25), (0.39166668, 0.23333333), (0.39166668, 0.23333333), (0.39166668, 0.25), (0.38333333, 0.25), (0.38333333, 0.23333333), (0.38333333, 0.23333333), (0.38333333, 0.25), (0.375, 0.25), (0.375, 0.23333333), (0.375, 0.23333333), (0.375, 0.25), (0.36666667, 0.25), (0.36666667, 0.23333333), (0.36666667, 0.23333333), (0.36666667, 0.25), (0.35833332, 0.25), (0.35833332, 0.23333333), (0.35833332, 0.23333333), (0.35833332, 0.25), (0.35, 0.25), (0.35, 0.23333333), (0.35, 0.23333333), (0.35, 0.25), (0.34166667, 0.25), (0.34166667, 0.23333333), (0.34166667, 0.23333333), (0.34166667, 0.25), (0.33333334, 0.25), (0.33333334, 0.23333333), (0.33333334, 0.23333333), (0.33333334, 0.25), (0.325, 0.25), (0.325, 0.23333333), (0.325, 0.23333333), (0.325, 0.25), (0.31666666, 0.25), (0.31666666, 0.23333333), (0.31666666, 0.23333333), (0.31666666, 0.25), (0.30833334, 0.25), (0.30833334, 0.23333333), (0.30833334, 0.23333333), (0.30833334, 0.25), (0.3, 0.25), (0.3, 0.23333333), (0.3, 0.23333333), (0.3, 0.25), (0.29166666, 0.25), (0.29166666, 0.23333333), (0.29166666, 0.23333333), (0.29166666, 0.25), (0.28333333, 0.25), (0.28333333, 0.23333333), (0.28333333, 0.23333333), (0.28333333, 0.25), (0.275, 0.25), (0.275, 0.23333333), (0.275, 0.23333333), (0.275, 0.25), (0.26666668, 0.25), (0.26666668, 0.23333333), (0.26666668, 0.23333333), (0.26666668, 0.25), (0.25833333, 0.25), (0.25833333, 0.23333333), (0.25833333, 0.23333333), (0.25833333, 0.25), (0.25, 0.25), (0.25, 0.23333333), (0.25, 0.23333333), (0.25, 0.25), (0.24166666, 0.25), (0.24166666, 0.23333333), (0.24166666, 0.23333333), (0.24166666, 0.25), (0.23333333, 0.25), (0.23333333, 0.23333333), (0.23333333, 0.23333333), (0.23333333, 0.25), (0.225, 0.25), (0.225, 0.23333333), (0.225, 0.23333333), (0.225, 0.25), (0.21666667, 0.25), (0.21666667, 0.23333333), (0.21666667, 0.23333333), (0.21666667, 0.25), (0.20833333, 0.25), (0.20833333, 0.23333333), (0.20833333, 0.23333333), (0.20833333, 0.25), (0.2, 0.25), (0.2, 0.23333333), (0.2, 0.23333333), (0.2, 0.25), (0.19166666, 0.25), (0.19166666, 0.23333333), (0.19166666, 0.23333333), (0.19166666, 0.25), (0.18333334, 0.25), (0.18333334, 0.23333333), (0.18333334, 0.23333333), (0.18333334, 0.25), (0.175, 0.25), (0.175, 0.23333333), (0.175, 0.23333333), (0.175, 0.25), (0.16666667, 0.25), (0.16666667, 0.23333333), (0.16666667, 0.23333333), (0.16666667, 0.25), (0.15833333, 0.25), (0.15833333, 0.23333333), (0.15833333, 0.23333333), (0.15833333, 0.25), (0.15, 0.25), (0.15, 0.23333333), (0.15, 0.23333333), (0.15, 0.25), (0.14166667, 0.25), (0.14166667, 0.23333333), (0.14166667, 0.23333333), (0.14166667, 0.25), (0.13333334, 0.25), (0.13333334, 0.23333333), (0.13333334, 0.23333333), (0.13333334, 0.25), (0.125, 0.25), (0.125, 0.23333333), (0.125, 0.23333333), (0.125, 0.25), (0.11666667, 0.25), (0.11666667, 0.23333333), (0.11666667, 0.23333333), (0.11666667, 0.25), (0.108333334, 0.25), (0.108333334, 0.23333333), (0.108333334, 0.23333333), (0.108333334, 0.25), (0.1, 0.25), (0.1, 0.23333333), (0.1, 0.23333333), (0.1, 0.25), (0.09166667, 0.25), (0.09166667, 0.23333333), (0.09166667, 0.23333333), (0.09166667, 0.25), (0.083333336, 0.25), (0.083333336, 0.23333333), (0.083333336, 0.23333333), (0.083333336, 0.25), (0.075, 0.25), (0.075, 0.23333333), (0.075, 0.23333333), (0.075, 0.25), (0.06666667, 0.25), (0.06666667, 0.23333333), (0.06666667, 0.23333333), (0.06666667, 0.25), (0.058333334, 0.25), (0.058333334, 0.23333333), (0.058333334, 0.23333333), (0.058333334, 0.25), (0.05, 0.25), (0.05, 0.23333333), (0.05, 0.23333333), (0.05, 0.25), (0.041666668, 0.25), (0.041666668, 0.23333333), (0.041666668, 0.23333333), (0.041666668, 0.25), (0.033333335, 0.25), (0.033333335, 0.23333333), (0.033333335, 0.23333333), (0.033333335, 0.25), (0.025, 0.25), (0.025, 0.23333333), (0.025, 0.23333333), (0.025, 0.25), (0.016666668, 0.25), (0.016666668, 0.23333333), (0.016666668, 0.23333333), (0.016666668, 0.25), (0.008333334, 0.25), (0.008333334, 0.23333333), (0.008333334, 0.23333333), (0.008333334, 0.25), (0, 0.25), (0, 0.23333333), (1, 0.25), (1, 0.26666668), (0.9916667, 0.26666668), (0.9916667, 0.25), (0.9916667, 0.25), (0.9916667, 0.26666668), (0.98333335, 0.26666668), (0.98333335, 0.25), (0.98333335, 0.25), (0.98333335, 0.26666668), (0.975, 0.26666668), (0.975, 0.25), (0.975, 0.25), (0.975, 0.26666668), (0.96666664, 0.26666668), (0.96666664, 0.25), (0.96666664, 0.25), (0.96666664, 0.26666668), (0.9583333, 0.26666668), (0.9583333, 0.25), (0.9583333, 0.25), (0.9583333, 0.26666668), (0.95, 0.26666668), (0.95, 0.25), (0.95, 0.25), (0.95, 0.26666668), (0.94166666, 0.26666668), (0.94166666, 0.25), (0.94166666, 0.25), (0.94166666, 0.26666668), (0.93333334, 0.26666668), (0.93333334, 0.25), (0.93333334, 0.25), (0.93333334, 0.26666668), (0.925, 0.26666668), (0.925, 0.25), (0.925, 0.25), (0.925, 0.26666668), (0.9166667, 0.26666668), (0.9166667, 0.25), (0.9166667, 0.25), (0.9166667, 0.26666668), (0.90833336, 0.26666668), (0.90833336, 0.25), (0.90833336, 0.25), (0.90833336, 0.26666668), (0.9, 0.26666668), (0.9, 0.25), (0.9, 0.25), (0.9, 0.26666668), (0.89166665, 0.26666668), (0.89166665, 0.25), (0.89166665, 0.25), (0.89166665, 0.26666668), (0.8833333, 0.26666668), (0.8833333, 0.25), (0.8833333, 0.25), (0.8833333, 0.26666668), (0.875, 0.26666668), (0.875, 0.25), (0.875, 0.25), (0.875, 0.26666668), (0.8666667, 0.26666668), (0.8666667, 0.25), (0.8666667, 0.25), (0.8666667, 0.26666668), (0.85833335, 0.26666668), (0.85833335, 0.25), (0.85833335, 0.25), (0.85833335, 0.26666668), (0.85, 0.26666668), (0.85, 0.25), (0.85, 0.25), (0.85, 0.26666668), (0.84166664, 0.26666668), (0.84166664, 0.25), (0.84166664, 0.25), (0.84166664, 0.26666668), (0.8333333, 0.26666668), (0.8333333, 0.25), (0.8333333, 0.25), (0.8333333, 0.26666668), (0.825, 0.26666668), (0.825, 0.25), (0.825, 0.25), (0.825, 0.26666668), (0.81666666, 0.26666668), (0.81666666, 0.25), (0.81666666, 0.25), (0.81666666, 0.26666668), (0.80833334, 0.26666668), (0.80833334, 0.25), (0.80833334, 0.25), (0.80833334, 0.26666668), (0.8, 0.26666668), (0.8, 0.25), (0.8, 0.25), (0.8, 0.26666668), (0.7916667, 0.26666668), (0.7916667, 0.25), (0.7916667, 0.25), (0.7916667, 0.26666668), (0.78333336, 0.26666668), (0.78333336, 0.25), (0.78333336, 0.25), (0.78333336, 0.26666668), (0.775, 0.26666668), (0.775, 0.25), (0.775, 0.25), (0.775, 0.26666668), (0.76666665, 0.26666668), (0.76666665, 0.25), (0.76666665, 0.25), (0.76666665, 0.26666668), (0.7583333, 0.26666668), (0.7583333, 0.25), (0.7583333, 0.25), (0.7583333, 0.26666668), (0.75, 0.26666668), (0.75, 0.25), (0.75, 0.25), (0.75, 0.26666668), (0.7416667, 0.26666668), (0.7416667, 0.25), (0.7416667, 0.25), (0.7416667, 0.26666668), (0.73333335, 0.26666668), (0.73333335, 0.25), (0.73333335, 0.25), (0.73333335, 0.26666668), (0.725, 0.26666668), (0.725, 0.25), (0.725, 0.25), (0.725, 0.26666668), (0.71666664, 0.26666668), (0.71666664, 0.25), (0.71666664, 0.25), (0.71666664, 0.26666668), (0.7083333, 0.26666668), (0.7083333, 0.25), (0.7083333, 0.25), (0.7083333, 0.26666668), (0.7, 0.26666668), (0.7, 0.25), (0.7, 0.25), (0.7, 0.26666668), (0.69166666, 0.26666668), (0.69166666, 0.25), (0.69166666, 0.25), (0.69166666, 0.26666668), (0.68333334, 0.26666668), (0.68333334, 0.25), (0.68333334, 0.25), (0.68333334, 0.26666668), (0.675, 0.26666668), (0.675, 0.25), (0.675, 0.25), (0.675, 0.26666668), (0.6666667, 0.26666668), (0.6666667, 0.25), (0.6666667, 0.25), (0.6666667, 0.26666668), (0.65833336, 0.26666668), (0.65833336, 0.25), (0.65833336, 0.25), (0.65833336, 0.26666668), (0.65, 0.26666668), (0.65, 0.25), (0.65, 0.25), (0.65, 0.26666668), (0.64166665, 0.26666668), (0.64166665, 0.25), (0.64166665, 0.25), (0.64166665, 0.26666668), (0.6333333, 0.26666668), (0.6333333, 0.25), (0.6333333, 0.25), (0.6333333, 0.26666668), (0.625, 0.26666668), (0.625, 0.25), (0.625, 0.25), (0.625, 0.26666668), (0.6166667, 0.26666668), (0.6166667, 0.25), (0.6166667, 0.25), (0.6166667, 0.26666668), (0.60833335, 0.26666668), (0.60833335, 0.25), (0.60833335, 0.25), (0.60833335, 0.26666668), (0.6, 0.26666668), (0.6, 0.25), (0.6, 0.25), (0.6, 0.26666668), (0.59166664, 0.26666668), (0.59166664, 0.25), (0.59166664, 0.25), (0.59166664, 0.26666668), (0.5833333, 0.26666668), (0.5833333, 0.25), (0.5833333, 0.25), (0.5833333, 0.26666668), (0.575, 0.26666668), (0.575, 0.25), (0.575, 0.25), (0.575, 0.26666668), (0.56666666, 0.26666668), (0.56666666, 0.25), (0.56666666, 0.25), (0.56666666, 0.26666668), (0.55833334, 0.26666668), (0.55833334, 0.25), (0.55833334, 0.25), (0.55833334, 0.26666668), (0.55, 0.26666668), (0.55, 0.25), (0.55, 0.25), (0.55, 0.26666668), (0.5416667, 0.26666668), (0.5416667, 0.25), (0.5416667, 0.25), (0.5416667, 0.26666668), (0.53333336, 0.26666668), (0.53333336, 0.25), (0.53333336, 0.25), (0.53333336, 0.26666668), (0.525, 0.26666668), (0.525, 0.25), (0.525, 0.25), (0.525, 0.26666668), (0.51666665, 0.26666668), (0.51666665, 0.25), (0.51666665, 0.25), (0.51666665, 0.26666668), (0.5083333, 0.26666668), (0.5083333, 0.25), (0.5083333, 0.25), (0.5083333, 0.26666668), (0.5, 0.26666668), (0.5, 0.25), (0.5, 0.25), (0.5, 0.26666668), (0.49166667, 0.26666668), (0.49166667, 0.25), (0.49166667, 0.25), (0.49166667, 0.26666668), (0.48333332, 0.26666668), (0.48333332, 0.25), (0.48333332, 0.25), (0.48333332, 0.26666668), (0.475, 0.26666668), (0.475, 0.25), (0.475, 0.25), (0.475, 0.26666668), (0.46666667, 0.26666668), (0.46666667, 0.25), (0.46666667, 0.25), (0.46666667, 0.26666668), (0.45833334, 0.26666668), (0.45833334, 0.25), (0.45833334, 0.25), (0.45833334, 0.26666668), (0.45, 0.26666668), (0.45, 0.25), (0.45, 0.25), (0.45, 0.26666668), (0.44166666, 0.26666668), (0.44166666, 0.25), (0.44166666, 0.25), (0.44166666, 0.26666668), (0.43333334, 0.26666668), (0.43333334, 0.25), (0.43333334, 0.25), (0.43333334, 0.26666668), (0.425, 0.26666668), (0.425, 0.25), (0.425, 0.25), (0.425, 0.26666668), (0.41666666, 0.26666668), (0.41666666, 0.25), (0.41666666, 0.25), (0.41666666, 0.26666668), (0.40833333, 0.26666668), (0.40833333, 0.25), (0.40833333, 0.25), (0.40833333, 0.26666668), (0.4, 0.26666668), (0.4, 0.25), (0.4, 0.25), (0.4, 0.26666668), (0.39166668, 0.26666668), (0.39166668, 0.25), (0.39166668, 0.25), (0.39166668, 0.26666668), (0.38333333, 0.26666668), (0.38333333, 0.25), (0.38333333, 0.25), (0.38333333, 0.26666668), (0.375, 0.26666668), (0.375, 0.25), (0.375, 0.25), (0.375, 0.26666668), (0.36666667, 0.26666668), (0.36666667, 0.25), (0.36666667, 0.25), (0.36666667, 0.26666668), (0.35833332, 0.26666668), (0.35833332, 0.25), (0.35833332, 0.25), (0.35833332, 0.26666668), (0.35, 0.26666668), (0.35, 0.25), (0.35, 0.25), (0.35, 0.26666668), (0.34166667, 0.26666668), (0.34166667, 0.25), (0.34166667, 0.25), (0.34166667, 0.26666668), (0.33333334, 0.26666668), (0.33333334, 0.25), (0.33333334, 0.25), (0.33333334, 0.26666668), (0.325, 0.26666668), (0.325, 0.25), (0.325, 0.25), (0.325, 0.26666668), (0.31666666, 0.26666668), (0.31666666, 0.25), (0.31666666, 0.25), (0.31666666, 0.26666668), (0.30833334, 0.26666668), (0.30833334, 0.25), (0.30833334, 0.25), (0.30833334, 0.26666668), (0.3, 0.26666668), (0.3, 0.25), (0.3, 0.25), (0.3, 0.26666668), (0.29166666, 0.26666668), (0.29166666, 0.25), (0.29166666, 0.25), (0.29166666, 0.26666668), (0.28333333, 0.26666668), (0.28333333, 0.25), (0.28333333, 0.25), (0.28333333, 0.26666668), (0.275, 0.26666668), (0.275, 0.25), (0.275, 0.25), (0.275, 0.26666668), (0.26666668, 0.26666668), (0.26666668, 0.25), (0.26666668, 0.25), (0.26666668, 0.26666668), (0.25833333, 0.26666668), (0.25833333, 0.25), (0.25833333, 0.25), (0.25833333, 0.26666668), (0.25, 0.26666668), (0.25, 0.25), (0.25, 0.25), (0.25, 0.26666668), (0.24166666, 0.26666668), (0.24166666, 0.25), (0.24166666, 0.25), (0.24166666, 0.26666668), (0.23333333, 0.26666668), (0.23333333, 0.25), (0.23333333, 0.25), (0.23333333, 0.26666668), (0.225, 0.26666668), (0.225, 0.25), (0.225, 0.25), (0.225, 0.26666668), (0.21666667, 0.26666668), (0.21666667, 0.25), (0.21666667, 0.25), (0.21666667, 0.26666668), (0.20833333, 0.26666668), (0.20833333, 0.25), (0.20833333, 0.25), (0.20833333, 0.26666668), (0.2, 0.26666668), (0.2, 0.25), (0.2, 0.25), (0.2, 0.26666668), (0.19166666, 0.26666668), (0.19166666, 0.25), (0.19166666, 0.25), (0.19166666, 0.26666668), (0.18333334, 0.26666668), (0.18333334, 0.25), (0.18333334, 0.25), (0.18333334, 0.26666668), (0.175, 0.26666668), (0.175, 0.25), (0.175, 0.25), (0.175, 0.26666668), (0.16666667, 0.26666668), (0.16666667, 0.25), (0.16666667, 0.25), (0.16666667, 0.26666668), (0.15833333, 0.26666668), (0.15833333, 0.25), (0.15833333, 0.25), (0.15833333, 0.26666668), (0.15, 0.26666668), (0.15, 0.25), (0.15, 0.25), (0.15, 0.26666668), (0.14166667, 0.26666668), (0.14166667, 0.25), (0.14166667, 0.25), (0.14166667, 0.26666668), (0.13333334, 0.26666668), (0.13333334, 0.25), (0.13333334, 0.25), (0.13333334, 0.26666668), (0.125, 0.26666668), (0.125, 0.25), (0.125, 0.25), (0.125, 0.26666668), (0.11666667, 0.26666668), (0.11666667, 0.25), (0.11666667, 0.25), (0.11666667, 0.26666668), (0.108333334, 0.26666668), (0.108333334, 0.25), (0.108333334, 0.25), (0.108333334, 0.26666668), (0.1, 0.26666668), (0.1, 0.25), (0.1, 0.25), (0.1, 0.26666668), (0.09166667, 0.26666668), (0.09166667, 0.25), (0.09166667, 0.25), (0.09166667, 0.26666668), (0.083333336, 0.26666668), (0.083333336, 0.25), (0.083333336, 0.25), (0.083333336, 0.26666668), (0.075, 0.26666668), (0.075, 0.25), (0.075, 0.25), (0.075, 0.26666668), (0.06666667, 0.26666668), (0.06666667, 0.25), (0.06666667, 0.25), (0.06666667, 0.26666668), (0.058333334, 0.26666668), (0.058333334, 0.25), (0.058333334, 0.25), (0.058333334, 0.26666668), (0.05, 0.26666668), (0.05, 0.25), (0.05, 0.25), (0.05, 0.26666668), (0.041666668, 0.26666668), (0.041666668, 0.25), (0.041666668, 0.25), (0.041666668, 0.26666668), (0.033333335, 0.26666668), (0.033333335, 0.25), (0.033333335, 0.25), (0.033333335, 0.26666668), (0.025, 0.26666668), (0.025, 0.25), (0.025, 0.25), (0.025, 0.26666668), (0.016666668, 0.26666668), (0.016666668, 0.25), (0.016666668, 0.25), (0.016666668, 0.26666668), (0.008333334, 0.26666668), (0.008333334, 0.25), (0.008333334, 0.25), (0.008333334, 0.26666668), (0, 0.26666668), (0, 0.25), (1, 0.26666668), (1, 0.28333333), (0.9916667, 0.28333333), (0.9916667, 0.26666668), (0.9916667, 0.26666668), (0.9916667, 0.28333333), (0.98333335, 0.28333333), (0.98333335, 0.26666668), (0.98333335, 0.26666668), (0.98333335, 0.28333333), (0.975, 0.28333333), (0.975, 0.26666668), (0.975, 0.26666668), (0.975, 0.28333333), (0.96666664, 0.28333333), (0.96666664, 0.26666668), (0.96666664, 0.26666668), (0.96666664, 0.28333333), (0.9583333, 0.28333333), (0.9583333, 0.26666668), (0.9583333, 0.26666668), (0.9583333, 0.28333333), (0.95, 0.28333333), (0.95, 0.26666668), (0.95, 0.26666668), (0.95, 0.28333333), (0.94166666, 0.28333333), (0.94166666, 0.26666668), (0.94166666, 0.26666668), (0.94166666, 0.28333333), (0.93333334, 0.28333333), (0.93333334, 0.26666668), (0.93333334, 0.26666668), (0.93333334, 0.28333333), (0.925, 0.28333333), (0.925, 0.26666668), (0.925, 0.26666668), (0.925, 0.28333333), (0.9166667, 0.28333333), (0.9166667, 0.26666668), (0.9166667, 0.26666668), (0.9166667, 0.28333333), (0.90833336, 0.28333333), (0.90833336, 0.26666668), (0.90833336, 0.26666668), (0.90833336, 0.28333333), (0.9, 0.28333333), (0.9, 0.26666668), (0.9, 0.26666668), (0.9, 0.28333333), (0.89166665, 0.28333333), (0.89166665, 0.26666668), (0.89166665, 0.26666668), (0.89166665, 0.28333333), (0.8833333, 0.28333333), (0.8833333, 0.26666668), (0.8833333, 0.26666668), (0.8833333, 0.28333333), (0.875, 0.28333333), (0.875, 0.26666668), (0.875, 0.26666668), (0.875, 0.28333333), (0.8666667, 0.28333333), (0.8666667, 0.26666668), (0.8666667, 0.26666668), (0.8666667, 0.28333333), (0.85833335, 0.28333333), (0.85833335, 0.26666668), (0.85833335, 0.26666668), (0.85833335, 0.28333333), (0.85, 0.28333333), (0.85, 0.26666668), (0.85, 0.26666668), (0.85, 0.28333333), (0.84166664, 0.28333333), (0.84166664, 0.26666668), (0.84166664, 0.26666668), (0.84166664, 0.28333333), (0.8333333, 0.28333333), (0.8333333, 0.26666668), (0.8333333, 0.26666668), (0.8333333, 0.28333333), (0.825, 0.28333333), (0.825, 0.26666668), (0.825, 0.26666668), (0.825, 0.28333333), (0.81666666, 0.28333333), (0.81666666, 0.26666668), (0.81666666, 0.26666668), (0.81666666, 0.28333333), (0.80833334, 0.28333333), (0.80833334, 0.26666668), (0.80833334, 0.26666668), (0.80833334, 0.28333333), (0.8, 0.28333333), (0.8, 0.26666668), (0.8, 0.26666668), (0.8, 0.28333333), (0.7916667, 0.28333333), (0.7916667, 0.26666668), (0.7916667, 0.26666668), (0.7916667, 0.28333333), (0.78333336, 0.28333333), (0.78333336, 0.26666668), (0.78333336, 0.26666668), (0.78333336, 0.28333333), (0.775, 0.28333333), (0.775, 0.26666668), (0.775, 0.26666668), (0.775, 0.28333333), (0.76666665, 0.28333333), (0.76666665, 0.26666668), (0.76666665, 0.26666668), (0.76666665, 0.28333333), (0.7583333, 0.28333333), (0.7583333, 0.26666668), (0.7583333, 0.26666668), (0.7583333, 0.28333333), (0.75, 0.28333333), (0.75, 0.26666668), (0.75, 0.26666668), (0.75, 0.28333333), (0.7416667, 0.28333333), (0.7416667, 0.26666668), (0.7416667, 0.26666668), (0.7416667, 0.28333333), (0.73333335, 0.28333333), (0.73333335, 0.26666668), (0.73333335, 0.26666668), (0.73333335, 0.28333333), (0.725, 0.28333333), (0.725, 0.26666668), (0.725, 0.26666668), (0.725, 0.28333333), (0.71666664, 0.28333333), (0.71666664, 0.26666668), (0.71666664, 0.26666668), (0.71666664, 0.28333333), (0.7083333, 0.28333333), (0.7083333, 0.26666668), (0.7083333, 0.26666668), (0.7083333, 0.28333333), (0.7, 0.28333333), (0.7, 0.26666668), (0.7, 0.26666668), (0.7, 0.28333333), (0.69166666, 0.28333333), (0.69166666, 0.26666668), (0.69166666, 0.26666668), (0.69166666, 0.28333333), (0.68333334, 0.28333333), (0.68333334, 0.26666668), (0.68333334, 0.26666668), (0.68333334, 0.28333333), (0.675, 0.28333333), (0.675, 0.26666668), (0.675, 0.26666668), (0.675, 0.28333333), (0.6666667, 0.28333333), (0.6666667, 0.26666668), (0.6666667, 0.26666668), (0.6666667, 0.28333333), (0.65833336, 0.28333333), (0.65833336, 0.26666668), (0.65833336, 0.26666668), (0.65833336, 0.28333333), (0.65, 0.28333333), (0.65, 0.26666668), (0.65, 0.26666668), (0.65, 0.28333333), (0.64166665, 0.28333333), (0.64166665, 0.26666668), (0.64166665, 0.26666668), (0.64166665, 0.28333333), (0.6333333, 0.28333333), (0.6333333, 0.26666668), (0.6333333, 0.26666668), (0.6333333, 0.28333333), (0.625, 0.28333333), (0.625, 0.26666668), (0.625, 0.26666668), (0.625, 0.28333333), (0.6166667, 0.28333333), (0.6166667, 0.26666668), (0.6166667, 0.26666668), (0.6166667, 0.28333333), (0.60833335, 0.28333333), (0.60833335, 0.26666668), (0.60833335, 0.26666668), (0.60833335, 0.28333333), (0.6, 0.28333333), (0.6, 0.26666668), (0.6, 0.26666668), (0.6, 0.28333333), (0.59166664, 0.28333333), (0.59166664, 0.26666668), (0.59166664, 0.26666668), (0.59166664, 0.28333333), (0.5833333, 0.28333333), (0.5833333, 0.26666668), (0.5833333, 0.26666668), (0.5833333, 0.28333333), (0.575, 0.28333333), (0.575, 0.26666668), (0.575, 0.26666668), (0.575, 0.28333333), (0.56666666, 0.28333333), (0.56666666, 0.26666668), (0.56666666, 0.26666668), (0.56666666, 0.28333333), (0.55833334, 0.28333333), (0.55833334, 0.26666668), (0.55833334, 0.26666668), (0.55833334, 0.28333333), (0.55, 0.28333333), (0.55, 0.26666668), (0.55, 0.26666668), (0.55, 0.28333333), (0.5416667, 0.28333333), (0.5416667, 0.26666668), (0.5416667, 0.26666668), (0.5416667, 0.28333333), (0.53333336, 0.28333333), (0.53333336, 0.26666668), (0.53333336, 0.26666668), (0.53333336, 0.28333333), (0.525, 0.28333333), (0.525, 0.26666668), (0.525, 0.26666668), (0.525, 0.28333333), (0.51666665, 0.28333333), (0.51666665, 0.26666668), (0.51666665, 0.26666668), (0.51666665, 0.28333333), (0.5083333, 0.28333333), (0.5083333, 0.26666668), (0.5083333, 0.26666668), (0.5083333, 0.28333333), (0.5, 0.28333333), (0.5, 0.26666668), (0.5, 0.26666668), (0.5, 0.28333333), (0.49166667, 0.28333333), (0.49166667, 0.26666668), (0.49166667, 0.26666668), (0.49166667, 0.28333333), (0.48333332, 0.28333333), (0.48333332, 0.26666668), (0.48333332, 0.26666668), (0.48333332, 0.28333333), (0.475, 0.28333333), (0.475, 0.26666668), (0.475, 0.26666668), (0.475, 0.28333333), (0.46666667, 0.28333333), (0.46666667, 0.26666668), (0.46666667, 0.26666668), (0.46666667, 0.28333333), (0.45833334, 0.28333333), (0.45833334, 0.26666668), (0.45833334, 0.26666668), (0.45833334, 0.28333333), (0.45, 0.28333333), (0.45, 0.26666668), (0.45, 0.26666668), (0.45, 0.28333333), (0.44166666, 0.28333333), (0.44166666, 0.26666668), (0.44166666, 0.26666668), (0.44166666, 0.28333333), (0.43333334, 0.28333333), (0.43333334, 0.26666668), (0.43333334, 0.26666668), (0.43333334, 0.28333333), (0.425, 0.28333333), (0.425, 0.26666668), (0.425, 0.26666668), (0.425, 0.28333333), (0.41666666, 0.28333333), (0.41666666, 0.26666668), (0.41666666, 0.26666668), (0.41666666, 0.28333333), (0.40833333, 0.28333333), (0.40833333, 0.26666668), (0.40833333, 0.26666668), (0.40833333, 0.28333333), (0.4, 0.28333333), (0.4, 0.26666668), (0.4, 0.26666668), (0.4, 0.28333333), (0.39166668, 0.28333333), (0.39166668, 0.26666668), (0.39166668, 0.26666668), (0.39166668, 0.28333333), (0.38333333, 0.28333333), (0.38333333, 0.26666668), (0.38333333, 0.26666668), (0.38333333, 0.28333333), (0.375, 0.28333333), (0.375, 0.26666668), (0.375, 0.26666668), (0.375, 0.28333333), (0.36666667, 0.28333333), (0.36666667, 0.26666668), (0.36666667, 0.26666668), (0.36666667, 0.28333333), (0.35833332, 0.28333333), (0.35833332, 0.26666668), (0.35833332, 0.26666668), (0.35833332, 0.28333333), (0.35, 0.28333333), (0.35, 0.26666668), (0.35, 0.26666668), (0.35, 0.28333333), (0.34166667, 0.28333333), (0.34166667, 0.26666668), (0.34166667, 0.26666668), (0.34166667, 0.28333333), (0.33333334, 0.28333333), (0.33333334, 0.26666668), (0.33333334, 0.26666668), (0.33333334, 0.28333333), (0.325, 0.28333333), (0.325, 0.26666668), (0.325, 0.26666668), (0.325, 0.28333333), (0.31666666, 0.28333333), (0.31666666, 0.26666668), (0.31666666, 0.26666668), (0.31666666, 0.28333333), (0.30833334, 0.28333333), (0.30833334, 0.26666668), (0.30833334, 0.26666668), (0.30833334, 0.28333333), (0.3, 0.28333333), (0.3, 0.26666668), (0.3, 0.26666668), (0.3, 0.28333333), (0.29166666, 0.28333333), (0.29166666, 0.26666668), (0.29166666, 0.26666668), (0.29166666, 0.28333333), (0.28333333, 0.28333333), (0.28333333, 0.26666668), (0.28333333, 0.26666668), (0.28333333, 0.28333333), (0.275, 0.28333333), (0.275, 0.26666668), (0.275, 0.26666668), (0.275, 0.28333333), (0.26666668, 0.28333333), (0.26666668, 0.26666668), (0.26666668, 0.26666668), (0.26666668, 0.28333333), (0.25833333, 0.28333333), (0.25833333, 0.26666668), (0.25833333, 0.26666668), (0.25833333, 0.28333333), (0.25, 0.28333333), (0.25, 0.26666668), (0.25, 0.26666668), (0.25, 0.28333333), (0.24166666, 0.28333333), (0.24166666, 0.26666668), (0.24166666, 0.26666668), (0.24166666, 0.28333333), (0.23333333, 0.28333333), (0.23333333, 0.26666668), (0.23333333, 0.26666668), (0.23333333, 0.28333333), (0.225, 0.28333333), (0.225, 0.26666668), (0.225, 0.26666668), (0.225, 0.28333333), (0.21666667, 0.28333333), (0.21666667, 0.26666668), (0.21666667, 0.26666668), (0.21666667, 0.28333333), (0.20833333, 0.28333333), (0.20833333, 0.26666668), (0.20833333, 0.26666668), (0.20833333, 0.28333333), (0.2, 0.28333333), (0.2, 0.26666668), (0.2, 0.26666668), (0.2, 0.28333333), (0.19166666, 0.28333333), (0.19166666, 0.26666668), (0.19166666, 0.26666668), (0.19166666, 0.28333333), (0.18333334, 0.28333333), (0.18333334, 0.26666668), (0.18333334, 0.26666668), (0.18333334, 0.28333333), (0.175, 0.28333333), (0.175, 0.26666668), (0.175, 0.26666668), (0.175, 0.28333333), (0.16666667, 0.28333333), (0.16666667, 0.26666668), (0.16666667, 0.26666668), (0.16666667, 0.28333333), (0.15833333, 0.28333333), (0.15833333, 0.26666668), (0.15833333, 0.26666668), (0.15833333, 0.28333333), (0.15, 0.28333333), (0.15, 0.26666668), (0.15, 0.26666668), (0.15, 0.28333333), (0.14166667, 0.28333333), (0.14166667, 0.26666668), (0.14166667, 0.26666668), (0.14166667, 0.28333333), (0.13333334, 0.28333333), (0.13333334, 0.26666668), (0.13333334, 0.26666668), (0.13333334, 0.28333333), (0.125, 0.28333333), (0.125, 0.26666668), (0.125, 0.26666668), (0.125, 0.28333333), (0.11666667, 0.28333333), (0.11666667, 0.26666668), (0.11666667, 0.26666668), (0.11666667, 0.28333333), (0.108333334, 0.28333333), (0.108333334, 0.26666668), (0.108333334, 0.26666668), (0.108333334, 0.28333333), (0.1, 0.28333333), (0.1, 0.26666668), (0.1, 0.26666668), (0.1, 0.28333333), (0.09166667, 0.28333333), (0.09166667, 0.26666668), (0.09166667, 0.26666668), (0.09166667, 0.28333333), (0.083333336, 0.28333333), (0.083333336, 0.26666668), (0.083333336, 0.26666668), (0.083333336, 0.28333333), (0.075, 0.28333333), (0.075, 0.26666668), (0.075, 0.26666668), (0.075, 0.28333333), (0.06666667, 0.28333333), (0.06666667, 0.26666668), (0.06666667, 0.26666668), (0.06666667, 0.28333333), (0.058333334, 0.28333333), (0.058333334, 0.26666668), (0.058333334, 0.26666668), (0.058333334, 0.28333333), (0.05, 0.28333333), (0.05, 0.26666668), (0.05, 0.26666668), (0.05, 0.28333333), (0.041666668, 0.28333333), (0.041666668, 0.26666668), (0.041666668, 0.26666668), (0.041666668, 0.28333333), (0.033333335, 0.28333333), (0.033333335, 0.26666668), (0.033333335, 0.26666668), (0.033333335, 0.28333333), (0.025, 0.28333333), (0.025, 0.26666668), (0.025, 0.26666668), (0.025, 0.28333333), (0.016666668, 0.28333333), (0.016666668, 0.26666668), (0.016666668, 0.26666668), (0.016666668, 0.28333333), (0.008333334, 0.28333333), (0.008333334, 0.26666668), (0.008333334, 0.26666668), (0.008333334, 0.28333333), (0, 0.28333333), (0, 0.26666668), (1, 0.28333333), (1, 0.3), (0.9916667, 0.3), (0.9916667, 0.28333333), (0.9916667, 0.28333333), (0.9916667, 0.3), (0.98333335, 0.3), (0.98333335, 0.28333333), (0.98333335, 0.28333333), (0.98333335, 0.3), (0.975, 0.3), (0.975, 0.28333333), (0.975, 0.28333333), (0.975, 0.3), (0.96666664, 0.3), (0.96666664, 0.28333333), (0.96666664, 0.28333333), (0.96666664, 0.3), (0.9583333, 0.3), (0.9583333, 0.28333333), (0.9583333, 0.28333333), (0.9583333, 0.3), (0.95, 0.3), (0.95, 0.28333333), (0.95, 0.28333333), (0.95, 0.3), (0.94166666, 0.3), (0.94166666, 0.28333333), (0.94166666, 0.28333333), (0.94166666, 0.3), (0.93333334, 0.3), (0.93333334, 0.28333333), (0.93333334, 0.28333333), (0.93333334, 0.3), (0.925, 0.3), (0.925, 0.28333333), (0.925, 0.28333333), (0.925, 0.3), (0.9166667, 0.3), (0.9166667, 0.28333333), (0.9166667, 0.28333333), (0.9166667, 0.3), (0.90833336, 0.3), (0.90833336, 0.28333333), (0.90833336, 0.28333333), (0.90833336, 0.3), (0.9, 0.3), (0.9, 0.28333333), (0.9, 0.28333333), (0.9, 0.3), (0.89166665, 0.3), (0.89166665, 0.28333333), (0.89166665, 0.28333333), (0.89166665, 0.3), (0.8833333, 0.3), (0.8833333, 0.28333333), (0.8833333, 0.28333333), (0.8833333, 0.3), (0.875, 0.3), (0.875, 0.28333333), (0.875, 0.28333333), (0.875, 0.3), (0.8666667, 0.3), (0.8666667, 0.28333333), (0.8666667, 0.28333333), (0.8666667, 0.3), (0.85833335, 0.3), (0.85833335, 0.28333333), (0.85833335, 0.28333333), (0.85833335, 0.3), (0.85, 0.3), (0.85, 0.28333333), (0.85, 0.28333333), (0.85, 0.3), (0.84166664, 0.3), (0.84166664, 0.28333333), (0.84166664, 0.28333333), (0.84166664, 0.3), (0.8333333, 0.3), (0.8333333, 0.28333333), (0.8333333, 0.28333333), (0.8333333, 0.3), (0.825, 0.3), (0.825, 0.28333333), (0.825, 0.28333333), (0.825, 0.3), (0.81666666, 0.3), (0.81666666, 0.28333333), (0.81666666, 0.28333333), (0.81666666, 0.3), (0.80833334, 0.3), (0.80833334, 0.28333333), (0.80833334, 0.28333333), (0.80833334, 0.3), (0.8, 0.3), (0.8, 0.28333333), (0.8, 0.28333333), (0.8, 0.3), (0.7916667, 0.3), (0.7916667, 0.28333333), (0.7916667, 0.28333333), (0.7916667, 0.3), (0.78333336, 0.3), (0.78333336, 0.28333333), (0.78333336, 0.28333333), (0.78333336, 0.3), (0.775, 0.3), (0.775, 0.28333333), (0.775, 0.28333333), (0.775, 0.3), (0.76666665, 0.3), (0.76666665, 0.28333333), (0.76666665, 0.28333333), (0.76666665, 0.3), (0.7583333, 0.3), (0.7583333, 0.28333333), (0.7583333, 0.28333333), (0.7583333, 0.3), (0.75, 0.3), (0.75, 0.28333333), (0.75, 0.28333333), (0.75, 0.3), (0.7416667, 0.3), (0.7416667, 0.28333333), (0.7416667, 0.28333333), (0.7416667, 0.3), (0.73333335, 0.3), (0.73333335, 0.28333333), (0.73333335, 0.28333333), (0.73333335, 0.3), (0.725, 0.3), (0.725, 0.28333333), (0.725, 0.28333333), (0.725, 0.3), (0.71666664, 0.3), (0.71666664, 0.28333333), (0.71666664, 0.28333333), (0.71666664, 0.3), (0.7083333, 0.3), (0.7083333, 0.28333333), (0.7083333, 0.28333333), (0.7083333, 0.3), (0.7, 0.3), (0.7, 0.28333333), (0.7, 0.28333333), (0.7, 0.3), (0.69166666, 0.3), (0.69166666, 0.28333333), (0.69166666, 0.28333333), (0.69166666, 0.3), (0.68333334, 0.3), (0.68333334, 0.28333333), (0.68333334, 0.28333333), (0.68333334, 0.3), (0.675, 0.3), (0.675, 0.28333333), (0.675, 0.28333333), (0.675, 0.3), (0.6666667, 0.3), (0.6666667, 0.28333333), (0.6666667, 0.28333333), (0.6666667, 0.3), (0.65833336, 0.3), (0.65833336, 0.28333333), (0.65833336, 0.28333333), (0.65833336, 0.3), (0.65, 0.3), (0.65, 0.28333333), (0.65, 0.28333333), (0.65, 0.3), (0.64166665, 0.3), (0.64166665, 0.28333333), (0.64166665, 0.28333333), (0.64166665, 0.3), (0.6333333, 0.3), (0.6333333, 0.28333333), (0.6333333, 0.28333333), (0.6333333, 0.3), (0.625, 0.3), (0.625, 0.28333333), (0.625, 0.28333333), (0.625, 0.3), (0.6166667, 0.3), (0.6166667, 0.28333333), (0.6166667, 0.28333333), (0.6166667, 0.3), (0.60833335, 0.3), (0.60833335, 0.28333333), (0.60833335, 0.28333333), (0.60833335, 0.3), (0.6, 0.3), (0.6, 0.28333333), (0.6, 0.28333333), (0.6, 0.3), (0.59166664, 0.3), (0.59166664, 0.28333333), (0.59166664, 0.28333333), (0.59166664, 0.3), (0.5833333, 0.3), (0.5833333, 0.28333333), (0.5833333, 0.28333333), (0.5833333, 0.3), (0.575, 0.3), (0.575, 0.28333333), (0.575, 0.28333333), (0.575, 0.3), (0.56666666, 0.3), (0.56666666, 0.28333333), (0.56666666, 0.28333333), (0.56666666, 0.3), (0.55833334, 0.3), (0.55833334, 0.28333333), (0.55833334, 0.28333333), (0.55833334, 0.3), (0.55, 0.3), (0.55, 0.28333333), (0.55, 0.28333333), (0.55, 0.3), (0.5416667, 0.3), (0.5416667, 0.28333333), (0.5416667, 0.28333333), (0.5416667, 0.3), (0.53333336, 0.3), (0.53333336, 0.28333333), (0.53333336, 0.28333333), (0.53333336, 0.3), (0.525, 0.3), (0.525, 0.28333333), (0.525, 0.28333333), (0.525, 0.3), (0.51666665, 0.3), (0.51666665, 0.28333333), (0.51666665, 0.28333333), (0.51666665, 0.3), (0.5083333, 0.3), (0.5083333, 0.28333333), (0.5083333, 0.28333333), (0.5083333, 0.3), (0.5, 0.3), (0.5, 0.28333333), (0.5, 0.28333333), (0.5, 0.3), (0.49166667, 0.3), (0.49166667, 0.28333333), (0.49166667, 0.28333333), (0.49166667, 0.3), (0.48333332, 0.3), (0.48333332, 0.28333333), (0.48333332, 0.28333333), (0.48333332, 0.3), (0.475, 0.3), (0.475, 0.28333333), (0.475, 0.28333333), (0.475, 0.3), (0.46666667, 0.3), (0.46666667, 0.28333333), (0.46666667, 0.28333333), (0.46666667, 0.3), (0.45833334, 0.3), (0.45833334, 0.28333333), (0.45833334, 0.28333333), (0.45833334, 0.3), (0.45, 0.3), (0.45, 0.28333333), (0.45, 0.28333333), (0.45, 0.3), (0.44166666, 0.3), (0.44166666, 0.28333333), (0.44166666, 0.28333333), (0.44166666, 0.3), (0.43333334, 0.3), (0.43333334, 0.28333333), (0.43333334, 0.28333333), (0.43333334, 0.3), (0.425, 0.3), (0.425, 0.28333333), (0.425, 0.28333333), (0.425, 0.3), (0.41666666, 0.3), (0.41666666, 0.28333333), (0.41666666, 0.28333333), (0.41666666, 0.3), (0.40833333, 0.3), (0.40833333, 0.28333333), (0.40833333, 0.28333333), (0.40833333, 0.3), (0.4, 0.3), (0.4, 0.28333333), (0.4, 0.28333333), (0.4, 0.3), (0.39166668, 0.3), (0.39166668, 0.28333333), (0.39166668, 0.28333333), (0.39166668, 0.3), (0.38333333, 0.3), (0.38333333, 0.28333333), (0.38333333, 0.28333333), (0.38333333, 0.3), (0.375, 0.3), (0.375, 0.28333333), (0.375, 0.28333333), (0.375, 0.3), (0.36666667, 0.3), (0.36666667, 0.28333333), (0.36666667, 0.28333333), (0.36666667, 0.3), (0.35833332, 0.3), (0.35833332, 0.28333333), (0.35833332, 0.28333333), (0.35833332, 0.3), (0.35, 0.3), (0.35, 0.28333333), (0.35, 0.28333333), (0.35, 0.3), (0.34166667, 0.3), (0.34166667, 0.28333333), (0.34166667, 0.28333333), (0.34166667, 0.3), (0.33333334, 0.3), (0.33333334, 0.28333333), (0.33333334, 0.28333333), (0.33333334, 0.3), (0.325, 0.3), (0.325, 0.28333333), (0.325, 0.28333333), (0.325, 0.3), (0.31666666, 0.3), (0.31666666, 0.28333333), (0.31666666, 0.28333333), (0.31666666, 0.3), (0.30833334, 0.3), (0.30833334, 0.28333333), (0.30833334, 0.28333333), (0.30833334, 0.3), (0.3, 0.3), (0.3, 0.28333333), (0.3, 0.28333333), (0.3, 0.3), (0.29166666, 0.3), (0.29166666, 0.28333333), (0.29166666, 0.28333333), (0.29166666, 0.3), (0.28333333, 0.3), (0.28333333, 0.28333333), (0.28333333, 0.28333333), (0.28333333, 0.3), (0.275, 0.3), (0.275, 0.28333333), (0.275, 0.28333333), (0.275, 0.3), (0.26666668, 0.3), (0.26666668, 0.28333333), (0.26666668, 0.28333333), (0.26666668, 0.3), (0.25833333, 0.3), (0.25833333, 0.28333333), (0.25833333, 0.28333333), (0.25833333, 0.3), (0.25, 0.3), (0.25, 0.28333333), (0.25, 0.28333333), (0.25, 0.3), (0.24166666, 0.3), (0.24166666, 0.28333333), (0.24166666, 0.28333333), (0.24166666, 0.3), (0.23333333, 0.3), (0.23333333, 0.28333333), (0.23333333, 0.28333333), (0.23333333, 0.3), (0.225, 0.3), (0.225, 0.28333333), (0.225, 0.28333333), (0.225, 0.3), (0.21666667, 0.3), (0.21666667, 0.28333333), (0.21666667, 0.28333333), (0.21666667, 0.3), (0.20833333, 0.3), (0.20833333, 0.28333333), (0.20833333, 0.28333333), (0.20833333, 0.3), (0.2, 0.3), (0.2, 0.28333333), (0.2, 0.28333333), (0.2, 0.3), (0.19166666, 0.3), (0.19166666, 0.28333333), (0.19166666, 0.28333333), (0.19166666, 0.3), (0.18333334, 0.3), (0.18333334, 0.28333333), (0.18333334, 0.28333333), (0.18333334, 0.3), (0.175, 0.3), (0.175, 0.28333333), (0.175, 0.28333333), (0.175, 0.3), (0.16666667, 0.3), (0.16666667, 0.28333333), (0.16666667, 0.28333333), (0.16666667, 0.3), (0.15833333, 0.3), (0.15833333, 0.28333333), (0.15833333, 0.28333333), (0.15833333, 0.3), (0.15, 0.3), (0.15, 0.28333333), (0.15, 0.28333333), (0.15, 0.3), (0.14166667, 0.3), (0.14166667, 0.28333333), (0.14166667, 0.28333333), (0.14166667, 0.3), (0.13333334, 0.3), (0.13333334, 0.28333333), (0.13333334, 0.28333333), (0.13333334, 0.3), (0.125, 0.3), (0.125, 0.28333333), (0.125, 0.28333333), (0.125, 0.3), (0.11666667, 0.3), (0.11666667, 0.28333333), (0.11666667, 0.28333333), (0.11666667, 0.3), (0.108333334, 0.3), (0.108333334, 0.28333333), (0.108333334, 0.28333333), (0.108333334, 0.3), (0.1, 0.3), (0.1, 0.28333333), (0.1, 0.28333333), (0.1, 0.3), (0.09166667, 0.3), (0.09166667, 0.28333333), (0.09166667, 0.28333333), (0.09166667, 0.3), (0.083333336, 0.3), (0.083333336, 0.28333333), (0.083333336, 0.28333333), (0.083333336, 0.3), (0.075, 0.3), (0.075, 0.28333333), (0.075, 0.28333333), (0.075, 0.3), (0.06666667, 0.3), (0.06666667, 0.28333333), (0.06666667, 0.28333333), (0.06666667, 0.3), (0.058333334, 0.3), (0.058333334, 0.28333333), (0.058333334, 0.28333333), (0.058333334, 0.3), (0.05, 0.3), (0.05, 0.28333333), (0.05, 0.28333333), (0.05, 0.3), (0.041666668, 0.3), (0.041666668, 0.28333333), (0.041666668, 0.28333333), (0.041666668, 0.3), (0.033333335, 0.3), (0.033333335, 0.28333333), (0.033333335, 0.28333333), (0.033333335, 0.3), (0.025, 0.3), (0.025, 0.28333333), (0.025, 0.28333333), (0.025, 0.3), (0.016666668, 0.3), (0.016666668, 0.28333333), (0.016666668, 0.28333333), (0.016666668, 0.3), (0.008333334, 0.3), (0.008333334, 0.28333333), (0.008333334, 0.28333333), (0.008333334, 0.3), (0, 0.3), (0, 0.28333333), (1, 0.3), (1, 0.31666666), (0.9916667, 0.31666666), (0.9916667, 0.3), (0.9916667, 0.3), (0.9916667, 0.31666666), (0.98333335, 0.31666666), (0.98333335, 0.3), (0.98333335, 0.3), (0.98333335, 0.31666666), (0.975, 0.31666666), (0.975, 0.3), (0.975, 0.3), (0.975, 0.31666666), (0.96666664, 0.31666666), (0.96666664, 0.3), (0.96666664, 0.3), (0.96666664, 0.31666666), (0.9583333, 0.31666666), (0.9583333, 0.3), (0.9583333, 0.3), (0.9583333, 0.31666666), (0.95, 0.31666666), (0.95, 0.3), (0.95, 0.3), (0.95, 0.31666666), (0.94166666, 0.31666666), (0.94166666, 0.3), (0.94166666, 0.3), (0.94166666, 0.31666666), (0.93333334, 0.31666666), (0.93333334, 0.3), (0.93333334, 0.3), (0.93333334, 0.31666666), (0.925, 0.31666666), (0.925, 0.3), (0.925, 0.3), (0.925, 0.31666666), (0.9166667, 0.31666666), (0.9166667, 0.3), (0.9166667, 0.3), (0.9166667, 0.31666666), (0.90833336, 0.31666666), (0.90833336, 0.3), (0.90833336, 0.3), (0.90833336, 0.31666666), (0.9, 0.31666666), (0.9, 0.3), (0.9, 0.3), (0.9, 0.31666666), (0.89166665, 0.31666666), (0.89166665, 0.3), (0.89166665, 0.3), (0.89166665, 0.31666666), (0.8833333, 0.31666666), (0.8833333, 0.3), (0.8833333, 0.3), (0.8833333, 0.31666666), (0.875, 0.31666666), (0.875, 0.3), (0.875, 0.3), (0.875, 0.31666666), (0.8666667, 0.31666666), (0.8666667, 0.3), (0.8666667, 0.3), (0.8666667, 0.31666666), (0.85833335, 0.31666666), (0.85833335, 0.3), (0.85833335, 0.3), (0.85833335, 0.31666666), (0.85, 0.31666666), (0.85, 0.3), (0.85, 0.3), (0.85, 0.31666666), (0.84166664, 0.31666666), (0.84166664, 0.3), (0.84166664, 0.3), (0.84166664, 0.31666666), (0.8333333, 0.31666666), (0.8333333, 0.3), (0.8333333, 0.3), (0.8333333, 0.31666666), (0.825, 0.31666666), (0.825, 0.3), (0.825, 0.3), (0.825, 0.31666666), (0.81666666, 0.31666666), (0.81666666, 0.3), (0.81666666, 0.3), (0.81666666, 0.31666666), (0.80833334, 0.31666666), (0.80833334, 0.3), (0.80833334, 0.3), (0.80833334, 0.31666666), (0.8, 0.31666666), (0.8, 0.3), (0.8, 0.3), (0.8, 0.31666666), (0.7916667, 0.31666666), (0.7916667, 0.3), (0.7916667, 0.3), (0.7916667, 0.31666666), (0.78333336, 0.31666666), (0.78333336, 0.3), (0.78333336, 0.3), (0.78333336, 0.31666666), (0.775, 0.31666666), (0.775, 0.3), (0.775, 0.3), (0.775, 0.31666666), (0.76666665, 0.31666666), (0.76666665, 0.3), (0.76666665, 0.3), (0.76666665, 0.31666666), (0.7583333, 0.31666666), (0.7583333, 0.3), (0.7583333, 0.3), (0.7583333, 0.31666666), (0.75, 0.31666666), (0.75, 0.3), (0.75, 0.3), (0.75, 0.31666666), (0.7416667, 0.31666666), (0.7416667, 0.3), (0.7416667, 0.3), (0.7416667, 0.31666666), (0.73333335, 0.31666666), (0.73333335, 0.3), (0.73333335, 0.3), (0.73333335, 0.31666666), (0.725, 0.31666666), (0.725, 0.3), (0.725, 0.3), (0.725, 0.31666666), (0.71666664, 0.31666666), (0.71666664, 0.3), (0.71666664, 0.3), (0.71666664, 0.31666666), (0.7083333, 0.31666666), (0.7083333, 0.3), (0.7083333, 0.3), (0.7083333, 0.31666666), (0.7, 0.31666666), (0.7, 0.3), (0.7, 0.3), (0.7, 0.31666666), (0.69166666, 0.31666666), (0.69166666, 0.3), (0.69166666, 0.3), (0.69166666, 0.31666666), (0.68333334, 0.31666666), (0.68333334, 0.3), (0.68333334, 0.3), (0.68333334, 0.31666666), (0.675, 0.31666666), (0.675, 0.3), (0.675, 0.3), (0.675, 0.31666666), (0.6666667, 0.31666666), (0.6666667, 0.3), (0.6666667, 0.3), (0.6666667, 0.31666666), (0.65833336, 0.31666666), (0.65833336, 0.3), (0.65833336, 0.3), (0.65833336, 0.31666666), (0.65, 0.31666666), (0.65, 0.3), (0.65, 0.3), (0.65, 0.31666666), (0.64166665, 0.31666666), (0.64166665, 0.3), (0.64166665, 0.3), (0.64166665, 0.31666666), (0.6333333, 0.31666666), (0.6333333, 0.3), (0.6333333, 0.3), (0.6333333, 0.31666666), (0.625, 0.31666666), (0.625, 0.3), (0.625, 0.3), (0.625, 0.31666666), (0.6166667, 0.31666666), (0.6166667, 0.3), (0.6166667, 0.3), (0.6166667, 0.31666666), (0.60833335, 0.31666666), (0.60833335, 0.3), (0.60833335, 0.3), (0.60833335, 0.31666666), (0.6, 0.31666666), (0.6, 0.3), (0.6, 0.3), (0.6, 0.31666666), (0.59166664, 0.31666666), (0.59166664, 0.3), (0.59166664, 0.3), (0.59166664, 0.31666666), (0.5833333, 0.31666666), (0.5833333, 0.3), (0.5833333, 0.3), (0.5833333, 0.31666666), (0.575, 0.31666666), (0.575, 0.3), (0.575, 0.3), (0.575, 0.31666666), (0.56666666, 0.31666666), (0.56666666, 0.3), (0.56666666, 0.3), (0.56666666, 0.31666666), (0.55833334, 0.31666666), (0.55833334, 0.3), (0.55833334, 0.3), (0.55833334, 0.31666666), (0.55, 0.31666666), (0.55, 0.3), (0.55, 0.3), (0.55, 0.31666666), (0.5416667, 0.31666666), (0.5416667, 0.3), (0.5416667, 0.3), (0.5416667, 0.31666666), (0.53333336, 0.31666666), (0.53333336, 0.3), (0.53333336, 0.3), (0.53333336, 0.31666666), (0.525, 0.31666666), (0.525, 0.3), (0.525, 0.3), (0.525, 0.31666666), (0.51666665, 0.31666666), (0.51666665, 0.3), (0.51666665, 0.3), (0.51666665, 0.31666666), (0.5083333, 0.31666666), (0.5083333, 0.3), (0.5083333, 0.3), (0.5083333, 0.31666666), (0.5, 0.31666666), (0.5, 0.3), (0.5, 0.3), (0.5, 0.31666666), (0.49166667, 0.31666666), (0.49166667, 0.3), (0.49166667, 0.3), (0.49166667, 0.31666666), (0.48333332, 0.31666666), (0.48333332, 0.3), (0.48333332, 0.3), (0.48333332, 0.31666666), (0.475, 0.31666666), (0.475, 0.3), (0.475, 0.3), (0.475, 0.31666666), (0.46666667, 0.31666666), (0.46666667, 0.3), (0.46666667, 0.3), (0.46666667, 0.31666666), (0.45833334, 0.31666666), (0.45833334, 0.3), (0.45833334, 0.3), (0.45833334, 0.31666666), (0.45, 0.31666666), (0.45, 0.3), (0.45, 0.3), (0.45, 0.31666666), (0.44166666, 0.31666666), (0.44166666, 0.3), (0.44166666, 0.3), (0.44166666, 0.31666666), (0.43333334, 0.31666666), (0.43333334, 0.3), (0.43333334, 0.3), (0.43333334, 0.31666666), (0.425, 0.31666666), (0.425, 0.3), (0.425, 0.3), (0.425, 0.31666666), (0.41666666, 0.31666666), (0.41666666, 0.3), (0.41666666, 0.3), (0.41666666, 0.31666666), (0.40833333, 0.31666666), (0.40833333, 0.3), (0.40833333, 0.3), (0.40833333, 0.31666666), (0.4, 0.31666666), (0.4, 0.3), (0.4, 0.3), (0.4, 0.31666666), (0.39166668, 0.31666666), (0.39166668, 0.3), (0.39166668, 0.3), (0.39166668, 0.31666666), (0.38333333, 0.31666666), (0.38333333, 0.3), (0.38333333, 0.3), (0.38333333, 0.31666666), (0.375, 0.31666666), (0.375, 0.3), (0.375, 0.3), (0.375, 0.31666666), (0.36666667, 0.31666666), (0.36666667, 0.3), (0.36666667, 0.3), (0.36666667, 0.31666666), (0.35833332, 0.31666666), (0.35833332, 0.3), (0.35833332, 0.3), (0.35833332, 0.31666666), (0.35, 0.31666666), (0.35, 0.3), (0.35, 0.3), (0.35, 0.31666666), (0.34166667, 0.31666666), (0.34166667, 0.3), (0.34166667, 0.3), (0.34166667, 0.31666666), (0.33333334, 0.31666666), (0.33333334, 0.3), (0.33333334, 0.3), (0.33333334, 0.31666666), (0.325, 0.31666666), (0.325, 0.3), (0.325, 0.3), (0.325, 0.31666666), (0.31666666, 0.31666666), (0.31666666, 0.3), (0.31666666, 0.3), (0.31666666, 0.31666666), (0.30833334, 0.31666666), (0.30833334, 0.3), (0.30833334, 0.3), (0.30833334, 0.31666666), (0.3, 0.31666666), (0.3, 0.3), (0.3, 0.3), (0.3, 0.31666666), (0.29166666, 0.31666666), (0.29166666, 0.3), (0.29166666, 0.3), (0.29166666, 0.31666666), (0.28333333, 0.31666666), (0.28333333, 0.3), (0.28333333, 0.3), (0.28333333, 0.31666666), (0.275, 0.31666666), (0.275, 0.3), (0.275, 0.3), (0.275, 0.31666666), (0.26666668, 0.31666666), (0.26666668, 0.3), (0.26666668, 0.3), (0.26666668, 0.31666666), (0.25833333, 0.31666666), (0.25833333, 0.3), (0.25833333, 0.3), (0.25833333, 0.31666666), (0.25, 0.31666666), (0.25, 0.3), (0.25, 0.3), (0.25, 0.31666666), (0.24166666, 0.31666666), (0.24166666, 0.3), (0.24166666, 0.3), (0.24166666, 0.31666666), (0.23333333, 0.31666666), (0.23333333, 0.3), (0.23333333, 0.3), (0.23333333, 0.31666666), (0.225, 0.31666666), (0.225, 0.3), (0.225, 0.3), (0.225, 0.31666666), (0.21666667, 0.31666666), (0.21666667, 0.3), (0.21666667, 0.3), (0.21666667, 0.31666666), (0.20833333, 0.31666666), (0.20833333, 0.3), (0.20833333, 0.3), (0.20833333, 0.31666666), (0.2, 0.31666666), (0.2, 0.3), (0.2, 0.3), (0.2, 0.31666666), (0.19166666, 0.31666666), (0.19166666, 0.3), (0.19166666, 0.3), (0.19166666, 0.31666666), (0.18333334, 0.31666666), (0.18333334, 0.3), (0.18333334, 0.3), (0.18333334, 0.31666666), (0.175, 0.31666666), (0.175, 0.3), (0.175, 0.3), (0.175, 0.31666666), (0.16666667, 0.31666666), (0.16666667, 0.3), (0.16666667, 0.3), (0.16666667, 0.31666666), (0.15833333, 0.31666666), (0.15833333, 0.3), (0.15833333, 0.3), (0.15833333, 0.31666666), (0.15, 0.31666666), (0.15, 0.3), (0.15, 0.3), (0.15, 0.31666666), (0.14166667, 0.31666666), (0.14166667, 0.3), (0.14166667, 0.3), (0.14166667, 0.31666666), (0.13333334, 0.31666666), (0.13333334, 0.3), (0.13333334, 0.3), (0.13333334, 0.31666666), (0.125, 0.31666666), (0.125, 0.3), (0.125, 0.3), (0.125, 0.31666666), (0.11666667, 0.31666666), (0.11666667, 0.3), (0.11666667, 0.3), (0.11666667, 0.31666666), (0.108333334, 0.31666666), (0.108333334, 0.3), (0.108333334, 0.3), (0.108333334, 0.31666666), (0.1, 0.31666666), (0.1, 0.3), (0.1, 0.3), (0.1, 0.31666666), (0.09166667, 0.31666666), (0.09166667, 0.3), (0.09166667, 0.3), (0.09166667, 0.31666666), (0.083333336, 0.31666666), (0.083333336, 0.3), (0.083333336, 0.3), (0.083333336, 0.31666666), (0.075, 0.31666666), (0.075, 0.3), (0.075, 0.3), (0.075, 0.31666666), (0.06666667, 0.31666666), (0.06666667, 0.3), (0.06666667, 0.3), (0.06666667, 0.31666666), (0.058333334, 0.31666666), (0.058333334, 0.3), (0.058333334, 0.3), (0.058333334, 0.31666666), (0.05, 0.31666666), (0.05, 0.3), (0.05, 0.3), (0.05, 0.31666666), (0.041666668, 0.31666666), (0.041666668, 0.3), (0.041666668, 0.3), (0.041666668, 0.31666666), (0.033333335, 0.31666666), (0.033333335, 0.3), (0.033333335, 0.3), (0.033333335, 0.31666666), (0.025, 0.31666666), (0.025, 0.3), (0.025, 0.3), (0.025, 0.31666666), (0.016666668, 0.31666666), (0.016666668, 0.3), (0.016666668, 0.3), (0.016666668, 0.31666666), (0.008333334, 0.31666666), (0.008333334, 0.3), (0.008333334, 0.3), (0.008333334, 0.31666666), (0, 0.31666666), (0, 0.3), (1, 0.31666666), (1, 0.33333334), (0.9916667, 0.33333334), (0.9916667, 0.31666666), (0.9916667, 0.31666666), (0.9916667, 0.33333334), (0.98333335, 0.33333334), (0.98333335, 0.31666666), (0.98333335, 0.31666666), (0.98333335, 0.33333334), (0.975, 0.33333334), (0.975, 0.31666666), (0.975, 0.31666666), (0.975, 0.33333334), (0.96666664, 0.33333334), (0.96666664, 0.31666666), (0.96666664, 0.31666666), (0.96666664, 0.33333334), (0.9583333, 0.33333334), (0.9583333, 0.31666666), (0.9583333, 0.31666666), (0.9583333, 0.33333334), (0.95, 0.33333334), (0.95, 0.31666666), (0.95, 0.31666666), (0.95, 0.33333334), (0.94166666, 0.33333334), (0.94166666, 0.31666666), (0.94166666, 0.31666666), (0.94166666, 0.33333334), (0.93333334, 0.33333334), (0.93333334, 0.31666666), (0.93333334, 0.31666666), (0.93333334, 0.33333334), (0.925, 0.33333334), (0.925, 0.31666666), (0.925, 0.31666666), (0.925, 0.33333334), (0.9166667, 0.33333334), (0.9166667, 0.31666666), (0.9166667, 0.31666666), (0.9166667, 0.33333334), (0.90833336, 0.33333334), (0.90833336, 0.31666666), (0.90833336, 0.31666666), (0.90833336, 0.33333334), (0.9, 0.33333334), (0.9, 0.31666666), (0.9, 0.31666666), (0.9, 0.33333334), (0.89166665, 0.33333334), (0.89166665, 0.31666666), (0.89166665, 0.31666666), (0.89166665, 0.33333334), (0.8833333, 0.33333334), (0.8833333, 0.31666666), (0.8833333, 0.31666666), (0.8833333, 0.33333334), (0.875, 0.33333334), (0.875, 0.31666666), (0.875, 0.31666666), (0.875, 0.33333334), (0.8666667, 0.33333334), (0.8666667, 0.31666666), (0.8666667, 0.31666666), (0.8666667, 0.33333334), (0.85833335, 0.33333334), (0.85833335, 0.31666666), (0.85833335, 0.31666666), (0.85833335, 0.33333334), (0.85, 0.33333334), (0.85, 0.31666666), (0.85, 0.31666666), (0.85, 0.33333334), (0.84166664, 0.33333334), (0.84166664, 0.31666666), (0.84166664, 0.31666666), (0.84166664, 0.33333334), (0.8333333, 0.33333334), (0.8333333, 0.31666666), (0.8333333, 0.31666666), (0.8333333, 0.33333334), (0.825, 0.33333334), (0.825, 0.31666666), (0.825, 0.31666666), (0.825, 0.33333334), (0.81666666, 0.33333334), (0.81666666, 0.31666666), (0.81666666, 0.31666666), (0.81666666, 0.33333334), (0.80833334, 0.33333334), (0.80833334, 0.31666666), (0.80833334, 0.31666666), (0.80833334, 0.33333334), (0.8, 0.33333334), (0.8, 0.31666666), (0.8, 0.31666666), (0.8, 0.33333334), (0.7916667, 0.33333334), (0.7916667, 0.31666666), (0.7916667, 0.31666666), (0.7916667, 0.33333334), (0.78333336, 0.33333334), (0.78333336, 0.31666666), (0.78333336, 0.31666666), (0.78333336, 0.33333334), (0.775, 0.33333334), (0.775, 0.31666666), (0.775, 0.31666666), (0.775, 0.33333334), (0.76666665, 0.33333334), (0.76666665, 0.31666666), (0.76666665, 0.31666666), (0.76666665, 0.33333334), (0.7583333, 0.33333334), (0.7583333, 0.31666666), (0.7583333, 0.31666666), (0.7583333, 0.33333334), (0.75, 0.33333334), (0.75, 0.31666666), (0.75, 0.31666666), (0.75, 0.33333334), (0.7416667, 0.33333334), (0.7416667, 0.31666666), (0.7416667, 0.31666666), (0.7416667, 0.33333334), (0.73333335, 0.33333334), (0.73333335, 0.31666666), (0.73333335, 0.31666666), (0.73333335, 0.33333334), (0.725, 0.33333334), (0.725, 0.31666666), (0.725, 0.31666666), (0.725, 0.33333334), (0.71666664, 0.33333334), (0.71666664, 0.31666666), (0.71666664, 0.31666666), (0.71666664, 0.33333334), (0.7083333, 0.33333334), (0.7083333, 0.31666666), (0.7083333, 0.31666666), (0.7083333, 0.33333334), (0.7, 0.33333334), (0.7, 0.31666666), (0.7, 0.31666666), (0.7, 0.33333334), (0.69166666, 0.33333334), (0.69166666, 0.31666666), (0.69166666, 0.31666666), (0.69166666, 0.33333334), (0.68333334, 0.33333334), (0.68333334, 0.31666666), (0.68333334, 0.31666666), (0.68333334, 0.33333334), (0.675, 0.33333334), (0.675, 0.31666666), (0.675, 0.31666666), (0.675, 0.33333334), (0.6666667, 0.33333334), (0.6666667, 0.31666666), (0.6666667, 0.31666666), (0.6666667, 0.33333334), (0.65833336, 0.33333334), (0.65833336, 0.31666666), (0.65833336, 0.31666666), (0.65833336, 0.33333334), (0.65, 0.33333334), (0.65, 0.31666666), (0.65, 0.31666666), (0.65, 0.33333334), (0.64166665, 0.33333334), (0.64166665, 0.31666666), (0.64166665, 0.31666666), (0.64166665, 0.33333334), (0.6333333, 0.33333334), (0.6333333, 0.31666666), (0.6333333, 0.31666666), (0.6333333, 0.33333334), (0.625, 0.33333334), (0.625, 0.31666666), (0.625, 0.31666666), (0.625, 0.33333334), (0.6166667, 0.33333334), (0.6166667, 0.31666666), (0.6166667, 0.31666666), (0.6166667, 0.33333334), (0.60833335, 0.33333334), (0.60833335, 0.31666666), (0.60833335, 0.31666666), (0.60833335, 0.33333334), (0.6, 0.33333334), (0.6, 0.31666666), (0.6, 0.31666666), (0.6, 0.33333334), (0.59166664, 0.33333334), (0.59166664, 0.31666666), (0.59166664, 0.31666666), (0.59166664, 0.33333334), (0.5833333, 0.33333334), (0.5833333, 0.31666666), (0.5833333, 0.31666666), (0.5833333, 0.33333334), (0.575, 0.33333334), (0.575, 0.31666666), (0.575, 0.31666666), (0.575, 0.33333334), (0.56666666, 0.33333334), (0.56666666, 0.31666666), (0.56666666, 0.31666666), (0.56666666, 0.33333334), (0.55833334, 0.33333334), (0.55833334, 0.31666666), (0.55833334, 0.31666666), (0.55833334, 0.33333334), (0.55, 0.33333334), (0.55, 0.31666666), (0.55, 0.31666666), (0.55, 0.33333334), (0.5416667, 0.33333334), (0.5416667, 0.31666666), (0.5416667, 0.31666666), (0.5416667, 0.33333334), (0.53333336, 0.33333334), (0.53333336, 0.31666666), (0.53333336, 0.31666666), (0.53333336, 0.33333334), (0.525, 0.33333334), (0.525, 0.31666666), (0.525, 0.31666666), (0.525, 0.33333334), (0.51666665, 0.33333334), (0.51666665, 0.31666666), (0.51666665, 0.31666666), (0.51666665, 0.33333334), (0.5083333, 0.33333334), (0.5083333, 0.31666666), (0.5083333, 0.31666666), (0.5083333, 0.33333334), (0.5, 0.33333334), (0.5, 0.31666666), (0.5, 0.31666666), (0.5, 0.33333334), (0.49166667, 0.33333334), (0.49166667, 0.31666666), (0.49166667, 0.31666666), (0.49166667, 0.33333334), (0.48333332, 0.33333334), (0.48333332, 0.31666666), (0.48333332, 0.31666666), (0.48333332, 0.33333334), (0.475, 0.33333334), (0.475, 0.31666666), (0.475, 0.31666666), (0.475, 0.33333334), (0.46666667, 0.33333334), (0.46666667, 0.31666666), (0.46666667, 0.31666666), (0.46666667, 0.33333334), (0.45833334, 0.33333334), (0.45833334, 0.31666666), (0.45833334, 0.31666666), (0.45833334, 0.33333334), (0.45, 0.33333334), (0.45, 0.31666666), (0.45, 0.31666666), (0.45, 0.33333334), (0.44166666, 0.33333334), (0.44166666, 0.31666666), (0.44166666, 0.31666666), (0.44166666, 0.33333334), (0.43333334, 0.33333334), (0.43333334, 0.31666666), (0.43333334, 0.31666666), (0.43333334, 0.33333334), (0.425, 0.33333334), (0.425, 0.31666666), (0.425, 0.31666666), (0.425, 0.33333334), (0.41666666, 0.33333334), (0.41666666, 0.31666666), (0.41666666, 0.31666666), (0.41666666, 0.33333334), (0.40833333, 0.33333334), (0.40833333, 0.31666666), (0.40833333, 0.31666666), (0.40833333, 0.33333334), (0.4, 0.33333334), (0.4, 0.31666666), (0.4, 0.31666666), (0.4, 0.33333334), (0.39166668, 0.33333334), (0.39166668, 0.31666666), (0.39166668, 0.31666666), (0.39166668, 0.33333334), (0.38333333, 0.33333334), (0.38333333, 0.31666666), (0.38333333, 0.31666666), (0.38333333, 0.33333334), (0.375, 0.33333334), (0.375, 0.31666666), (0.375, 0.31666666), (0.375, 0.33333334), (0.36666667, 0.33333334), (0.36666667, 0.31666666), (0.36666667, 0.31666666), (0.36666667, 0.33333334), (0.35833332, 0.33333334), (0.35833332, 0.31666666), (0.35833332, 0.31666666), (0.35833332, 0.33333334), (0.35, 0.33333334), (0.35, 0.31666666), (0.35, 0.31666666), (0.35, 0.33333334), (0.34166667, 0.33333334), (0.34166667, 0.31666666), (0.34166667, 0.31666666), (0.34166667, 0.33333334), (0.33333334, 0.33333334), (0.33333334, 0.31666666), (0.33333334, 0.31666666), (0.33333334, 0.33333334), (0.325, 0.33333334), (0.325, 0.31666666), (0.325, 0.31666666), (0.325, 0.33333334), (0.31666666, 0.33333334), (0.31666666, 0.31666666), (0.31666666, 0.31666666), (0.31666666, 0.33333334), (0.30833334, 0.33333334), (0.30833334, 0.31666666), (0.30833334, 0.31666666), (0.30833334, 0.33333334), (0.3, 0.33333334), (0.3, 0.31666666), (0.3, 0.31666666), (0.3, 0.33333334), (0.29166666, 0.33333334), (0.29166666, 0.31666666), (0.29166666, 0.31666666), (0.29166666, 0.33333334), (0.28333333, 0.33333334), (0.28333333, 0.31666666), (0.28333333, 0.31666666), (0.28333333, 0.33333334), (0.275, 0.33333334), (0.275, 0.31666666), (0.275, 0.31666666), (0.275, 0.33333334), (0.26666668, 0.33333334), (0.26666668, 0.31666666), (0.26666668, 0.31666666), (0.26666668, 0.33333334), (0.25833333, 0.33333334), (0.25833333, 0.31666666), (0.25833333, 0.31666666), (0.25833333, 0.33333334), (0.25, 0.33333334), (0.25, 0.31666666), (0.25, 0.31666666), (0.25, 0.33333334), (0.24166666, 0.33333334), (0.24166666, 0.31666666), (0.24166666, 0.31666666), (0.24166666, 0.33333334), (0.23333333, 0.33333334), (0.23333333, 0.31666666), (0.23333333, 0.31666666), (0.23333333, 0.33333334), (0.225, 0.33333334), (0.225, 0.31666666), (0.225, 0.31666666), (0.225, 0.33333334), (0.21666667, 0.33333334), (0.21666667, 0.31666666), (0.21666667, 0.31666666), (0.21666667, 0.33333334), (0.20833333, 0.33333334), (0.20833333, 0.31666666), (0.20833333, 0.31666666), (0.20833333, 0.33333334), (0.2, 0.33333334), (0.2, 0.31666666), (0.2, 0.31666666), (0.2, 0.33333334), (0.19166666, 0.33333334), (0.19166666, 0.31666666), (0.19166666, 0.31666666), (0.19166666, 0.33333334), (0.18333334, 0.33333334), (0.18333334, 0.31666666), (0.18333334, 0.31666666), (0.18333334, 0.33333334), (0.175, 0.33333334), (0.175, 0.31666666), (0.175, 0.31666666), (0.175, 0.33333334), (0.16666667, 0.33333334), (0.16666667, 0.31666666), (0.16666667, 0.31666666), (0.16666667, 0.33333334), (0.15833333, 0.33333334), (0.15833333, 0.31666666), (0.15833333, 0.31666666), (0.15833333, 0.33333334), (0.15, 0.33333334), (0.15, 0.31666666), (0.15, 0.31666666), (0.15, 0.33333334), (0.14166667, 0.33333334), (0.14166667, 0.31666666), (0.14166667, 0.31666666), (0.14166667, 0.33333334), (0.13333334, 0.33333334), (0.13333334, 0.31666666), (0.13333334, 0.31666666), (0.13333334, 0.33333334), (0.125, 0.33333334), (0.125, 0.31666666), (0.125, 0.31666666), (0.125, 0.33333334), (0.11666667, 0.33333334), (0.11666667, 0.31666666), (0.11666667, 0.31666666), (0.11666667, 0.33333334), (0.108333334, 0.33333334), (0.108333334, 0.31666666), (0.108333334, 0.31666666), (0.108333334, 0.33333334), (0.1, 0.33333334), (0.1, 0.31666666), (0.1, 0.31666666), (0.1, 0.33333334), (0.09166667, 0.33333334), (0.09166667, 0.31666666), (0.09166667, 0.31666666), (0.09166667, 0.33333334), (0.083333336, 0.33333334), (0.083333336, 0.31666666), (0.083333336, 0.31666666), (0.083333336, 0.33333334), (0.075, 0.33333334), (0.075, 0.31666666), (0.075, 0.31666666), (0.075, 0.33333334), (0.06666667, 0.33333334), (0.06666667, 0.31666666), (0.06666667, 0.31666666), (0.06666667, 0.33333334), (0.058333334, 0.33333334), (0.058333334, 0.31666666), (0.058333334, 0.31666666), (0.058333334, 0.33333334), (0.05, 0.33333334), (0.05, 0.31666666), (0.05, 0.31666666), (0.05, 0.33333334), (0.041666668, 0.33333334), (0.041666668, 0.31666666), (0.041666668, 0.31666666), (0.041666668, 0.33333334), (0.033333335, 0.33333334), (0.033333335, 0.31666666), (0.033333335, 0.31666666), (0.033333335, 0.33333334), (0.025, 0.33333334), (0.025, 0.31666666), (0.025, 0.31666666), (0.025, 0.33333334), (0.016666668, 0.33333334), (0.016666668, 0.31666666), (0.016666668, 0.31666666), (0.016666668, 0.33333334), (0.008333334, 0.33333334), (0.008333334, 0.31666666), (0.008333334, 0.31666666), (0.008333334, 0.33333334), (0, 0.33333334), (0, 0.31666666), (1, 0.33333334), (1, 0.35), (0.9916667, 0.35), (0.9916667, 0.33333334), (0.9916667, 0.33333334), (0.9916667, 0.35), (0.98333335, 0.35), (0.98333335, 0.33333334), (0.98333335, 0.33333334), (0.98333335, 0.35), (0.975, 0.35), (0.975, 0.33333334), (0.975, 0.33333334), (0.975, 0.35), (0.96666664, 0.35), (0.96666664, 0.33333334), (0.96666664, 0.33333334), (0.96666664, 0.35), (0.9583333, 0.35), (0.9583333, 0.33333334), (0.9583333, 0.33333334), (0.9583333, 0.35), (0.95, 0.35), (0.95, 0.33333334), (0.95, 0.33333334), (0.95, 0.35), (0.94166666, 0.35), (0.94166666, 0.33333334), (0.94166666, 0.33333334), (0.94166666, 0.35), (0.93333334, 0.35), (0.93333334, 0.33333334), (0.93333334, 0.33333334), (0.93333334, 0.35), (0.925, 0.35), (0.925, 0.33333334), (0.925, 0.33333334), (0.925, 0.35), (0.9166667, 0.35), (0.9166667, 0.33333334), (0.9166667, 0.33333334), (0.9166667, 0.35), (0.90833336, 0.35), (0.90833336, 0.33333334), (0.90833336, 0.33333334), (0.90833336, 0.35), (0.9, 0.35), (0.9, 0.33333334), (0.9, 0.33333334), (0.9, 0.35), (0.89166665, 0.35), (0.89166665, 0.33333334), (0.89166665, 0.33333334), (0.89166665, 0.35), (0.8833333, 0.35), (0.8833333, 0.33333334), (0.8833333, 0.33333334), (0.8833333, 0.35), (0.875, 0.35), (0.875, 0.33333334), (0.875, 0.33333334), (0.875, 0.35), (0.8666667, 0.35), (0.8666667, 0.33333334), (0.8666667, 0.33333334), (0.8666667, 0.35), (0.85833335, 0.35), (0.85833335, 0.33333334), (0.85833335, 0.33333334), (0.85833335, 0.35), (0.85, 0.35), (0.85, 0.33333334), (0.85, 0.33333334), (0.85, 0.35), (0.84166664, 0.35), (0.84166664, 0.33333334), (0.84166664, 0.33333334), (0.84166664, 0.35), (0.8333333, 0.35), (0.8333333, 0.33333334), (0.8333333, 0.33333334), (0.8333333, 0.35), (0.825, 0.35), (0.825, 0.33333334), (0.825, 0.33333334), (0.825, 0.35), (0.81666666, 0.35), (0.81666666, 0.33333334), (0.81666666, 0.33333334), (0.81666666, 0.35), (0.80833334, 0.35), (0.80833334, 0.33333334), (0.80833334, 0.33333334), (0.80833334, 0.35), (0.8, 0.35), (0.8, 0.33333334), (0.8, 0.33333334), (0.8, 0.35), (0.7916667, 0.35), (0.7916667, 0.33333334), (0.7916667, 0.33333334), (0.7916667, 0.35), (0.78333336, 0.35), (0.78333336, 0.33333334), (0.78333336, 0.33333334), (0.78333336, 0.35), (0.775, 0.35), (0.775, 0.33333334), (0.775, 0.33333334), (0.775, 0.35), (0.76666665, 0.35), (0.76666665, 0.33333334), (0.76666665, 0.33333334), (0.76666665, 0.35), (0.7583333, 0.35), (0.7583333, 0.33333334), (0.7583333, 0.33333334), (0.7583333, 0.35), (0.75, 0.35), (0.75, 0.33333334), (0.75, 0.33333334), (0.75, 0.35), (0.7416667, 0.35), (0.7416667, 0.33333334), (0.7416667, 0.33333334), (0.7416667, 0.35), (0.73333335, 0.35), (0.73333335, 0.33333334), (0.73333335, 0.33333334), (0.73333335, 0.35), (0.725, 0.35), (0.725, 0.33333334), (0.725, 0.33333334), (0.725, 0.35), (0.71666664, 0.35), (0.71666664, 0.33333334), (0.71666664, 0.33333334), (0.71666664, 0.35), (0.7083333, 0.35), (0.7083333, 0.33333334), (0.7083333, 0.33333334), (0.7083333, 0.35), (0.7, 0.35), (0.7, 0.33333334), (0.7, 0.33333334), (0.7, 0.35), (0.69166666, 0.35), (0.69166666, 0.33333334), (0.69166666, 0.33333334), (0.69166666, 0.35), (0.68333334, 0.35), (0.68333334, 0.33333334), (0.68333334, 0.33333334), (0.68333334, 0.35), (0.675, 0.35), (0.675, 0.33333334), (0.675, 0.33333334), (0.675, 0.35), (0.6666667, 0.35), (0.6666667, 0.33333334), (0.6666667, 0.33333334), (0.6666667, 0.35), (0.65833336, 0.35), (0.65833336, 0.33333334), (0.65833336, 0.33333334), (0.65833336, 0.35), (0.65, 0.35), (0.65, 0.33333334), (0.65, 0.33333334), (0.65, 0.35), (0.64166665, 0.35), (0.64166665, 0.33333334), (0.64166665, 0.33333334), (0.64166665, 0.35), (0.6333333, 0.35), (0.6333333, 0.33333334), (0.6333333, 0.33333334), (0.6333333, 0.35), (0.625, 0.35), (0.625, 0.33333334), (0.625, 0.33333334), (0.625, 0.35), (0.6166667, 0.35), (0.6166667, 0.33333334), (0.6166667, 0.33333334), (0.6166667, 0.35), (0.60833335, 0.35), (0.60833335, 0.33333334), (0.60833335, 0.33333334), (0.60833335, 0.35), (0.6, 0.35), (0.6, 0.33333334), (0.6, 0.33333334), (0.6, 0.35), (0.59166664, 0.35), (0.59166664, 0.33333334), (0.59166664, 0.33333334), (0.59166664, 0.35), (0.5833333, 0.35), (0.5833333, 0.33333334), (0.5833333, 0.33333334), (0.5833333, 0.35), (0.575, 0.35), (0.575, 0.33333334), (0.575, 0.33333334), (0.575, 0.35), (0.56666666, 0.35), (0.56666666, 0.33333334), (0.56666666, 0.33333334), (0.56666666, 0.35), (0.55833334, 0.35), (0.55833334, 0.33333334), (0.55833334, 0.33333334), (0.55833334, 0.35), (0.55, 0.35), (0.55, 0.33333334), (0.55, 0.33333334), (0.55, 0.35), (0.5416667, 0.35), (0.5416667, 0.33333334), (0.5416667, 0.33333334), (0.5416667, 0.35), (0.53333336, 0.35), (0.53333336, 0.33333334), (0.53333336, 0.33333334), (0.53333336, 0.35), (0.525, 0.35), (0.525, 0.33333334), (0.525, 0.33333334), (0.525, 0.35), (0.51666665, 0.35), (0.51666665, 0.33333334), (0.51666665, 0.33333334), (0.51666665, 0.35), (0.5083333, 0.35), (0.5083333, 0.33333334), (0.5083333, 0.33333334), (0.5083333, 0.35), (0.5, 0.35), (0.5, 0.33333334), (0.5, 0.33333334), (0.5, 0.35), (0.49166667, 0.35), (0.49166667, 0.33333334), (0.49166667, 0.33333334), (0.49166667, 0.35), (0.48333332, 0.35), (0.48333332, 0.33333334), (0.48333332, 0.33333334), (0.48333332, 0.35), (0.475, 0.35), (0.475, 0.33333334), (0.475, 0.33333334), (0.475, 0.35), (0.46666667, 0.35), (0.46666667, 0.33333334), (0.46666667, 0.33333334), (0.46666667, 0.35), (0.45833334, 0.35), (0.45833334, 0.33333334), (0.45833334, 0.33333334), (0.45833334, 0.35), (0.45, 0.35), (0.45, 0.33333334), (0.45, 0.33333334), (0.45, 0.35), (0.44166666, 0.35), (0.44166666, 0.33333334), (0.44166666, 0.33333334), (0.44166666, 0.35), (0.43333334, 0.35), (0.43333334, 0.33333334), (0.43333334, 0.33333334), (0.43333334, 0.35), (0.425, 0.35), (0.425, 0.33333334), (0.425, 0.33333334), (0.425, 0.35), (0.41666666, 0.35), (0.41666666, 0.33333334), (0.41666666, 0.33333334), (0.41666666, 0.35), (0.40833333, 0.35), (0.40833333, 0.33333334), (0.40833333, 0.33333334), (0.40833333, 0.35), (0.4, 0.35), (0.4, 0.33333334), (0.4, 0.33333334), (0.4, 0.35), (0.39166668, 0.35), (0.39166668, 0.33333334), (0.39166668, 0.33333334), (0.39166668, 0.35), (0.38333333, 0.35), (0.38333333, 0.33333334), (0.38333333, 0.33333334), (0.38333333, 0.35), (0.375, 0.35), (0.375, 0.33333334), (0.375, 0.33333334), (0.375, 0.35), (0.36666667, 0.35), (0.36666667, 0.33333334), (0.36666667, 0.33333334), (0.36666667, 0.35), (0.35833332, 0.35), (0.35833332, 0.33333334), (0.35833332, 0.33333334), (0.35833332, 0.35), (0.35, 0.35), (0.35, 0.33333334), (0.35, 0.33333334), (0.35, 0.35), (0.34166667, 0.35), (0.34166667, 0.33333334), (0.34166667, 0.33333334), (0.34166667, 0.35), (0.33333334, 0.35), (0.33333334, 0.33333334), (0.33333334, 0.33333334), (0.33333334, 0.35), (0.325, 0.35), (0.325, 0.33333334), (0.325, 0.33333334), (0.325, 0.35), (0.31666666, 0.35), (0.31666666, 0.33333334), (0.31666666, 0.33333334), (0.31666666, 0.35), (0.30833334, 0.35), (0.30833334, 0.33333334), (0.30833334, 0.33333334), (0.30833334, 0.35), (0.3, 0.35), (0.3, 0.33333334), (0.3, 0.33333334), (0.3, 0.35), (0.29166666, 0.35), (0.29166666, 0.33333334), (0.29166666, 0.33333334), (0.29166666, 0.35), (0.28333333, 0.35), (0.28333333, 0.33333334), (0.28333333, 0.33333334), (0.28333333, 0.35), (0.275, 0.35), (0.275, 0.33333334), (0.275, 0.33333334), (0.275, 0.35), (0.26666668, 0.35), (0.26666668, 0.33333334), (0.26666668, 0.33333334), (0.26666668, 0.35), (0.25833333, 0.35), (0.25833333, 0.33333334), (0.25833333, 0.33333334), (0.25833333, 0.35), (0.25, 0.35), (0.25, 0.33333334), (0.25, 0.33333334), (0.25, 0.35), (0.24166666, 0.35), (0.24166666, 0.33333334), (0.24166666, 0.33333334), (0.24166666, 0.35), (0.23333333, 0.35), (0.23333333, 0.33333334), (0.23333333, 0.33333334), (0.23333333, 0.35), (0.225, 0.35), (0.225, 0.33333334), (0.225, 0.33333334), (0.225, 0.35), (0.21666667, 0.35), (0.21666667, 0.33333334), (0.21666667, 0.33333334), (0.21666667, 0.35), (0.20833333, 0.35), (0.20833333, 0.33333334), (0.20833333, 0.33333334), (0.20833333, 0.35), (0.2, 0.35), (0.2, 0.33333334), (0.2, 0.33333334), (0.2, 0.35), (0.19166666, 0.35), (0.19166666, 0.33333334), (0.19166666, 0.33333334), (0.19166666, 0.35), (0.18333334, 0.35), (0.18333334, 0.33333334), (0.18333334, 0.33333334), (0.18333334, 0.35), (0.175, 0.35), (0.175, 0.33333334), (0.175, 0.33333334), (0.175, 0.35), (0.16666667, 0.35), (0.16666667, 0.33333334), (0.16666667, 0.33333334), (0.16666667, 0.35), (0.15833333, 0.35), (0.15833333, 0.33333334), (0.15833333, 0.33333334), (0.15833333, 0.35), (0.15, 0.35), (0.15, 0.33333334), (0.15, 0.33333334), (0.15, 0.35), (0.14166667, 0.35), (0.14166667, 0.33333334), (0.14166667, 0.33333334), (0.14166667, 0.35), (0.13333334, 0.35), (0.13333334, 0.33333334), (0.13333334, 0.33333334), (0.13333334, 0.35), (0.125, 0.35), (0.125, 0.33333334), (0.125, 0.33333334), (0.125, 0.35), (0.11666667, 0.35), (0.11666667, 0.33333334), (0.11666667, 0.33333334), (0.11666667, 0.35), (0.108333334, 0.35), (0.108333334, 0.33333334), (0.108333334, 0.33333334), (0.108333334, 0.35), (0.1, 0.35), (0.1, 0.33333334), (0.1, 0.33333334), (0.1, 0.35), (0.09166667, 0.35), (0.09166667, 0.33333334), (0.09166667, 0.33333334), (0.09166667, 0.35), (0.083333336, 0.35), (0.083333336, 0.33333334), (0.083333336, 0.33333334), (0.083333336, 0.35), (0.075, 0.35), (0.075, 0.33333334), (0.075, 0.33333334), (0.075, 0.35), (0.06666667, 0.35), (0.06666667, 0.33333334), (0.06666667, 0.33333334), (0.06666667, 0.35), (0.058333334, 0.35), (0.058333334, 0.33333334), (0.058333334, 0.33333334), (0.058333334, 0.35), (0.05, 0.35), (0.05, 0.33333334), (0.05, 0.33333334), (0.05, 0.35), (0.041666668, 0.35), (0.041666668, 0.33333334), (0.041666668, 0.33333334), (0.041666668, 0.35), (0.033333335, 0.35), (0.033333335, 0.33333334), (0.033333335, 0.33333334), (0.033333335, 0.35), (0.025, 0.35), (0.025, 0.33333334), (0.025, 0.33333334), (0.025, 0.35), (0.016666668, 0.35), (0.016666668, 0.33333334), (0.016666668, 0.33333334), (0.016666668, 0.35), (0.008333334, 0.35), (0.008333334, 0.33333334), (0.008333334, 0.33333334), (0.008333334, 0.35), (0, 0.35), (0, 0.33333334), (1, 0.35), (1, 0.36666667), (0.9916667, 0.36666667), (0.9916667, 0.35), (0.9916667, 0.35), (0.9916667, 0.36666667), (0.98333335, 0.36666667), (0.98333335, 0.35), (0.98333335, 0.35), (0.98333335, 0.36666667), (0.975, 0.36666667), (0.975, 0.35), (0.975, 0.35), (0.975, 0.36666667), (0.96666664, 0.36666667), (0.96666664, 0.35), (0.96666664, 0.35), (0.96666664, 0.36666667), (0.9583333, 0.36666667), (0.9583333, 0.35), (0.9583333, 0.35), (0.9583333, 0.36666667), (0.95, 0.36666667), (0.95, 0.35), (0.95, 0.35), (0.95, 0.36666667), (0.94166666, 0.36666667), (0.94166666, 0.35), (0.94166666, 0.35), (0.94166666, 0.36666667), (0.93333334, 0.36666667), (0.93333334, 0.35), (0.93333334, 0.35), (0.93333334, 0.36666667), (0.925, 0.36666667), (0.925, 0.35), (0.925, 0.35), (0.925, 0.36666667), (0.9166667, 0.36666667), (0.9166667, 0.35), (0.9166667, 0.35), (0.9166667, 0.36666667), (0.90833336, 0.36666667), (0.90833336, 0.35), (0.90833336, 0.35), (0.90833336, 0.36666667), (0.9, 0.36666667), (0.9, 0.35), (0.9, 0.35), (0.9, 0.36666667), (0.89166665, 0.36666667), (0.89166665, 0.35), (0.89166665, 0.35), (0.89166665, 0.36666667), (0.8833333, 0.36666667), (0.8833333, 0.35), (0.8833333, 0.35), (0.8833333, 0.36666667), (0.875, 0.36666667), (0.875, 0.35), (0.875, 0.35), (0.875, 0.36666667), (0.8666667, 0.36666667), (0.8666667, 0.35), (0.8666667, 0.35), (0.8666667, 0.36666667), (0.85833335, 0.36666667), (0.85833335, 0.35), (0.85833335, 0.35), (0.85833335, 0.36666667), (0.85, 0.36666667), (0.85, 0.35), (0.85, 0.35), (0.85, 0.36666667), (0.84166664, 0.36666667), (0.84166664, 0.35), (0.84166664, 0.35), (0.84166664, 0.36666667), (0.8333333, 0.36666667), (0.8333333, 0.35), (0.8333333, 0.35), (0.8333333, 0.36666667), (0.825, 0.36666667), (0.825, 0.35), (0.825, 0.35), (0.825, 0.36666667), (0.81666666, 0.36666667), (0.81666666, 0.35), (0.81666666, 0.35), (0.81666666, 0.36666667), (0.80833334, 0.36666667), (0.80833334, 0.35), (0.80833334, 0.35), (0.80833334, 0.36666667), (0.8, 0.36666667), (0.8, 0.35), (0.8, 0.35), (0.8, 0.36666667), (0.7916667, 0.36666667), (0.7916667, 0.35), (0.7916667, 0.35), (0.7916667, 0.36666667), (0.78333336, 0.36666667), (0.78333336, 0.35), (0.78333336, 0.35), (0.78333336, 0.36666667), (0.775, 0.36666667), (0.775, 0.35), (0.775, 0.35), (0.775, 0.36666667), (0.76666665, 0.36666667), (0.76666665, 0.35), (0.76666665, 0.35), (0.76666665, 0.36666667), (0.7583333, 0.36666667), (0.7583333, 0.35), (0.7583333, 0.35), (0.7583333, 0.36666667), (0.75, 0.36666667), (0.75, 0.35), (0.75, 0.35), (0.75, 0.36666667), (0.7416667, 0.36666667), (0.7416667, 0.35), (0.7416667, 0.35), (0.7416667, 0.36666667), (0.73333335, 0.36666667), (0.73333335, 0.35), (0.73333335, 0.35), (0.73333335, 0.36666667), (0.725, 0.36666667), (0.725, 0.35), (0.725, 0.35), (0.725, 0.36666667), (0.71666664, 0.36666667), (0.71666664, 0.35), (0.71666664, 0.35), (0.71666664, 0.36666667), (0.7083333, 0.36666667), (0.7083333, 0.35), (0.7083333, 0.35), (0.7083333, 0.36666667), (0.7, 0.36666667), (0.7, 0.35), (0.7, 0.35), (0.7, 0.36666667), (0.69166666, 0.36666667), (0.69166666, 0.35), (0.69166666, 0.35), (0.69166666, 0.36666667), (0.68333334, 0.36666667), (0.68333334, 0.35), (0.68333334, 0.35), (0.68333334, 0.36666667), (0.675, 0.36666667), (0.675, 0.35), (0.675, 0.35), (0.675, 0.36666667), (0.6666667, 0.36666667), (0.6666667, 0.35), (0.6666667, 0.35), (0.6666667, 0.36666667), (0.65833336, 0.36666667), (0.65833336, 0.35), (0.65833336, 0.35), (0.65833336, 0.36666667), (0.65, 0.36666667), (0.65, 0.35), (0.65, 0.35), (0.65, 0.36666667), (0.64166665, 0.36666667), (0.64166665, 0.35), (0.64166665, 0.35), (0.64166665, 0.36666667), (0.6333333, 0.36666667), (0.6333333, 0.35), (0.6333333, 0.35), (0.6333333, 0.36666667), (0.625, 0.36666667), (0.625, 0.35), (0.625, 0.35), (0.625, 0.36666667), (0.6166667, 0.36666667), (0.6166667, 0.35), (0.6166667, 0.35), (0.6166667, 0.36666667), (0.60833335, 0.36666667), (0.60833335, 0.35), (0.60833335, 0.35), (0.60833335, 0.36666667), (0.6, 0.36666667), (0.6, 0.35), (0.6, 0.35), (0.6, 0.36666667), (0.59166664, 0.36666667), (0.59166664, 0.35), (0.59166664, 0.35), (0.59166664, 0.36666667), (0.5833333, 0.36666667), (0.5833333, 0.35), (0.5833333, 0.35), (0.5833333, 0.36666667), (0.575, 0.36666667), (0.575, 0.35), (0.575, 0.35), (0.575, 0.36666667), (0.56666666, 0.36666667), (0.56666666, 0.35), (0.56666666, 0.35), (0.56666666, 0.36666667), (0.55833334, 0.36666667), (0.55833334, 0.35), (0.55833334, 0.35), (0.55833334, 0.36666667), (0.55, 0.36666667), (0.55, 0.35), (0.55, 0.35), (0.55, 0.36666667), (0.5416667, 0.36666667), (0.5416667, 0.35), (0.5416667, 0.35), (0.5416667, 0.36666667), (0.53333336, 0.36666667), (0.53333336, 0.35), (0.53333336, 0.35), (0.53333336, 0.36666667), (0.525, 0.36666667), (0.525, 0.35), (0.525, 0.35), (0.525, 0.36666667), (0.51666665, 0.36666667), (0.51666665, 0.35), (0.51666665, 0.35), (0.51666665, 0.36666667), (0.5083333, 0.36666667), (0.5083333, 0.35), (0.5083333, 0.35), (0.5083333, 0.36666667), (0.5, 0.36666667), (0.5, 0.35), (0.5, 0.35), (0.5, 0.36666667), (0.49166667, 0.36666667), (0.49166667, 0.35), (0.49166667, 0.35), (0.49166667, 0.36666667), (0.48333332, 0.36666667), (0.48333332, 0.35), (0.48333332, 0.35), (0.48333332, 0.36666667), (0.475, 0.36666667), (0.475, 0.35), (0.475, 0.35), (0.475, 0.36666667), (0.46666667, 0.36666667), (0.46666667, 0.35), (0.46666667, 0.35), (0.46666667, 0.36666667), (0.45833334, 0.36666667), (0.45833334, 0.35), (0.45833334, 0.35), (0.45833334, 0.36666667), (0.45, 0.36666667), (0.45, 0.35), (0.45, 0.35), (0.45, 0.36666667), (0.44166666, 0.36666667), (0.44166666, 0.35), (0.44166666, 0.35), (0.44166666, 0.36666667), (0.43333334, 0.36666667), (0.43333334, 0.35), (0.43333334, 0.35), (0.43333334, 0.36666667), (0.425, 0.36666667), (0.425, 0.35), (0.425, 0.35), (0.425, 0.36666667), (0.41666666, 0.36666667), (0.41666666, 0.35), (0.41666666, 0.35), (0.41666666, 0.36666667), (0.40833333, 0.36666667), (0.40833333, 0.35), (0.40833333, 0.35), (0.40833333, 0.36666667), (0.4, 0.36666667), (0.4, 0.35), (0.4, 0.35), (0.4, 0.36666667), (0.39166668, 0.36666667), (0.39166668, 0.35), (0.39166668, 0.35), (0.39166668, 0.36666667), (0.38333333, 0.36666667), (0.38333333, 0.35), (0.38333333, 0.35), (0.38333333, 0.36666667), (0.375, 0.36666667), (0.375, 0.35), (0.375, 0.35), (0.375, 0.36666667), (0.36666667, 0.36666667), (0.36666667, 0.35), (0.36666667, 0.35), (0.36666667, 0.36666667), (0.35833332, 0.36666667), (0.35833332, 0.35), (0.35833332, 0.35), (0.35833332, 0.36666667), (0.35, 0.36666667), (0.35, 0.35), (0.35, 0.35), (0.35, 0.36666667), (0.34166667, 0.36666667), (0.34166667, 0.35), (0.34166667, 0.35), (0.34166667, 0.36666667), (0.33333334, 0.36666667), (0.33333334, 0.35), (0.33333334, 0.35), (0.33333334, 0.36666667), (0.325, 0.36666667), (0.325, 0.35), (0.325, 0.35), (0.325, 0.36666667), (0.31666666, 0.36666667), (0.31666666, 0.35), (0.31666666, 0.35), (0.31666666, 0.36666667), (0.30833334, 0.36666667), (0.30833334, 0.35), (0.30833334, 0.35), (0.30833334, 0.36666667), (0.3, 0.36666667), (0.3, 0.35), (0.3, 0.35), (0.3, 0.36666667), (0.29166666, 0.36666667), (0.29166666, 0.35), (0.29166666, 0.35), (0.29166666, 0.36666667), (0.28333333, 0.36666667), (0.28333333, 0.35), (0.28333333, 0.35), (0.28333333, 0.36666667), (0.275, 0.36666667), (0.275, 0.35), (0.275, 0.35), (0.275, 0.36666667), (0.26666668, 0.36666667), (0.26666668, 0.35), (0.26666668, 0.35), (0.26666668, 0.36666667), (0.25833333, 0.36666667), (0.25833333, 0.35), (0.25833333, 0.35), (0.25833333, 0.36666667), (0.25, 0.36666667), (0.25, 0.35), (0.25, 0.35), (0.25, 0.36666667), (0.24166666, 0.36666667), (0.24166666, 0.35), (0.24166666, 0.35), (0.24166666, 0.36666667), (0.23333333, 0.36666667), (0.23333333, 0.35), (0.23333333, 0.35), (0.23333333, 0.36666667), (0.225, 0.36666667), (0.225, 0.35), (0.225, 0.35), (0.225, 0.36666667), (0.21666667, 0.36666667), (0.21666667, 0.35), (0.21666667, 0.35), (0.21666667, 0.36666667), (0.20833333, 0.36666667), (0.20833333, 0.35), (0.20833333, 0.35), (0.20833333, 0.36666667), (0.2, 0.36666667), (0.2, 0.35), (0.2, 0.35), (0.2, 0.36666667), (0.19166666, 0.36666667), (0.19166666, 0.35), (0.19166666, 0.35), (0.19166666, 0.36666667), (0.18333334, 0.36666667), (0.18333334, 0.35), (0.18333334, 0.35), (0.18333334, 0.36666667), (0.175, 0.36666667), (0.175, 0.35), (0.175, 0.35), (0.175, 0.36666667), (0.16666667, 0.36666667), (0.16666667, 0.35), (0.16666667, 0.35), (0.16666667, 0.36666667), (0.15833333, 0.36666667), (0.15833333, 0.35), (0.15833333, 0.35), (0.15833333, 0.36666667), (0.15, 0.36666667), (0.15, 0.35), (0.15, 0.35), (0.15, 0.36666667), (0.14166667, 0.36666667), (0.14166667, 0.35), (0.14166667, 0.35), (0.14166667, 0.36666667), (0.13333334, 0.36666667), (0.13333334, 0.35), (0.13333334, 0.35), (0.13333334, 0.36666667), (0.125, 0.36666667), (0.125, 0.35), (0.125, 0.35), (0.125, 0.36666667), (0.11666667, 0.36666667), (0.11666667, 0.35), (0.11666667, 0.35), (0.11666667, 0.36666667), (0.108333334, 0.36666667), (0.108333334, 0.35), (0.108333334, 0.35), (0.108333334, 0.36666667), (0.1, 0.36666667), (0.1, 0.35), (0.1, 0.35), (0.1, 0.36666667), (0.09166667, 0.36666667), (0.09166667, 0.35), (0.09166667, 0.35), (0.09166667, 0.36666667), (0.083333336, 0.36666667), (0.083333336, 0.35), (0.083333336, 0.35), (0.083333336, 0.36666667), (0.075, 0.36666667), (0.075, 0.35), (0.075, 0.35), (0.075, 0.36666667), (0.06666667, 0.36666667), (0.06666667, 0.35), (0.06666667, 0.35), (0.06666667, 0.36666667), (0.058333334, 0.36666667), (0.058333334, 0.35), (0.058333334, 0.35), (0.058333334, 0.36666667), (0.05, 0.36666667), (0.05, 0.35), (0.05, 0.35), (0.05, 0.36666667), (0.041666668, 0.36666667), (0.041666668, 0.35), (0.041666668, 0.35), (0.041666668, 0.36666667), (0.033333335, 0.36666667), (0.033333335, 0.35), (0.033333335, 0.35), (0.033333335, 0.36666667), (0.025, 0.36666667), (0.025, 0.35), (0.025, 0.35), (0.025, 0.36666667), (0.016666668, 0.36666667), (0.016666668, 0.35), (0.016666668, 0.35), (0.016666668, 0.36666667), (0.008333334, 0.36666667), (0.008333334, 0.35), (0.008333334, 0.35), (0.008333334, 0.36666667), (0, 0.36666667), (0, 0.35), (1, 0.36666667), (1, 0.38333333), (0.9916667, 0.38333333), (0.9916667, 0.36666667), (0.9916667, 0.36666667), (0.9916667, 0.38333333), (0.98333335, 0.38333333), (0.98333335, 0.36666667), (0.98333335, 0.36666667), (0.98333335, 0.38333333), (0.975, 0.38333333), (0.975, 0.36666667), (0.975, 0.36666667), (0.975, 0.38333333), (0.96666664, 0.38333333), (0.96666664, 0.36666667), (0.96666664, 0.36666667), (0.96666664, 0.38333333), (0.9583333, 0.38333333), (0.9583333, 0.36666667), (0.9583333, 0.36666667), (0.9583333, 0.38333333), (0.95, 0.38333333), (0.95, 0.36666667), (0.95, 0.36666667), (0.95, 0.38333333), (0.94166666, 0.38333333), (0.94166666, 0.36666667), (0.94166666, 0.36666667), (0.94166666, 0.38333333), (0.93333334, 0.38333333), (0.93333334, 0.36666667), (0.93333334, 0.36666667), (0.93333334, 0.38333333), (0.925, 0.38333333), (0.925, 0.36666667), (0.925, 0.36666667), (0.925, 0.38333333), (0.9166667, 0.38333333), (0.9166667, 0.36666667), (0.9166667, 0.36666667), (0.9166667, 0.38333333), (0.90833336, 0.38333333), (0.90833336, 0.36666667), (0.90833336, 0.36666667), (0.90833336, 0.38333333), (0.9, 0.38333333), (0.9, 0.36666667), (0.9, 0.36666667), (0.9, 0.38333333), (0.89166665, 0.38333333), (0.89166665, 0.36666667), (0.89166665, 0.36666667), (0.89166665, 0.38333333), (0.8833333, 0.38333333), (0.8833333, 0.36666667), (0.8833333, 0.36666667), (0.8833333, 0.38333333), (0.875, 0.38333333), (0.875, 0.36666667), (0.875, 0.36666667), (0.875, 0.38333333), (0.8666667, 0.38333333), (0.8666667, 0.36666667), (0.8666667, 0.36666667), (0.8666667, 0.38333333), (0.85833335, 0.38333333), (0.85833335, 0.36666667), (0.85833335, 0.36666667), (0.85833335, 0.38333333), (0.85, 0.38333333), (0.85, 0.36666667), (0.85, 0.36666667), (0.85, 0.38333333), (0.84166664, 0.38333333), (0.84166664, 0.36666667), (0.84166664, 0.36666667), (0.84166664, 0.38333333), (0.8333333, 0.38333333), (0.8333333, 0.36666667), (0.8333333, 0.36666667), (0.8333333, 0.38333333), (0.825, 0.38333333), (0.825, 0.36666667), (0.825, 0.36666667), (0.825, 0.38333333), (0.81666666, 0.38333333), (0.81666666, 0.36666667), (0.81666666, 0.36666667), (0.81666666, 0.38333333), (0.80833334, 0.38333333), (0.80833334, 0.36666667), (0.80833334, 0.36666667), (0.80833334, 0.38333333), (0.8, 0.38333333), (0.8, 0.36666667), (0.8, 0.36666667), (0.8, 0.38333333), (0.7916667, 0.38333333), (0.7916667, 0.36666667), (0.7916667, 0.36666667), (0.7916667, 0.38333333), (0.78333336, 0.38333333), (0.78333336, 0.36666667), (0.78333336, 0.36666667), (0.78333336, 0.38333333), (0.775, 0.38333333), (0.775, 0.36666667), (0.775, 0.36666667), (0.775, 0.38333333), (0.76666665, 0.38333333), (0.76666665, 0.36666667), (0.76666665, 0.36666667), (0.76666665, 0.38333333), (0.7583333, 0.38333333), (0.7583333, 0.36666667), (0.7583333, 0.36666667), (0.7583333, 0.38333333), (0.75, 0.38333333), (0.75, 0.36666667), (0.75, 0.36666667), (0.75, 0.38333333), (0.7416667, 0.38333333), (0.7416667, 0.36666667), (0.7416667, 0.36666667), (0.7416667, 0.38333333), (0.73333335, 0.38333333), (0.73333335, 0.36666667), (0.73333335, 0.36666667), (0.73333335, 0.38333333), (0.725, 0.38333333), (0.725, 0.36666667), (0.725, 0.36666667), (0.725, 0.38333333), (0.71666664, 0.38333333), (0.71666664, 0.36666667), (0.71666664, 0.36666667), (0.71666664, 0.38333333), (0.7083333, 0.38333333), (0.7083333, 0.36666667), (0.7083333, 0.36666667), (0.7083333, 0.38333333), (0.7, 0.38333333), (0.7, 0.36666667), (0.7, 0.36666667), (0.7, 0.38333333), (0.69166666, 0.38333333), (0.69166666, 0.36666667), (0.69166666, 0.36666667), (0.69166666, 0.38333333), (0.68333334, 0.38333333), (0.68333334, 0.36666667), (0.68333334, 0.36666667), (0.68333334, 0.38333333), (0.675, 0.38333333), (0.675, 0.36666667), (0.675, 0.36666667), (0.675, 0.38333333), (0.6666667, 0.38333333), (0.6666667, 0.36666667), (0.6666667, 0.36666667), (0.6666667, 0.38333333), (0.65833336, 0.38333333), (0.65833336, 0.36666667), (0.65833336, 0.36666667), (0.65833336, 0.38333333), (0.65, 0.38333333), (0.65, 0.36666667), (0.65, 0.36666667), (0.65, 0.38333333), (0.64166665, 0.38333333), (0.64166665, 0.36666667), (0.64166665, 0.36666667), (0.64166665, 0.38333333), (0.6333333, 0.38333333), (0.6333333, 0.36666667), (0.6333333, 0.36666667), (0.6333333, 0.38333333), (0.625, 0.38333333), (0.625, 0.36666667), (0.625, 0.36666667), (0.625, 0.38333333), (0.6166667, 0.38333333), (0.6166667, 0.36666667), (0.6166667, 0.36666667), (0.6166667, 0.38333333), (0.60833335, 0.38333333), (0.60833335, 0.36666667), (0.60833335, 0.36666667), (0.60833335, 0.38333333), (0.6, 0.38333333), (0.6, 0.36666667), (0.6, 0.36666667), (0.6, 0.38333333), (0.59166664, 0.38333333), (0.59166664, 0.36666667), (0.59166664, 0.36666667), (0.59166664, 0.38333333), (0.5833333, 0.38333333), (0.5833333, 0.36666667), (0.5833333, 0.36666667), (0.5833333, 0.38333333), (0.575, 0.38333333), (0.575, 0.36666667), (0.575, 0.36666667), (0.575, 0.38333333), (0.56666666, 0.38333333), (0.56666666, 0.36666667), (0.56666666, 0.36666667), (0.56666666, 0.38333333), (0.55833334, 0.38333333), (0.55833334, 0.36666667), (0.55833334, 0.36666667), (0.55833334, 0.38333333), (0.55, 0.38333333), (0.55, 0.36666667), (0.55, 0.36666667), (0.55, 0.38333333), (0.5416667, 0.38333333), (0.5416667, 0.36666667), (0.5416667, 0.36666667), (0.5416667, 0.38333333), (0.53333336, 0.38333333), (0.53333336, 0.36666667), (0.53333336, 0.36666667), (0.53333336, 0.38333333), (0.525, 0.38333333), (0.525, 0.36666667), (0.525, 0.36666667), (0.525, 0.38333333), (0.51666665, 0.38333333), (0.51666665, 0.36666667), (0.51666665, 0.36666667), (0.51666665, 0.38333333), (0.5083333, 0.38333333), (0.5083333, 0.36666667), (0.5083333, 0.36666667), (0.5083333, 0.38333333), (0.5, 0.38333333), (0.5, 0.36666667), (0.5, 0.36666667), (0.5, 0.38333333), (0.49166667, 0.38333333), (0.49166667, 0.36666667), (0.49166667, 0.36666667), (0.49166667, 0.38333333), (0.48333332, 0.38333333), (0.48333332, 0.36666667), (0.48333332, 0.36666667), (0.48333332, 0.38333333), (0.475, 0.38333333), (0.475, 0.36666667), (0.475, 0.36666667), (0.475, 0.38333333), (0.46666667, 0.38333333), (0.46666667, 0.36666667), (0.46666667, 0.36666667), (0.46666667, 0.38333333), (0.45833334, 0.38333333), (0.45833334, 0.36666667), (0.45833334, 0.36666667), (0.45833334, 0.38333333), (0.45, 0.38333333), (0.45, 0.36666667), (0.45, 0.36666667), (0.45, 0.38333333), (0.44166666, 0.38333333), (0.44166666, 0.36666667), (0.44166666, 0.36666667), (0.44166666, 0.38333333), (0.43333334, 0.38333333), (0.43333334, 0.36666667), (0.43333334, 0.36666667), (0.43333334, 0.38333333), (0.425, 0.38333333), (0.425, 0.36666667), (0.425, 0.36666667), (0.425, 0.38333333), (0.41666666, 0.38333333), (0.41666666, 0.36666667), (0.41666666, 0.36666667), (0.41666666, 0.38333333), (0.40833333, 0.38333333), (0.40833333, 0.36666667), (0.40833333, 0.36666667), (0.40833333, 0.38333333), (0.4, 0.38333333), (0.4, 0.36666667), (0.4, 0.36666667), (0.4, 0.38333333), (0.39166668, 0.38333333), (0.39166668, 0.36666667), (0.39166668, 0.36666667), (0.39166668, 0.38333333), (0.38333333, 0.38333333), (0.38333333, 0.36666667), (0.38333333, 0.36666667), (0.38333333, 0.38333333), (0.375, 0.38333333), (0.375, 0.36666667), (0.375, 0.36666667), (0.375, 0.38333333), (0.36666667, 0.38333333), (0.36666667, 0.36666667), (0.36666667, 0.36666667), (0.36666667, 0.38333333), (0.35833332, 0.38333333), (0.35833332, 0.36666667), (0.35833332, 0.36666667), (0.35833332, 0.38333333), (0.35, 0.38333333), (0.35, 0.36666667), (0.35, 0.36666667), (0.35, 0.38333333), (0.34166667, 0.38333333), (0.34166667, 0.36666667), (0.34166667, 0.36666667), (0.34166667, 0.38333333), (0.33333334, 0.38333333), (0.33333334, 0.36666667), (0.33333334, 0.36666667), (0.33333334, 0.38333333), (0.325, 0.38333333), (0.325, 0.36666667), (0.325, 0.36666667), (0.325, 0.38333333), (0.31666666, 0.38333333), (0.31666666, 0.36666667), (0.31666666, 0.36666667), (0.31666666, 0.38333333), (0.30833334, 0.38333333), (0.30833334, 0.36666667), (0.30833334, 0.36666667), (0.30833334, 0.38333333), (0.3, 0.38333333), (0.3, 0.36666667), (0.3, 0.36666667), (0.3, 0.38333333), (0.29166666, 0.38333333), (0.29166666, 0.36666667), (0.29166666, 0.36666667), (0.29166666, 0.38333333), (0.28333333, 0.38333333), (0.28333333, 0.36666667), (0.28333333, 0.36666667), (0.28333333, 0.38333333), (0.275, 0.38333333), (0.275, 0.36666667), (0.275, 0.36666667), (0.275, 0.38333333), (0.26666668, 0.38333333), (0.26666668, 0.36666667), (0.26666668, 0.36666667), (0.26666668, 0.38333333), (0.25833333, 0.38333333), (0.25833333, 0.36666667), (0.25833333, 0.36666667), (0.25833333, 0.38333333), (0.25, 0.38333333), (0.25, 0.36666667), (0.25, 0.36666667), (0.25, 0.38333333), (0.24166666, 0.38333333), (0.24166666, 0.36666667), (0.24166666, 0.36666667), (0.24166666, 0.38333333), (0.23333333, 0.38333333), (0.23333333, 0.36666667), (0.23333333, 0.36666667), (0.23333333, 0.38333333), (0.225, 0.38333333), (0.225, 0.36666667), (0.225, 0.36666667), (0.225, 0.38333333), (0.21666667, 0.38333333), (0.21666667, 0.36666667), (0.21666667, 0.36666667), (0.21666667, 0.38333333), (0.20833333, 0.38333333), (0.20833333, 0.36666667), (0.20833333, 0.36666667), (0.20833333, 0.38333333), (0.2, 0.38333333), (0.2, 0.36666667), (0.2, 0.36666667), (0.2, 0.38333333), (0.19166666, 0.38333333), (0.19166666, 0.36666667), (0.19166666, 0.36666667), (0.19166666, 0.38333333), (0.18333334, 0.38333333), (0.18333334, 0.36666667), (0.18333334, 0.36666667), (0.18333334, 0.38333333), (0.175, 0.38333333), (0.175, 0.36666667), (0.175, 0.36666667), (0.175, 0.38333333), (0.16666667, 0.38333333), (0.16666667, 0.36666667), (0.16666667, 0.36666667), (0.16666667, 0.38333333), (0.15833333, 0.38333333), (0.15833333, 0.36666667), (0.15833333, 0.36666667), (0.15833333, 0.38333333), (0.15, 0.38333333), (0.15, 0.36666667), (0.15, 0.36666667), (0.15, 0.38333333), (0.14166667, 0.38333333), (0.14166667, 0.36666667), (0.14166667, 0.36666667), (0.14166667, 0.38333333), (0.13333334, 0.38333333), (0.13333334, 0.36666667), (0.13333334, 0.36666667), (0.13333334, 0.38333333), (0.125, 0.38333333), (0.125, 0.36666667), (0.125, 0.36666667), (0.125, 0.38333333), (0.11666667, 0.38333333), (0.11666667, 0.36666667), (0.11666667, 0.36666667), (0.11666667, 0.38333333), (0.108333334, 0.38333333), (0.108333334, 0.36666667), (0.108333334, 0.36666667), (0.108333334, 0.38333333), (0.1, 0.38333333), (0.1, 0.36666667), (0.1, 0.36666667), (0.1, 0.38333333), (0.09166667, 0.38333333), (0.09166667, 0.36666667), (0.09166667, 0.36666667), (0.09166667, 0.38333333), (0.083333336, 0.38333333), (0.083333336, 0.36666667), (0.083333336, 0.36666667), (0.083333336, 0.38333333), (0.075, 0.38333333), (0.075, 0.36666667), (0.075, 0.36666667), (0.075, 0.38333333), (0.06666667, 0.38333333), (0.06666667, 0.36666667), (0.06666667, 0.36666667), (0.06666667, 0.38333333), (0.058333334, 0.38333333), (0.058333334, 0.36666667), (0.058333334, 0.36666667), (0.058333334, 0.38333333), (0.05, 0.38333333), (0.05, 0.36666667), (0.05, 0.36666667), (0.05, 0.38333333), (0.041666668, 0.38333333), (0.041666668, 0.36666667), (0.041666668, 0.36666667), (0.041666668, 0.38333333), (0.033333335, 0.38333333), (0.033333335, 0.36666667), (0.033333335, 0.36666667), (0.033333335, 0.38333333), (0.025, 0.38333333), (0.025, 0.36666667), (0.025, 0.36666667), (0.025, 0.38333333), (0.016666668, 0.38333333), (0.016666668, 0.36666667), (0.016666668, 0.36666667), (0.016666668, 0.38333333), (0.008333334, 0.38333333), (0.008333334, 0.36666667), (0.008333334, 0.36666667), (0.008333334, 0.38333333), (0, 0.38333333), (0, 0.36666667), (1, 0.38333333), (1, 0.4), (0.9916667, 0.4), (0.9916667, 0.38333333), (0.9916667, 0.38333333), (0.9916667, 0.4), (0.98333335, 0.4), (0.98333335, 0.38333333), (0.98333335, 0.38333333), (0.98333335, 0.4), (0.975, 0.4), (0.975, 0.38333333), (0.975, 0.38333333), (0.975, 0.4), (0.96666664, 0.4), (0.96666664, 0.38333333), (0.96666664, 0.38333333), (0.96666664, 0.4), (0.9583333, 0.4), (0.9583333, 0.38333333), (0.9583333, 0.38333333), (0.9583333, 0.4), (0.95, 0.4), (0.95, 0.38333333), (0.95, 0.38333333), (0.95, 0.4), (0.94166666, 0.4), (0.94166666, 0.38333333), (0.94166666, 0.38333333), (0.94166666, 0.4), (0.93333334, 0.4), (0.93333334, 0.38333333), (0.93333334, 0.38333333), (0.93333334, 0.4), (0.925, 0.4), (0.925, 0.38333333), (0.925, 0.38333333), (0.925, 0.4), (0.9166667, 0.4), (0.9166667, 0.38333333), (0.9166667, 0.38333333), (0.9166667, 0.4), (0.90833336, 0.4), (0.90833336, 0.38333333), (0.90833336, 0.38333333), (0.90833336, 0.4), (0.9, 0.4), (0.9, 0.38333333), (0.9, 0.38333333), (0.9, 0.4), (0.89166665, 0.4), (0.89166665, 0.38333333), (0.89166665, 0.38333333), (0.89166665, 0.4), (0.8833333, 0.4), (0.8833333, 0.38333333), (0.8833333, 0.38333333), (0.8833333, 0.4), (0.875, 0.4), (0.875, 0.38333333), (0.875, 0.38333333), (0.875, 0.4), (0.8666667, 0.4), (0.8666667, 0.38333333), (0.8666667, 0.38333333), (0.8666667, 0.4), (0.85833335, 0.4), (0.85833335, 0.38333333), (0.85833335, 0.38333333), (0.85833335, 0.4), (0.85, 0.4), (0.85, 0.38333333), (0.85, 0.38333333), (0.85, 0.4), (0.84166664, 0.4), (0.84166664, 0.38333333), (0.84166664, 0.38333333), (0.84166664, 0.4), (0.8333333, 0.4), (0.8333333, 0.38333333), (0.8333333, 0.38333333), (0.8333333, 0.4), (0.825, 0.4), (0.825, 0.38333333), (0.825, 0.38333333), (0.825, 0.4), (0.81666666, 0.4), (0.81666666, 0.38333333), (0.81666666, 0.38333333), (0.81666666, 0.4), (0.80833334, 0.4), (0.80833334, 0.38333333), (0.80833334, 0.38333333), (0.80833334, 0.4), (0.8, 0.4), (0.8, 0.38333333), (0.8, 0.38333333), (0.8, 0.4), (0.7916667, 0.4), (0.7916667, 0.38333333), (0.7916667, 0.38333333), (0.7916667, 0.4), (0.78333336, 0.4), (0.78333336, 0.38333333), (0.78333336, 0.38333333), (0.78333336, 0.4), (0.775, 0.4), (0.775, 0.38333333), (0.775, 0.38333333), (0.775, 0.4), (0.76666665, 0.4), (0.76666665, 0.38333333), (0.76666665, 0.38333333), (0.76666665, 0.4), (0.7583333, 0.4), (0.7583333, 0.38333333), (0.7583333, 0.38333333), (0.7583333, 0.4), (0.75, 0.4), (0.75, 0.38333333), (0.75, 0.38333333), (0.75, 0.4), (0.7416667, 0.4), (0.7416667, 0.38333333), (0.7416667, 0.38333333), (0.7416667, 0.4), (0.73333335, 0.4), (0.73333335, 0.38333333), (0.73333335, 0.38333333), (0.73333335, 0.4), (0.725, 0.4), (0.725, 0.38333333), (0.725, 0.38333333), (0.725, 0.4), (0.71666664, 0.4), (0.71666664, 0.38333333), (0.71666664, 0.38333333), (0.71666664, 0.4), (0.7083333, 0.4), (0.7083333, 0.38333333), (0.7083333, 0.38333333), (0.7083333, 0.4), (0.7, 0.4), (0.7, 0.38333333), (0.7, 0.38333333), (0.7, 0.4), (0.69166666, 0.4), (0.69166666, 0.38333333), (0.69166666, 0.38333333), (0.69166666, 0.4), (0.68333334, 0.4), (0.68333334, 0.38333333), (0.68333334, 0.38333333), (0.68333334, 0.4), (0.675, 0.4), (0.675, 0.38333333), (0.675, 0.38333333), (0.675, 0.4), (0.6666667, 0.4), (0.6666667, 0.38333333), (0.6666667, 0.38333333), (0.6666667, 0.4), (0.65833336, 0.4), (0.65833336, 0.38333333), (0.65833336, 0.38333333), (0.65833336, 0.4), (0.65, 0.4), (0.65, 0.38333333), (0.65, 0.38333333), (0.65, 0.4), (0.64166665, 0.4), (0.64166665, 0.38333333), (0.64166665, 0.38333333), (0.64166665, 0.4), (0.6333333, 0.4), (0.6333333, 0.38333333), (0.6333333, 0.38333333), (0.6333333, 0.4), (0.625, 0.4), (0.625, 0.38333333), (0.625, 0.38333333), (0.625, 0.4), (0.6166667, 0.4), (0.6166667, 0.38333333), (0.6166667, 0.38333333), (0.6166667, 0.4), (0.60833335, 0.4), (0.60833335, 0.38333333), (0.60833335, 0.38333333), (0.60833335, 0.4), (0.6, 0.4), (0.6, 0.38333333), (0.6, 0.38333333), (0.6, 0.4), (0.59166664, 0.4), (0.59166664, 0.38333333), (0.59166664, 0.38333333), (0.59166664, 0.4), (0.5833333, 0.4), (0.5833333, 0.38333333), (0.5833333, 0.38333333), (0.5833333, 0.4), (0.575, 0.4), (0.575, 0.38333333), (0.575, 0.38333333), (0.575, 0.4), (0.56666666, 0.4), (0.56666666, 0.38333333), (0.56666666, 0.38333333), (0.56666666, 0.4), (0.55833334, 0.4), (0.55833334, 0.38333333), (0.55833334, 0.38333333), (0.55833334, 0.4), (0.55, 0.4), (0.55, 0.38333333), (0.55, 0.38333333), (0.55, 0.4), (0.5416667, 0.4), (0.5416667, 0.38333333), (0.5416667, 0.38333333), (0.5416667, 0.4), (0.53333336, 0.4), (0.53333336, 0.38333333), (0.53333336, 0.38333333), (0.53333336, 0.4), (0.525, 0.4), (0.525, 0.38333333), (0.525, 0.38333333), (0.525, 0.4), (0.51666665, 0.4), (0.51666665, 0.38333333), (0.51666665, 0.38333333), (0.51666665, 0.4), (0.5083333, 0.4), (0.5083333, 0.38333333), (0.5083333, 0.38333333), (0.5083333, 0.4), (0.5, 0.4), (0.5, 0.38333333), (0.5, 0.38333333), (0.5, 0.4), (0.49166667, 0.4), (0.49166667, 0.38333333), (0.49166667, 0.38333333), (0.49166667, 0.4), (0.48333332, 0.4), (0.48333332, 0.38333333), (0.48333332, 0.38333333), (0.48333332, 0.4), (0.475, 0.4), (0.475, 0.38333333), (0.475, 0.38333333), (0.475, 0.4), (0.46666667, 0.4), (0.46666667, 0.38333333), (0.46666667, 0.38333333), (0.46666667, 0.4), (0.45833334, 0.4), (0.45833334, 0.38333333), (0.45833334, 0.38333333), (0.45833334, 0.4), (0.45, 0.4), (0.45, 0.38333333), (0.45, 0.38333333), (0.45, 0.4), (0.44166666, 0.4), (0.44166666, 0.38333333), (0.44166666, 0.38333333), (0.44166666, 0.4), (0.43333334, 0.4), (0.43333334, 0.38333333), (0.43333334, 0.38333333), (0.43333334, 0.4), (0.425, 0.4), (0.425, 0.38333333), (0.425, 0.38333333), (0.425, 0.4), (0.41666666, 0.4), (0.41666666, 0.38333333), (0.41666666, 0.38333333), (0.41666666, 0.4), (0.40833333, 0.4), (0.40833333, 0.38333333), (0.40833333, 0.38333333), (0.40833333, 0.4), (0.4, 0.4), (0.4, 0.38333333), (0.4, 0.38333333), (0.4, 0.4), (0.39166668, 0.4), (0.39166668, 0.38333333), (0.39166668, 0.38333333), (0.39166668, 0.4), (0.38333333, 0.4), (0.38333333, 0.38333333), (0.38333333, 0.38333333), (0.38333333, 0.4), (0.375, 0.4), (0.375, 0.38333333), (0.375, 0.38333333), (0.375, 0.4), (0.36666667, 0.4), (0.36666667, 0.38333333), (0.36666667, 0.38333333), (0.36666667, 0.4), (0.35833332, 0.4), (0.35833332, 0.38333333), (0.35833332, 0.38333333), (0.35833332, 0.4), (0.35, 0.4), (0.35, 0.38333333), (0.35, 0.38333333), (0.35, 0.4), (0.34166667, 0.4), (0.34166667, 0.38333333), (0.34166667, 0.38333333), (0.34166667, 0.4), (0.33333334, 0.4), (0.33333334, 0.38333333), (0.33333334, 0.38333333), (0.33333334, 0.4), (0.325, 0.4), (0.325, 0.38333333), (0.325, 0.38333333), (0.325, 0.4), (0.31666666, 0.4), (0.31666666, 0.38333333), (0.31666666, 0.38333333), (0.31666666, 0.4), (0.30833334, 0.4), (0.30833334, 0.38333333), (0.30833334, 0.38333333), (0.30833334, 0.4), (0.3, 0.4), (0.3, 0.38333333), (0.3, 0.38333333), (0.3, 0.4), (0.29166666, 0.4), (0.29166666, 0.38333333), (0.29166666, 0.38333333), (0.29166666, 0.4), (0.28333333, 0.4), (0.28333333, 0.38333333), (0.28333333, 0.38333333), (0.28333333, 0.4), (0.275, 0.4), (0.275, 0.38333333), (0.275, 0.38333333), (0.275, 0.4), (0.26666668, 0.4), (0.26666668, 0.38333333), (0.26666668, 0.38333333), (0.26666668, 0.4), (0.25833333, 0.4), (0.25833333, 0.38333333), (0.25833333, 0.38333333), (0.25833333, 0.4), (0.25, 0.4), (0.25, 0.38333333), (0.25, 0.38333333), (0.25, 0.4), (0.24166666, 0.4), (0.24166666, 0.38333333), (0.24166666, 0.38333333), (0.24166666, 0.4), (0.23333333, 0.4), (0.23333333, 0.38333333), (0.23333333, 0.38333333), (0.23333333, 0.4), (0.225, 0.4), (0.225, 0.38333333), (0.225, 0.38333333), (0.225, 0.4), (0.21666667, 0.4), (0.21666667, 0.38333333), (0.21666667, 0.38333333), (0.21666667, 0.4), (0.20833333, 0.4), (0.20833333, 0.38333333), (0.20833333, 0.38333333), (0.20833333, 0.4), (0.2, 0.4), (0.2, 0.38333333), (0.2, 0.38333333), (0.2, 0.4), (0.19166666, 0.4), (0.19166666, 0.38333333), (0.19166666, 0.38333333), (0.19166666, 0.4), (0.18333334, 0.4), (0.18333334, 0.38333333), (0.18333334, 0.38333333), (0.18333334, 0.4), (0.175, 0.4), (0.175, 0.38333333), (0.175, 0.38333333), (0.175, 0.4), (0.16666667, 0.4), (0.16666667, 0.38333333), (0.16666667, 0.38333333), (0.16666667, 0.4), (0.15833333, 0.4), (0.15833333, 0.38333333), (0.15833333, 0.38333333), (0.15833333, 0.4), (0.15, 0.4), (0.15, 0.38333333), (0.15, 0.38333333), (0.15, 0.4), (0.14166667, 0.4), (0.14166667, 0.38333333), (0.14166667, 0.38333333), (0.14166667, 0.4), (0.13333334, 0.4), (0.13333334, 0.38333333), (0.13333334, 0.38333333), (0.13333334, 0.4), (0.125, 0.4), (0.125, 0.38333333), (0.125, 0.38333333), (0.125, 0.4), (0.11666667, 0.4), (0.11666667, 0.38333333), (0.11666667, 0.38333333), (0.11666667, 0.4), (0.108333334, 0.4), (0.108333334, 0.38333333), (0.108333334, 0.38333333), (0.108333334, 0.4), (0.1, 0.4), (0.1, 0.38333333), (0.1, 0.38333333), (0.1, 0.4), (0.09166667, 0.4), (0.09166667, 0.38333333), (0.09166667, 0.38333333), (0.09166667, 0.4), (0.083333336, 0.4), (0.083333336, 0.38333333), (0.083333336, 0.38333333), (0.083333336, 0.4), (0.075, 0.4), (0.075, 0.38333333), (0.075, 0.38333333), (0.075, 0.4), (0.06666667, 0.4), (0.06666667, 0.38333333), (0.06666667, 0.38333333), (0.06666667, 0.4), (0.058333334, 0.4), (0.058333334, 0.38333333), (0.058333334, 0.38333333), (0.058333334, 0.4), (0.05, 0.4), (0.05, 0.38333333), (0.05, 0.38333333), (0.05, 0.4), (0.041666668, 0.4), (0.041666668, 0.38333333), (0.041666668, 0.38333333), (0.041666668, 0.4), (0.033333335, 0.4), (0.033333335, 0.38333333), (0.033333335, 0.38333333), (0.033333335, 0.4), (0.025, 0.4), (0.025, 0.38333333), (0.025, 0.38333333), (0.025, 0.4), (0.016666668, 0.4), (0.016666668, 0.38333333), (0.016666668, 0.38333333), (0.016666668, 0.4), (0.008333334, 0.4), (0.008333334, 0.38333333), (0.008333334, 0.38333333), (0.008333334, 0.4), (0, 0.4), (0, 0.38333333), (1, 0.4), (1, 0.41666666), (0.9916667, 0.41666666), (0.9916667, 0.4), (0.9916667, 0.4), (0.9916667, 0.41666666), (0.98333335, 0.41666666), (0.98333335, 0.4), (0.98333335, 0.4), (0.98333335, 0.41666666), (0.975, 0.41666666), (0.975, 0.4), (0.975, 0.4), (0.975, 0.41666666), (0.96666664, 0.41666666), (0.96666664, 0.4), (0.96666664, 0.4), (0.96666664, 0.41666666), (0.9583333, 0.41666666), (0.9583333, 0.4), (0.9583333, 0.4), (0.9583333, 0.41666666), (0.95, 0.41666666), (0.95, 0.4), (0.95, 0.4), (0.95, 0.41666666), (0.94166666, 0.41666666), (0.94166666, 0.4), (0.94166666, 0.4), (0.94166666, 0.41666666), (0.93333334, 0.41666666), (0.93333334, 0.4), (0.93333334, 0.4), (0.93333334, 0.41666666), (0.925, 0.41666666), (0.925, 0.4), (0.925, 0.4), (0.925, 0.41666666), (0.9166667, 0.41666666), (0.9166667, 0.4), (0.9166667, 0.4), (0.9166667, 0.41666666), (0.90833336, 0.41666666), (0.90833336, 0.4), (0.90833336, 0.4), (0.90833336, 0.41666666), (0.9, 0.41666666), (0.9, 0.4), (0.9, 0.4), (0.9, 0.41666666), (0.89166665, 0.41666666), (0.89166665, 0.4), (0.89166665, 0.4), (0.89166665, 0.41666666), (0.8833333, 0.41666666), (0.8833333, 0.4), (0.8833333, 0.4), (0.8833333, 0.41666666), (0.875, 0.41666666), (0.875, 0.4), (0.875, 0.4), (0.875, 0.41666666), (0.8666667, 0.41666666), (0.8666667, 0.4), (0.8666667, 0.4), (0.8666667, 0.41666666), (0.85833335, 0.41666666), (0.85833335, 0.4), (0.85833335, 0.4), (0.85833335, 0.41666666), (0.85, 0.41666666), (0.85, 0.4), (0.85, 0.4), (0.85, 0.41666666), (0.84166664, 0.41666666), (0.84166664, 0.4), (0.84166664, 0.4), (0.84166664, 0.41666666), (0.8333333, 0.41666666), (0.8333333, 0.4), (0.8333333, 0.4), (0.8333333, 0.41666666), (0.825, 0.41666666), (0.825, 0.4), (0.825, 0.4), (0.825, 0.41666666), (0.81666666, 0.41666666), (0.81666666, 0.4), (0.81666666, 0.4), (0.81666666, 0.41666666), (0.80833334, 0.41666666), (0.80833334, 0.4), (0.80833334, 0.4), (0.80833334, 0.41666666), (0.8, 0.41666666), (0.8, 0.4), (0.8, 0.4), (0.8, 0.41666666), (0.7916667, 0.41666666), (0.7916667, 0.4), (0.7916667, 0.4), (0.7916667, 0.41666666), (0.78333336, 0.41666666), (0.78333336, 0.4), (0.78333336, 0.4), (0.78333336, 0.41666666), (0.775, 0.41666666), (0.775, 0.4), (0.775, 0.4), (0.775, 0.41666666), (0.76666665, 0.41666666), (0.76666665, 0.4), (0.76666665, 0.4), (0.76666665, 0.41666666), (0.7583333, 0.41666666), (0.7583333, 0.4), (0.7583333, 0.4), (0.7583333, 0.41666666), (0.75, 0.41666666), (0.75, 0.4), (0.75, 0.4), (0.75, 0.41666666), (0.7416667, 0.41666666), (0.7416667, 0.4), (0.7416667, 0.4), (0.7416667, 0.41666666), (0.73333335, 0.41666666), (0.73333335, 0.4), (0.73333335, 0.4), (0.73333335, 0.41666666), (0.725, 0.41666666), (0.725, 0.4), (0.725, 0.4), (0.725, 0.41666666), (0.71666664, 0.41666666), (0.71666664, 0.4), (0.71666664, 0.4), (0.71666664, 0.41666666), (0.7083333, 0.41666666), (0.7083333, 0.4), (0.7083333, 0.4), (0.7083333, 0.41666666), (0.7, 0.41666666), (0.7, 0.4), (0.7, 0.4), (0.7, 0.41666666), (0.69166666, 0.41666666), (0.69166666, 0.4), (0.69166666, 0.4), (0.69166666, 0.41666666), (0.68333334, 0.41666666), (0.68333334, 0.4), (0.68333334, 0.4), (0.68333334, 0.41666666), (0.675, 0.41666666), (0.675, 0.4), (0.675, 0.4), (0.675, 0.41666666), (0.6666667, 0.41666666), (0.6666667, 0.4), (0.6666667, 0.4), (0.6666667, 0.41666666), (0.65833336, 0.41666666), (0.65833336, 0.4), (0.65833336, 0.4), (0.65833336, 0.41666666), (0.65, 0.41666666), (0.65, 0.4), (0.65, 0.4), (0.65, 0.41666666), (0.64166665, 0.41666666), (0.64166665, 0.4), (0.64166665, 0.4), (0.64166665, 0.41666666), (0.6333333, 0.41666666), (0.6333333, 0.4), (0.6333333, 0.4), (0.6333333, 0.41666666), (0.625, 0.41666666), (0.625, 0.4), (0.625, 0.4), (0.625, 0.41666666), (0.6166667, 0.41666666), (0.6166667, 0.4), (0.6166667, 0.4), (0.6166667, 0.41666666), (0.60833335, 0.41666666), (0.60833335, 0.4), (0.60833335, 0.4), (0.60833335, 0.41666666), (0.6, 0.41666666), (0.6, 0.4), (0.6, 0.4), (0.6, 0.41666666), (0.59166664, 0.41666666), (0.59166664, 0.4), (0.59166664, 0.4), (0.59166664, 0.41666666), (0.5833333, 0.41666666), (0.5833333, 0.4), (0.5833333, 0.4), (0.5833333, 0.41666666), (0.575, 0.41666666), (0.575, 0.4), (0.575, 0.4), (0.575, 0.41666666), (0.56666666, 0.41666666), (0.56666666, 0.4), (0.56666666, 0.4), (0.56666666, 0.41666666), (0.55833334, 0.41666666), (0.55833334, 0.4), (0.55833334, 0.4), (0.55833334, 0.41666666), (0.55, 0.41666666), (0.55, 0.4), (0.55, 0.4), (0.55, 0.41666666), (0.5416667, 0.41666666), (0.5416667, 0.4), (0.5416667, 0.4), (0.5416667, 0.41666666), (0.53333336, 0.41666666), (0.53333336, 0.4), (0.53333336, 0.4), (0.53333336, 0.41666666), (0.525, 0.41666666), (0.525, 0.4), (0.525, 0.4), (0.525, 0.41666666), (0.51666665, 0.41666666), (0.51666665, 0.4), (0.51666665, 0.4), (0.51666665, 0.41666666), (0.5083333, 0.41666666), (0.5083333, 0.4), (0.5083333, 0.4), (0.5083333, 0.41666666), (0.5, 0.41666666), (0.5, 0.4), (0.5, 0.4), (0.5, 0.41666666), (0.49166667, 0.41666666), (0.49166667, 0.4), (0.49166667, 0.4), (0.49166667, 0.41666666), (0.48333332, 0.41666666), (0.48333332, 0.4), (0.48333332, 0.4), (0.48333332, 0.41666666), (0.475, 0.41666666), (0.475, 0.4), (0.475, 0.4), (0.475, 0.41666666), (0.46666667, 0.41666666), (0.46666667, 0.4), (0.46666667, 0.4), (0.46666667, 0.41666666), (0.45833334, 0.41666666), (0.45833334, 0.4), (0.45833334, 0.4), (0.45833334, 0.41666666), (0.45, 0.41666666), (0.45, 0.4), (0.45, 0.4), (0.45, 0.41666666), (0.44166666, 0.41666666), (0.44166666, 0.4), (0.44166666, 0.4), (0.44166666, 0.41666666), (0.43333334, 0.41666666), (0.43333334, 0.4), (0.43333334, 0.4), (0.43333334, 0.41666666), (0.425, 0.41666666), (0.425, 0.4), (0.425, 0.4), (0.425, 0.41666666), (0.41666666, 0.41666666), (0.41666666, 0.4), (0.41666666, 0.4), (0.41666666, 0.41666666), (0.40833333, 0.41666666), (0.40833333, 0.4), (0.40833333, 0.4), (0.40833333, 0.41666666), (0.4, 0.41666666), (0.4, 0.4), (0.4, 0.4), (0.4, 0.41666666), (0.39166668, 0.41666666), (0.39166668, 0.4), (0.39166668, 0.4), (0.39166668, 0.41666666), (0.38333333, 0.41666666), (0.38333333, 0.4), (0.38333333, 0.4), (0.38333333, 0.41666666), (0.375, 0.41666666), (0.375, 0.4), (0.375, 0.4), (0.375, 0.41666666), (0.36666667, 0.41666666), (0.36666667, 0.4), (0.36666667, 0.4), (0.36666667, 0.41666666), (0.35833332, 0.41666666), (0.35833332, 0.4), (0.35833332, 0.4), (0.35833332, 0.41666666), (0.35, 0.41666666), (0.35, 0.4), (0.35, 0.4), (0.35, 0.41666666), (0.34166667, 0.41666666), (0.34166667, 0.4), (0.34166667, 0.4), (0.34166667, 0.41666666), (0.33333334, 0.41666666), (0.33333334, 0.4), (0.33333334, 0.4), (0.33333334, 0.41666666), (0.325, 0.41666666), (0.325, 0.4), (0.325, 0.4), (0.325, 0.41666666), (0.31666666, 0.41666666), (0.31666666, 0.4), (0.31666666, 0.4), (0.31666666, 0.41666666), (0.30833334, 0.41666666), (0.30833334, 0.4), (0.30833334, 0.4), (0.30833334, 0.41666666), (0.3, 0.41666666), (0.3, 0.4), (0.3, 0.4), (0.3, 0.41666666), (0.29166666, 0.41666666), (0.29166666, 0.4), (0.29166666, 0.4), (0.29166666, 0.41666666), (0.28333333, 0.41666666), (0.28333333, 0.4), (0.28333333, 0.4), (0.28333333, 0.41666666), (0.275, 0.41666666), (0.275, 0.4), (0.275, 0.4), (0.275, 0.41666666), (0.26666668, 0.41666666), (0.26666668, 0.4), (0.26666668, 0.4), (0.26666668, 0.41666666), (0.25833333, 0.41666666), (0.25833333, 0.4), (0.25833333, 0.4), (0.25833333, 0.41666666), (0.25, 0.41666666), (0.25, 0.4), (0.25, 0.4), (0.25, 0.41666666), (0.24166666, 0.41666666), (0.24166666, 0.4), (0.24166666, 0.4), (0.24166666, 0.41666666), (0.23333333, 0.41666666), (0.23333333, 0.4), (0.23333333, 0.4), (0.23333333, 0.41666666), (0.225, 0.41666666), (0.225, 0.4), (0.225, 0.4), (0.225, 0.41666666), (0.21666667, 0.41666666), (0.21666667, 0.4), (0.21666667, 0.4), (0.21666667, 0.41666666), (0.20833333, 0.41666666), (0.20833333, 0.4), (0.20833333, 0.4), (0.20833333, 0.41666666), (0.2, 0.41666666), (0.2, 0.4), (0.2, 0.4), (0.2, 0.41666666), (0.19166666, 0.41666666), (0.19166666, 0.4), (0.19166666, 0.4), (0.19166666, 0.41666666), (0.18333334, 0.41666666), (0.18333334, 0.4), (0.18333334, 0.4), (0.18333334, 0.41666666), (0.175, 0.41666666), (0.175, 0.4), (0.175, 0.4), (0.175, 0.41666666), (0.16666667, 0.41666666), (0.16666667, 0.4), (0.16666667, 0.4), (0.16666667, 0.41666666), (0.15833333, 0.41666666), (0.15833333, 0.4), (0.15833333, 0.4), (0.15833333, 0.41666666), (0.15, 0.41666666), (0.15, 0.4), (0.15, 0.4), (0.15, 0.41666666), (0.14166667, 0.41666666), (0.14166667, 0.4), (0.14166667, 0.4), (0.14166667, 0.41666666), (0.13333334, 0.41666666), (0.13333334, 0.4), (0.13333334, 0.4), (0.13333334, 0.41666666), (0.125, 0.41666666), (0.125, 0.4), (0.125, 0.4), (0.125, 0.41666666), (0.11666667, 0.41666666), (0.11666667, 0.4), (0.11666667, 0.4), (0.11666667, 0.41666666), (0.108333334, 0.41666666), (0.108333334, 0.4), (0.108333334, 0.4), (0.108333334, 0.41666666), (0.1, 0.41666666), (0.1, 0.4), (0.1, 0.4), (0.1, 0.41666666), (0.09166667, 0.41666666), (0.09166667, 0.4), (0.09166667, 0.4), (0.09166667, 0.41666666), (0.083333336, 0.41666666), (0.083333336, 0.4), (0.083333336, 0.4), (0.083333336, 0.41666666), (0.075, 0.41666666), (0.075, 0.4), (0.075, 0.4), (0.075, 0.41666666), (0.06666667, 0.41666666), (0.06666667, 0.4), (0.06666667, 0.4), (0.06666667, 0.41666666), (0.058333334, 0.41666666), (0.058333334, 0.4), (0.058333334, 0.4), (0.058333334, 0.41666666), (0.05, 0.41666666), (0.05, 0.4), (0.05, 0.4), (0.05, 0.41666666), (0.041666668, 0.41666666), (0.041666668, 0.4), (0.041666668, 0.4), (0.041666668, 0.41666666), (0.033333335, 0.41666666), (0.033333335, 0.4), (0.033333335, 0.4), (0.033333335, 0.41666666), (0.025, 0.41666666), (0.025, 0.4), (0.025, 0.4), (0.025, 0.41666666), (0.016666668, 0.41666666), (0.016666668, 0.4), (0.016666668, 0.4), (0.016666668, 0.41666666), (0.008333334, 0.41666666), (0.008333334, 0.4), (0.008333334, 0.4), (0.008333334, 0.41666666), (0, 0.41666666), (0, 0.4), (1, 0.41666666), (1, 0.43333334), (0.9916667, 0.43333334), (0.9916667, 0.41666666), (0.9916667, 0.41666666), (0.9916667, 0.43333334), (0.98333335, 0.43333334), (0.98333335, 0.41666666), (0.98333335, 0.41666666), (0.98333335, 0.43333334), (0.975, 0.43333334), (0.975, 0.41666666), (0.975, 0.41666666), (0.975, 0.43333334), (0.96666664, 0.43333334), (0.96666664, 0.41666666), (0.96666664, 0.41666666), (0.96666664, 0.43333334), (0.9583333, 0.43333334), (0.9583333, 0.41666666), (0.9583333, 0.41666666), (0.9583333, 0.43333334), (0.95, 0.43333334), (0.95, 0.41666666), (0.95, 0.41666666), (0.95, 0.43333334), (0.94166666, 0.43333334), (0.94166666, 0.41666666), (0.94166666, 0.41666666), (0.94166666, 0.43333334), (0.93333334, 0.43333334), (0.93333334, 0.41666666), (0.93333334, 0.41666666), (0.93333334, 0.43333334), (0.925, 0.43333334), (0.925, 0.41666666), (0.925, 0.41666666), (0.925, 0.43333334), (0.9166667, 0.43333334), (0.9166667, 0.41666666), (0.9166667, 0.41666666), (0.9166667, 0.43333334), (0.90833336, 0.43333334), (0.90833336, 0.41666666), (0.90833336, 0.41666666), (0.90833336, 0.43333334), (0.9, 0.43333334), (0.9, 0.41666666), (0.9, 0.41666666), (0.9, 0.43333334), (0.89166665, 0.43333334), (0.89166665, 0.41666666), (0.89166665, 0.41666666), (0.89166665, 0.43333334), (0.8833333, 0.43333334), (0.8833333, 0.41666666), (0.8833333, 0.41666666), (0.8833333, 0.43333334), (0.875, 0.43333334), (0.875, 0.41666666), (0.875, 0.41666666), (0.875, 0.43333334), (0.8666667, 0.43333334), (0.8666667, 0.41666666), (0.8666667, 0.41666666), (0.8666667, 0.43333334), (0.85833335, 0.43333334), (0.85833335, 0.41666666), (0.85833335, 0.41666666), (0.85833335, 0.43333334), (0.85, 0.43333334), (0.85, 0.41666666), (0.85, 0.41666666), (0.85, 0.43333334), (0.84166664, 0.43333334), (0.84166664, 0.41666666), (0.84166664, 0.41666666), (0.84166664, 0.43333334), (0.8333333, 0.43333334), (0.8333333, 0.41666666), (0.8333333, 0.41666666), (0.8333333, 0.43333334), (0.825, 0.43333334), (0.825, 0.41666666), (0.825, 0.41666666), (0.825, 0.43333334), (0.81666666, 0.43333334), (0.81666666, 0.41666666), (0.81666666, 0.41666666), (0.81666666, 0.43333334), (0.80833334, 0.43333334), (0.80833334, 0.41666666), (0.80833334, 0.41666666), (0.80833334, 0.43333334), (0.8, 0.43333334), (0.8, 0.41666666), (0.8, 0.41666666), (0.8, 0.43333334), (0.7916667, 0.43333334), (0.7916667, 0.41666666), (0.7916667, 0.41666666), (0.7916667, 0.43333334), (0.78333336, 0.43333334), (0.78333336, 0.41666666), (0.78333336, 0.41666666), (0.78333336, 0.43333334), (0.775, 0.43333334), (0.775, 0.41666666), (0.775, 0.41666666), (0.775, 0.43333334), (0.76666665, 0.43333334), (0.76666665, 0.41666666), (0.76666665, 0.41666666), (0.76666665, 0.43333334), (0.7583333, 0.43333334), (0.7583333, 0.41666666), (0.7583333, 0.41666666), (0.7583333, 0.43333334), (0.75, 0.43333334), (0.75, 0.41666666), (0.75, 0.41666666), (0.75, 0.43333334), (0.7416667, 0.43333334), (0.7416667, 0.41666666), (0.7416667, 0.41666666), (0.7416667, 0.43333334), (0.73333335, 0.43333334), (0.73333335, 0.41666666), (0.73333335, 0.41666666), (0.73333335, 0.43333334), (0.725, 0.43333334), (0.725, 0.41666666), (0.725, 0.41666666), (0.725, 0.43333334), (0.71666664, 0.43333334), (0.71666664, 0.41666666), (0.71666664, 0.41666666), (0.71666664, 0.43333334), (0.7083333, 0.43333334), (0.7083333, 0.41666666), (0.7083333, 0.41666666), (0.7083333, 0.43333334), (0.7, 0.43333334), (0.7, 0.41666666), (0.7, 0.41666666), (0.7, 0.43333334), (0.69166666, 0.43333334), (0.69166666, 0.41666666), (0.69166666, 0.41666666), (0.69166666, 0.43333334), (0.68333334, 0.43333334), (0.68333334, 0.41666666), (0.68333334, 0.41666666), (0.68333334, 0.43333334), (0.675, 0.43333334), (0.675, 0.41666666), (0.675, 0.41666666), (0.675, 0.43333334), (0.6666667, 0.43333334), (0.6666667, 0.41666666), (0.6666667, 0.41666666), (0.6666667, 0.43333334), (0.65833336, 0.43333334), (0.65833336, 0.41666666), (0.65833336, 0.41666666), (0.65833336, 0.43333334), (0.65, 0.43333334), (0.65, 0.41666666), (0.65, 0.41666666), (0.65, 0.43333334), (0.64166665, 0.43333334), (0.64166665, 0.41666666), (0.64166665, 0.41666666), (0.64166665, 0.43333334), (0.6333333, 0.43333334), (0.6333333, 0.41666666), (0.6333333, 0.41666666), (0.6333333, 0.43333334), (0.625, 0.43333334), (0.625, 0.41666666), (0.625, 0.41666666), (0.625, 0.43333334), (0.6166667, 0.43333334), (0.6166667, 0.41666666), (0.6166667, 0.41666666), (0.6166667, 0.43333334), (0.60833335, 0.43333334), (0.60833335, 0.41666666), (0.60833335, 0.41666666), (0.60833335, 0.43333334), (0.6, 0.43333334), (0.6, 0.41666666), (0.6, 0.41666666), (0.6, 0.43333334), (0.59166664, 0.43333334), (0.59166664, 0.41666666), (0.59166664, 0.41666666), (0.59166664, 0.43333334), (0.5833333, 0.43333334), (0.5833333, 0.41666666), (0.5833333, 0.41666666), (0.5833333, 0.43333334), (0.575, 0.43333334), (0.575, 0.41666666), (0.575, 0.41666666), (0.575, 0.43333334), (0.56666666, 0.43333334), (0.56666666, 0.41666666), (0.56666666, 0.41666666), (0.56666666, 0.43333334), (0.55833334, 0.43333334), (0.55833334, 0.41666666), (0.55833334, 0.41666666), (0.55833334, 0.43333334), (0.55, 0.43333334), (0.55, 0.41666666), (0.55, 0.41666666), (0.55, 0.43333334), (0.5416667, 0.43333334), (0.5416667, 0.41666666), (0.5416667, 0.41666666), (0.5416667, 0.43333334), (0.53333336, 0.43333334), (0.53333336, 0.41666666), (0.53333336, 0.41666666), (0.53333336, 0.43333334), (0.525, 0.43333334), (0.525, 0.41666666), (0.525, 0.41666666), (0.525, 0.43333334), (0.51666665, 0.43333334), (0.51666665, 0.41666666), (0.51666665, 0.41666666), (0.51666665, 0.43333334), (0.5083333, 0.43333334), (0.5083333, 0.41666666), (0.5083333, 0.41666666), (0.5083333, 0.43333334), (0.5, 0.43333334), (0.5, 0.41666666), (0.5, 0.41666666), (0.5, 0.43333334), (0.49166667, 0.43333334), (0.49166667, 0.41666666), (0.49166667, 0.41666666), (0.49166667, 0.43333334), (0.48333332, 0.43333334), (0.48333332, 0.41666666), (0.48333332, 0.41666666), (0.48333332, 0.43333334), (0.475, 0.43333334), (0.475, 0.41666666), (0.475, 0.41666666), (0.475, 0.43333334), (0.46666667, 0.43333334), (0.46666667, 0.41666666), (0.46666667, 0.41666666), (0.46666667, 0.43333334), (0.45833334, 0.43333334), (0.45833334, 0.41666666), (0.45833334, 0.41666666), (0.45833334, 0.43333334), (0.45, 0.43333334), (0.45, 0.41666666), (0.45, 0.41666666), (0.45, 0.43333334), (0.44166666, 0.43333334), (0.44166666, 0.41666666), (0.44166666, 0.41666666), (0.44166666, 0.43333334), (0.43333334, 0.43333334), (0.43333334, 0.41666666), (0.43333334, 0.41666666), (0.43333334, 0.43333334), (0.425, 0.43333334), (0.425, 0.41666666), (0.425, 0.41666666), (0.425, 0.43333334), (0.41666666, 0.43333334), (0.41666666, 0.41666666), (0.41666666, 0.41666666), (0.41666666, 0.43333334), (0.40833333, 0.43333334), (0.40833333, 0.41666666), (0.40833333, 0.41666666), (0.40833333, 0.43333334), (0.4, 0.43333334), (0.4, 0.41666666), (0.4, 0.41666666), (0.4, 0.43333334), (0.39166668, 0.43333334), (0.39166668, 0.41666666), (0.39166668, 0.41666666), (0.39166668, 0.43333334), (0.38333333, 0.43333334), (0.38333333, 0.41666666), (0.38333333, 0.41666666), (0.38333333, 0.43333334), (0.375, 0.43333334), (0.375, 0.41666666), (0.375, 0.41666666), (0.375, 0.43333334), (0.36666667, 0.43333334), (0.36666667, 0.41666666), (0.36666667, 0.41666666), (0.36666667, 0.43333334), (0.35833332, 0.43333334), (0.35833332, 0.41666666), (0.35833332, 0.41666666), (0.35833332, 0.43333334), (0.35, 0.43333334), (0.35, 0.41666666), (0.35, 0.41666666), (0.35, 0.43333334), (0.34166667, 0.43333334), (0.34166667, 0.41666666), (0.34166667, 0.41666666), (0.34166667, 0.43333334), (0.33333334, 0.43333334), (0.33333334, 0.41666666), (0.33333334, 0.41666666), (0.33333334, 0.43333334), (0.325, 0.43333334), (0.325, 0.41666666), (0.325, 0.41666666), (0.325, 0.43333334), (0.31666666, 0.43333334), (0.31666666, 0.41666666), (0.31666666, 0.41666666), (0.31666666, 0.43333334), (0.30833334, 0.43333334), (0.30833334, 0.41666666), (0.30833334, 0.41666666), (0.30833334, 0.43333334), (0.3, 0.43333334), (0.3, 0.41666666), (0.3, 0.41666666), (0.3, 0.43333334), (0.29166666, 0.43333334), (0.29166666, 0.41666666), (0.29166666, 0.41666666), (0.29166666, 0.43333334), (0.28333333, 0.43333334), (0.28333333, 0.41666666), (0.28333333, 0.41666666), (0.28333333, 0.43333334), (0.275, 0.43333334), (0.275, 0.41666666), (0.275, 0.41666666), (0.275, 0.43333334), (0.26666668, 0.43333334), (0.26666668, 0.41666666), (0.26666668, 0.41666666), (0.26666668, 0.43333334), (0.25833333, 0.43333334), (0.25833333, 0.41666666), (0.25833333, 0.41666666), (0.25833333, 0.43333334), (0.25, 0.43333334), (0.25, 0.41666666), (0.25, 0.41666666), (0.25, 0.43333334), (0.24166666, 0.43333334), (0.24166666, 0.41666666), (0.24166666, 0.41666666), (0.24166666, 0.43333334), (0.23333333, 0.43333334), (0.23333333, 0.41666666), (0.23333333, 0.41666666), (0.23333333, 0.43333334), (0.225, 0.43333334), (0.225, 0.41666666), (0.225, 0.41666666), (0.225, 0.43333334), (0.21666667, 0.43333334), (0.21666667, 0.41666666), (0.21666667, 0.41666666), (0.21666667, 0.43333334), (0.20833333, 0.43333334), (0.20833333, 0.41666666), (0.20833333, 0.41666666), (0.20833333, 0.43333334), (0.2, 0.43333334), (0.2, 0.41666666), (0.2, 0.41666666), (0.2, 0.43333334), (0.19166666, 0.43333334), (0.19166666, 0.41666666), (0.19166666, 0.41666666), (0.19166666, 0.43333334), (0.18333334, 0.43333334), (0.18333334, 0.41666666), (0.18333334, 0.41666666), (0.18333334, 0.43333334), (0.175, 0.43333334), (0.175, 0.41666666), (0.175, 0.41666666), (0.175, 0.43333334), (0.16666667, 0.43333334), (0.16666667, 0.41666666), (0.16666667, 0.41666666), (0.16666667, 0.43333334), (0.15833333, 0.43333334), (0.15833333, 0.41666666), (0.15833333, 0.41666666), (0.15833333, 0.43333334), (0.15, 0.43333334), (0.15, 0.41666666), (0.15, 0.41666666), (0.15, 0.43333334), (0.14166667, 0.43333334), (0.14166667, 0.41666666), (0.14166667, 0.41666666), (0.14166667, 0.43333334), (0.13333334, 0.43333334), (0.13333334, 0.41666666), (0.13333334, 0.41666666), (0.13333334, 0.43333334), (0.125, 0.43333334), (0.125, 0.41666666), (0.125, 0.41666666), (0.125, 0.43333334), (0.11666667, 0.43333334), (0.11666667, 0.41666666), (0.11666667, 0.41666666), (0.11666667, 0.43333334), (0.108333334, 0.43333334), (0.108333334, 0.41666666), (0.108333334, 0.41666666), (0.108333334, 0.43333334), (0.1, 0.43333334), (0.1, 0.41666666), (0.1, 0.41666666), (0.1, 0.43333334), (0.09166667, 0.43333334), (0.09166667, 0.41666666), (0.09166667, 0.41666666), (0.09166667, 0.43333334), (0.083333336, 0.43333334), (0.083333336, 0.41666666), (0.083333336, 0.41666666), (0.083333336, 0.43333334), (0.075, 0.43333334), (0.075, 0.41666666), (0.075, 0.41666666), (0.075, 0.43333334), (0.06666667, 0.43333334), (0.06666667, 0.41666666), (0.06666667, 0.41666666), (0.06666667, 0.43333334), (0.058333334, 0.43333334), (0.058333334, 0.41666666), (0.058333334, 0.41666666), (0.058333334, 0.43333334), (0.05, 0.43333334), (0.05, 0.41666666), (0.05, 0.41666666), (0.05, 0.43333334), (0.041666668, 0.43333334), (0.041666668, 0.41666666), (0.041666668, 0.41666666), (0.041666668, 0.43333334), (0.033333335, 0.43333334), (0.033333335, 0.41666666), (0.033333335, 0.41666666), (0.033333335, 0.43333334), (0.025, 0.43333334), (0.025, 0.41666666), (0.025, 0.41666666), (0.025, 0.43333334), (0.016666668, 0.43333334), (0.016666668, 0.41666666), (0.016666668, 0.41666666), (0.016666668, 0.43333334), (0.008333334, 0.43333334), (0.008333334, 0.41666666), (0.008333334, 0.41666666), (0.008333334, 0.43333334), (0, 0.43333334), (0, 0.41666666), (1, 0.43333334), (1, 0.45), (0.9916667, 0.45), (0.9916667, 0.43333334), (0.9916667, 0.43333334), (0.9916667, 0.45), (0.98333335, 0.45), (0.98333335, 0.43333334), (0.98333335, 0.43333334), (0.98333335, 0.45), (0.975, 0.45), (0.975, 0.43333334), (0.975, 0.43333334), (0.975, 0.45), (0.96666664, 0.45), (0.96666664, 0.43333334), (0.96666664, 0.43333334), (0.96666664, 0.45), (0.9583333, 0.45), (0.9583333, 0.43333334), (0.9583333, 0.43333334), (0.9583333, 0.45), (0.95, 0.45), (0.95, 0.43333334), (0.95, 0.43333334), (0.95, 0.45), (0.94166666, 0.45), (0.94166666, 0.43333334), (0.94166666, 0.43333334), (0.94166666, 0.45), (0.93333334, 0.45), (0.93333334, 0.43333334), (0.93333334, 0.43333334), (0.93333334, 0.45), (0.925, 0.45), (0.925, 0.43333334), (0.925, 0.43333334), (0.925, 0.45), (0.9166667, 0.45), (0.9166667, 0.43333334), (0.9166667, 0.43333334), (0.9166667, 0.45), (0.90833336, 0.45), (0.90833336, 0.43333334), (0.90833336, 0.43333334), (0.90833336, 0.45), (0.9, 0.45), (0.9, 0.43333334), (0.9, 0.43333334), (0.9, 0.45), (0.89166665, 0.45), (0.89166665, 0.43333334), (0.89166665, 0.43333334), (0.89166665, 0.45), (0.8833333, 0.45), (0.8833333, 0.43333334), (0.8833333, 0.43333334), (0.8833333, 0.45), (0.875, 0.45), (0.875, 0.43333334), (0.875, 0.43333334), (0.875, 0.45), (0.8666667, 0.45), (0.8666667, 0.43333334), (0.8666667, 0.43333334), (0.8666667, 0.45), (0.85833335, 0.45), (0.85833335, 0.43333334), (0.85833335, 0.43333334), (0.85833335, 0.45), (0.85, 0.45), (0.85, 0.43333334), (0.85, 0.43333334), (0.85, 0.45), (0.84166664, 0.45), (0.84166664, 0.43333334), (0.84166664, 0.43333334), (0.84166664, 0.45), (0.8333333, 0.45), (0.8333333, 0.43333334), (0.8333333, 0.43333334), (0.8333333, 0.45), (0.825, 0.45), (0.825, 0.43333334), (0.825, 0.43333334), (0.825, 0.45), (0.81666666, 0.45), (0.81666666, 0.43333334), (0.81666666, 0.43333334), (0.81666666, 0.45), (0.80833334, 0.45), (0.80833334, 0.43333334), (0.80833334, 0.43333334), (0.80833334, 0.45), (0.8, 0.45), (0.8, 0.43333334), (0.8, 0.43333334), (0.8, 0.45), (0.7916667, 0.45), (0.7916667, 0.43333334), (0.7916667, 0.43333334), (0.7916667, 0.45), (0.78333336, 0.45), (0.78333336, 0.43333334), (0.78333336, 0.43333334), (0.78333336, 0.45), (0.775, 0.45), (0.775, 0.43333334), (0.775, 0.43333334), (0.775, 0.45), (0.76666665, 0.45), (0.76666665, 0.43333334), (0.76666665, 0.43333334), (0.76666665, 0.45), (0.7583333, 0.45), (0.7583333, 0.43333334), (0.7583333, 0.43333334), (0.7583333, 0.45), (0.75, 0.45), (0.75, 0.43333334), (0.75, 0.43333334), (0.75, 0.45), (0.7416667, 0.45), (0.7416667, 0.43333334), (0.7416667, 0.43333334), (0.7416667, 0.45), (0.73333335, 0.45), (0.73333335, 0.43333334), (0.73333335, 0.43333334), (0.73333335, 0.45), (0.725, 0.45), (0.725, 0.43333334), (0.725, 0.43333334), (0.725, 0.45), (0.71666664, 0.45), (0.71666664, 0.43333334), (0.71666664, 0.43333334), (0.71666664, 0.45), (0.7083333, 0.45), (0.7083333, 0.43333334), (0.7083333, 0.43333334), (0.7083333, 0.45), (0.7, 0.45), (0.7, 0.43333334), (0.7, 0.43333334), (0.7, 0.45), (0.69166666, 0.45), (0.69166666, 0.43333334), (0.69166666, 0.43333334), (0.69166666, 0.45), (0.68333334, 0.45), (0.68333334, 0.43333334), (0.68333334, 0.43333334), (0.68333334, 0.45), (0.675, 0.45), (0.675, 0.43333334), (0.675, 0.43333334), (0.675, 0.45), (0.6666667, 0.45), (0.6666667, 0.43333334), (0.6666667, 0.43333334), (0.6666667, 0.45), (0.65833336, 0.45), (0.65833336, 0.43333334), (0.65833336, 0.43333334), (0.65833336, 0.45), (0.65, 0.45), (0.65, 0.43333334), (0.65, 0.43333334), (0.65, 0.45), (0.64166665, 0.45), (0.64166665, 0.43333334), (0.64166665, 0.43333334), (0.64166665, 0.45), (0.6333333, 0.45), (0.6333333, 0.43333334), (0.6333333, 0.43333334), (0.6333333, 0.45), (0.625, 0.45), (0.625, 0.43333334), (0.625, 0.43333334), (0.625, 0.45), (0.6166667, 0.45), (0.6166667, 0.43333334), (0.6166667, 0.43333334), (0.6166667, 0.45), (0.60833335, 0.45), (0.60833335, 0.43333334), (0.60833335, 0.43333334), (0.60833335, 0.45), (0.6, 0.45), (0.6, 0.43333334), (0.6, 0.43333334), (0.6, 0.45), (0.59166664, 0.45), (0.59166664, 0.43333334), (0.59166664, 0.43333334), (0.59166664, 0.45), (0.5833333, 0.45), (0.5833333, 0.43333334), (0.5833333, 0.43333334), (0.5833333, 0.45), (0.575, 0.45), (0.575, 0.43333334), (0.575, 0.43333334), (0.575, 0.45), (0.56666666, 0.45), (0.56666666, 0.43333334), (0.56666666, 0.43333334), (0.56666666, 0.45), (0.55833334, 0.45), (0.55833334, 0.43333334), (0.55833334, 0.43333334), (0.55833334, 0.45), (0.55, 0.45), (0.55, 0.43333334), (0.55, 0.43333334), (0.55, 0.45), (0.5416667, 0.45), (0.5416667, 0.43333334), (0.5416667, 0.43333334), (0.5416667, 0.45), (0.53333336, 0.45), (0.53333336, 0.43333334), (0.53333336, 0.43333334), (0.53333336, 0.45), (0.525, 0.45), (0.525, 0.43333334), (0.525, 0.43333334), (0.525, 0.45), (0.51666665, 0.45), (0.51666665, 0.43333334), (0.51666665, 0.43333334), (0.51666665, 0.45), (0.5083333, 0.45), (0.5083333, 0.43333334), (0.5083333, 0.43333334), (0.5083333, 0.45), (0.5, 0.45), (0.5, 0.43333334), (0.5, 0.43333334), (0.5, 0.45), (0.49166667, 0.45), (0.49166667, 0.43333334), (0.49166667, 0.43333334), (0.49166667, 0.45), (0.48333332, 0.45), (0.48333332, 0.43333334), (0.48333332, 0.43333334), (0.48333332, 0.45), (0.475, 0.45), (0.475, 0.43333334), (0.475, 0.43333334), (0.475, 0.45), (0.46666667, 0.45), (0.46666667, 0.43333334), (0.46666667, 0.43333334), (0.46666667, 0.45), (0.45833334, 0.45), (0.45833334, 0.43333334), (0.45833334, 0.43333334), (0.45833334, 0.45), (0.45, 0.45), (0.45, 0.43333334), (0.45, 0.43333334), (0.45, 0.45), (0.44166666, 0.45), (0.44166666, 0.43333334), (0.44166666, 0.43333334), (0.44166666, 0.45), (0.43333334, 0.45), (0.43333334, 0.43333334), (0.43333334, 0.43333334), (0.43333334, 0.45), (0.425, 0.45), (0.425, 0.43333334), (0.425, 0.43333334), (0.425, 0.45), (0.41666666, 0.45), (0.41666666, 0.43333334), (0.41666666, 0.43333334), (0.41666666, 0.45), (0.40833333, 0.45), (0.40833333, 0.43333334), (0.40833333, 0.43333334), (0.40833333, 0.45), (0.4, 0.45), (0.4, 0.43333334), (0.4, 0.43333334), (0.4, 0.45), (0.39166668, 0.45), (0.39166668, 0.43333334), (0.39166668, 0.43333334), (0.39166668, 0.45), (0.38333333, 0.45), (0.38333333, 0.43333334), (0.38333333, 0.43333334), (0.38333333, 0.45), (0.375, 0.45), (0.375, 0.43333334), (0.375, 0.43333334), (0.375, 0.45), (0.36666667, 0.45), (0.36666667, 0.43333334), (0.36666667, 0.43333334), (0.36666667, 0.45), (0.35833332, 0.45), (0.35833332, 0.43333334), (0.35833332, 0.43333334), (0.35833332, 0.45), (0.35, 0.45), (0.35, 0.43333334), (0.35, 0.43333334), (0.35, 0.45), (0.34166667, 0.45), (0.34166667, 0.43333334), (0.34166667, 0.43333334), (0.34166667, 0.45), (0.33333334, 0.45), (0.33333334, 0.43333334), (0.33333334, 0.43333334), (0.33333334, 0.45), (0.325, 0.45), (0.325, 0.43333334), (0.325, 0.43333334), (0.325, 0.45), (0.31666666, 0.45), (0.31666666, 0.43333334), (0.31666666, 0.43333334), (0.31666666, 0.45), (0.30833334, 0.45), (0.30833334, 0.43333334), (0.30833334, 0.43333334), (0.30833334, 0.45), (0.3, 0.45), (0.3, 0.43333334), (0.3, 0.43333334), (0.3, 0.45), (0.29166666, 0.45), (0.29166666, 0.43333334), (0.29166666, 0.43333334), (0.29166666, 0.45), (0.28333333, 0.45), (0.28333333, 0.43333334), (0.28333333, 0.43333334), (0.28333333, 0.45), (0.275, 0.45), (0.275, 0.43333334), (0.275, 0.43333334), (0.275, 0.45), (0.26666668, 0.45), (0.26666668, 0.43333334), (0.26666668, 0.43333334), (0.26666668, 0.45), (0.25833333, 0.45), (0.25833333, 0.43333334), (0.25833333, 0.43333334), (0.25833333, 0.45), (0.25, 0.45), (0.25, 0.43333334), (0.25, 0.43333334), (0.25, 0.45), (0.24166666, 0.45), (0.24166666, 0.43333334), (0.24166666, 0.43333334), (0.24166666, 0.45), (0.23333333, 0.45), (0.23333333, 0.43333334), (0.23333333, 0.43333334), (0.23333333, 0.45), (0.225, 0.45), (0.225, 0.43333334), (0.225, 0.43333334), (0.225, 0.45), (0.21666667, 0.45), (0.21666667, 0.43333334), (0.21666667, 0.43333334), (0.21666667, 0.45), (0.20833333, 0.45), (0.20833333, 0.43333334), (0.20833333, 0.43333334), (0.20833333, 0.45), (0.2, 0.45), (0.2, 0.43333334), (0.2, 0.43333334), (0.2, 0.45), (0.19166666, 0.45), (0.19166666, 0.43333334), (0.19166666, 0.43333334), (0.19166666, 0.45), (0.18333334, 0.45), (0.18333334, 0.43333334), (0.18333334, 0.43333334), (0.18333334, 0.45), (0.175, 0.45), (0.175, 0.43333334), (0.175, 0.43333334), (0.175, 0.45), (0.16666667, 0.45), (0.16666667, 0.43333334), (0.16666667, 0.43333334), (0.16666667, 0.45), (0.15833333, 0.45), (0.15833333, 0.43333334), (0.15833333, 0.43333334), (0.15833333, 0.45), (0.15, 0.45), (0.15, 0.43333334), (0.15, 0.43333334), (0.15, 0.45), (0.14166667, 0.45), (0.14166667, 0.43333334), (0.14166667, 0.43333334), (0.14166667, 0.45), (0.13333334, 0.45), (0.13333334, 0.43333334), (0.13333334, 0.43333334), (0.13333334, 0.45), (0.125, 0.45), (0.125, 0.43333334), (0.125, 0.43333334), (0.125, 0.45), (0.11666667, 0.45), (0.11666667, 0.43333334), (0.11666667, 0.43333334), (0.11666667, 0.45), (0.108333334, 0.45), (0.108333334, 0.43333334), (0.108333334, 0.43333334), (0.108333334, 0.45), (0.1, 0.45), (0.1, 0.43333334), (0.1, 0.43333334), (0.1, 0.45), (0.09166667, 0.45), (0.09166667, 0.43333334), (0.09166667, 0.43333334), (0.09166667, 0.45), (0.083333336, 0.45), (0.083333336, 0.43333334), (0.083333336, 0.43333334), (0.083333336, 0.45), (0.075, 0.45), (0.075, 0.43333334), (0.075, 0.43333334), (0.075, 0.45), (0.06666667, 0.45), (0.06666667, 0.43333334), (0.06666667, 0.43333334), (0.06666667, 0.45), (0.058333334, 0.45), (0.058333334, 0.43333334), (0.058333334, 0.43333334), (0.058333334, 0.45), (0.05, 0.45), (0.05, 0.43333334), (0.05, 0.43333334), (0.05, 0.45), (0.041666668, 0.45), (0.041666668, 0.43333334), (0.041666668, 0.43333334), (0.041666668, 0.45), (0.033333335, 0.45), (0.033333335, 0.43333334), (0.033333335, 0.43333334), (0.033333335, 0.45), (0.025, 0.45), (0.025, 0.43333334), (0.025, 0.43333334), (0.025, 0.45), (0.016666668, 0.45), (0.016666668, 0.43333334), (0.016666668, 0.43333334), (0.016666668, 0.45), (0.008333334, 0.45), (0.008333334, 0.43333334), (0.008333334, 0.43333334), (0.008333334, 0.45), (0, 0.45), (0, 0.43333334), (1, 0.45), (1, 0.46666667), (0.9916667, 0.46666667), (0.9916667, 0.45), (0.9916667, 0.45), (0.9916667, 0.46666667), (0.98333335, 0.46666667), (0.98333335, 0.45), (0.98333335, 0.45), (0.98333335, 0.46666667), (0.975, 0.46666667), (0.975, 0.45), (0.975, 0.45), (0.975, 0.46666667), (0.96666664, 0.46666667), (0.96666664, 0.45), (0.96666664, 0.45), (0.96666664, 0.46666667), (0.9583333, 0.46666667), (0.9583333, 0.45), (0.9583333, 0.45), (0.9583333, 0.46666667), (0.95, 0.46666667), (0.95, 0.45), (0.95, 0.45), (0.95, 0.46666667), (0.94166666, 0.46666667), (0.94166666, 0.45), (0.94166666, 0.45), (0.94166666, 0.46666667), (0.93333334, 0.46666667), (0.93333334, 0.45), (0.93333334, 0.45), (0.93333334, 0.46666667), (0.925, 0.46666667), (0.925, 0.45), (0.925, 0.45), (0.925, 0.46666667), (0.9166667, 0.46666667), (0.9166667, 0.45), (0.9166667, 0.45), (0.9166667, 0.46666667), (0.90833336, 0.46666667), (0.90833336, 0.45), (0.90833336, 0.45), (0.90833336, 0.46666667), (0.9, 0.46666667), (0.9, 0.45), (0.9, 0.45), (0.9, 0.46666667), (0.89166665, 0.46666667), (0.89166665, 0.45), (0.89166665, 0.45), (0.89166665, 0.46666667), (0.8833333, 0.46666667), (0.8833333, 0.45), (0.8833333, 0.45), (0.8833333, 0.46666667), (0.875, 0.46666667), (0.875, 0.45), (0.875, 0.45), (0.875, 0.46666667), (0.8666667, 0.46666667), (0.8666667, 0.45), (0.8666667, 0.45), (0.8666667, 0.46666667), (0.85833335, 0.46666667), (0.85833335, 0.45), (0.85833335, 0.45), (0.85833335, 0.46666667), (0.85, 0.46666667), (0.85, 0.45), (0.85, 0.45), (0.85, 0.46666667), (0.84166664, 0.46666667), (0.84166664, 0.45), (0.84166664, 0.45), (0.84166664, 0.46666667), (0.8333333, 0.46666667), (0.8333333, 0.45), (0.8333333, 0.45), (0.8333333, 0.46666667), (0.825, 0.46666667), (0.825, 0.45), (0.825, 0.45), (0.825, 0.46666667), (0.81666666, 0.46666667), (0.81666666, 0.45), (0.81666666, 0.45), (0.81666666, 0.46666667), (0.80833334, 0.46666667), (0.80833334, 0.45), (0.80833334, 0.45), (0.80833334, 0.46666667), (0.8, 0.46666667), (0.8, 0.45), (0.8, 0.45), (0.8, 0.46666667), (0.7916667, 0.46666667), (0.7916667, 0.45), (0.7916667, 0.45), (0.7916667, 0.46666667), (0.78333336, 0.46666667), (0.78333336, 0.45), (0.78333336, 0.45), (0.78333336, 0.46666667), (0.775, 0.46666667), (0.775, 0.45), (0.775, 0.45), (0.775, 0.46666667), (0.76666665, 0.46666667), (0.76666665, 0.45), (0.76666665, 0.45), (0.76666665, 0.46666667), (0.7583333, 0.46666667), (0.7583333, 0.45), (0.7583333, 0.45), (0.7583333, 0.46666667), (0.75, 0.46666667), (0.75, 0.45), (0.75, 0.45), (0.75, 0.46666667), (0.7416667, 0.46666667), (0.7416667, 0.45), (0.7416667, 0.45), (0.7416667, 0.46666667), (0.73333335, 0.46666667), (0.73333335, 0.45), (0.73333335, 0.45), (0.73333335, 0.46666667), (0.725, 0.46666667), (0.725, 0.45), (0.725, 0.45), (0.725, 0.46666667), (0.71666664, 0.46666667), (0.71666664, 0.45), (0.71666664, 0.45), (0.71666664, 0.46666667), (0.7083333, 0.46666667), (0.7083333, 0.45), (0.7083333, 0.45), (0.7083333, 0.46666667), (0.7, 0.46666667), (0.7, 0.45), (0.7, 0.45), (0.7, 0.46666667), (0.69166666, 0.46666667), (0.69166666, 0.45), (0.69166666, 0.45), (0.69166666, 0.46666667), (0.68333334, 0.46666667), (0.68333334, 0.45), (0.68333334, 0.45), (0.68333334, 0.46666667), (0.675, 0.46666667), (0.675, 0.45), (0.675, 0.45), (0.675, 0.46666667), (0.6666667, 0.46666667), (0.6666667, 0.45), (0.6666667, 0.45), (0.6666667, 0.46666667), (0.65833336, 0.46666667), (0.65833336, 0.45), (0.65833336, 0.45), (0.65833336, 0.46666667), (0.65, 0.46666667), (0.65, 0.45), (0.65, 0.45), (0.65, 0.46666667), (0.64166665, 0.46666667), (0.64166665, 0.45), (0.64166665, 0.45), (0.64166665, 0.46666667), (0.6333333, 0.46666667), (0.6333333, 0.45), (0.6333333, 0.45), (0.6333333, 0.46666667), (0.625, 0.46666667), (0.625, 0.45), (0.625, 0.45), (0.625, 0.46666667), (0.6166667, 0.46666667), (0.6166667, 0.45), (0.6166667, 0.45), (0.6166667, 0.46666667), (0.60833335, 0.46666667), (0.60833335, 0.45), (0.60833335, 0.45), (0.60833335, 0.46666667), (0.6, 0.46666667), (0.6, 0.45), (0.6, 0.45), (0.6, 0.46666667), (0.59166664, 0.46666667), (0.59166664, 0.45), (0.59166664, 0.45), (0.59166664, 0.46666667), (0.5833333, 0.46666667), (0.5833333, 0.45), (0.5833333, 0.45), (0.5833333, 0.46666667), (0.575, 0.46666667), (0.575, 0.45), (0.575, 0.45), (0.575, 0.46666667), (0.56666666, 0.46666667), (0.56666666, 0.45), (0.56666666, 0.45), (0.56666666, 0.46666667), (0.55833334, 0.46666667), (0.55833334, 0.45), (0.55833334, 0.45), (0.55833334, 0.46666667), (0.55, 0.46666667), (0.55, 0.45), (0.55, 0.45), (0.55, 0.46666667), (0.5416667, 0.46666667), (0.5416667, 0.45), (0.5416667, 0.45), (0.5416667, 0.46666667), (0.53333336, 0.46666667), (0.53333336, 0.45), (0.53333336, 0.45), (0.53333336, 0.46666667), (0.525, 0.46666667), (0.525, 0.45), (0.525, 0.45), (0.525, 0.46666667), (0.51666665, 0.46666667), (0.51666665, 0.45), (0.51666665, 0.45), (0.51666665, 0.46666667), (0.5083333, 0.46666667), (0.5083333, 0.45), (0.5083333, 0.45), (0.5083333, 0.46666667), (0.5, 0.46666667), (0.5, 0.45), (0.5, 0.45), (0.5, 0.46666667), (0.49166667, 0.46666667), (0.49166667, 0.45), (0.49166667, 0.45), (0.49166667, 0.46666667), (0.48333332, 0.46666667), (0.48333332, 0.45), (0.48333332, 0.45), (0.48333332, 0.46666667), (0.475, 0.46666667), (0.475, 0.45), (0.475, 0.45), (0.475, 0.46666667), (0.46666667, 0.46666667), (0.46666667, 0.45), (0.46666667, 0.45), (0.46666667, 0.46666667), (0.45833334, 0.46666667), (0.45833334, 0.45), (0.45833334, 0.45), (0.45833334, 0.46666667), (0.45, 0.46666667), (0.45, 0.45), (0.45, 0.45), (0.45, 0.46666667), (0.44166666, 0.46666667), (0.44166666, 0.45), (0.44166666, 0.45), (0.44166666, 0.46666667), (0.43333334, 0.46666667), (0.43333334, 0.45), (0.43333334, 0.45), (0.43333334, 0.46666667), (0.425, 0.46666667), (0.425, 0.45), (0.425, 0.45), (0.425, 0.46666667), (0.41666666, 0.46666667), (0.41666666, 0.45), (0.41666666, 0.45), (0.41666666, 0.46666667), (0.40833333, 0.46666667), (0.40833333, 0.45), (0.40833333, 0.45), (0.40833333, 0.46666667), (0.4, 0.46666667), (0.4, 0.45), (0.4, 0.45), (0.4, 0.46666667), (0.39166668, 0.46666667), (0.39166668, 0.45), (0.39166668, 0.45), (0.39166668, 0.46666667), (0.38333333, 0.46666667), (0.38333333, 0.45), (0.38333333, 0.45), (0.38333333, 0.46666667), (0.375, 0.46666667), (0.375, 0.45), (0.375, 0.45), (0.375, 0.46666667), (0.36666667, 0.46666667), (0.36666667, 0.45), (0.36666667, 0.45), (0.36666667, 0.46666667), (0.35833332, 0.46666667), (0.35833332, 0.45), (0.35833332, 0.45), (0.35833332, 0.46666667), (0.35, 0.46666667), (0.35, 0.45), (0.35, 0.45), (0.35, 0.46666667), (0.34166667, 0.46666667), (0.34166667, 0.45), (0.34166667, 0.45), (0.34166667, 0.46666667), (0.33333334, 0.46666667), (0.33333334, 0.45), (0.33333334, 0.45), (0.33333334, 0.46666667), (0.325, 0.46666667), (0.325, 0.45), (0.325, 0.45), (0.325, 0.46666667), (0.31666666, 0.46666667), (0.31666666, 0.45), (0.31666666, 0.45), (0.31666666, 0.46666667), (0.30833334, 0.46666667), (0.30833334, 0.45), (0.30833334, 0.45), (0.30833334, 0.46666667), (0.3, 0.46666667), (0.3, 0.45), (0.3, 0.45), (0.3, 0.46666667), (0.29166666, 0.46666667), (0.29166666, 0.45), (0.29166666, 0.45), (0.29166666, 0.46666667), (0.28333333, 0.46666667), (0.28333333, 0.45), (0.28333333, 0.45), (0.28333333, 0.46666667), (0.275, 0.46666667), (0.275, 0.45), (0.275, 0.45), (0.275, 0.46666667), (0.26666668, 0.46666667), (0.26666668, 0.45), (0.26666668, 0.45), (0.26666668, 0.46666667), (0.25833333, 0.46666667), (0.25833333, 0.45), (0.25833333, 0.45), (0.25833333, 0.46666667), (0.25, 0.46666667), (0.25, 0.45), (0.25, 0.45), (0.25, 0.46666667), (0.24166666, 0.46666667), (0.24166666, 0.45), (0.24166666, 0.45), (0.24166666, 0.46666667), (0.23333333, 0.46666667), (0.23333333, 0.45), (0.23333333, 0.45), (0.23333333, 0.46666667), (0.225, 0.46666667), (0.225, 0.45), (0.225, 0.45), (0.225, 0.46666667), (0.21666667, 0.46666667), (0.21666667, 0.45), (0.21666667, 0.45), (0.21666667, 0.46666667), (0.20833333, 0.46666667), (0.20833333, 0.45), (0.20833333, 0.45), (0.20833333, 0.46666667), (0.2, 0.46666667), (0.2, 0.45), (0.2, 0.45), (0.2, 0.46666667), (0.19166666, 0.46666667), (0.19166666, 0.45), (0.19166666, 0.45), (0.19166666, 0.46666667), (0.18333334, 0.46666667), (0.18333334, 0.45), (0.18333334, 0.45), (0.18333334, 0.46666667), (0.175, 0.46666667), (0.175, 0.45), (0.175, 0.45), (0.175, 0.46666667), (0.16666667, 0.46666667), (0.16666667, 0.45), (0.16666667, 0.45), (0.16666667, 0.46666667), (0.15833333, 0.46666667), (0.15833333, 0.45), (0.15833333, 0.45), (0.15833333, 0.46666667), (0.15, 0.46666667), (0.15, 0.45), (0.15, 0.45), (0.15, 0.46666667), (0.14166667, 0.46666667), (0.14166667, 0.45), (0.14166667, 0.45), (0.14166667, 0.46666667), (0.13333334, 0.46666667), (0.13333334, 0.45), (0.13333334, 0.45), (0.13333334, 0.46666667), (0.125, 0.46666667), (0.125, 0.45), (0.125, 0.45), (0.125, 0.46666667), (0.11666667, 0.46666667), (0.11666667, 0.45), (0.11666667, 0.45), (0.11666667, 0.46666667), (0.108333334, 0.46666667), (0.108333334, 0.45), (0.108333334, 0.45), (0.108333334, 0.46666667), (0.1, 0.46666667), (0.1, 0.45), (0.1, 0.45), (0.1, 0.46666667), (0.09166667, 0.46666667), (0.09166667, 0.45), (0.09166667, 0.45), (0.09166667, 0.46666667), (0.083333336, 0.46666667), (0.083333336, 0.45), (0.083333336, 0.45), (0.083333336, 0.46666667), (0.075, 0.46666667), (0.075, 0.45), (0.075, 0.45), (0.075, 0.46666667), (0.06666667, 0.46666667), (0.06666667, 0.45), (0.06666667, 0.45), (0.06666667, 0.46666667), (0.058333334, 0.46666667), (0.058333334, 0.45), (0.058333334, 0.45), (0.058333334, 0.46666667), (0.05, 0.46666667), (0.05, 0.45), (0.05, 0.45), (0.05, 0.46666667), (0.041666668, 0.46666667), (0.041666668, 0.45), (0.041666668, 0.45), (0.041666668, 0.46666667), (0.033333335, 0.46666667), (0.033333335, 0.45), (0.033333335, 0.45), (0.033333335, 0.46666667), (0.025, 0.46666667), (0.025, 0.45), (0.025, 0.45), (0.025, 0.46666667), (0.016666668, 0.46666667), (0.016666668, 0.45), (0.016666668, 0.45), (0.016666668, 0.46666667), (0.008333334, 0.46666667), (0.008333334, 0.45), (0.008333334, 0.45), (0.008333334, 0.46666667), (0, 0.46666667), (0, 0.45), (1, 0.46666667), (1, 0.48333332), (0.9916667, 0.48333332), (0.9916667, 0.46666667), (0.9916667, 0.46666667), (0.9916667, 0.48333332), (0.98333335, 0.48333332), (0.98333335, 0.46666667), (0.98333335, 0.46666667), (0.98333335, 0.48333332), (0.975, 0.48333332), (0.975, 0.46666667), (0.975, 0.46666667), (0.975, 0.48333332), (0.96666664, 0.48333332), (0.96666664, 0.46666667), (0.96666664, 0.46666667), (0.96666664, 0.48333332), (0.9583333, 0.48333332), (0.9583333, 0.46666667), (0.9583333, 0.46666667), (0.9583333, 0.48333332), (0.95, 0.48333332), (0.95, 0.46666667), (0.95, 0.46666667), (0.95, 0.48333332), (0.94166666, 0.48333332), (0.94166666, 0.46666667), (0.94166666, 0.46666667), (0.94166666, 0.48333332), (0.93333334, 0.48333332), (0.93333334, 0.46666667), (0.93333334, 0.46666667), (0.93333334, 0.48333332), (0.925, 0.48333332), (0.925, 0.46666667), (0.925, 0.46666667), (0.925, 0.48333332), (0.9166667, 0.48333332), (0.9166667, 0.46666667), (0.9166667, 0.46666667), (0.9166667, 0.48333332), (0.90833336, 0.48333332), (0.90833336, 0.46666667), (0.90833336, 0.46666667), (0.90833336, 0.48333332), (0.9, 0.48333332), (0.9, 0.46666667), (0.9, 0.46666667), (0.9, 0.48333332), (0.89166665, 0.48333332), (0.89166665, 0.46666667), (0.89166665, 0.46666667), (0.89166665, 0.48333332), (0.8833333, 0.48333332), (0.8833333, 0.46666667), (0.8833333, 0.46666667), (0.8833333, 0.48333332), (0.875, 0.48333332), (0.875, 0.46666667), (0.875, 0.46666667), (0.875, 0.48333332), (0.8666667, 0.48333332), (0.8666667, 0.46666667), (0.8666667, 0.46666667), (0.8666667, 0.48333332), (0.85833335, 0.48333332), (0.85833335, 0.46666667), (0.85833335, 0.46666667), (0.85833335, 0.48333332), (0.85, 0.48333332), (0.85, 0.46666667), (0.85, 0.46666667), (0.85, 0.48333332), (0.84166664, 0.48333332), (0.84166664, 0.46666667), (0.84166664, 0.46666667), (0.84166664, 0.48333332), (0.8333333, 0.48333332), (0.8333333, 0.46666667), (0.8333333, 0.46666667), (0.8333333, 0.48333332), (0.825, 0.48333332), (0.825, 0.46666667), (0.825, 0.46666667), (0.825, 0.48333332), (0.81666666, 0.48333332), (0.81666666, 0.46666667), (0.81666666, 0.46666667), (0.81666666, 0.48333332), (0.80833334, 0.48333332), (0.80833334, 0.46666667), (0.80833334, 0.46666667), (0.80833334, 0.48333332), (0.8, 0.48333332), (0.8, 0.46666667), (0.8, 0.46666667), (0.8, 0.48333332), (0.7916667, 0.48333332), (0.7916667, 0.46666667), (0.7916667, 0.46666667), (0.7916667, 0.48333332), (0.78333336, 0.48333332), (0.78333336, 0.46666667), (0.78333336, 0.46666667), (0.78333336, 0.48333332), (0.775, 0.48333332), (0.775, 0.46666667), (0.775, 0.46666667), (0.775, 0.48333332), (0.76666665, 0.48333332), (0.76666665, 0.46666667), (0.76666665, 0.46666667), (0.76666665, 0.48333332), (0.7583333, 0.48333332), (0.7583333, 0.46666667), (0.7583333, 0.46666667), (0.7583333, 0.48333332), (0.75, 0.48333332), (0.75, 0.46666667), (0.75, 0.46666667), (0.75, 0.48333332), (0.7416667, 0.48333332), (0.7416667, 0.46666667), (0.7416667, 0.46666667), (0.7416667, 0.48333332), (0.73333335, 0.48333332), (0.73333335, 0.46666667), (0.73333335, 0.46666667), (0.73333335, 0.48333332), (0.725, 0.48333332), (0.725, 0.46666667), (0.725, 0.46666667), (0.725, 0.48333332), (0.71666664, 0.48333332), (0.71666664, 0.46666667), (0.71666664, 0.46666667), (0.71666664, 0.48333332), (0.7083333, 0.48333332), (0.7083333, 0.46666667), (0.7083333, 0.46666667), (0.7083333, 0.48333332), (0.7, 0.48333332), (0.7, 0.46666667), (0.7, 0.46666667), (0.7, 0.48333332), (0.69166666, 0.48333332), (0.69166666, 0.46666667), (0.69166666, 0.46666667), (0.69166666, 0.48333332), (0.68333334, 0.48333332), (0.68333334, 0.46666667), (0.68333334, 0.46666667), (0.68333334, 0.48333332), (0.675, 0.48333332), (0.675, 0.46666667), (0.675, 0.46666667), (0.675, 0.48333332), (0.6666667, 0.48333332), (0.6666667, 0.46666667), (0.6666667, 0.46666667), (0.6666667, 0.48333332), (0.65833336, 0.48333332), (0.65833336, 0.46666667), (0.65833336, 0.46666667), (0.65833336, 0.48333332), (0.65, 0.48333332), (0.65, 0.46666667), (0.65, 0.46666667), (0.65, 0.48333332), (0.64166665, 0.48333332), (0.64166665, 0.46666667), (0.64166665, 0.46666667), (0.64166665, 0.48333332), (0.6333333, 0.48333332), (0.6333333, 0.46666667), (0.6333333, 0.46666667), (0.6333333, 0.48333332), (0.625, 0.48333332), (0.625, 0.46666667), (0.625, 0.46666667), (0.625, 0.48333332), (0.6166667, 0.48333332), (0.6166667, 0.46666667), (0.6166667, 0.46666667), (0.6166667, 0.48333332), (0.60833335, 0.48333332), (0.60833335, 0.46666667), (0.60833335, 0.46666667), (0.60833335, 0.48333332), (0.6, 0.48333332), (0.6, 0.46666667), (0.6, 0.46666667), (0.6, 0.48333332), (0.59166664, 0.48333332), (0.59166664, 0.46666667), (0.59166664, 0.46666667), (0.59166664, 0.48333332), (0.5833333, 0.48333332), (0.5833333, 0.46666667), (0.5833333, 0.46666667), (0.5833333, 0.48333332), (0.575, 0.48333332), (0.575, 0.46666667), (0.575, 0.46666667), (0.575, 0.48333332), (0.56666666, 0.48333332), (0.56666666, 0.46666667), (0.56666666, 0.46666667), (0.56666666, 0.48333332), (0.55833334, 0.48333332), (0.55833334, 0.46666667), (0.55833334, 0.46666667), (0.55833334, 0.48333332), (0.55, 0.48333332), (0.55, 0.46666667), (0.55, 0.46666667), (0.55, 0.48333332), (0.5416667, 0.48333332), (0.5416667, 0.46666667), (0.5416667, 0.46666667), (0.5416667, 0.48333332), (0.53333336, 0.48333332), (0.53333336, 0.46666667), (0.53333336, 0.46666667), (0.53333336, 0.48333332), (0.525, 0.48333332), (0.525, 0.46666667), (0.525, 0.46666667), (0.525, 0.48333332), (0.51666665, 0.48333332), (0.51666665, 0.46666667), (0.51666665, 0.46666667), (0.51666665, 0.48333332), (0.5083333, 0.48333332), (0.5083333, 0.46666667), (0.5083333, 0.46666667), (0.5083333, 0.48333332), (0.5, 0.48333332), (0.5, 0.46666667), (0.5, 0.46666667), (0.5, 0.48333332), (0.49166667, 0.48333332), (0.49166667, 0.46666667), (0.49166667, 0.46666667), (0.49166667, 0.48333332), (0.48333332, 0.48333332), (0.48333332, 0.46666667), (0.48333332, 0.46666667), (0.48333332, 0.48333332), (0.475, 0.48333332), (0.475, 0.46666667), (0.475, 0.46666667), (0.475, 0.48333332), (0.46666667, 0.48333332), (0.46666667, 0.46666667), (0.46666667, 0.46666667), (0.46666667, 0.48333332), (0.45833334, 0.48333332), (0.45833334, 0.46666667), (0.45833334, 0.46666667), (0.45833334, 0.48333332), (0.45, 0.48333332), (0.45, 0.46666667), (0.45, 0.46666667), (0.45, 0.48333332), (0.44166666, 0.48333332), (0.44166666, 0.46666667), (0.44166666, 0.46666667), (0.44166666, 0.48333332), (0.43333334, 0.48333332), (0.43333334, 0.46666667), (0.43333334, 0.46666667), (0.43333334, 0.48333332), (0.425, 0.48333332), (0.425, 0.46666667), (0.425, 0.46666667), (0.425, 0.48333332), (0.41666666, 0.48333332), (0.41666666, 0.46666667), (0.41666666, 0.46666667), (0.41666666, 0.48333332), (0.40833333, 0.48333332), (0.40833333, 0.46666667), (0.40833333, 0.46666667), (0.40833333, 0.48333332), (0.4, 0.48333332), (0.4, 0.46666667), (0.4, 0.46666667), (0.4, 0.48333332), (0.39166668, 0.48333332), (0.39166668, 0.46666667), (0.39166668, 0.46666667), (0.39166668, 0.48333332), (0.38333333, 0.48333332), (0.38333333, 0.46666667), (0.38333333, 0.46666667), (0.38333333, 0.48333332), (0.375, 0.48333332), (0.375, 0.46666667), (0.375, 0.46666667), (0.375, 0.48333332), (0.36666667, 0.48333332), (0.36666667, 0.46666667), (0.36666667, 0.46666667), (0.36666667, 0.48333332), (0.35833332, 0.48333332), (0.35833332, 0.46666667), (0.35833332, 0.46666667), (0.35833332, 0.48333332), (0.35, 0.48333332), (0.35, 0.46666667), (0.35, 0.46666667), (0.35, 0.48333332), (0.34166667, 0.48333332), (0.34166667, 0.46666667), (0.34166667, 0.46666667), (0.34166667, 0.48333332), (0.33333334, 0.48333332), (0.33333334, 0.46666667), (0.33333334, 0.46666667), (0.33333334, 0.48333332), (0.325, 0.48333332), (0.325, 0.46666667), (0.325, 0.46666667), (0.325, 0.48333332), (0.31666666, 0.48333332), (0.31666666, 0.46666667), (0.31666666, 0.46666667), (0.31666666, 0.48333332), (0.30833334, 0.48333332), (0.30833334, 0.46666667), (0.30833334, 0.46666667), (0.30833334, 0.48333332), (0.3, 0.48333332), (0.3, 0.46666667), (0.3, 0.46666667), (0.3, 0.48333332), (0.29166666, 0.48333332), (0.29166666, 0.46666667), (0.29166666, 0.46666667), (0.29166666, 0.48333332), (0.28333333, 0.48333332), (0.28333333, 0.46666667), (0.28333333, 0.46666667), (0.28333333, 0.48333332), (0.275, 0.48333332), (0.275, 0.46666667), (0.275, 0.46666667), (0.275, 0.48333332), (0.26666668, 0.48333332), (0.26666668, 0.46666667), (0.26666668, 0.46666667), (0.26666668, 0.48333332), (0.25833333, 0.48333332), (0.25833333, 0.46666667), (0.25833333, 0.46666667), (0.25833333, 0.48333332), (0.25, 0.48333332), (0.25, 0.46666667), (0.25, 0.46666667), (0.25, 0.48333332), (0.24166666, 0.48333332), (0.24166666, 0.46666667), (0.24166666, 0.46666667), (0.24166666, 0.48333332), (0.23333333, 0.48333332), (0.23333333, 0.46666667), (0.23333333, 0.46666667), (0.23333333, 0.48333332), (0.225, 0.48333332), (0.225, 0.46666667), (0.225, 0.46666667), (0.225, 0.48333332), (0.21666667, 0.48333332), (0.21666667, 0.46666667), (0.21666667, 0.46666667), (0.21666667, 0.48333332), (0.20833333, 0.48333332), (0.20833333, 0.46666667), (0.20833333, 0.46666667), (0.20833333, 0.48333332), (0.2, 0.48333332), (0.2, 0.46666667), (0.2, 0.46666667), (0.2, 0.48333332), (0.19166666, 0.48333332), (0.19166666, 0.46666667), (0.19166666, 0.46666667), (0.19166666, 0.48333332), (0.18333334, 0.48333332), (0.18333334, 0.46666667), (0.18333334, 0.46666667), (0.18333334, 0.48333332), (0.175, 0.48333332), (0.175, 0.46666667), (0.175, 0.46666667), (0.175, 0.48333332), (0.16666667, 0.48333332), (0.16666667, 0.46666667), (0.16666667, 0.46666667), (0.16666667, 0.48333332), (0.15833333, 0.48333332), (0.15833333, 0.46666667), (0.15833333, 0.46666667), (0.15833333, 0.48333332), (0.15, 0.48333332), (0.15, 0.46666667), (0.15, 0.46666667), (0.15, 0.48333332), (0.14166667, 0.48333332), (0.14166667, 0.46666667), (0.14166667, 0.46666667), (0.14166667, 0.48333332), (0.13333334, 0.48333332), (0.13333334, 0.46666667), (0.13333334, 0.46666667), (0.13333334, 0.48333332), (0.125, 0.48333332), (0.125, 0.46666667), (0.125, 0.46666667), (0.125, 0.48333332), (0.11666667, 0.48333332), (0.11666667, 0.46666667), (0.11666667, 0.46666667), (0.11666667, 0.48333332), (0.108333334, 0.48333332), (0.108333334, 0.46666667), (0.108333334, 0.46666667), (0.108333334, 0.48333332), (0.1, 0.48333332), (0.1, 0.46666667), (0.1, 0.46666667), (0.1, 0.48333332), (0.09166667, 0.48333332), (0.09166667, 0.46666667), (0.09166667, 0.46666667), (0.09166667, 0.48333332), (0.083333336, 0.48333332), (0.083333336, 0.46666667), (0.083333336, 0.46666667), (0.083333336, 0.48333332), (0.075, 0.48333332), (0.075, 0.46666667), (0.075, 0.46666667), (0.075, 0.48333332), (0.06666667, 0.48333332), (0.06666667, 0.46666667), (0.06666667, 0.46666667), (0.06666667, 0.48333332), (0.058333334, 0.48333332), (0.058333334, 0.46666667), (0.058333334, 0.46666667), (0.058333334, 0.48333332), (0.05, 0.48333332), (0.05, 0.46666667), (0.05, 0.46666667), (0.05, 0.48333332), (0.041666668, 0.48333332), (0.041666668, 0.46666667), (0.041666668, 0.46666667), (0.041666668, 0.48333332), (0.033333335, 0.48333332), (0.033333335, 0.46666667), (0.033333335, 0.46666667), (0.033333335, 0.48333332), (0.025, 0.48333332), (0.025, 0.46666667), (0.025, 0.46666667), (0.025, 0.48333332), (0.016666668, 0.48333332), (0.016666668, 0.46666667), (0.016666668, 0.46666667), (0.016666668, 0.48333332), (0.008333334, 0.48333332), (0.008333334, 0.46666667), (0.008333334, 0.46666667), (0.008333334, 0.48333332), (0, 0.48333332), (0, 0.46666667), (1, 0.48333332), (1, 0.5), (0.9916667, 0.5), (0.9916667, 0.48333332), (0.9916667, 0.48333332), (0.9916667, 0.5), (0.98333335, 0.5), (0.98333335, 0.48333332), (0.98333335, 0.48333332), (0.98333335, 0.5), (0.975, 0.5), (0.975, 0.48333332), (0.975, 0.48333332), (0.975, 0.5), (0.96666664, 0.5), (0.96666664, 0.48333332), (0.96666664, 0.48333332), (0.96666664, 0.5), (0.9583333, 0.5), (0.9583333, 0.48333332), (0.9583333, 0.48333332), (0.9583333, 0.5), (0.95, 0.5), (0.95, 0.48333332), (0.95, 0.48333332), (0.95, 0.5), (0.94166666, 0.5), (0.94166666, 0.48333332), (0.94166666, 0.48333332), (0.94166666, 0.5), (0.93333334, 0.5), (0.93333334, 0.48333332), (0.93333334, 0.48333332), (0.93333334, 0.5), (0.925, 0.5), (0.925, 0.48333332), (0.925, 0.48333332), (0.925, 0.5), (0.9166667, 0.5), (0.9166667, 0.48333332), (0.9166667, 0.48333332), (0.9166667, 0.5), (0.90833336, 0.5), (0.90833336, 0.48333332), (0.90833336, 0.48333332), (0.90833336, 0.5), (0.9, 0.5), (0.9, 0.48333332), (0.9, 0.48333332), (0.9, 0.5), (0.89166665, 0.5), (0.89166665, 0.48333332), (0.89166665, 0.48333332), (0.89166665, 0.5), (0.8833333, 0.5), (0.8833333, 0.48333332), (0.8833333, 0.48333332), (0.8833333, 0.5), (0.875, 0.5), (0.875, 0.48333332), (0.875, 0.48333332), (0.875, 0.5), (0.8666667, 0.5), (0.8666667, 0.48333332), (0.8666667, 0.48333332), (0.8666667, 0.5), (0.85833335, 0.5), (0.85833335, 0.48333332), (0.85833335, 0.48333332), (0.85833335, 0.5), (0.85, 0.5), (0.85, 0.48333332), (0.85, 0.48333332), (0.85, 0.5), (0.84166664, 0.5), (0.84166664, 0.48333332), (0.84166664, 0.48333332), (0.84166664, 0.5), (0.8333333, 0.5), (0.8333333, 0.48333332), (0.8333333, 0.48333332), (0.8333333, 0.5), (0.825, 0.5), (0.825, 0.48333332), (0.825, 0.48333332), (0.825, 0.5), (0.81666666, 0.5), (0.81666666, 0.48333332), (0.81666666, 0.48333332), (0.81666666, 0.5), (0.80833334, 0.5), (0.80833334, 0.48333332), (0.80833334, 0.48333332), (0.80833334, 0.5), (0.8, 0.5), (0.8, 0.48333332), (0.8, 0.48333332), (0.8, 0.5), (0.7916667, 0.5), (0.7916667, 0.48333332), (0.7916667, 0.48333332), (0.7916667, 0.5), (0.78333336, 0.5), (0.78333336, 0.48333332), (0.78333336, 0.48333332), (0.78333336, 0.5), (0.775, 0.5), (0.775, 0.48333332), (0.775, 0.48333332), (0.775, 0.5), (0.76666665, 0.5), (0.76666665, 0.48333332), (0.76666665, 0.48333332), (0.76666665, 0.5), (0.7583333, 0.5), (0.7583333, 0.48333332), (0.7583333, 0.48333332), (0.7583333, 0.5), (0.75, 0.5), (0.75, 0.48333332), (0.75, 0.48333332), (0.75, 0.5), (0.7416667, 0.5), (0.7416667, 0.48333332), (0.7416667, 0.48333332), (0.7416667, 0.5), (0.73333335, 0.5), (0.73333335, 0.48333332), (0.73333335, 0.48333332), (0.73333335, 0.5), (0.725, 0.5), (0.725, 0.48333332), (0.725, 0.48333332), (0.725, 0.5), (0.71666664, 0.5), (0.71666664, 0.48333332), (0.71666664, 0.48333332), (0.71666664, 0.5), (0.7083333, 0.5), (0.7083333, 0.48333332), (0.7083333, 0.48333332), (0.7083333, 0.5), (0.7, 0.5), (0.7, 0.48333332), (0.7, 0.48333332), (0.7, 0.5), (0.69166666, 0.5), (0.69166666, 0.48333332), (0.69166666, 0.48333332), (0.69166666, 0.5), (0.68333334, 0.5), (0.68333334, 0.48333332), (0.68333334, 0.48333332), (0.68333334, 0.5), (0.675, 0.5), (0.675, 0.48333332), (0.675, 0.48333332), (0.675, 0.5), (0.6666667, 0.5), (0.6666667, 0.48333332), (0.6666667, 0.48333332), (0.6666667, 0.5), (0.65833336, 0.5), (0.65833336, 0.48333332), (0.65833336, 0.48333332), (0.65833336, 0.5), (0.65, 0.5), (0.65, 0.48333332), (0.65, 0.48333332), (0.65, 0.5), (0.64166665, 0.5), (0.64166665, 0.48333332), (0.64166665, 0.48333332), (0.64166665, 0.5), (0.6333333, 0.5), (0.6333333, 0.48333332), (0.6333333, 0.48333332), (0.6333333, 0.5), (0.625, 0.5), (0.625, 0.48333332), (0.625, 0.48333332), (0.625, 0.5), (0.6166667, 0.5), (0.6166667, 0.48333332), (0.6166667, 0.48333332), (0.6166667, 0.5), (0.60833335, 0.5), (0.60833335, 0.48333332), (0.60833335, 0.48333332), (0.60833335, 0.5), (0.6, 0.5), (0.6, 0.48333332), (0.6, 0.48333332), (0.6, 0.5), (0.59166664, 0.5), (0.59166664, 0.48333332), (0.59166664, 0.48333332), (0.59166664, 0.5), (0.5833333, 0.5), (0.5833333, 0.48333332), (0.5833333, 0.48333332), (0.5833333, 0.5), (0.575, 0.5), (0.575, 0.48333332), (0.575, 0.48333332), (0.575, 0.5), (0.56666666, 0.5), (0.56666666, 0.48333332), (0.56666666, 0.48333332), (0.56666666, 0.5), (0.55833334, 0.5), (0.55833334, 0.48333332), (0.55833334, 0.48333332), (0.55833334, 0.5), (0.55, 0.5), (0.55, 0.48333332), (0.55, 0.48333332), (0.55, 0.5), (0.5416667, 0.5), (0.5416667, 0.48333332), (0.5416667, 0.48333332), (0.5416667, 0.5), (0.53333336, 0.5), (0.53333336, 0.48333332), (0.53333336, 0.48333332), (0.53333336, 0.5), (0.525, 0.5), (0.525, 0.48333332), (0.525, 0.48333332), (0.525, 0.5), (0.51666665, 0.5), (0.51666665, 0.48333332), (0.51666665, 0.48333332), (0.51666665, 0.5), (0.5083333, 0.5), (0.5083333, 0.48333332), (0.5083333, 0.48333332), (0.5083333, 0.5), (0.5, 0.5), (0.5, 0.48333332), (0.5, 0.48333332), (0.5, 0.5), (0.49166667, 0.5), (0.49166667, 0.48333332), (0.49166667, 0.48333332), (0.49166667, 0.5), (0.48333332, 0.5), (0.48333332, 0.48333332), (0.48333332, 0.48333332), (0.48333332, 0.5), (0.475, 0.5), (0.475, 0.48333332), (0.475, 0.48333332), (0.475, 0.5), (0.46666667, 0.5), (0.46666667, 0.48333332), (0.46666667, 0.48333332), (0.46666667, 0.5), (0.45833334, 0.5), (0.45833334, 0.48333332), (0.45833334, 0.48333332), (0.45833334, 0.5), (0.45, 0.5), (0.45, 0.48333332), (0.45, 0.48333332), (0.45, 0.5), (0.44166666, 0.5), (0.44166666, 0.48333332), (0.44166666, 0.48333332), (0.44166666, 0.5), (0.43333334, 0.5), (0.43333334, 0.48333332), (0.43333334, 0.48333332), (0.43333334, 0.5), (0.425, 0.5), (0.425, 0.48333332), (0.425, 0.48333332), (0.425, 0.5), (0.41666666, 0.5), (0.41666666, 0.48333332), (0.41666666, 0.48333332), (0.41666666, 0.5), (0.40833333, 0.5), (0.40833333, 0.48333332), (0.40833333, 0.48333332), (0.40833333, 0.5), (0.4, 0.5), (0.4, 0.48333332), (0.4, 0.48333332), (0.4, 0.5), (0.39166668, 0.5), (0.39166668, 0.48333332), (0.39166668, 0.48333332), (0.39166668, 0.5), (0.38333333, 0.5), (0.38333333, 0.48333332), (0.38333333, 0.48333332), (0.38333333, 0.5), (0.375, 0.5), (0.375, 0.48333332), (0.375, 0.48333332), (0.375, 0.5), (0.36666667, 0.5), (0.36666667, 0.48333332), (0.36666667, 0.48333332), (0.36666667, 0.5), (0.35833332, 0.5), (0.35833332, 0.48333332), (0.35833332, 0.48333332), (0.35833332, 0.5), (0.35, 0.5), (0.35, 0.48333332), (0.35, 0.48333332), (0.35, 0.5), (0.34166667, 0.5), (0.34166667, 0.48333332), (0.34166667, 0.48333332), (0.34166667, 0.5), (0.33333334, 0.5), (0.33333334, 0.48333332), (0.33333334, 0.48333332), (0.33333334, 0.5), (0.325, 0.5), (0.325, 0.48333332), (0.325, 0.48333332), (0.325, 0.5), (0.31666666, 0.5), (0.31666666, 0.48333332), (0.31666666, 0.48333332), (0.31666666, 0.5), (0.30833334, 0.5), (0.30833334, 0.48333332), (0.30833334, 0.48333332), (0.30833334, 0.5), (0.3, 0.5), (0.3, 0.48333332), (0.3, 0.48333332), (0.3, 0.5), (0.29166666, 0.5), (0.29166666, 0.48333332), (0.29166666, 0.48333332), (0.29166666, 0.5), (0.28333333, 0.5), (0.28333333, 0.48333332), (0.28333333, 0.48333332), (0.28333333, 0.5), (0.275, 0.5), (0.275, 0.48333332), (0.275, 0.48333332), (0.275, 0.5), (0.26666668, 0.5), (0.26666668, 0.48333332), (0.26666668, 0.48333332), (0.26666668, 0.5), (0.25833333, 0.5), (0.25833333, 0.48333332), (0.25833333, 0.48333332), (0.25833333, 0.5), (0.25, 0.5), (0.25, 0.48333332), (0.25, 0.48333332), (0.25, 0.5), (0.24166666, 0.5), (0.24166666, 0.48333332), (0.24166666, 0.48333332), (0.24166666, 0.5), (0.23333333, 0.5), (0.23333333, 0.48333332), (0.23333333, 0.48333332), (0.23333333, 0.5), (0.225, 0.5), (0.225, 0.48333332), (0.225, 0.48333332), (0.225, 0.5), (0.21666667, 0.5), (0.21666667, 0.48333332), (0.21666667, 0.48333332), (0.21666667, 0.5), (0.20833333, 0.5), (0.20833333, 0.48333332), (0.20833333, 0.48333332), (0.20833333, 0.5), (0.2, 0.5), (0.2, 0.48333332), (0.2, 0.48333332), (0.2, 0.5), (0.19166666, 0.5), (0.19166666, 0.48333332), (0.19166666, 0.48333332), (0.19166666, 0.5), (0.18333334, 0.5), (0.18333334, 0.48333332), (0.18333334, 0.48333332), (0.18333334, 0.5), (0.175, 0.5), (0.175, 0.48333332), (0.175, 0.48333332), (0.175, 0.5), (0.16666667, 0.5), (0.16666667, 0.48333332), (0.16666667, 0.48333332), (0.16666667, 0.5), (0.15833333, 0.5), (0.15833333, 0.48333332), (0.15833333, 0.48333332), (0.15833333, 0.5), (0.15, 0.5), (0.15, 0.48333332), (0.15, 0.48333332), (0.15, 0.5), (0.14166667, 0.5), (0.14166667, 0.48333332), (0.14166667, 0.48333332), (0.14166667, 0.5), (0.13333334, 0.5), (0.13333334, 0.48333332), (0.13333334, 0.48333332), (0.13333334, 0.5), (0.125, 0.5), (0.125, 0.48333332), (0.125, 0.48333332), (0.125, 0.5), (0.11666667, 0.5), (0.11666667, 0.48333332), (0.11666667, 0.48333332), (0.11666667, 0.5), (0.108333334, 0.5), (0.108333334, 0.48333332), (0.108333334, 0.48333332), (0.108333334, 0.5), (0.1, 0.5), (0.1, 0.48333332), (0.1, 0.48333332), (0.1, 0.5), (0.09166667, 0.5), (0.09166667, 0.48333332), (0.09166667, 0.48333332), (0.09166667, 0.5), (0.083333336, 0.5), (0.083333336, 0.48333332), (0.083333336, 0.48333332), (0.083333336, 0.5), (0.075, 0.5), (0.075, 0.48333332), (0.075, 0.48333332), (0.075, 0.5), (0.06666667, 0.5), (0.06666667, 0.48333332), (0.06666667, 0.48333332), (0.06666667, 0.5), (0.058333334, 0.5), (0.058333334, 0.48333332), (0.058333334, 0.48333332), (0.058333334, 0.5), (0.05, 0.5), (0.05, 0.48333332), (0.05, 0.48333332), (0.05, 0.5), (0.041666668, 0.5), (0.041666668, 0.48333332), (0.041666668, 0.48333332), (0.041666668, 0.5), (0.033333335, 0.5), (0.033333335, 0.48333332), (0.033333335, 0.48333332), (0.033333335, 0.5), (0.025, 0.5), (0.025, 0.48333332), (0.025, 0.48333332), (0.025, 0.5), (0.016666668, 0.5), (0.016666668, 0.48333332), (0.016666668, 0.48333332), (0.016666668, 0.5), (0.008333334, 0.5), (0.008333334, 0.48333332), (0.008333334, 0.48333332), (0.008333334, 0.5), (0, 0.5), (0, 0.48333332), (1, 0.5), (1, 0.51666665), (0.9916667, 0.51666665), (0.9916667, 0.5), (0.9916667, 0.5), (0.9916667, 0.51666665), (0.98333335, 0.51666665), (0.98333335, 0.5), (0.98333335, 0.5), (0.98333335, 0.51666665), (0.975, 0.51666665), (0.975, 0.5), (0.975, 0.5), (0.975, 0.51666665), (0.96666664, 0.51666665), (0.96666664, 0.5), (0.96666664, 0.5), (0.96666664, 0.51666665), (0.9583333, 0.51666665), (0.9583333, 0.5), (0.9583333, 0.5), (0.9583333, 0.51666665), (0.95, 0.51666665), (0.95, 0.5), (0.95, 0.5), (0.95, 0.51666665), (0.94166666, 0.51666665), (0.94166666, 0.5), (0.94166666, 0.5), (0.94166666, 0.51666665), (0.93333334, 0.51666665), (0.93333334, 0.5), (0.93333334, 0.5), (0.93333334, 0.51666665), (0.925, 0.51666665), (0.925, 0.5), (0.925, 0.5), (0.925, 0.51666665), (0.9166667, 0.51666665), (0.9166667, 0.5), (0.9166667, 0.5), (0.9166667, 0.51666665), (0.90833336, 0.51666665), (0.90833336, 0.5), (0.90833336, 0.5), (0.90833336, 0.51666665), (0.9, 0.51666665), (0.9, 0.5), (0.9, 0.5), (0.9, 0.51666665), (0.89166665, 0.51666665), (0.89166665, 0.5), (0.89166665, 0.5), (0.89166665, 0.51666665), (0.8833333, 0.51666665), (0.8833333, 0.5), (0.8833333, 0.5), (0.8833333, 0.51666665), (0.875, 0.51666665), (0.875, 0.5), (0.875, 0.5), (0.875, 0.51666665), (0.8666667, 0.51666665), (0.8666667, 0.5), (0.8666667, 0.5), (0.8666667, 0.51666665), (0.85833335, 0.51666665), (0.85833335, 0.5), (0.85833335, 0.5), (0.85833335, 0.51666665), (0.85, 0.51666665), (0.85, 0.5), (0.85, 0.5), (0.85, 0.51666665), (0.84166664, 0.51666665), (0.84166664, 0.5), (0.84166664, 0.5), (0.84166664, 0.51666665), (0.8333333, 0.51666665), (0.8333333, 0.5), (0.8333333, 0.5), (0.8333333, 0.51666665), (0.825, 0.51666665), (0.825, 0.5), (0.825, 0.5), (0.825, 0.51666665), (0.81666666, 0.51666665), (0.81666666, 0.5), (0.81666666, 0.5), (0.81666666, 0.51666665), (0.80833334, 0.51666665), (0.80833334, 0.5), (0.80833334, 0.5), (0.80833334, 0.51666665), (0.8, 0.51666665), (0.8, 0.5), (0.8, 0.5), (0.8, 0.51666665), (0.7916667, 0.51666665), (0.7916667, 0.5), (0.7916667, 0.5), (0.7916667, 0.51666665), (0.78333336, 0.51666665), (0.78333336, 0.5), (0.78333336, 0.5), (0.78333336, 0.51666665), (0.775, 0.51666665), (0.775, 0.5), (0.775, 0.5), (0.775, 0.51666665), (0.76666665, 0.51666665), (0.76666665, 0.5), (0.76666665, 0.5), (0.76666665, 0.51666665), (0.7583333, 0.51666665), (0.7583333, 0.5), (0.7583333, 0.5), (0.7583333, 0.51666665), (0.75, 0.51666665), (0.75, 0.5), (0.75, 0.5), (0.75, 0.51666665), (0.7416667, 0.51666665), (0.7416667, 0.5), (0.7416667, 0.5), (0.7416667, 0.51666665), (0.73333335, 0.51666665), (0.73333335, 0.5), (0.73333335, 0.5), (0.73333335, 0.51666665), (0.725, 0.51666665), (0.725, 0.5), (0.725, 0.5), (0.725, 0.51666665), (0.71666664, 0.51666665), (0.71666664, 0.5), (0.71666664, 0.5), (0.71666664, 0.51666665), (0.7083333, 0.51666665), (0.7083333, 0.5), (0.7083333, 0.5), (0.7083333, 0.51666665), (0.7, 0.51666665), (0.7, 0.5), (0.7, 0.5), (0.7, 0.51666665), (0.69166666, 0.51666665), (0.69166666, 0.5), (0.69166666, 0.5), (0.69166666, 0.51666665), (0.68333334, 0.51666665), (0.68333334, 0.5), (0.68333334, 0.5), (0.68333334, 0.51666665), (0.675, 0.51666665), (0.675, 0.5), (0.675, 0.5), (0.675, 0.51666665), (0.6666667, 0.51666665), (0.6666667, 0.5), (0.6666667, 0.5), (0.6666667, 0.51666665), (0.65833336, 0.51666665), (0.65833336, 0.5), (0.65833336, 0.5), (0.65833336, 0.51666665), (0.65, 0.51666665), (0.65, 0.5), (0.65, 0.5), (0.65, 0.51666665), (0.64166665, 0.51666665), (0.64166665, 0.5), (0.64166665, 0.5), (0.64166665, 0.51666665), (0.6333333, 0.51666665), (0.6333333, 0.5), (0.6333333, 0.5), (0.6333333, 0.51666665), (0.625, 0.51666665), (0.625, 0.5), (0.625, 0.5), (0.625, 0.51666665), (0.6166667, 0.51666665), (0.6166667, 0.5), (0.6166667, 0.5), (0.6166667, 0.51666665), (0.60833335, 0.51666665), (0.60833335, 0.5), (0.60833335, 0.5), (0.60833335, 0.51666665), (0.6, 0.51666665), (0.6, 0.5), (0.6, 0.5), (0.6, 0.51666665), (0.59166664, 0.51666665), (0.59166664, 0.5), (0.59166664, 0.5), (0.59166664, 0.51666665), (0.5833333, 0.51666665), (0.5833333, 0.5), (0.5833333, 0.5), (0.5833333, 0.51666665), (0.575, 0.51666665), (0.575, 0.5), (0.575, 0.5), (0.575, 0.51666665), (0.56666666, 0.51666665), (0.56666666, 0.5), (0.56666666, 0.5), (0.56666666, 0.51666665), (0.55833334, 0.51666665), (0.55833334, 0.5), (0.55833334, 0.5), (0.55833334, 0.51666665), (0.55, 0.51666665), (0.55, 0.5), (0.55, 0.5), (0.55, 0.51666665), (0.5416667, 0.51666665), (0.5416667, 0.5), (0.5416667, 0.5), (0.5416667, 0.51666665), (0.53333336, 0.51666665), (0.53333336, 0.5), (0.53333336, 0.5), (0.53333336, 0.51666665), (0.525, 0.51666665), (0.525, 0.5), (0.525, 0.5), (0.525, 0.51666665), (0.51666665, 0.51666665), (0.51666665, 0.5), (0.51666665, 0.5), (0.51666665, 0.51666665), (0.5083333, 0.51666665), (0.5083333, 0.5), (0.5083333, 0.5), (0.5083333, 0.51666665), (0.5, 0.51666665), (0.5, 0.5), (0.5, 0.5), (0.5, 0.51666665), (0.49166667, 0.51666665), (0.49166667, 0.5), (0.49166667, 0.5), (0.49166667, 0.51666665), (0.48333332, 0.51666665), (0.48333332, 0.5), (0.48333332, 0.5), (0.48333332, 0.51666665), (0.475, 0.51666665), (0.475, 0.5), (0.475, 0.5), (0.475, 0.51666665), (0.46666667, 0.51666665), (0.46666667, 0.5), (0.46666667, 0.5), (0.46666667, 0.51666665), (0.45833334, 0.51666665), (0.45833334, 0.5), (0.45833334, 0.5), (0.45833334, 0.51666665), (0.45, 0.51666665), (0.45, 0.5), (0.45, 0.5), (0.45, 0.51666665), (0.44166666, 0.51666665), (0.44166666, 0.5), (0.44166666, 0.5), (0.44166666, 0.51666665), (0.43333334, 0.51666665), (0.43333334, 0.5), (0.43333334, 0.5), (0.43333334, 0.51666665), (0.425, 0.51666665), (0.425, 0.5), (0.425, 0.5), (0.425, 0.51666665), (0.41666666, 0.51666665), (0.41666666, 0.5), (0.41666666, 0.5), (0.41666666, 0.51666665), (0.40833333, 0.51666665), (0.40833333, 0.5), (0.40833333, 0.5), (0.40833333, 0.51666665), (0.4, 0.51666665), (0.4, 0.5), (0.4, 0.5), (0.4, 0.51666665), (0.39166668, 0.51666665), (0.39166668, 0.5), (0.39166668, 0.5), (0.39166668, 0.51666665), (0.38333333, 0.51666665), (0.38333333, 0.5), (0.38333333, 0.5), (0.38333333, 0.51666665), (0.375, 0.51666665), (0.375, 0.5), (0.375, 0.5), (0.375, 0.51666665), (0.36666667, 0.51666665), (0.36666667, 0.5), (0.36666667, 0.5), (0.36666667, 0.51666665), (0.35833332, 0.51666665), (0.35833332, 0.5), (0.35833332, 0.5), (0.35833332, 0.51666665), (0.35, 0.51666665), (0.35, 0.5), (0.35, 0.5), (0.35, 0.51666665), (0.34166667, 0.51666665), (0.34166667, 0.5), (0.34166667, 0.5), (0.34166667, 0.51666665), (0.33333334, 0.51666665), (0.33333334, 0.5), (0.33333334, 0.5), (0.33333334, 0.51666665), (0.325, 0.51666665), (0.325, 0.5), (0.325, 0.5), (0.325, 0.51666665), (0.31666666, 0.51666665), (0.31666666, 0.5), (0.31666666, 0.5), (0.31666666, 0.51666665), (0.30833334, 0.51666665), (0.30833334, 0.5), (0.30833334, 0.5), (0.30833334, 0.51666665), (0.3, 0.51666665), (0.3, 0.5), (0.3, 0.5), (0.3, 0.51666665), (0.29166666, 0.51666665), (0.29166666, 0.5), (0.29166666, 0.5), (0.29166666, 0.51666665), (0.28333333, 0.51666665), (0.28333333, 0.5), (0.28333333, 0.5), (0.28333333, 0.51666665), (0.275, 0.51666665), (0.275, 0.5), (0.275, 0.5), (0.275, 0.51666665), (0.26666668, 0.51666665), (0.26666668, 0.5), (0.26666668, 0.5), (0.26666668, 0.51666665), (0.25833333, 0.51666665), (0.25833333, 0.5), (0.25833333, 0.5), (0.25833333, 0.51666665), (0.25, 0.51666665), (0.25, 0.5), (0.25, 0.5), (0.25, 0.51666665), (0.24166666, 0.51666665), (0.24166666, 0.5), (0.24166666, 0.5), (0.24166666, 0.51666665), (0.23333333, 0.51666665), (0.23333333, 0.5), (0.23333333, 0.5), (0.23333333, 0.51666665), (0.225, 0.51666665), (0.225, 0.5), (0.225, 0.5), (0.225, 0.51666665), (0.21666667, 0.51666665), (0.21666667, 0.5), (0.21666667, 0.5), (0.21666667, 0.51666665), (0.20833333, 0.51666665), (0.20833333, 0.5), (0.20833333, 0.5), (0.20833333, 0.51666665), (0.2, 0.51666665), (0.2, 0.5), (0.2, 0.5), (0.2, 0.51666665), (0.19166666, 0.51666665), (0.19166666, 0.5), (0.19166666, 0.5), (0.19166666, 0.51666665), (0.18333334, 0.51666665), (0.18333334, 0.5), (0.18333334, 0.5), (0.18333334, 0.51666665), (0.175, 0.51666665), (0.175, 0.5), (0.175, 0.5), (0.175, 0.51666665), (0.16666667, 0.51666665), (0.16666667, 0.5), (0.16666667, 0.5), (0.16666667, 0.51666665), (0.15833333, 0.51666665), (0.15833333, 0.5), (0.15833333, 0.5), (0.15833333, 0.51666665), (0.15, 0.51666665), (0.15, 0.5), (0.15, 0.5), (0.15, 0.51666665), (0.14166667, 0.51666665), (0.14166667, 0.5), (0.14166667, 0.5), (0.14166667, 0.51666665), (0.13333334, 0.51666665), (0.13333334, 0.5), (0.13333334, 0.5), (0.13333334, 0.51666665), (0.125, 0.51666665), (0.125, 0.5), (0.125, 0.5), (0.125, 0.51666665), (0.11666667, 0.51666665), (0.11666667, 0.5), (0.11666667, 0.5), (0.11666667, 0.51666665), (0.108333334, 0.51666665), (0.108333334, 0.5), (0.108333334, 0.5), (0.108333334, 0.51666665), (0.1, 0.51666665), (0.1, 0.5), (0.1, 0.5), (0.1, 0.51666665), (0.09166667, 0.51666665), (0.09166667, 0.5), (0.09166667, 0.5), (0.09166667, 0.51666665), (0.083333336, 0.51666665), (0.083333336, 0.5), (0.083333336, 0.5), (0.083333336, 0.51666665), (0.075, 0.51666665), (0.075, 0.5), (0.075, 0.5), (0.075, 0.51666665), (0.06666667, 0.51666665), (0.06666667, 0.5), (0.06666667, 0.5), (0.06666667, 0.51666665), (0.058333334, 0.51666665), (0.058333334, 0.5), (0.058333334, 0.5), (0.058333334, 0.51666665), (0.05, 0.51666665), (0.05, 0.5), (0.05, 0.5), (0.05, 0.51666665), (0.041666668, 0.51666665), (0.041666668, 0.5), (0.041666668, 0.5), (0.041666668, 0.51666665), (0.033333335, 0.51666665), (0.033333335, 0.5), (0.033333335, 0.5), (0.033333335, 0.51666665), (0.025, 0.51666665), (0.025, 0.5), (0.025, 0.5), (0.025, 0.51666665), (0.016666668, 0.51666665), (0.016666668, 0.5), (0.016666668, 0.5), (0.016666668, 0.51666665), (0.008333334, 0.51666665), (0.008333334, 0.5), (0.008333334, 0.5), (0.008333334, 0.51666665), (0, 0.51666665), (0, 0.5), (1, 0.51666665), (1, 0.53333336), (0.9916667, 0.53333336), (0.9916667, 0.51666665), (0.9916667, 0.51666665), (0.9916667, 0.53333336), (0.98333335, 0.53333336), (0.98333335, 0.51666665), (0.98333335, 0.51666665), (0.98333335, 0.53333336), (0.975, 0.53333336), (0.975, 0.51666665), (0.975, 0.51666665), (0.975, 0.53333336), (0.96666664, 0.53333336), (0.96666664, 0.51666665), (0.96666664, 0.51666665), (0.96666664, 0.53333336), (0.9583333, 0.53333336), (0.9583333, 0.51666665), (0.9583333, 0.51666665), (0.9583333, 0.53333336), (0.95, 0.53333336), (0.95, 0.51666665), (0.95, 0.51666665), (0.95, 0.53333336), (0.94166666, 0.53333336), (0.94166666, 0.51666665), (0.94166666, 0.51666665), (0.94166666, 0.53333336), (0.93333334, 0.53333336), (0.93333334, 0.51666665), (0.93333334, 0.51666665), (0.93333334, 0.53333336), (0.925, 0.53333336), (0.925, 0.51666665), (0.925, 0.51666665), (0.925, 0.53333336), (0.9166667, 0.53333336), (0.9166667, 0.51666665), (0.9166667, 0.51666665), (0.9166667, 0.53333336), (0.90833336, 0.53333336), (0.90833336, 0.51666665), (0.90833336, 0.51666665), (0.90833336, 0.53333336), (0.9, 0.53333336), (0.9, 0.51666665), (0.9, 0.51666665), (0.9, 0.53333336), (0.89166665, 0.53333336), (0.89166665, 0.51666665), (0.89166665, 0.51666665), (0.89166665, 0.53333336), (0.8833333, 0.53333336), (0.8833333, 0.51666665), (0.8833333, 0.51666665), (0.8833333, 0.53333336), (0.875, 0.53333336), (0.875, 0.51666665), (0.875, 0.51666665), (0.875, 0.53333336), (0.8666667, 0.53333336), (0.8666667, 0.51666665), (0.8666667, 0.51666665), (0.8666667, 0.53333336), (0.85833335, 0.53333336), (0.85833335, 0.51666665), (0.85833335, 0.51666665), (0.85833335, 0.53333336), (0.85, 0.53333336), (0.85, 0.51666665), (0.85, 0.51666665), (0.85, 0.53333336), (0.84166664, 0.53333336), (0.84166664, 0.51666665), (0.84166664, 0.51666665), (0.84166664, 0.53333336), (0.8333333, 0.53333336), (0.8333333, 0.51666665), (0.8333333, 0.51666665), (0.8333333, 0.53333336), (0.825, 0.53333336), (0.825, 0.51666665), (0.825, 0.51666665), (0.825, 0.53333336), (0.81666666, 0.53333336), (0.81666666, 0.51666665), (0.81666666, 0.51666665), (0.81666666, 0.53333336), (0.80833334, 0.53333336), (0.80833334, 0.51666665), (0.80833334, 0.51666665), (0.80833334, 0.53333336), (0.8, 0.53333336), (0.8, 0.51666665), (0.8, 0.51666665), (0.8, 0.53333336), (0.7916667, 0.53333336), (0.7916667, 0.51666665), (0.7916667, 0.51666665), (0.7916667, 0.53333336), (0.78333336, 0.53333336), (0.78333336, 0.51666665), (0.78333336, 0.51666665), (0.78333336, 0.53333336), (0.775, 0.53333336), (0.775, 0.51666665), (0.775, 0.51666665), (0.775, 0.53333336), (0.76666665, 0.53333336), (0.76666665, 0.51666665), (0.76666665, 0.51666665), (0.76666665, 0.53333336), (0.7583333, 0.53333336), (0.7583333, 0.51666665), (0.7583333, 0.51666665), (0.7583333, 0.53333336), (0.75, 0.53333336), (0.75, 0.51666665), (0.75, 0.51666665), (0.75, 0.53333336), (0.7416667, 0.53333336), (0.7416667, 0.51666665), (0.7416667, 0.51666665), (0.7416667, 0.53333336), (0.73333335, 0.53333336), (0.73333335, 0.51666665), (0.73333335, 0.51666665), (0.73333335, 0.53333336), (0.725, 0.53333336), (0.725, 0.51666665), (0.725, 0.51666665), (0.725, 0.53333336), (0.71666664, 0.53333336), (0.71666664, 0.51666665), (0.71666664, 0.51666665), (0.71666664, 0.53333336), (0.7083333, 0.53333336), (0.7083333, 0.51666665), (0.7083333, 0.51666665), (0.7083333, 0.53333336), (0.7, 0.53333336), (0.7, 0.51666665), (0.7, 0.51666665), (0.7, 0.53333336), (0.69166666, 0.53333336), (0.69166666, 0.51666665), (0.69166666, 0.51666665), (0.69166666, 0.53333336), (0.68333334, 0.53333336), (0.68333334, 0.51666665), (0.68333334, 0.51666665), (0.68333334, 0.53333336), (0.675, 0.53333336), (0.675, 0.51666665), (0.675, 0.51666665), (0.675, 0.53333336), (0.6666667, 0.53333336), (0.6666667, 0.51666665), (0.6666667, 0.51666665), (0.6666667, 0.53333336), (0.65833336, 0.53333336), (0.65833336, 0.51666665), (0.65833336, 0.51666665), (0.65833336, 0.53333336), (0.65, 0.53333336), (0.65, 0.51666665), (0.65, 0.51666665), (0.65, 0.53333336), (0.64166665, 0.53333336), (0.64166665, 0.51666665), (0.64166665, 0.51666665), (0.64166665, 0.53333336), (0.6333333, 0.53333336), (0.6333333, 0.51666665), (0.6333333, 0.51666665), (0.6333333, 0.53333336), (0.625, 0.53333336), (0.625, 0.51666665), (0.625, 0.51666665), (0.625, 0.53333336), (0.6166667, 0.53333336), (0.6166667, 0.51666665), (0.6166667, 0.51666665), (0.6166667, 0.53333336), (0.60833335, 0.53333336), (0.60833335, 0.51666665), (0.60833335, 0.51666665), (0.60833335, 0.53333336), (0.6, 0.53333336), (0.6, 0.51666665), (0.6, 0.51666665), (0.6, 0.53333336), (0.59166664, 0.53333336), (0.59166664, 0.51666665), (0.59166664, 0.51666665), (0.59166664, 0.53333336), (0.5833333, 0.53333336), (0.5833333, 0.51666665), (0.5833333, 0.51666665), (0.5833333, 0.53333336), (0.575, 0.53333336), (0.575, 0.51666665), (0.575, 0.51666665), (0.575, 0.53333336), (0.56666666, 0.53333336), (0.56666666, 0.51666665), (0.56666666, 0.51666665), (0.56666666, 0.53333336), (0.55833334, 0.53333336), (0.55833334, 0.51666665), (0.55833334, 0.51666665), (0.55833334, 0.53333336), (0.55, 0.53333336), (0.55, 0.51666665), (0.55, 0.51666665), (0.55, 0.53333336), (0.5416667, 0.53333336), (0.5416667, 0.51666665), (0.5416667, 0.51666665), (0.5416667, 0.53333336), (0.53333336, 0.53333336), (0.53333336, 0.51666665), (0.53333336, 0.51666665), (0.53333336, 0.53333336), (0.525, 0.53333336), (0.525, 0.51666665), (0.525, 0.51666665), (0.525, 0.53333336), (0.51666665, 0.53333336), (0.51666665, 0.51666665), (0.51666665, 0.51666665), (0.51666665, 0.53333336), (0.5083333, 0.53333336), (0.5083333, 0.51666665), (0.5083333, 0.51666665), (0.5083333, 0.53333336), (0.5, 0.53333336), (0.5, 0.51666665), (0.5, 0.51666665), (0.5, 0.53333336), (0.49166667, 0.53333336), (0.49166667, 0.51666665), (0.49166667, 0.51666665), (0.49166667, 0.53333336), (0.48333332, 0.53333336), (0.48333332, 0.51666665), (0.48333332, 0.51666665), (0.48333332, 0.53333336), (0.475, 0.53333336), (0.475, 0.51666665), (0.475, 0.51666665), (0.475, 0.53333336), (0.46666667, 0.53333336), (0.46666667, 0.51666665), (0.46666667, 0.51666665), (0.46666667, 0.53333336), (0.45833334, 0.53333336), (0.45833334, 0.51666665), (0.45833334, 0.51666665), (0.45833334, 0.53333336), (0.45, 0.53333336), (0.45, 0.51666665), (0.45, 0.51666665), (0.45, 0.53333336), (0.44166666, 0.53333336), (0.44166666, 0.51666665), (0.44166666, 0.51666665), (0.44166666, 0.53333336), (0.43333334, 0.53333336), (0.43333334, 0.51666665), (0.43333334, 0.51666665), (0.43333334, 0.53333336), (0.425, 0.53333336), (0.425, 0.51666665), (0.425, 0.51666665), (0.425, 0.53333336), (0.41666666, 0.53333336), (0.41666666, 0.51666665), (0.41666666, 0.51666665), (0.41666666, 0.53333336), (0.40833333, 0.53333336), (0.40833333, 0.51666665), (0.40833333, 0.51666665), (0.40833333, 0.53333336), (0.4, 0.53333336), (0.4, 0.51666665), (0.4, 0.51666665), (0.4, 0.53333336), (0.39166668, 0.53333336), (0.39166668, 0.51666665), (0.39166668, 0.51666665), (0.39166668, 0.53333336), (0.38333333, 0.53333336), (0.38333333, 0.51666665), (0.38333333, 0.51666665), (0.38333333, 0.53333336), (0.375, 0.53333336), (0.375, 0.51666665), (0.375, 0.51666665), (0.375, 0.53333336), (0.36666667, 0.53333336), (0.36666667, 0.51666665), (0.36666667, 0.51666665), (0.36666667, 0.53333336), (0.35833332, 0.53333336), (0.35833332, 0.51666665), (0.35833332, 0.51666665), (0.35833332, 0.53333336), (0.35, 0.53333336), (0.35, 0.51666665), (0.35, 0.51666665), (0.35, 0.53333336), (0.34166667, 0.53333336), (0.34166667, 0.51666665), (0.34166667, 0.51666665), (0.34166667, 0.53333336), (0.33333334, 0.53333336), (0.33333334, 0.51666665), (0.33333334, 0.51666665), (0.33333334, 0.53333336), (0.325, 0.53333336), (0.325, 0.51666665), (0.325, 0.51666665), (0.325, 0.53333336), (0.31666666, 0.53333336), (0.31666666, 0.51666665), (0.31666666, 0.51666665), (0.31666666, 0.53333336), (0.30833334, 0.53333336), (0.30833334, 0.51666665), (0.30833334, 0.51666665), (0.30833334, 0.53333336), (0.3, 0.53333336), (0.3, 0.51666665), (0.3, 0.51666665), (0.3, 0.53333336), (0.29166666, 0.53333336), (0.29166666, 0.51666665), (0.29166666, 0.51666665), (0.29166666, 0.53333336), (0.28333333, 0.53333336), (0.28333333, 0.51666665), (0.28333333, 0.51666665), (0.28333333, 0.53333336), (0.275, 0.53333336), (0.275, 0.51666665), (0.275, 0.51666665), (0.275, 0.53333336), (0.26666668, 0.53333336), (0.26666668, 0.51666665), (0.26666668, 0.51666665), (0.26666668, 0.53333336), (0.25833333, 0.53333336), (0.25833333, 0.51666665), (0.25833333, 0.51666665), (0.25833333, 0.53333336), (0.25, 0.53333336), (0.25, 0.51666665), (0.25, 0.51666665), (0.25, 0.53333336), (0.24166666, 0.53333336), (0.24166666, 0.51666665), (0.24166666, 0.51666665), (0.24166666, 0.53333336), (0.23333333, 0.53333336), (0.23333333, 0.51666665), (0.23333333, 0.51666665), (0.23333333, 0.53333336), (0.225, 0.53333336), (0.225, 0.51666665), (0.225, 0.51666665), (0.225, 0.53333336), (0.21666667, 0.53333336), (0.21666667, 0.51666665), (0.21666667, 0.51666665), (0.21666667, 0.53333336), (0.20833333, 0.53333336), (0.20833333, 0.51666665), (0.20833333, 0.51666665), (0.20833333, 0.53333336), (0.2, 0.53333336), (0.2, 0.51666665), (0.2, 0.51666665), (0.2, 0.53333336), (0.19166666, 0.53333336), (0.19166666, 0.51666665), (0.19166666, 0.51666665), (0.19166666, 0.53333336), (0.18333334, 0.53333336), (0.18333334, 0.51666665), (0.18333334, 0.51666665), (0.18333334, 0.53333336), (0.175, 0.53333336), (0.175, 0.51666665), (0.175, 0.51666665), (0.175, 0.53333336), (0.16666667, 0.53333336), (0.16666667, 0.51666665), (0.16666667, 0.51666665), (0.16666667, 0.53333336), (0.15833333, 0.53333336), (0.15833333, 0.51666665), (0.15833333, 0.51666665), (0.15833333, 0.53333336), (0.15, 0.53333336), (0.15, 0.51666665), (0.15, 0.51666665), (0.15, 0.53333336), (0.14166667, 0.53333336), (0.14166667, 0.51666665), (0.14166667, 0.51666665), (0.14166667, 0.53333336), (0.13333334, 0.53333336), (0.13333334, 0.51666665), (0.13333334, 0.51666665), (0.13333334, 0.53333336), (0.125, 0.53333336), (0.125, 0.51666665), (0.125, 0.51666665), (0.125, 0.53333336), (0.11666667, 0.53333336), (0.11666667, 0.51666665), (0.11666667, 0.51666665), (0.11666667, 0.53333336), (0.108333334, 0.53333336), (0.108333334, 0.51666665), (0.108333334, 0.51666665), (0.108333334, 0.53333336), (0.1, 0.53333336), (0.1, 0.51666665), (0.1, 0.51666665), (0.1, 0.53333336), (0.09166667, 0.53333336), (0.09166667, 0.51666665), (0.09166667, 0.51666665), (0.09166667, 0.53333336), (0.083333336, 0.53333336), (0.083333336, 0.51666665), (0.083333336, 0.51666665), (0.083333336, 0.53333336), (0.075, 0.53333336), (0.075, 0.51666665), (0.075, 0.51666665), (0.075, 0.53333336), (0.06666667, 0.53333336), (0.06666667, 0.51666665), (0.06666667, 0.51666665), (0.06666667, 0.53333336), (0.058333334, 0.53333336), (0.058333334, 0.51666665), (0.058333334, 0.51666665), (0.058333334, 0.53333336), (0.05, 0.53333336), (0.05, 0.51666665), (0.05, 0.51666665), (0.05, 0.53333336), (0.041666668, 0.53333336), (0.041666668, 0.51666665), (0.041666668, 0.51666665), (0.041666668, 0.53333336), (0.033333335, 0.53333336), (0.033333335, 0.51666665), (0.033333335, 0.51666665), (0.033333335, 0.53333336), (0.025, 0.53333336), (0.025, 0.51666665), (0.025, 0.51666665), (0.025, 0.53333336), (0.016666668, 0.53333336), (0.016666668, 0.51666665), (0.016666668, 0.51666665), (0.016666668, 0.53333336), (0.008333334, 0.53333336), (0.008333334, 0.51666665), (0.008333334, 0.51666665), (0.008333334, 0.53333336), (0, 0.53333336), (0, 0.51666665), (1, 0.53333336), (1, 0.55), (0.9916667, 0.55), (0.9916667, 0.53333336), (0.9916667, 0.53333336), (0.9916667, 0.55), (0.98333335, 0.55), (0.98333335, 0.53333336), (0.98333335, 0.53333336), (0.98333335, 0.55), (0.975, 0.55), (0.975, 0.53333336), (0.975, 0.53333336), (0.975, 0.55), (0.96666664, 0.55), (0.96666664, 0.53333336), (0.96666664, 0.53333336), (0.96666664, 0.55), (0.9583333, 0.55), (0.9583333, 0.53333336), (0.9583333, 0.53333336), (0.9583333, 0.55), (0.95, 0.55), (0.95, 0.53333336), (0.95, 0.53333336), (0.95, 0.55), (0.94166666, 0.55), (0.94166666, 0.53333336), (0.94166666, 0.53333336), (0.94166666, 0.55), (0.93333334, 0.55), (0.93333334, 0.53333336), (0.93333334, 0.53333336), (0.93333334, 0.55), (0.925, 0.55), (0.925, 0.53333336), (0.925, 0.53333336), (0.925, 0.55), (0.9166667, 0.55), (0.9166667, 0.53333336), (0.9166667, 0.53333336), (0.9166667, 0.55), (0.90833336, 0.55), (0.90833336, 0.53333336), (0.90833336, 0.53333336), (0.90833336, 0.55), (0.9, 0.55), (0.9, 0.53333336), (0.9, 0.53333336), (0.9, 0.55), (0.89166665, 0.55), (0.89166665, 0.53333336), (0.89166665, 0.53333336), (0.89166665, 0.55), (0.8833333, 0.55), (0.8833333, 0.53333336), (0.8833333, 0.53333336), (0.8833333, 0.55), (0.875, 0.55), (0.875, 0.53333336), (0.875, 0.53333336), (0.875, 0.55), (0.8666667, 0.55), (0.8666667, 0.53333336), (0.8666667, 0.53333336), (0.8666667, 0.55), (0.85833335, 0.55), (0.85833335, 0.53333336), (0.85833335, 0.53333336), (0.85833335, 0.55), (0.85, 0.55), (0.85, 0.53333336), (0.85, 0.53333336), (0.85, 0.55), (0.84166664, 0.55), (0.84166664, 0.53333336), (0.84166664, 0.53333336), (0.84166664, 0.55), (0.8333333, 0.55), (0.8333333, 0.53333336), (0.8333333, 0.53333336), (0.8333333, 0.55), (0.825, 0.55), (0.825, 0.53333336), (0.825, 0.53333336), (0.825, 0.55), (0.81666666, 0.55), (0.81666666, 0.53333336), (0.81666666, 0.53333336), (0.81666666, 0.55), (0.80833334, 0.55), (0.80833334, 0.53333336), (0.80833334, 0.53333336), (0.80833334, 0.55), (0.8, 0.55), (0.8, 0.53333336), (0.8, 0.53333336), (0.8, 0.55), (0.7916667, 0.55), (0.7916667, 0.53333336), (0.7916667, 0.53333336), (0.7916667, 0.55), (0.78333336, 0.55), (0.78333336, 0.53333336), (0.78333336, 0.53333336), (0.78333336, 0.55), (0.775, 0.55), (0.775, 0.53333336), (0.775, 0.53333336), (0.775, 0.55), (0.76666665, 0.55), (0.76666665, 0.53333336), (0.76666665, 0.53333336), (0.76666665, 0.55), (0.7583333, 0.55), (0.7583333, 0.53333336), (0.7583333, 0.53333336), (0.7583333, 0.55), (0.75, 0.55), (0.75, 0.53333336), (0.75, 0.53333336), (0.75, 0.55), (0.7416667, 0.55), (0.7416667, 0.53333336), (0.7416667, 0.53333336), (0.7416667, 0.55), (0.73333335, 0.55), (0.73333335, 0.53333336), (0.73333335, 0.53333336), (0.73333335, 0.55), (0.725, 0.55), (0.725, 0.53333336), (0.725, 0.53333336), (0.725, 0.55), (0.71666664, 0.55), (0.71666664, 0.53333336), (0.71666664, 0.53333336), (0.71666664, 0.55), (0.7083333, 0.55), (0.7083333, 0.53333336), (0.7083333, 0.53333336), (0.7083333, 0.55), (0.7, 0.55), (0.7, 0.53333336), (0.7, 0.53333336), (0.7, 0.55), (0.69166666, 0.55), (0.69166666, 0.53333336), (0.69166666, 0.53333336), (0.69166666, 0.55), (0.68333334, 0.55), (0.68333334, 0.53333336), (0.68333334, 0.53333336), (0.68333334, 0.55), (0.675, 0.55), (0.675, 0.53333336), (0.675, 0.53333336), (0.675, 0.55), (0.6666667, 0.55), (0.6666667, 0.53333336), (0.6666667, 0.53333336), (0.6666667, 0.55), (0.65833336, 0.55), (0.65833336, 0.53333336), (0.65833336, 0.53333336), (0.65833336, 0.55), (0.65, 0.55), (0.65, 0.53333336), (0.65, 0.53333336), (0.65, 0.55), (0.64166665, 0.55), (0.64166665, 0.53333336), (0.64166665, 0.53333336), (0.64166665, 0.55), (0.6333333, 0.55), (0.6333333, 0.53333336), (0.6333333, 0.53333336), (0.6333333, 0.55), (0.625, 0.55), (0.625, 0.53333336), (0.625, 0.53333336), (0.625, 0.55), (0.6166667, 0.55), (0.6166667, 0.53333336), (0.6166667, 0.53333336), (0.6166667, 0.55), (0.60833335, 0.55), (0.60833335, 0.53333336), (0.60833335, 0.53333336), (0.60833335, 0.55), (0.6, 0.55), (0.6, 0.53333336), (0.6, 0.53333336), (0.6, 0.55), (0.59166664, 0.55), (0.59166664, 0.53333336), (0.59166664, 0.53333336), (0.59166664, 0.55), (0.5833333, 0.55), (0.5833333, 0.53333336), (0.5833333, 0.53333336), (0.5833333, 0.55), (0.575, 0.55), (0.575, 0.53333336), (0.575, 0.53333336), (0.575, 0.55), (0.56666666, 0.55), (0.56666666, 0.53333336), (0.56666666, 0.53333336), (0.56666666, 0.55), (0.55833334, 0.55), (0.55833334, 0.53333336), (0.55833334, 0.53333336), (0.55833334, 0.55), (0.55, 0.55), (0.55, 0.53333336), (0.55, 0.53333336), (0.55, 0.55), (0.5416667, 0.55), (0.5416667, 0.53333336), (0.5416667, 0.53333336), (0.5416667, 0.55), (0.53333336, 0.55), (0.53333336, 0.53333336), (0.53333336, 0.53333336), (0.53333336, 0.55), (0.525, 0.55), (0.525, 0.53333336), (0.525, 0.53333336), (0.525, 0.55), (0.51666665, 0.55), (0.51666665, 0.53333336), (0.51666665, 0.53333336), (0.51666665, 0.55), (0.5083333, 0.55), (0.5083333, 0.53333336), (0.5083333, 0.53333336), (0.5083333, 0.55), (0.5, 0.55), (0.5, 0.53333336), (0.5, 0.53333336), (0.5, 0.55), (0.49166667, 0.55), (0.49166667, 0.53333336), (0.49166667, 0.53333336), (0.49166667, 0.55), (0.48333332, 0.55), (0.48333332, 0.53333336), (0.48333332, 0.53333336), (0.48333332, 0.55), (0.475, 0.55), (0.475, 0.53333336), (0.475, 0.53333336), (0.475, 0.55), (0.46666667, 0.55), (0.46666667, 0.53333336), (0.46666667, 0.53333336), (0.46666667, 0.55), (0.45833334, 0.55), (0.45833334, 0.53333336), (0.45833334, 0.53333336), (0.45833334, 0.55), (0.45, 0.55), (0.45, 0.53333336), (0.45, 0.53333336), (0.45, 0.55), (0.44166666, 0.55), (0.44166666, 0.53333336), (0.44166666, 0.53333336), (0.44166666, 0.55), (0.43333334, 0.55), (0.43333334, 0.53333336), (0.43333334, 0.53333336), (0.43333334, 0.55), (0.425, 0.55), (0.425, 0.53333336), (0.425, 0.53333336), (0.425, 0.55), (0.41666666, 0.55), (0.41666666, 0.53333336), (0.41666666, 0.53333336), (0.41666666, 0.55), (0.40833333, 0.55), (0.40833333, 0.53333336), (0.40833333, 0.53333336), (0.40833333, 0.55), (0.4, 0.55), (0.4, 0.53333336), (0.4, 0.53333336), (0.4, 0.55), (0.39166668, 0.55), (0.39166668, 0.53333336), (0.39166668, 0.53333336), (0.39166668, 0.55), (0.38333333, 0.55), (0.38333333, 0.53333336), (0.38333333, 0.53333336), (0.38333333, 0.55), (0.375, 0.55), (0.375, 0.53333336), (0.375, 0.53333336), (0.375, 0.55), (0.36666667, 0.55), (0.36666667, 0.53333336), (0.36666667, 0.53333336), (0.36666667, 0.55), (0.35833332, 0.55), (0.35833332, 0.53333336), (0.35833332, 0.53333336), (0.35833332, 0.55), (0.35, 0.55), (0.35, 0.53333336), (0.35, 0.53333336), (0.35, 0.55), (0.34166667, 0.55), (0.34166667, 0.53333336), (0.34166667, 0.53333336), (0.34166667, 0.55), (0.33333334, 0.55), (0.33333334, 0.53333336), (0.33333334, 0.53333336), (0.33333334, 0.55), (0.325, 0.55), (0.325, 0.53333336), (0.325, 0.53333336), (0.325, 0.55), (0.31666666, 0.55), (0.31666666, 0.53333336), (0.31666666, 0.53333336), (0.31666666, 0.55), (0.30833334, 0.55), (0.30833334, 0.53333336), (0.30833334, 0.53333336), (0.30833334, 0.55), (0.3, 0.55), (0.3, 0.53333336), (0.3, 0.53333336), (0.3, 0.55), (0.29166666, 0.55), (0.29166666, 0.53333336), (0.29166666, 0.53333336), (0.29166666, 0.55), (0.28333333, 0.55), (0.28333333, 0.53333336), (0.28333333, 0.53333336), (0.28333333, 0.55), (0.275, 0.55), (0.275, 0.53333336), (0.275, 0.53333336), (0.275, 0.55), (0.26666668, 0.55), (0.26666668, 0.53333336), (0.26666668, 0.53333336), (0.26666668, 0.55), (0.25833333, 0.55), (0.25833333, 0.53333336), (0.25833333, 0.53333336), (0.25833333, 0.55), (0.25, 0.55), (0.25, 0.53333336), (0.25, 0.53333336), (0.25, 0.55), (0.24166666, 0.55), (0.24166666, 0.53333336), (0.24166666, 0.53333336), (0.24166666, 0.55), (0.23333333, 0.55), (0.23333333, 0.53333336), (0.23333333, 0.53333336), (0.23333333, 0.55), (0.225, 0.55), (0.225, 0.53333336), (0.225, 0.53333336), (0.225, 0.55), (0.21666667, 0.55), (0.21666667, 0.53333336), (0.21666667, 0.53333336), (0.21666667, 0.55), (0.20833333, 0.55), (0.20833333, 0.53333336), (0.20833333, 0.53333336), (0.20833333, 0.55), (0.2, 0.55), (0.2, 0.53333336), (0.2, 0.53333336), (0.2, 0.55), (0.19166666, 0.55), (0.19166666, 0.53333336), (0.19166666, 0.53333336), (0.19166666, 0.55), (0.18333334, 0.55), (0.18333334, 0.53333336), (0.18333334, 0.53333336), (0.18333334, 0.55), (0.175, 0.55), (0.175, 0.53333336), (0.175, 0.53333336), (0.175, 0.55), (0.16666667, 0.55), (0.16666667, 0.53333336), (0.16666667, 0.53333336), (0.16666667, 0.55), (0.15833333, 0.55), (0.15833333, 0.53333336), (0.15833333, 0.53333336), (0.15833333, 0.55), (0.15, 0.55), (0.15, 0.53333336), (0.15, 0.53333336), (0.15, 0.55), (0.14166667, 0.55), (0.14166667, 0.53333336), (0.14166667, 0.53333336), (0.14166667, 0.55), (0.13333334, 0.55), (0.13333334, 0.53333336), (0.13333334, 0.53333336), (0.13333334, 0.55), (0.125, 0.55), (0.125, 0.53333336), (0.125, 0.53333336), (0.125, 0.55), (0.11666667, 0.55), (0.11666667, 0.53333336), (0.11666667, 0.53333336), (0.11666667, 0.55), (0.108333334, 0.55), (0.108333334, 0.53333336), (0.108333334, 0.53333336), (0.108333334, 0.55), (0.1, 0.55), (0.1, 0.53333336), (0.1, 0.53333336), (0.1, 0.55), (0.09166667, 0.55), (0.09166667, 0.53333336), (0.09166667, 0.53333336), (0.09166667, 0.55), (0.083333336, 0.55), (0.083333336, 0.53333336), (0.083333336, 0.53333336), (0.083333336, 0.55), (0.075, 0.55), (0.075, 0.53333336), (0.075, 0.53333336), (0.075, 0.55), (0.06666667, 0.55), (0.06666667, 0.53333336), (0.06666667, 0.53333336), (0.06666667, 0.55), (0.058333334, 0.55), (0.058333334, 0.53333336), (0.058333334, 0.53333336), (0.058333334, 0.55), (0.05, 0.55), (0.05, 0.53333336), (0.05, 0.53333336), (0.05, 0.55), (0.041666668, 0.55), (0.041666668, 0.53333336), (0.041666668, 0.53333336), (0.041666668, 0.55), (0.033333335, 0.55), (0.033333335, 0.53333336), (0.033333335, 0.53333336), (0.033333335, 0.55), (0.025, 0.55), (0.025, 0.53333336), (0.025, 0.53333336), (0.025, 0.55), (0.016666668, 0.55), (0.016666668, 0.53333336), (0.016666668, 0.53333336), (0.016666668, 0.55), (0.008333334, 0.55), (0.008333334, 0.53333336), (0.008333334, 0.53333336), (0.008333334, 0.55), (0, 0.55), (0, 0.53333336), (1, 0.55), (1, 0.56666666), (0.9916667, 0.56666666), (0.9916667, 0.55), (0.9916667, 0.55), (0.9916667, 0.56666666), (0.98333335, 0.56666666), (0.98333335, 0.55), (0.98333335, 0.55), (0.98333335, 0.56666666), (0.975, 0.56666666), (0.975, 0.55), (0.975, 0.55), (0.975, 0.56666666), (0.96666664, 0.56666666), (0.96666664, 0.55), (0.96666664, 0.55), (0.96666664, 0.56666666), (0.9583333, 0.56666666), (0.9583333, 0.55), (0.9583333, 0.55), (0.9583333, 0.56666666), (0.95, 0.56666666), (0.95, 0.55), (0.95, 0.55), (0.95, 0.56666666), (0.94166666, 0.56666666), (0.94166666, 0.55), (0.94166666, 0.55), (0.94166666, 0.56666666), (0.93333334, 0.56666666), (0.93333334, 0.55), (0.93333334, 0.55), (0.93333334, 0.56666666), (0.925, 0.56666666), (0.925, 0.55), (0.925, 0.55), (0.925, 0.56666666), (0.9166667, 0.56666666), (0.9166667, 0.55), (0.9166667, 0.55), (0.9166667, 0.56666666), (0.90833336, 0.56666666), (0.90833336, 0.55), (0.90833336, 0.55), (0.90833336, 0.56666666), (0.9, 0.56666666), (0.9, 0.55), (0.9, 0.55), (0.9, 0.56666666), (0.89166665, 0.56666666), (0.89166665, 0.55), (0.89166665, 0.55), (0.89166665, 0.56666666), (0.8833333, 0.56666666), (0.8833333, 0.55), (0.8833333, 0.55), (0.8833333, 0.56666666), (0.875, 0.56666666), (0.875, 0.55), (0.875, 0.55), (0.875, 0.56666666), (0.8666667, 0.56666666), (0.8666667, 0.55), (0.8666667, 0.55), (0.8666667, 0.56666666), (0.85833335, 0.56666666), (0.85833335, 0.55), (0.85833335, 0.55), (0.85833335, 0.56666666), (0.85, 0.56666666), (0.85, 0.55), (0.85, 0.55), (0.85, 0.56666666), (0.84166664, 0.56666666), (0.84166664, 0.55), (0.84166664, 0.55), (0.84166664, 0.56666666), (0.8333333, 0.56666666), (0.8333333, 0.55), (0.8333333, 0.55), (0.8333333, 0.56666666), (0.825, 0.56666666), (0.825, 0.55), (0.825, 0.55), (0.825, 0.56666666), (0.81666666, 0.56666666), (0.81666666, 0.55), (0.81666666, 0.55), (0.81666666, 0.56666666), (0.80833334, 0.56666666), (0.80833334, 0.55), (0.80833334, 0.55), (0.80833334, 0.56666666), (0.8, 0.56666666), (0.8, 0.55), (0.8, 0.55), (0.8, 0.56666666), (0.7916667, 0.56666666), (0.7916667, 0.55), (0.7916667, 0.55), (0.7916667, 0.56666666), (0.78333336, 0.56666666), (0.78333336, 0.55), (0.78333336, 0.55), (0.78333336, 0.56666666), (0.775, 0.56666666), (0.775, 0.55), (0.775, 0.55), (0.775, 0.56666666), (0.76666665, 0.56666666), (0.76666665, 0.55), (0.76666665, 0.55), (0.76666665, 0.56666666), (0.7583333, 0.56666666), (0.7583333, 0.55), (0.7583333, 0.55), (0.7583333, 0.56666666), (0.75, 0.56666666), (0.75, 0.55), (0.75, 0.55), (0.75, 0.56666666), (0.7416667, 0.56666666), (0.7416667, 0.55), (0.7416667, 0.55), (0.7416667, 0.56666666), (0.73333335, 0.56666666), (0.73333335, 0.55), (0.73333335, 0.55), (0.73333335, 0.56666666), (0.725, 0.56666666), (0.725, 0.55), (0.725, 0.55), (0.725, 0.56666666), (0.71666664, 0.56666666), (0.71666664, 0.55), (0.71666664, 0.55), (0.71666664, 0.56666666), (0.7083333, 0.56666666), (0.7083333, 0.55), (0.7083333, 0.55), (0.7083333, 0.56666666), (0.7, 0.56666666), (0.7, 0.55), (0.7, 0.55), (0.7, 0.56666666), (0.69166666, 0.56666666), (0.69166666, 0.55), (0.69166666, 0.55), (0.69166666, 0.56666666), (0.68333334, 0.56666666), (0.68333334, 0.55), (0.68333334, 0.55), (0.68333334, 0.56666666), (0.675, 0.56666666), (0.675, 0.55), (0.675, 0.55), (0.675, 0.56666666), (0.6666667, 0.56666666), (0.6666667, 0.55), (0.6666667, 0.55), (0.6666667, 0.56666666), (0.65833336, 0.56666666), (0.65833336, 0.55), (0.65833336, 0.55), (0.65833336, 0.56666666), (0.65, 0.56666666), (0.65, 0.55), (0.65, 0.55), (0.65, 0.56666666), (0.64166665, 0.56666666), (0.64166665, 0.55), (0.64166665, 0.55), (0.64166665, 0.56666666), (0.6333333, 0.56666666), (0.6333333, 0.55), (0.6333333, 0.55), (0.6333333, 0.56666666), (0.625, 0.56666666), (0.625, 0.55), (0.625, 0.55), (0.625, 0.56666666), (0.6166667, 0.56666666), (0.6166667, 0.55), (0.6166667, 0.55), (0.6166667, 0.56666666), (0.60833335, 0.56666666), (0.60833335, 0.55), (0.60833335, 0.55), (0.60833335, 0.56666666), (0.6, 0.56666666), (0.6, 0.55), (0.6, 0.55), (0.6, 0.56666666), (0.59166664, 0.56666666), (0.59166664, 0.55), (0.59166664, 0.55), (0.59166664, 0.56666666), (0.5833333, 0.56666666), (0.5833333, 0.55), (0.5833333, 0.55), (0.5833333, 0.56666666), (0.575, 0.56666666), (0.575, 0.55), (0.575, 0.55), (0.575, 0.56666666), (0.56666666, 0.56666666), (0.56666666, 0.55), (0.56666666, 0.55), (0.56666666, 0.56666666), (0.55833334, 0.56666666), (0.55833334, 0.55), (0.55833334, 0.55), (0.55833334, 0.56666666), (0.55, 0.56666666), (0.55, 0.55), (0.55, 0.55), (0.55, 0.56666666), (0.5416667, 0.56666666), (0.5416667, 0.55), (0.5416667, 0.55), (0.5416667, 0.56666666), (0.53333336, 0.56666666), (0.53333336, 0.55), (0.53333336, 0.55), (0.53333336, 0.56666666), (0.525, 0.56666666), (0.525, 0.55), (0.525, 0.55), (0.525, 0.56666666), (0.51666665, 0.56666666), (0.51666665, 0.55), (0.51666665, 0.55), (0.51666665, 0.56666666), (0.5083333, 0.56666666), (0.5083333, 0.55), (0.5083333, 0.55), (0.5083333, 0.56666666), (0.5, 0.56666666), (0.5, 0.55), (0.5, 0.55), (0.5, 0.56666666), (0.49166667, 0.56666666), (0.49166667, 0.55), (0.49166667, 0.55), (0.49166667, 0.56666666), (0.48333332, 0.56666666), (0.48333332, 0.55), (0.48333332, 0.55), (0.48333332, 0.56666666), (0.475, 0.56666666), (0.475, 0.55), (0.475, 0.55), (0.475, 0.56666666), (0.46666667, 0.56666666), (0.46666667, 0.55), (0.46666667, 0.55), (0.46666667, 0.56666666), (0.45833334, 0.56666666), (0.45833334, 0.55), (0.45833334, 0.55), (0.45833334, 0.56666666), (0.45, 0.56666666), (0.45, 0.55), (0.45, 0.55), (0.45, 0.56666666), (0.44166666, 0.56666666), (0.44166666, 0.55), (0.44166666, 0.55), (0.44166666, 0.56666666), (0.43333334, 0.56666666), (0.43333334, 0.55), (0.43333334, 0.55), (0.43333334, 0.56666666), (0.425, 0.56666666), (0.425, 0.55), (0.425, 0.55), (0.425, 0.56666666), (0.41666666, 0.56666666), (0.41666666, 0.55), (0.41666666, 0.55), (0.41666666, 0.56666666), (0.40833333, 0.56666666), (0.40833333, 0.55), (0.40833333, 0.55), (0.40833333, 0.56666666), (0.4, 0.56666666), (0.4, 0.55), (0.4, 0.55), (0.4, 0.56666666), (0.39166668, 0.56666666), (0.39166668, 0.55), (0.39166668, 0.55), (0.39166668, 0.56666666), (0.38333333, 0.56666666), (0.38333333, 0.55), (0.38333333, 0.55), (0.38333333, 0.56666666), (0.375, 0.56666666), (0.375, 0.55), (0.375, 0.55), (0.375, 0.56666666), (0.36666667, 0.56666666), (0.36666667, 0.55), (0.36666667, 0.55), (0.36666667, 0.56666666), (0.35833332, 0.56666666), (0.35833332, 0.55), (0.35833332, 0.55), (0.35833332, 0.56666666), (0.35, 0.56666666), (0.35, 0.55), (0.35, 0.55), (0.35, 0.56666666), (0.34166667, 0.56666666), (0.34166667, 0.55), (0.34166667, 0.55), (0.34166667, 0.56666666), (0.33333334, 0.56666666), (0.33333334, 0.55), (0.33333334, 0.55), (0.33333334, 0.56666666), (0.325, 0.56666666), (0.325, 0.55), (0.325, 0.55), (0.325, 0.56666666), (0.31666666, 0.56666666), (0.31666666, 0.55), (0.31666666, 0.55), (0.31666666, 0.56666666), (0.30833334, 0.56666666), (0.30833334, 0.55), (0.30833334, 0.55), (0.30833334, 0.56666666), (0.3, 0.56666666), (0.3, 0.55), (0.3, 0.55), (0.3, 0.56666666), (0.29166666, 0.56666666), (0.29166666, 0.55), (0.29166666, 0.55), (0.29166666, 0.56666666), (0.28333333, 0.56666666), (0.28333333, 0.55), (0.28333333, 0.55), (0.28333333, 0.56666666), (0.275, 0.56666666), (0.275, 0.55), (0.275, 0.55), (0.275, 0.56666666), (0.26666668, 0.56666666), (0.26666668, 0.55), (0.26666668, 0.55), (0.26666668, 0.56666666), (0.25833333, 0.56666666), (0.25833333, 0.55), (0.25833333, 0.55), (0.25833333, 0.56666666), (0.25, 0.56666666), (0.25, 0.55), (0.25, 0.55), (0.25, 0.56666666), (0.24166666, 0.56666666), (0.24166666, 0.55), (0.24166666, 0.55), (0.24166666, 0.56666666), (0.23333333, 0.56666666), (0.23333333, 0.55), (0.23333333, 0.55), (0.23333333, 0.56666666), (0.225, 0.56666666), (0.225, 0.55), (0.225, 0.55), (0.225, 0.56666666), (0.21666667, 0.56666666), (0.21666667, 0.55), (0.21666667, 0.55), (0.21666667, 0.56666666), (0.20833333, 0.56666666), (0.20833333, 0.55), (0.20833333, 0.55), (0.20833333, 0.56666666), (0.2, 0.56666666), (0.2, 0.55), (0.2, 0.55), (0.2, 0.56666666), (0.19166666, 0.56666666), (0.19166666, 0.55), (0.19166666, 0.55), (0.19166666, 0.56666666), (0.18333334, 0.56666666), (0.18333334, 0.55), (0.18333334, 0.55), (0.18333334, 0.56666666), (0.175, 0.56666666), (0.175, 0.55), (0.175, 0.55), (0.175, 0.56666666), (0.16666667, 0.56666666), (0.16666667, 0.55), (0.16666667, 0.55), (0.16666667, 0.56666666), (0.15833333, 0.56666666), (0.15833333, 0.55), (0.15833333, 0.55), (0.15833333, 0.56666666), (0.15, 0.56666666), (0.15, 0.55), (0.15, 0.55), (0.15, 0.56666666), (0.14166667, 0.56666666), (0.14166667, 0.55), (0.14166667, 0.55), (0.14166667, 0.56666666), (0.13333334, 0.56666666), (0.13333334, 0.55), (0.13333334, 0.55), (0.13333334, 0.56666666), (0.125, 0.56666666), (0.125, 0.55), (0.125, 0.55), (0.125, 0.56666666), (0.11666667, 0.56666666), (0.11666667, 0.55), (0.11666667, 0.55), (0.11666667, 0.56666666), (0.108333334, 0.56666666), (0.108333334, 0.55), (0.108333334, 0.55), (0.108333334, 0.56666666), (0.1, 0.56666666), (0.1, 0.55), (0.1, 0.55), (0.1, 0.56666666), (0.09166667, 0.56666666), (0.09166667, 0.55), (0.09166667, 0.55), (0.09166667, 0.56666666), (0.083333336, 0.56666666), (0.083333336, 0.55), (0.083333336, 0.55), (0.083333336, 0.56666666), (0.075, 0.56666666), (0.075, 0.55), (0.075, 0.55), (0.075, 0.56666666), (0.06666667, 0.56666666), (0.06666667, 0.55), (0.06666667, 0.55), (0.06666667, 0.56666666), (0.058333334, 0.56666666), (0.058333334, 0.55), (0.058333334, 0.55), (0.058333334, 0.56666666), (0.05, 0.56666666), (0.05, 0.55), (0.05, 0.55), (0.05, 0.56666666), (0.041666668, 0.56666666), (0.041666668, 0.55), (0.041666668, 0.55), (0.041666668, 0.56666666), (0.033333335, 0.56666666), (0.033333335, 0.55), (0.033333335, 0.55), (0.033333335, 0.56666666), (0.025, 0.56666666), (0.025, 0.55), (0.025, 0.55), (0.025, 0.56666666), (0.016666668, 0.56666666), (0.016666668, 0.55), (0.016666668, 0.55), (0.016666668, 0.56666666), (0.008333334, 0.56666666), (0.008333334, 0.55), (0.008333334, 0.55), (0.008333334, 0.56666666), (0, 0.56666666), (0, 0.55), (1, 0.56666666), (1, 0.5833333), (0.9916667, 0.5833333), (0.9916667, 0.56666666), (0.9916667, 0.56666666), (0.9916667, 0.5833333), (0.98333335, 0.5833333), (0.98333335, 0.56666666), (0.98333335, 0.56666666), (0.98333335, 0.5833333), (0.975, 0.5833333), (0.975, 0.56666666), (0.975, 0.56666666), (0.975, 0.5833333), (0.96666664, 0.5833333), (0.96666664, 0.56666666), (0.96666664, 0.56666666), (0.96666664, 0.5833333), (0.9583333, 0.5833333), (0.9583333, 0.56666666), (0.9583333, 0.56666666), (0.9583333, 0.5833333), (0.95, 0.5833333), (0.95, 0.56666666), (0.95, 0.56666666), (0.95, 0.5833333), (0.94166666, 0.5833333), (0.94166666, 0.56666666), (0.94166666, 0.56666666), (0.94166666, 0.5833333), (0.93333334, 0.5833333), (0.93333334, 0.56666666), (0.93333334, 0.56666666), (0.93333334, 0.5833333), (0.925, 0.5833333), (0.925, 0.56666666), (0.925, 0.56666666), (0.925, 0.5833333), (0.9166667, 0.5833333), (0.9166667, 0.56666666), (0.9166667, 0.56666666), (0.9166667, 0.5833333), (0.90833336, 0.5833333), (0.90833336, 0.56666666), (0.90833336, 0.56666666), (0.90833336, 0.5833333), (0.9, 0.5833333), (0.9, 0.56666666), (0.9, 0.56666666), (0.9, 0.5833333), (0.89166665, 0.5833333), (0.89166665, 0.56666666), (0.89166665, 0.56666666), (0.89166665, 0.5833333), (0.8833333, 0.5833333), (0.8833333, 0.56666666), (0.8833333, 0.56666666), (0.8833333, 0.5833333), (0.875, 0.5833333), (0.875, 0.56666666), (0.875, 0.56666666), (0.875, 0.5833333), (0.8666667, 0.5833333), (0.8666667, 0.56666666), (0.8666667, 0.56666666), (0.8666667, 0.5833333), (0.85833335, 0.5833333), (0.85833335, 0.56666666), (0.85833335, 0.56666666), (0.85833335, 0.5833333), (0.85, 0.5833333), (0.85, 0.56666666), (0.85, 0.56666666), (0.85, 0.5833333), (0.84166664, 0.5833333), (0.84166664, 0.56666666), (0.84166664, 0.56666666), (0.84166664, 0.5833333), (0.8333333, 0.5833333), (0.8333333, 0.56666666), (0.8333333, 0.56666666), (0.8333333, 0.5833333), (0.825, 0.5833333), (0.825, 0.56666666), (0.825, 0.56666666), (0.825, 0.5833333), (0.81666666, 0.5833333), (0.81666666, 0.56666666), (0.81666666, 0.56666666), (0.81666666, 0.5833333), (0.80833334, 0.5833333), (0.80833334, 0.56666666), (0.80833334, 0.56666666), (0.80833334, 0.5833333), (0.8, 0.5833333), (0.8, 0.56666666), (0.8, 0.56666666), (0.8, 0.5833333), (0.7916667, 0.5833333), (0.7916667, 0.56666666), (0.7916667, 0.56666666), (0.7916667, 0.5833333), (0.78333336, 0.5833333), (0.78333336, 0.56666666), (0.78333336, 0.56666666), (0.78333336, 0.5833333), (0.775, 0.5833333), (0.775, 0.56666666), (0.775, 0.56666666), (0.775, 0.5833333), (0.76666665, 0.5833333), (0.76666665, 0.56666666), (0.76666665, 0.56666666), (0.76666665, 0.5833333), (0.7583333, 0.5833333), (0.7583333, 0.56666666), (0.7583333, 0.56666666), (0.7583333, 0.5833333), (0.75, 0.5833333), (0.75, 0.56666666), (0.75, 0.56666666), (0.75, 0.5833333), (0.7416667, 0.5833333), (0.7416667, 0.56666666), (0.7416667, 0.56666666), (0.7416667, 0.5833333), (0.73333335, 0.5833333), (0.73333335, 0.56666666), (0.73333335, 0.56666666), (0.73333335, 0.5833333), (0.725, 0.5833333), (0.725, 0.56666666), (0.725, 0.56666666), (0.725, 0.5833333), (0.71666664, 0.5833333), (0.71666664, 0.56666666), (0.71666664, 0.56666666), (0.71666664, 0.5833333), (0.7083333, 0.5833333), (0.7083333, 0.56666666), (0.7083333, 0.56666666), (0.7083333, 0.5833333), (0.7, 0.5833333), (0.7, 0.56666666), (0.7, 0.56666666), (0.7, 0.5833333), (0.69166666, 0.5833333), (0.69166666, 0.56666666), (0.69166666, 0.56666666), (0.69166666, 0.5833333), (0.68333334, 0.5833333), (0.68333334, 0.56666666), (0.68333334, 0.56666666), (0.68333334, 0.5833333), (0.675, 0.5833333), (0.675, 0.56666666), (0.675, 0.56666666), (0.675, 0.5833333), (0.6666667, 0.5833333), (0.6666667, 0.56666666), (0.6666667, 0.56666666), (0.6666667, 0.5833333), (0.65833336, 0.5833333), (0.65833336, 0.56666666), (0.65833336, 0.56666666), (0.65833336, 0.5833333), (0.65, 0.5833333), (0.65, 0.56666666), (0.65, 0.56666666), (0.65, 0.5833333), (0.64166665, 0.5833333), (0.64166665, 0.56666666), (0.64166665, 0.56666666), (0.64166665, 0.5833333), (0.6333333, 0.5833333), (0.6333333, 0.56666666), (0.6333333, 0.56666666), (0.6333333, 0.5833333), (0.625, 0.5833333), (0.625, 0.56666666), (0.625, 0.56666666), (0.625, 0.5833333), (0.6166667, 0.5833333), (0.6166667, 0.56666666), (0.6166667, 0.56666666), (0.6166667, 0.5833333), (0.60833335, 0.5833333), (0.60833335, 0.56666666), (0.60833335, 0.56666666), (0.60833335, 0.5833333), (0.6, 0.5833333), (0.6, 0.56666666), (0.6, 0.56666666), (0.6, 0.5833333), (0.59166664, 0.5833333), (0.59166664, 0.56666666), (0.59166664, 0.56666666), (0.59166664, 0.5833333), (0.5833333, 0.5833333), (0.5833333, 0.56666666), (0.5833333, 0.56666666), (0.5833333, 0.5833333), (0.575, 0.5833333), (0.575, 0.56666666), (0.575, 0.56666666), (0.575, 0.5833333), (0.56666666, 0.5833333), (0.56666666, 0.56666666), (0.56666666, 0.56666666), (0.56666666, 0.5833333), (0.55833334, 0.5833333), (0.55833334, 0.56666666), (0.55833334, 0.56666666), (0.55833334, 0.5833333), (0.55, 0.5833333), (0.55, 0.56666666), (0.55, 0.56666666), (0.55, 0.5833333), (0.5416667, 0.5833333), (0.5416667, 0.56666666), (0.5416667, 0.56666666), (0.5416667, 0.5833333), (0.53333336, 0.5833333), (0.53333336, 0.56666666), (0.53333336, 0.56666666), (0.53333336, 0.5833333), (0.525, 0.5833333), (0.525, 0.56666666), (0.525, 0.56666666), (0.525, 0.5833333), (0.51666665, 0.5833333), (0.51666665, 0.56666666), (0.51666665, 0.56666666), (0.51666665, 0.5833333), (0.5083333, 0.5833333), (0.5083333, 0.56666666), (0.5083333, 0.56666666), (0.5083333, 0.5833333), (0.5, 0.5833333), (0.5, 0.56666666), (0.5, 0.56666666), (0.5, 0.5833333), (0.49166667, 0.5833333), (0.49166667, 0.56666666), (0.49166667, 0.56666666), (0.49166667, 0.5833333), (0.48333332, 0.5833333), (0.48333332, 0.56666666), (0.48333332, 0.56666666), (0.48333332, 0.5833333), (0.475, 0.5833333), (0.475, 0.56666666), (0.475, 0.56666666), (0.475, 0.5833333), (0.46666667, 0.5833333), (0.46666667, 0.56666666), (0.46666667, 0.56666666), (0.46666667, 0.5833333), (0.45833334, 0.5833333), (0.45833334, 0.56666666), (0.45833334, 0.56666666), (0.45833334, 0.5833333), (0.45, 0.5833333), (0.45, 0.56666666), (0.45, 0.56666666), (0.45, 0.5833333), (0.44166666, 0.5833333), (0.44166666, 0.56666666), (0.44166666, 0.56666666), (0.44166666, 0.5833333), (0.43333334, 0.5833333), (0.43333334, 0.56666666), (0.43333334, 0.56666666), (0.43333334, 0.5833333), (0.425, 0.5833333), (0.425, 0.56666666), (0.425, 0.56666666), (0.425, 0.5833333), (0.41666666, 0.5833333), (0.41666666, 0.56666666), (0.41666666, 0.56666666), (0.41666666, 0.5833333), (0.40833333, 0.5833333), (0.40833333, 0.56666666), (0.40833333, 0.56666666), (0.40833333, 0.5833333), (0.4, 0.5833333), (0.4, 0.56666666), (0.4, 0.56666666), (0.4, 0.5833333), (0.39166668, 0.5833333), (0.39166668, 0.56666666), (0.39166668, 0.56666666), (0.39166668, 0.5833333), (0.38333333, 0.5833333), (0.38333333, 0.56666666), (0.38333333, 0.56666666), (0.38333333, 0.5833333), (0.375, 0.5833333), (0.375, 0.56666666), (0.375, 0.56666666), (0.375, 0.5833333), (0.36666667, 0.5833333), (0.36666667, 0.56666666), (0.36666667, 0.56666666), (0.36666667, 0.5833333), (0.35833332, 0.5833333), (0.35833332, 0.56666666), (0.35833332, 0.56666666), (0.35833332, 0.5833333), (0.35, 0.5833333), (0.35, 0.56666666), (0.35, 0.56666666), (0.35, 0.5833333), (0.34166667, 0.5833333), (0.34166667, 0.56666666), (0.34166667, 0.56666666), (0.34166667, 0.5833333), (0.33333334, 0.5833333), (0.33333334, 0.56666666), (0.33333334, 0.56666666), (0.33333334, 0.5833333), (0.325, 0.5833333), (0.325, 0.56666666), (0.325, 0.56666666), (0.325, 0.5833333), (0.31666666, 0.5833333), (0.31666666, 0.56666666), (0.31666666, 0.56666666), (0.31666666, 0.5833333), (0.30833334, 0.5833333), (0.30833334, 0.56666666), (0.30833334, 0.56666666), (0.30833334, 0.5833333), (0.3, 0.5833333), (0.3, 0.56666666), (0.3, 0.56666666), (0.3, 0.5833333), (0.29166666, 0.5833333), (0.29166666, 0.56666666), (0.29166666, 0.56666666), (0.29166666, 0.5833333), (0.28333333, 0.5833333), (0.28333333, 0.56666666), (0.28333333, 0.56666666), (0.28333333, 0.5833333), (0.275, 0.5833333), (0.275, 0.56666666), (0.275, 0.56666666), (0.275, 0.5833333), (0.26666668, 0.5833333), (0.26666668, 0.56666666), (0.26666668, 0.56666666), (0.26666668, 0.5833333), (0.25833333, 0.5833333), (0.25833333, 0.56666666), (0.25833333, 0.56666666), (0.25833333, 0.5833333), (0.25, 0.5833333), (0.25, 0.56666666), (0.25, 0.56666666), (0.25, 0.5833333), (0.24166666, 0.5833333), (0.24166666, 0.56666666), (0.24166666, 0.56666666), (0.24166666, 0.5833333), (0.23333333, 0.5833333), (0.23333333, 0.56666666), (0.23333333, 0.56666666), (0.23333333, 0.5833333), (0.225, 0.5833333), (0.225, 0.56666666), (0.225, 0.56666666), (0.225, 0.5833333), (0.21666667, 0.5833333), (0.21666667, 0.56666666), (0.21666667, 0.56666666), (0.21666667, 0.5833333), (0.20833333, 0.5833333), (0.20833333, 0.56666666), (0.20833333, 0.56666666), (0.20833333, 0.5833333), (0.2, 0.5833333), (0.2, 0.56666666), (0.2, 0.56666666), (0.2, 0.5833333), (0.19166666, 0.5833333), (0.19166666, 0.56666666), (0.19166666, 0.56666666), (0.19166666, 0.5833333), (0.18333334, 0.5833333), (0.18333334, 0.56666666), (0.18333334, 0.56666666), (0.18333334, 0.5833333), (0.175, 0.5833333), (0.175, 0.56666666), (0.175, 0.56666666), (0.175, 0.5833333), (0.16666667, 0.5833333), (0.16666667, 0.56666666), (0.16666667, 0.56666666), (0.16666667, 0.5833333), (0.15833333, 0.5833333), (0.15833333, 0.56666666), (0.15833333, 0.56666666), (0.15833333, 0.5833333), (0.15, 0.5833333), (0.15, 0.56666666), (0.15, 0.56666666), (0.15, 0.5833333), (0.14166667, 0.5833333), (0.14166667, 0.56666666), (0.14166667, 0.56666666), (0.14166667, 0.5833333), (0.13333334, 0.5833333), (0.13333334, 0.56666666), (0.13333334, 0.56666666), (0.13333334, 0.5833333), (0.125, 0.5833333), (0.125, 0.56666666), (0.125, 0.56666666), (0.125, 0.5833333), (0.11666667, 0.5833333), (0.11666667, 0.56666666), (0.11666667, 0.56666666), (0.11666667, 0.5833333), (0.108333334, 0.5833333), (0.108333334, 0.56666666), (0.108333334, 0.56666666), (0.108333334, 0.5833333), (0.1, 0.5833333), (0.1, 0.56666666), (0.1, 0.56666666), (0.1, 0.5833333), (0.09166667, 0.5833333), (0.09166667, 0.56666666), (0.09166667, 0.56666666), (0.09166667, 0.5833333), (0.083333336, 0.5833333), (0.083333336, 0.56666666), (0.083333336, 0.56666666), (0.083333336, 0.5833333), (0.075, 0.5833333), (0.075, 0.56666666), (0.075, 0.56666666), (0.075, 0.5833333), (0.06666667, 0.5833333), (0.06666667, 0.56666666), (0.06666667, 0.56666666), (0.06666667, 0.5833333), (0.058333334, 0.5833333), (0.058333334, 0.56666666), (0.058333334, 0.56666666), (0.058333334, 0.5833333), (0.05, 0.5833333), (0.05, 0.56666666), (0.05, 0.56666666), (0.05, 0.5833333), (0.041666668, 0.5833333), (0.041666668, 0.56666666), (0.041666668, 0.56666666), (0.041666668, 0.5833333), (0.033333335, 0.5833333), (0.033333335, 0.56666666), (0.033333335, 0.56666666), (0.033333335, 0.5833333), (0.025, 0.5833333), (0.025, 0.56666666), (0.025, 0.56666666), (0.025, 0.5833333), (0.016666668, 0.5833333), (0.016666668, 0.56666666), (0.016666668, 0.56666666), (0.016666668, 0.5833333), (0.008333334, 0.5833333), (0.008333334, 0.56666666), (0.008333334, 0.56666666), (0.008333334, 0.5833333), (0, 0.5833333), (0, 0.56666666), (1, 0.5833333), (1, 0.6), (0.9916667, 0.6), (0.9916667, 0.5833333), (0.9916667, 0.5833333), (0.9916667, 0.6), (0.98333335, 0.6), (0.98333335, 0.5833333), (0.98333335, 0.5833333), (0.98333335, 0.6), (0.975, 0.6), (0.975, 0.5833333), (0.975, 0.5833333), (0.975, 0.6), (0.96666664, 0.6), (0.96666664, 0.5833333), (0.96666664, 0.5833333), (0.96666664, 0.6), (0.9583333, 0.6), (0.9583333, 0.5833333), (0.9583333, 0.5833333), (0.9583333, 0.6), (0.95, 0.6), (0.95, 0.5833333), (0.95, 0.5833333), (0.95, 0.6), (0.94166666, 0.6), (0.94166666, 0.5833333), (0.94166666, 0.5833333), (0.94166666, 0.6), (0.93333334, 0.6), (0.93333334, 0.5833333), (0.93333334, 0.5833333), (0.93333334, 0.6), (0.925, 0.6), (0.925, 0.5833333), (0.925, 0.5833333), (0.925, 0.6), (0.9166667, 0.6), (0.9166667, 0.5833333), (0.9166667, 0.5833333), (0.9166667, 0.6), (0.90833336, 0.6), (0.90833336, 0.5833333), (0.90833336, 0.5833333), (0.90833336, 0.6), (0.9, 0.6), (0.9, 0.5833333), (0.9, 0.5833333), (0.9, 0.6), (0.89166665, 0.6), (0.89166665, 0.5833333), (0.89166665, 0.5833333), (0.89166665, 0.6), (0.8833333, 0.6), (0.8833333, 0.5833333), (0.8833333, 0.5833333), (0.8833333, 0.6), (0.875, 0.6), (0.875, 0.5833333), (0.875, 0.5833333), (0.875, 0.6), (0.8666667, 0.6), (0.8666667, 0.5833333), (0.8666667, 0.5833333), (0.8666667, 0.6), (0.85833335, 0.6), (0.85833335, 0.5833333), (0.85833335, 0.5833333), (0.85833335, 0.6), (0.85, 0.6), (0.85, 0.5833333), (0.85, 0.5833333), (0.85, 0.6), (0.84166664, 0.6), (0.84166664, 0.5833333), (0.84166664, 0.5833333), (0.84166664, 0.6), (0.8333333, 0.6), (0.8333333, 0.5833333), (0.8333333, 0.5833333), (0.8333333, 0.6), (0.825, 0.6), (0.825, 0.5833333), (0.825, 0.5833333), (0.825, 0.6), (0.81666666, 0.6), (0.81666666, 0.5833333), (0.81666666, 0.5833333), (0.81666666, 0.6), (0.80833334, 0.6), (0.80833334, 0.5833333), (0.80833334, 0.5833333), (0.80833334, 0.6), (0.8, 0.6), (0.8, 0.5833333), (0.8, 0.5833333), (0.8, 0.6), (0.7916667, 0.6), (0.7916667, 0.5833333), (0.7916667, 0.5833333), (0.7916667, 0.6), (0.78333336, 0.6), (0.78333336, 0.5833333), (0.78333336, 0.5833333), (0.78333336, 0.6), (0.775, 0.6), (0.775, 0.5833333), (0.775, 0.5833333), (0.775, 0.6), (0.76666665, 0.6), (0.76666665, 0.5833333), (0.76666665, 0.5833333), (0.76666665, 0.6), (0.7583333, 0.6), (0.7583333, 0.5833333), (0.7583333, 0.5833333), (0.7583333, 0.6), (0.75, 0.6), (0.75, 0.5833333), (0.75, 0.5833333), (0.75, 0.6), (0.7416667, 0.6), (0.7416667, 0.5833333), (0.7416667, 0.5833333), (0.7416667, 0.6), (0.73333335, 0.6), (0.73333335, 0.5833333), (0.73333335, 0.5833333), (0.73333335, 0.6), (0.725, 0.6), (0.725, 0.5833333), (0.725, 0.5833333), (0.725, 0.6), (0.71666664, 0.6), (0.71666664, 0.5833333), (0.71666664, 0.5833333), (0.71666664, 0.6), (0.7083333, 0.6), (0.7083333, 0.5833333), (0.7083333, 0.5833333), (0.7083333, 0.6), (0.7, 0.6), (0.7, 0.5833333), (0.7, 0.5833333), (0.7, 0.6), (0.69166666, 0.6), (0.69166666, 0.5833333), (0.69166666, 0.5833333), (0.69166666, 0.6), (0.68333334, 0.6), (0.68333334, 0.5833333), (0.68333334, 0.5833333), (0.68333334, 0.6), (0.675, 0.6), (0.675, 0.5833333), (0.675, 0.5833333), (0.675, 0.6), (0.6666667, 0.6), (0.6666667, 0.5833333), (0.6666667, 0.5833333), (0.6666667, 0.6), (0.65833336, 0.6), (0.65833336, 0.5833333), (0.65833336, 0.5833333), (0.65833336, 0.6), (0.65, 0.6), (0.65, 0.5833333), (0.65, 0.5833333), (0.65, 0.6), (0.64166665, 0.6), (0.64166665, 0.5833333), (0.64166665, 0.5833333), (0.64166665, 0.6), (0.6333333, 0.6), (0.6333333, 0.5833333), (0.6333333, 0.5833333), (0.6333333, 0.6), (0.625, 0.6), (0.625, 0.5833333), (0.625, 0.5833333), (0.625, 0.6), (0.6166667, 0.6), (0.6166667, 0.5833333), (0.6166667, 0.5833333), (0.6166667, 0.6), (0.60833335, 0.6), (0.60833335, 0.5833333), (0.60833335, 0.5833333), (0.60833335, 0.6), (0.6, 0.6), (0.6, 0.5833333), (0.6, 0.5833333), (0.6, 0.6), (0.59166664, 0.6), (0.59166664, 0.5833333), (0.59166664, 0.5833333), (0.59166664, 0.6), (0.5833333, 0.6), (0.5833333, 0.5833333), (0.5833333, 0.5833333), (0.5833333, 0.6), (0.575, 0.6), (0.575, 0.5833333), (0.575, 0.5833333), (0.575, 0.6), (0.56666666, 0.6), (0.56666666, 0.5833333), (0.56666666, 0.5833333), (0.56666666, 0.6), (0.55833334, 0.6), (0.55833334, 0.5833333), (0.55833334, 0.5833333), (0.55833334, 0.6), (0.55, 0.6), (0.55, 0.5833333), (0.55, 0.5833333), (0.55, 0.6), (0.5416667, 0.6), (0.5416667, 0.5833333), (0.5416667, 0.5833333), (0.5416667, 0.6), (0.53333336, 0.6), (0.53333336, 0.5833333), (0.53333336, 0.5833333), (0.53333336, 0.6), (0.525, 0.6), (0.525, 0.5833333), (0.525, 0.5833333), (0.525, 0.6), (0.51666665, 0.6), (0.51666665, 0.5833333), (0.51666665, 0.5833333), (0.51666665, 0.6), (0.5083333, 0.6), (0.5083333, 0.5833333), (0.5083333, 0.5833333), (0.5083333, 0.6), (0.5, 0.6), (0.5, 0.5833333), (0.5, 0.5833333), (0.5, 0.6), (0.49166667, 0.6), (0.49166667, 0.5833333), (0.49166667, 0.5833333), (0.49166667, 0.6), (0.48333332, 0.6), (0.48333332, 0.5833333), (0.48333332, 0.5833333), (0.48333332, 0.6), (0.475, 0.6), (0.475, 0.5833333), (0.475, 0.5833333), (0.475, 0.6), (0.46666667, 0.6), (0.46666667, 0.5833333), (0.46666667, 0.5833333), (0.46666667, 0.6), (0.45833334, 0.6), (0.45833334, 0.5833333), (0.45833334, 0.5833333), (0.45833334, 0.6), (0.45, 0.6), (0.45, 0.5833333), (0.45, 0.5833333), (0.45, 0.6), (0.44166666, 0.6), (0.44166666, 0.5833333), (0.44166666, 0.5833333), (0.44166666, 0.6), (0.43333334, 0.6), (0.43333334, 0.5833333), (0.43333334, 0.5833333), (0.43333334, 0.6), (0.425, 0.6), (0.425, 0.5833333), (0.425, 0.5833333), (0.425, 0.6), (0.41666666, 0.6), (0.41666666, 0.5833333), (0.41666666, 0.5833333), (0.41666666, 0.6), (0.40833333, 0.6), (0.40833333, 0.5833333), (0.40833333, 0.5833333), (0.40833333, 0.6), (0.4, 0.6), (0.4, 0.5833333), (0.4, 0.5833333), (0.4, 0.6), (0.39166668, 0.6), (0.39166668, 0.5833333), (0.39166668, 0.5833333), (0.39166668, 0.6), (0.38333333, 0.6), (0.38333333, 0.5833333), (0.38333333, 0.5833333), (0.38333333, 0.6), (0.375, 0.6), (0.375, 0.5833333), (0.375, 0.5833333), (0.375, 0.6), (0.36666667, 0.6), (0.36666667, 0.5833333), (0.36666667, 0.5833333), (0.36666667, 0.6), (0.35833332, 0.6), (0.35833332, 0.5833333), (0.35833332, 0.5833333), (0.35833332, 0.6), (0.35, 0.6), (0.35, 0.5833333), (0.35, 0.5833333), (0.35, 0.6), (0.34166667, 0.6), (0.34166667, 0.5833333), (0.34166667, 0.5833333), (0.34166667, 0.6), (0.33333334, 0.6), (0.33333334, 0.5833333), (0.33333334, 0.5833333), (0.33333334, 0.6), (0.325, 0.6), (0.325, 0.5833333), (0.325, 0.5833333), (0.325, 0.6), (0.31666666, 0.6), (0.31666666, 0.5833333), (0.31666666, 0.5833333), (0.31666666, 0.6), (0.30833334, 0.6), (0.30833334, 0.5833333), (0.30833334, 0.5833333), (0.30833334, 0.6), (0.3, 0.6), (0.3, 0.5833333), (0.3, 0.5833333), (0.3, 0.6), (0.29166666, 0.6), (0.29166666, 0.5833333), (0.29166666, 0.5833333), (0.29166666, 0.6), (0.28333333, 0.6), (0.28333333, 0.5833333), (0.28333333, 0.5833333), (0.28333333, 0.6), (0.275, 0.6), (0.275, 0.5833333), (0.275, 0.5833333), (0.275, 0.6), (0.26666668, 0.6), (0.26666668, 0.5833333), (0.26666668, 0.5833333), (0.26666668, 0.6), (0.25833333, 0.6), (0.25833333, 0.5833333), (0.25833333, 0.5833333), (0.25833333, 0.6), (0.25, 0.6), (0.25, 0.5833333), (0.25, 0.5833333), (0.25, 0.6), (0.24166666, 0.6), (0.24166666, 0.5833333), (0.24166666, 0.5833333), (0.24166666, 0.6), (0.23333333, 0.6), (0.23333333, 0.5833333), (0.23333333, 0.5833333), (0.23333333, 0.6), (0.225, 0.6), (0.225, 0.5833333), (0.225, 0.5833333), (0.225, 0.6), (0.21666667, 0.6), (0.21666667, 0.5833333), (0.21666667, 0.5833333), (0.21666667, 0.6), (0.20833333, 0.6), (0.20833333, 0.5833333), (0.20833333, 0.5833333), (0.20833333, 0.6), (0.2, 0.6), (0.2, 0.5833333), (0.2, 0.5833333), (0.2, 0.6), (0.19166666, 0.6), (0.19166666, 0.5833333), (0.19166666, 0.5833333), (0.19166666, 0.6), (0.18333334, 0.6), (0.18333334, 0.5833333), (0.18333334, 0.5833333), (0.18333334, 0.6), (0.175, 0.6), (0.175, 0.5833333), (0.175, 0.5833333), (0.175, 0.6), (0.16666667, 0.6), (0.16666667, 0.5833333), (0.16666667, 0.5833333), (0.16666667, 0.6), (0.15833333, 0.6), (0.15833333, 0.5833333), (0.15833333, 0.5833333), (0.15833333, 0.6), (0.15, 0.6), (0.15, 0.5833333), (0.15, 0.5833333), (0.15, 0.6), (0.14166667, 0.6), (0.14166667, 0.5833333), (0.14166667, 0.5833333), (0.14166667, 0.6), (0.13333334, 0.6), (0.13333334, 0.5833333), (0.13333334, 0.5833333), (0.13333334, 0.6), (0.125, 0.6), (0.125, 0.5833333), (0.125, 0.5833333), (0.125, 0.6), (0.11666667, 0.6), (0.11666667, 0.5833333), (0.11666667, 0.5833333), (0.11666667, 0.6), (0.108333334, 0.6), (0.108333334, 0.5833333), (0.108333334, 0.5833333), (0.108333334, 0.6), (0.1, 0.6), (0.1, 0.5833333), (0.1, 0.5833333), (0.1, 0.6), (0.09166667, 0.6), (0.09166667, 0.5833333), (0.09166667, 0.5833333), (0.09166667, 0.6), (0.083333336, 0.6), (0.083333336, 0.5833333), (0.083333336, 0.5833333), (0.083333336, 0.6), (0.075, 0.6), (0.075, 0.5833333), (0.075, 0.5833333), (0.075, 0.6), (0.06666667, 0.6), (0.06666667, 0.5833333), (0.06666667, 0.5833333), (0.06666667, 0.6), (0.058333334, 0.6), (0.058333334, 0.5833333), (0.058333334, 0.5833333), (0.058333334, 0.6), (0.05, 0.6), (0.05, 0.5833333), (0.05, 0.5833333), (0.05, 0.6), (0.041666668, 0.6), (0.041666668, 0.5833333), (0.041666668, 0.5833333), (0.041666668, 0.6), (0.033333335, 0.6), (0.033333335, 0.5833333), (0.033333335, 0.5833333), (0.033333335, 0.6), (0.025, 0.6), (0.025, 0.5833333), (0.025, 0.5833333), (0.025, 0.6), (0.016666668, 0.6), (0.016666668, 0.5833333), (0.016666668, 0.5833333), (0.016666668, 0.6), (0.008333334, 0.6), (0.008333334, 0.5833333), (0.008333334, 0.5833333), (0.008333334, 0.6), (0, 0.6), (0, 0.5833333), (1, 0.6), (1, 0.6166667), (0.9916667, 0.6166667), (0.9916667, 0.6), (0.9916667, 0.6), (0.9916667, 0.6166667), (0.98333335, 0.6166667), (0.98333335, 0.6), (0.98333335, 0.6), (0.98333335, 0.6166667), (0.975, 0.6166667), (0.975, 0.6), (0.975, 0.6), (0.975, 0.6166667), (0.96666664, 0.6166667), (0.96666664, 0.6), (0.96666664, 0.6), (0.96666664, 0.6166667), (0.9583333, 0.6166667), (0.9583333, 0.6), (0.9583333, 0.6), (0.9583333, 0.6166667), (0.95, 0.6166667), (0.95, 0.6), (0.95, 0.6), (0.95, 0.6166667), (0.94166666, 0.6166667), (0.94166666, 0.6), (0.94166666, 0.6), (0.94166666, 0.6166667), (0.93333334, 0.6166667), (0.93333334, 0.6), (0.93333334, 0.6), (0.93333334, 0.6166667), (0.925, 0.6166667), (0.925, 0.6), (0.925, 0.6), (0.925, 0.6166667), (0.9166667, 0.6166667), (0.9166667, 0.6), (0.9166667, 0.6), (0.9166667, 0.6166667), (0.90833336, 0.6166667), (0.90833336, 0.6), (0.90833336, 0.6), (0.90833336, 0.6166667), (0.9, 0.6166667), (0.9, 0.6), (0.9, 0.6), (0.9, 0.6166667), (0.89166665, 0.6166667), (0.89166665, 0.6), (0.89166665, 0.6), (0.89166665, 0.6166667), (0.8833333, 0.6166667), (0.8833333, 0.6), (0.8833333, 0.6), (0.8833333, 0.6166667), (0.875, 0.6166667), (0.875, 0.6), (0.875, 0.6), (0.875, 0.6166667), (0.8666667, 0.6166667), (0.8666667, 0.6), (0.8666667, 0.6), (0.8666667, 0.6166667), (0.85833335, 0.6166667), (0.85833335, 0.6), (0.85833335, 0.6), (0.85833335, 0.6166667), (0.85, 0.6166667), (0.85, 0.6), (0.85, 0.6), (0.85, 0.6166667), (0.84166664, 0.6166667), (0.84166664, 0.6), (0.84166664, 0.6), (0.84166664, 0.6166667), (0.8333333, 0.6166667), (0.8333333, 0.6), (0.8333333, 0.6), (0.8333333, 0.6166667), (0.825, 0.6166667), (0.825, 0.6), (0.825, 0.6), (0.825, 0.6166667), (0.81666666, 0.6166667), (0.81666666, 0.6), (0.81666666, 0.6), (0.81666666, 0.6166667), (0.80833334, 0.6166667), (0.80833334, 0.6), (0.80833334, 0.6), (0.80833334, 0.6166667), (0.8, 0.6166667), (0.8, 0.6), (0.8, 0.6), (0.8, 0.6166667), (0.7916667, 0.6166667), (0.7916667, 0.6), (0.7916667, 0.6), (0.7916667, 0.6166667), (0.78333336, 0.6166667), (0.78333336, 0.6), (0.78333336, 0.6), (0.78333336, 0.6166667), (0.775, 0.6166667), (0.775, 0.6), (0.775, 0.6), (0.775, 0.6166667), (0.76666665, 0.6166667), (0.76666665, 0.6), (0.76666665, 0.6), (0.76666665, 0.6166667), (0.7583333, 0.6166667), (0.7583333, 0.6), (0.7583333, 0.6), (0.7583333, 0.6166667), (0.75, 0.6166667), (0.75, 0.6), (0.75, 0.6), (0.75, 0.6166667), (0.7416667, 0.6166667), (0.7416667, 0.6), (0.7416667, 0.6), (0.7416667, 0.6166667), (0.73333335, 0.6166667), (0.73333335, 0.6), (0.73333335, 0.6), (0.73333335, 0.6166667), (0.725, 0.6166667), (0.725, 0.6), (0.725, 0.6), (0.725, 0.6166667), (0.71666664, 0.6166667), (0.71666664, 0.6), (0.71666664, 0.6), (0.71666664, 0.6166667), (0.7083333, 0.6166667), (0.7083333, 0.6), (0.7083333, 0.6), (0.7083333, 0.6166667), (0.7, 0.6166667), (0.7, 0.6), (0.7, 0.6), (0.7, 0.6166667), (0.69166666, 0.6166667), (0.69166666, 0.6), (0.69166666, 0.6), (0.69166666, 0.6166667), (0.68333334, 0.6166667), (0.68333334, 0.6), (0.68333334, 0.6), (0.68333334, 0.6166667), (0.675, 0.6166667), (0.675, 0.6), (0.675, 0.6), (0.675, 0.6166667), (0.6666667, 0.6166667), (0.6666667, 0.6), (0.6666667, 0.6), (0.6666667, 0.6166667), (0.65833336, 0.6166667), (0.65833336, 0.6), (0.65833336, 0.6), (0.65833336, 0.6166667), (0.65, 0.6166667), (0.65, 0.6), (0.65, 0.6), (0.65, 0.6166667), (0.64166665, 0.6166667), (0.64166665, 0.6), (0.64166665, 0.6), (0.64166665, 0.6166667), (0.6333333, 0.6166667), (0.6333333, 0.6), (0.6333333, 0.6), (0.6333333, 0.6166667), (0.625, 0.6166667), (0.625, 0.6), (0.625, 0.6), (0.625, 0.6166667), (0.6166667, 0.6166667), (0.6166667, 0.6), (0.6166667, 0.6), (0.6166667, 0.6166667), (0.60833335, 0.6166667), (0.60833335, 0.6), (0.60833335, 0.6), (0.60833335, 0.6166667), (0.6, 0.6166667), (0.6, 0.6), (0.6, 0.6), (0.6, 0.6166667), (0.59166664, 0.6166667), (0.59166664, 0.6), (0.59166664, 0.6), (0.59166664, 0.6166667), (0.5833333, 0.6166667), (0.5833333, 0.6), (0.5833333, 0.6), (0.5833333, 0.6166667), (0.575, 0.6166667), (0.575, 0.6), (0.575, 0.6), (0.575, 0.6166667), (0.56666666, 0.6166667), (0.56666666, 0.6), (0.56666666, 0.6), (0.56666666, 0.6166667), (0.55833334, 0.6166667), (0.55833334, 0.6), (0.55833334, 0.6), (0.55833334, 0.6166667), (0.55, 0.6166667), (0.55, 0.6), (0.55, 0.6), (0.55, 0.6166667), (0.5416667, 0.6166667), (0.5416667, 0.6), (0.5416667, 0.6), (0.5416667, 0.6166667), (0.53333336, 0.6166667), (0.53333336, 0.6), (0.53333336, 0.6), (0.53333336, 0.6166667), (0.525, 0.6166667), (0.525, 0.6), (0.525, 0.6), (0.525, 0.6166667), (0.51666665, 0.6166667), (0.51666665, 0.6), (0.51666665, 0.6), (0.51666665, 0.6166667), (0.5083333, 0.6166667), (0.5083333, 0.6), (0.5083333, 0.6), (0.5083333, 0.6166667), (0.5, 0.6166667), (0.5, 0.6), (0.5, 0.6), (0.5, 0.6166667), (0.49166667, 0.6166667), (0.49166667, 0.6), (0.49166667, 0.6), (0.49166667, 0.6166667), (0.48333332, 0.6166667), (0.48333332, 0.6), (0.48333332, 0.6), (0.48333332, 0.6166667), (0.475, 0.6166667), (0.475, 0.6), (0.475, 0.6), (0.475, 0.6166667), (0.46666667, 0.6166667), (0.46666667, 0.6), (0.46666667, 0.6), (0.46666667, 0.6166667), (0.45833334, 0.6166667), (0.45833334, 0.6), (0.45833334, 0.6), (0.45833334, 0.6166667), (0.45, 0.6166667), (0.45, 0.6), (0.45, 0.6), (0.45, 0.6166667), (0.44166666, 0.6166667), (0.44166666, 0.6), (0.44166666, 0.6), (0.44166666, 0.6166667), (0.43333334, 0.6166667), (0.43333334, 0.6), (0.43333334, 0.6), (0.43333334, 0.6166667), (0.425, 0.6166667), (0.425, 0.6), (0.425, 0.6), (0.425, 0.6166667), (0.41666666, 0.6166667), (0.41666666, 0.6), (0.41666666, 0.6), (0.41666666, 0.6166667), (0.40833333, 0.6166667), (0.40833333, 0.6), (0.40833333, 0.6), (0.40833333, 0.6166667), (0.4, 0.6166667), (0.4, 0.6), (0.4, 0.6), (0.4, 0.6166667), (0.39166668, 0.6166667), (0.39166668, 0.6), (0.39166668, 0.6), (0.39166668, 0.6166667), (0.38333333, 0.6166667), (0.38333333, 0.6), (0.38333333, 0.6), (0.38333333, 0.6166667), (0.375, 0.6166667), (0.375, 0.6), (0.375, 0.6), (0.375, 0.6166667), (0.36666667, 0.6166667), (0.36666667, 0.6), (0.36666667, 0.6), (0.36666667, 0.6166667), (0.35833332, 0.6166667), (0.35833332, 0.6), (0.35833332, 0.6), (0.35833332, 0.6166667), (0.35, 0.6166667), (0.35, 0.6), (0.35, 0.6), (0.35, 0.6166667), (0.34166667, 0.6166667), (0.34166667, 0.6), (0.34166667, 0.6), (0.34166667, 0.6166667), (0.33333334, 0.6166667), (0.33333334, 0.6), (0.33333334, 0.6), (0.33333334, 0.6166667), (0.325, 0.6166667), (0.325, 0.6), (0.325, 0.6), (0.325, 0.6166667), (0.31666666, 0.6166667), (0.31666666, 0.6), (0.31666666, 0.6), (0.31666666, 0.6166667), (0.30833334, 0.6166667), (0.30833334, 0.6), (0.30833334, 0.6), (0.30833334, 0.6166667), (0.3, 0.6166667), (0.3, 0.6), (0.3, 0.6), (0.3, 0.6166667), (0.29166666, 0.6166667), (0.29166666, 0.6), (0.29166666, 0.6), (0.29166666, 0.6166667), (0.28333333, 0.6166667), (0.28333333, 0.6), (0.28333333, 0.6), (0.28333333, 0.6166667), (0.275, 0.6166667), (0.275, 0.6), (0.275, 0.6), (0.275, 0.6166667), (0.26666668, 0.6166667), (0.26666668, 0.6), (0.26666668, 0.6), (0.26666668, 0.6166667), (0.25833333, 0.6166667), (0.25833333, 0.6), (0.25833333, 0.6), (0.25833333, 0.6166667), (0.25, 0.6166667), (0.25, 0.6), (0.25, 0.6), (0.25, 0.6166667), (0.24166666, 0.6166667), (0.24166666, 0.6), (0.24166666, 0.6), (0.24166666, 0.6166667), (0.23333333, 0.6166667), (0.23333333, 0.6), (0.23333333, 0.6), (0.23333333, 0.6166667), (0.225, 0.6166667), (0.225, 0.6), (0.225, 0.6), (0.225, 0.6166667), (0.21666667, 0.6166667), (0.21666667, 0.6), (0.21666667, 0.6), (0.21666667, 0.6166667), (0.20833333, 0.6166667), (0.20833333, 0.6), (0.20833333, 0.6), (0.20833333, 0.6166667), (0.2, 0.6166667), (0.2, 0.6), (0.2, 0.6), (0.2, 0.6166667), (0.19166666, 0.6166667), (0.19166666, 0.6), (0.19166666, 0.6), (0.19166666, 0.6166667), (0.18333334, 0.6166667), (0.18333334, 0.6), (0.18333334, 0.6), (0.18333334, 0.6166667), (0.175, 0.6166667), (0.175, 0.6), (0.175, 0.6), (0.175, 0.6166667), (0.16666667, 0.6166667), (0.16666667, 0.6), (0.16666667, 0.6), (0.16666667, 0.6166667), (0.15833333, 0.6166667), (0.15833333, 0.6), (0.15833333, 0.6), (0.15833333, 0.6166667), (0.15, 0.6166667), (0.15, 0.6), (0.15, 0.6), (0.15, 0.6166667), (0.14166667, 0.6166667), (0.14166667, 0.6), (0.14166667, 0.6), (0.14166667, 0.6166667), (0.13333334, 0.6166667), (0.13333334, 0.6), (0.13333334, 0.6), (0.13333334, 0.6166667), (0.125, 0.6166667), (0.125, 0.6), (0.125, 0.6), (0.125, 0.6166667), (0.11666667, 0.6166667), (0.11666667, 0.6), (0.11666667, 0.6), (0.11666667, 0.6166667), (0.108333334, 0.6166667), (0.108333334, 0.6), (0.108333334, 0.6), (0.108333334, 0.6166667), (0.1, 0.6166667), (0.1, 0.6), (0.1, 0.6), (0.1, 0.6166667), (0.09166667, 0.6166667), (0.09166667, 0.6), (0.09166667, 0.6), (0.09166667, 0.6166667), (0.083333336, 0.6166667), (0.083333336, 0.6), (0.083333336, 0.6), (0.083333336, 0.6166667), (0.075, 0.6166667), (0.075, 0.6), (0.075, 0.6), (0.075, 0.6166667), (0.06666667, 0.6166667), (0.06666667, 0.6), (0.06666667, 0.6), (0.06666667, 0.6166667), (0.058333334, 0.6166667), (0.058333334, 0.6), (0.058333334, 0.6), (0.058333334, 0.6166667), (0.05, 0.6166667), (0.05, 0.6), (0.05, 0.6), (0.05, 0.6166667), (0.041666668, 0.6166667), (0.041666668, 0.6), (0.041666668, 0.6), (0.041666668, 0.6166667), (0.033333335, 0.6166667), (0.033333335, 0.6), (0.033333335, 0.6), (0.033333335, 0.6166667), (0.025, 0.6166667), (0.025, 0.6), (0.025, 0.6), (0.025, 0.6166667), (0.016666668, 0.6166667), (0.016666668, 0.6), (0.016666668, 0.6), (0.016666668, 0.6166667), (0.008333334, 0.6166667), (0.008333334, 0.6), (0.008333334, 0.6), (0.008333334, 0.6166667), (0, 0.6166667), (0, 0.6), (1, 0.6166667), (1, 0.6333333), (0.9916667, 0.6333333), (0.9916667, 0.6166667), (0.9916667, 0.6166667), (0.9916667, 0.6333333), (0.98333335, 0.6333333), (0.98333335, 0.6166667), (0.98333335, 0.6166667), (0.98333335, 0.6333333), (0.975, 0.6333333), (0.975, 0.6166667), (0.975, 0.6166667), (0.975, 0.6333333), (0.96666664, 0.6333333), (0.96666664, 0.6166667), (0.96666664, 0.6166667), (0.96666664, 0.6333333), (0.9583333, 0.6333333), (0.9583333, 0.6166667), (0.9583333, 0.6166667), (0.9583333, 0.6333333), (0.95, 0.6333333), (0.95, 0.6166667), (0.95, 0.6166667), (0.95, 0.6333333), (0.94166666, 0.6333333), (0.94166666, 0.6166667), (0.94166666, 0.6166667), (0.94166666, 0.6333333), (0.93333334, 0.6333333), (0.93333334, 0.6166667), (0.93333334, 0.6166667), (0.93333334, 0.6333333), (0.925, 0.6333333), (0.925, 0.6166667), (0.925, 0.6166667), (0.925, 0.6333333), (0.9166667, 0.6333333), (0.9166667, 0.6166667), (0.9166667, 0.6166667), (0.9166667, 0.6333333), (0.90833336, 0.6333333), (0.90833336, 0.6166667), (0.90833336, 0.6166667), (0.90833336, 0.6333333), (0.9, 0.6333333), (0.9, 0.6166667), (0.9, 0.6166667), (0.9, 0.6333333), (0.89166665, 0.6333333), (0.89166665, 0.6166667), (0.89166665, 0.6166667), (0.89166665, 0.6333333), (0.8833333, 0.6333333), (0.8833333, 0.6166667), (0.8833333, 0.6166667), (0.8833333, 0.6333333), (0.875, 0.6333333), (0.875, 0.6166667), (0.875, 0.6166667), (0.875, 0.6333333), (0.8666667, 0.6333333), (0.8666667, 0.6166667), (0.8666667, 0.6166667), (0.8666667, 0.6333333), (0.85833335, 0.6333333), (0.85833335, 0.6166667), (0.85833335, 0.6166667), (0.85833335, 0.6333333), (0.85, 0.6333333), (0.85, 0.6166667), (0.85, 0.6166667), (0.85, 0.6333333), (0.84166664, 0.6333333), (0.84166664, 0.6166667), (0.84166664, 0.6166667), (0.84166664, 0.6333333), (0.8333333, 0.6333333), (0.8333333, 0.6166667), (0.8333333, 0.6166667), (0.8333333, 0.6333333), (0.825, 0.6333333), (0.825, 0.6166667), (0.825, 0.6166667), (0.825, 0.6333333), (0.81666666, 0.6333333), (0.81666666, 0.6166667), (0.81666666, 0.6166667), (0.81666666, 0.6333333), (0.80833334, 0.6333333), (0.80833334, 0.6166667), (0.80833334, 0.6166667), (0.80833334, 0.6333333), (0.8, 0.6333333), (0.8, 0.6166667), (0.8, 0.6166667), (0.8, 0.6333333), (0.7916667, 0.6333333), (0.7916667, 0.6166667), (0.7916667, 0.6166667), (0.7916667, 0.6333333), (0.78333336, 0.6333333), (0.78333336, 0.6166667), (0.78333336, 0.6166667), (0.78333336, 0.6333333), (0.775, 0.6333333), (0.775, 0.6166667), (0.775, 0.6166667), (0.775, 0.6333333), (0.76666665, 0.6333333), (0.76666665, 0.6166667), (0.76666665, 0.6166667), (0.76666665, 0.6333333), (0.7583333, 0.6333333), (0.7583333, 0.6166667), (0.7583333, 0.6166667), (0.7583333, 0.6333333), (0.75, 0.6333333), (0.75, 0.6166667), (0.75, 0.6166667), (0.75, 0.6333333), (0.7416667, 0.6333333), (0.7416667, 0.6166667), (0.7416667, 0.6166667), (0.7416667, 0.6333333), (0.73333335, 0.6333333), (0.73333335, 0.6166667), (0.73333335, 0.6166667), (0.73333335, 0.6333333), (0.725, 0.6333333), (0.725, 0.6166667), (0.725, 0.6166667), (0.725, 0.6333333), (0.71666664, 0.6333333), (0.71666664, 0.6166667), (0.71666664, 0.6166667), (0.71666664, 0.6333333), (0.7083333, 0.6333333), (0.7083333, 0.6166667), (0.7083333, 0.6166667), (0.7083333, 0.6333333), (0.7, 0.6333333), (0.7, 0.6166667), (0.7, 0.6166667), (0.7, 0.6333333), (0.69166666, 0.6333333), (0.69166666, 0.6166667), (0.69166666, 0.6166667), (0.69166666, 0.6333333), (0.68333334, 0.6333333), (0.68333334, 0.6166667), (0.68333334, 0.6166667), (0.68333334, 0.6333333), (0.675, 0.6333333), (0.675, 0.6166667), (0.675, 0.6166667), (0.675, 0.6333333), (0.6666667, 0.6333333), (0.6666667, 0.6166667), (0.6666667, 0.6166667), (0.6666667, 0.6333333), (0.65833336, 0.6333333), (0.65833336, 0.6166667), (0.65833336, 0.6166667), (0.65833336, 0.6333333), (0.65, 0.6333333), (0.65, 0.6166667), (0.65, 0.6166667), (0.65, 0.6333333), (0.64166665, 0.6333333), (0.64166665, 0.6166667), (0.64166665, 0.6166667), (0.64166665, 0.6333333), (0.6333333, 0.6333333), (0.6333333, 0.6166667), (0.6333333, 0.6166667), (0.6333333, 0.6333333), (0.625, 0.6333333), (0.625, 0.6166667), (0.625, 0.6166667), (0.625, 0.6333333), (0.6166667, 0.6333333), (0.6166667, 0.6166667), (0.6166667, 0.6166667), (0.6166667, 0.6333333), (0.60833335, 0.6333333), (0.60833335, 0.6166667), (0.60833335, 0.6166667), (0.60833335, 0.6333333), (0.6, 0.6333333), (0.6, 0.6166667), (0.6, 0.6166667), (0.6, 0.6333333), (0.59166664, 0.6333333), (0.59166664, 0.6166667), (0.59166664, 0.6166667), (0.59166664, 0.6333333), (0.5833333, 0.6333333), (0.5833333, 0.6166667), (0.5833333, 0.6166667), (0.5833333, 0.6333333), (0.575, 0.6333333), (0.575, 0.6166667), (0.575, 0.6166667), (0.575, 0.6333333), (0.56666666, 0.6333333), (0.56666666, 0.6166667), (0.56666666, 0.6166667), (0.56666666, 0.6333333), (0.55833334, 0.6333333), (0.55833334, 0.6166667), (0.55833334, 0.6166667), (0.55833334, 0.6333333), (0.55, 0.6333333), (0.55, 0.6166667), (0.55, 0.6166667), (0.55, 0.6333333), (0.5416667, 0.6333333), (0.5416667, 0.6166667), (0.5416667, 0.6166667), (0.5416667, 0.6333333), (0.53333336, 0.6333333), (0.53333336, 0.6166667), (0.53333336, 0.6166667), (0.53333336, 0.6333333), (0.525, 0.6333333), (0.525, 0.6166667), (0.525, 0.6166667), (0.525, 0.6333333), (0.51666665, 0.6333333), (0.51666665, 0.6166667), (0.51666665, 0.6166667), (0.51666665, 0.6333333), (0.5083333, 0.6333333), (0.5083333, 0.6166667), (0.5083333, 0.6166667), (0.5083333, 0.6333333), (0.5, 0.6333333), (0.5, 0.6166667), (0.5, 0.6166667), (0.5, 0.6333333), (0.49166667, 0.6333333), (0.49166667, 0.6166667), (0.49166667, 0.6166667), (0.49166667, 0.6333333), (0.48333332, 0.6333333), (0.48333332, 0.6166667), (0.48333332, 0.6166667), (0.48333332, 0.6333333), (0.475, 0.6333333), (0.475, 0.6166667), (0.475, 0.6166667), (0.475, 0.6333333), (0.46666667, 0.6333333), (0.46666667, 0.6166667), (0.46666667, 0.6166667), (0.46666667, 0.6333333), (0.45833334, 0.6333333), (0.45833334, 0.6166667), (0.45833334, 0.6166667), (0.45833334, 0.6333333), (0.45, 0.6333333), (0.45, 0.6166667), (0.45, 0.6166667), (0.45, 0.6333333), (0.44166666, 0.6333333), (0.44166666, 0.6166667), (0.44166666, 0.6166667), (0.44166666, 0.6333333), (0.43333334, 0.6333333), (0.43333334, 0.6166667), (0.43333334, 0.6166667), (0.43333334, 0.6333333), (0.425, 0.6333333), (0.425, 0.6166667), (0.425, 0.6166667), (0.425, 0.6333333), (0.41666666, 0.6333333), (0.41666666, 0.6166667), (0.41666666, 0.6166667), (0.41666666, 0.6333333), (0.40833333, 0.6333333), (0.40833333, 0.6166667), (0.40833333, 0.6166667), (0.40833333, 0.6333333), (0.4, 0.6333333), (0.4, 0.6166667), (0.4, 0.6166667), (0.4, 0.6333333), (0.39166668, 0.6333333), (0.39166668, 0.6166667), (0.39166668, 0.6166667), (0.39166668, 0.6333333), (0.38333333, 0.6333333), (0.38333333, 0.6166667), (0.38333333, 0.6166667), (0.38333333, 0.6333333), (0.375, 0.6333333), (0.375, 0.6166667), (0.375, 0.6166667), (0.375, 0.6333333), (0.36666667, 0.6333333), (0.36666667, 0.6166667), (0.36666667, 0.6166667), (0.36666667, 0.6333333), (0.35833332, 0.6333333), (0.35833332, 0.6166667), (0.35833332, 0.6166667), (0.35833332, 0.6333333), (0.35, 0.6333333), (0.35, 0.6166667), (0.35, 0.6166667), (0.35, 0.6333333), (0.34166667, 0.6333333), (0.34166667, 0.6166667), (0.34166667, 0.6166667), (0.34166667, 0.6333333), (0.33333334, 0.6333333), (0.33333334, 0.6166667), (0.33333334, 0.6166667), (0.33333334, 0.6333333), (0.325, 0.6333333), (0.325, 0.6166667), (0.325, 0.6166667), (0.325, 0.6333333), (0.31666666, 0.6333333), (0.31666666, 0.6166667), (0.31666666, 0.6166667), (0.31666666, 0.6333333), (0.30833334, 0.6333333), (0.30833334, 0.6166667), (0.30833334, 0.6166667), (0.30833334, 0.6333333), (0.3, 0.6333333), (0.3, 0.6166667), (0.3, 0.6166667), (0.3, 0.6333333), (0.29166666, 0.6333333), (0.29166666, 0.6166667), (0.29166666, 0.6166667), (0.29166666, 0.6333333), (0.28333333, 0.6333333), (0.28333333, 0.6166667), (0.28333333, 0.6166667), (0.28333333, 0.6333333), (0.275, 0.6333333), (0.275, 0.6166667), (0.275, 0.6166667), (0.275, 0.6333333), (0.26666668, 0.6333333), (0.26666668, 0.6166667), (0.26666668, 0.6166667), (0.26666668, 0.6333333), (0.25833333, 0.6333333), (0.25833333, 0.6166667), (0.25833333, 0.6166667), (0.25833333, 0.6333333), (0.25, 0.6333333), (0.25, 0.6166667), (0.25, 0.6166667), (0.25, 0.6333333), (0.24166666, 0.6333333), (0.24166666, 0.6166667), (0.24166666, 0.6166667), (0.24166666, 0.6333333), (0.23333333, 0.6333333), (0.23333333, 0.6166667), (0.23333333, 0.6166667), (0.23333333, 0.6333333), (0.225, 0.6333333), (0.225, 0.6166667), (0.225, 0.6166667), (0.225, 0.6333333), (0.21666667, 0.6333333), (0.21666667, 0.6166667), (0.21666667, 0.6166667), (0.21666667, 0.6333333), (0.20833333, 0.6333333), (0.20833333, 0.6166667), (0.20833333, 0.6166667), (0.20833333, 0.6333333), (0.2, 0.6333333), (0.2, 0.6166667), (0.2, 0.6166667), (0.2, 0.6333333), (0.19166666, 0.6333333), (0.19166666, 0.6166667), (0.19166666, 0.6166667), (0.19166666, 0.6333333), (0.18333334, 0.6333333), (0.18333334, 0.6166667), (0.18333334, 0.6166667), (0.18333334, 0.6333333), (0.175, 0.6333333), (0.175, 0.6166667), (0.175, 0.6166667), (0.175, 0.6333333), (0.16666667, 0.6333333), (0.16666667, 0.6166667), (0.16666667, 0.6166667), (0.16666667, 0.6333333), (0.15833333, 0.6333333), (0.15833333, 0.6166667), (0.15833333, 0.6166667), (0.15833333, 0.6333333), (0.15, 0.6333333), (0.15, 0.6166667), (0.15, 0.6166667), (0.15, 0.6333333), (0.14166667, 0.6333333), (0.14166667, 0.6166667), (0.14166667, 0.6166667), (0.14166667, 0.6333333), (0.13333334, 0.6333333), (0.13333334, 0.6166667), (0.13333334, 0.6166667), (0.13333334, 0.6333333), (0.125, 0.6333333), (0.125, 0.6166667), (0.125, 0.6166667), (0.125, 0.6333333), (0.11666667, 0.6333333), (0.11666667, 0.6166667), (0.11666667, 0.6166667), (0.11666667, 0.6333333), (0.108333334, 0.6333333), (0.108333334, 0.6166667), (0.108333334, 0.6166667), (0.108333334, 0.6333333), (0.1, 0.6333333), (0.1, 0.6166667), (0.1, 0.6166667), (0.1, 0.6333333), (0.09166667, 0.6333333), (0.09166667, 0.6166667), (0.09166667, 0.6166667), (0.09166667, 0.6333333), (0.083333336, 0.6333333), (0.083333336, 0.6166667), (0.083333336, 0.6166667), (0.083333336, 0.6333333), (0.075, 0.6333333), (0.075, 0.6166667), (0.075, 0.6166667), (0.075, 0.6333333), (0.06666667, 0.6333333), (0.06666667, 0.6166667), (0.06666667, 0.6166667), (0.06666667, 0.6333333), (0.058333334, 0.6333333), (0.058333334, 0.6166667), (0.058333334, 0.6166667), (0.058333334, 0.6333333), (0.05, 0.6333333), (0.05, 0.6166667), (0.05, 0.6166667), (0.05, 0.6333333), (0.041666668, 0.6333333), (0.041666668, 0.6166667), (0.041666668, 0.6166667), (0.041666668, 0.6333333), (0.033333335, 0.6333333), (0.033333335, 0.6166667), (0.033333335, 0.6166667), (0.033333335, 0.6333333), (0.025, 0.6333333), (0.025, 0.6166667), (0.025, 0.6166667), (0.025, 0.6333333), (0.016666668, 0.6333333), (0.016666668, 0.6166667), (0.016666668, 0.6166667), (0.016666668, 0.6333333), (0.008333334, 0.6333333), (0.008333334, 0.6166667), (0.008333334, 0.6166667), (0.008333334, 0.6333333), (0, 0.6333333), (0, 0.6166667), (1, 0.6333333), (1, 0.65), (0.9916667, 0.65), (0.9916667, 0.6333333), (0.9916667, 0.6333333), (0.9916667, 0.65), (0.98333335, 0.65), (0.98333335, 0.6333333), (0.98333335, 0.6333333), (0.98333335, 0.65), (0.975, 0.65), (0.975, 0.6333333), (0.975, 0.6333333), (0.975, 0.65), (0.96666664, 0.65), (0.96666664, 0.6333333), (0.96666664, 0.6333333), (0.96666664, 0.65), (0.9583333, 0.65), (0.9583333, 0.6333333), (0.9583333, 0.6333333), (0.9583333, 0.65), (0.95, 0.65), (0.95, 0.6333333), (0.95, 0.6333333), (0.95, 0.65), (0.94166666, 0.65), (0.94166666, 0.6333333), (0.94166666, 0.6333333), (0.94166666, 0.65), (0.93333334, 0.65), (0.93333334, 0.6333333), (0.93333334, 0.6333333), (0.93333334, 0.65), (0.925, 0.65), (0.925, 0.6333333), (0.925, 0.6333333), (0.925, 0.65), (0.9166667, 0.65), (0.9166667, 0.6333333), (0.9166667, 0.6333333), (0.9166667, 0.65), (0.90833336, 0.65), (0.90833336, 0.6333333), (0.90833336, 0.6333333), (0.90833336, 0.65), (0.9, 0.65), (0.9, 0.6333333), (0.9, 0.6333333), (0.9, 0.65), (0.89166665, 0.65), (0.89166665, 0.6333333), (0.89166665, 0.6333333), (0.89166665, 0.65), (0.8833333, 0.65), (0.8833333, 0.6333333), (0.8833333, 0.6333333), (0.8833333, 0.65), (0.875, 0.65), (0.875, 0.6333333), (0.875, 0.6333333), (0.875, 0.65), (0.8666667, 0.65), (0.8666667, 0.6333333), (0.8666667, 0.6333333), (0.8666667, 0.65), (0.85833335, 0.65), (0.85833335, 0.6333333), (0.85833335, 0.6333333), (0.85833335, 0.65), (0.85, 0.65), (0.85, 0.6333333), (0.85, 0.6333333), (0.85, 0.65), (0.84166664, 0.65), (0.84166664, 0.6333333), (0.84166664, 0.6333333), (0.84166664, 0.65), (0.8333333, 0.65), (0.8333333, 0.6333333), (0.8333333, 0.6333333), (0.8333333, 0.65), (0.825, 0.65), (0.825, 0.6333333), (0.825, 0.6333333), (0.825, 0.65), (0.81666666, 0.65), (0.81666666, 0.6333333), (0.81666666, 0.6333333), (0.81666666, 0.65), (0.80833334, 0.65), (0.80833334, 0.6333333), (0.80833334, 0.6333333), (0.80833334, 0.65), (0.8, 0.65), (0.8, 0.6333333), (0.8, 0.6333333), (0.8, 0.65), (0.7916667, 0.65), (0.7916667, 0.6333333), (0.7916667, 0.6333333), (0.7916667, 0.65), (0.78333336, 0.65), (0.78333336, 0.6333333), (0.78333336, 0.6333333), (0.78333336, 0.65), (0.775, 0.65), (0.775, 0.6333333), (0.775, 0.6333333), (0.775, 0.65), (0.76666665, 0.65), (0.76666665, 0.6333333), (0.76666665, 0.6333333), (0.76666665, 0.65), (0.7583333, 0.65), (0.7583333, 0.6333333), (0.7583333, 0.6333333), (0.7583333, 0.65), (0.75, 0.65), (0.75, 0.6333333), (0.75, 0.6333333), (0.75, 0.65), (0.7416667, 0.65), (0.7416667, 0.6333333), (0.7416667, 0.6333333), (0.7416667, 0.65), (0.73333335, 0.65), (0.73333335, 0.6333333), (0.73333335, 0.6333333), (0.73333335, 0.65), (0.725, 0.65), (0.725, 0.6333333), (0.725, 0.6333333), (0.725, 0.65), (0.71666664, 0.65), (0.71666664, 0.6333333), (0.71666664, 0.6333333), (0.71666664, 0.65), (0.7083333, 0.65), (0.7083333, 0.6333333), (0.7083333, 0.6333333), (0.7083333, 0.65), (0.7, 0.65), (0.7, 0.6333333), (0.7, 0.6333333), (0.7, 0.65), (0.69166666, 0.65), (0.69166666, 0.6333333), (0.69166666, 0.6333333), (0.69166666, 0.65), (0.68333334, 0.65), (0.68333334, 0.6333333), (0.68333334, 0.6333333), (0.68333334, 0.65), (0.675, 0.65), (0.675, 0.6333333), (0.675, 0.6333333), (0.675, 0.65), (0.6666667, 0.65), (0.6666667, 0.6333333), (0.6666667, 0.6333333), (0.6666667, 0.65), (0.65833336, 0.65), (0.65833336, 0.6333333), (0.65833336, 0.6333333), (0.65833336, 0.65), (0.65, 0.65), (0.65, 0.6333333), (0.65, 0.6333333), (0.65, 0.65), (0.64166665, 0.65), (0.64166665, 0.6333333), (0.64166665, 0.6333333), (0.64166665, 0.65), (0.6333333, 0.65), (0.6333333, 0.6333333), (0.6333333, 0.6333333), (0.6333333, 0.65), (0.625, 0.65), (0.625, 0.6333333), (0.625, 0.6333333), (0.625, 0.65), (0.6166667, 0.65), (0.6166667, 0.6333333), (0.6166667, 0.6333333), (0.6166667, 0.65), (0.60833335, 0.65), (0.60833335, 0.6333333), (0.60833335, 0.6333333), (0.60833335, 0.65), (0.6, 0.65), (0.6, 0.6333333), (0.6, 0.6333333), (0.6, 0.65), (0.59166664, 0.65), (0.59166664, 0.6333333), (0.59166664, 0.6333333), (0.59166664, 0.65), (0.5833333, 0.65), (0.5833333, 0.6333333), (0.5833333, 0.6333333), (0.5833333, 0.65), (0.575, 0.65), (0.575, 0.6333333), (0.575, 0.6333333), (0.575, 0.65), (0.56666666, 0.65), (0.56666666, 0.6333333), (0.56666666, 0.6333333), (0.56666666, 0.65), (0.55833334, 0.65), (0.55833334, 0.6333333), (0.55833334, 0.6333333), (0.55833334, 0.65), (0.55, 0.65), (0.55, 0.6333333), (0.55, 0.6333333), (0.55, 0.65), (0.5416667, 0.65), (0.5416667, 0.6333333), (0.5416667, 0.6333333), (0.5416667, 0.65), (0.53333336, 0.65), (0.53333336, 0.6333333), (0.53333336, 0.6333333), (0.53333336, 0.65), (0.525, 0.65), (0.525, 0.6333333), (0.525, 0.6333333), (0.525, 0.65), (0.51666665, 0.65), (0.51666665, 0.6333333), (0.51666665, 0.6333333), (0.51666665, 0.65), (0.5083333, 0.65), (0.5083333, 0.6333333), (0.5083333, 0.6333333), (0.5083333, 0.65), (0.5, 0.65), (0.5, 0.6333333), (0.5, 0.6333333), (0.5, 0.65), (0.49166667, 0.65), (0.49166667, 0.6333333), (0.49166667, 0.6333333), (0.49166667, 0.65), (0.48333332, 0.65), (0.48333332, 0.6333333), (0.48333332, 0.6333333), (0.48333332, 0.65), (0.475, 0.65), (0.475, 0.6333333), (0.475, 0.6333333), (0.475, 0.65), (0.46666667, 0.65), (0.46666667, 0.6333333), (0.46666667, 0.6333333), (0.46666667, 0.65), (0.45833334, 0.65), (0.45833334, 0.6333333), (0.45833334, 0.6333333), (0.45833334, 0.65), (0.45, 0.65), (0.45, 0.6333333), (0.45, 0.6333333), (0.45, 0.65), (0.44166666, 0.65), (0.44166666, 0.6333333), (0.44166666, 0.6333333), (0.44166666, 0.65), (0.43333334, 0.65), (0.43333334, 0.6333333), (0.43333334, 0.6333333), (0.43333334, 0.65), (0.425, 0.65), (0.425, 0.6333333), (0.425, 0.6333333), (0.425, 0.65), (0.41666666, 0.65), (0.41666666, 0.6333333), (0.41666666, 0.6333333), (0.41666666, 0.65), (0.40833333, 0.65), (0.40833333, 0.6333333), (0.40833333, 0.6333333), (0.40833333, 0.65), (0.4, 0.65), (0.4, 0.6333333), (0.4, 0.6333333), (0.4, 0.65), (0.39166668, 0.65), (0.39166668, 0.6333333), (0.39166668, 0.6333333), (0.39166668, 0.65), (0.38333333, 0.65), (0.38333333, 0.6333333), (0.38333333, 0.6333333), (0.38333333, 0.65), (0.375, 0.65), (0.375, 0.6333333), (0.375, 0.6333333), (0.375, 0.65), (0.36666667, 0.65), (0.36666667, 0.6333333), (0.36666667, 0.6333333), (0.36666667, 0.65), (0.35833332, 0.65), (0.35833332, 0.6333333), (0.35833332, 0.6333333), (0.35833332, 0.65), (0.35, 0.65), (0.35, 0.6333333), (0.35, 0.6333333), (0.35, 0.65), (0.34166667, 0.65), (0.34166667, 0.6333333), (0.34166667, 0.6333333), (0.34166667, 0.65), (0.33333334, 0.65), (0.33333334, 0.6333333), (0.33333334, 0.6333333), (0.33333334, 0.65), (0.325, 0.65), (0.325, 0.6333333), (0.325, 0.6333333), (0.325, 0.65), (0.31666666, 0.65), (0.31666666, 0.6333333), (0.31666666, 0.6333333), (0.31666666, 0.65), (0.30833334, 0.65), (0.30833334, 0.6333333), (0.30833334, 0.6333333), (0.30833334, 0.65), (0.3, 0.65), (0.3, 0.6333333), (0.3, 0.6333333), (0.3, 0.65), (0.29166666, 0.65), (0.29166666, 0.6333333), (0.29166666, 0.6333333), (0.29166666, 0.65), (0.28333333, 0.65), (0.28333333, 0.6333333), (0.28333333, 0.6333333), (0.28333333, 0.65), (0.275, 0.65), (0.275, 0.6333333), (0.275, 0.6333333), (0.275, 0.65), (0.26666668, 0.65), (0.26666668, 0.6333333), (0.26666668, 0.6333333), (0.26666668, 0.65), (0.25833333, 0.65), (0.25833333, 0.6333333), (0.25833333, 0.6333333), (0.25833333, 0.65), (0.25, 0.65), (0.25, 0.6333333), (0.25, 0.6333333), (0.25, 0.65), (0.24166666, 0.65), (0.24166666, 0.6333333), (0.24166666, 0.6333333), (0.24166666, 0.65), (0.23333333, 0.65), (0.23333333, 0.6333333), (0.23333333, 0.6333333), (0.23333333, 0.65), (0.225, 0.65), (0.225, 0.6333333), (0.225, 0.6333333), (0.225, 0.65), (0.21666667, 0.65), (0.21666667, 0.6333333), (0.21666667, 0.6333333), (0.21666667, 0.65), (0.20833333, 0.65), (0.20833333, 0.6333333), (0.20833333, 0.6333333), (0.20833333, 0.65), (0.2, 0.65), (0.2, 0.6333333), (0.2, 0.6333333), (0.2, 0.65), (0.19166666, 0.65), (0.19166666, 0.6333333), (0.19166666, 0.6333333), (0.19166666, 0.65), (0.18333334, 0.65), (0.18333334, 0.6333333), (0.18333334, 0.6333333), (0.18333334, 0.65), (0.175, 0.65), (0.175, 0.6333333), (0.175, 0.6333333), (0.175, 0.65), (0.16666667, 0.65), (0.16666667, 0.6333333), (0.16666667, 0.6333333), (0.16666667, 0.65), (0.15833333, 0.65), (0.15833333, 0.6333333), (0.15833333, 0.6333333), (0.15833333, 0.65), (0.15, 0.65), (0.15, 0.6333333), (0.15, 0.6333333), (0.15, 0.65), (0.14166667, 0.65), (0.14166667, 0.6333333), (0.14166667, 0.6333333), (0.14166667, 0.65), (0.13333334, 0.65), (0.13333334, 0.6333333), (0.13333334, 0.6333333), (0.13333334, 0.65), (0.125, 0.65), (0.125, 0.6333333), (0.125, 0.6333333), (0.125, 0.65), (0.11666667, 0.65), (0.11666667, 0.6333333), (0.11666667, 0.6333333), (0.11666667, 0.65), (0.108333334, 0.65), (0.108333334, 0.6333333), (0.108333334, 0.6333333), (0.108333334, 0.65), (0.1, 0.65), (0.1, 0.6333333), (0.1, 0.6333333), (0.1, 0.65), (0.09166667, 0.65), (0.09166667, 0.6333333), (0.09166667, 0.6333333), (0.09166667, 0.65), (0.083333336, 0.65), (0.083333336, 0.6333333), (0.083333336, 0.6333333), (0.083333336, 0.65), (0.075, 0.65), (0.075, 0.6333333), (0.075, 0.6333333), (0.075, 0.65), (0.06666667, 0.65), (0.06666667, 0.6333333), (0.06666667, 0.6333333), (0.06666667, 0.65), (0.058333334, 0.65), (0.058333334, 0.6333333), (0.058333334, 0.6333333), (0.058333334, 0.65), (0.05, 0.65), (0.05, 0.6333333), (0.05, 0.6333333), (0.05, 0.65), (0.041666668, 0.65), (0.041666668, 0.6333333), (0.041666668, 0.6333333), (0.041666668, 0.65), (0.033333335, 0.65), (0.033333335, 0.6333333), (0.033333335, 0.6333333), (0.033333335, 0.65), (0.025, 0.65), (0.025, 0.6333333), (0.025, 0.6333333), (0.025, 0.65), (0.016666668, 0.65), (0.016666668, 0.6333333), (0.016666668, 0.6333333), (0.016666668, 0.65), (0.008333334, 0.65), (0.008333334, 0.6333333), (0.008333334, 0.6333333), (0.008333334, 0.65), (0, 0.65), (0, 0.6333333), (1, 0.65), (1, 0.6666667), (0.9916667, 0.6666667), (0.9916667, 0.65), (0.9916667, 0.65), (0.9916667, 0.6666667), (0.98333335, 0.6666667), (0.98333335, 0.65), (0.98333335, 0.65), (0.98333335, 0.6666667), (0.975, 0.6666667), (0.975, 0.65), (0.975, 0.65), (0.975, 0.6666667), (0.96666664, 0.6666667), (0.96666664, 0.65), (0.96666664, 0.65), (0.96666664, 0.6666667), (0.9583333, 0.6666667), (0.9583333, 0.65), (0.9583333, 0.65), (0.9583333, 0.6666667), (0.95, 0.6666667), (0.95, 0.65), (0.95, 0.65), (0.95, 0.6666667), (0.94166666, 0.6666667), (0.94166666, 0.65), (0.94166666, 0.65), (0.94166666, 0.6666667), (0.93333334, 0.6666667), (0.93333334, 0.65), (0.93333334, 0.65), (0.93333334, 0.6666667), (0.925, 0.6666667), (0.925, 0.65), (0.925, 0.65), (0.925, 0.6666667), (0.9166667, 0.6666667), (0.9166667, 0.65), (0.9166667, 0.65), (0.9166667, 0.6666667), (0.90833336, 0.6666667), (0.90833336, 0.65), (0.90833336, 0.65), (0.90833336, 0.6666667), (0.9, 0.6666667), (0.9, 0.65), (0.9, 0.65), (0.9, 0.6666667), (0.89166665, 0.6666667), (0.89166665, 0.65), (0.89166665, 0.65), (0.89166665, 0.6666667), (0.8833333, 0.6666667), (0.8833333, 0.65), (0.8833333, 0.65), (0.8833333, 0.6666667), (0.875, 0.6666667), (0.875, 0.65), (0.875, 0.65), (0.875, 0.6666667), (0.8666667, 0.6666667), (0.8666667, 0.65), (0.8666667, 0.65), (0.8666667, 0.6666667), (0.85833335, 0.6666667), (0.85833335, 0.65), (0.85833335, 0.65), (0.85833335, 0.6666667), (0.85, 0.6666667), (0.85, 0.65), (0.85, 0.65), (0.85, 0.6666667), (0.84166664, 0.6666667), (0.84166664, 0.65), (0.84166664, 0.65), (0.84166664, 0.6666667), (0.8333333, 0.6666667), (0.8333333, 0.65), (0.8333333, 0.65), (0.8333333, 0.6666667), (0.825, 0.6666667), (0.825, 0.65), (0.825, 0.65), (0.825, 0.6666667), (0.81666666, 0.6666667), (0.81666666, 0.65), (0.81666666, 0.65), (0.81666666, 0.6666667), (0.80833334, 0.6666667), (0.80833334, 0.65), (0.80833334, 0.65), (0.80833334, 0.6666667), (0.8, 0.6666667), (0.8, 0.65), (0.8, 0.65), (0.8, 0.6666667), (0.7916667, 0.6666667), (0.7916667, 0.65), (0.7916667, 0.65), (0.7916667, 0.6666667), (0.78333336, 0.6666667), (0.78333336, 0.65), (0.78333336, 0.65), (0.78333336, 0.6666667), (0.775, 0.6666667), (0.775, 0.65), (0.775, 0.65), (0.775, 0.6666667), (0.76666665, 0.6666667), (0.76666665, 0.65), (0.76666665, 0.65), (0.76666665, 0.6666667), (0.7583333, 0.6666667), (0.7583333, 0.65), (0.7583333, 0.65), (0.7583333, 0.6666667), (0.75, 0.6666667), (0.75, 0.65), (0.75, 0.65), (0.75, 0.6666667), (0.7416667, 0.6666667), (0.7416667, 0.65), (0.7416667, 0.65), (0.7416667, 0.6666667), (0.73333335, 0.6666667), (0.73333335, 0.65), (0.73333335, 0.65), (0.73333335, 0.6666667), (0.725, 0.6666667), (0.725, 0.65), (0.725, 0.65), (0.725, 0.6666667), (0.71666664, 0.6666667), (0.71666664, 0.65), (0.71666664, 0.65), (0.71666664, 0.6666667), (0.7083333, 0.6666667), (0.7083333, 0.65), (0.7083333, 0.65), (0.7083333, 0.6666667), (0.7, 0.6666667), (0.7, 0.65), (0.7, 0.65), (0.7, 0.6666667), (0.69166666, 0.6666667), (0.69166666, 0.65), (0.69166666, 0.65), (0.69166666, 0.6666667), (0.68333334, 0.6666667), (0.68333334, 0.65), (0.68333334, 0.65), (0.68333334, 0.6666667), (0.675, 0.6666667), (0.675, 0.65), (0.675, 0.65), (0.675, 0.6666667), (0.6666667, 0.6666667), (0.6666667, 0.65), (0.6666667, 0.65), (0.6666667, 0.6666667), (0.65833336, 0.6666667), (0.65833336, 0.65), (0.65833336, 0.65), (0.65833336, 0.6666667), (0.65, 0.6666667), (0.65, 0.65), (0.65, 0.65), (0.65, 0.6666667), (0.64166665, 0.6666667), (0.64166665, 0.65), (0.64166665, 0.65), (0.64166665, 0.6666667), (0.6333333, 0.6666667), (0.6333333, 0.65), (0.6333333, 0.65), (0.6333333, 0.6666667), (0.625, 0.6666667), (0.625, 0.65), (0.625, 0.65), (0.625, 0.6666667), (0.6166667, 0.6666667), (0.6166667, 0.65), (0.6166667, 0.65), (0.6166667, 0.6666667), (0.60833335, 0.6666667), (0.60833335, 0.65), (0.60833335, 0.65), (0.60833335, 0.6666667), (0.6, 0.6666667), (0.6, 0.65), (0.6, 0.65), (0.6, 0.6666667), (0.59166664, 0.6666667), (0.59166664, 0.65), (0.59166664, 0.65), (0.59166664, 0.6666667), (0.5833333, 0.6666667), (0.5833333, 0.65), (0.5833333, 0.65), (0.5833333, 0.6666667), (0.575, 0.6666667), (0.575, 0.65), (0.575, 0.65), (0.575, 0.6666667), (0.56666666, 0.6666667), (0.56666666, 0.65), (0.56666666, 0.65), (0.56666666, 0.6666667), (0.55833334, 0.6666667), (0.55833334, 0.65), (0.55833334, 0.65), (0.55833334, 0.6666667), (0.55, 0.6666667), (0.55, 0.65), (0.55, 0.65), (0.55, 0.6666667), (0.5416667, 0.6666667), (0.5416667, 0.65), (0.5416667, 0.65), (0.5416667, 0.6666667), (0.53333336, 0.6666667), (0.53333336, 0.65), (0.53333336, 0.65), (0.53333336, 0.6666667), (0.525, 0.6666667), (0.525, 0.65), (0.525, 0.65), (0.525, 0.6666667), (0.51666665, 0.6666667), (0.51666665, 0.65), (0.51666665, 0.65), (0.51666665, 0.6666667), (0.5083333, 0.6666667), (0.5083333, 0.65), (0.5083333, 0.65), (0.5083333, 0.6666667), (0.5, 0.6666667), (0.5, 0.65), (0.5, 0.65), (0.5, 0.6666667), (0.49166667, 0.6666667), (0.49166667, 0.65), (0.49166667, 0.65), (0.49166667, 0.6666667), (0.48333332, 0.6666667), (0.48333332, 0.65), (0.48333332, 0.65), (0.48333332, 0.6666667), (0.475, 0.6666667), (0.475, 0.65), (0.475, 0.65), (0.475, 0.6666667), (0.46666667, 0.6666667), (0.46666667, 0.65), (0.46666667, 0.65), (0.46666667, 0.6666667), (0.45833334, 0.6666667), (0.45833334, 0.65), (0.45833334, 0.65), (0.45833334, 0.6666667), (0.45, 0.6666667), (0.45, 0.65), (0.45, 0.65), (0.45, 0.6666667), (0.44166666, 0.6666667), (0.44166666, 0.65), (0.44166666, 0.65), (0.44166666, 0.6666667), (0.43333334, 0.6666667), (0.43333334, 0.65), (0.43333334, 0.65), (0.43333334, 0.6666667), (0.425, 0.6666667), (0.425, 0.65), (0.425, 0.65), (0.425, 0.6666667), (0.41666666, 0.6666667), (0.41666666, 0.65), (0.41666666, 0.65), (0.41666666, 0.6666667), (0.40833333, 0.6666667), (0.40833333, 0.65), (0.40833333, 0.65), (0.40833333, 0.6666667), (0.4, 0.6666667), (0.4, 0.65), (0.4, 0.65), (0.4, 0.6666667), (0.39166668, 0.6666667), (0.39166668, 0.65), (0.39166668, 0.65), (0.39166668, 0.6666667), (0.38333333, 0.6666667), (0.38333333, 0.65), (0.38333333, 0.65), (0.38333333, 0.6666667), (0.375, 0.6666667), (0.375, 0.65), (0.375, 0.65), (0.375, 0.6666667), (0.36666667, 0.6666667), (0.36666667, 0.65), (0.36666667, 0.65), (0.36666667, 0.6666667), (0.35833332, 0.6666667), (0.35833332, 0.65), (0.35833332, 0.65), (0.35833332, 0.6666667), (0.35, 0.6666667), (0.35, 0.65), (0.35, 0.65), (0.35, 0.6666667), (0.34166667, 0.6666667), (0.34166667, 0.65), (0.34166667, 0.65), (0.34166667, 0.6666667), (0.33333334, 0.6666667), (0.33333334, 0.65), (0.33333334, 0.65), (0.33333334, 0.6666667), (0.325, 0.6666667), (0.325, 0.65), (0.325, 0.65), (0.325, 0.6666667), (0.31666666, 0.6666667), (0.31666666, 0.65), (0.31666666, 0.65), (0.31666666, 0.6666667), (0.30833334, 0.6666667), (0.30833334, 0.65), (0.30833334, 0.65), (0.30833334, 0.6666667), (0.3, 0.6666667), (0.3, 0.65), (0.3, 0.65), (0.3, 0.6666667), (0.29166666, 0.6666667), (0.29166666, 0.65), (0.29166666, 0.65), (0.29166666, 0.6666667), (0.28333333, 0.6666667), (0.28333333, 0.65), (0.28333333, 0.65), (0.28333333, 0.6666667), (0.275, 0.6666667), (0.275, 0.65), (0.275, 0.65), (0.275, 0.6666667), (0.26666668, 0.6666667), (0.26666668, 0.65), (0.26666668, 0.65), (0.26666668, 0.6666667), (0.25833333, 0.6666667), (0.25833333, 0.65), (0.25833333, 0.65), (0.25833333, 0.6666667), (0.25, 0.6666667), (0.25, 0.65), (0.25, 0.65), (0.25, 0.6666667), (0.24166666, 0.6666667), (0.24166666, 0.65), (0.24166666, 0.65), (0.24166666, 0.6666667), (0.23333333, 0.6666667), (0.23333333, 0.65), (0.23333333, 0.65), (0.23333333, 0.6666667), (0.225, 0.6666667), (0.225, 0.65), (0.225, 0.65), (0.225, 0.6666667), (0.21666667, 0.6666667), (0.21666667, 0.65), (0.21666667, 0.65), (0.21666667, 0.6666667), (0.20833333, 0.6666667), (0.20833333, 0.65), (0.20833333, 0.65), (0.20833333, 0.6666667), (0.2, 0.6666667), (0.2, 0.65), (0.2, 0.65), (0.2, 0.6666667), (0.19166666, 0.6666667), (0.19166666, 0.65), (0.19166666, 0.65), (0.19166666, 0.6666667), (0.18333334, 0.6666667), (0.18333334, 0.65), (0.18333334, 0.65), (0.18333334, 0.6666667), (0.175, 0.6666667), (0.175, 0.65), (0.175, 0.65), (0.175, 0.6666667), (0.16666667, 0.6666667), (0.16666667, 0.65), (0.16666667, 0.65), (0.16666667, 0.6666667), (0.15833333, 0.6666667), (0.15833333, 0.65), (0.15833333, 0.65), (0.15833333, 0.6666667), (0.15, 0.6666667), (0.15, 0.65), (0.15, 0.65), (0.15, 0.6666667), (0.14166667, 0.6666667), (0.14166667, 0.65), (0.14166667, 0.65), (0.14166667, 0.6666667), (0.13333334, 0.6666667), (0.13333334, 0.65), (0.13333334, 0.65), (0.13333334, 0.6666667), (0.125, 0.6666667), (0.125, 0.65), (0.125, 0.65), (0.125, 0.6666667), (0.11666667, 0.6666667), (0.11666667, 0.65), (0.11666667, 0.65), (0.11666667, 0.6666667), (0.108333334, 0.6666667), (0.108333334, 0.65), (0.108333334, 0.65), (0.108333334, 0.6666667), (0.1, 0.6666667), (0.1, 0.65), (0.1, 0.65), (0.1, 0.6666667), (0.09166667, 0.6666667), (0.09166667, 0.65), (0.09166667, 0.65), (0.09166667, 0.6666667), (0.083333336, 0.6666667), (0.083333336, 0.65), (0.083333336, 0.65), (0.083333336, 0.6666667), (0.075, 0.6666667), (0.075, 0.65), (0.075, 0.65), (0.075, 0.6666667), (0.06666667, 0.6666667), (0.06666667, 0.65), (0.06666667, 0.65), (0.06666667, 0.6666667), (0.058333334, 0.6666667), (0.058333334, 0.65), (0.058333334, 0.65), (0.058333334, 0.6666667), (0.05, 0.6666667), (0.05, 0.65), (0.05, 0.65), (0.05, 0.6666667), (0.041666668, 0.6666667), (0.041666668, 0.65), (0.041666668, 0.65), (0.041666668, 0.6666667), (0.033333335, 0.6666667), (0.033333335, 0.65), (0.033333335, 0.65), (0.033333335, 0.6666667), (0.025, 0.6666667), (0.025, 0.65), (0.025, 0.65), (0.025, 0.6666667), (0.016666668, 0.6666667), (0.016666668, 0.65), (0.016666668, 0.65), (0.016666668, 0.6666667), (0.008333334, 0.6666667), (0.008333334, 0.65), (0.008333334, 0.65), (0.008333334, 0.6666667), (0, 0.6666667), (0, 0.65), (1, 0.6666667), (1, 0.68333334), (0.9916667, 0.68333334), (0.9916667, 0.6666667), (0.9916667, 0.6666667), (0.9916667, 0.68333334), (0.98333335, 0.68333334), (0.98333335, 0.6666667), (0.98333335, 0.6666667), (0.98333335, 0.68333334), (0.975, 0.68333334), (0.975, 0.6666667), (0.975, 0.6666667), (0.975, 0.68333334), (0.96666664, 0.68333334), (0.96666664, 0.6666667), (0.96666664, 0.6666667), (0.96666664, 0.68333334), (0.9583333, 0.68333334), (0.9583333, 0.6666667), (0.9583333, 0.6666667), (0.9583333, 0.68333334), (0.95, 0.68333334), (0.95, 0.6666667), (0.95, 0.6666667), (0.95, 0.68333334), (0.94166666, 0.68333334), (0.94166666, 0.6666667), (0.94166666, 0.6666667), (0.94166666, 0.68333334), (0.93333334, 0.68333334), (0.93333334, 0.6666667), (0.93333334, 0.6666667), (0.93333334, 0.68333334), (0.925, 0.68333334), (0.925, 0.6666667), (0.925, 0.6666667), (0.925, 0.68333334), (0.9166667, 0.68333334), (0.9166667, 0.6666667), (0.9166667, 0.6666667), (0.9166667, 0.68333334), (0.90833336, 0.68333334), (0.90833336, 0.6666667), (0.90833336, 0.6666667), (0.90833336, 0.68333334), (0.9, 0.68333334), (0.9, 0.6666667), (0.9, 0.6666667), (0.9, 0.68333334), (0.89166665, 0.68333334), (0.89166665, 0.6666667), (0.89166665, 0.6666667), (0.89166665, 0.68333334), (0.8833333, 0.68333334), (0.8833333, 0.6666667), (0.8833333, 0.6666667), (0.8833333, 0.68333334), (0.875, 0.68333334), (0.875, 0.6666667), (0.875, 0.6666667), (0.875, 0.68333334), (0.8666667, 0.68333334), (0.8666667, 0.6666667), (0.8666667, 0.6666667), (0.8666667, 0.68333334), (0.85833335, 0.68333334), (0.85833335, 0.6666667), (0.85833335, 0.6666667), (0.85833335, 0.68333334), (0.85, 0.68333334), (0.85, 0.6666667), (0.85, 0.6666667), (0.85, 0.68333334), (0.84166664, 0.68333334), (0.84166664, 0.6666667), (0.84166664, 0.6666667), (0.84166664, 0.68333334), (0.8333333, 0.68333334), (0.8333333, 0.6666667), (0.8333333, 0.6666667), (0.8333333, 0.68333334), (0.825, 0.68333334), (0.825, 0.6666667), (0.825, 0.6666667), (0.825, 0.68333334), (0.81666666, 0.68333334), (0.81666666, 0.6666667), (0.81666666, 0.6666667), (0.81666666, 0.68333334), (0.80833334, 0.68333334), (0.80833334, 0.6666667), (0.80833334, 0.6666667), (0.80833334, 0.68333334), (0.8, 0.68333334), (0.8, 0.6666667), (0.8, 0.6666667), (0.8, 0.68333334), (0.7916667, 0.68333334), (0.7916667, 0.6666667), (0.7916667, 0.6666667), (0.7916667, 0.68333334), (0.78333336, 0.68333334), (0.78333336, 0.6666667), (0.78333336, 0.6666667), (0.78333336, 0.68333334), (0.775, 0.68333334), (0.775, 0.6666667), (0.775, 0.6666667), (0.775, 0.68333334), (0.76666665, 0.68333334), (0.76666665, 0.6666667), (0.76666665, 0.6666667), (0.76666665, 0.68333334), (0.7583333, 0.68333334), (0.7583333, 0.6666667), (0.7583333, 0.6666667), (0.7583333, 0.68333334), (0.75, 0.68333334), (0.75, 0.6666667), (0.75, 0.6666667), (0.75, 0.68333334), (0.7416667, 0.68333334), (0.7416667, 0.6666667), (0.7416667, 0.6666667), (0.7416667, 0.68333334), (0.73333335, 0.68333334), (0.73333335, 0.6666667), (0.73333335, 0.6666667), (0.73333335, 0.68333334), (0.725, 0.68333334), (0.725, 0.6666667), (0.725, 0.6666667), (0.725, 0.68333334), (0.71666664, 0.68333334), (0.71666664, 0.6666667), (0.71666664, 0.6666667), (0.71666664, 0.68333334), (0.7083333, 0.68333334), (0.7083333, 0.6666667), (0.7083333, 0.6666667), (0.7083333, 0.68333334), (0.7, 0.68333334), (0.7, 0.6666667), (0.7, 0.6666667), (0.7, 0.68333334), (0.69166666, 0.68333334), (0.69166666, 0.6666667), (0.69166666, 0.6666667), (0.69166666, 0.68333334), (0.68333334, 0.68333334), (0.68333334, 0.6666667), (0.68333334, 0.6666667), (0.68333334, 0.68333334), (0.675, 0.68333334), (0.675, 0.6666667), (0.675, 0.6666667), (0.675, 0.68333334), (0.6666667, 0.68333334), (0.6666667, 0.6666667), (0.6666667, 0.6666667), (0.6666667, 0.68333334), (0.65833336, 0.68333334), (0.65833336, 0.6666667), (0.65833336, 0.6666667), (0.65833336, 0.68333334), (0.65, 0.68333334), (0.65, 0.6666667), (0.65, 0.6666667), (0.65, 0.68333334), (0.64166665, 0.68333334), (0.64166665, 0.6666667), (0.64166665, 0.6666667), (0.64166665, 0.68333334), (0.6333333, 0.68333334), (0.6333333, 0.6666667), (0.6333333, 0.6666667), (0.6333333, 0.68333334), (0.625, 0.68333334), (0.625, 0.6666667), (0.625, 0.6666667), (0.625, 0.68333334), (0.6166667, 0.68333334), (0.6166667, 0.6666667), (0.6166667, 0.6666667), (0.6166667, 0.68333334), (0.60833335, 0.68333334), (0.60833335, 0.6666667), (0.60833335, 0.6666667), (0.60833335, 0.68333334), (0.6, 0.68333334), (0.6, 0.6666667), (0.6, 0.6666667), (0.6, 0.68333334), (0.59166664, 0.68333334), (0.59166664, 0.6666667), (0.59166664, 0.6666667), (0.59166664, 0.68333334), (0.5833333, 0.68333334), (0.5833333, 0.6666667), (0.5833333, 0.6666667), (0.5833333, 0.68333334), (0.575, 0.68333334), (0.575, 0.6666667), (0.575, 0.6666667), (0.575, 0.68333334), (0.56666666, 0.68333334), (0.56666666, 0.6666667), (0.56666666, 0.6666667), (0.56666666, 0.68333334), (0.55833334, 0.68333334), (0.55833334, 0.6666667), (0.55833334, 0.6666667), (0.55833334, 0.68333334), (0.55, 0.68333334), (0.55, 0.6666667), (0.55, 0.6666667), (0.55, 0.68333334), (0.5416667, 0.68333334), (0.5416667, 0.6666667), (0.5416667, 0.6666667), (0.5416667, 0.68333334), (0.53333336, 0.68333334), (0.53333336, 0.6666667), (0.53333336, 0.6666667), (0.53333336, 0.68333334), (0.525, 0.68333334), (0.525, 0.6666667), (0.525, 0.6666667), (0.525, 0.68333334), (0.51666665, 0.68333334), (0.51666665, 0.6666667), (0.51666665, 0.6666667), (0.51666665, 0.68333334), (0.5083333, 0.68333334), (0.5083333, 0.6666667), (0.5083333, 0.6666667), (0.5083333, 0.68333334), (0.5, 0.68333334), (0.5, 0.6666667), (0.5, 0.6666667), (0.5, 0.68333334), (0.49166667, 0.68333334), (0.49166667, 0.6666667), (0.49166667, 0.6666667), (0.49166667, 0.68333334), (0.48333332, 0.68333334), (0.48333332, 0.6666667), (0.48333332, 0.6666667), (0.48333332, 0.68333334), (0.475, 0.68333334), (0.475, 0.6666667), (0.475, 0.6666667), (0.475, 0.68333334), (0.46666667, 0.68333334), (0.46666667, 0.6666667), (0.46666667, 0.6666667), (0.46666667, 0.68333334), (0.45833334, 0.68333334), (0.45833334, 0.6666667), (0.45833334, 0.6666667), (0.45833334, 0.68333334), (0.45, 0.68333334), (0.45, 0.6666667), (0.45, 0.6666667), (0.45, 0.68333334), (0.44166666, 0.68333334), (0.44166666, 0.6666667), (0.44166666, 0.6666667), (0.44166666, 0.68333334), (0.43333334, 0.68333334), (0.43333334, 0.6666667), (0.43333334, 0.6666667), (0.43333334, 0.68333334), (0.425, 0.68333334), (0.425, 0.6666667), (0.425, 0.6666667), (0.425, 0.68333334), (0.41666666, 0.68333334), (0.41666666, 0.6666667), (0.41666666, 0.6666667), (0.41666666, 0.68333334), (0.40833333, 0.68333334), (0.40833333, 0.6666667), (0.40833333, 0.6666667), (0.40833333, 0.68333334), (0.4, 0.68333334), (0.4, 0.6666667), (0.4, 0.6666667), (0.4, 0.68333334), (0.39166668, 0.68333334), (0.39166668, 0.6666667), (0.39166668, 0.6666667), (0.39166668, 0.68333334), (0.38333333, 0.68333334), (0.38333333, 0.6666667), (0.38333333, 0.6666667), (0.38333333, 0.68333334), (0.375, 0.68333334), (0.375, 0.6666667), (0.375, 0.6666667), (0.375, 0.68333334), (0.36666667, 0.68333334), (0.36666667, 0.6666667), (0.36666667, 0.6666667), (0.36666667, 0.68333334), (0.35833332, 0.68333334), (0.35833332, 0.6666667), (0.35833332, 0.6666667), (0.35833332, 0.68333334), (0.35, 0.68333334), (0.35, 0.6666667), (0.35, 0.6666667), (0.35, 0.68333334), (0.34166667, 0.68333334), (0.34166667, 0.6666667), (0.34166667, 0.6666667), (0.34166667, 0.68333334), (0.33333334, 0.68333334), (0.33333334, 0.6666667), (0.33333334, 0.6666667), (0.33333334, 0.68333334), (0.325, 0.68333334), (0.325, 0.6666667), (0.325, 0.6666667), (0.325, 0.68333334), (0.31666666, 0.68333334), (0.31666666, 0.6666667), (0.31666666, 0.6666667), (0.31666666, 0.68333334), (0.30833334, 0.68333334), (0.30833334, 0.6666667), (0.30833334, 0.6666667), (0.30833334, 0.68333334), (0.3, 0.68333334), (0.3, 0.6666667), (0.3, 0.6666667), (0.3, 0.68333334), (0.29166666, 0.68333334), (0.29166666, 0.6666667), (0.29166666, 0.6666667), (0.29166666, 0.68333334), (0.28333333, 0.68333334), (0.28333333, 0.6666667), (0.28333333, 0.6666667), (0.28333333, 0.68333334), (0.275, 0.68333334), (0.275, 0.6666667), (0.275, 0.6666667), (0.275, 0.68333334), (0.26666668, 0.68333334), (0.26666668, 0.6666667), (0.26666668, 0.6666667), (0.26666668, 0.68333334), (0.25833333, 0.68333334), (0.25833333, 0.6666667), (0.25833333, 0.6666667), (0.25833333, 0.68333334), (0.25, 0.68333334), (0.25, 0.6666667), (0.25, 0.6666667), (0.25, 0.68333334), (0.24166666, 0.68333334), (0.24166666, 0.6666667), (0.24166666, 0.6666667), (0.24166666, 0.68333334), (0.23333333, 0.68333334), (0.23333333, 0.6666667), (0.23333333, 0.6666667), (0.23333333, 0.68333334), (0.225, 0.68333334), (0.225, 0.6666667), (0.225, 0.6666667), (0.225, 0.68333334), (0.21666667, 0.68333334), (0.21666667, 0.6666667), (0.21666667, 0.6666667), (0.21666667, 0.68333334), (0.20833333, 0.68333334), (0.20833333, 0.6666667), (0.20833333, 0.6666667), (0.20833333, 0.68333334), (0.2, 0.68333334), (0.2, 0.6666667), (0.2, 0.6666667), (0.2, 0.68333334), (0.19166666, 0.68333334), (0.19166666, 0.6666667), (0.19166666, 0.6666667), (0.19166666, 0.68333334), (0.18333334, 0.68333334), (0.18333334, 0.6666667), (0.18333334, 0.6666667), (0.18333334, 0.68333334), (0.175, 0.68333334), (0.175, 0.6666667), (0.175, 0.6666667), (0.175, 0.68333334), (0.16666667, 0.68333334), (0.16666667, 0.6666667), (0.16666667, 0.6666667), (0.16666667, 0.68333334), (0.15833333, 0.68333334), (0.15833333, 0.6666667), (0.15833333, 0.6666667), (0.15833333, 0.68333334), (0.15, 0.68333334), (0.15, 0.6666667), (0.15, 0.6666667), (0.15, 0.68333334), (0.14166667, 0.68333334), (0.14166667, 0.6666667), (0.14166667, 0.6666667), (0.14166667, 0.68333334), (0.13333334, 0.68333334), (0.13333334, 0.6666667), (0.13333334, 0.6666667), (0.13333334, 0.68333334), (0.125, 0.68333334), (0.125, 0.6666667), (0.125, 0.6666667), (0.125, 0.68333334), (0.11666667, 0.68333334), (0.11666667, 0.6666667), (0.11666667, 0.6666667), (0.11666667, 0.68333334), (0.108333334, 0.68333334), (0.108333334, 0.6666667), (0.108333334, 0.6666667), (0.108333334, 0.68333334), (0.1, 0.68333334), (0.1, 0.6666667), (0.1, 0.6666667), (0.1, 0.68333334), (0.09166667, 0.68333334), (0.09166667, 0.6666667), (0.09166667, 0.6666667), (0.09166667, 0.68333334), (0.083333336, 0.68333334), (0.083333336, 0.6666667), (0.083333336, 0.6666667), (0.083333336, 0.68333334), (0.075, 0.68333334), (0.075, 0.6666667), (0.075, 0.6666667), (0.075, 0.68333334), (0.06666667, 0.68333334), (0.06666667, 0.6666667), (0.06666667, 0.6666667), (0.06666667, 0.68333334), (0.058333334, 0.68333334), (0.058333334, 0.6666667), (0.058333334, 0.6666667), (0.058333334, 0.68333334), (0.05, 0.68333334), (0.05, 0.6666667), (0.05, 0.6666667), (0.05, 0.68333334), (0.041666668, 0.68333334), (0.041666668, 0.6666667), (0.041666668, 0.6666667), (0.041666668, 0.68333334), (0.033333335, 0.68333334), (0.033333335, 0.6666667), (0.033333335, 0.6666667), (0.033333335, 0.68333334), (0.025, 0.68333334), (0.025, 0.6666667), (0.025, 0.6666667), (0.025, 0.68333334), (0.016666668, 0.68333334), (0.016666668, 0.6666667), (0.016666668, 0.6666667), (0.016666668, 0.68333334), (0.008333334, 0.68333334), (0.008333334, 0.6666667), (0.008333334, 0.6666667), (0.008333334, 0.68333334), (0, 0.68333334), (0, 0.6666667), (1, 0.68333334), (1, 0.7), (0.9916667, 0.7), (0.9916667, 0.68333334), (0.9916667, 0.68333334), (0.9916667, 0.7), (0.98333335, 0.7), (0.98333335, 0.68333334), (0.98333335, 0.68333334), (0.98333335, 0.7), (0.975, 0.7), (0.975, 0.68333334), (0.975, 0.68333334), (0.975, 0.7), (0.96666664, 0.7), (0.96666664, 0.68333334), (0.96666664, 0.68333334), (0.96666664, 0.7), (0.9583333, 0.7), (0.9583333, 0.68333334), (0.9583333, 0.68333334), (0.9583333, 0.7), (0.95, 0.7), (0.95, 0.68333334), (0.95, 0.68333334), (0.95, 0.7), (0.94166666, 0.7), (0.94166666, 0.68333334), (0.94166666, 0.68333334), (0.94166666, 0.7), (0.93333334, 0.7), (0.93333334, 0.68333334), (0.93333334, 0.68333334), (0.93333334, 0.7), (0.925, 0.7), (0.925, 0.68333334), (0.925, 0.68333334), (0.925, 0.7), (0.9166667, 0.7), (0.9166667, 0.68333334), (0.9166667, 0.68333334), (0.9166667, 0.7), (0.90833336, 0.7), (0.90833336, 0.68333334), (0.90833336, 0.68333334), (0.90833336, 0.7), (0.9, 0.7), (0.9, 0.68333334), (0.9, 0.68333334), (0.9, 0.7), (0.89166665, 0.7), (0.89166665, 0.68333334), (0.89166665, 0.68333334), (0.89166665, 0.7), (0.8833333, 0.7), (0.8833333, 0.68333334), (0.8833333, 0.68333334), (0.8833333, 0.7), (0.875, 0.7), (0.875, 0.68333334), (0.875, 0.68333334), (0.875, 0.7), (0.8666667, 0.7), (0.8666667, 0.68333334), (0.8666667, 0.68333334), (0.8666667, 0.7), (0.85833335, 0.7), (0.85833335, 0.68333334), (0.85833335, 0.68333334), (0.85833335, 0.7), (0.85, 0.7), (0.85, 0.68333334), (0.85, 0.68333334), (0.85, 0.7), (0.84166664, 0.7), (0.84166664, 0.68333334), (0.84166664, 0.68333334), (0.84166664, 0.7), (0.8333333, 0.7), (0.8333333, 0.68333334), (0.8333333, 0.68333334), (0.8333333, 0.7), (0.825, 0.7), (0.825, 0.68333334), (0.825, 0.68333334), (0.825, 0.7), (0.81666666, 0.7), (0.81666666, 0.68333334), (0.81666666, 0.68333334), (0.81666666, 0.7), (0.80833334, 0.7), (0.80833334, 0.68333334), (0.80833334, 0.68333334), (0.80833334, 0.7), (0.8, 0.7), (0.8, 0.68333334), (0.8, 0.68333334), (0.8, 0.7), (0.7916667, 0.7), (0.7916667, 0.68333334), (0.7916667, 0.68333334), (0.7916667, 0.7), (0.78333336, 0.7), (0.78333336, 0.68333334), (0.78333336, 0.68333334), (0.78333336, 0.7), (0.775, 0.7), (0.775, 0.68333334), (0.775, 0.68333334), (0.775, 0.7), (0.76666665, 0.7), (0.76666665, 0.68333334), (0.76666665, 0.68333334), (0.76666665, 0.7), (0.7583333, 0.7), (0.7583333, 0.68333334), (0.7583333, 0.68333334), (0.7583333, 0.7), (0.75, 0.7), (0.75, 0.68333334), (0.75, 0.68333334), (0.75, 0.7), (0.7416667, 0.7), (0.7416667, 0.68333334), (0.7416667, 0.68333334), (0.7416667, 0.7), (0.73333335, 0.7), (0.73333335, 0.68333334), (0.73333335, 0.68333334), (0.73333335, 0.7), (0.725, 0.7), (0.725, 0.68333334), (0.725, 0.68333334), (0.725, 0.7), (0.71666664, 0.7), (0.71666664, 0.68333334), (0.71666664, 0.68333334), (0.71666664, 0.7), (0.7083333, 0.7), (0.7083333, 0.68333334), (0.7083333, 0.68333334), (0.7083333, 0.7), (0.7, 0.7), (0.7, 0.68333334), (0.7, 0.68333334), (0.7, 0.7), (0.69166666, 0.7), (0.69166666, 0.68333334), (0.69166666, 0.68333334), (0.69166666, 0.7), (0.68333334, 0.7), (0.68333334, 0.68333334), (0.68333334, 0.68333334), (0.68333334, 0.7), (0.675, 0.7), (0.675, 0.68333334), (0.675, 0.68333334), (0.675, 0.7), (0.6666667, 0.7), (0.6666667, 0.68333334), (0.6666667, 0.68333334), (0.6666667, 0.7), (0.65833336, 0.7), (0.65833336, 0.68333334), (0.65833336, 0.68333334), (0.65833336, 0.7), (0.65, 0.7), (0.65, 0.68333334), (0.65, 0.68333334), (0.65, 0.7), (0.64166665, 0.7), (0.64166665, 0.68333334), (0.64166665, 0.68333334), (0.64166665, 0.7), (0.6333333, 0.7), (0.6333333, 0.68333334), (0.6333333, 0.68333334), (0.6333333, 0.7), (0.625, 0.7), (0.625, 0.68333334), (0.625, 0.68333334), (0.625, 0.7), (0.6166667, 0.7), (0.6166667, 0.68333334), (0.6166667, 0.68333334), (0.6166667, 0.7), (0.60833335, 0.7), (0.60833335, 0.68333334), (0.60833335, 0.68333334), (0.60833335, 0.7), (0.6, 0.7), (0.6, 0.68333334), (0.6, 0.68333334), (0.6, 0.7), (0.59166664, 0.7), (0.59166664, 0.68333334), (0.59166664, 0.68333334), (0.59166664, 0.7), (0.5833333, 0.7), (0.5833333, 0.68333334), (0.5833333, 0.68333334), (0.5833333, 0.7), (0.575, 0.7), (0.575, 0.68333334), (0.575, 0.68333334), (0.575, 0.7), (0.56666666, 0.7), (0.56666666, 0.68333334), (0.56666666, 0.68333334), (0.56666666, 0.7), (0.55833334, 0.7), (0.55833334, 0.68333334), (0.55833334, 0.68333334), (0.55833334, 0.7), (0.55, 0.7), (0.55, 0.68333334), (0.55, 0.68333334), (0.55, 0.7), (0.5416667, 0.7), (0.5416667, 0.68333334), (0.5416667, 0.68333334), (0.5416667, 0.7), (0.53333336, 0.7), (0.53333336, 0.68333334), (0.53333336, 0.68333334), (0.53333336, 0.7), (0.525, 0.7), (0.525, 0.68333334), (0.525, 0.68333334), (0.525, 0.7), (0.51666665, 0.7), (0.51666665, 0.68333334), (0.51666665, 0.68333334), (0.51666665, 0.7), (0.5083333, 0.7), (0.5083333, 0.68333334), (0.5083333, 0.68333334), (0.5083333, 0.7), (0.5, 0.7), (0.5, 0.68333334), (0.5, 0.68333334), (0.5, 0.7), (0.49166667, 0.7), (0.49166667, 0.68333334), (0.49166667, 0.68333334), (0.49166667, 0.7), (0.48333332, 0.7), (0.48333332, 0.68333334), (0.48333332, 0.68333334), (0.48333332, 0.7), (0.475, 0.7), (0.475, 0.68333334), (0.475, 0.68333334), (0.475, 0.7), (0.46666667, 0.7), (0.46666667, 0.68333334), (0.46666667, 0.68333334), (0.46666667, 0.7), (0.45833334, 0.7), (0.45833334, 0.68333334), (0.45833334, 0.68333334), (0.45833334, 0.7), (0.45, 0.7), (0.45, 0.68333334), (0.45, 0.68333334), (0.45, 0.7), (0.44166666, 0.7), (0.44166666, 0.68333334), (0.44166666, 0.68333334), (0.44166666, 0.7), (0.43333334, 0.7), (0.43333334, 0.68333334), (0.43333334, 0.68333334), (0.43333334, 0.7), (0.425, 0.7), (0.425, 0.68333334), (0.425, 0.68333334), (0.425, 0.7), (0.41666666, 0.7), (0.41666666, 0.68333334), (0.41666666, 0.68333334), (0.41666666, 0.7), (0.40833333, 0.7), (0.40833333, 0.68333334), (0.40833333, 0.68333334), (0.40833333, 0.7), (0.4, 0.7), (0.4, 0.68333334), (0.4, 0.68333334), (0.4, 0.7), (0.39166668, 0.7), (0.39166668, 0.68333334), (0.39166668, 0.68333334), (0.39166668, 0.7), (0.38333333, 0.7), (0.38333333, 0.68333334), (0.38333333, 0.68333334), (0.38333333, 0.7), (0.375, 0.7), (0.375, 0.68333334), (0.375, 0.68333334), (0.375, 0.7), (0.36666667, 0.7), (0.36666667, 0.68333334), (0.36666667, 0.68333334), (0.36666667, 0.7), (0.35833332, 0.7), (0.35833332, 0.68333334), (0.35833332, 0.68333334), (0.35833332, 0.7), (0.35, 0.7), (0.35, 0.68333334), (0.35, 0.68333334), (0.35, 0.7), (0.34166667, 0.7), (0.34166667, 0.68333334), (0.34166667, 0.68333334), (0.34166667, 0.7), (0.33333334, 0.7), (0.33333334, 0.68333334), (0.33333334, 0.68333334), (0.33333334, 0.7), (0.325, 0.7), (0.325, 0.68333334), (0.325, 0.68333334), (0.325, 0.7), (0.31666666, 0.7), (0.31666666, 0.68333334), (0.31666666, 0.68333334), (0.31666666, 0.7), (0.30833334, 0.7), (0.30833334, 0.68333334), (0.30833334, 0.68333334), (0.30833334, 0.7), (0.3, 0.7), (0.3, 0.68333334), (0.3, 0.68333334), (0.3, 0.7), (0.29166666, 0.7), (0.29166666, 0.68333334), (0.29166666, 0.68333334), (0.29166666, 0.7), (0.28333333, 0.7), (0.28333333, 0.68333334), (0.28333333, 0.68333334), (0.28333333, 0.7), (0.275, 0.7), (0.275, 0.68333334), (0.275, 0.68333334), (0.275, 0.7), (0.26666668, 0.7), (0.26666668, 0.68333334), (0.26666668, 0.68333334), (0.26666668, 0.7), (0.25833333, 0.7), (0.25833333, 0.68333334), (0.25833333, 0.68333334), (0.25833333, 0.7), (0.25, 0.7), (0.25, 0.68333334), (0.25, 0.68333334), (0.25, 0.7), (0.24166666, 0.7), (0.24166666, 0.68333334), (0.24166666, 0.68333334), (0.24166666, 0.7), (0.23333333, 0.7), (0.23333333, 0.68333334), (0.23333333, 0.68333334), (0.23333333, 0.7), (0.225, 0.7), (0.225, 0.68333334), (0.225, 0.68333334), (0.225, 0.7), (0.21666667, 0.7), (0.21666667, 0.68333334), (0.21666667, 0.68333334), (0.21666667, 0.7), (0.20833333, 0.7), (0.20833333, 0.68333334), (0.20833333, 0.68333334), (0.20833333, 0.7), (0.2, 0.7), (0.2, 0.68333334), (0.2, 0.68333334), (0.2, 0.7), (0.19166666, 0.7), (0.19166666, 0.68333334), (0.19166666, 0.68333334), (0.19166666, 0.7), (0.18333334, 0.7), (0.18333334, 0.68333334), (0.18333334, 0.68333334), (0.18333334, 0.7), (0.175, 0.7), (0.175, 0.68333334), (0.175, 0.68333334), (0.175, 0.7), (0.16666667, 0.7), (0.16666667, 0.68333334), (0.16666667, 0.68333334), (0.16666667, 0.7), (0.15833333, 0.7), (0.15833333, 0.68333334), (0.15833333, 0.68333334), (0.15833333, 0.7), (0.15, 0.7), (0.15, 0.68333334), (0.15, 0.68333334), (0.15, 0.7), (0.14166667, 0.7), (0.14166667, 0.68333334), (0.14166667, 0.68333334), (0.14166667, 0.7), (0.13333334, 0.7), (0.13333334, 0.68333334), (0.13333334, 0.68333334), (0.13333334, 0.7), (0.125, 0.7), (0.125, 0.68333334), (0.125, 0.68333334), (0.125, 0.7), (0.11666667, 0.7), (0.11666667, 0.68333334), (0.11666667, 0.68333334), (0.11666667, 0.7), (0.108333334, 0.7), (0.108333334, 0.68333334), (0.108333334, 0.68333334), (0.108333334, 0.7), (0.1, 0.7), (0.1, 0.68333334), (0.1, 0.68333334), (0.1, 0.7), (0.09166667, 0.7), (0.09166667, 0.68333334), (0.09166667, 0.68333334), (0.09166667, 0.7), (0.083333336, 0.7), (0.083333336, 0.68333334), (0.083333336, 0.68333334), (0.083333336, 0.7), (0.075, 0.7), (0.075, 0.68333334), (0.075, 0.68333334), (0.075, 0.7), (0.06666667, 0.7), (0.06666667, 0.68333334), (0.06666667, 0.68333334), (0.06666667, 0.7), (0.058333334, 0.7), (0.058333334, 0.68333334), (0.058333334, 0.68333334), (0.058333334, 0.7), (0.05, 0.7), (0.05, 0.68333334), (0.05, 0.68333334), (0.05, 0.7), (0.041666668, 0.7), (0.041666668, 0.68333334), (0.041666668, 0.68333334), (0.041666668, 0.7), (0.033333335, 0.7), (0.033333335, 0.68333334), (0.033333335, 0.68333334), (0.033333335, 0.7), (0.025, 0.7), (0.025, 0.68333334), (0.025, 0.68333334), (0.025, 0.7), (0.016666668, 0.7), (0.016666668, 0.68333334), (0.016666668, 0.68333334), (0.016666668, 0.7), (0.008333334, 0.7), (0.008333334, 0.68333334), (0.008333334, 0.68333334), (0.008333334, 0.7), (0, 0.7), (0, 0.68333334), (1, 0.7), (1, 0.71666664), (0.9916667, 0.71666664), (0.9916667, 0.7), (0.9916667, 0.7), (0.9916667, 0.71666664), (0.98333335, 0.71666664), (0.98333335, 0.7), (0.98333335, 0.7), (0.98333335, 0.71666664), (0.975, 0.71666664), (0.975, 0.7), (0.975, 0.7), (0.975, 0.71666664), (0.96666664, 0.71666664), (0.96666664, 0.7), (0.96666664, 0.7), (0.96666664, 0.71666664), (0.9583333, 0.71666664), (0.9583333, 0.7), (0.9583333, 0.7), (0.9583333, 0.71666664), (0.95, 0.71666664), (0.95, 0.7), (0.95, 0.7), (0.95, 0.71666664), (0.94166666, 0.71666664), (0.94166666, 0.7), (0.94166666, 0.7), (0.94166666, 0.71666664), (0.93333334, 0.71666664), (0.93333334, 0.7), (0.93333334, 0.7), (0.93333334, 0.71666664), (0.925, 0.71666664), (0.925, 0.7), (0.925, 0.7), (0.925, 0.71666664), (0.9166667, 0.71666664), (0.9166667, 0.7), (0.9166667, 0.7), (0.9166667, 0.71666664), (0.90833336, 0.71666664), (0.90833336, 0.7), (0.90833336, 0.7), (0.90833336, 0.71666664), (0.9, 0.71666664), (0.9, 0.7), (0.9, 0.7), (0.9, 0.71666664), (0.89166665, 0.71666664), (0.89166665, 0.7), (0.89166665, 0.7), (0.89166665, 0.71666664), (0.8833333, 0.71666664), (0.8833333, 0.7), (0.8833333, 0.7), (0.8833333, 0.71666664), (0.875, 0.71666664), (0.875, 0.7), (0.875, 0.7), (0.875, 0.71666664), (0.8666667, 0.71666664), (0.8666667, 0.7), (0.8666667, 0.7), (0.8666667, 0.71666664), (0.85833335, 0.71666664), (0.85833335, 0.7), (0.85833335, 0.7), (0.85833335, 0.71666664), (0.85, 0.71666664), (0.85, 0.7), (0.85, 0.7), (0.85, 0.71666664), (0.84166664, 0.71666664), (0.84166664, 0.7), (0.84166664, 0.7), (0.84166664, 0.71666664), (0.8333333, 0.71666664), (0.8333333, 0.7), (0.8333333, 0.7), (0.8333333, 0.71666664), (0.825, 0.71666664), (0.825, 0.7), (0.825, 0.7), (0.825, 0.71666664), (0.81666666, 0.71666664), (0.81666666, 0.7), (0.81666666, 0.7), (0.81666666, 0.71666664), (0.80833334, 0.71666664), (0.80833334, 0.7), (0.80833334, 0.7), (0.80833334, 0.71666664), (0.8, 0.71666664), (0.8, 0.7), (0.8, 0.7), (0.8, 0.71666664), (0.7916667, 0.71666664), (0.7916667, 0.7), (0.7916667, 0.7), (0.7916667, 0.71666664), (0.78333336, 0.71666664), (0.78333336, 0.7), (0.78333336, 0.7), (0.78333336, 0.71666664), (0.775, 0.71666664), (0.775, 0.7), (0.775, 0.7), (0.775, 0.71666664), (0.76666665, 0.71666664), (0.76666665, 0.7), (0.76666665, 0.7), (0.76666665, 0.71666664), (0.7583333, 0.71666664), (0.7583333, 0.7), (0.7583333, 0.7), (0.7583333, 0.71666664), (0.75, 0.71666664), (0.75, 0.7), (0.75, 0.7), (0.75, 0.71666664), (0.7416667, 0.71666664), (0.7416667, 0.7), (0.7416667, 0.7), (0.7416667, 0.71666664), (0.73333335, 0.71666664), (0.73333335, 0.7), (0.73333335, 0.7), (0.73333335, 0.71666664), (0.725, 0.71666664), (0.725, 0.7), (0.725, 0.7), (0.725, 0.71666664), (0.71666664, 0.71666664), (0.71666664, 0.7), (0.71666664, 0.7), (0.71666664, 0.71666664), (0.7083333, 0.71666664), (0.7083333, 0.7), (0.7083333, 0.7), (0.7083333, 0.71666664), (0.7, 0.71666664), (0.7, 0.7), (0.7, 0.7), (0.7, 0.71666664), (0.69166666, 0.71666664), (0.69166666, 0.7), (0.69166666, 0.7), (0.69166666, 0.71666664), (0.68333334, 0.71666664), (0.68333334, 0.7), (0.68333334, 0.7), (0.68333334, 0.71666664), (0.675, 0.71666664), (0.675, 0.7), (0.675, 0.7), (0.675, 0.71666664), (0.6666667, 0.71666664), (0.6666667, 0.7), (0.6666667, 0.7), (0.6666667, 0.71666664), (0.65833336, 0.71666664), (0.65833336, 0.7), (0.65833336, 0.7), (0.65833336, 0.71666664), (0.65, 0.71666664), (0.65, 0.7), (0.65, 0.7), (0.65, 0.71666664), (0.64166665, 0.71666664), (0.64166665, 0.7), (0.64166665, 0.7), (0.64166665, 0.71666664), (0.6333333, 0.71666664), (0.6333333, 0.7), (0.6333333, 0.7), (0.6333333, 0.71666664), (0.625, 0.71666664), (0.625, 0.7), (0.625, 0.7), (0.625, 0.71666664), (0.6166667, 0.71666664), (0.6166667, 0.7), (0.6166667, 0.7), (0.6166667, 0.71666664), (0.60833335, 0.71666664), (0.60833335, 0.7), (0.60833335, 0.7), (0.60833335, 0.71666664), (0.6, 0.71666664), (0.6, 0.7), (0.6, 0.7), (0.6, 0.71666664), (0.59166664, 0.71666664), (0.59166664, 0.7), (0.59166664, 0.7), (0.59166664, 0.71666664), (0.5833333, 0.71666664), (0.5833333, 0.7), (0.5833333, 0.7), (0.5833333, 0.71666664), (0.575, 0.71666664), (0.575, 0.7), (0.575, 0.7), (0.575, 0.71666664), (0.56666666, 0.71666664), (0.56666666, 0.7), (0.56666666, 0.7), (0.56666666, 0.71666664), (0.55833334, 0.71666664), (0.55833334, 0.7), (0.55833334, 0.7), (0.55833334, 0.71666664), (0.55, 0.71666664), (0.55, 0.7), (0.55, 0.7), (0.55, 0.71666664), (0.5416667, 0.71666664), (0.5416667, 0.7), (0.5416667, 0.7), (0.5416667, 0.71666664), (0.53333336, 0.71666664), (0.53333336, 0.7), (0.53333336, 0.7), (0.53333336, 0.71666664), (0.525, 0.71666664), (0.525, 0.7), (0.525, 0.7), (0.525, 0.71666664), (0.51666665, 0.71666664), (0.51666665, 0.7), (0.51666665, 0.7), (0.51666665, 0.71666664), (0.5083333, 0.71666664), (0.5083333, 0.7), (0.5083333, 0.7), (0.5083333, 0.71666664), (0.5, 0.71666664), (0.5, 0.7), (0.5, 0.7), (0.5, 0.71666664), (0.49166667, 0.71666664), (0.49166667, 0.7), (0.49166667, 0.7), (0.49166667, 0.71666664), (0.48333332, 0.71666664), (0.48333332, 0.7), (0.48333332, 0.7), (0.48333332, 0.71666664), (0.475, 0.71666664), (0.475, 0.7), (0.475, 0.7), (0.475, 0.71666664), (0.46666667, 0.71666664), (0.46666667, 0.7), (0.46666667, 0.7), (0.46666667, 0.71666664), (0.45833334, 0.71666664), (0.45833334, 0.7), (0.45833334, 0.7), (0.45833334, 0.71666664), (0.45, 0.71666664), (0.45, 0.7), (0.45, 0.7), (0.45, 0.71666664), (0.44166666, 0.71666664), (0.44166666, 0.7), (0.44166666, 0.7), (0.44166666, 0.71666664), (0.43333334, 0.71666664), (0.43333334, 0.7), (0.43333334, 0.7), (0.43333334, 0.71666664), (0.425, 0.71666664), (0.425, 0.7), (0.425, 0.7), (0.425, 0.71666664), (0.41666666, 0.71666664), (0.41666666, 0.7), (0.41666666, 0.7), (0.41666666, 0.71666664), (0.40833333, 0.71666664), (0.40833333, 0.7), (0.40833333, 0.7), (0.40833333, 0.71666664), (0.4, 0.71666664), (0.4, 0.7), (0.4, 0.7), (0.4, 0.71666664), (0.39166668, 0.71666664), (0.39166668, 0.7), (0.39166668, 0.7), (0.39166668, 0.71666664), (0.38333333, 0.71666664), (0.38333333, 0.7), (0.38333333, 0.7), (0.38333333, 0.71666664), (0.375, 0.71666664), (0.375, 0.7), (0.375, 0.7), (0.375, 0.71666664), (0.36666667, 0.71666664), (0.36666667, 0.7), (0.36666667, 0.7), (0.36666667, 0.71666664), (0.35833332, 0.71666664), (0.35833332, 0.7), (0.35833332, 0.7), (0.35833332, 0.71666664), (0.35, 0.71666664), (0.35, 0.7), (0.35, 0.7), (0.35, 0.71666664), (0.34166667, 0.71666664), (0.34166667, 0.7), (0.34166667, 0.7), (0.34166667, 0.71666664), (0.33333334, 0.71666664), (0.33333334, 0.7), (0.33333334, 0.7), (0.33333334, 0.71666664), (0.325, 0.71666664), (0.325, 0.7), (0.325, 0.7), (0.325, 0.71666664), (0.31666666, 0.71666664), (0.31666666, 0.7), (0.31666666, 0.7), (0.31666666, 0.71666664), (0.30833334, 0.71666664), (0.30833334, 0.7), (0.30833334, 0.7), (0.30833334, 0.71666664), (0.3, 0.71666664), (0.3, 0.7), (0.3, 0.7), (0.3, 0.71666664), (0.29166666, 0.71666664), (0.29166666, 0.7), (0.29166666, 0.7), (0.29166666, 0.71666664), (0.28333333, 0.71666664), (0.28333333, 0.7), (0.28333333, 0.7), (0.28333333, 0.71666664), (0.275, 0.71666664), (0.275, 0.7), (0.275, 0.7), (0.275, 0.71666664), (0.26666668, 0.71666664), (0.26666668, 0.7), (0.26666668, 0.7), (0.26666668, 0.71666664), (0.25833333, 0.71666664), (0.25833333, 0.7), (0.25833333, 0.7), (0.25833333, 0.71666664), (0.25, 0.71666664), (0.25, 0.7), (0.25, 0.7), (0.25, 0.71666664), (0.24166666, 0.71666664), (0.24166666, 0.7), (0.24166666, 0.7), (0.24166666, 0.71666664), (0.23333333, 0.71666664), (0.23333333, 0.7), (0.23333333, 0.7), (0.23333333, 0.71666664), (0.225, 0.71666664), (0.225, 0.7), (0.225, 0.7), (0.225, 0.71666664), (0.21666667, 0.71666664), (0.21666667, 0.7), (0.21666667, 0.7), (0.21666667, 0.71666664), (0.20833333, 0.71666664), (0.20833333, 0.7), (0.20833333, 0.7), (0.20833333, 0.71666664), (0.2, 0.71666664), (0.2, 0.7), (0.2, 0.7), (0.2, 0.71666664), (0.19166666, 0.71666664), (0.19166666, 0.7), (0.19166666, 0.7), (0.19166666, 0.71666664), (0.18333334, 0.71666664), (0.18333334, 0.7), (0.18333334, 0.7), (0.18333334, 0.71666664), (0.175, 0.71666664), (0.175, 0.7), (0.175, 0.7), (0.175, 0.71666664), (0.16666667, 0.71666664), (0.16666667, 0.7), (0.16666667, 0.7), (0.16666667, 0.71666664), (0.15833333, 0.71666664), (0.15833333, 0.7), (0.15833333, 0.7), (0.15833333, 0.71666664), (0.15, 0.71666664), (0.15, 0.7), (0.15, 0.7), (0.15, 0.71666664), (0.14166667, 0.71666664), (0.14166667, 0.7), (0.14166667, 0.7), (0.14166667, 0.71666664), (0.13333334, 0.71666664), (0.13333334, 0.7), (0.13333334, 0.7), (0.13333334, 0.71666664), (0.125, 0.71666664), (0.125, 0.7), (0.125, 0.7), (0.125, 0.71666664), (0.11666667, 0.71666664), (0.11666667, 0.7), (0.11666667, 0.7), (0.11666667, 0.71666664), (0.108333334, 0.71666664), (0.108333334, 0.7), (0.108333334, 0.7), (0.108333334, 0.71666664), (0.1, 0.71666664), (0.1, 0.7), (0.1, 0.7), (0.1, 0.71666664), (0.09166667, 0.71666664), (0.09166667, 0.7), (0.09166667, 0.7), (0.09166667, 0.71666664), (0.083333336, 0.71666664), (0.083333336, 0.7), (0.083333336, 0.7), (0.083333336, 0.71666664), (0.075, 0.71666664), (0.075, 0.7), (0.075, 0.7), (0.075, 0.71666664), (0.06666667, 0.71666664), (0.06666667, 0.7), (0.06666667, 0.7), (0.06666667, 0.71666664), (0.058333334, 0.71666664), (0.058333334, 0.7), (0.058333334, 0.7), (0.058333334, 0.71666664), (0.05, 0.71666664), (0.05, 0.7), (0.05, 0.7), (0.05, 0.71666664), (0.041666668, 0.71666664), (0.041666668, 0.7), (0.041666668, 0.7), (0.041666668, 0.71666664), (0.033333335, 0.71666664), (0.033333335, 0.7), (0.033333335, 0.7), (0.033333335, 0.71666664), (0.025, 0.71666664), (0.025, 0.7), (0.025, 0.7), (0.025, 0.71666664), (0.016666668, 0.71666664), (0.016666668, 0.7), (0.016666668, 0.7), (0.016666668, 0.71666664), (0.008333334, 0.71666664), (0.008333334, 0.7), (0.008333334, 0.7), (0.008333334, 0.71666664), (0, 0.71666664), (0, 0.7), (1, 0.71666664), (1, 0.73333335), (0.9916667, 0.73333335), (0.9916667, 0.71666664), (0.9916667, 0.71666664), (0.9916667, 0.73333335), (0.98333335, 0.73333335), (0.98333335, 0.71666664), (0.98333335, 0.71666664), (0.98333335, 0.73333335), (0.975, 0.73333335), (0.975, 0.71666664), (0.975, 0.71666664), (0.975, 0.73333335), (0.96666664, 0.73333335), (0.96666664, 0.71666664), (0.96666664, 0.71666664), (0.96666664, 0.73333335), (0.9583333, 0.73333335), (0.9583333, 0.71666664), (0.9583333, 0.71666664), (0.9583333, 0.73333335), (0.95, 0.73333335), (0.95, 0.71666664), (0.95, 0.71666664), (0.95, 0.73333335), (0.94166666, 0.73333335), (0.94166666, 0.71666664), (0.94166666, 0.71666664), (0.94166666, 0.73333335), (0.93333334, 0.73333335), (0.93333334, 0.71666664), (0.93333334, 0.71666664), (0.93333334, 0.73333335), (0.925, 0.73333335), (0.925, 0.71666664), (0.925, 0.71666664), (0.925, 0.73333335), (0.9166667, 0.73333335), (0.9166667, 0.71666664), (0.9166667, 0.71666664), (0.9166667, 0.73333335), (0.90833336, 0.73333335), (0.90833336, 0.71666664), (0.90833336, 0.71666664), (0.90833336, 0.73333335), (0.9, 0.73333335), (0.9, 0.71666664), (0.9, 0.71666664), (0.9, 0.73333335), (0.89166665, 0.73333335), (0.89166665, 0.71666664), (0.89166665, 0.71666664), (0.89166665, 0.73333335), (0.8833333, 0.73333335), (0.8833333, 0.71666664), (0.8833333, 0.71666664), (0.8833333, 0.73333335), (0.875, 0.73333335), (0.875, 0.71666664), (0.875, 0.71666664), (0.875, 0.73333335), (0.8666667, 0.73333335), (0.8666667, 0.71666664), (0.8666667, 0.71666664), (0.8666667, 0.73333335), (0.85833335, 0.73333335), (0.85833335, 0.71666664), (0.85833335, 0.71666664), (0.85833335, 0.73333335), (0.85, 0.73333335), (0.85, 0.71666664), (0.85, 0.71666664), (0.85, 0.73333335), (0.84166664, 0.73333335), (0.84166664, 0.71666664), (0.84166664, 0.71666664), (0.84166664, 0.73333335), (0.8333333, 0.73333335), (0.8333333, 0.71666664), (0.8333333, 0.71666664), (0.8333333, 0.73333335), (0.825, 0.73333335), (0.825, 0.71666664), (0.825, 0.71666664), (0.825, 0.73333335), (0.81666666, 0.73333335), (0.81666666, 0.71666664), (0.81666666, 0.71666664), (0.81666666, 0.73333335), (0.80833334, 0.73333335), (0.80833334, 0.71666664), (0.80833334, 0.71666664), (0.80833334, 0.73333335), (0.8, 0.73333335), (0.8, 0.71666664), (0.8, 0.71666664), (0.8, 0.73333335), (0.7916667, 0.73333335), (0.7916667, 0.71666664), (0.7916667, 0.71666664), (0.7916667, 0.73333335), (0.78333336, 0.73333335), (0.78333336, 0.71666664), (0.78333336, 0.71666664), (0.78333336, 0.73333335), (0.775, 0.73333335), (0.775, 0.71666664), (0.775, 0.71666664), (0.775, 0.73333335), (0.76666665, 0.73333335), (0.76666665, 0.71666664), (0.76666665, 0.71666664), (0.76666665, 0.73333335), (0.7583333, 0.73333335), (0.7583333, 0.71666664), (0.7583333, 0.71666664), (0.7583333, 0.73333335), (0.75, 0.73333335), (0.75, 0.71666664), (0.75, 0.71666664), (0.75, 0.73333335), (0.7416667, 0.73333335), (0.7416667, 0.71666664), (0.7416667, 0.71666664), (0.7416667, 0.73333335), (0.73333335, 0.73333335), (0.73333335, 0.71666664), (0.73333335, 0.71666664), (0.73333335, 0.73333335), (0.725, 0.73333335), (0.725, 0.71666664), (0.725, 0.71666664), (0.725, 0.73333335), (0.71666664, 0.73333335), (0.71666664, 0.71666664), (0.71666664, 0.71666664), (0.71666664, 0.73333335), (0.7083333, 0.73333335), (0.7083333, 0.71666664), (0.7083333, 0.71666664), (0.7083333, 0.73333335), (0.7, 0.73333335), (0.7, 0.71666664), (0.7, 0.71666664), (0.7, 0.73333335), (0.69166666, 0.73333335), (0.69166666, 0.71666664), (0.69166666, 0.71666664), (0.69166666, 0.73333335), (0.68333334, 0.73333335), (0.68333334, 0.71666664), (0.68333334, 0.71666664), (0.68333334, 0.73333335), (0.675, 0.73333335), (0.675, 0.71666664), (0.675, 0.71666664), (0.675, 0.73333335), (0.6666667, 0.73333335), (0.6666667, 0.71666664), (0.6666667, 0.71666664), (0.6666667, 0.73333335), (0.65833336, 0.73333335), (0.65833336, 0.71666664), (0.65833336, 0.71666664), (0.65833336, 0.73333335), (0.65, 0.73333335), (0.65, 0.71666664), (0.65, 0.71666664), (0.65, 0.73333335), (0.64166665, 0.73333335), (0.64166665, 0.71666664), (0.64166665, 0.71666664), (0.64166665, 0.73333335), (0.6333333, 0.73333335), (0.6333333, 0.71666664), (0.6333333, 0.71666664), (0.6333333, 0.73333335), (0.625, 0.73333335), (0.625, 0.71666664), (0.625, 0.71666664), (0.625, 0.73333335), (0.6166667, 0.73333335), (0.6166667, 0.71666664), (0.6166667, 0.71666664), (0.6166667, 0.73333335), (0.60833335, 0.73333335), (0.60833335, 0.71666664), (0.60833335, 0.71666664), (0.60833335, 0.73333335), (0.6, 0.73333335), (0.6, 0.71666664), (0.6, 0.71666664), (0.6, 0.73333335), (0.59166664, 0.73333335), (0.59166664, 0.71666664), (0.59166664, 0.71666664), (0.59166664, 0.73333335), (0.5833333, 0.73333335), (0.5833333, 0.71666664), (0.5833333, 0.71666664), (0.5833333, 0.73333335), (0.575, 0.73333335), (0.575, 0.71666664), (0.575, 0.71666664), (0.575, 0.73333335), (0.56666666, 0.73333335), (0.56666666, 0.71666664), (0.56666666, 0.71666664), (0.56666666, 0.73333335), (0.55833334, 0.73333335), (0.55833334, 0.71666664), (0.55833334, 0.71666664), (0.55833334, 0.73333335), (0.55, 0.73333335), (0.55, 0.71666664), (0.55, 0.71666664), (0.55, 0.73333335), (0.5416667, 0.73333335), (0.5416667, 0.71666664), (0.5416667, 0.71666664), (0.5416667, 0.73333335), (0.53333336, 0.73333335), (0.53333336, 0.71666664), (0.53333336, 0.71666664), (0.53333336, 0.73333335), (0.525, 0.73333335), (0.525, 0.71666664), (0.525, 0.71666664), (0.525, 0.73333335), (0.51666665, 0.73333335), (0.51666665, 0.71666664), (0.51666665, 0.71666664), (0.51666665, 0.73333335), (0.5083333, 0.73333335), (0.5083333, 0.71666664), (0.5083333, 0.71666664), (0.5083333, 0.73333335), (0.5, 0.73333335), (0.5, 0.71666664), (0.5, 0.71666664), (0.5, 0.73333335), (0.49166667, 0.73333335), (0.49166667, 0.71666664), (0.49166667, 0.71666664), (0.49166667, 0.73333335), (0.48333332, 0.73333335), (0.48333332, 0.71666664), (0.48333332, 0.71666664), (0.48333332, 0.73333335), (0.475, 0.73333335), (0.475, 0.71666664), (0.475, 0.71666664), (0.475, 0.73333335), (0.46666667, 0.73333335), (0.46666667, 0.71666664), (0.46666667, 0.71666664), (0.46666667, 0.73333335), (0.45833334, 0.73333335), (0.45833334, 0.71666664), (0.45833334, 0.71666664), (0.45833334, 0.73333335), (0.45, 0.73333335), (0.45, 0.71666664), (0.45, 0.71666664), (0.45, 0.73333335), (0.44166666, 0.73333335), (0.44166666, 0.71666664), (0.44166666, 0.71666664), (0.44166666, 0.73333335), (0.43333334, 0.73333335), (0.43333334, 0.71666664), (0.43333334, 0.71666664), (0.43333334, 0.73333335), (0.425, 0.73333335), (0.425, 0.71666664), (0.425, 0.71666664), (0.425, 0.73333335), (0.41666666, 0.73333335), (0.41666666, 0.71666664), (0.41666666, 0.71666664), (0.41666666, 0.73333335), (0.40833333, 0.73333335), (0.40833333, 0.71666664), (0.40833333, 0.71666664), (0.40833333, 0.73333335), (0.4, 0.73333335), (0.4, 0.71666664), (0.4, 0.71666664), (0.4, 0.73333335), (0.39166668, 0.73333335), (0.39166668, 0.71666664), (0.39166668, 0.71666664), (0.39166668, 0.73333335), (0.38333333, 0.73333335), (0.38333333, 0.71666664), (0.38333333, 0.71666664), (0.38333333, 0.73333335), (0.375, 0.73333335), (0.375, 0.71666664), (0.375, 0.71666664), (0.375, 0.73333335), (0.36666667, 0.73333335), (0.36666667, 0.71666664), (0.36666667, 0.71666664), (0.36666667, 0.73333335), (0.35833332, 0.73333335), (0.35833332, 0.71666664), (0.35833332, 0.71666664), (0.35833332, 0.73333335), (0.35, 0.73333335), (0.35, 0.71666664), (0.35, 0.71666664), (0.35, 0.73333335), (0.34166667, 0.73333335), (0.34166667, 0.71666664), (0.34166667, 0.71666664), (0.34166667, 0.73333335), (0.33333334, 0.73333335), (0.33333334, 0.71666664), (0.33333334, 0.71666664), (0.33333334, 0.73333335), (0.325, 0.73333335), (0.325, 0.71666664), (0.325, 0.71666664), (0.325, 0.73333335), (0.31666666, 0.73333335), (0.31666666, 0.71666664), (0.31666666, 0.71666664), (0.31666666, 0.73333335), (0.30833334, 0.73333335), (0.30833334, 0.71666664), (0.30833334, 0.71666664), (0.30833334, 0.73333335), (0.3, 0.73333335), (0.3, 0.71666664), (0.3, 0.71666664), (0.3, 0.73333335), (0.29166666, 0.73333335), (0.29166666, 0.71666664), (0.29166666, 0.71666664), (0.29166666, 0.73333335), (0.28333333, 0.73333335), (0.28333333, 0.71666664), (0.28333333, 0.71666664), (0.28333333, 0.73333335), (0.275, 0.73333335), (0.275, 0.71666664), (0.275, 0.71666664), (0.275, 0.73333335), (0.26666668, 0.73333335), (0.26666668, 0.71666664), (0.26666668, 0.71666664), (0.26666668, 0.73333335), (0.25833333, 0.73333335), (0.25833333, 0.71666664), (0.25833333, 0.71666664), (0.25833333, 0.73333335), (0.25, 0.73333335), (0.25, 0.71666664), (0.25, 0.71666664), (0.25, 0.73333335), (0.24166666, 0.73333335), (0.24166666, 0.71666664), (0.24166666, 0.71666664), (0.24166666, 0.73333335), (0.23333333, 0.73333335), (0.23333333, 0.71666664), (0.23333333, 0.71666664), (0.23333333, 0.73333335), (0.225, 0.73333335), (0.225, 0.71666664), (0.225, 0.71666664), (0.225, 0.73333335), (0.21666667, 0.73333335), (0.21666667, 0.71666664), (0.21666667, 0.71666664), (0.21666667, 0.73333335), (0.20833333, 0.73333335), (0.20833333, 0.71666664), (0.20833333, 0.71666664), (0.20833333, 0.73333335), (0.2, 0.73333335), (0.2, 0.71666664), (0.2, 0.71666664), (0.2, 0.73333335), (0.19166666, 0.73333335), (0.19166666, 0.71666664), (0.19166666, 0.71666664), (0.19166666, 0.73333335), (0.18333334, 0.73333335), (0.18333334, 0.71666664), (0.18333334, 0.71666664), (0.18333334, 0.73333335), (0.175, 0.73333335), (0.175, 0.71666664), (0.175, 0.71666664), (0.175, 0.73333335), (0.16666667, 0.73333335), (0.16666667, 0.71666664), (0.16666667, 0.71666664), (0.16666667, 0.73333335), (0.15833333, 0.73333335), (0.15833333, 0.71666664), (0.15833333, 0.71666664), (0.15833333, 0.73333335), (0.15, 0.73333335), (0.15, 0.71666664), (0.15, 0.71666664), (0.15, 0.73333335), (0.14166667, 0.73333335), (0.14166667, 0.71666664), (0.14166667, 0.71666664), (0.14166667, 0.73333335), (0.13333334, 0.73333335), (0.13333334, 0.71666664), (0.13333334, 0.71666664), (0.13333334, 0.73333335), (0.125, 0.73333335), (0.125, 0.71666664), (0.125, 0.71666664), (0.125, 0.73333335), (0.11666667, 0.73333335), (0.11666667, 0.71666664), (0.11666667, 0.71666664), (0.11666667, 0.73333335), (0.108333334, 0.73333335), (0.108333334, 0.71666664), (0.108333334, 0.71666664), (0.108333334, 0.73333335), (0.1, 0.73333335), (0.1, 0.71666664), (0.1, 0.71666664), (0.1, 0.73333335), (0.09166667, 0.73333335), (0.09166667, 0.71666664), (0.09166667, 0.71666664), (0.09166667, 0.73333335), (0.083333336, 0.73333335), (0.083333336, 0.71666664), (0.083333336, 0.71666664), (0.083333336, 0.73333335), (0.075, 0.73333335), (0.075, 0.71666664), (0.075, 0.71666664), (0.075, 0.73333335), (0.06666667, 0.73333335), (0.06666667, 0.71666664), (0.06666667, 0.71666664), (0.06666667, 0.73333335), (0.058333334, 0.73333335), (0.058333334, 0.71666664), (0.058333334, 0.71666664), (0.058333334, 0.73333335), (0.05, 0.73333335), (0.05, 0.71666664), (0.05, 0.71666664), (0.05, 0.73333335), (0.041666668, 0.73333335), (0.041666668, 0.71666664), (0.041666668, 0.71666664), (0.041666668, 0.73333335), (0.033333335, 0.73333335), (0.033333335, 0.71666664), (0.033333335, 0.71666664), (0.033333335, 0.73333335), (0.025, 0.73333335), (0.025, 0.71666664), (0.025, 0.71666664), (0.025, 0.73333335), (0.016666668, 0.73333335), (0.016666668, 0.71666664), (0.016666668, 0.71666664), (0.016666668, 0.73333335), (0.008333334, 0.73333335), (0.008333334, 0.71666664), (0.008333334, 0.71666664), (0.008333334, 0.73333335), (0, 0.73333335), (0, 0.71666664), (1, 0.73333335), (1, 0.75), (0.9916667, 0.75), (0.9916667, 0.73333335), (0.9916667, 0.73333335), (0.9916667, 0.75), (0.98333335, 0.75), (0.98333335, 0.73333335), (0.98333335, 0.73333335), (0.98333335, 0.75), (0.975, 0.75), (0.975, 0.73333335), (0.975, 0.73333335), (0.975, 0.75), (0.96666664, 0.75), (0.96666664, 0.73333335), (0.96666664, 0.73333335), (0.96666664, 0.75), (0.9583333, 0.75), (0.9583333, 0.73333335), (0.9583333, 0.73333335), (0.9583333, 0.75), (0.95, 0.75), (0.95, 0.73333335), (0.95, 0.73333335), (0.95, 0.75), (0.94166666, 0.75), (0.94166666, 0.73333335), (0.94166666, 0.73333335), (0.94166666, 0.75), (0.93333334, 0.75), (0.93333334, 0.73333335), (0.93333334, 0.73333335), (0.93333334, 0.75), (0.925, 0.75), (0.925, 0.73333335), (0.925, 0.73333335), (0.925, 0.75), (0.9166667, 0.75), (0.9166667, 0.73333335), (0.9166667, 0.73333335), (0.9166667, 0.75), (0.90833336, 0.75), (0.90833336, 0.73333335), (0.90833336, 0.73333335), (0.90833336, 0.75), (0.9, 0.75), (0.9, 0.73333335), (0.9, 0.73333335), (0.9, 0.75), (0.89166665, 0.75), (0.89166665, 0.73333335), (0.89166665, 0.73333335), (0.89166665, 0.75), (0.8833333, 0.75), (0.8833333, 0.73333335), (0.8833333, 0.73333335), (0.8833333, 0.75), (0.875, 0.75), (0.875, 0.73333335), (0.875, 0.73333335), (0.875, 0.75), (0.8666667, 0.75), (0.8666667, 0.73333335), (0.8666667, 0.73333335), (0.8666667, 0.75), (0.85833335, 0.75), (0.85833335, 0.73333335), (0.85833335, 0.73333335), (0.85833335, 0.75), (0.85, 0.75), (0.85, 0.73333335), (0.85, 0.73333335), (0.85, 0.75), (0.84166664, 0.75), (0.84166664, 0.73333335), (0.84166664, 0.73333335), (0.84166664, 0.75), (0.8333333, 0.75), (0.8333333, 0.73333335), (0.8333333, 0.73333335), (0.8333333, 0.75), (0.825, 0.75), (0.825, 0.73333335), (0.825, 0.73333335), (0.825, 0.75), (0.81666666, 0.75), (0.81666666, 0.73333335), (0.81666666, 0.73333335), (0.81666666, 0.75), (0.80833334, 0.75), (0.80833334, 0.73333335), (0.80833334, 0.73333335), (0.80833334, 0.75), (0.8, 0.75), (0.8, 0.73333335), (0.8, 0.73333335), (0.8, 0.75), (0.7916667, 0.75), (0.7916667, 0.73333335), (0.7916667, 0.73333335), (0.7916667, 0.75), (0.78333336, 0.75), (0.78333336, 0.73333335), (0.78333336, 0.73333335), (0.78333336, 0.75), (0.775, 0.75), (0.775, 0.73333335), (0.775, 0.73333335), (0.775, 0.75), (0.76666665, 0.75), (0.76666665, 0.73333335), (0.76666665, 0.73333335), (0.76666665, 0.75), (0.7583333, 0.75), (0.7583333, 0.73333335), (0.7583333, 0.73333335), (0.7583333, 0.75), (0.75, 0.75), (0.75, 0.73333335), (0.75, 0.73333335), (0.75, 0.75), (0.7416667, 0.75), (0.7416667, 0.73333335), (0.7416667, 0.73333335), (0.7416667, 0.75), (0.73333335, 0.75), (0.73333335, 0.73333335), (0.73333335, 0.73333335), (0.73333335, 0.75), (0.725, 0.75), (0.725, 0.73333335), (0.725, 0.73333335), (0.725, 0.75), (0.71666664, 0.75), (0.71666664, 0.73333335), (0.71666664, 0.73333335), (0.71666664, 0.75), (0.7083333, 0.75), (0.7083333, 0.73333335), (0.7083333, 0.73333335), (0.7083333, 0.75), (0.7, 0.75), (0.7, 0.73333335), (0.7, 0.73333335), (0.7, 0.75), (0.69166666, 0.75), (0.69166666, 0.73333335), (0.69166666, 0.73333335), (0.69166666, 0.75), (0.68333334, 0.75), (0.68333334, 0.73333335), (0.68333334, 0.73333335), (0.68333334, 0.75), (0.675, 0.75), (0.675, 0.73333335), (0.675, 0.73333335), (0.675, 0.75), (0.6666667, 0.75), (0.6666667, 0.73333335), (0.6666667, 0.73333335), (0.6666667, 0.75), (0.65833336, 0.75), (0.65833336, 0.73333335), (0.65833336, 0.73333335), (0.65833336, 0.75), (0.65, 0.75), (0.65, 0.73333335), (0.65, 0.73333335), (0.65, 0.75), (0.64166665, 0.75), (0.64166665, 0.73333335), (0.64166665, 0.73333335), (0.64166665, 0.75), (0.6333333, 0.75), (0.6333333, 0.73333335), (0.6333333, 0.73333335), (0.6333333, 0.75), (0.625, 0.75), (0.625, 0.73333335), (0.625, 0.73333335), (0.625, 0.75), (0.6166667, 0.75), (0.6166667, 0.73333335), (0.6166667, 0.73333335), (0.6166667, 0.75), (0.60833335, 0.75), (0.60833335, 0.73333335), (0.60833335, 0.73333335), (0.60833335, 0.75), (0.6, 0.75), (0.6, 0.73333335), (0.6, 0.73333335), (0.6, 0.75), (0.59166664, 0.75), (0.59166664, 0.73333335), (0.59166664, 0.73333335), (0.59166664, 0.75), (0.5833333, 0.75), (0.5833333, 0.73333335), (0.5833333, 0.73333335), (0.5833333, 0.75), (0.575, 0.75), (0.575, 0.73333335), (0.575, 0.73333335), (0.575, 0.75), (0.56666666, 0.75), (0.56666666, 0.73333335), (0.56666666, 0.73333335), (0.56666666, 0.75), (0.55833334, 0.75), (0.55833334, 0.73333335), (0.55833334, 0.73333335), (0.55833334, 0.75), (0.55, 0.75), (0.55, 0.73333335), (0.55, 0.73333335), (0.55, 0.75), (0.5416667, 0.75), (0.5416667, 0.73333335), (0.5416667, 0.73333335), (0.5416667, 0.75), (0.53333336, 0.75), (0.53333336, 0.73333335), (0.53333336, 0.73333335), (0.53333336, 0.75), (0.525, 0.75), (0.525, 0.73333335), (0.525, 0.73333335), (0.525, 0.75), (0.51666665, 0.75), (0.51666665, 0.73333335), (0.51666665, 0.73333335), (0.51666665, 0.75), (0.5083333, 0.75), (0.5083333, 0.73333335), (0.5083333, 0.73333335), (0.5083333, 0.75), (0.5, 0.75), (0.5, 0.73333335), (0.5, 0.73333335), (0.5, 0.75), (0.49166667, 0.75), (0.49166667, 0.73333335), (0.49166667, 0.73333335), (0.49166667, 0.75), (0.48333332, 0.75), (0.48333332, 0.73333335), (0.48333332, 0.73333335), (0.48333332, 0.75), (0.475, 0.75), (0.475, 0.73333335), (0.475, 0.73333335), (0.475, 0.75), (0.46666667, 0.75), (0.46666667, 0.73333335), (0.46666667, 0.73333335), (0.46666667, 0.75), (0.45833334, 0.75), (0.45833334, 0.73333335), (0.45833334, 0.73333335), (0.45833334, 0.75), (0.45, 0.75), (0.45, 0.73333335), (0.45, 0.73333335), (0.45, 0.75), (0.44166666, 0.75), (0.44166666, 0.73333335), (0.44166666, 0.73333335), (0.44166666, 0.75), (0.43333334, 0.75), (0.43333334, 0.73333335), (0.43333334, 0.73333335), (0.43333334, 0.75), (0.425, 0.75), (0.425, 0.73333335), (0.425, 0.73333335), (0.425, 0.75), (0.41666666, 0.75), (0.41666666, 0.73333335), (0.41666666, 0.73333335), (0.41666666, 0.75), (0.40833333, 0.75), (0.40833333, 0.73333335), (0.40833333, 0.73333335), (0.40833333, 0.75), (0.4, 0.75), (0.4, 0.73333335), (0.4, 0.73333335), (0.4, 0.75), (0.39166668, 0.75), (0.39166668, 0.73333335), (0.39166668, 0.73333335), (0.39166668, 0.75), (0.38333333, 0.75), (0.38333333, 0.73333335), (0.38333333, 0.73333335), (0.38333333, 0.75), (0.375, 0.75), (0.375, 0.73333335), (0.375, 0.73333335), (0.375, 0.75), (0.36666667, 0.75), (0.36666667, 0.73333335), (0.36666667, 0.73333335), (0.36666667, 0.75), (0.35833332, 0.75), (0.35833332, 0.73333335), (0.35833332, 0.73333335), (0.35833332, 0.75), (0.35, 0.75), (0.35, 0.73333335), (0.35, 0.73333335), (0.35, 0.75), (0.34166667, 0.75), (0.34166667, 0.73333335), (0.34166667, 0.73333335), (0.34166667, 0.75), (0.33333334, 0.75), (0.33333334, 0.73333335), (0.33333334, 0.73333335), (0.33333334, 0.75), (0.325, 0.75), (0.325, 0.73333335), (0.325, 0.73333335), (0.325, 0.75), (0.31666666, 0.75), (0.31666666, 0.73333335), (0.31666666, 0.73333335), (0.31666666, 0.75), (0.30833334, 0.75), (0.30833334, 0.73333335), (0.30833334, 0.73333335), (0.30833334, 0.75), (0.3, 0.75), (0.3, 0.73333335), (0.3, 0.73333335), (0.3, 0.75), (0.29166666, 0.75), (0.29166666, 0.73333335), (0.29166666, 0.73333335), (0.29166666, 0.75), (0.28333333, 0.75), (0.28333333, 0.73333335), (0.28333333, 0.73333335), (0.28333333, 0.75), (0.275, 0.75), (0.275, 0.73333335), (0.275, 0.73333335), (0.275, 0.75), (0.26666668, 0.75), (0.26666668, 0.73333335), (0.26666668, 0.73333335), (0.26666668, 0.75), (0.25833333, 0.75), (0.25833333, 0.73333335), (0.25833333, 0.73333335), (0.25833333, 0.75), (0.25, 0.75), (0.25, 0.73333335), (0.25, 0.73333335), (0.25, 0.75), (0.24166666, 0.75), (0.24166666, 0.73333335), (0.24166666, 0.73333335), (0.24166666, 0.75), (0.23333333, 0.75), (0.23333333, 0.73333335), (0.23333333, 0.73333335), (0.23333333, 0.75), (0.225, 0.75), (0.225, 0.73333335), (0.225, 0.73333335), (0.225, 0.75), (0.21666667, 0.75), (0.21666667, 0.73333335), (0.21666667, 0.73333335), (0.21666667, 0.75), (0.20833333, 0.75), (0.20833333, 0.73333335), (0.20833333, 0.73333335), (0.20833333, 0.75), (0.2, 0.75), (0.2, 0.73333335), (0.2, 0.73333335), (0.2, 0.75), (0.19166666, 0.75), (0.19166666, 0.73333335), (0.19166666, 0.73333335), (0.19166666, 0.75), (0.18333334, 0.75), (0.18333334, 0.73333335), (0.18333334, 0.73333335), (0.18333334, 0.75), (0.175, 0.75), (0.175, 0.73333335), (0.175, 0.73333335), (0.175, 0.75), (0.16666667, 0.75), (0.16666667, 0.73333335), (0.16666667, 0.73333335), (0.16666667, 0.75), (0.15833333, 0.75), (0.15833333, 0.73333335), (0.15833333, 0.73333335), (0.15833333, 0.75), (0.15, 0.75), (0.15, 0.73333335), (0.15, 0.73333335), (0.15, 0.75), (0.14166667, 0.75), (0.14166667, 0.73333335), (0.14166667, 0.73333335), (0.14166667, 0.75), (0.13333334, 0.75), (0.13333334, 0.73333335), (0.13333334, 0.73333335), (0.13333334, 0.75), (0.125, 0.75), (0.125, 0.73333335), (0.125, 0.73333335), (0.125, 0.75), (0.11666667, 0.75), (0.11666667, 0.73333335), (0.11666667, 0.73333335), (0.11666667, 0.75), (0.108333334, 0.75), (0.108333334, 0.73333335), (0.108333334, 0.73333335), (0.108333334, 0.75), (0.1, 0.75), (0.1, 0.73333335), (0.1, 0.73333335), (0.1, 0.75), (0.09166667, 0.75), (0.09166667, 0.73333335), (0.09166667, 0.73333335), (0.09166667, 0.75), (0.083333336, 0.75), (0.083333336, 0.73333335), (0.083333336, 0.73333335), (0.083333336, 0.75), (0.075, 0.75), (0.075, 0.73333335), (0.075, 0.73333335), (0.075, 0.75), (0.06666667, 0.75), (0.06666667, 0.73333335), (0.06666667, 0.73333335), (0.06666667, 0.75), (0.058333334, 0.75), (0.058333334, 0.73333335), (0.058333334, 0.73333335), (0.058333334, 0.75), (0.05, 0.75), (0.05, 0.73333335), (0.05, 0.73333335), (0.05, 0.75), (0.041666668, 0.75), (0.041666668, 0.73333335), (0.041666668, 0.73333335), (0.041666668, 0.75), (0.033333335, 0.75), (0.033333335, 0.73333335), (0.033333335, 0.73333335), (0.033333335, 0.75), (0.025, 0.75), (0.025, 0.73333335), (0.025, 0.73333335), (0.025, 0.75), (0.016666668, 0.75), (0.016666668, 0.73333335), (0.016666668, 0.73333335), (0.016666668, 0.75), (0.008333334, 0.75), (0.008333334, 0.73333335), (0.008333334, 0.73333335), (0.008333334, 0.75), (0, 0.75), (0, 0.73333335), (1, 0.75), (1, 0.76666665), (0.9916667, 0.76666665), (0.9916667, 0.75), (0.9916667, 0.75), (0.9916667, 0.76666665), (0.98333335, 0.76666665), (0.98333335, 0.75), (0.98333335, 0.75), (0.98333335, 0.76666665), (0.975, 0.76666665), (0.975, 0.75), (0.975, 0.75), (0.975, 0.76666665), (0.96666664, 0.76666665), (0.96666664, 0.75), (0.96666664, 0.75), (0.96666664, 0.76666665), (0.9583333, 0.76666665), (0.9583333, 0.75), (0.9583333, 0.75), (0.9583333, 0.76666665), (0.95, 0.76666665), (0.95, 0.75), (0.95, 0.75), (0.95, 0.76666665), (0.94166666, 0.76666665), (0.94166666, 0.75), (0.94166666, 0.75), (0.94166666, 0.76666665), (0.93333334, 0.76666665), (0.93333334, 0.75), (0.93333334, 0.75), (0.93333334, 0.76666665), (0.925, 0.76666665), (0.925, 0.75), (0.925, 0.75), (0.925, 0.76666665), (0.9166667, 0.76666665), (0.9166667, 0.75), (0.9166667, 0.75), (0.9166667, 0.76666665), (0.90833336, 0.76666665), (0.90833336, 0.75), (0.90833336, 0.75), (0.90833336, 0.76666665), (0.9, 0.76666665), (0.9, 0.75), (0.9, 0.75), (0.9, 0.76666665), (0.89166665, 0.76666665), (0.89166665, 0.75), (0.89166665, 0.75), (0.89166665, 0.76666665), (0.8833333, 0.76666665), (0.8833333, 0.75), (0.8833333, 0.75), (0.8833333, 0.76666665), (0.875, 0.76666665), (0.875, 0.75), (0.875, 0.75), (0.875, 0.76666665), (0.8666667, 0.76666665), (0.8666667, 0.75), (0.8666667, 0.75), (0.8666667, 0.76666665), (0.85833335, 0.76666665), (0.85833335, 0.75), (0.85833335, 0.75), (0.85833335, 0.76666665), (0.85, 0.76666665), (0.85, 0.75), (0.85, 0.75), (0.85, 0.76666665), (0.84166664, 0.76666665), (0.84166664, 0.75), (0.84166664, 0.75), (0.84166664, 0.76666665), (0.8333333, 0.76666665), (0.8333333, 0.75), (0.8333333, 0.75), (0.8333333, 0.76666665), (0.825, 0.76666665), (0.825, 0.75), (0.825, 0.75), (0.825, 0.76666665), (0.81666666, 0.76666665), (0.81666666, 0.75), (0.81666666, 0.75), (0.81666666, 0.76666665), (0.80833334, 0.76666665), (0.80833334, 0.75), (0.80833334, 0.75), (0.80833334, 0.76666665), (0.8, 0.76666665), (0.8, 0.75), (0.8, 0.75), (0.8, 0.76666665), (0.7916667, 0.76666665), (0.7916667, 0.75), (0.7916667, 0.75), (0.7916667, 0.76666665), (0.78333336, 0.76666665), (0.78333336, 0.75), (0.78333336, 0.75), (0.78333336, 0.76666665), (0.775, 0.76666665), (0.775, 0.75), (0.775, 0.75), (0.775, 0.76666665), (0.76666665, 0.76666665), (0.76666665, 0.75), (0.76666665, 0.75), (0.76666665, 0.76666665), (0.7583333, 0.76666665), (0.7583333, 0.75), (0.7583333, 0.75), (0.7583333, 0.76666665), (0.75, 0.76666665), (0.75, 0.75), (0.75, 0.75), (0.75, 0.76666665), (0.7416667, 0.76666665), (0.7416667, 0.75), (0.7416667, 0.75), (0.7416667, 0.76666665), (0.73333335, 0.76666665), (0.73333335, 0.75), (0.73333335, 0.75), (0.73333335, 0.76666665), (0.725, 0.76666665), (0.725, 0.75), (0.725, 0.75), (0.725, 0.76666665), (0.71666664, 0.76666665), (0.71666664, 0.75), (0.71666664, 0.75), (0.71666664, 0.76666665), (0.7083333, 0.76666665), (0.7083333, 0.75), (0.7083333, 0.75), (0.7083333, 0.76666665), (0.7, 0.76666665), (0.7, 0.75), (0.7, 0.75), (0.7, 0.76666665), (0.69166666, 0.76666665), (0.69166666, 0.75), (0.69166666, 0.75), (0.69166666, 0.76666665), (0.68333334, 0.76666665), (0.68333334, 0.75), (0.68333334, 0.75), (0.68333334, 0.76666665), (0.675, 0.76666665), (0.675, 0.75), (0.675, 0.75), (0.675, 0.76666665), (0.6666667, 0.76666665), (0.6666667, 0.75), (0.6666667, 0.75), (0.6666667, 0.76666665), (0.65833336, 0.76666665), (0.65833336, 0.75), (0.65833336, 0.75), (0.65833336, 0.76666665), (0.65, 0.76666665), (0.65, 0.75), (0.65, 0.75), (0.65, 0.76666665), (0.64166665, 0.76666665), (0.64166665, 0.75), (0.64166665, 0.75), (0.64166665, 0.76666665), (0.6333333, 0.76666665), (0.6333333, 0.75), (0.6333333, 0.75), (0.6333333, 0.76666665), (0.625, 0.76666665), (0.625, 0.75), (0.625, 0.75), (0.625, 0.76666665), (0.6166667, 0.76666665), (0.6166667, 0.75), (0.6166667, 0.75), (0.6166667, 0.76666665), (0.60833335, 0.76666665), (0.60833335, 0.75), (0.60833335, 0.75), (0.60833335, 0.76666665), (0.6, 0.76666665), (0.6, 0.75), (0.6, 0.75), (0.6, 0.76666665), (0.59166664, 0.76666665), (0.59166664, 0.75), (0.59166664, 0.75), (0.59166664, 0.76666665), (0.5833333, 0.76666665), (0.5833333, 0.75), (0.5833333, 0.75), (0.5833333, 0.76666665), (0.575, 0.76666665), (0.575, 0.75), (0.575, 0.75), (0.575, 0.76666665), (0.56666666, 0.76666665), (0.56666666, 0.75), (0.56666666, 0.75), (0.56666666, 0.76666665), (0.55833334, 0.76666665), (0.55833334, 0.75), (0.55833334, 0.75), (0.55833334, 0.76666665), (0.55, 0.76666665), (0.55, 0.75), (0.55, 0.75), (0.55, 0.76666665), (0.5416667, 0.76666665), (0.5416667, 0.75), (0.5416667, 0.75), (0.5416667, 0.76666665), (0.53333336, 0.76666665), (0.53333336, 0.75), (0.53333336, 0.75), (0.53333336, 0.76666665), (0.525, 0.76666665), (0.525, 0.75), (0.525, 0.75), (0.525, 0.76666665), (0.51666665, 0.76666665), (0.51666665, 0.75), (0.51666665, 0.75), (0.51666665, 0.76666665), (0.5083333, 0.76666665), (0.5083333, 0.75), (0.5083333, 0.75), (0.5083333, 0.76666665), (0.5, 0.76666665), (0.5, 0.75), (0.5, 0.75), (0.5, 0.76666665), (0.49166667, 0.76666665), (0.49166667, 0.75), (0.49166667, 0.75), (0.49166667, 0.76666665), (0.48333332, 0.76666665), (0.48333332, 0.75), (0.48333332, 0.75), (0.48333332, 0.76666665), (0.475, 0.76666665), (0.475, 0.75), (0.475, 0.75), (0.475, 0.76666665), (0.46666667, 0.76666665), (0.46666667, 0.75), (0.46666667, 0.75), (0.46666667, 0.76666665), (0.45833334, 0.76666665), (0.45833334, 0.75), (0.45833334, 0.75), (0.45833334, 0.76666665), (0.45, 0.76666665), (0.45, 0.75), (0.45, 0.75), (0.45, 0.76666665), (0.44166666, 0.76666665), (0.44166666, 0.75), (0.44166666, 0.75), (0.44166666, 0.76666665), (0.43333334, 0.76666665), (0.43333334, 0.75), (0.43333334, 0.75), (0.43333334, 0.76666665), (0.425, 0.76666665), (0.425, 0.75), (0.425, 0.75), (0.425, 0.76666665), (0.41666666, 0.76666665), (0.41666666, 0.75), (0.41666666, 0.75), (0.41666666, 0.76666665), (0.40833333, 0.76666665), (0.40833333, 0.75), (0.40833333, 0.75), (0.40833333, 0.76666665), (0.4, 0.76666665), (0.4, 0.75), (0.4, 0.75), (0.4, 0.76666665), (0.39166668, 0.76666665), (0.39166668, 0.75), (0.39166668, 0.75), (0.39166668, 0.76666665), (0.38333333, 0.76666665), (0.38333333, 0.75), (0.38333333, 0.75), (0.38333333, 0.76666665), (0.375, 0.76666665), (0.375, 0.75), (0.375, 0.75), (0.375, 0.76666665), (0.36666667, 0.76666665), (0.36666667, 0.75), (0.36666667, 0.75), (0.36666667, 0.76666665), (0.35833332, 0.76666665), (0.35833332, 0.75), (0.35833332, 0.75), (0.35833332, 0.76666665), (0.35, 0.76666665), (0.35, 0.75), (0.35, 0.75), (0.35, 0.76666665), (0.34166667, 0.76666665), (0.34166667, 0.75), (0.34166667, 0.75), (0.34166667, 0.76666665), (0.33333334, 0.76666665), (0.33333334, 0.75), (0.33333334, 0.75), (0.33333334, 0.76666665), (0.325, 0.76666665), (0.325, 0.75), (0.325, 0.75), (0.325, 0.76666665), (0.31666666, 0.76666665), (0.31666666, 0.75), (0.31666666, 0.75), (0.31666666, 0.76666665), (0.30833334, 0.76666665), (0.30833334, 0.75), (0.30833334, 0.75), (0.30833334, 0.76666665), (0.3, 0.76666665), (0.3, 0.75), (0.3, 0.75), (0.3, 0.76666665), (0.29166666, 0.76666665), (0.29166666, 0.75), (0.29166666, 0.75), (0.29166666, 0.76666665), (0.28333333, 0.76666665), (0.28333333, 0.75), (0.28333333, 0.75), (0.28333333, 0.76666665), (0.275, 0.76666665), (0.275, 0.75), (0.275, 0.75), (0.275, 0.76666665), (0.26666668, 0.76666665), (0.26666668, 0.75), (0.26666668, 0.75), (0.26666668, 0.76666665), (0.25833333, 0.76666665), (0.25833333, 0.75), (0.25833333, 0.75), (0.25833333, 0.76666665), (0.25, 0.76666665), (0.25, 0.75), (0.25, 0.75), (0.25, 0.76666665), (0.24166666, 0.76666665), (0.24166666, 0.75), (0.24166666, 0.75), (0.24166666, 0.76666665), (0.23333333, 0.76666665), (0.23333333, 0.75), (0.23333333, 0.75), (0.23333333, 0.76666665), (0.225, 0.76666665), (0.225, 0.75), (0.225, 0.75), (0.225, 0.76666665), (0.21666667, 0.76666665), (0.21666667, 0.75), (0.21666667, 0.75), (0.21666667, 0.76666665), (0.20833333, 0.76666665), (0.20833333, 0.75), (0.20833333, 0.75), (0.20833333, 0.76666665), (0.2, 0.76666665), (0.2, 0.75), (0.2, 0.75), (0.2, 0.76666665), (0.19166666, 0.76666665), (0.19166666, 0.75), (0.19166666, 0.75), (0.19166666, 0.76666665), (0.18333334, 0.76666665), (0.18333334, 0.75), (0.18333334, 0.75), (0.18333334, 0.76666665), (0.175, 0.76666665), (0.175, 0.75), (0.175, 0.75), (0.175, 0.76666665), (0.16666667, 0.76666665), (0.16666667, 0.75), (0.16666667, 0.75), (0.16666667, 0.76666665), (0.15833333, 0.76666665), (0.15833333, 0.75), (0.15833333, 0.75), (0.15833333, 0.76666665), (0.15, 0.76666665), (0.15, 0.75), (0.15, 0.75), (0.15, 0.76666665), (0.14166667, 0.76666665), (0.14166667, 0.75), (0.14166667, 0.75), (0.14166667, 0.76666665), (0.13333334, 0.76666665), (0.13333334, 0.75), (0.13333334, 0.75), (0.13333334, 0.76666665), (0.125, 0.76666665), (0.125, 0.75), (0.125, 0.75), (0.125, 0.76666665), (0.11666667, 0.76666665), (0.11666667, 0.75), (0.11666667, 0.75), (0.11666667, 0.76666665), (0.108333334, 0.76666665), (0.108333334, 0.75), (0.108333334, 0.75), (0.108333334, 0.76666665), (0.1, 0.76666665), (0.1, 0.75), (0.1, 0.75), (0.1, 0.76666665), (0.09166667, 0.76666665), (0.09166667, 0.75), (0.09166667, 0.75), (0.09166667, 0.76666665), (0.083333336, 0.76666665), (0.083333336, 0.75), (0.083333336, 0.75), (0.083333336, 0.76666665), (0.075, 0.76666665), (0.075, 0.75), (0.075, 0.75), (0.075, 0.76666665), (0.06666667, 0.76666665), (0.06666667, 0.75), (0.06666667, 0.75), (0.06666667, 0.76666665), (0.058333334, 0.76666665), (0.058333334, 0.75), (0.058333334, 0.75), (0.058333334, 0.76666665), (0.05, 0.76666665), (0.05, 0.75), (0.05, 0.75), (0.05, 0.76666665), (0.041666668, 0.76666665), (0.041666668, 0.75), (0.041666668, 0.75), (0.041666668, 0.76666665), (0.033333335, 0.76666665), (0.033333335, 0.75), (0.033333335, 0.75), (0.033333335, 0.76666665), (0.025, 0.76666665), (0.025, 0.75), (0.025, 0.75), (0.025, 0.76666665), (0.016666668, 0.76666665), (0.016666668, 0.75), (0.016666668, 0.75), (0.016666668, 0.76666665), (0.008333334, 0.76666665), (0.008333334, 0.75), (0.008333334, 0.75), (0.008333334, 0.76666665), (0, 0.76666665), (0, 0.75), (1, 0.76666665), (1, 0.78333336), (0.9916667, 0.78333336), (0.9916667, 0.76666665), (0.9916667, 0.76666665), (0.9916667, 0.78333336), (0.98333335, 0.78333336), (0.98333335, 0.76666665), (0.98333335, 0.76666665), (0.98333335, 0.78333336), (0.975, 0.78333336), (0.975, 0.76666665), (0.975, 0.76666665), (0.975, 0.78333336), (0.96666664, 0.78333336), (0.96666664, 0.76666665), (0.96666664, 0.76666665), (0.96666664, 0.78333336), (0.9583333, 0.78333336), (0.9583333, 0.76666665), (0.9583333, 0.76666665), (0.9583333, 0.78333336), (0.95, 0.78333336), (0.95, 0.76666665), (0.95, 0.76666665), (0.95, 0.78333336), (0.94166666, 0.78333336), (0.94166666, 0.76666665), (0.94166666, 0.76666665), (0.94166666, 0.78333336), (0.93333334, 0.78333336), (0.93333334, 0.76666665), (0.93333334, 0.76666665), (0.93333334, 0.78333336), (0.925, 0.78333336), (0.925, 0.76666665), (0.925, 0.76666665), (0.925, 0.78333336), (0.9166667, 0.78333336), (0.9166667, 0.76666665), (0.9166667, 0.76666665), (0.9166667, 0.78333336), (0.90833336, 0.78333336), (0.90833336, 0.76666665), (0.90833336, 0.76666665), (0.90833336, 0.78333336), (0.9, 0.78333336), (0.9, 0.76666665), (0.9, 0.76666665), (0.9, 0.78333336), (0.89166665, 0.78333336), (0.89166665, 0.76666665), (0.89166665, 0.76666665), (0.89166665, 0.78333336), (0.8833333, 0.78333336), (0.8833333, 0.76666665), (0.8833333, 0.76666665), (0.8833333, 0.78333336), (0.875, 0.78333336), (0.875, 0.76666665), (0.875, 0.76666665), (0.875, 0.78333336), (0.8666667, 0.78333336), (0.8666667, 0.76666665), (0.8666667, 0.76666665), (0.8666667, 0.78333336), (0.85833335, 0.78333336), (0.85833335, 0.76666665), (0.85833335, 0.76666665), (0.85833335, 0.78333336), (0.85, 0.78333336), (0.85, 0.76666665), (0.85, 0.76666665), (0.85, 0.78333336), (0.84166664, 0.78333336), (0.84166664, 0.76666665), (0.84166664, 0.76666665), (0.84166664, 0.78333336), (0.8333333, 0.78333336), (0.8333333, 0.76666665), (0.8333333, 0.76666665), (0.8333333, 0.78333336), (0.825, 0.78333336), (0.825, 0.76666665), (0.825, 0.76666665), (0.825, 0.78333336), (0.81666666, 0.78333336), (0.81666666, 0.76666665), (0.81666666, 0.76666665), (0.81666666, 0.78333336), (0.80833334, 0.78333336), (0.80833334, 0.76666665), (0.80833334, 0.76666665), (0.80833334, 0.78333336), (0.8, 0.78333336), (0.8, 0.76666665), (0.8, 0.76666665), (0.8, 0.78333336), (0.7916667, 0.78333336), (0.7916667, 0.76666665), (0.7916667, 0.76666665), (0.7916667, 0.78333336), (0.78333336, 0.78333336), (0.78333336, 0.76666665), (0.78333336, 0.76666665), (0.78333336, 0.78333336), (0.775, 0.78333336), (0.775, 0.76666665), (0.775, 0.76666665), (0.775, 0.78333336), (0.76666665, 0.78333336), (0.76666665, 0.76666665), (0.76666665, 0.76666665), (0.76666665, 0.78333336), (0.7583333, 0.78333336), (0.7583333, 0.76666665), (0.7583333, 0.76666665), (0.7583333, 0.78333336), (0.75, 0.78333336), (0.75, 0.76666665), (0.75, 0.76666665), (0.75, 0.78333336), (0.7416667, 0.78333336), (0.7416667, 0.76666665), (0.7416667, 0.76666665), (0.7416667, 0.78333336), (0.73333335, 0.78333336), (0.73333335, 0.76666665), (0.73333335, 0.76666665), (0.73333335, 0.78333336), (0.725, 0.78333336), (0.725, 0.76666665), (0.725, 0.76666665), (0.725, 0.78333336), (0.71666664, 0.78333336), (0.71666664, 0.76666665), (0.71666664, 0.76666665), (0.71666664, 0.78333336), (0.7083333, 0.78333336), (0.7083333, 0.76666665), (0.7083333, 0.76666665), (0.7083333, 0.78333336), (0.7, 0.78333336), (0.7, 0.76666665), (0.7, 0.76666665), (0.7, 0.78333336), (0.69166666, 0.78333336), (0.69166666, 0.76666665), (0.69166666, 0.76666665), (0.69166666, 0.78333336), (0.68333334, 0.78333336), (0.68333334, 0.76666665), (0.68333334, 0.76666665), (0.68333334, 0.78333336), (0.675, 0.78333336), (0.675, 0.76666665), (0.675, 0.76666665), (0.675, 0.78333336), (0.6666667, 0.78333336), (0.6666667, 0.76666665), (0.6666667, 0.76666665), (0.6666667, 0.78333336), (0.65833336, 0.78333336), (0.65833336, 0.76666665), (0.65833336, 0.76666665), (0.65833336, 0.78333336), (0.65, 0.78333336), (0.65, 0.76666665), (0.65, 0.76666665), (0.65, 0.78333336), (0.64166665, 0.78333336), (0.64166665, 0.76666665), (0.64166665, 0.76666665), (0.64166665, 0.78333336), (0.6333333, 0.78333336), (0.6333333, 0.76666665), (0.6333333, 0.76666665), (0.6333333, 0.78333336), (0.625, 0.78333336), (0.625, 0.76666665), (0.625, 0.76666665), (0.625, 0.78333336), (0.6166667, 0.78333336), (0.6166667, 0.76666665), (0.6166667, 0.76666665), (0.6166667, 0.78333336), (0.60833335, 0.78333336), (0.60833335, 0.76666665), (0.60833335, 0.76666665), (0.60833335, 0.78333336), (0.6, 0.78333336), (0.6, 0.76666665), (0.6, 0.76666665), (0.6, 0.78333336), (0.59166664, 0.78333336), (0.59166664, 0.76666665), (0.59166664, 0.76666665), (0.59166664, 0.78333336), (0.5833333, 0.78333336), (0.5833333, 0.76666665), (0.5833333, 0.76666665), (0.5833333, 0.78333336), (0.575, 0.78333336), (0.575, 0.76666665), (0.575, 0.76666665), (0.575, 0.78333336), (0.56666666, 0.78333336), (0.56666666, 0.76666665), (0.56666666, 0.76666665), (0.56666666, 0.78333336), (0.55833334, 0.78333336), (0.55833334, 0.76666665), (0.55833334, 0.76666665), (0.55833334, 0.78333336), (0.55, 0.78333336), (0.55, 0.76666665), (0.55, 0.76666665), (0.55, 0.78333336), (0.5416667, 0.78333336), (0.5416667, 0.76666665), (0.5416667, 0.76666665), (0.5416667, 0.78333336), (0.53333336, 0.78333336), (0.53333336, 0.76666665), (0.53333336, 0.76666665), (0.53333336, 0.78333336), (0.525, 0.78333336), (0.525, 0.76666665), (0.525, 0.76666665), (0.525, 0.78333336), (0.51666665, 0.78333336), (0.51666665, 0.76666665), (0.51666665, 0.76666665), (0.51666665, 0.78333336), (0.5083333, 0.78333336), (0.5083333, 0.76666665), (0.5083333, 0.76666665), (0.5083333, 0.78333336), (0.5, 0.78333336), (0.5, 0.76666665), (0.5, 0.76666665), (0.5, 0.78333336), (0.49166667, 0.78333336), (0.49166667, 0.76666665), (0.49166667, 0.76666665), (0.49166667, 0.78333336), (0.48333332, 0.78333336), (0.48333332, 0.76666665), (0.48333332, 0.76666665), (0.48333332, 0.78333336), (0.475, 0.78333336), (0.475, 0.76666665), (0.475, 0.76666665), (0.475, 0.78333336), (0.46666667, 0.78333336), (0.46666667, 0.76666665), (0.46666667, 0.76666665), (0.46666667, 0.78333336), (0.45833334, 0.78333336), (0.45833334, 0.76666665), (0.45833334, 0.76666665), (0.45833334, 0.78333336), (0.45, 0.78333336), (0.45, 0.76666665), (0.45, 0.76666665), (0.45, 0.78333336), (0.44166666, 0.78333336), (0.44166666, 0.76666665), (0.44166666, 0.76666665), (0.44166666, 0.78333336), (0.43333334, 0.78333336), (0.43333334, 0.76666665), (0.43333334, 0.76666665), (0.43333334, 0.78333336), (0.425, 0.78333336), (0.425, 0.76666665), (0.425, 0.76666665), (0.425, 0.78333336), (0.41666666, 0.78333336), (0.41666666, 0.76666665), (0.41666666, 0.76666665), (0.41666666, 0.78333336), (0.40833333, 0.78333336), (0.40833333, 0.76666665), (0.40833333, 0.76666665), (0.40833333, 0.78333336), (0.4, 0.78333336), (0.4, 0.76666665), (0.4, 0.76666665), (0.4, 0.78333336), (0.39166668, 0.78333336), (0.39166668, 0.76666665), (0.39166668, 0.76666665), (0.39166668, 0.78333336), (0.38333333, 0.78333336), (0.38333333, 0.76666665), (0.38333333, 0.76666665), (0.38333333, 0.78333336), (0.375, 0.78333336), (0.375, 0.76666665), (0.375, 0.76666665), (0.375, 0.78333336), (0.36666667, 0.78333336), (0.36666667, 0.76666665), (0.36666667, 0.76666665), (0.36666667, 0.78333336), (0.35833332, 0.78333336), (0.35833332, 0.76666665), (0.35833332, 0.76666665), (0.35833332, 0.78333336), (0.35, 0.78333336), (0.35, 0.76666665), (0.35, 0.76666665), (0.35, 0.78333336), (0.34166667, 0.78333336), (0.34166667, 0.76666665), (0.34166667, 0.76666665), (0.34166667, 0.78333336), (0.33333334, 0.78333336), (0.33333334, 0.76666665), (0.33333334, 0.76666665), (0.33333334, 0.78333336), (0.325, 0.78333336), (0.325, 0.76666665), (0.325, 0.76666665), (0.325, 0.78333336), (0.31666666, 0.78333336), (0.31666666, 0.76666665), (0.31666666, 0.76666665), (0.31666666, 0.78333336), (0.30833334, 0.78333336), (0.30833334, 0.76666665), (0.30833334, 0.76666665), (0.30833334, 0.78333336), (0.3, 0.78333336), (0.3, 0.76666665), (0.3, 0.76666665), (0.3, 0.78333336), (0.29166666, 0.78333336), (0.29166666, 0.76666665), (0.29166666, 0.76666665), (0.29166666, 0.78333336), (0.28333333, 0.78333336), (0.28333333, 0.76666665), (0.28333333, 0.76666665), (0.28333333, 0.78333336), (0.275, 0.78333336), (0.275, 0.76666665), (0.275, 0.76666665), (0.275, 0.78333336), (0.26666668, 0.78333336), (0.26666668, 0.76666665), (0.26666668, 0.76666665), (0.26666668, 0.78333336), (0.25833333, 0.78333336), (0.25833333, 0.76666665), (0.25833333, 0.76666665), (0.25833333, 0.78333336), (0.25, 0.78333336), (0.25, 0.76666665), (0.25, 0.76666665), (0.25, 0.78333336), (0.24166666, 0.78333336), (0.24166666, 0.76666665), (0.24166666, 0.76666665), (0.24166666, 0.78333336), (0.23333333, 0.78333336), (0.23333333, 0.76666665), (0.23333333, 0.76666665), (0.23333333, 0.78333336), (0.225, 0.78333336), (0.225, 0.76666665), (0.225, 0.76666665), (0.225, 0.78333336), (0.21666667, 0.78333336), (0.21666667, 0.76666665), (0.21666667, 0.76666665), (0.21666667, 0.78333336), (0.20833333, 0.78333336), (0.20833333, 0.76666665), (0.20833333, 0.76666665), (0.20833333, 0.78333336), (0.2, 0.78333336), (0.2, 0.76666665), (0.2, 0.76666665), (0.2, 0.78333336), (0.19166666, 0.78333336), (0.19166666, 0.76666665), (0.19166666, 0.76666665), (0.19166666, 0.78333336), (0.18333334, 0.78333336), (0.18333334, 0.76666665), (0.18333334, 0.76666665), (0.18333334, 0.78333336), (0.175, 0.78333336), (0.175, 0.76666665), (0.175, 0.76666665), (0.175, 0.78333336), (0.16666667, 0.78333336), (0.16666667, 0.76666665), (0.16666667, 0.76666665), (0.16666667, 0.78333336), (0.15833333, 0.78333336), (0.15833333, 0.76666665), (0.15833333, 0.76666665), (0.15833333, 0.78333336), (0.15, 0.78333336), (0.15, 0.76666665), (0.15, 0.76666665), (0.15, 0.78333336), (0.14166667, 0.78333336), (0.14166667, 0.76666665), (0.14166667, 0.76666665), (0.14166667, 0.78333336), (0.13333334, 0.78333336), (0.13333334, 0.76666665), (0.13333334, 0.76666665), (0.13333334, 0.78333336), (0.125, 0.78333336), (0.125, 0.76666665), (0.125, 0.76666665), (0.125, 0.78333336), (0.11666667, 0.78333336), (0.11666667, 0.76666665), (0.11666667, 0.76666665), (0.11666667, 0.78333336), (0.108333334, 0.78333336), (0.108333334, 0.76666665), (0.108333334, 0.76666665), (0.108333334, 0.78333336), (0.1, 0.78333336), (0.1, 0.76666665), (0.1, 0.76666665), (0.1, 0.78333336), (0.09166667, 0.78333336), (0.09166667, 0.76666665), (0.09166667, 0.76666665), (0.09166667, 0.78333336), (0.083333336, 0.78333336), (0.083333336, 0.76666665), (0.083333336, 0.76666665), (0.083333336, 0.78333336), (0.075, 0.78333336), (0.075, 0.76666665), (0.075, 0.76666665), (0.075, 0.78333336), (0.06666667, 0.78333336), (0.06666667, 0.76666665), (0.06666667, 0.76666665), (0.06666667, 0.78333336), (0.058333334, 0.78333336), (0.058333334, 0.76666665), (0.058333334, 0.76666665), (0.058333334, 0.78333336), (0.05, 0.78333336), (0.05, 0.76666665), (0.05, 0.76666665), (0.05, 0.78333336), (0.041666668, 0.78333336), (0.041666668, 0.76666665), (0.041666668, 0.76666665), (0.041666668, 0.78333336), (0.033333335, 0.78333336), (0.033333335, 0.76666665), (0.033333335, 0.76666665), (0.033333335, 0.78333336), (0.025, 0.78333336), (0.025, 0.76666665), (0.025, 0.76666665), (0.025, 0.78333336), (0.016666668, 0.78333336), (0.016666668, 0.76666665), (0.016666668, 0.76666665), (0.016666668, 0.78333336), (0.008333334, 0.78333336), (0.008333334, 0.76666665), (0.008333334, 0.76666665), (0.008333334, 0.78333336), (0, 0.78333336), (0, 0.76666665), (1, 0.78333336), (1, 0.8), (0.9916667, 0.8), (0.9916667, 0.78333336), (0.9916667, 0.78333336), (0.9916667, 0.8), (0.98333335, 0.8), (0.98333335, 0.78333336), (0.98333335, 0.78333336), (0.98333335, 0.8), (0.975, 0.8), (0.975, 0.78333336), (0.975, 0.78333336), (0.975, 0.8), (0.96666664, 0.8), (0.96666664, 0.78333336), (0.96666664, 0.78333336), (0.96666664, 0.8), (0.9583333, 0.8), (0.9583333, 0.78333336), (0.9583333, 0.78333336), (0.9583333, 0.8), (0.95, 0.8), (0.95, 0.78333336), (0.95, 0.78333336), (0.95, 0.8), (0.94166666, 0.8), (0.94166666, 0.78333336), (0.94166666, 0.78333336), (0.94166666, 0.8), (0.93333334, 0.8), (0.93333334, 0.78333336), (0.93333334, 0.78333336), (0.93333334, 0.8), (0.925, 0.8), (0.925, 0.78333336), (0.925, 0.78333336), (0.925, 0.8), (0.9166667, 0.8), (0.9166667, 0.78333336), (0.9166667, 0.78333336), (0.9166667, 0.8), (0.90833336, 0.8), (0.90833336, 0.78333336), (0.90833336, 0.78333336), (0.90833336, 0.8), (0.9, 0.8), (0.9, 0.78333336), (0.9, 0.78333336), (0.9, 0.8), (0.89166665, 0.8), (0.89166665, 0.78333336), (0.89166665, 0.78333336), (0.89166665, 0.8), (0.8833333, 0.8), (0.8833333, 0.78333336), (0.8833333, 0.78333336), (0.8833333, 0.8), (0.875, 0.8), (0.875, 0.78333336), (0.875, 0.78333336), (0.875, 0.8), (0.8666667, 0.8), (0.8666667, 0.78333336), (0.8666667, 0.78333336), (0.8666667, 0.8), (0.85833335, 0.8), (0.85833335, 0.78333336), (0.85833335, 0.78333336), (0.85833335, 0.8), (0.85, 0.8), (0.85, 0.78333336), (0.85, 0.78333336), (0.85, 0.8), (0.84166664, 0.8), (0.84166664, 0.78333336), (0.84166664, 0.78333336), (0.84166664, 0.8), (0.8333333, 0.8), (0.8333333, 0.78333336), (0.8333333, 0.78333336), (0.8333333, 0.8), (0.825, 0.8), (0.825, 0.78333336), (0.825, 0.78333336), (0.825, 0.8), (0.81666666, 0.8), (0.81666666, 0.78333336), (0.81666666, 0.78333336), (0.81666666, 0.8), (0.80833334, 0.8), (0.80833334, 0.78333336), (0.80833334, 0.78333336), (0.80833334, 0.8), (0.8, 0.8), (0.8, 0.78333336), (0.8, 0.78333336), (0.8, 0.8), (0.7916667, 0.8), (0.7916667, 0.78333336), (0.7916667, 0.78333336), (0.7916667, 0.8), (0.78333336, 0.8), (0.78333336, 0.78333336), (0.78333336, 0.78333336), (0.78333336, 0.8), (0.775, 0.8), (0.775, 0.78333336), (0.775, 0.78333336), (0.775, 0.8), (0.76666665, 0.8), (0.76666665, 0.78333336), (0.76666665, 0.78333336), (0.76666665, 0.8), (0.7583333, 0.8), (0.7583333, 0.78333336), (0.7583333, 0.78333336), (0.7583333, 0.8), (0.75, 0.8), (0.75, 0.78333336), (0.75, 0.78333336), (0.75, 0.8), (0.7416667, 0.8), (0.7416667, 0.78333336), (0.7416667, 0.78333336), (0.7416667, 0.8), (0.73333335, 0.8), (0.73333335, 0.78333336), (0.73333335, 0.78333336), (0.73333335, 0.8), (0.725, 0.8), (0.725, 0.78333336), (0.725, 0.78333336), (0.725, 0.8), (0.71666664, 0.8), (0.71666664, 0.78333336), (0.71666664, 0.78333336), (0.71666664, 0.8), (0.7083333, 0.8), (0.7083333, 0.78333336), (0.7083333, 0.78333336), (0.7083333, 0.8), (0.7, 0.8), (0.7, 0.78333336), (0.7, 0.78333336), (0.7, 0.8), (0.69166666, 0.8), (0.69166666, 0.78333336), (0.69166666, 0.78333336), (0.69166666, 0.8), (0.68333334, 0.8), (0.68333334, 0.78333336), (0.68333334, 0.78333336), (0.68333334, 0.8), (0.675, 0.8), (0.675, 0.78333336), (0.675, 0.78333336), (0.675, 0.8), (0.6666667, 0.8), (0.6666667, 0.78333336), (0.6666667, 0.78333336), (0.6666667, 0.8), (0.65833336, 0.8), (0.65833336, 0.78333336), (0.65833336, 0.78333336), (0.65833336, 0.8), (0.65, 0.8), (0.65, 0.78333336), (0.65, 0.78333336), (0.65, 0.8), (0.64166665, 0.8), (0.64166665, 0.78333336), (0.64166665, 0.78333336), (0.64166665, 0.8), (0.6333333, 0.8), (0.6333333, 0.78333336), (0.6333333, 0.78333336), (0.6333333, 0.8), (0.625, 0.8), (0.625, 0.78333336), (0.625, 0.78333336), (0.625, 0.8), (0.6166667, 0.8), (0.6166667, 0.78333336), (0.6166667, 0.78333336), (0.6166667, 0.8), (0.60833335, 0.8), (0.60833335, 0.78333336), (0.60833335, 0.78333336), (0.60833335, 0.8), (0.6, 0.8), (0.6, 0.78333336), (0.6, 0.78333336), (0.6, 0.8), (0.59166664, 0.8), (0.59166664, 0.78333336), (0.59166664, 0.78333336), (0.59166664, 0.8), (0.5833333, 0.8), (0.5833333, 0.78333336), (0.5833333, 0.78333336), (0.5833333, 0.8), (0.575, 0.8), (0.575, 0.78333336), (0.575, 0.78333336), (0.575, 0.8), (0.56666666, 0.8), (0.56666666, 0.78333336), (0.56666666, 0.78333336), (0.56666666, 0.8), (0.55833334, 0.8), (0.55833334, 0.78333336), (0.55833334, 0.78333336), (0.55833334, 0.8), (0.55, 0.8), (0.55, 0.78333336), (0.55, 0.78333336), (0.55, 0.8), (0.5416667, 0.8), (0.5416667, 0.78333336), (0.5416667, 0.78333336), (0.5416667, 0.8), (0.53333336, 0.8), (0.53333336, 0.78333336), (0.53333336, 0.78333336), (0.53333336, 0.8), (0.525, 0.8), (0.525, 0.78333336), (0.525, 0.78333336), (0.525, 0.8), (0.51666665, 0.8), (0.51666665, 0.78333336), (0.51666665, 0.78333336), (0.51666665, 0.8), (0.5083333, 0.8), (0.5083333, 0.78333336), (0.5083333, 0.78333336), (0.5083333, 0.8), (0.5, 0.8), (0.5, 0.78333336), (0.5, 0.78333336), (0.5, 0.8), (0.49166667, 0.8), (0.49166667, 0.78333336), (0.49166667, 0.78333336), (0.49166667, 0.8), (0.48333332, 0.8), (0.48333332, 0.78333336), (0.48333332, 0.78333336), (0.48333332, 0.8), (0.475, 0.8), (0.475, 0.78333336), (0.475, 0.78333336), (0.475, 0.8), (0.46666667, 0.8), (0.46666667, 0.78333336), (0.46666667, 0.78333336), (0.46666667, 0.8), (0.45833334, 0.8), (0.45833334, 0.78333336), (0.45833334, 0.78333336), (0.45833334, 0.8), (0.45, 0.8), (0.45, 0.78333336), (0.45, 0.78333336), (0.45, 0.8), (0.44166666, 0.8), (0.44166666, 0.78333336), (0.44166666, 0.78333336), (0.44166666, 0.8), (0.43333334, 0.8), (0.43333334, 0.78333336), (0.43333334, 0.78333336), (0.43333334, 0.8), (0.425, 0.8), (0.425, 0.78333336), (0.425, 0.78333336), (0.425, 0.8), (0.41666666, 0.8), (0.41666666, 0.78333336), (0.41666666, 0.78333336), (0.41666666, 0.8), (0.40833333, 0.8), (0.40833333, 0.78333336), (0.40833333, 0.78333336), (0.40833333, 0.8), (0.4, 0.8), (0.4, 0.78333336), (0.4, 0.78333336), (0.4, 0.8), (0.39166668, 0.8), (0.39166668, 0.78333336), (0.39166668, 0.78333336), (0.39166668, 0.8), (0.38333333, 0.8), (0.38333333, 0.78333336), (0.38333333, 0.78333336), (0.38333333, 0.8), (0.375, 0.8), (0.375, 0.78333336), (0.375, 0.78333336), (0.375, 0.8), (0.36666667, 0.8), (0.36666667, 0.78333336), (0.36666667, 0.78333336), (0.36666667, 0.8), (0.35833332, 0.8), (0.35833332, 0.78333336), (0.35833332, 0.78333336), (0.35833332, 0.8), (0.35, 0.8), (0.35, 0.78333336), (0.35, 0.78333336), (0.35, 0.8), (0.34166667, 0.8), (0.34166667, 0.78333336), (0.34166667, 0.78333336), (0.34166667, 0.8), (0.33333334, 0.8), (0.33333334, 0.78333336), (0.33333334, 0.78333336), (0.33333334, 0.8), (0.325, 0.8), (0.325, 0.78333336), (0.325, 0.78333336), (0.325, 0.8), (0.31666666, 0.8), (0.31666666, 0.78333336), (0.31666666, 0.78333336), (0.31666666, 0.8), (0.30833334, 0.8), (0.30833334, 0.78333336), (0.30833334, 0.78333336), (0.30833334, 0.8), (0.3, 0.8), (0.3, 0.78333336), (0.3, 0.78333336), (0.3, 0.8), (0.29166666, 0.8), (0.29166666, 0.78333336), (0.29166666, 0.78333336), (0.29166666, 0.8), (0.28333333, 0.8), (0.28333333, 0.78333336), (0.28333333, 0.78333336), (0.28333333, 0.8), (0.275, 0.8), (0.275, 0.78333336), (0.275, 0.78333336), (0.275, 0.8), (0.26666668, 0.8), (0.26666668, 0.78333336), (0.26666668, 0.78333336), (0.26666668, 0.8), (0.25833333, 0.8), (0.25833333, 0.78333336), (0.25833333, 0.78333336), (0.25833333, 0.8), (0.25, 0.8), (0.25, 0.78333336), (0.25, 0.78333336), (0.25, 0.8), (0.24166666, 0.8), (0.24166666, 0.78333336), (0.24166666, 0.78333336), (0.24166666, 0.8), (0.23333333, 0.8), (0.23333333, 0.78333336), (0.23333333, 0.78333336), (0.23333333, 0.8), (0.225, 0.8), (0.225, 0.78333336), (0.225, 0.78333336), (0.225, 0.8), (0.21666667, 0.8), (0.21666667, 0.78333336), (0.21666667, 0.78333336), (0.21666667, 0.8), (0.20833333, 0.8), (0.20833333, 0.78333336), (0.20833333, 0.78333336), (0.20833333, 0.8), (0.2, 0.8), (0.2, 0.78333336), (0.2, 0.78333336), (0.2, 0.8), (0.19166666, 0.8), (0.19166666, 0.78333336), (0.19166666, 0.78333336), (0.19166666, 0.8), (0.18333334, 0.8), (0.18333334, 0.78333336), (0.18333334, 0.78333336), (0.18333334, 0.8), (0.175, 0.8), (0.175, 0.78333336), (0.175, 0.78333336), (0.175, 0.8), (0.16666667, 0.8), (0.16666667, 0.78333336), (0.16666667, 0.78333336), (0.16666667, 0.8), (0.15833333, 0.8), (0.15833333, 0.78333336), (0.15833333, 0.78333336), (0.15833333, 0.8), (0.15, 0.8), (0.15, 0.78333336), (0.15, 0.78333336), (0.15, 0.8), (0.14166667, 0.8), (0.14166667, 0.78333336), (0.14166667, 0.78333336), (0.14166667, 0.8), (0.13333334, 0.8), (0.13333334, 0.78333336), (0.13333334, 0.78333336), (0.13333334, 0.8), (0.125, 0.8), (0.125, 0.78333336), (0.125, 0.78333336), (0.125, 0.8), (0.11666667, 0.8), (0.11666667, 0.78333336), (0.11666667, 0.78333336), (0.11666667, 0.8), (0.108333334, 0.8), (0.108333334, 0.78333336), (0.108333334, 0.78333336), (0.108333334, 0.8), (0.1, 0.8), (0.1, 0.78333336), (0.1, 0.78333336), (0.1, 0.8), (0.09166667, 0.8), (0.09166667, 0.78333336), (0.09166667, 0.78333336), (0.09166667, 0.8), (0.083333336, 0.8), (0.083333336, 0.78333336), (0.083333336, 0.78333336), (0.083333336, 0.8), (0.075, 0.8), (0.075, 0.78333336), (0.075, 0.78333336), (0.075, 0.8), (0.06666667, 0.8), (0.06666667, 0.78333336), (0.06666667, 0.78333336), (0.06666667, 0.8), (0.058333334, 0.8), (0.058333334, 0.78333336), (0.058333334, 0.78333336), (0.058333334, 0.8), (0.05, 0.8), (0.05, 0.78333336), (0.05, 0.78333336), (0.05, 0.8), (0.041666668, 0.8), (0.041666668, 0.78333336), (0.041666668, 0.78333336), (0.041666668, 0.8), (0.033333335, 0.8), (0.033333335, 0.78333336), (0.033333335, 0.78333336), (0.033333335, 0.8), (0.025, 0.8), (0.025, 0.78333336), (0.025, 0.78333336), (0.025, 0.8), (0.016666668, 0.8), (0.016666668, 0.78333336), (0.016666668, 0.78333336), (0.016666668, 0.8), (0.008333334, 0.8), (0.008333334, 0.78333336), (0.008333334, 0.78333336), (0.008333334, 0.8), (0, 0.8), (0, 0.78333336), (1, 0.8), (1, 0.81666666), (0.9916667, 0.81666666), (0.9916667, 0.8), (0.9916667, 0.8), (0.9916667, 0.81666666), (0.98333335, 0.81666666), (0.98333335, 0.8), (0.98333335, 0.8), (0.98333335, 0.81666666), (0.975, 0.81666666), (0.975, 0.8), (0.975, 0.8), (0.975, 0.81666666), (0.96666664, 0.81666666), (0.96666664, 0.8), (0.96666664, 0.8), (0.96666664, 0.81666666), (0.9583333, 0.81666666), (0.9583333, 0.8), (0.9583333, 0.8), (0.9583333, 0.81666666), (0.95, 0.81666666), (0.95, 0.8), (0.95, 0.8), (0.95, 0.81666666), (0.94166666, 0.81666666), (0.94166666, 0.8), (0.94166666, 0.8), (0.94166666, 0.81666666), (0.93333334, 0.81666666), (0.93333334, 0.8), (0.93333334, 0.8), (0.93333334, 0.81666666), (0.925, 0.81666666), (0.925, 0.8), (0.925, 0.8), (0.925, 0.81666666), (0.9166667, 0.81666666), (0.9166667, 0.8), (0.9166667, 0.8), (0.9166667, 0.81666666), (0.90833336, 0.81666666), (0.90833336, 0.8), (0.90833336, 0.8), (0.90833336, 0.81666666), (0.9, 0.81666666), (0.9, 0.8), (0.9, 0.8), (0.9, 0.81666666), (0.89166665, 0.81666666), (0.89166665, 0.8), (0.89166665, 0.8), (0.89166665, 0.81666666), (0.8833333, 0.81666666), (0.8833333, 0.8), (0.8833333, 0.8), (0.8833333, 0.81666666), (0.875, 0.81666666), (0.875, 0.8), (0.875, 0.8), (0.875, 0.81666666), (0.8666667, 0.81666666), (0.8666667, 0.8), (0.8666667, 0.8), (0.8666667, 0.81666666), (0.85833335, 0.81666666), (0.85833335, 0.8), (0.85833335, 0.8), (0.85833335, 0.81666666), (0.85, 0.81666666), (0.85, 0.8), (0.85, 0.8), (0.85, 0.81666666), (0.84166664, 0.81666666), (0.84166664, 0.8), (0.84166664, 0.8), (0.84166664, 0.81666666), (0.8333333, 0.81666666), (0.8333333, 0.8), (0.8333333, 0.8), (0.8333333, 0.81666666), (0.825, 0.81666666), (0.825, 0.8), (0.825, 0.8), (0.825, 0.81666666), (0.81666666, 0.81666666), (0.81666666, 0.8), (0.81666666, 0.8), (0.81666666, 0.81666666), (0.80833334, 0.81666666), (0.80833334, 0.8), (0.80833334, 0.8), (0.80833334, 0.81666666), (0.8, 0.81666666), (0.8, 0.8), (0.8, 0.8), (0.8, 0.81666666), (0.7916667, 0.81666666), (0.7916667, 0.8), (0.7916667, 0.8), (0.7916667, 0.81666666), (0.78333336, 0.81666666), (0.78333336, 0.8), (0.78333336, 0.8), (0.78333336, 0.81666666), (0.775, 0.81666666), (0.775, 0.8), (0.775, 0.8), (0.775, 0.81666666), (0.76666665, 0.81666666), (0.76666665, 0.8), (0.76666665, 0.8), (0.76666665, 0.81666666), (0.7583333, 0.81666666), (0.7583333, 0.8), (0.7583333, 0.8), (0.7583333, 0.81666666), (0.75, 0.81666666), (0.75, 0.8), (0.75, 0.8), (0.75, 0.81666666), (0.7416667, 0.81666666), (0.7416667, 0.8), (0.7416667, 0.8), (0.7416667, 0.81666666), (0.73333335, 0.81666666), (0.73333335, 0.8), (0.73333335, 0.8), (0.73333335, 0.81666666), (0.725, 0.81666666), (0.725, 0.8), (0.725, 0.8), (0.725, 0.81666666), (0.71666664, 0.81666666), (0.71666664, 0.8), (0.71666664, 0.8), (0.71666664, 0.81666666), (0.7083333, 0.81666666), (0.7083333, 0.8), (0.7083333, 0.8), (0.7083333, 0.81666666), (0.7, 0.81666666), (0.7, 0.8), (0.7, 0.8), (0.7, 0.81666666), (0.69166666, 0.81666666), (0.69166666, 0.8), (0.69166666, 0.8), (0.69166666, 0.81666666), (0.68333334, 0.81666666), (0.68333334, 0.8), (0.68333334, 0.8), (0.68333334, 0.81666666), (0.675, 0.81666666), (0.675, 0.8), (0.675, 0.8), (0.675, 0.81666666), (0.6666667, 0.81666666), (0.6666667, 0.8), (0.6666667, 0.8), (0.6666667, 0.81666666), (0.65833336, 0.81666666), (0.65833336, 0.8), (0.65833336, 0.8), (0.65833336, 0.81666666), (0.65, 0.81666666), (0.65, 0.8), (0.65, 0.8), (0.65, 0.81666666), (0.64166665, 0.81666666), (0.64166665, 0.8), (0.64166665, 0.8), (0.64166665, 0.81666666), (0.6333333, 0.81666666), (0.6333333, 0.8), (0.6333333, 0.8), (0.6333333, 0.81666666), (0.625, 0.81666666), (0.625, 0.8), (0.625, 0.8), (0.625, 0.81666666), (0.6166667, 0.81666666), (0.6166667, 0.8), (0.6166667, 0.8), (0.6166667, 0.81666666), (0.60833335, 0.81666666), (0.60833335, 0.8), (0.60833335, 0.8), (0.60833335, 0.81666666), (0.6, 0.81666666), (0.6, 0.8), (0.6, 0.8), (0.6, 0.81666666), (0.59166664, 0.81666666), (0.59166664, 0.8), (0.59166664, 0.8), (0.59166664, 0.81666666), (0.5833333, 0.81666666), (0.5833333, 0.8), (0.5833333, 0.8), (0.5833333, 0.81666666), (0.575, 0.81666666), (0.575, 0.8), (0.575, 0.8), (0.575, 0.81666666), (0.56666666, 0.81666666), (0.56666666, 0.8), (0.56666666, 0.8), (0.56666666, 0.81666666), (0.55833334, 0.81666666), (0.55833334, 0.8), (0.55833334, 0.8), (0.55833334, 0.81666666), (0.55, 0.81666666), (0.55, 0.8), (0.55, 0.8), (0.55, 0.81666666), (0.5416667, 0.81666666), (0.5416667, 0.8), (0.5416667, 0.8), (0.5416667, 0.81666666), (0.53333336, 0.81666666), (0.53333336, 0.8), (0.53333336, 0.8), (0.53333336, 0.81666666), (0.525, 0.81666666), (0.525, 0.8), (0.525, 0.8), (0.525, 0.81666666), (0.51666665, 0.81666666), (0.51666665, 0.8), (0.51666665, 0.8), (0.51666665, 0.81666666), (0.5083333, 0.81666666), (0.5083333, 0.8), (0.5083333, 0.8), (0.5083333, 0.81666666), (0.5, 0.81666666), (0.5, 0.8), (0.5, 0.8), (0.5, 0.81666666), (0.49166667, 0.81666666), (0.49166667, 0.8), (0.49166667, 0.8), (0.49166667, 0.81666666), (0.48333332, 0.81666666), (0.48333332, 0.8), (0.48333332, 0.8), (0.48333332, 0.81666666), (0.475, 0.81666666), (0.475, 0.8), (0.475, 0.8), (0.475, 0.81666666), (0.46666667, 0.81666666), (0.46666667, 0.8), (0.46666667, 0.8), (0.46666667, 0.81666666), (0.45833334, 0.81666666), (0.45833334, 0.8), (0.45833334, 0.8), (0.45833334, 0.81666666), (0.45, 0.81666666), (0.45, 0.8), (0.45, 0.8), (0.45, 0.81666666), (0.44166666, 0.81666666), (0.44166666, 0.8), (0.44166666, 0.8), (0.44166666, 0.81666666), (0.43333334, 0.81666666), (0.43333334, 0.8), (0.43333334, 0.8), (0.43333334, 0.81666666), (0.425, 0.81666666), (0.425, 0.8), (0.425, 0.8), (0.425, 0.81666666), (0.41666666, 0.81666666), (0.41666666, 0.8), (0.41666666, 0.8), (0.41666666, 0.81666666), (0.40833333, 0.81666666), (0.40833333, 0.8), (0.40833333, 0.8), (0.40833333, 0.81666666), (0.4, 0.81666666), (0.4, 0.8), (0.4, 0.8), (0.4, 0.81666666), (0.39166668, 0.81666666), (0.39166668, 0.8), (0.39166668, 0.8), (0.39166668, 0.81666666), (0.38333333, 0.81666666), (0.38333333, 0.8), (0.38333333, 0.8), (0.38333333, 0.81666666), (0.375, 0.81666666), (0.375, 0.8), (0.375, 0.8), (0.375, 0.81666666), (0.36666667, 0.81666666), (0.36666667, 0.8), (0.36666667, 0.8), (0.36666667, 0.81666666), (0.35833332, 0.81666666), (0.35833332, 0.8), (0.35833332, 0.8), (0.35833332, 0.81666666), (0.35, 0.81666666), (0.35, 0.8), (0.35, 0.8), (0.35, 0.81666666), (0.34166667, 0.81666666), (0.34166667, 0.8), (0.34166667, 0.8), (0.34166667, 0.81666666), (0.33333334, 0.81666666), (0.33333334, 0.8), (0.33333334, 0.8), (0.33333334, 0.81666666), (0.325, 0.81666666), (0.325, 0.8), (0.325, 0.8), (0.325, 0.81666666), (0.31666666, 0.81666666), (0.31666666, 0.8), (0.31666666, 0.8), (0.31666666, 0.81666666), (0.30833334, 0.81666666), (0.30833334, 0.8), (0.30833334, 0.8), (0.30833334, 0.81666666), (0.3, 0.81666666), (0.3, 0.8), (0.3, 0.8), (0.3, 0.81666666), (0.29166666, 0.81666666), (0.29166666, 0.8), (0.29166666, 0.8), (0.29166666, 0.81666666), (0.28333333, 0.81666666), (0.28333333, 0.8), (0.28333333, 0.8), (0.28333333, 0.81666666), (0.275, 0.81666666), (0.275, 0.8), (0.275, 0.8), (0.275, 0.81666666), (0.26666668, 0.81666666), (0.26666668, 0.8), (0.26666668, 0.8), (0.26666668, 0.81666666), (0.25833333, 0.81666666), (0.25833333, 0.8), (0.25833333, 0.8), (0.25833333, 0.81666666), (0.25, 0.81666666), (0.25, 0.8), (0.25, 0.8), (0.25, 0.81666666), (0.24166666, 0.81666666), (0.24166666, 0.8), (0.24166666, 0.8), (0.24166666, 0.81666666), (0.23333333, 0.81666666), (0.23333333, 0.8), (0.23333333, 0.8), (0.23333333, 0.81666666), (0.225, 0.81666666), (0.225, 0.8), (0.225, 0.8), (0.225, 0.81666666), (0.21666667, 0.81666666), (0.21666667, 0.8), (0.21666667, 0.8), (0.21666667, 0.81666666), (0.20833333, 0.81666666), (0.20833333, 0.8), (0.20833333, 0.8), (0.20833333, 0.81666666), (0.2, 0.81666666), (0.2, 0.8), (0.2, 0.8), (0.2, 0.81666666), (0.19166666, 0.81666666), (0.19166666, 0.8), (0.19166666, 0.8), (0.19166666, 0.81666666), (0.18333334, 0.81666666), (0.18333334, 0.8), (0.18333334, 0.8), (0.18333334, 0.81666666), (0.175, 0.81666666), (0.175, 0.8), (0.175, 0.8), (0.175, 0.81666666), (0.16666667, 0.81666666), (0.16666667, 0.8), (0.16666667, 0.8), (0.16666667, 0.81666666), (0.15833333, 0.81666666), (0.15833333, 0.8), (0.15833333, 0.8), (0.15833333, 0.81666666), (0.15, 0.81666666), (0.15, 0.8), (0.15, 0.8), (0.15, 0.81666666), (0.14166667, 0.81666666), (0.14166667, 0.8), (0.14166667, 0.8), (0.14166667, 0.81666666), (0.13333334, 0.81666666), (0.13333334, 0.8), (0.13333334, 0.8), (0.13333334, 0.81666666), (0.125, 0.81666666), (0.125, 0.8), (0.125, 0.8), (0.125, 0.81666666), (0.11666667, 0.81666666), (0.11666667, 0.8), (0.11666667, 0.8), (0.11666667, 0.81666666), (0.108333334, 0.81666666), (0.108333334, 0.8), (0.108333334, 0.8), (0.108333334, 0.81666666), (0.1, 0.81666666), (0.1, 0.8), (0.1, 0.8), (0.1, 0.81666666), (0.09166667, 0.81666666), (0.09166667, 0.8), (0.09166667, 0.8), (0.09166667, 0.81666666), (0.083333336, 0.81666666), (0.083333336, 0.8), (0.083333336, 0.8), (0.083333336, 0.81666666), (0.075, 0.81666666), (0.075, 0.8), (0.075, 0.8), (0.075, 0.81666666), (0.06666667, 0.81666666), (0.06666667, 0.8), (0.06666667, 0.8), (0.06666667, 0.81666666), (0.058333334, 0.81666666), (0.058333334, 0.8), (0.058333334, 0.8), (0.058333334, 0.81666666), (0.05, 0.81666666), (0.05, 0.8), (0.05, 0.8), (0.05, 0.81666666), (0.041666668, 0.81666666), (0.041666668, 0.8), (0.041666668, 0.8), (0.041666668, 0.81666666), (0.033333335, 0.81666666), (0.033333335, 0.8), (0.033333335, 0.8), (0.033333335, 0.81666666), (0.025, 0.81666666), (0.025, 0.8), (0.025, 0.8), (0.025, 0.81666666), (0.016666668, 0.81666666), (0.016666668, 0.8), (0.016666668, 0.8), (0.016666668, 0.81666666), (0.008333334, 0.81666666), (0.008333334, 0.8), (0.008333334, 0.8), (0.008333334, 0.81666666), (0, 0.81666666), (0, 0.8), (1, 0.81666666), (1, 0.8333333), (0.9916667, 0.8333333), (0.9916667, 0.81666666), (0.9916667, 0.81666666), (0.9916667, 0.8333333), (0.98333335, 0.8333333), (0.98333335, 0.81666666), (0.98333335, 0.81666666), (0.98333335, 0.8333333), (0.975, 0.8333333), (0.975, 0.81666666), (0.975, 0.81666666), (0.975, 0.8333333), (0.96666664, 0.8333333), (0.96666664, 0.81666666), (0.96666664, 0.81666666), (0.96666664, 0.8333333), (0.9583333, 0.8333333), (0.9583333, 0.81666666), (0.9583333, 0.81666666), (0.9583333, 0.8333333), (0.95, 0.8333333), (0.95, 0.81666666), (0.95, 0.81666666), (0.95, 0.8333333), (0.94166666, 0.8333333), (0.94166666, 0.81666666), (0.94166666, 0.81666666), (0.94166666, 0.8333333), (0.93333334, 0.8333333), (0.93333334, 0.81666666), (0.93333334, 0.81666666), (0.93333334, 0.8333333), (0.925, 0.8333333), (0.925, 0.81666666), (0.925, 0.81666666), (0.925, 0.8333333), (0.9166667, 0.8333333), (0.9166667, 0.81666666), (0.9166667, 0.81666666), (0.9166667, 0.8333333), (0.90833336, 0.8333333), (0.90833336, 0.81666666), (0.90833336, 0.81666666), (0.90833336, 0.8333333), (0.9, 0.8333333), (0.9, 0.81666666), (0.9, 0.81666666), (0.9, 0.8333333), (0.89166665, 0.8333333), (0.89166665, 0.81666666), (0.89166665, 0.81666666), (0.89166665, 0.8333333), (0.8833333, 0.8333333), (0.8833333, 0.81666666), (0.8833333, 0.81666666), (0.8833333, 0.8333333), (0.875, 0.8333333), (0.875, 0.81666666), (0.875, 0.81666666), (0.875, 0.8333333), (0.8666667, 0.8333333), (0.8666667, 0.81666666), (0.8666667, 0.81666666), (0.8666667, 0.8333333), (0.85833335, 0.8333333), (0.85833335, 0.81666666), (0.85833335, 0.81666666), (0.85833335, 0.8333333), (0.85, 0.8333333), (0.85, 0.81666666), (0.85, 0.81666666), (0.85, 0.8333333), (0.84166664, 0.8333333), (0.84166664, 0.81666666), (0.84166664, 0.81666666), (0.84166664, 0.8333333), (0.8333333, 0.8333333), (0.8333333, 0.81666666), (0.8333333, 0.81666666), (0.8333333, 0.8333333), (0.825, 0.8333333), (0.825, 0.81666666), (0.825, 0.81666666), (0.825, 0.8333333), (0.81666666, 0.8333333), (0.81666666, 0.81666666), (0.81666666, 0.81666666), (0.81666666, 0.8333333), (0.80833334, 0.8333333), (0.80833334, 0.81666666), (0.80833334, 0.81666666), (0.80833334, 0.8333333), (0.8, 0.8333333), (0.8, 0.81666666), (0.8, 0.81666666), (0.8, 0.8333333), (0.7916667, 0.8333333), (0.7916667, 0.81666666), (0.7916667, 0.81666666), (0.7916667, 0.8333333), (0.78333336, 0.8333333), (0.78333336, 0.81666666), (0.78333336, 0.81666666), (0.78333336, 0.8333333), (0.775, 0.8333333), (0.775, 0.81666666), (0.775, 0.81666666), (0.775, 0.8333333), (0.76666665, 0.8333333), (0.76666665, 0.81666666), (0.76666665, 0.81666666), (0.76666665, 0.8333333), (0.7583333, 0.8333333), (0.7583333, 0.81666666), (0.7583333, 0.81666666), (0.7583333, 0.8333333), (0.75, 0.8333333), (0.75, 0.81666666), (0.75, 0.81666666), (0.75, 0.8333333), (0.7416667, 0.8333333), (0.7416667, 0.81666666), (0.7416667, 0.81666666), (0.7416667, 0.8333333), (0.73333335, 0.8333333), (0.73333335, 0.81666666), (0.73333335, 0.81666666), (0.73333335, 0.8333333), (0.725, 0.8333333), (0.725, 0.81666666), (0.725, 0.81666666), (0.725, 0.8333333), (0.71666664, 0.8333333), (0.71666664, 0.81666666), (0.71666664, 0.81666666), (0.71666664, 0.8333333), (0.7083333, 0.8333333), (0.7083333, 0.81666666), (0.7083333, 0.81666666), (0.7083333, 0.8333333), (0.7, 0.8333333), (0.7, 0.81666666), (0.7, 0.81666666), (0.7, 0.8333333), (0.69166666, 0.8333333), (0.69166666, 0.81666666), (0.69166666, 0.81666666), (0.69166666, 0.8333333), (0.68333334, 0.8333333), (0.68333334, 0.81666666), (0.68333334, 0.81666666), (0.68333334, 0.8333333), (0.675, 0.8333333), (0.675, 0.81666666), (0.675, 0.81666666), (0.675, 0.8333333), (0.6666667, 0.8333333), (0.6666667, 0.81666666), (0.6666667, 0.81666666), (0.6666667, 0.8333333), (0.65833336, 0.8333333), (0.65833336, 0.81666666), (0.65833336, 0.81666666), (0.65833336, 0.8333333), (0.65, 0.8333333), (0.65, 0.81666666), (0.65, 0.81666666), (0.65, 0.8333333), (0.64166665, 0.8333333), (0.64166665, 0.81666666), (0.64166665, 0.81666666), (0.64166665, 0.8333333), (0.6333333, 0.8333333), (0.6333333, 0.81666666), (0.6333333, 0.81666666), (0.6333333, 0.8333333), (0.625, 0.8333333), (0.625, 0.81666666), (0.625, 0.81666666), (0.625, 0.8333333), (0.6166667, 0.8333333), (0.6166667, 0.81666666), (0.6166667, 0.81666666), (0.6166667, 0.8333333), (0.60833335, 0.8333333), (0.60833335, 0.81666666), (0.60833335, 0.81666666), (0.60833335, 0.8333333), (0.6, 0.8333333), (0.6, 0.81666666), (0.6, 0.81666666), (0.6, 0.8333333), (0.59166664, 0.8333333), (0.59166664, 0.81666666), (0.59166664, 0.81666666), (0.59166664, 0.8333333), (0.5833333, 0.8333333), (0.5833333, 0.81666666), (0.5833333, 0.81666666), (0.5833333, 0.8333333), (0.575, 0.8333333), (0.575, 0.81666666), (0.575, 0.81666666), (0.575, 0.8333333), (0.56666666, 0.8333333), (0.56666666, 0.81666666), (0.56666666, 0.81666666), (0.56666666, 0.8333333), (0.55833334, 0.8333333), (0.55833334, 0.81666666), (0.55833334, 0.81666666), (0.55833334, 0.8333333), (0.55, 0.8333333), (0.55, 0.81666666), (0.55, 0.81666666), (0.55, 0.8333333), (0.5416667, 0.8333333), (0.5416667, 0.81666666), (0.5416667, 0.81666666), (0.5416667, 0.8333333), (0.53333336, 0.8333333), (0.53333336, 0.81666666), (0.53333336, 0.81666666), (0.53333336, 0.8333333), (0.525, 0.8333333), (0.525, 0.81666666), (0.525, 0.81666666), (0.525, 0.8333333), (0.51666665, 0.8333333), (0.51666665, 0.81666666), (0.51666665, 0.81666666), (0.51666665, 0.8333333), (0.5083333, 0.8333333), (0.5083333, 0.81666666), (0.5083333, 0.81666666), (0.5083333, 0.8333333), (0.5, 0.8333333), (0.5, 0.81666666), (0.5, 0.81666666), (0.5, 0.8333333), (0.49166667, 0.8333333), (0.49166667, 0.81666666), (0.49166667, 0.81666666), (0.49166667, 0.8333333), (0.48333332, 0.8333333), (0.48333332, 0.81666666), (0.48333332, 0.81666666), (0.48333332, 0.8333333), (0.475, 0.8333333), (0.475, 0.81666666), (0.475, 0.81666666), (0.475, 0.8333333), (0.46666667, 0.8333333), (0.46666667, 0.81666666), (0.46666667, 0.81666666), (0.46666667, 0.8333333), (0.45833334, 0.8333333), (0.45833334, 0.81666666), (0.45833334, 0.81666666), (0.45833334, 0.8333333), (0.45, 0.8333333), (0.45, 0.81666666), (0.45, 0.81666666), (0.45, 0.8333333), (0.44166666, 0.8333333), (0.44166666, 0.81666666), (0.44166666, 0.81666666), (0.44166666, 0.8333333), (0.43333334, 0.8333333), (0.43333334, 0.81666666), (0.43333334, 0.81666666), (0.43333334, 0.8333333), (0.425, 0.8333333), (0.425, 0.81666666), (0.425, 0.81666666), (0.425, 0.8333333), (0.41666666, 0.8333333), (0.41666666, 0.81666666), (0.41666666, 0.81666666), (0.41666666, 0.8333333), (0.40833333, 0.8333333), (0.40833333, 0.81666666), (0.40833333, 0.81666666), (0.40833333, 0.8333333), (0.4, 0.8333333), (0.4, 0.81666666), (0.4, 0.81666666), (0.4, 0.8333333), (0.39166668, 0.8333333), (0.39166668, 0.81666666), (0.39166668, 0.81666666), (0.39166668, 0.8333333), (0.38333333, 0.8333333), (0.38333333, 0.81666666), (0.38333333, 0.81666666), (0.38333333, 0.8333333), (0.375, 0.8333333), (0.375, 0.81666666), (0.375, 0.81666666), (0.375, 0.8333333), (0.36666667, 0.8333333), (0.36666667, 0.81666666), (0.36666667, 0.81666666), (0.36666667, 0.8333333), (0.35833332, 0.8333333), (0.35833332, 0.81666666), (0.35833332, 0.81666666), (0.35833332, 0.8333333), (0.35, 0.8333333), (0.35, 0.81666666), (0.35, 0.81666666), (0.35, 0.8333333), (0.34166667, 0.8333333), (0.34166667, 0.81666666), (0.34166667, 0.81666666), (0.34166667, 0.8333333), (0.33333334, 0.8333333), (0.33333334, 0.81666666), (0.33333334, 0.81666666), (0.33333334, 0.8333333), (0.325, 0.8333333), (0.325, 0.81666666), (0.325, 0.81666666), (0.325, 0.8333333), (0.31666666, 0.8333333), (0.31666666, 0.81666666), (0.31666666, 0.81666666), (0.31666666, 0.8333333), (0.30833334, 0.8333333), (0.30833334, 0.81666666), (0.30833334, 0.81666666), (0.30833334, 0.8333333), (0.3, 0.8333333), (0.3, 0.81666666), (0.3, 0.81666666), (0.3, 0.8333333), (0.29166666, 0.8333333), (0.29166666, 0.81666666), (0.29166666, 0.81666666), (0.29166666, 0.8333333), (0.28333333, 0.8333333), (0.28333333, 0.81666666), (0.28333333, 0.81666666), (0.28333333, 0.8333333), (0.275, 0.8333333), (0.275, 0.81666666), (0.275, 0.81666666), (0.275, 0.8333333), (0.26666668, 0.8333333), (0.26666668, 0.81666666), (0.26666668, 0.81666666), (0.26666668, 0.8333333), (0.25833333, 0.8333333), (0.25833333, 0.81666666), (0.25833333, 0.81666666), (0.25833333, 0.8333333), (0.25, 0.8333333), (0.25, 0.81666666), (0.25, 0.81666666), (0.25, 0.8333333), (0.24166666, 0.8333333), (0.24166666, 0.81666666), (0.24166666, 0.81666666), (0.24166666, 0.8333333), (0.23333333, 0.8333333), (0.23333333, 0.81666666), (0.23333333, 0.81666666), (0.23333333, 0.8333333), (0.225, 0.8333333), (0.225, 0.81666666), (0.225, 0.81666666), (0.225, 0.8333333), (0.21666667, 0.8333333), (0.21666667, 0.81666666), (0.21666667, 0.81666666), (0.21666667, 0.8333333), (0.20833333, 0.8333333), (0.20833333, 0.81666666), (0.20833333, 0.81666666), (0.20833333, 0.8333333), (0.2, 0.8333333), (0.2, 0.81666666), (0.2, 0.81666666), (0.2, 0.8333333), (0.19166666, 0.8333333), (0.19166666, 0.81666666), (0.19166666, 0.81666666), (0.19166666, 0.8333333), (0.18333334, 0.8333333), (0.18333334, 0.81666666), (0.18333334, 0.81666666), (0.18333334, 0.8333333), (0.175, 0.8333333), (0.175, 0.81666666), (0.175, 0.81666666), (0.175, 0.8333333), (0.16666667, 0.8333333), (0.16666667, 0.81666666), (0.16666667, 0.81666666), (0.16666667, 0.8333333), (0.15833333, 0.8333333), (0.15833333, 0.81666666), (0.15833333, 0.81666666), (0.15833333, 0.8333333), (0.15, 0.8333333), (0.15, 0.81666666), (0.15, 0.81666666), (0.15, 0.8333333), (0.14166667, 0.8333333), (0.14166667, 0.81666666), (0.14166667, 0.81666666), (0.14166667, 0.8333333), (0.13333334, 0.8333333), (0.13333334, 0.81666666), (0.13333334, 0.81666666), (0.13333334, 0.8333333), (0.125, 0.8333333), (0.125, 0.81666666), (0.125, 0.81666666), (0.125, 0.8333333), (0.11666667, 0.8333333), (0.11666667, 0.81666666), (0.11666667, 0.81666666), (0.11666667, 0.8333333), (0.108333334, 0.8333333), (0.108333334, 0.81666666), (0.108333334, 0.81666666), (0.108333334, 0.8333333), (0.1, 0.8333333), (0.1, 0.81666666), (0.1, 0.81666666), (0.1, 0.8333333), (0.09166667, 0.8333333), (0.09166667, 0.81666666), (0.09166667, 0.81666666), (0.09166667, 0.8333333), (0.083333336, 0.8333333), (0.083333336, 0.81666666), (0.083333336, 0.81666666), (0.083333336, 0.8333333), (0.075, 0.8333333), (0.075, 0.81666666), (0.075, 0.81666666), (0.075, 0.8333333), (0.06666667, 0.8333333), (0.06666667, 0.81666666), (0.06666667, 0.81666666), (0.06666667, 0.8333333), (0.058333334, 0.8333333), (0.058333334, 0.81666666), (0.058333334, 0.81666666), (0.058333334, 0.8333333), (0.05, 0.8333333), (0.05, 0.81666666), (0.05, 0.81666666), (0.05, 0.8333333), (0.041666668, 0.8333333), (0.041666668, 0.81666666), (0.041666668, 0.81666666), (0.041666668, 0.8333333), (0.033333335, 0.8333333), (0.033333335, 0.81666666), (0.033333335, 0.81666666), (0.033333335, 0.8333333), (0.025, 0.8333333), (0.025, 0.81666666), (0.025, 0.81666666), (0.025, 0.8333333), (0.016666668, 0.8333333), (0.016666668, 0.81666666), (0.016666668, 0.81666666), (0.016666668, 0.8333333), (0.008333334, 0.8333333), (0.008333334, 0.81666666), (0.008333334, 0.81666666), (0.008333334, 0.8333333), (0, 0.8333333), (0, 0.81666666), (1, 0.8333333), (1, 0.85), (0.9916667, 0.85), (0.9916667, 0.8333333), (0.9916667, 0.8333333), (0.9916667, 0.85), (0.98333335, 0.85), (0.98333335, 0.8333333), (0.98333335, 0.8333333), (0.98333335, 0.85), (0.975, 0.85), (0.975, 0.8333333), (0.975, 0.8333333), (0.975, 0.85), (0.96666664, 0.85), (0.96666664, 0.8333333), (0.96666664, 0.8333333), (0.96666664, 0.85), (0.9583333, 0.85), (0.9583333, 0.8333333), (0.9583333, 0.8333333), (0.9583333, 0.85), (0.95, 0.85), (0.95, 0.8333333), (0.95, 0.8333333), (0.95, 0.85), (0.94166666, 0.85), (0.94166666, 0.8333333), (0.94166666, 0.8333333), (0.94166666, 0.85), (0.93333334, 0.85), (0.93333334, 0.8333333), (0.93333334, 0.8333333), (0.93333334, 0.85), (0.925, 0.85), (0.925, 0.8333333), (0.925, 0.8333333), (0.925, 0.85), (0.9166667, 0.85), (0.9166667, 0.8333333), (0.9166667, 0.8333333), (0.9166667, 0.85), (0.90833336, 0.85), (0.90833336, 0.8333333), (0.90833336, 0.8333333), (0.90833336, 0.85), (0.9, 0.85), (0.9, 0.8333333), (0.9, 0.8333333), (0.9, 0.85), (0.89166665, 0.85), (0.89166665, 0.8333333), (0.89166665, 0.8333333), (0.89166665, 0.85), (0.8833333, 0.85), (0.8833333, 0.8333333), (0.8833333, 0.8333333), (0.8833333, 0.85), (0.875, 0.85), (0.875, 0.8333333), (0.875, 0.8333333), (0.875, 0.85), (0.8666667, 0.85), (0.8666667, 0.8333333), (0.8666667, 0.8333333), (0.8666667, 0.85), (0.85833335, 0.85), (0.85833335, 0.8333333), (0.85833335, 0.8333333), (0.85833335, 0.85), (0.85, 0.85), (0.85, 0.8333333), (0.85, 0.8333333), (0.85, 0.85), (0.84166664, 0.85), (0.84166664, 0.8333333), (0.84166664, 0.8333333), (0.84166664, 0.85), (0.8333333, 0.85), (0.8333333, 0.8333333), (0.8333333, 0.8333333), (0.8333333, 0.85), (0.825, 0.85), (0.825, 0.8333333), (0.825, 0.8333333), (0.825, 0.85), (0.81666666, 0.85), (0.81666666, 0.8333333), (0.81666666, 0.8333333), (0.81666666, 0.85), (0.80833334, 0.85), (0.80833334, 0.8333333), (0.80833334, 0.8333333), (0.80833334, 0.85), (0.8, 0.85), (0.8, 0.8333333), (0.8, 0.8333333), (0.8, 0.85), (0.7916667, 0.85), (0.7916667, 0.8333333), (0.7916667, 0.8333333), (0.7916667, 0.85), (0.78333336, 0.85), (0.78333336, 0.8333333), (0.78333336, 0.8333333), (0.78333336, 0.85), (0.775, 0.85), (0.775, 0.8333333), (0.775, 0.8333333), (0.775, 0.85), (0.76666665, 0.85), (0.76666665, 0.8333333), (0.76666665, 0.8333333), (0.76666665, 0.85), (0.7583333, 0.85), (0.7583333, 0.8333333), (0.7583333, 0.8333333), (0.7583333, 0.85), (0.75, 0.85), (0.75, 0.8333333), (0.75, 0.8333333), (0.75, 0.85), (0.7416667, 0.85), (0.7416667, 0.8333333), (0.7416667, 0.8333333), (0.7416667, 0.85), (0.73333335, 0.85), (0.73333335, 0.8333333), (0.73333335, 0.8333333), (0.73333335, 0.85), (0.725, 0.85), (0.725, 0.8333333), (0.725, 0.8333333), (0.725, 0.85), (0.71666664, 0.85), (0.71666664, 0.8333333), (0.71666664, 0.8333333), (0.71666664, 0.85), (0.7083333, 0.85), (0.7083333, 0.8333333), (0.7083333, 0.8333333), (0.7083333, 0.85), (0.7, 0.85), (0.7, 0.8333333), (0.7, 0.8333333), (0.7, 0.85), (0.69166666, 0.85), (0.69166666, 0.8333333), (0.69166666, 0.8333333), (0.69166666, 0.85), (0.68333334, 0.85), (0.68333334, 0.8333333), (0.68333334, 0.8333333), (0.68333334, 0.85), (0.675, 0.85), (0.675, 0.8333333), (0.675, 0.8333333), (0.675, 0.85), (0.6666667, 0.85), (0.6666667, 0.8333333), (0.6666667, 0.8333333), (0.6666667, 0.85), (0.65833336, 0.85), (0.65833336, 0.8333333), (0.65833336, 0.8333333), (0.65833336, 0.85), (0.65, 0.85), (0.65, 0.8333333), (0.65, 0.8333333), (0.65, 0.85), (0.64166665, 0.85), (0.64166665, 0.8333333), (0.64166665, 0.8333333), (0.64166665, 0.85), (0.6333333, 0.85), (0.6333333, 0.8333333), (0.6333333, 0.8333333), (0.6333333, 0.85), (0.625, 0.85), (0.625, 0.8333333), (0.625, 0.8333333), (0.625, 0.85), (0.6166667, 0.85), (0.6166667, 0.8333333), (0.6166667, 0.8333333), (0.6166667, 0.85), (0.60833335, 0.85), (0.60833335, 0.8333333), (0.60833335, 0.8333333), (0.60833335, 0.85), (0.6, 0.85), (0.6, 0.8333333), (0.6, 0.8333333), (0.6, 0.85), (0.59166664, 0.85), (0.59166664, 0.8333333), (0.59166664, 0.8333333), (0.59166664, 0.85), (0.5833333, 0.85), (0.5833333, 0.8333333), (0.5833333, 0.8333333), (0.5833333, 0.85), (0.575, 0.85), (0.575, 0.8333333), (0.575, 0.8333333), (0.575, 0.85), (0.56666666, 0.85), (0.56666666, 0.8333333), (0.56666666, 0.8333333), (0.56666666, 0.85), (0.55833334, 0.85), (0.55833334, 0.8333333), (0.55833334, 0.8333333), (0.55833334, 0.85), (0.55, 0.85), (0.55, 0.8333333), (0.55, 0.8333333), (0.55, 0.85), (0.5416667, 0.85), (0.5416667, 0.8333333), (0.5416667, 0.8333333), (0.5416667, 0.85), (0.53333336, 0.85), (0.53333336, 0.8333333), (0.53333336, 0.8333333), (0.53333336, 0.85), (0.525, 0.85), (0.525, 0.8333333), (0.525, 0.8333333), (0.525, 0.85), (0.51666665, 0.85), (0.51666665, 0.8333333), (0.51666665, 0.8333333), (0.51666665, 0.85), (0.5083333, 0.85), (0.5083333, 0.8333333), (0.5083333, 0.8333333), (0.5083333, 0.85), (0.5, 0.85), (0.5, 0.8333333), (0.5, 0.8333333), (0.5, 0.85), (0.49166667, 0.85), (0.49166667, 0.8333333), (0.49166667, 0.8333333), (0.49166667, 0.85), (0.48333332, 0.85), (0.48333332, 0.8333333), (0.48333332, 0.8333333), (0.48333332, 0.85), (0.475, 0.85), (0.475, 0.8333333), (0.475, 0.8333333), (0.475, 0.85), (0.46666667, 0.85), (0.46666667, 0.8333333), (0.46666667, 0.8333333), (0.46666667, 0.85), (0.45833334, 0.85), (0.45833334, 0.8333333), (0.45833334, 0.8333333), (0.45833334, 0.85), (0.45, 0.85), (0.45, 0.8333333), (0.45, 0.8333333), (0.45, 0.85), (0.44166666, 0.85), (0.44166666, 0.8333333), (0.44166666, 0.8333333), (0.44166666, 0.85), (0.43333334, 0.85), (0.43333334, 0.8333333), (0.43333334, 0.8333333), (0.43333334, 0.85), (0.425, 0.85), (0.425, 0.8333333), (0.425, 0.8333333), (0.425, 0.85), (0.41666666, 0.85), (0.41666666, 0.8333333), (0.41666666, 0.8333333), (0.41666666, 0.85), (0.40833333, 0.85), (0.40833333, 0.8333333), (0.40833333, 0.8333333), (0.40833333, 0.85), (0.4, 0.85), (0.4, 0.8333333), (0.4, 0.8333333), (0.4, 0.85), (0.39166668, 0.85), (0.39166668, 0.8333333), (0.39166668, 0.8333333), (0.39166668, 0.85), (0.38333333, 0.85), (0.38333333, 0.8333333), (0.38333333, 0.8333333), (0.38333333, 0.85), (0.375, 0.85), (0.375, 0.8333333), (0.375, 0.8333333), (0.375, 0.85), (0.36666667, 0.85), (0.36666667, 0.8333333), (0.36666667, 0.8333333), (0.36666667, 0.85), (0.35833332, 0.85), (0.35833332, 0.8333333), (0.35833332, 0.8333333), (0.35833332, 0.85), (0.35, 0.85), (0.35, 0.8333333), (0.35, 0.8333333), (0.35, 0.85), (0.34166667, 0.85), (0.34166667, 0.8333333), (0.34166667, 0.8333333), (0.34166667, 0.85), (0.33333334, 0.85), (0.33333334, 0.8333333), (0.33333334, 0.8333333), (0.33333334, 0.85), (0.325, 0.85), (0.325, 0.8333333), (0.325, 0.8333333), (0.325, 0.85), (0.31666666, 0.85), (0.31666666, 0.8333333), (0.31666666, 0.8333333), (0.31666666, 0.85), (0.30833334, 0.85), (0.30833334, 0.8333333), (0.30833334, 0.8333333), (0.30833334, 0.85), (0.3, 0.85), (0.3, 0.8333333), (0.3, 0.8333333), (0.3, 0.85), (0.29166666, 0.85), (0.29166666, 0.8333333), (0.29166666, 0.8333333), (0.29166666, 0.85), (0.28333333, 0.85), (0.28333333, 0.8333333), (0.28333333, 0.8333333), (0.28333333, 0.85), (0.275, 0.85), (0.275, 0.8333333), (0.275, 0.8333333), (0.275, 0.85), (0.26666668, 0.85), (0.26666668, 0.8333333), (0.26666668, 0.8333333), (0.26666668, 0.85), (0.25833333, 0.85), (0.25833333, 0.8333333), (0.25833333, 0.8333333), (0.25833333, 0.85), (0.25, 0.85), (0.25, 0.8333333), (0.25, 0.8333333), (0.25, 0.85), (0.24166666, 0.85), (0.24166666, 0.8333333), (0.24166666, 0.8333333), (0.24166666, 0.85), (0.23333333, 0.85), (0.23333333, 0.8333333), (0.23333333, 0.8333333), (0.23333333, 0.85), (0.225, 0.85), (0.225, 0.8333333), (0.225, 0.8333333), (0.225, 0.85), (0.21666667, 0.85), (0.21666667, 0.8333333), (0.21666667, 0.8333333), (0.21666667, 0.85), (0.20833333, 0.85), (0.20833333, 0.8333333), (0.20833333, 0.8333333), (0.20833333, 0.85), (0.2, 0.85), (0.2, 0.8333333), (0.2, 0.8333333), (0.2, 0.85), (0.19166666, 0.85), (0.19166666, 0.8333333), (0.19166666, 0.8333333), (0.19166666, 0.85), (0.18333334, 0.85), (0.18333334, 0.8333333), (0.18333334, 0.8333333), (0.18333334, 0.85), (0.175, 0.85), (0.175, 0.8333333), (0.175, 0.8333333), (0.175, 0.85), (0.16666667, 0.85), (0.16666667, 0.8333333), (0.16666667, 0.8333333), (0.16666667, 0.85), (0.15833333, 0.85), (0.15833333, 0.8333333), (0.15833333, 0.8333333), (0.15833333, 0.85), (0.15, 0.85), (0.15, 0.8333333), (0.15, 0.8333333), (0.15, 0.85), (0.14166667, 0.85), (0.14166667, 0.8333333), (0.14166667, 0.8333333), (0.14166667, 0.85), (0.13333334, 0.85), (0.13333334, 0.8333333), (0.13333334, 0.8333333), (0.13333334, 0.85), (0.125, 0.85), (0.125, 0.8333333), (0.125, 0.8333333), (0.125, 0.85), (0.11666667, 0.85), (0.11666667, 0.8333333), (0.11666667, 0.8333333), (0.11666667, 0.85), (0.108333334, 0.85), (0.108333334, 0.8333333), (0.108333334, 0.8333333), (0.108333334, 0.85), (0.1, 0.85), (0.1, 0.8333333), (0.1, 0.8333333), (0.1, 0.85), (0.09166667, 0.85), (0.09166667, 0.8333333), (0.09166667, 0.8333333), (0.09166667, 0.85), (0.083333336, 0.85), (0.083333336, 0.8333333), (0.083333336, 0.8333333), (0.083333336, 0.85), (0.075, 0.85), (0.075, 0.8333333), (0.075, 0.8333333), (0.075, 0.85), (0.06666667, 0.85), (0.06666667, 0.8333333), (0.06666667, 0.8333333), (0.06666667, 0.85), (0.058333334, 0.85), (0.058333334, 0.8333333), (0.058333334, 0.8333333), (0.058333334, 0.85), (0.05, 0.85), (0.05, 0.8333333), (0.05, 0.8333333), (0.05, 0.85), (0.041666668, 0.85), (0.041666668, 0.8333333), (0.041666668, 0.8333333), (0.041666668, 0.85), (0.033333335, 0.85), (0.033333335, 0.8333333), (0.033333335, 0.8333333), (0.033333335, 0.85), (0.025, 0.85), (0.025, 0.8333333), (0.025, 0.8333333), (0.025, 0.85), (0.016666668, 0.85), (0.016666668, 0.8333333), (0.016666668, 0.8333333), (0.016666668, 0.85), (0.008333334, 0.85), (0.008333334, 0.8333333), (0.008333334, 0.8333333), (0.008333334, 0.85), (0, 0.85), (0, 0.8333333), (1, 0.85), (1, 0.8666667), (0.9916667, 0.8666667), (0.9916667, 0.85), (0.9916667, 0.85), (0.9916667, 0.8666667), (0.98333335, 0.8666667), (0.98333335, 0.85), (0.98333335, 0.85), (0.98333335, 0.8666667), (0.975, 0.8666667), (0.975, 0.85), (0.975, 0.85), (0.975, 0.8666667), (0.96666664, 0.8666667), (0.96666664, 0.85), (0.96666664, 0.85), (0.96666664, 0.8666667), (0.9583333, 0.8666667), (0.9583333, 0.85), (0.9583333, 0.85), (0.9583333, 0.8666667), (0.95, 0.8666667), (0.95, 0.85), (0.95, 0.85), (0.95, 0.8666667), (0.94166666, 0.8666667), (0.94166666, 0.85), (0.94166666, 0.85), (0.94166666, 0.8666667), (0.93333334, 0.8666667), (0.93333334, 0.85), (0.93333334, 0.85), (0.93333334, 0.8666667), (0.925, 0.8666667), (0.925, 0.85), (0.925, 0.85), (0.925, 0.8666667), (0.9166667, 0.8666667), (0.9166667, 0.85), (0.9166667, 0.85), (0.9166667, 0.8666667), (0.90833336, 0.8666667), (0.90833336, 0.85), (0.90833336, 0.85), (0.90833336, 0.8666667), (0.9, 0.8666667), (0.9, 0.85), (0.9, 0.85), (0.9, 0.8666667), (0.89166665, 0.8666667), (0.89166665, 0.85), (0.89166665, 0.85), (0.89166665, 0.8666667), (0.8833333, 0.8666667), (0.8833333, 0.85), (0.8833333, 0.85), (0.8833333, 0.8666667), (0.875, 0.8666667), (0.875, 0.85), (0.875, 0.85), (0.875, 0.8666667), (0.8666667, 0.8666667), (0.8666667, 0.85), (0.8666667, 0.85), (0.8666667, 0.8666667), (0.85833335, 0.8666667), (0.85833335, 0.85), (0.85833335, 0.85), (0.85833335, 0.8666667), (0.85, 0.8666667), (0.85, 0.85), (0.85, 0.85), (0.85, 0.8666667), (0.84166664, 0.8666667), (0.84166664, 0.85), (0.84166664, 0.85), (0.84166664, 0.8666667), (0.8333333, 0.8666667), (0.8333333, 0.85), (0.8333333, 0.85), (0.8333333, 0.8666667), (0.825, 0.8666667), (0.825, 0.85), (0.825, 0.85), (0.825, 0.8666667), (0.81666666, 0.8666667), (0.81666666, 0.85), (0.81666666, 0.85), (0.81666666, 0.8666667), (0.80833334, 0.8666667), (0.80833334, 0.85), (0.80833334, 0.85), (0.80833334, 0.8666667), (0.8, 0.8666667), (0.8, 0.85), (0.8, 0.85), (0.8, 0.8666667), (0.7916667, 0.8666667), (0.7916667, 0.85), (0.7916667, 0.85), (0.7916667, 0.8666667), (0.78333336, 0.8666667), (0.78333336, 0.85), (0.78333336, 0.85), (0.78333336, 0.8666667), (0.775, 0.8666667), (0.775, 0.85), (0.775, 0.85), (0.775, 0.8666667), (0.76666665, 0.8666667), (0.76666665, 0.85), (0.76666665, 0.85), (0.76666665, 0.8666667), (0.7583333, 0.8666667), (0.7583333, 0.85), (0.7583333, 0.85), (0.7583333, 0.8666667), (0.75, 0.8666667), (0.75, 0.85), (0.75, 0.85), (0.75, 0.8666667), (0.7416667, 0.8666667), (0.7416667, 0.85), (0.7416667, 0.85), (0.7416667, 0.8666667), (0.73333335, 0.8666667), (0.73333335, 0.85), (0.73333335, 0.85), (0.73333335, 0.8666667), (0.725, 0.8666667), (0.725, 0.85), (0.725, 0.85), (0.725, 0.8666667), (0.71666664, 0.8666667), (0.71666664, 0.85), (0.71666664, 0.85), (0.71666664, 0.8666667), (0.7083333, 0.8666667), (0.7083333, 0.85), (0.7083333, 0.85), (0.7083333, 0.8666667), (0.7, 0.8666667), (0.7, 0.85), (0.7, 0.85), (0.7, 0.8666667), (0.69166666, 0.8666667), (0.69166666, 0.85), (0.69166666, 0.85), (0.69166666, 0.8666667), (0.68333334, 0.8666667), (0.68333334, 0.85), (0.68333334, 0.85), (0.68333334, 0.8666667), (0.675, 0.8666667), (0.675, 0.85), (0.675, 0.85), (0.675, 0.8666667), (0.6666667, 0.8666667), (0.6666667, 0.85), (0.6666667, 0.85), (0.6666667, 0.8666667), (0.65833336, 0.8666667), (0.65833336, 0.85), (0.65833336, 0.85), (0.65833336, 0.8666667), (0.65, 0.8666667), (0.65, 0.85), (0.65, 0.85), (0.65, 0.8666667), (0.64166665, 0.8666667), (0.64166665, 0.85), (0.64166665, 0.85), (0.64166665, 0.8666667), (0.6333333, 0.8666667), (0.6333333, 0.85), (0.6333333, 0.85), (0.6333333, 0.8666667), (0.625, 0.8666667), (0.625, 0.85), (0.625, 0.85), (0.625, 0.8666667), (0.6166667, 0.8666667), (0.6166667, 0.85), (0.6166667, 0.85), (0.6166667, 0.8666667), (0.60833335, 0.8666667), (0.60833335, 0.85), (0.60833335, 0.85), (0.60833335, 0.8666667), (0.6, 0.8666667), (0.6, 0.85), (0.6, 0.85), (0.6, 0.8666667), (0.59166664, 0.8666667), (0.59166664, 0.85), (0.59166664, 0.85), (0.59166664, 0.8666667), (0.5833333, 0.8666667), (0.5833333, 0.85), (0.5833333, 0.85), (0.5833333, 0.8666667), (0.575, 0.8666667), (0.575, 0.85), (0.575, 0.85), (0.575, 0.8666667), (0.56666666, 0.8666667), (0.56666666, 0.85), (0.56666666, 0.85), (0.56666666, 0.8666667), (0.55833334, 0.8666667), (0.55833334, 0.85), (0.55833334, 0.85), (0.55833334, 0.8666667), (0.55, 0.8666667), (0.55, 0.85), (0.55, 0.85), (0.55, 0.8666667), (0.5416667, 0.8666667), (0.5416667, 0.85), (0.5416667, 0.85), (0.5416667, 0.8666667), (0.53333336, 0.8666667), (0.53333336, 0.85), (0.53333336, 0.85), (0.53333336, 0.8666667), (0.525, 0.8666667), (0.525, 0.85), (0.525, 0.85), (0.525, 0.8666667), (0.51666665, 0.8666667), (0.51666665, 0.85), (0.51666665, 0.85), (0.51666665, 0.8666667), (0.5083333, 0.8666667), (0.5083333, 0.85), (0.5083333, 0.85), (0.5083333, 0.8666667), (0.5, 0.8666667), (0.5, 0.85), (0.5, 0.85), (0.5, 0.8666667), (0.49166667, 0.8666667), (0.49166667, 0.85), (0.49166667, 0.85), (0.49166667, 0.8666667), (0.48333332, 0.8666667), (0.48333332, 0.85), (0.48333332, 0.85), (0.48333332, 0.8666667), (0.475, 0.8666667), (0.475, 0.85), (0.475, 0.85), (0.475, 0.8666667), (0.46666667, 0.8666667), (0.46666667, 0.85), (0.46666667, 0.85), (0.46666667, 0.8666667), (0.45833334, 0.8666667), (0.45833334, 0.85), (0.45833334, 0.85), (0.45833334, 0.8666667), (0.45, 0.8666667), (0.45, 0.85), (0.45, 0.85), (0.45, 0.8666667), (0.44166666, 0.8666667), (0.44166666, 0.85), (0.44166666, 0.85), (0.44166666, 0.8666667), (0.43333334, 0.8666667), (0.43333334, 0.85), (0.43333334, 0.85), (0.43333334, 0.8666667), (0.425, 0.8666667), (0.425, 0.85), (0.425, 0.85), (0.425, 0.8666667), (0.41666666, 0.8666667), (0.41666666, 0.85), (0.41666666, 0.85), (0.41666666, 0.8666667), (0.40833333, 0.8666667), (0.40833333, 0.85), (0.40833333, 0.85), (0.40833333, 0.8666667), (0.4, 0.8666667), (0.4, 0.85), (0.4, 0.85), (0.4, 0.8666667), (0.39166668, 0.8666667), (0.39166668, 0.85), (0.39166668, 0.85), (0.39166668, 0.8666667), (0.38333333, 0.8666667), (0.38333333, 0.85), (0.38333333, 0.85), (0.38333333, 0.8666667), (0.375, 0.8666667), (0.375, 0.85), (0.375, 0.85), (0.375, 0.8666667), (0.36666667, 0.8666667), (0.36666667, 0.85), (0.36666667, 0.85), (0.36666667, 0.8666667), (0.35833332, 0.8666667), (0.35833332, 0.85), (0.35833332, 0.85), (0.35833332, 0.8666667), (0.35, 0.8666667), (0.35, 0.85), (0.35, 0.85), (0.35, 0.8666667), (0.34166667, 0.8666667), (0.34166667, 0.85), (0.34166667, 0.85), (0.34166667, 0.8666667), (0.33333334, 0.8666667), (0.33333334, 0.85), (0.33333334, 0.85), (0.33333334, 0.8666667), (0.325, 0.8666667), (0.325, 0.85), (0.325, 0.85), (0.325, 0.8666667), (0.31666666, 0.8666667), (0.31666666, 0.85), (0.31666666, 0.85), (0.31666666, 0.8666667), (0.30833334, 0.8666667), (0.30833334, 0.85), (0.30833334, 0.85), (0.30833334, 0.8666667), (0.3, 0.8666667), (0.3, 0.85), (0.3, 0.85), (0.3, 0.8666667), (0.29166666, 0.8666667), (0.29166666, 0.85), (0.29166666, 0.85), (0.29166666, 0.8666667), (0.28333333, 0.8666667), (0.28333333, 0.85), (0.28333333, 0.85), (0.28333333, 0.8666667), (0.275, 0.8666667), (0.275, 0.85), (0.275, 0.85), (0.275, 0.8666667), (0.26666668, 0.8666667), (0.26666668, 0.85), (0.26666668, 0.85), (0.26666668, 0.8666667), (0.25833333, 0.8666667), (0.25833333, 0.85), (0.25833333, 0.85), (0.25833333, 0.8666667), (0.25, 0.8666667), (0.25, 0.85), (0.25, 0.85), (0.25, 0.8666667), (0.24166666, 0.8666667), (0.24166666, 0.85), (0.24166666, 0.85), (0.24166666, 0.8666667), (0.23333333, 0.8666667), (0.23333333, 0.85), (0.23333333, 0.85), (0.23333333, 0.8666667), (0.225, 0.8666667), (0.225, 0.85), (0.225, 0.85), (0.225, 0.8666667), (0.21666667, 0.8666667), (0.21666667, 0.85), (0.21666667, 0.85), (0.21666667, 0.8666667), (0.20833333, 0.8666667), (0.20833333, 0.85), (0.20833333, 0.85), (0.20833333, 0.8666667), (0.2, 0.8666667), (0.2, 0.85), (0.2, 0.85), (0.2, 0.8666667), (0.19166666, 0.8666667), (0.19166666, 0.85), (0.19166666, 0.85), (0.19166666, 0.8666667), (0.18333334, 0.8666667), (0.18333334, 0.85), (0.18333334, 0.85), (0.18333334, 0.8666667), (0.175, 0.8666667), (0.175, 0.85), (0.175, 0.85), (0.175, 0.8666667), (0.16666667, 0.8666667), (0.16666667, 0.85), (0.16666667, 0.85), (0.16666667, 0.8666667), (0.15833333, 0.8666667), (0.15833333, 0.85), (0.15833333, 0.85), (0.15833333, 0.8666667), (0.15, 0.8666667), (0.15, 0.85), (0.15, 0.85), (0.15, 0.8666667), (0.14166667, 0.8666667), (0.14166667, 0.85), (0.14166667, 0.85), (0.14166667, 0.8666667), (0.13333334, 0.8666667), (0.13333334, 0.85), (0.13333334, 0.85), (0.13333334, 0.8666667), (0.125, 0.8666667), (0.125, 0.85), (0.125, 0.85), (0.125, 0.8666667), (0.11666667, 0.8666667), (0.11666667, 0.85), (0.11666667, 0.85), (0.11666667, 0.8666667), (0.108333334, 0.8666667), (0.108333334, 0.85), (0.108333334, 0.85), (0.108333334, 0.8666667), (0.1, 0.8666667), (0.1, 0.85), (0.1, 0.85), (0.1, 0.8666667), (0.09166667, 0.8666667), (0.09166667, 0.85), (0.09166667, 0.85), (0.09166667, 0.8666667), (0.083333336, 0.8666667), (0.083333336, 0.85), (0.083333336, 0.85), (0.083333336, 0.8666667), (0.075, 0.8666667), (0.075, 0.85), (0.075, 0.85), (0.075, 0.8666667), (0.06666667, 0.8666667), (0.06666667, 0.85), (0.06666667, 0.85), (0.06666667, 0.8666667), (0.058333334, 0.8666667), (0.058333334, 0.85), (0.058333334, 0.85), (0.058333334, 0.8666667), (0.05, 0.8666667), (0.05, 0.85), (0.05, 0.85), (0.05, 0.8666667), (0.041666668, 0.8666667), (0.041666668, 0.85), (0.041666668, 0.85), (0.041666668, 0.8666667), (0.033333335, 0.8666667), (0.033333335, 0.85), (0.033333335, 0.85), (0.033333335, 0.8666667), (0.025, 0.8666667), (0.025, 0.85), (0.025, 0.85), (0.025, 0.8666667), (0.016666668, 0.8666667), (0.016666668, 0.85), (0.016666668, 0.85), (0.016666668, 0.8666667), (0.008333334, 0.8666667), (0.008333334, 0.85), (0.008333334, 0.85), (0.008333334, 0.8666667), (0, 0.8666667), (0, 0.85), (1, 0.8666667), (1, 0.8833333), (0.9916667, 0.8833333), (0.9916667, 0.8666667), (0.9916667, 0.8666667), (0.9916667, 0.8833333), (0.98333335, 0.8833333), (0.98333335, 0.8666667), (0.98333335, 0.8666667), (0.98333335, 0.8833333), (0.975, 0.8833333), (0.975, 0.8666667), (0.975, 0.8666667), (0.975, 0.8833333), (0.96666664, 0.8833333), (0.96666664, 0.8666667), (0.96666664, 0.8666667), (0.96666664, 0.8833333), (0.9583333, 0.8833333), (0.9583333, 0.8666667), (0.9583333, 0.8666667), (0.9583333, 0.8833333), (0.95, 0.8833333), (0.95, 0.8666667), (0.95, 0.8666667), (0.95, 0.8833333), (0.94166666, 0.8833333), (0.94166666, 0.8666667), (0.94166666, 0.8666667), (0.94166666, 0.8833333), (0.93333334, 0.8833333), (0.93333334, 0.8666667), (0.93333334, 0.8666667), (0.93333334, 0.8833333), (0.925, 0.8833333), (0.925, 0.8666667), (0.925, 0.8666667), (0.925, 0.8833333), (0.9166667, 0.8833333), (0.9166667, 0.8666667), (0.9166667, 0.8666667), (0.9166667, 0.8833333), (0.90833336, 0.8833333), (0.90833336, 0.8666667), (0.90833336, 0.8666667), (0.90833336, 0.8833333), (0.9, 0.8833333), (0.9, 0.8666667), (0.9, 0.8666667), (0.9, 0.8833333), (0.89166665, 0.8833333), (0.89166665, 0.8666667), (0.89166665, 0.8666667), (0.89166665, 0.8833333), (0.8833333, 0.8833333), (0.8833333, 0.8666667), (0.8833333, 0.8666667), (0.8833333, 0.8833333), (0.875, 0.8833333), (0.875, 0.8666667), (0.875, 0.8666667), (0.875, 0.8833333), (0.8666667, 0.8833333), (0.8666667, 0.8666667), (0.8666667, 0.8666667), (0.8666667, 0.8833333), (0.85833335, 0.8833333), (0.85833335, 0.8666667), (0.85833335, 0.8666667), (0.85833335, 0.8833333), (0.85, 0.8833333), (0.85, 0.8666667), (0.85, 0.8666667), (0.85, 0.8833333), (0.84166664, 0.8833333), (0.84166664, 0.8666667), (0.84166664, 0.8666667), (0.84166664, 0.8833333), (0.8333333, 0.8833333), (0.8333333, 0.8666667), (0.8333333, 0.8666667), (0.8333333, 0.8833333), (0.825, 0.8833333), (0.825, 0.8666667), (0.825, 0.8666667), (0.825, 0.8833333), (0.81666666, 0.8833333), (0.81666666, 0.8666667), (0.81666666, 0.8666667), (0.81666666, 0.8833333), (0.80833334, 0.8833333), (0.80833334, 0.8666667), (0.80833334, 0.8666667), (0.80833334, 0.8833333), (0.8, 0.8833333), (0.8, 0.8666667), (0.8, 0.8666667), (0.8, 0.8833333), (0.7916667, 0.8833333), (0.7916667, 0.8666667), (0.7916667, 0.8666667), (0.7916667, 0.8833333), (0.78333336, 0.8833333), (0.78333336, 0.8666667), (0.78333336, 0.8666667), (0.78333336, 0.8833333), (0.775, 0.8833333), (0.775, 0.8666667), (0.775, 0.8666667), (0.775, 0.8833333), (0.76666665, 0.8833333), (0.76666665, 0.8666667), (0.76666665, 0.8666667), (0.76666665, 0.8833333), (0.7583333, 0.8833333), (0.7583333, 0.8666667), (0.7583333, 0.8666667), (0.7583333, 0.8833333), (0.75, 0.8833333), (0.75, 0.8666667), (0.75, 0.8666667), (0.75, 0.8833333), (0.7416667, 0.8833333), (0.7416667, 0.8666667), (0.7416667, 0.8666667), (0.7416667, 0.8833333), (0.73333335, 0.8833333), (0.73333335, 0.8666667), (0.73333335, 0.8666667), (0.73333335, 0.8833333), (0.725, 0.8833333), (0.725, 0.8666667), (0.725, 0.8666667), (0.725, 0.8833333), (0.71666664, 0.8833333), (0.71666664, 0.8666667), (0.71666664, 0.8666667), (0.71666664, 0.8833333), (0.7083333, 0.8833333), (0.7083333, 0.8666667), (0.7083333, 0.8666667), (0.7083333, 0.8833333), (0.7, 0.8833333), (0.7, 0.8666667), (0.7, 0.8666667), (0.7, 0.8833333), (0.69166666, 0.8833333), (0.69166666, 0.8666667), (0.69166666, 0.8666667), (0.69166666, 0.8833333), (0.68333334, 0.8833333), (0.68333334, 0.8666667), (0.68333334, 0.8666667), (0.68333334, 0.8833333), (0.675, 0.8833333), (0.675, 0.8666667), (0.675, 0.8666667), (0.675, 0.8833333), (0.6666667, 0.8833333), (0.6666667, 0.8666667), (0.6666667, 0.8666667), (0.6666667, 0.8833333), (0.65833336, 0.8833333), (0.65833336, 0.8666667), (0.65833336, 0.8666667), (0.65833336, 0.8833333), (0.65, 0.8833333), (0.65, 0.8666667), (0.65, 0.8666667), (0.65, 0.8833333), (0.64166665, 0.8833333), (0.64166665, 0.8666667), (0.64166665, 0.8666667), (0.64166665, 0.8833333), (0.6333333, 0.8833333), (0.6333333, 0.8666667), (0.6333333, 0.8666667), (0.6333333, 0.8833333), (0.625, 0.8833333), (0.625, 0.8666667), (0.625, 0.8666667), (0.625, 0.8833333), (0.6166667, 0.8833333), (0.6166667, 0.8666667), (0.6166667, 0.8666667), (0.6166667, 0.8833333), (0.60833335, 0.8833333), (0.60833335, 0.8666667), (0.60833335, 0.8666667), (0.60833335, 0.8833333), (0.6, 0.8833333), (0.6, 0.8666667), (0.6, 0.8666667), (0.6, 0.8833333), (0.59166664, 0.8833333), (0.59166664, 0.8666667), (0.59166664, 0.8666667), (0.59166664, 0.8833333), (0.5833333, 0.8833333), (0.5833333, 0.8666667), (0.5833333, 0.8666667), (0.5833333, 0.8833333), (0.575, 0.8833333), (0.575, 0.8666667), (0.575, 0.8666667), (0.575, 0.8833333), (0.56666666, 0.8833333), (0.56666666, 0.8666667), (0.56666666, 0.8666667), (0.56666666, 0.8833333), (0.55833334, 0.8833333), (0.55833334, 0.8666667), (0.55833334, 0.8666667), (0.55833334, 0.8833333), (0.55, 0.8833333), (0.55, 0.8666667), (0.55, 0.8666667), (0.55, 0.8833333), (0.5416667, 0.8833333), (0.5416667, 0.8666667), (0.5416667, 0.8666667), (0.5416667, 0.8833333), (0.53333336, 0.8833333), (0.53333336, 0.8666667), (0.53333336, 0.8666667), (0.53333336, 0.8833333), (0.525, 0.8833333), (0.525, 0.8666667), (0.525, 0.8666667), (0.525, 0.8833333), (0.51666665, 0.8833333), (0.51666665, 0.8666667), (0.51666665, 0.8666667), (0.51666665, 0.8833333), (0.5083333, 0.8833333), (0.5083333, 0.8666667), (0.5083333, 0.8666667), (0.5083333, 0.8833333), (0.5, 0.8833333), (0.5, 0.8666667), (0.5, 0.8666667), (0.5, 0.8833333), (0.49166667, 0.8833333), (0.49166667, 0.8666667), (0.49166667, 0.8666667), (0.49166667, 0.8833333), (0.48333332, 0.8833333), (0.48333332, 0.8666667), (0.48333332, 0.8666667), (0.48333332, 0.8833333), (0.475, 0.8833333), (0.475, 0.8666667), (0.475, 0.8666667), (0.475, 0.8833333), (0.46666667, 0.8833333), (0.46666667, 0.8666667), (0.46666667, 0.8666667), (0.46666667, 0.8833333), (0.45833334, 0.8833333), (0.45833334, 0.8666667), (0.45833334, 0.8666667), (0.45833334, 0.8833333), (0.45, 0.8833333), (0.45, 0.8666667), (0.45, 0.8666667), (0.45, 0.8833333), (0.44166666, 0.8833333), (0.44166666, 0.8666667), (0.44166666, 0.8666667), (0.44166666, 0.8833333), (0.43333334, 0.8833333), (0.43333334, 0.8666667), (0.43333334, 0.8666667), (0.43333334, 0.8833333), (0.425, 0.8833333), (0.425, 0.8666667), (0.425, 0.8666667), (0.425, 0.8833333), (0.41666666, 0.8833333), (0.41666666, 0.8666667), (0.41666666, 0.8666667), (0.41666666, 0.8833333), (0.40833333, 0.8833333), (0.40833333, 0.8666667), (0.40833333, 0.8666667), (0.40833333, 0.8833333), (0.4, 0.8833333), (0.4, 0.8666667), (0.4, 0.8666667), (0.4, 0.8833333), (0.39166668, 0.8833333), (0.39166668, 0.8666667), (0.39166668, 0.8666667), (0.39166668, 0.8833333), (0.38333333, 0.8833333), (0.38333333, 0.8666667), (0.38333333, 0.8666667), (0.38333333, 0.8833333), (0.375, 0.8833333), (0.375, 0.8666667), (0.375, 0.8666667), (0.375, 0.8833333), (0.36666667, 0.8833333), (0.36666667, 0.8666667), (0.36666667, 0.8666667), (0.36666667, 0.8833333), (0.35833332, 0.8833333), (0.35833332, 0.8666667), (0.35833332, 0.8666667), (0.35833332, 0.8833333), (0.35, 0.8833333), (0.35, 0.8666667), (0.35, 0.8666667), (0.35, 0.8833333), (0.34166667, 0.8833333), (0.34166667, 0.8666667), (0.34166667, 0.8666667), (0.34166667, 0.8833333), (0.33333334, 0.8833333), (0.33333334, 0.8666667), (0.33333334, 0.8666667), (0.33333334, 0.8833333), (0.325, 0.8833333), (0.325, 0.8666667), (0.325, 0.8666667), (0.325, 0.8833333), (0.31666666, 0.8833333), (0.31666666, 0.8666667), (0.31666666, 0.8666667), (0.31666666, 0.8833333), (0.30833334, 0.8833333), (0.30833334, 0.8666667), (0.30833334, 0.8666667), (0.30833334, 0.8833333), (0.3, 0.8833333), (0.3, 0.8666667), (0.3, 0.8666667), (0.3, 0.8833333), (0.29166666, 0.8833333), (0.29166666, 0.8666667), (0.29166666, 0.8666667), (0.29166666, 0.8833333), (0.28333333, 0.8833333), (0.28333333, 0.8666667), (0.28333333, 0.8666667), (0.28333333, 0.8833333), (0.275, 0.8833333), (0.275, 0.8666667), (0.275, 0.8666667), (0.275, 0.8833333), (0.26666668, 0.8833333), (0.26666668, 0.8666667), (0.26666668, 0.8666667), (0.26666668, 0.8833333), (0.25833333, 0.8833333), (0.25833333, 0.8666667), (0.25833333, 0.8666667), (0.25833333, 0.8833333), (0.25, 0.8833333), (0.25, 0.8666667), (0.25, 0.8666667), (0.25, 0.8833333), (0.24166666, 0.8833333), (0.24166666, 0.8666667), (0.24166666, 0.8666667), (0.24166666, 0.8833333), (0.23333333, 0.8833333), (0.23333333, 0.8666667), (0.23333333, 0.8666667), (0.23333333, 0.8833333), (0.225, 0.8833333), (0.225, 0.8666667), (0.225, 0.8666667), (0.225, 0.8833333), (0.21666667, 0.8833333), (0.21666667, 0.8666667), (0.21666667, 0.8666667), (0.21666667, 0.8833333), (0.20833333, 0.8833333), (0.20833333, 0.8666667), (0.20833333, 0.8666667), (0.20833333, 0.8833333), (0.2, 0.8833333), (0.2, 0.8666667), (0.2, 0.8666667), (0.2, 0.8833333), (0.19166666, 0.8833333), (0.19166666, 0.8666667), (0.19166666, 0.8666667), (0.19166666, 0.8833333), (0.18333334, 0.8833333), (0.18333334, 0.8666667), (0.18333334, 0.8666667), (0.18333334, 0.8833333), (0.175, 0.8833333), (0.175, 0.8666667), (0.175, 0.8666667), (0.175, 0.8833333), (0.16666667, 0.8833333), (0.16666667, 0.8666667), (0.16666667, 0.8666667), (0.16666667, 0.8833333), (0.15833333, 0.8833333), (0.15833333, 0.8666667), (0.15833333, 0.8666667), (0.15833333, 0.8833333), (0.15, 0.8833333), (0.15, 0.8666667), (0.15, 0.8666667), (0.15, 0.8833333), (0.14166667, 0.8833333), (0.14166667, 0.8666667), (0.14166667, 0.8666667), (0.14166667, 0.8833333), (0.13333334, 0.8833333), (0.13333334, 0.8666667), (0.13333334, 0.8666667), (0.13333334, 0.8833333), (0.125, 0.8833333), (0.125, 0.8666667), (0.125, 0.8666667), (0.125, 0.8833333), (0.11666667, 0.8833333), (0.11666667, 0.8666667), (0.11666667, 0.8666667), (0.11666667, 0.8833333), (0.108333334, 0.8833333), (0.108333334, 0.8666667), (0.108333334, 0.8666667), (0.108333334, 0.8833333), (0.1, 0.8833333), (0.1, 0.8666667), (0.1, 0.8666667), (0.1, 0.8833333), (0.09166667, 0.8833333), (0.09166667, 0.8666667), (0.09166667, 0.8666667), (0.09166667, 0.8833333), (0.083333336, 0.8833333), (0.083333336, 0.8666667), (0.083333336, 0.8666667), (0.083333336, 0.8833333), (0.075, 0.8833333), (0.075, 0.8666667), (0.075, 0.8666667), (0.075, 0.8833333), (0.06666667, 0.8833333), (0.06666667, 0.8666667), (0.06666667, 0.8666667), (0.06666667, 0.8833333), (0.058333334, 0.8833333), (0.058333334, 0.8666667), (0.058333334, 0.8666667), (0.058333334, 0.8833333), (0.05, 0.8833333), (0.05, 0.8666667), (0.05, 0.8666667), (0.05, 0.8833333), (0.041666668, 0.8833333), (0.041666668, 0.8666667), (0.041666668, 0.8666667), (0.041666668, 0.8833333), (0.033333335, 0.8833333), (0.033333335, 0.8666667), (0.033333335, 0.8666667), (0.033333335, 0.8833333), (0.025, 0.8833333), (0.025, 0.8666667), (0.025, 0.8666667), (0.025, 0.8833333), (0.016666668, 0.8833333), (0.016666668, 0.8666667), (0.016666668, 0.8666667), (0.016666668, 0.8833333), (0.008333334, 0.8833333), (0.008333334, 0.8666667), (0.008333334, 0.8666667), (0.008333334, 0.8833333), (0, 0.8833333), (0, 0.8666667), (1, 0.8833333), (1, 0.9), (0.9916667, 0.9), (0.9916667, 0.8833333), (0.9916667, 0.8833333), (0.9916667, 0.9), (0.98333335, 0.9), (0.98333335, 0.8833333), (0.98333335, 0.8833333), (0.98333335, 0.9), (0.975, 0.9), (0.975, 0.8833333), (0.975, 0.8833333), (0.975, 0.9), (0.96666664, 0.9), (0.96666664, 0.8833333), (0.96666664, 0.8833333), (0.96666664, 0.9), (0.9583333, 0.9), (0.9583333, 0.8833333), (0.9583333, 0.8833333), (0.9583333, 0.9), (0.95, 0.9), (0.95, 0.8833333), (0.95, 0.8833333), (0.95, 0.9), (0.94166666, 0.9), (0.94166666, 0.8833333), (0.94166666, 0.8833333), (0.94166666, 0.9), (0.93333334, 0.9), (0.93333334, 0.8833333), (0.93333334, 0.8833333), (0.93333334, 0.9), (0.925, 0.9), (0.925, 0.8833333), (0.925, 0.8833333), (0.925, 0.9), (0.9166667, 0.9), (0.9166667, 0.8833333), (0.9166667, 0.8833333), (0.9166667, 0.9), (0.90833336, 0.9), (0.90833336, 0.8833333), (0.90833336, 0.8833333), (0.90833336, 0.9), (0.9, 0.9), (0.9, 0.8833333), (0.9, 0.8833333), (0.9, 0.9), (0.89166665, 0.9), (0.89166665, 0.8833333), (0.89166665, 0.8833333), (0.89166665, 0.9), (0.8833333, 0.9), (0.8833333, 0.8833333), (0.8833333, 0.8833333), (0.8833333, 0.9), (0.875, 0.9), (0.875, 0.8833333), (0.875, 0.8833333), (0.875, 0.9), (0.8666667, 0.9), (0.8666667, 0.8833333), (0.8666667, 0.8833333), (0.8666667, 0.9), (0.85833335, 0.9), (0.85833335, 0.8833333), (0.85833335, 0.8833333), (0.85833335, 0.9), (0.85, 0.9), (0.85, 0.8833333), (0.85, 0.8833333), (0.85, 0.9), (0.84166664, 0.9), (0.84166664, 0.8833333), (0.84166664, 0.8833333), (0.84166664, 0.9), (0.8333333, 0.9), (0.8333333, 0.8833333), (0.8333333, 0.8833333), (0.8333333, 0.9), (0.825, 0.9), (0.825, 0.8833333), (0.825, 0.8833333), (0.825, 0.9), (0.81666666, 0.9), (0.81666666, 0.8833333), (0.81666666, 0.8833333), (0.81666666, 0.9), (0.80833334, 0.9), (0.80833334, 0.8833333), (0.80833334, 0.8833333), (0.80833334, 0.9), (0.8, 0.9), (0.8, 0.8833333), (0.8, 0.8833333), (0.8, 0.9), (0.7916667, 0.9), (0.7916667, 0.8833333), (0.7916667, 0.8833333), (0.7916667, 0.9), (0.78333336, 0.9), (0.78333336, 0.8833333), (0.78333336, 0.8833333), (0.78333336, 0.9), (0.775, 0.9), (0.775, 0.8833333), (0.775, 0.8833333), (0.775, 0.9), (0.76666665, 0.9), (0.76666665, 0.8833333), (0.76666665, 0.8833333), (0.76666665, 0.9), (0.7583333, 0.9), (0.7583333, 0.8833333), (0.7583333, 0.8833333), (0.7583333, 0.9), (0.75, 0.9), (0.75, 0.8833333), (0.75, 0.8833333), (0.75, 0.9), (0.7416667, 0.9), (0.7416667, 0.8833333), (0.7416667, 0.8833333), (0.7416667, 0.9), (0.73333335, 0.9), (0.73333335, 0.8833333), (0.73333335, 0.8833333), (0.73333335, 0.9), (0.725, 0.9), (0.725, 0.8833333), (0.725, 0.8833333), (0.725, 0.9), (0.71666664, 0.9), (0.71666664, 0.8833333), (0.71666664, 0.8833333), (0.71666664, 0.9), (0.7083333, 0.9), (0.7083333, 0.8833333), (0.7083333, 0.8833333), (0.7083333, 0.9), (0.7, 0.9), (0.7, 0.8833333), (0.7, 0.8833333), (0.7, 0.9), (0.69166666, 0.9), (0.69166666, 0.8833333), (0.69166666, 0.8833333), (0.69166666, 0.9), (0.68333334, 0.9), (0.68333334, 0.8833333), (0.68333334, 0.8833333), (0.68333334, 0.9), (0.675, 0.9), (0.675, 0.8833333), (0.675, 0.8833333), (0.675, 0.9), (0.6666667, 0.9), (0.6666667, 0.8833333), (0.6666667, 0.8833333), (0.6666667, 0.9), (0.65833336, 0.9), (0.65833336, 0.8833333), (0.65833336, 0.8833333), (0.65833336, 0.9), (0.65, 0.9), (0.65, 0.8833333), (0.65, 0.8833333), (0.65, 0.9), (0.64166665, 0.9), (0.64166665, 0.8833333), (0.64166665, 0.8833333), (0.64166665, 0.9), (0.6333333, 0.9), (0.6333333, 0.8833333), (0.6333333, 0.8833333), (0.6333333, 0.9), (0.625, 0.9), (0.625, 0.8833333), (0.625, 0.8833333), (0.625, 0.9), (0.6166667, 0.9), (0.6166667, 0.8833333), (0.6166667, 0.8833333), (0.6166667, 0.9), (0.60833335, 0.9), (0.60833335, 0.8833333), (0.60833335, 0.8833333), (0.60833335, 0.9), (0.6, 0.9), (0.6, 0.8833333), (0.6, 0.8833333), (0.6, 0.9), (0.59166664, 0.9), (0.59166664, 0.8833333), (0.59166664, 0.8833333), (0.59166664, 0.9), (0.5833333, 0.9), (0.5833333, 0.8833333), (0.5833333, 0.8833333), (0.5833333, 0.9), (0.575, 0.9), (0.575, 0.8833333), (0.575, 0.8833333), (0.575, 0.9), (0.56666666, 0.9), (0.56666666, 0.8833333), (0.56666666, 0.8833333), (0.56666666, 0.9), (0.55833334, 0.9), (0.55833334, 0.8833333), (0.55833334, 0.8833333), (0.55833334, 0.9), (0.55, 0.9), (0.55, 0.8833333), (0.55, 0.8833333), (0.55, 0.9), (0.5416667, 0.9), (0.5416667, 0.8833333), (0.5416667, 0.8833333), (0.5416667, 0.9), (0.53333336, 0.9), (0.53333336, 0.8833333), (0.53333336, 0.8833333), (0.53333336, 0.9), (0.525, 0.9), (0.525, 0.8833333), (0.525, 0.8833333), (0.525, 0.9), (0.51666665, 0.9), (0.51666665, 0.8833333), (0.51666665, 0.8833333), (0.51666665, 0.9), (0.5083333, 0.9), (0.5083333, 0.8833333), (0.5083333, 0.8833333), (0.5083333, 0.9), (0.5, 0.9), (0.5, 0.8833333), (0.5, 0.8833333), (0.5, 0.9), (0.49166667, 0.9), (0.49166667, 0.8833333), (0.49166667, 0.8833333), (0.49166667, 0.9), (0.48333332, 0.9), (0.48333332, 0.8833333), (0.48333332, 0.8833333), (0.48333332, 0.9), (0.475, 0.9), (0.475, 0.8833333), (0.475, 0.8833333), (0.475, 0.9), (0.46666667, 0.9), (0.46666667, 0.8833333), (0.46666667, 0.8833333), (0.46666667, 0.9), (0.45833334, 0.9), (0.45833334, 0.8833333), (0.45833334, 0.8833333), (0.45833334, 0.9), (0.45, 0.9), (0.45, 0.8833333), (0.45, 0.8833333), (0.45, 0.9), (0.44166666, 0.9), (0.44166666, 0.8833333), (0.44166666, 0.8833333), (0.44166666, 0.9), (0.43333334, 0.9), (0.43333334, 0.8833333), (0.43333334, 0.8833333), (0.43333334, 0.9), (0.425, 0.9), (0.425, 0.8833333), (0.425, 0.8833333), (0.425, 0.9), (0.41666666, 0.9), (0.41666666, 0.8833333), (0.41666666, 0.8833333), (0.41666666, 0.9), (0.40833333, 0.9), (0.40833333, 0.8833333), (0.40833333, 0.8833333), (0.40833333, 0.9), (0.4, 0.9), (0.4, 0.8833333), (0.4, 0.8833333), (0.4, 0.9), (0.39166668, 0.9), (0.39166668, 0.8833333), (0.39166668, 0.8833333), (0.39166668, 0.9), (0.38333333, 0.9), (0.38333333, 0.8833333), (0.38333333, 0.8833333), (0.38333333, 0.9), (0.375, 0.9), (0.375, 0.8833333), (0.375, 0.8833333), (0.375, 0.9), (0.36666667, 0.9), (0.36666667, 0.8833333), (0.36666667, 0.8833333), (0.36666667, 0.9), (0.35833332, 0.9), (0.35833332, 0.8833333), (0.35833332, 0.8833333), (0.35833332, 0.9), (0.35, 0.9), (0.35, 0.8833333), (0.35, 0.8833333), (0.35, 0.9), (0.34166667, 0.9), (0.34166667, 0.8833333), (0.34166667, 0.8833333), (0.34166667, 0.9), (0.33333334, 0.9), (0.33333334, 0.8833333), (0.33333334, 0.8833333), (0.33333334, 0.9), (0.325, 0.9), (0.325, 0.8833333), (0.325, 0.8833333), (0.325, 0.9), (0.31666666, 0.9), (0.31666666, 0.8833333), (0.31666666, 0.8833333), (0.31666666, 0.9), (0.30833334, 0.9), (0.30833334, 0.8833333), (0.30833334, 0.8833333), (0.30833334, 0.9), (0.3, 0.9), (0.3, 0.8833333), (0.3, 0.8833333), (0.3, 0.9), (0.29166666, 0.9), (0.29166666, 0.8833333), (0.29166666, 0.8833333), (0.29166666, 0.9), (0.28333333, 0.9), (0.28333333, 0.8833333), (0.28333333, 0.8833333), (0.28333333, 0.9), (0.275, 0.9), (0.275, 0.8833333), (0.275, 0.8833333), (0.275, 0.9), (0.26666668, 0.9), (0.26666668, 0.8833333), (0.26666668, 0.8833333), (0.26666668, 0.9), (0.25833333, 0.9), (0.25833333, 0.8833333), (0.25833333, 0.8833333), (0.25833333, 0.9), (0.25, 0.9), (0.25, 0.8833333), (0.25, 0.8833333), (0.25, 0.9), (0.24166666, 0.9), (0.24166666, 0.8833333), (0.24166666, 0.8833333), (0.24166666, 0.9), (0.23333333, 0.9), (0.23333333, 0.8833333), (0.23333333, 0.8833333), (0.23333333, 0.9), (0.225, 0.9), (0.225, 0.8833333), (0.225, 0.8833333), (0.225, 0.9), (0.21666667, 0.9), (0.21666667, 0.8833333), (0.21666667, 0.8833333), (0.21666667, 0.9), (0.20833333, 0.9), (0.20833333, 0.8833333), (0.20833333, 0.8833333), (0.20833333, 0.9), (0.2, 0.9), (0.2, 0.8833333), (0.2, 0.8833333), (0.2, 0.9), (0.19166666, 0.9), (0.19166666, 0.8833333), (0.19166666, 0.8833333), (0.19166666, 0.9), (0.18333334, 0.9), (0.18333334, 0.8833333), (0.18333334, 0.8833333), (0.18333334, 0.9), (0.175, 0.9), (0.175, 0.8833333), (0.175, 0.8833333), (0.175, 0.9), (0.16666667, 0.9), (0.16666667, 0.8833333), (0.16666667, 0.8833333), (0.16666667, 0.9), (0.15833333, 0.9), (0.15833333, 0.8833333), (0.15833333, 0.8833333), (0.15833333, 0.9), (0.15, 0.9), (0.15, 0.8833333), (0.15, 0.8833333), (0.15, 0.9), (0.14166667, 0.9), (0.14166667, 0.8833333), (0.14166667, 0.8833333), (0.14166667, 0.9), (0.13333334, 0.9), (0.13333334, 0.8833333), (0.13333334, 0.8833333), (0.13333334, 0.9), (0.125, 0.9), (0.125, 0.8833333), (0.125, 0.8833333), (0.125, 0.9), (0.11666667, 0.9), (0.11666667, 0.8833333), (0.11666667, 0.8833333), (0.11666667, 0.9), (0.108333334, 0.9), (0.108333334, 0.8833333), (0.108333334, 0.8833333), (0.108333334, 0.9), (0.1, 0.9), (0.1, 0.8833333), (0.1, 0.8833333), (0.1, 0.9), (0.09166667, 0.9), (0.09166667, 0.8833333), (0.09166667, 0.8833333), (0.09166667, 0.9), (0.083333336, 0.9), (0.083333336, 0.8833333), (0.083333336, 0.8833333), (0.083333336, 0.9), (0.075, 0.9), (0.075, 0.8833333), (0.075, 0.8833333), (0.075, 0.9), (0.06666667, 0.9), (0.06666667, 0.8833333), (0.06666667, 0.8833333), (0.06666667, 0.9), (0.058333334, 0.9), (0.058333334, 0.8833333), (0.058333334, 0.8833333), (0.058333334, 0.9), (0.05, 0.9), (0.05, 0.8833333), (0.05, 0.8833333), (0.05, 0.9), (0.041666668, 0.9), (0.041666668, 0.8833333), (0.041666668, 0.8833333), (0.041666668, 0.9), (0.033333335, 0.9), (0.033333335, 0.8833333), (0.033333335, 0.8833333), (0.033333335, 0.9), (0.025, 0.9), (0.025, 0.8833333), (0.025, 0.8833333), (0.025, 0.9), (0.016666668, 0.9), (0.016666668, 0.8833333), (0.016666668, 0.8833333), (0.016666668, 0.9), (0.008333334, 0.9), (0.008333334, 0.8833333), (0.008333334, 0.8833333), (0.008333334, 0.9), (0, 0.9), (0, 0.8833333), (1, 0.9), (1, 0.9166667), (0.9916667, 0.9166667), (0.9916667, 0.9), (0.9916667, 0.9), (0.9916667, 0.9166667), (0.98333335, 0.9166667), (0.98333335, 0.9), (0.98333335, 0.9), (0.98333335, 0.9166667), (0.975, 0.9166667), (0.975, 0.9), (0.975, 0.9), (0.975, 0.9166667), (0.96666664, 0.9166667), (0.96666664, 0.9), (0.96666664, 0.9), (0.96666664, 0.9166667), (0.9583333, 0.9166667), (0.9583333, 0.9), (0.9583333, 0.9), (0.9583333, 0.9166667), (0.95, 0.9166667), (0.95, 0.9), (0.95, 0.9), (0.95, 0.9166667), (0.94166666, 0.9166667), (0.94166666, 0.9), (0.94166666, 0.9), (0.94166666, 0.9166667), (0.93333334, 0.9166667), (0.93333334, 0.9), (0.93333334, 0.9), (0.93333334, 0.9166667), (0.925, 0.9166667), (0.925, 0.9), (0.925, 0.9), (0.925, 0.9166667), (0.9166667, 0.9166667), (0.9166667, 0.9), (0.9166667, 0.9), (0.9166667, 0.9166667), (0.90833336, 0.9166667), (0.90833336, 0.9), (0.90833336, 0.9), (0.90833336, 0.9166667), (0.9, 0.9166667), (0.9, 0.9), (0.9, 0.9), (0.9, 0.9166667), (0.89166665, 0.9166667), (0.89166665, 0.9), (0.89166665, 0.9), (0.89166665, 0.9166667), (0.8833333, 0.9166667), (0.8833333, 0.9), (0.8833333, 0.9), (0.8833333, 0.9166667), (0.875, 0.9166667), (0.875, 0.9), (0.875, 0.9), (0.875, 0.9166667), (0.8666667, 0.9166667), (0.8666667, 0.9), (0.8666667, 0.9), (0.8666667, 0.9166667), (0.85833335, 0.9166667), (0.85833335, 0.9), (0.85833335, 0.9), (0.85833335, 0.9166667), (0.85, 0.9166667), (0.85, 0.9), (0.85, 0.9), (0.85, 0.9166667), (0.84166664, 0.9166667), (0.84166664, 0.9), (0.84166664, 0.9), (0.84166664, 0.9166667), (0.8333333, 0.9166667), (0.8333333, 0.9), (0.8333333, 0.9), (0.8333333, 0.9166667), (0.825, 0.9166667), (0.825, 0.9), (0.825, 0.9), (0.825, 0.9166667), (0.81666666, 0.9166667), (0.81666666, 0.9), (0.81666666, 0.9), (0.81666666, 0.9166667), (0.80833334, 0.9166667), (0.80833334, 0.9), (0.80833334, 0.9), (0.80833334, 0.9166667), (0.8, 0.9166667), (0.8, 0.9), (0.8, 0.9), (0.8, 0.9166667), (0.7916667, 0.9166667), (0.7916667, 0.9), (0.7916667, 0.9), (0.7916667, 0.9166667), (0.78333336, 0.9166667), (0.78333336, 0.9), (0.78333336, 0.9), (0.78333336, 0.9166667), (0.775, 0.9166667), (0.775, 0.9), (0.775, 0.9), (0.775, 0.9166667), (0.76666665, 0.9166667), (0.76666665, 0.9), (0.76666665, 0.9), (0.76666665, 0.9166667), (0.7583333, 0.9166667), (0.7583333, 0.9), (0.7583333, 0.9), (0.7583333, 0.9166667), (0.75, 0.9166667), (0.75, 0.9), (0.75, 0.9), (0.75, 0.9166667), (0.7416667, 0.9166667), (0.7416667, 0.9), (0.7416667, 0.9), (0.7416667, 0.9166667), (0.73333335, 0.9166667), (0.73333335, 0.9), (0.73333335, 0.9), (0.73333335, 0.9166667), (0.725, 0.9166667), (0.725, 0.9), (0.725, 0.9), (0.725, 0.9166667), (0.71666664, 0.9166667), (0.71666664, 0.9), (0.71666664, 0.9), (0.71666664, 0.9166667), (0.7083333, 0.9166667), (0.7083333, 0.9), (0.7083333, 0.9), (0.7083333, 0.9166667), (0.7, 0.9166667), (0.7, 0.9), (0.7, 0.9), (0.7, 0.9166667), (0.69166666, 0.9166667), (0.69166666, 0.9), (0.69166666, 0.9), (0.69166666, 0.9166667), (0.68333334, 0.9166667), (0.68333334, 0.9), (0.68333334, 0.9), (0.68333334, 0.9166667), (0.675, 0.9166667), (0.675, 0.9), (0.675, 0.9), (0.675, 0.9166667), (0.6666667, 0.9166667), (0.6666667, 0.9), (0.6666667, 0.9), (0.6666667, 0.9166667), (0.65833336, 0.9166667), (0.65833336, 0.9), (0.65833336, 0.9), (0.65833336, 0.9166667), (0.65, 0.9166667), (0.65, 0.9), (0.65, 0.9), (0.65, 0.9166667), (0.64166665, 0.9166667), (0.64166665, 0.9), (0.64166665, 0.9), (0.64166665, 0.9166667), (0.6333333, 0.9166667), (0.6333333, 0.9), (0.6333333, 0.9), (0.6333333, 0.9166667), (0.625, 0.9166667), (0.625, 0.9), (0.625, 0.9), (0.625, 0.9166667), (0.6166667, 0.9166667), (0.6166667, 0.9), (0.6166667, 0.9), (0.6166667, 0.9166667), (0.60833335, 0.9166667), (0.60833335, 0.9), (0.60833335, 0.9), (0.60833335, 0.9166667), (0.6, 0.9166667), (0.6, 0.9), (0.6, 0.9), (0.6, 0.9166667), (0.59166664, 0.9166667), (0.59166664, 0.9), (0.59166664, 0.9), (0.59166664, 0.9166667), (0.5833333, 0.9166667), (0.5833333, 0.9), (0.5833333, 0.9), (0.5833333, 0.9166667), (0.575, 0.9166667), (0.575, 0.9), (0.575, 0.9), (0.575, 0.9166667), (0.56666666, 0.9166667), (0.56666666, 0.9), (0.56666666, 0.9), (0.56666666, 0.9166667), (0.55833334, 0.9166667), (0.55833334, 0.9), (0.55833334, 0.9), (0.55833334, 0.9166667), (0.55, 0.9166667), (0.55, 0.9), (0.55, 0.9), (0.55, 0.9166667), (0.5416667, 0.9166667), (0.5416667, 0.9), (0.5416667, 0.9), (0.5416667, 0.9166667), (0.53333336, 0.9166667), (0.53333336, 0.9), (0.53333336, 0.9), (0.53333336, 0.9166667), (0.525, 0.9166667), (0.525, 0.9), (0.525, 0.9), (0.525, 0.9166667), (0.51666665, 0.9166667), (0.51666665, 0.9), (0.51666665, 0.9), (0.51666665, 0.9166667), (0.5083333, 0.9166667), (0.5083333, 0.9), (0.5083333, 0.9), (0.5083333, 0.9166667), (0.5, 0.9166667), (0.5, 0.9), (0.5, 0.9), (0.5, 0.9166667), (0.49166667, 0.9166667), (0.49166667, 0.9), (0.49166667, 0.9), (0.49166667, 0.9166667), (0.48333332, 0.9166667), (0.48333332, 0.9), (0.48333332, 0.9), (0.48333332, 0.9166667), (0.475, 0.9166667), (0.475, 0.9), (0.475, 0.9), (0.475, 0.9166667), (0.46666667, 0.9166667), (0.46666667, 0.9), (0.46666667, 0.9), (0.46666667, 0.9166667), (0.45833334, 0.9166667), (0.45833334, 0.9), (0.45833334, 0.9), (0.45833334, 0.9166667), (0.45, 0.9166667), (0.45, 0.9), (0.45, 0.9), (0.45, 0.9166667), (0.44166666, 0.9166667), (0.44166666, 0.9), (0.44166666, 0.9), (0.44166666, 0.9166667), (0.43333334, 0.9166667), (0.43333334, 0.9), (0.43333334, 0.9), (0.43333334, 0.9166667), (0.425, 0.9166667), (0.425, 0.9), (0.425, 0.9), (0.425, 0.9166667), (0.41666666, 0.9166667), (0.41666666, 0.9), (0.41666666, 0.9), (0.41666666, 0.9166667), (0.40833333, 0.9166667), (0.40833333, 0.9), (0.40833333, 0.9), (0.40833333, 0.9166667), (0.4, 0.9166667), (0.4, 0.9), (0.4, 0.9), (0.4, 0.9166667), (0.39166668, 0.9166667), (0.39166668, 0.9), (0.39166668, 0.9), (0.39166668, 0.9166667), (0.38333333, 0.9166667), (0.38333333, 0.9), (0.38333333, 0.9), (0.38333333, 0.9166667), (0.375, 0.9166667), (0.375, 0.9), (0.375, 0.9), (0.375, 0.9166667), (0.36666667, 0.9166667), (0.36666667, 0.9), (0.36666667, 0.9), (0.36666667, 0.9166667), (0.35833332, 0.9166667), (0.35833332, 0.9), (0.35833332, 0.9), (0.35833332, 0.9166667), (0.35, 0.9166667), (0.35, 0.9), (0.35, 0.9), (0.35, 0.9166667), (0.34166667, 0.9166667), (0.34166667, 0.9), (0.34166667, 0.9), (0.34166667, 0.9166667), (0.33333334, 0.9166667), (0.33333334, 0.9), (0.33333334, 0.9), (0.33333334, 0.9166667), (0.325, 0.9166667), (0.325, 0.9), (0.325, 0.9), (0.325, 0.9166667), (0.31666666, 0.9166667), (0.31666666, 0.9), (0.31666666, 0.9), (0.31666666, 0.9166667), (0.30833334, 0.9166667), (0.30833334, 0.9), (0.30833334, 0.9), (0.30833334, 0.9166667), (0.3, 0.9166667), (0.3, 0.9), (0.3, 0.9), (0.3, 0.9166667), (0.29166666, 0.9166667), (0.29166666, 0.9), (0.29166666, 0.9), (0.29166666, 0.9166667), (0.28333333, 0.9166667), (0.28333333, 0.9), (0.28333333, 0.9), (0.28333333, 0.9166667), (0.275, 0.9166667), (0.275, 0.9), (0.275, 0.9), (0.275, 0.9166667), (0.26666668, 0.9166667), (0.26666668, 0.9), (0.26666668, 0.9), (0.26666668, 0.9166667), (0.25833333, 0.9166667), (0.25833333, 0.9), (0.25833333, 0.9), (0.25833333, 0.9166667), (0.25, 0.9166667), (0.25, 0.9), (0.25, 0.9), (0.25, 0.9166667), (0.24166666, 0.9166667), (0.24166666, 0.9), (0.24166666, 0.9), (0.24166666, 0.9166667), (0.23333333, 0.9166667), (0.23333333, 0.9), (0.23333333, 0.9), (0.23333333, 0.9166667), (0.225, 0.9166667), (0.225, 0.9), (0.225, 0.9), (0.225, 0.9166667), (0.21666667, 0.9166667), (0.21666667, 0.9), (0.21666667, 0.9), (0.21666667, 0.9166667), (0.20833333, 0.9166667), (0.20833333, 0.9), (0.20833333, 0.9), (0.20833333, 0.9166667), (0.2, 0.9166667), (0.2, 0.9), (0.2, 0.9), (0.2, 0.9166667), (0.19166666, 0.9166667), (0.19166666, 0.9), (0.19166666, 0.9), (0.19166666, 0.9166667), (0.18333334, 0.9166667), (0.18333334, 0.9), (0.18333334, 0.9), (0.18333334, 0.9166667), (0.175, 0.9166667), (0.175, 0.9), (0.175, 0.9), (0.175, 0.9166667), (0.16666667, 0.9166667), (0.16666667, 0.9), (0.16666667, 0.9), (0.16666667, 0.9166667), (0.15833333, 0.9166667), (0.15833333, 0.9), (0.15833333, 0.9), (0.15833333, 0.9166667), (0.15, 0.9166667), (0.15, 0.9), (0.15, 0.9), (0.15, 0.9166667), (0.14166667, 0.9166667), (0.14166667, 0.9), (0.14166667, 0.9), (0.14166667, 0.9166667), (0.13333334, 0.9166667), (0.13333334, 0.9), (0.13333334, 0.9), (0.13333334, 0.9166667), (0.125, 0.9166667), (0.125, 0.9), (0.125, 0.9), (0.125, 0.9166667), (0.11666667, 0.9166667), (0.11666667, 0.9), (0.11666667, 0.9), (0.11666667, 0.9166667), (0.108333334, 0.9166667), (0.108333334, 0.9), (0.108333334, 0.9), (0.108333334, 0.9166667), (0.1, 0.9166667), (0.1, 0.9), (0.1, 0.9), (0.1, 0.9166667), (0.09166667, 0.9166667), (0.09166667, 0.9), (0.09166667, 0.9), (0.09166667, 0.9166667), (0.083333336, 0.9166667), (0.083333336, 0.9), (0.083333336, 0.9), (0.083333336, 0.9166667), (0.075, 0.9166667), (0.075, 0.9), (0.075, 0.9), (0.075, 0.9166667), (0.06666667, 0.9166667), (0.06666667, 0.9), (0.06666667, 0.9), (0.06666667, 0.9166667), (0.058333334, 0.9166667), (0.058333334, 0.9), (0.058333334, 0.9), (0.058333334, 0.9166667), (0.05, 0.9166667), (0.05, 0.9), (0.05, 0.9), (0.05, 0.9166667), (0.041666668, 0.9166667), (0.041666668, 0.9), (0.041666668, 0.9), (0.041666668, 0.9166667), (0.033333335, 0.9166667), (0.033333335, 0.9), (0.033333335, 0.9), (0.033333335, 0.9166667), (0.025, 0.9166667), (0.025, 0.9), (0.025, 0.9), (0.025, 0.9166667), (0.016666668, 0.9166667), (0.016666668, 0.9), (0.016666668, 0.9), (0.016666668, 0.9166667), (0.008333334, 0.9166667), (0.008333334, 0.9), (0.008333334, 0.9), (0.008333334, 0.9166667), (0, 0.9166667), (0, 0.9), (1, 0.9166667), (1, 0.93333334), (0.9916667, 0.93333334), (0.9916667, 0.9166667), (0.9916667, 0.9166667), (0.9916667, 0.93333334), (0.98333335, 0.93333334), (0.98333335, 0.9166667), (0.98333335, 0.9166667), (0.98333335, 0.93333334), (0.975, 0.93333334), (0.975, 0.9166667), (0.975, 0.9166667), (0.975, 0.93333334), (0.96666664, 0.93333334), (0.96666664, 0.9166667), (0.96666664, 0.9166667), (0.96666664, 0.93333334), (0.9583333, 0.93333334), (0.9583333, 0.9166667), (0.9583333, 0.9166667), (0.9583333, 0.93333334), (0.95, 0.93333334), (0.95, 0.9166667), (0.95, 0.9166667), (0.95, 0.93333334), (0.94166666, 0.93333334), (0.94166666, 0.9166667), (0.94166666, 0.9166667), (0.94166666, 0.93333334), (0.93333334, 0.93333334), (0.93333334, 0.9166667), (0.93333334, 0.9166667), (0.93333334, 0.93333334), (0.925, 0.93333334), (0.925, 0.9166667), (0.925, 0.9166667), (0.925, 0.93333334), (0.9166667, 0.93333334), (0.9166667, 0.9166667), (0.9166667, 0.9166667), (0.9166667, 0.93333334), (0.90833336, 0.93333334), (0.90833336, 0.9166667), (0.90833336, 0.9166667), (0.90833336, 0.93333334), (0.9, 0.93333334), (0.9, 0.9166667), (0.9, 0.9166667), (0.9, 0.93333334), (0.89166665, 0.93333334), (0.89166665, 0.9166667), (0.89166665, 0.9166667), (0.89166665, 0.93333334), (0.8833333, 0.93333334), (0.8833333, 0.9166667), (0.8833333, 0.9166667), (0.8833333, 0.93333334), (0.875, 0.93333334), (0.875, 0.9166667), (0.875, 0.9166667), (0.875, 0.93333334), (0.8666667, 0.93333334), (0.8666667, 0.9166667), (0.8666667, 0.9166667), (0.8666667, 0.93333334), (0.85833335, 0.93333334), (0.85833335, 0.9166667), (0.85833335, 0.9166667), (0.85833335, 0.93333334), (0.85, 0.93333334), (0.85, 0.9166667), (0.85, 0.9166667), (0.85, 0.93333334), (0.84166664, 0.93333334), (0.84166664, 0.9166667), (0.84166664, 0.9166667), (0.84166664, 0.93333334), (0.8333333, 0.93333334), (0.8333333, 0.9166667), (0.8333333, 0.9166667), (0.8333333, 0.93333334), (0.825, 0.93333334), (0.825, 0.9166667), (0.825, 0.9166667), (0.825, 0.93333334), (0.81666666, 0.93333334), (0.81666666, 0.9166667), (0.81666666, 0.9166667), (0.81666666, 0.93333334), (0.80833334, 0.93333334), (0.80833334, 0.9166667), (0.80833334, 0.9166667), (0.80833334, 0.93333334), (0.8, 0.93333334), (0.8, 0.9166667), (0.8, 0.9166667), (0.8, 0.93333334), (0.7916667, 0.93333334), (0.7916667, 0.9166667), (0.7916667, 0.9166667), (0.7916667, 0.93333334), (0.78333336, 0.93333334), (0.78333336, 0.9166667), (0.78333336, 0.9166667), (0.78333336, 0.93333334), (0.775, 0.93333334), (0.775, 0.9166667), (0.775, 0.9166667), (0.775, 0.93333334), (0.76666665, 0.93333334), (0.76666665, 0.9166667), (0.76666665, 0.9166667), (0.76666665, 0.93333334), (0.7583333, 0.93333334), (0.7583333, 0.9166667), (0.7583333, 0.9166667), (0.7583333, 0.93333334), (0.75, 0.93333334), (0.75, 0.9166667), (0.75, 0.9166667), (0.75, 0.93333334), (0.7416667, 0.93333334), (0.7416667, 0.9166667), (0.7416667, 0.9166667), (0.7416667, 0.93333334), (0.73333335, 0.93333334), (0.73333335, 0.9166667), (0.73333335, 0.9166667), (0.73333335, 0.93333334), (0.725, 0.93333334), (0.725, 0.9166667), (0.725, 0.9166667), (0.725, 0.93333334), (0.71666664, 0.93333334), (0.71666664, 0.9166667), (0.71666664, 0.9166667), (0.71666664, 0.93333334), (0.7083333, 0.93333334), (0.7083333, 0.9166667), (0.7083333, 0.9166667), (0.7083333, 0.93333334), (0.7, 0.93333334), (0.7, 0.9166667), (0.7, 0.9166667), (0.7, 0.93333334), (0.69166666, 0.93333334), (0.69166666, 0.9166667), (0.69166666, 0.9166667), (0.69166666, 0.93333334), (0.68333334, 0.93333334), (0.68333334, 0.9166667), (0.68333334, 0.9166667), (0.68333334, 0.93333334), (0.675, 0.93333334), (0.675, 0.9166667), (0.675, 0.9166667), (0.675, 0.93333334), (0.6666667, 0.93333334), (0.6666667, 0.9166667), (0.6666667, 0.9166667), (0.6666667, 0.93333334), (0.65833336, 0.93333334), (0.65833336, 0.9166667), (0.65833336, 0.9166667), (0.65833336, 0.93333334), (0.65, 0.93333334), (0.65, 0.9166667), (0.65, 0.9166667), (0.65, 0.93333334), (0.64166665, 0.93333334), (0.64166665, 0.9166667), (0.64166665, 0.9166667), (0.64166665, 0.93333334), (0.6333333, 0.93333334), (0.6333333, 0.9166667), (0.6333333, 0.9166667), (0.6333333, 0.93333334), (0.625, 0.93333334), (0.625, 0.9166667), (0.625, 0.9166667), (0.625, 0.93333334), (0.6166667, 0.93333334), (0.6166667, 0.9166667), (0.6166667, 0.9166667), (0.6166667, 0.93333334), (0.60833335, 0.93333334), (0.60833335, 0.9166667), (0.60833335, 0.9166667), (0.60833335, 0.93333334), (0.6, 0.93333334), (0.6, 0.9166667), (0.6, 0.9166667), (0.6, 0.93333334), (0.59166664, 0.93333334), (0.59166664, 0.9166667), (0.59166664, 0.9166667), (0.59166664, 0.93333334), (0.5833333, 0.93333334), (0.5833333, 0.9166667), (0.5833333, 0.9166667), (0.5833333, 0.93333334), (0.575, 0.93333334), (0.575, 0.9166667), (0.575, 0.9166667), (0.575, 0.93333334), (0.56666666, 0.93333334), (0.56666666, 0.9166667), (0.56666666, 0.9166667), (0.56666666, 0.93333334), (0.55833334, 0.93333334), (0.55833334, 0.9166667), (0.55833334, 0.9166667), (0.55833334, 0.93333334), (0.55, 0.93333334), (0.55, 0.9166667), (0.55, 0.9166667), (0.55, 0.93333334), (0.5416667, 0.93333334), (0.5416667, 0.9166667), (0.5416667, 0.9166667), (0.5416667, 0.93333334), (0.53333336, 0.93333334), (0.53333336, 0.9166667), (0.53333336, 0.9166667), (0.53333336, 0.93333334), (0.525, 0.93333334), (0.525, 0.9166667), (0.525, 0.9166667), (0.525, 0.93333334), (0.51666665, 0.93333334), (0.51666665, 0.9166667), (0.51666665, 0.9166667), (0.51666665, 0.93333334), (0.5083333, 0.93333334), (0.5083333, 0.9166667), (0.5083333, 0.9166667), (0.5083333, 0.93333334), (0.5, 0.93333334), (0.5, 0.9166667), (0.5, 0.9166667), (0.5, 0.93333334), (0.49166667, 0.93333334), (0.49166667, 0.9166667), (0.49166667, 0.9166667), (0.49166667, 0.93333334), (0.48333332, 0.93333334), (0.48333332, 0.9166667), (0.48333332, 0.9166667), (0.48333332, 0.93333334), (0.475, 0.93333334), (0.475, 0.9166667), (0.475, 0.9166667), (0.475, 0.93333334), (0.46666667, 0.93333334), (0.46666667, 0.9166667), (0.46666667, 0.9166667), (0.46666667, 0.93333334), (0.45833334, 0.93333334), (0.45833334, 0.9166667), (0.45833334, 0.9166667), (0.45833334, 0.93333334), (0.45, 0.93333334), (0.45, 0.9166667), (0.45, 0.9166667), (0.45, 0.93333334), (0.44166666, 0.93333334), (0.44166666, 0.9166667), (0.44166666, 0.9166667), (0.44166666, 0.93333334), (0.43333334, 0.93333334), (0.43333334, 0.9166667), (0.43333334, 0.9166667), (0.43333334, 0.93333334), (0.425, 0.93333334), (0.425, 0.9166667), (0.425, 0.9166667), (0.425, 0.93333334), (0.41666666, 0.93333334), (0.41666666, 0.9166667), (0.41666666, 0.9166667), (0.41666666, 0.93333334), (0.40833333, 0.93333334), (0.40833333, 0.9166667), (0.40833333, 0.9166667), (0.40833333, 0.93333334), (0.4, 0.93333334), (0.4, 0.9166667), (0.4, 0.9166667), (0.4, 0.93333334), (0.39166668, 0.93333334), (0.39166668, 0.9166667), (0.39166668, 0.9166667), (0.39166668, 0.93333334), (0.38333333, 0.93333334), (0.38333333, 0.9166667), (0.38333333, 0.9166667), (0.38333333, 0.93333334), (0.375, 0.93333334), (0.375, 0.9166667), (0.375, 0.9166667), (0.375, 0.93333334), (0.36666667, 0.93333334), (0.36666667, 0.9166667), (0.36666667, 0.9166667), (0.36666667, 0.93333334), (0.35833332, 0.93333334), (0.35833332, 0.9166667), (0.35833332, 0.9166667), (0.35833332, 0.93333334), (0.35, 0.93333334), (0.35, 0.9166667), (0.35, 0.9166667), (0.35, 0.93333334), (0.34166667, 0.93333334), (0.34166667, 0.9166667), (0.34166667, 0.9166667), (0.34166667, 0.93333334), (0.33333334, 0.93333334), (0.33333334, 0.9166667), (0.33333334, 0.9166667), (0.33333334, 0.93333334), (0.325, 0.93333334), (0.325, 0.9166667), (0.325, 0.9166667), (0.325, 0.93333334), (0.31666666, 0.93333334), (0.31666666, 0.9166667), (0.31666666, 0.9166667), (0.31666666, 0.93333334), (0.30833334, 0.93333334), (0.30833334, 0.9166667), (0.30833334, 0.9166667), (0.30833334, 0.93333334), (0.3, 0.93333334), (0.3, 0.9166667), (0.3, 0.9166667), (0.3, 0.93333334), (0.29166666, 0.93333334), (0.29166666, 0.9166667), (0.29166666, 0.9166667), (0.29166666, 0.93333334), (0.28333333, 0.93333334), (0.28333333, 0.9166667), (0.28333333, 0.9166667), (0.28333333, 0.93333334), (0.275, 0.93333334), (0.275, 0.9166667), (0.275, 0.9166667), (0.275, 0.93333334), (0.26666668, 0.93333334), (0.26666668, 0.9166667), (0.26666668, 0.9166667), (0.26666668, 0.93333334), (0.25833333, 0.93333334), (0.25833333, 0.9166667), (0.25833333, 0.9166667), (0.25833333, 0.93333334), (0.25, 0.93333334), (0.25, 0.9166667), (0.25, 0.9166667), (0.25, 0.93333334), (0.24166666, 0.93333334), (0.24166666, 0.9166667), (0.24166666, 0.9166667), (0.24166666, 0.93333334), (0.23333333, 0.93333334), (0.23333333, 0.9166667), (0.23333333, 0.9166667), (0.23333333, 0.93333334), (0.225, 0.93333334), (0.225, 0.9166667), (0.225, 0.9166667), (0.225, 0.93333334), (0.21666667, 0.93333334), (0.21666667, 0.9166667), (0.21666667, 0.9166667), (0.21666667, 0.93333334), (0.20833333, 0.93333334), (0.20833333, 0.9166667), (0.20833333, 0.9166667), (0.20833333, 0.93333334), (0.2, 0.93333334), (0.2, 0.9166667), (0.2, 0.9166667), (0.2, 0.93333334), (0.19166666, 0.93333334), (0.19166666, 0.9166667), (0.19166666, 0.9166667), (0.19166666, 0.93333334), (0.18333334, 0.93333334), (0.18333334, 0.9166667), (0.18333334, 0.9166667), (0.18333334, 0.93333334), (0.175, 0.93333334), (0.175, 0.9166667), (0.175, 0.9166667), (0.175, 0.93333334), (0.16666667, 0.93333334), (0.16666667, 0.9166667), (0.16666667, 0.9166667), (0.16666667, 0.93333334), (0.15833333, 0.93333334), (0.15833333, 0.9166667), (0.15833333, 0.9166667), (0.15833333, 0.93333334), (0.15, 0.93333334), (0.15, 0.9166667), (0.15, 0.9166667), (0.15, 0.93333334), (0.14166667, 0.93333334), (0.14166667, 0.9166667), (0.14166667, 0.9166667), (0.14166667, 0.93333334), (0.13333334, 0.93333334), (0.13333334, 0.9166667), (0.13333334, 0.9166667), (0.13333334, 0.93333334), (0.125, 0.93333334), (0.125, 0.9166667), (0.125, 0.9166667), (0.125, 0.93333334), (0.11666667, 0.93333334), (0.11666667, 0.9166667), (0.11666667, 0.9166667), (0.11666667, 0.93333334), (0.108333334, 0.93333334), (0.108333334, 0.9166667), (0.108333334, 0.9166667), (0.108333334, 0.93333334), (0.1, 0.93333334), (0.1, 0.9166667), (0.1, 0.9166667), (0.1, 0.93333334), (0.09166667, 0.93333334), (0.09166667, 0.9166667), (0.09166667, 0.9166667), (0.09166667, 0.93333334), (0.083333336, 0.93333334), (0.083333336, 0.9166667), (0.083333336, 0.9166667), (0.083333336, 0.93333334), (0.075, 0.93333334), (0.075, 0.9166667), (0.075, 0.9166667), (0.075, 0.93333334), (0.06666667, 0.93333334), (0.06666667, 0.9166667), (0.06666667, 0.9166667), (0.06666667, 0.93333334), (0.058333334, 0.93333334), (0.058333334, 0.9166667), (0.058333334, 0.9166667), (0.058333334, 0.93333334), (0.05, 0.93333334), (0.05, 0.9166667), (0.05, 0.9166667), (0.05, 0.93333334), (0.041666668, 0.93333334), (0.041666668, 0.9166667), (0.041666668, 0.9166667), (0.041666668, 0.93333334), (0.033333335, 0.93333334), (0.033333335, 0.9166667), (0.033333335, 0.9166667), (0.033333335, 0.93333334), (0.025, 0.93333334), (0.025, 0.9166667), (0.025, 0.9166667), (0.025, 0.93333334), (0.016666668, 0.93333334), (0.016666668, 0.9166667), (0.016666668, 0.9166667), (0.016666668, 0.93333334), (0.008333334, 0.93333334), (0.008333334, 0.9166667), (0.008333334, 0.9166667), (0.008333334, 0.93333334), (0, 0.93333334), (0, 0.9166667), (1, 0.93333334), (1, 0.95), (0.9916667, 0.95), (0.9916667, 0.93333334), (0.9916667, 0.93333334), (0.9916667, 0.95), (0.98333335, 0.95), (0.98333335, 0.93333334), (0.98333335, 0.93333334), (0.98333335, 0.95), (0.975, 0.95), (0.975, 0.93333334), (0.975, 0.93333334), (0.975, 0.95), (0.96666664, 0.95), (0.96666664, 0.93333334), (0.96666664, 0.93333334), (0.96666664, 0.95), (0.9583333, 0.95), (0.9583333, 0.93333334), (0.9583333, 0.93333334), (0.9583333, 0.95), (0.95, 0.95), (0.95, 0.93333334), (0.95, 0.93333334), (0.95, 0.95), (0.94166666, 0.95), (0.94166666, 0.93333334), (0.94166666, 0.93333334), (0.94166666, 0.95), (0.93333334, 0.95), (0.93333334, 0.93333334), (0.93333334, 0.93333334), (0.93333334, 0.95), (0.925, 0.95), (0.925, 0.93333334), (0.925, 0.93333334), (0.925, 0.95), (0.9166667, 0.95), (0.9166667, 0.93333334), (0.9166667, 0.93333334), (0.9166667, 0.95), (0.90833336, 0.95), (0.90833336, 0.93333334), (0.90833336, 0.93333334), (0.90833336, 0.95), (0.9, 0.95), (0.9, 0.93333334), (0.9, 0.93333334), (0.9, 0.95), (0.89166665, 0.95), (0.89166665, 0.93333334), (0.89166665, 0.93333334), (0.89166665, 0.95), (0.8833333, 0.95), (0.8833333, 0.93333334), (0.8833333, 0.93333334), (0.8833333, 0.95), (0.875, 0.95), (0.875, 0.93333334), (0.875, 0.93333334), (0.875, 0.95), (0.8666667, 0.95), (0.8666667, 0.93333334), (0.8666667, 0.93333334), (0.8666667, 0.95), (0.85833335, 0.95), (0.85833335, 0.93333334), (0.85833335, 0.93333334), (0.85833335, 0.95), (0.85, 0.95), (0.85, 0.93333334), (0.85, 0.93333334), (0.85, 0.95), (0.84166664, 0.95), (0.84166664, 0.93333334), (0.84166664, 0.93333334), (0.84166664, 0.95), (0.8333333, 0.95), (0.8333333, 0.93333334), (0.8333333, 0.93333334), (0.8333333, 0.95), (0.825, 0.95), (0.825, 0.93333334), (0.825, 0.93333334), (0.825, 0.95), (0.81666666, 0.95), (0.81666666, 0.93333334), (0.81666666, 0.93333334), (0.81666666, 0.95), (0.80833334, 0.95), (0.80833334, 0.93333334), (0.80833334, 0.93333334), (0.80833334, 0.95), (0.8, 0.95), (0.8, 0.93333334), (0.8, 0.93333334), (0.8, 0.95), (0.7916667, 0.95), (0.7916667, 0.93333334), (0.7916667, 0.93333334), (0.7916667, 0.95), (0.78333336, 0.95), (0.78333336, 0.93333334), (0.78333336, 0.93333334), (0.78333336, 0.95), (0.775, 0.95), (0.775, 0.93333334), (0.775, 0.93333334), (0.775, 0.95), (0.76666665, 0.95), (0.76666665, 0.93333334), (0.76666665, 0.93333334), (0.76666665, 0.95), (0.7583333, 0.95), (0.7583333, 0.93333334), (0.7583333, 0.93333334), (0.7583333, 0.95), (0.75, 0.95), (0.75, 0.93333334), (0.75, 0.93333334), (0.75, 0.95), (0.7416667, 0.95), (0.7416667, 0.93333334), (0.7416667, 0.93333334), (0.7416667, 0.95), (0.73333335, 0.95), (0.73333335, 0.93333334), (0.73333335, 0.93333334), (0.73333335, 0.95), (0.725, 0.95), (0.725, 0.93333334), (0.725, 0.93333334), (0.725, 0.95), (0.71666664, 0.95), (0.71666664, 0.93333334), (0.71666664, 0.93333334), (0.71666664, 0.95), (0.7083333, 0.95), (0.7083333, 0.93333334), (0.7083333, 0.93333334), (0.7083333, 0.95), (0.7, 0.95), (0.7, 0.93333334), (0.7, 0.93333334), (0.7, 0.95), (0.69166666, 0.95), (0.69166666, 0.93333334), (0.69166666, 0.93333334), (0.69166666, 0.95), (0.68333334, 0.95), (0.68333334, 0.93333334), (0.68333334, 0.93333334), (0.68333334, 0.95), (0.675, 0.95), (0.675, 0.93333334), (0.675, 0.93333334), (0.675, 0.95), (0.6666667, 0.95), (0.6666667, 0.93333334), (0.6666667, 0.93333334), (0.6666667, 0.95), (0.65833336, 0.95), (0.65833336, 0.93333334), (0.65833336, 0.93333334), (0.65833336, 0.95), (0.65, 0.95), (0.65, 0.93333334), (0.65, 0.93333334), (0.65, 0.95), (0.64166665, 0.95), (0.64166665, 0.93333334), (0.64166665, 0.93333334), (0.64166665, 0.95), (0.6333333, 0.95), (0.6333333, 0.93333334), (0.6333333, 0.93333334), (0.6333333, 0.95), (0.625, 0.95), (0.625, 0.93333334), (0.625, 0.93333334), (0.625, 0.95), (0.6166667, 0.95), (0.6166667, 0.93333334), (0.6166667, 0.93333334), (0.6166667, 0.95), (0.60833335, 0.95), (0.60833335, 0.93333334), (0.60833335, 0.93333334), (0.60833335, 0.95), (0.6, 0.95), (0.6, 0.93333334), (0.6, 0.93333334), (0.6, 0.95), (0.59166664, 0.95), (0.59166664, 0.93333334), (0.59166664, 0.93333334), (0.59166664, 0.95), (0.5833333, 0.95), (0.5833333, 0.93333334), (0.5833333, 0.93333334), (0.5833333, 0.95), (0.575, 0.95), (0.575, 0.93333334), (0.575, 0.93333334), (0.575, 0.95), (0.56666666, 0.95), (0.56666666, 0.93333334), (0.56666666, 0.93333334), (0.56666666, 0.95), (0.55833334, 0.95), (0.55833334, 0.93333334), (0.55833334, 0.93333334), (0.55833334, 0.95), (0.55, 0.95), (0.55, 0.93333334), (0.55, 0.93333334), (0.55, 0.95), (0.5416667, 0.95), (0.5416667, 0.93333334), (0.5416667, 0.93333334), (0.5416667, 0.95), (0.53333336, 0.95), (0.53333336, 0.93333334), (0.53333336, 0.93333334), (0.53333336, 0.95), (0.525, 0.95), (0.525, 0.93333334), (0.525, 0.93333334), (0.525, 0.95), (0.51666665, 0.95), (0.51666665, 0.93333334), (0.51666665, 0.93333334), (0.51666665, 0.95), (0.5083333, 0.95), (0.5083333, 0.93333334), (0.5083333, 0.93333334), (0.5083333, 0.95), (0.5, 0.95), (0.5, 0.93333334), (0.5, 0.93333334), (0.5, 0.95), (0.49166667, 0.95), (0.49166667, 0.93333334), (0.49166667, 0.93333334), (0.49166667, 0.95), (0.48333332, 0.95), (0.48333332, 0.93333334), (0.48333332, 0.93333334), (0.48333332, 0.95), (0.475, 0.95), (0.475, 0.93333334), (0.475, 0.93333334), (0.475, 0.95), (0.46666667, 0.95), (0.46666667, 0.93333334), (0.46666667, 0.93333334), (0.46666667, 0.95), (0.45833334, 0.95), (0.45833334, 0.93333334), (0.45833334, 0.93333334), (0.45833334, 0.95), (0.45, 0.95), (0.45, 0.93333334), (0.45, 0.93333334), (0.45, 0.95), (0.44166666, 0.95), (0.44166666, 0.93333334), (0.44166666, 0.93333334), (0.44166666, 0.95), (0.43333334, 0.95), (0.43333334, 0.93333334), (0.43333334, 0.93333334), (0.43333334, 0.95), (0.425, 0.95), (0.425, 0.93333334), (0.425, 0.93333334), (0.425, 0.95), (0.41666666, 0.95), (0.41666666, 0.93333334), (0.41666666, 0.93333334), (0.41666666, 0.95), (0.40833333, 0.95), (0.40833333, 0.93333334), (0.40833333, 0.93333334), (0.40833333, 0.95), (0.4, 0.95), (0.4, 0.93333334), (0.4, 0.93333334), (0.4, 0.95), (0.39166668, 0.95), (0.39166668, 0.93333334), (0.39166668, 0.93333334), (0.39166668, 0.95), (0.38333333, 0.95), (0.38333333, 0.93333334), (0.38333333, 0.93333334), (0.38333333, 0.95), (0.375, 0.95), (0.375, 0.93333334), (0.375, 0.93333334), (0.375, 0.95), (0.36666667, 0.95), (0.36666667, 0.93333334), (0.36666667, 0.93333334), (0.36666667, 0.95), (0.35833332, 0.95), (0.35833332, 0.93333334), (0.35833332, 0.93333334), (0.35833332, 0.95), (0.35, 0.95), (0.35, 0.93333334), (0.35, 0.93333334), (0.35, 0.95), (0.34166667, 0.95), (0.34166667, 0.93333334), (0.34166667, 0.93333334), (0.34166667, 0.95), (0.33333334, 0.95), (0.33333334, 0.93333334), (0.33333334, 0.93333334), (0.33333334, 0.95), (0.325, 0.95), (0.325, 0.93333334), (0.325, 0.93333334), (0.325, 0.95), (0.31666666, 0.95), (0.31666666, 0.93333334), (0.31666666, 0.93333334), (0.31666666, 0.95), (0.30833334, 0.95), (0.30833334, 0.93333334), (0.30833334, 0.93333334), (0.30833334, 0.95), (0.3, 0.95), (0.3, 0.93333334), (0.3, 0.93333334), (0.3, 0.95), (0.29166666, 0.95), (0.29166666, 0.93333334), (0.29166666, 0.93333334), (0.29166666, 0.95), (0.28333333, 0.95), (0.28333333, 0.93333334), (0.28333333, 0.93333334), (0.28333333, 0.95), (0.275, 0.95), (0.275, 0.93333334), (0.275, 0.93333334), (0.275, 0.95), (0.26666668, 0.95), (0.26666668, 0.93333334), (0.26666668, 0.93333334), (0.26666668, 0.95), (0.25833333, 0.95), (0.25833333, 0.93333334), (0.25833333, 0.93333334), (0.25833333, 0.95), (0.25, 0.95), (0.25, 0.93333334), (0.25, 0.93333334), (0.25, 0.95), (0.24166666, 0.95), (0.24166666, 0.93333334), (0.24166666, 0.93333334), (0.24166666, 0.95), (0.23333333, 0.95), (0.23333333, 0.93333334), (0.23333333, 0.93333334), (0.23333333, 0.95), (0.225, 0.95), (0.225, 0.93333334), (0.225, 0.93333334), (0.225, 0.95), (0.21666667, 0.95), (0.21666667, 0.93333334), (0.21666667, 0.93333334), (0.21666667, 0.95), (0.20833333, 0.95), (0.20833333, 0.93333334), (0.20833333, 0.93333334), (0.20833333, 0.95), (0.2, 0.95), (0.2, 0.93333334), (0.2, 0.93333334), (0.2, 0.95), (0.19166666, 0.95), (0.19166666, 0.93333334), (0.19166666, 0.93333334), (0.19166666, 0.95), (0.18333334, 0.95), (0.18333334, 0.93333334), (0.18333334, 0.93333334), (0.18333334, 0.95), (0.175, 0.95), (0.175, 0.93333334), (0.175, 0.93333334), (0.175, 0.95), (0.16666667, 0.95), (0.16666667, 0.93333334), (0.16666667, 0.93333334), (0.16666667, 0.95), (0.15833333, 0.95), (0.15833333, 0.93333334), (0.15833333, 0.93333334), (0.15833333, 0.95), (0.15, 0.95), (0.15, 0.93333334), (0.15, 0.93333334), (0.15, 0.95), (0.14166667, 0.95), (0.14166667, 0.93333334), (0.14166667, 0.93333334), (0.14166667, 0.95), (0.13333334, 0.95), (0.13333334, 0.93333334), (0.13333334, 0.93333334), (0.13333334, 0.95), (0.125, 0.95), (0.125, 0.93333334), (0.125, 0.93333334), (0.125, 0.95), (0.11666667, 0.95), (0.11666667, 0.93333334), (0.11666667, 0.93333334), (0.11666667, 0.95), (0.108333334, 0.95), (0.108333334, 0.93333334), (0.108333334, 0.93333334), (0.108333334, 0.95), (0.1, 0.95), (0.1, 0.93333334), (0.1, 0.93333334), (0.1, 0.95), (0.09166667, 0.95), (0.09166667, 0.93333334), (0.09166667, 0.93333334), (0.09166667, 0.95), (0.083333336, 0.95), (0.083333336, 0.93333334), (0.083333336, 0.93333334), (0.083333336, 0.95), (0.075, 0.95), (0.075, 0.93333334), (0.075, 0.93333334), (0.075, 0.95), (0.06666667, 0.95), (0.06666667, 0.93333334), (0.06666667, 0.93333334), (0.06666667, 0.95), (0.058333334, 0.95), (0.058333334, 0.93333334), (0.058333334, 0.93333334), (0.058333334, 0.95), (0.05, 0.95), (0.05, 0.93333334), (0.05, 0.93333334), (0.05, 0.95), (0.041666668, 0.95), (0.041666668, 0.93333334), (0.041666668, 0.93333334), (0.041666668, 0.95), (0.033333335, 0.95), (0.033333335, 0.93333334), (0.033333335, 0.93333334), (0.033333335, 0.95), (0.025, 0.95), (0.025, 0.93333334), (0.025, 0.93333334), (0.025, 0.95), (0.016666668, 0.95), (0.016666668, 0.93333334), (0.016666668, 0.93333334), (0.016666668, 0.95), (0.008333334, 0.95), (0.008333334, 0.93333334), (0.008333334, 0.93333334), (0.008333334, 0.95), (0, 0.95), (0, 0.93333334), (1, 0.95), (1, 0.96666664), (0.9916667, 0.96666664), (0.9916667, 0.95), (0.9916667, 0.95), (0.9916667, 0.96666664), (0.98333335, 0.96666664), (0.98333335, 0.95), (0.98333335, 0.95), (0.98333335, 0.96666664), (0.975, 0.96666664), (0.975, 0.95), (0.975, 0.95), (0.975, 0.96666664), (0.96666664, 0.96666664), (0.96666664, 0.95), (0.96666664, 0.95), (0.96666664, 0.96666664), (0.9583333, 0.96666664), (0.9583333, 0.95), (0.9583333, 0.95), (0.9583333, 0.96666664), (0.95, 0.96666664), (0.95, 0.95), (0.95, 0.95), (0.95, 0.96666664), (0.94166666, 0.96666664), (0.94166666, 0.95), (0.94166666, 0.95), (0.94166666, 0.96666664), (0.93333334, 0.96666664), (0.93333334, 0.95), (0.93333334, 0.95), (0.93333334, 0.96666664), (0.925, 0.96666664), (0.925, 0.95), (0.925, 0.95), (0.925, 0.96666664), (0.9166667, 0.96666664), (0.9166667, 0.95), (0.9166667, 0.95), (0.9166667, 0.96666664), (0.90833336, 0.96666664), (0.90833336, 0.95), (0.90833336, 0.95), (0.90833336, 0.96666664), (0.9, 0.96666664), (0.9, 0.95), (0.9, 0.95), (0.9, 0.96666664), (0.89166665, 0.96666664), (0.89166665, 0.95), (0.89166665, 0.95), (0.89166665, 0.96666664), (0.8833333, 0.96666664), (0.8833333, 0.95), (0.8833333, 0.95), (0.8833333, 0.96666664), (0.875, 0.96666664), (0.875, 0.95), (0.875, 0.95), (0.875, 0.96666664), (0.8666667, 0.96666664), (0.8666667, 0.95), (0.8666667, 0.95), (0.8666667, 0.96666664), (0.85833335, 0.96666664), (0.85833335, 0.95), (0.85833335, 0.95), (0.85833335, 0.96666664), (0.85, 0.96666664), (0.85, 0.95), (0.85, 0.95), (0.85, 0.96666664), (0.84166664, 0.96666664), (0.84166664, 0.95), (0.84166664, 0.95), (0.84166664, 0.96666664), (0.8333333, 0.96666664), (0.8333333, 0.95), (0.8333333, 0.95), (0.8333333, 0.96666664), (0.825, 0.96666664), (0.825, 0.95), (0.825, 0.95), (0.825, 0.96666664), (0.81666666, 0.96666664), (0.81666666, 0.95), (0.81666666, 0.95), (0.81666666, 0.96666664), (0.80833334, 0.96666664), (0.80833334, 0.95), (0.80833334, 0.95), (0.80833334, 0.96666664), (0.8, 0.96666664), (0.8, 0.95), (0.8, 0.95), (0.8, 0.96666664), (0.7916667, 0.96666664), (0.7916667, 0.95), (0.7916667, 0.95), (0.7916667, 0.96666664), (0.78333336, 0.96666664), (0.78333336, 0.95), (0.78333336, 0.95), (0.78333336, 0.96666664), (0.775, 0.96666664), (0.775, 0.95), (0.775, 0.95), (0.775, 0.96666664), (0.76666665, 0.96666664), (0.76666665, 0.95), (0.76666665, 0.95), (0.76666665, 0.96666664), (0.7583333, 0.96666664), (0.7583333, 0.95), (0.7583333, 0.95), (0.7583333, 0.96666664), (0.75, 0.96666664), (0.75, 0.95), (0.75, 0.95), (0.75, 0.96666664), (0.7416667, 0.96666664), (0.7416667, 0.95), (0.7416667, 0.95), (0.7416667, 0.96666664), (0.73333335, 0.96666664), (0.73333335, 0.95), (0.73333335, 0.95), (0.73333335, 0.96666664), (0.725, 0.96666664), (0.725, 0.95), (0.725, 0.95), (0.725, 0.96666664), (0.71666664, 0.96666664), (0.71666664, 0.95), (0.71666664, 0.95), (0.71666664, 0.96666664), (0.7083333, 0.96666664), (0.7083333, 0.95), (0.7083333, 0.95), (0.7083333, 0.96666664), (0.7, 0.96666664), (0.7, 0.95), (0.7, 0.95), (0.7, 0.96666664), (0.69166666, 0.96666664), (0.69166666, 0.95), (0.69166666, 0.95), (0.69166666, 0.96666664), (0.68333334, 0.96666664), (0.68333334, 0.95), (0.68333334, 0.95), (0.68333334, 0.96666664), (0.675, 0.96666664), (0.675, 0.95), (0.675, 0.95), (0.675, 0.96666664), (0.6666667, 0.96666664), (0.6666667, 0.95), (0.6666667, 0.95), (0.6666667, 0.96666664), (0.65833336, 0.96666664), (0.65833336, 0.95), (0.65833336, 0.95), (0.65833336, 0.96666664), (0.65, 0.96666664), (0.65, 0.95), (0.65, 0.95), (0.65, 0.96666664), (0.64166665, 0.96666664), (0.64166665, 0.95), (0.64166665, 0.95), (0.64166665, 0.96666664), (0.6333333, 0.96666664), (0.6333333, 0.95), (0.6333333, 0.95), (0.6333333, 0.96666664), (0.625, 0.96666664), (0.625, 0.95), (0.625, 0.95), (0.625, 0.96666664), (0.6166667, 0.96666664), (0.6166667, 0.95), (0.6166667, 0.95), (0.6166667, 0.96666664), (0.60833335, 0.96666664), (0.60833335, 0.95), (0.60833335, 0.95), (0.60833335, 0.96666664), (0.6, 0.96666664), (0.6, 0.95), (0.6, 0.95), (0.6, 0.96666664), (0.59166664, 0.96666664), (0.59166664, 0.95), (0.59166664, 0.95), (0.59166664, 0.96666664), (0.5833333, 0.96666664), (0.5833333, 0.95), (0.5833333, 0.95), (0.5833333, 0.96666664), (0.575, 0.96666664), (0.575, 0.95), (0.575, 0.95), (0.575, 0.96666664), (0.56666666, 0.96666664), (0.56666666, 0.95), (0.56666666, 0.95), (0.56666666, 0.96666664), (0.55833334, 0.96666664), (0.55833334, 0.95), (0.55833334, 0.95), (0.55833334, 0.96666664), (0.55, 0.96666664), (0.55, 0.95), (0.55, 0.95), (0.55, 0.96666664), (0.5416667, 0.96666664), (0.5416667, 0.95), (0.5416667, 0.95), (0.5416667, 0.96666664), (0.53333336, 0.96666664), (0.53333336, 0.95), (0.53333336, 0.95), (0.53333336, 0.96666664), (0.525, 0.96666664), (0.525, 0.95), (0.525, 0.95), (0.525, 0.96666664), (0.51666665, 0.96666664), (0.51666665, 0.95), (0.51666665, 0.95), (0.51666665, 0.96666664), (0.5083333, 0.96666664), (0.5083333, 0.95), (0.5083333, 0.95), (0.5083333, 0.96666664), (0.5, 0.96666664), (0.5, 0.95), (0.5, 0.95), (0.5, 0.96666664), (0.49166667, 0.96666664), (0.49166667, 0.95), (0.49166667, 0.95), (0.49166667, 0.96666664), (0.48333332, 0.96666664), (0.48333332, 0.95), (0.48333332, 0.95), (0.48333332, 0.96666664), (0.475, 0.96666664), (0.475, 0.95), (0.475, 0.95), (0.475, 0.96666664), (0.46666667, 0.96666664), (0.46666667, 0.95), (0.46666667, 0.95), (0.46666667, 0.96666664), (0.45833334, 0.96666664), (0.45833334, 0.95), (0.45833334, 0.95), (0.45833334, 0.96666664), (0.45, 0.96666664), (0.45, 0.95), (0.45, 0.95), (0.45, 0.96666664), (0.44166666, 0.96666664), (0.44166666, 0.95), (0.44166666, 0.95), (0.44166666, 0.96666664), (0.43333334, 0.96666664), (0.43333334, 0.95), (0.43333334, 0.95), (0.43333334, 0.96666664), (0.425, 0.96666664), (0.425, 0.95), (0.425, 0.95), (0.425, 0.96666664), (0.41666666, 0.96666664), (0.41666666, 0.95), (0.41666666, 0.95), (0.41666666, 0.96666664), (0.40833333, 0.96666664), (0.40833333, 0.95), (0.40833333, 0.95), (0.40833333, 0.96666664), (0.4, 0.96666664), (0.4, 0.95), (0.4, 0.95), (0.4, 0.96666664), (0.39166668, 0.96666664), (0.39166668, 0.95), (0.39166668, 0.95), (0.39166668, 0.96666664), (0.38333333, 0.96666664), (0.38333333, 0.95), (0.38333333, 0.95), (0.38333333, 0.96666664), (0.375, 0.96666664), (0.375, 0.95), (0.375, 0.95), (0.375, 0.96666664), (0.36666667, 0.96666664), (0.36666667, 0.95), (0.36666667, 0.95), (0.36666667, 0.96666664), (0.35833332, 0.96666664), (0.35833332, 0.95), (0.35833332, 0.95), (0.35833332, 0.96666664), (0.35, 0.96666664), (0.35, 0.95), (0.35, 0.95), (0.35, 0.96666664), (0.34166667, 0.96666664), (0.34166667, 0.95), (0.34166667, 0.95), (0.34166667, 0.96666664), (0.33333334, 0.96666664), (0.33333334, 0.95), (0.33333334, 0.95), (0.33333334, 0.96666664), (0.325, 0.96666664), (0.325, 0.95), (0.325, 0.95), (0.325, 0.96666664), (0.31666666, 0.96666664), (0.31666666, 0.95), (0.31666666, 0.95), (0.31666666, 0.96666664), (0.30833334, 0.96666664), (0.30833334, 0.95), (0.30833334, 0.95), (0.30833334, 0.96666664), (0.3, 0.96666664), (0.3, 0.95), (0.3, 0.95), (0.3, 0.96666664), (0.29166666, 0.96666664), (0.29166666, 0.95), (0.29166666, 0.95), (0.29166666, 0.96666664), (0.28333333, 0.96666664), (0.28333333, 0.95), (0.28333333, 0.95), (0.28333333, 0.96666664), (0.275, 0.96666664), (0.275, 0.95), (0.275, 0.95), (0.275, 0.96666664), (0.26666668, 0.96666664), (0.26666668, 0.95), (0.26666668, 0.95), (0.26666668, 0.96666664), (0.25833333, 0.96666664), (0.25833333, 0.95), (0.25833333, 0.95), (0.25833333, 0.96666664), (0.25, 0.96666664), (0.25, 0.95), (0.25, 0.95), (0.25, 0.96666664), (0.24166666, 0.96666664), (0.24166666, 0.95), (0.24166666, 0.95), (0.24166666, 0.96666664), (0.23333333, 0.96666664), (0.23333333, 0.95), (0.23333333, 0.95), (0.23333333, 0.96666664), (0.225, 0.96666664), (0.225, 0.95), (0.225, 0.95), (0.225, 0.96666664), (0.21666667, 0.96666664), (0.21666667, 0.95), (0.21666667, 0.95), (0.21666667, 0.96666664), (0.20833333, 0.96666664), (0.20833333, 0.95), (0.20833333, 0.95), (0.20833333, 0.96666664), (0.2, 0.96666664), (0.2, 0.95), (0.2, 0.95), (0.2, 0.96666664), (0.19166666, 0.96666664), (0.19166666, 0.95), (0.19166666, 0.95), (0.19166666, 0.96666664), (0.18333334, 0.96666664), (0.18333334, 0.95), (0.18333334, 0.95), (0.18333334, 0.96666664), (0.175, 0.96666664), (0.175, 0.95), (0.175, 0.95), (0.175, 0.96666664), (0.16666667, 0.96666664), (0.16666667, 0.95), (0.16666667, 0.95), (0.16666667, 0.96666664), (0.15833333, 0.96666664), (0.15833333, 0.95), (0.15833333, 0.95), (0.15833333, 0.96666664), (0.15, 0.96666664), (0.15, 0.95), (0.15, 0.95), (0.15, 0.96666664), (0.14166667, 0.96666664), (0.14166667, 0.95), (0.14166667, 0.95), (0.14166667, 0.96666664), (0.13333334, 0.96666664), (0.13333334, 0.95), (0.13333334, 0.95), (0.13333334, 0.96666664), (0.125, 0.96666664), (0.125, 0.95), (0.125, 0.95), (0.125, 0.96666664), (0.11666667, 0.96666664), (0.11666667, 0.95), (0.11666667, 0.95), (0.11666667, 0.96666664), (0.108333334, 0.96666664), (0.108333334, 0.95), (0.108333334, 0.95), (0.108333334, 0.96666664), (0.1, 0.96666664), (0.1, 0.95), (0.1, 0.95), (0.1, 0.96666664), (0.09166667, 0.96666664), (0.09166667, 0.95), (0.09166667, 0.95), (0.09166667, 0.96666664), (0.083333336, 0.96666664), (0.083333336, 0.95), (0.083333336, 0.95), (0.083333336, 0.96666664), (0.075, 0.96666664), (0.075, 0.95), (0.075, 0.95), (0.075, 0.96666664), (0.06666667, 0.96666664), (0.06666667, 0.95), (0.06666667, 0.95), (0.06666667, 0.96666664), (0.058333334, 0.96666664), (0.058333334, 0.95), (0.058333334, 0.95), (0.058333334, 0.96666664), (0.05, 0.96666664), (0.05, 0.95), (0.05, 0.95), (0.05, 0.96666664), (0.041666668, 0.96666664), (0.041666668, 0.95), (0.041666668, 0.95), (0.041666668, 0.96666664), (0.033333335, 0.96666664), (0.033333335, 0.95), (0.033333335, 0.95), (0.033333335, 0.96666664), (0.025, 0.96666664), (0.025, 0.95), (0.025, 0.95), (0.025, 0.96666664), (0.016666668, 0.96666664), (0.016666668, 0.95), (0.016666668, 0.95), (0.016666668, 0.96666664), (0.008333334, 0.96666664), (0.008333334, 0.95), (0.008333334, 0.95), (0.008333334, 0.96666664), (0, 0.96666664), (0, 0.95), (1, 0.96666664), (1, 0.98333335), (0.9916667, 0.98333335), (0.9916667, 0.96666664), (0.9916667, 0.96666664), (0.9916667, 0.98333335), (0.98333335, 0.98333335), (0.98333335, 0.96666664), (0.98333335, 0.96666664), (0.98333335, 0.98333335), (0.975, 0.98333335), (0.975, 0.96666664), (0.975, 0.96666664), (0.975, 0.98333335), (0.96666664, 0.98333335), (0.96666664, 0.96666664), (0.96666664, 0.96666664), (0.96666664, 0.98333335), (0.9583333, 0.98333335), (0.9583333, 0.96666664), (0.9583333, 0.96666664), (0.9583333, 0.98333335), (0.95, 0.98333335), (0.95, 0.96666664), (0.95, 0.96666664), (0.95, 0.98333335), (0.94166666, 0.98333335), (0.94166666, 0.96666664), (0.94166666, 0.96666664), (0.94166666, 0.98333335), (0.93333334, 0.98333335), (0.93333334, 0.96666664), (0.93333334, 0.96666664), (0.93333334, 0.98333335), (0.925, 0.98333335), (0.925, 0.96666664), (0.925, 0.96666664), (0.925, 0.98333335), (0.9166667, 0.98333335), (0.9166667, 0.96666664), (0.9166667, 0.96666664), (0.9166667, 0.98333335), (0.90833336, 0.98333335), (0.90833336, 0.96666664), (0.90833336, 0.96666664), (0.90833336, 0.98333335), (0.9, 0.98333335), (0.9, 0.96666664), (0.9, 0.96666664), (0.9, 0.98333335), (0.89166665, 0.98333335), (0.89166665, 0.96666664), (0.89166665, 0.96666664), (0.89166665, 0.98333335), (0.8833333, 0.98333335), (0.8833333, 0.96666664), (0.8833333, 0.96666664), (0.8833333, 0.98333335), (0.875, 0.98333335), (0.875, 0.96666664), (0.875, 0.96666664), (0.875, 0.98333335), (0.8666667, 0.98333335), (0.8666667, 0.96666664), (0.8666667, 0.96666664), (0.8666667, 0.98333335), (0.85833335, 0.98333335), (0.85833335, 0.96666664), (0.85833335, 0.96666664), (0.85833335, 0.98333335), (0.85, 0.98333335), (0.85, 0.96666664), (0.85, 0.96666664), (0.85, 0.98333335), (0.84166664, 0.98333335), (0.84166664, 0.96666664), (0.84166664, 0.96666664), (0.84166664, 0.98333335), (0.8333333, 0.98333335), (0.8333333, 0.96666664), (0.8333333, 0.96666664), (0.8333333, 0.98333335), (0.825, 0.98333335), (0.825, 0.96666664), (0.825, 0.96666664), (0.825, 0.98333335), (0.81666666, 0.98333335), (0.81666666, 0.96666664), (0.81666666, 0.96666664), (0.81666666, 0.98333335), (0.80833334, 0.98333335), (0.80833334, 0.96666664), (0.80833334, 0.96666664), (0.80833334, 0.98333335), (0.8, 0.98333335), (0.8, 0.96666664), (0.8, 0.96666664), (0.8, 0.98333335), (0.7916667, 0.98333335), (0.7916667, 0.96666664), (0.7916667, 0.96666664), (0.7916667, 0.98333335), (0.78333336, 0.98333335), (0.78333336, 0.96666664), (0.78333336, 0.96666664), (0.78333336, 0.98333335), (0.775, 0.98333335), (0.775, 0.96666664), (0.775, 0.96666664), (0.775, 0.98333335), (0.76666665, 0.98333335), (0.76666665, 0.96666664), (0.76666665, 0.96666664), (0.76666665, 0.98333335), (0.7583333, 0.98333335), (0.7583333, 0.96666664), (0.7583333, 0.96666664), (0.7583333, 0.98333335), (0.75, 0.98333335), (0.75, 0.96666664), (0.75, 0.96666664), (0.75, 0.98333335), (0.7416667, 0.98333335), (0.7416667, 0.96666664), (0.7416667, 0.96666664), (0.7416667, 0.98333335), (0.73333335, 0.98333335), (0.73333335, 0.96666664), (0.73333335, 0.96666664), (0.73333335, 0.98333335), (0.725, 0.98333335), (0.725, 0.96666664), (0.725, 0.96666664), (0.725, 0.98333335), (0.71666664, 0.98333335), (0.71666664, 0.96666664), (0.71666664, 0.96666664), (0.71666664, 0.98333335), (0.7083333, 0.98333335), (0.7083333, 0.96666664), (0.7083333, 0.96666664), (0.7083333, 0.98333335), (0.7, 0.98333335), (0.7, 0.96666664), (0.7, 0.96666664), (0.7, 0.98333335), (0.69166666, 0.98333335), (0.69166666, 0.96666664), (0.69166666, 0.96666664), (0.69166666, 0.98333335), (0.68333334, 0.98333335), (0.68333334, 0.96666664), (0.68333334, 0.96666664), (0.68333334, 0.98333335), (0.675, 0.98333335), (0.675, 0.96666664), (0.675, 0.96666664), (0.675, 0.98333335), (0.6666667, 0.98333335), (0.6666667, 0.96666664), (0.6666667, 0.96666664), (0.6666667, 0.98333335), (0.65833336, 0.98333335), (0.65833336, 0.96666664), (0.65833336, 0.96666664), (0.65833336, 0.98333335), (0.65, 0.98333335), (0.65, 0.96666664), (0.65, 0.96666664), (0.65, 0.98333335), (0.64166665, 0.98333335), (0.64166665, 0.96666664), (0.64166665, 0.96666664), (0.64166665, 0.98333335), (0.6333333, 0.98333335), (0.6333333, 0.96666664), (0.6333333, 0.96666664), (0.6333333, 0.98333335), (0.625, 0.98333335), (0.625, 0.96666664), (0.625, 0.96666664), (0.625, 0.98333335), (0.6166667, 0.98333335), (0.6166667, 0.96666664), (0.6166667, 0.96666664), (0.6166667, 0.98333335), (0.60833335, 0.98333335), (0.60833335, 0.96666664), (0.60833335, 0.96666664), (0.60833335, 0.98333335), (0.6, 0.98333335), (0.6, 0.96666664), (0.6, 0.96666664), (0.6, 0.98333335), (0.59166664, 0.98333335), (0.59166664, 0.96666664), (0.59166664, 0.96666664), (0.59166664, 0.98333335), (0.5833333, 0.98333335), (0.5833333, 0.96666664), (0.5833333, 0.96666664), (0.5833333, 0.98333335), (0.575, 0.98333335), (0.575, 0.96666664), (0.575, 0.96666664), (0.575, 0.98333335), (0.56666666, 0.98333335), (0.56666666, 0.96666664), (0.56666666, 0.96666664), (0.56666666, 0.98333335), (0.55833334, 0.98333335), (0.55833334, 0.96666664), (0.55833334, 0.96666664), (0.55833334, 0.98333335), (0.55, 0.98333335), (0.55, 0.96666664), (0.55, 0.96666664), (0.55, 0.98333335), (0.5416667, 0.98333335), (0.5416667, 0.96666664), (0.5416667, 0.96666664), (0.5416667, 0.98333335), (0.53333336, 0.98333335), (0.53333336, 0.96666664), (0.53333336, 0.96666664), (0.53333336, 0.98333335), (0.525, 0.98333335), (0.525, 0.96666664), (0.525, 0.96666664), (0.525, 0.98333335), (0.51666665, 0.98333335), (0.51666665, 0.96666664), (0.51666665, 0.96666664), (0.51666665, 0.98333335), (0.5083333, 0.98333335), (0.5083333, 0.96666664), (0.5083333, 0.96666664), (0.5083333, 0.98333335), (0.5, 0.98333335), (0.5, 0.96666664), (0.5, 0.96666664), (0.5, 0.98333335), (0.49166667, 0.98333335), (0.49166667, 0.96666664), (0.49166667, 0.96666664), (0.49166667, 0.98333335), (0.48333332, 0.98333335), (0.48333332, 0.96666664), (0.48333332, 0.96666664), (0.48333332, 0.98333335), (0.475, 0.98333335), (0.475, 0.96666664), (0.475, 0.96666664), (0.475, 0.98333335), (0.46666667, 0.98333335), (0.46666667, 0.96666664), (0.46666667, 0.96666664), (0.46666667, 0.98333335), (0.45833334, 0.98333335), (0.45833334, 0.96666664), (0.45833334, 0.96666664), (0.45833334, 0.98333335), (0.45, 0.98333335), (0.45, 0.96666664), (0.45, 0.96666664), (0.45, 0.98333335), (0.44166666, 0.98333335), (0.44166666, 0.96666664), (0.44166666, 0.96666664), (0.44166666, 0.98333335), (0.43333334, 0.98333335), (0.43333334, 0.96666664), (0.43333334, 0.96666664), (0.43333334, 0.98333335), (0.425, 0.98333335), (0.425, 0.96666664), (0.425, 0.96666664), (0.425, 0.98333335), (0.41666666, 0.98333335), (0.41666666, 0.96666664), (0.41666666, 0.96666664), (0.41666666, 0.98333335), (0.40833333, 0.98333335), (0.40833333, 0.96666664), (0.40833333, 0.96666664), (0.40833333, 0.98333335), (0.4, 0.98333335), (0.4, 0.96666664), (0.4, 0.96666664), (0.4, 0.98333335), (0.39166668, 0.98333335), (0.39166668, 0.96666664), (0.39166668, 0.96666664), (0.39166668, 0.98333335), (0.38333333, 0.98333335), (0.38333333, 0.96666664), (0.38333333, 0.96666664), (0.38333333, 0.98333335), (0.375, 0.98333335), (0.375, 0.96666664), (0.375, 0.96666664), (0.375, 0.98333335), (0.36666667, 0.98333335), (0.36666667, 0.96666664), (0.36666667, 0.96666664), (0.36666667, 0.98333335), (0.35833332, 0.98333335), (0.35833332, 0.96666664), (0.35833332, 0.96666664), (0.35833332, 0.98333335), (0.35, 0.98333335), (0.35, 0.96666664), (0.35, 0.96666664), (0.35, 0.98333335), (0.34166667, 0.98333335), (0.34166667, 0.96666664), (0.34166667, 0.96666664), (0.34166667, 0.98333335), (0.33333334, 0.98333335), (0.33333334, 0.96666664), (0.33333334, 0.96666664), (0.33333334, 0.98333335), (0.325, 0.98333335), (0.325, 0.96666664), (0.325, 0.96666664), (0.325, 0.98333335), (0.31666666, 0.98333335), (0.31666666, 0.96666664), (0.31666666, 0.96666664), (0.31666666, 0.98333335), (0.30833334, 0.98333335), (0.30833334, 0.96666664), (0.30833334, 0.96666664), (0.30833334, 0.98333335), (0.3, 0.98333335), (0.3, 0.96666664), (0.3, 0.96666664), (0.3, 0.98333335), (0.29166666, 0.98333335), (0.29166666, 0.96666664), (0.29166666, 0.96666664), (0.29166666, 0.98333335), (0.28333333, 0.98333335), (0.28333333, 0.96666664), (0.28333333, 0.96666664), (0.28333333, 0.98333335), (0.275, 0.98333335), (0.275, 0.96666664), (0.275, 0.96666664), (0.275, 0.98333335), (0.26666668, 0.98333335), (0.26666668, 0.96666664), (0.26666668, 0.96666664), (0.26666668, 0.98333335), (0.25833333, 0.98333335), (0.25833333, 0.96666664), (0.25833333, 0.96666664), (0.25833333, 0.98333335), (0.25, 0.98333335), (0.25, 0.96666664), (0.25, 0.96666664), (0.25, 0.98333335), (0.24166666, 0.98333335), (0.24166666, 0.96666664), (0.24166666, 0.96666664), (0.24166666, 0.98333335), (0.23333333, 0.98333335), (0.23333333, 0.96666664), (0.23333333, 0.96666664), (0.23333333, 0.98333335), (0.225, 0.98333335), (0.225, 0.96666664), (0.225, 0.96666664), (0.225, 0.98333335), (0.21666667, 0.98333335), (0.21666667, 0.96666664), (0.21666667, 0.96666664), (0.21666667, 0.98333335), (0.20833333, 0.98333335), (0.20833333, 0.96666664), (0.20833333, 0.96666664), (0.20833333, 0.98333335), (0.2, 0.98333335), (0.2, 0.96666664), (0.2, 0.96666664), (0.2, 0.98333335), (0.19166666, 0.98333335), (0.19166666, 0.96666664), (0.19166666, 0.96666664), (0.19166666, 0.98333335), (0.18333334, 0.98333335), (0.18333334, 0.96666664), (0.18333334, 0.96666664), (0.18333334, 0.98333335), (0.175, 0.98333335), (0.175, 0.96666664), (0.175, 0.96666664), (0.175, 0.98333335), (0.16666667, 0.98333335), (0.16666667, 0.96666664), (0.16666667, 0.96666664), (0.16666667, 0.98333335), (0.15833333, 0.98333335), (0.15833333, 0.96666664), (0.15833333, 0.96666664), (0.15833333, 0.98333335), (0.15, 0.98333335), (0.15, 0.96666664), (0.15, 0.96666664), (0.15, 0.98333335), (0.14166667, 0.98333335), (0.14166667, 0.96666664), (0.14166667, 0.96666664), (0.14166667, 0.98333335), (0.13333334, 0.98333335), (0.13333334, 0.96666664), (0.13333334, 0.96666664), (0.13333334, 0.98333335), (0.125, 0.98333335), (0.125, 0.96666664), (0.125, 0.96666664), (0.125, 0.98333335), (0.11666667, 0.98333335), (0.11666667, 0.96666664), (0.11666667, 0.96666664), (0.11666667, 0.98333335), (0.108333334, 0.98333335), (0.108333334, 0.96666664), (0.108333334, 0.96666664), (0.108333334, 0.98333335), (0.1, 0.98333335), (0.1, 0.96666664), (0.1, 0.96666664), (0.1, 0.98333335), (0.09166667, 0.98333335), (0.09166667, 0.96666664), (0.09166667, 0.96666664), (0.09166667, 0.98333335), (0.083333336, 0.98333335), (0.083333336, 0.96666664), (0.083333336, 0.96666664), (0.083333336, 0.98333335), (0.075, 0.98333335), (0.075, 0.96666664), (0.075, 0.96666664), (0.075, 0.98333335), (0.06666667, 0.98333335), (0.06666667, 0.96666664), (0.06666667, 0.96666664), (0.06666667, 0.98333335), (0.058333334, 0.98333335), (0.058333334, 0.96666664), (0.058333334, 0.96666664), (0.058333334, 0.98333335), (0.05, 0.98333335), (0.05, 0.96666664), (0.05, 0.96666664), (0.05, 0.98333335), (0.041666668, 0.98333335), (0.041666668, 0.96666664), (0.041666668, 0.96666664), (0.041666668, 0.98333335), (0.033333335, 0.98333335), (0.033333335, 0.96666664), (0.033333335, 0.96666664), (0.033333335, 0.98333335), (0.025, 0.98333335), (0.025, 0.96666664), (0.025, 0.96666664), (0.025, 0.98333335), (0.016666668, 0.98333335), (0.016666668, 0.96666664), (0.016666668, 0.96666664), (0.016666668, 0.98333335), (0.008333334, 0.98333335), (0.008333334, 0.96666664), (0.008333334, 0.96666664), (0.008333334, 0.98333335), (0, 0.98333335), (0, 0.96666664), (0.5, 1), (0.9916667, 0.98333335), (1, 0.98333335), (0.5, 1), (0.98333335, 0.98333335), (0.9916667, 0.98333335), (0.5, 1), (0.975, 0.98333335), (0.98333335, 0.98333335), (0.5, 1), (0.96666664, 0.98333335), (0.975, 0.98333335), (0.5, 1), (0.9583333, 0.98333335), (0.96666664, 0.98333335), (0.5, 1), (0.95, 0.98333335), (0.9583333, 0.98333335), (0.5, 1), (0.94166666, 0.98333335), (0.95, 0.98333335), (0.5, 1), (0.93333334, 0.98333335), (0.94166666, 0.98333335), (0.5, 1), (0.925, 0.98333335), (0.93333334, 0.98333335), (0.5, 1), (0.9166667, 0.98333335), (0.925, 0.98333335), (0.5, 1), (0.90833336, 0.98333335), (0.9166667, 0.98333335), (0.5, 1), (0.9, 0.98333335), (0.90833336, 0.98333335), (0.5, 1), (0.89166665, 0.98333335), (0.9, 0.98333335), (0.5, 1), (0.8833333, 0.98333335), (0.89166665, 0.98333335), (0.5, 1), (0.875, 0.98333335), (0.8833333, 0.98333335), (0.5, 1), (0.8666667, 0.98333335), (0.875, 0.98333335), (0.5, 1), (0.85833335, 0.98333335), (0.8666667, 0.98333335), (0.5, 1), (0.85, 0.98333335), (0.85833335, 0.98333335), (0.5, 1), (0.84166664, 0.98333335), (0.85, 0.98333335), (0.5, 1), (0.8333333, 0.98333335), (0.84166664, 0.98333335), (0.5, 1), (0.825, 0.98333335), (0.8333333, 0.98333335), (0.5, 1), (0.81666666, 0.98333335), (0.825, 0.98333335), (0.5, 1), (0.80833334, 0.98333335), (0.81666666, 0.98333335), (0.5, 1), (0.8, 0.98333335), (0.80833334, 0.98333335), (0.5, 1), (0.7916667, 0.98333335), (0.8, 0.98333335), (0.5, 1), (0.78333336, 0.98333335), (0.7916667, 0.98333335), (0.5, 1), (0.775, 0.98333335), (0.78333336, 0.98333335), (0.5, 1), (0.76666665, 0.98333335), (0.775, 0.98333335), (0.5, 1), (0.7583333, 0.98333335), (0.76666665, 0.98333335), (0.5, 1), (0.75, 0.98333335), (0.7583333, 0.98333335), (0.5, 1), (0.7416667, 0.98333335), (0.75, 0.98333335), (0.5, 1), (0.73333335, 0.98333335), (0.7416667, 0.98333335), (0.5, 1), (0.725, 0.98333335), (0.73333335, 0.98333335), (0.5, 1), (0.71666664, 0.98333335), (0.725, 0.98333335), (0.5, 1), (0.7083333, 0.98333335), (0.71666664, 0.98333335), (0.5, 1), (0.7, 0.98333335), (0.7083333, 0.98333335), (0.5, 1), (0.69166666, 0.98333335), (0.7, 0.98333335), (0.5, 1), (0.68333334, 0.98333335), (0.69166666, 0.98333335), (0.5, 1), (0.675, 0.98333335), (0.68333334, 0.98333335), (0.5, 1), (0.6666667, 0.98333335), (0.675, 0.98333335), (0.5, 1), (0.65833336, 0.98333335), (0.6666667, 0.98333335), (0.5, 1), (0.65, 0.98333335), (0.65833336, 0.98333335), (0.5, 1), (0.64166665, 0.98333335), (0.65, 0.98333335), (0.5, 1), (0.6333333, 0.98333335), (0.64166665, 0.98333335), (0.5, 1), (0.625, 0.98333335), (0.6333333, 0.98333335), (0.5, 1), (0.6166667, 0.98333335), (0.625, 0.98333335), (0.5, 1), (0.60833335, 0.98333335), (0.6166667, 0.98333335), (0.5, 1), (0.6, 0.98333335), (0.60833335, 0.98333335), (0.5, 1), (0.59166664, 0.98333335), (0.6, 0.98333335), (0.5, 1), (0.5833333, 0.98333335), (0.59166664, 0.98333335), (0.5, 1), (0.575, 0.98333335), (0.5833333, 0.98333335), (0.5, 1), (0.56666666, 0.98333335), (0.575, 0.98333335), (0.5, 1), (0.55833334, 0.98333335), (0.56666666, 0.98333335), (0.5, 1), (0.55, 0.98333335), (0.55833334, 0.98333335), (0.5, 1), (0.5416667, 0.98333335), (0.55, 0.98333335), (0.5, 1), (0.53333336, 0.98333335), (0.5416667, 0.98333335), (0.5, 1), (0.525, 0.98333335), (0.53333336, 0.98333335), (0.5, 1), (0.51666665, 0.98333335), (0.525, 0.98333335), (0.5, 1), (0.5083333, 0.98333335), (0.51666665, 0.98333335), (0.5, 1), (0.5, 0.98333335), (0.5083333, 0.98333335), (0.5, 1), (0.49166667, 0.98333335), (0.5, 0.98333335), (0.5, 1), (0.48333332, 0.98333335), (0.49166667, 0.98333335), (0.5, 1), (0.475, 0.98333335), (0.48333332, 0.98333335), (0.5, 1), (0.46666667, 0.98333335), (0.475, 0.98333335), (0.5, 1), (0.45833334, 0.98333335), (0.46666667, 0.98333335), (0.5, 1), (0.45, 0.98333335), (0.45833334, 0.98333335), (0.5, 1), (0.44166666, 0.98333335), (0.45, 0.98333335), (0.5, 1), (0.43333334, 0.98333335), (0.44166666, 0.98333335), (0.5, 1), (0.425, 0.98333335), (0.43333334, 0.98333335), (0.5, 1), (0.41666666, 0.98333335), (0.425, 0.98333335), (0.5, 1), (0.40833333, 0.98333335), (0.41666666, 0.98333335), (0.5, 1), (0.4, 0.98333335), (0.40833333, 0.98333335), (0.5, 1), (0.39166668, 0.98333335), (0.4, 0.98333335), (0.5, 1), (0.38333333, 0.98333335), (0.39166668, 0.98333335), (0.5, 1), (0.375, 0.98333335), (0.38333333, 0.98333335), (0.5, 1), (0.36666667, 0.98333335), (0.375, 0.98333335), (0.5, 1), (0.35833332, 0.98333335), (0.36666667, 0.98333335), (0.5, 1), (0.35, 0.98333335), (0.35833332, 0.98333335), (0.5, 1), (0.34166667, 0.98333335), (0.35, 0.98333335), (0.5, 1), (0.33333334, 0.98333335), (0.34166667, 0.98333335), (0.5, 1), (0.325, 0.98333335), (0.33333334, 0.98333335), (0.5, 1), (0.31666666, 0.98333335), (0.325, 0.98333335), (0.5, 1), (0.30833334, 0.98333335), (0.31666666, 0.98333335), (0.5, 1), (0.3, 0.98333335), (0.30833334, 0.98333335), (0.5, 1), (0.29166666, 0.98333335), (0.3, 0.98333335), (0.5, 1), (0.28333333, 0.98333335), (0.29166666, 0.98333335), (0.5, 1), (0.275, 0.98333335), (0.28333333, 0.98333335), (0.5, 1), (0.26666668, 0.98333335), (0.275, 0.98333335), (0.5, 1), (0.25833333, 0.98333335), (0.26666668, 0.98333335), (0.5, 1), (0.25, 0.98333335), (0.25833333, 0.98333335), (0.5, 1), (0.24166666, 0.98333335), (0.25, 0.98333335), (0.5, 1), (0.23333333, 0.98333335), (0.24166666, 0.98333335), (0.5, 1), (0.225, 0.98333335), (0.23333333, 0.98333335), (0.5, 1), (0.21666667, 0.98333335), (0.225, 0.98333335), (0.5, 1), (0.20833333, 0.98333335), (0.21666667, 0.98333335), (0.5, 1), (0.2, 0.98333335), (0.20833333, 0.98333335), (0.5, 1), (0.19166666, 0.98333335), (0.2, 0.98333335), (0.5, 1), (0.18333334, 0.98333335), (0.19166666, 0.98333335), (0.5, 1), (0.175, 0.98333335), (0.18333334, 0.98333335), (0.5, 1), (0.16666667, 0.98333335), (0.175, 0.98333335), (0.5, 1), (0.15833333, 0.98333335), (0.16666667, 0.98333335), (0.5, 1), (0.15, 0.98333335), (0.15833333, 0.98333335), (0.5, 1), (0.14166667, 0.98333335), (0.15, 0.98333335), (0.5, 1), (0.13333334, 0.98333335), (0.14166667, 0.98333335), (0.5, 1), (0.125, 0.98333335), (0.13333334, 0.98333335), (0.5, 1), (0.11666667, 0.98333335), (0.125, 0.98333335), (0.5, 1), (0.108333334, 0.98333335), (0.11666667, 0.98333335), (0.5, 1), (0.1, 0.98333335), (0.108333334, 0.98333335), (0.5, 1), (0.09166667, 0.98333335), (0.1, 0.98333335), (0.5, 1), (0.083333336, 0.98333335), (0.09166667, 0.98333335), (0.5, 1), (0.075, 0.98333335), (0.083333336, 0.98333335), (0.5, 1), (0.06666667, 0.98333335), (0.075, 0.98333335), (0.5, 1), (0.058333334, 0.98333335), (0.06666667, 0.98333335), (0.5, 1), (0.05, 0.98333335), (0.058333334, 0.98333335), (0.5, 1), (0.041666668, 0.98333335), (0.05, 0.98333335), (0.5, 1), (0.033333335, 0.98333335), (0.041666668, 0.98333335), (0.5, 1), (0.025, 0.98333335), (0.033333335, 0.98333335), (0.5, 1), (0.016666668, 0.98333335), (0.025, 0.98333335), (0.5, 1), (0.008333334, 0.98333335), (0.016666668, 0.98333335), (0.5, 1), (0, 0.98333335), (0.008333334, 0.98333335)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-99.643063, -6.830078, 106.473142) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cylinder" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 64, 65, 66, 64, 66, 67, 64, 67, 68, 64, 68, 69, 64, 69, 70, 64, 70, 71, 64, 71, 72, 64, 72, 73, 64, 73, 74, 64, 74, 75, 64, 75, 76, 64, 76, 77, 64, 77, 78, 64, 78, 79, 64, 79, 80, 64, 80, 81, 64, 81, 82, 64, 82, 83, 64, 83, 84, 64, 84, 85, 64, 85, 86, 64, 86, 87, 64, 87, 88, 64, 88, 89, 64, 89, 90, 64, 90, 91, 64, 91, 92, 64, 92, 93, 64, 93, 94, 64, 94, 95, 64, 95, 96, 64, 96, 65, 97, 99, 98, 97, 100, 99, 97, 101, 100, 97, 102, 101, 97, 103, 102, 97, 104, 103, 97, 105, 104, 97, 106, 105, 97, 107, 106, 97, 108, 107, 97, 109, 108, 97, 110, 109, 97, 111, 110, 97, 112, 111, 97, 113, 112, 97, 114, 113, 97, 115, 114, 97, 116, 115, 97, 117, 116, 97, 118, 117, 97, 119, 118, 97, 120, 119, 97, 121, 120, 97, 122, 121, 97, 123, 122, 97, 124, 123, 97, 125, 124, 97, 126, 125, 97, 127, 126, 97, 128, 127, 97, 129, 128, 97, 98, 129] rel material:binding = </World/Looks/OmniPBR> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(50, 0, 0), (50, 0, 0), (49.039265, 0, 9.754516), (49.039265, 0, 9.754516), (49.039265, 0, 9.754516), (49.039265, 0, 9.754516), (46.193977, 0, 19.134172), (46.193977, 0, 19.134172), (46.193977, 0, 19.134172), (46.193977, 0, 19.134172), (41.573483, 0, 27.778511), (41.573483, 0, 27.778511), (41.573483, 0, 27.778511), (41.573483, 0, 27.778511), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (27.778511, 0, 41.573483), (27.778511, 0, 41.573483), (27.778511, 0, 41.573483), (27.778511, 0, 41.573483), (19.134172, 0, 46.193977), (19.134172, 0, 46.193977), (19.134172, 0, 46.193977), (19.134172, 0, 46.193977), (9.754516, 0, 49.039265), (9.754516, 0, 49.039265), (9.754516, 0, 49.039265), (9.754516, 0, 49.039265), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (-9.754516, 0, 49.039265), (-9.754516, 0, 49.039265), (-9.754516, 0, 49.039265), (-9.754516, 0, 49.039265), (-19.134172, 0, 46.193977), (-19.134172, 0, 46.193977), (-19.134172, 0, 46.193977), (-19.134172, 0, 46.193977), (-27.778511, 0, 41.573483), (-27.778511, 0, 41.573483), (-27.778511, 0, 41.573483), (-27.778511, 0, 41.573483), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-41.573483, 0, 27.778511), (-41.573483, 0, 27.778511), (-41.573483, 0, 27.778511), (-41.573483, 0, 27.778511), (-46.193977, 0, 19.134172), (-46.193977, 0, 19.134172), (-46.193977, 0, 19.134172), (-46.193977, 0, 19.134172), (-49.039265, 0, 9.754516), (-49.039265, 0, 9.754516), (-49.039265, 0, 9.754516), (-49.039265, 0, 9.754516), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-49.039265, 0, -9.754516), (-49.039265, 0, -9.754516), (-49.039265, 0, -9.754516), (-49.039265, 0, -9.754516), (-46.193977, 0, -19.134172), (-46.193977, 0, -19.134172), (-46.193977, 0, -19.134172), (-46.193977, 0, -19.134172), (-41.573483, 0, -27.778511), (-41.573483, 0, -27.778511), (-41.573483, 0, -27.778511), (-41.573483, 0, -27.778511), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-27.778511, 0, -41.573483), (-27.778511, 0, -41.573483), (-27.778511, 0, -41.573483), (-27.778511, 0, -41.573483), (-19.134172, 0, -46.193977), (-19.134172, 0, -46.193977), (-19.134172, 0, -46.193977), (-19.134172, 0, -46.193977), (-9.754516, 0, -49.039265), (-9.754516, 0, -49.039265), (-9.754516, 0, -49.039265), (-9.754516, 0, -49.039265), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (9.754516, 0, -49.039265), (9.754516, 0, -49.039265), (9.754516, 0, -49.039265), (9.754516, 0, -49.039265), (19.134172, 0, -46.193977), (19.134172, 0, -46.193977), (19.134172, 0, -46.193977), (19.134172, 0, -46.193977), (27.778511, 0, -41.573483), (27.778511, 0, -41.573483), (27.778511, 0, -41.573483), (27.778511, 0, -41.573483), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (41.573483, 0, -27.778511), (41.573483, 0, -27.778511), (41.573483, 0, -27.778511), (41.573483, 0, -27.778511), (46.193977, 0, -19.134172), (46.193977, 0, -19.134172), (46.193977, 0, -19.134172), (46.193977, 0, -19.134172), (49.039265, 0, -9.754516), (49.039265, 0, -9.754516), (49.039265, 0, -9.754516), (49.039265, 0, -9.754516), (50, 0, 0), (50, 0, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754516), (46.193977, -50, 19.134172), (41.573483, -50, 27.778511), (35.35534, -50, 35.35534), (27.778511, -50, 41.573483), (19.134172, -50, 46.193977), (9.754516, -50, 49.039265), (3.0616169e-15, -50, 50), (-9.754516, -50, 49.039265), (-19.134172, -50, 46.193977), (-27.778511, -50, 41.573483), (-35.35534, -50, 35.35534), (-41.573483, -50, 27.778511), (-46.193977, -50, 19.134172), (-49.039265, -50, 9.754516), (-50, -50, 6.1232338e-15), (-49.039265, -50, -9.754516), (-46.193977, -50, -19.134172), (-41.573483, -50, -27.778511), (-35.35534, -50, -35.35534), (-27.778511, -50, -41.573483), (-19.134172, -50, -46.193977), (-9.754516, -50, -49.039265), (-9.184851e-15, -50, -50), (9.754516, -50, -49.039265), (19.134172, -50, -46.193977), (27.778511, -50, -41.573483), (35.35534, -50, -35.35534), (41.573483, -50, -27.778511), (46.193977, -50, -19.134172), (49.039265, -50, -9.754516), (50, 50, 0), (49.039265, 50, 9.754516), (46.193977, 50, 19.134172), (41.573483, 50, 27.778511), (35.35534, 50, 35.35534), (27.778511, 50, 41.573483), (19.134172, 50, 46.193977), (9.754516, 50, 49.039265), (3.0616169e-15, 50, 50), (-9.754516, 50, 49.039265), (-19.134172, 50, 46.193977), (-27.778511, 50, 41.573483), (-35.35534, 50, 35.35534), (-41.573483, 50, 27.778511), (-46.193977, 50, 19.134172), (-49.039265, 50, 9.754516), (-50, 50, 6.1232338e-15), (-49.039265, 50, -9.754516), (-46.193977, 50, -19.134172), (-41.573483, 50, -27.778511), (-35.35534, 50, -35.35534), (-27.778511, 50, -41.573483), (-19.134172, 50, -46.193977), (-9.754516, 50, -49.039265), (-9.184851e-15, 50, -50), (9.754516, 50, -49.039265), (19.134172, 50, -46.193977), (27.778511, 50, -41.573483), (35.35534, 50, -35.35534), (41.573483, 50, -27.778511), (46.193977, 50, -19.134172), (49.039265, 50, -9.754516), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754516), (46.193977, -50, 19.134172), (41.573483, -50, 27.778511), (35.35534, -50, 35.35534), (27.778511, -50, 41.573483), (19.134172, -50, 46.193977), (9.754516, -50, 49.039265), (3.0616169e-15, -50, 50), (-9.754516, -50, 49.039265), (-19.134172, -50, 46.193977), (-27.778511, -50, 41.573483), (-35.35534, -50, 35.35534), (-41.573483, -50, 27.778511), (-46.193977, -50, 19.134172), (-49.039265, -50, 9.754516), (-50, -50, 6.1232338e-15), (-49.039265, -50, -9.754516), (-46.193977, -50, -19.134172), (-41.573483, -50, -27.778511), (-35.35534, -50, -35.35534), (-27.778511, -50, -41.573483), (-19.134172, -50, -46.193977), (-9.754516, -50, -49.039265), (-9.184851e-15, -50, -50), (9.754516, -50, -49.039265), (19.134172, -50, -46.193977), (27.778511, -50, -41.573483), (35.35534, -50, -35.35534), (41.573483, -50, -27.778511), (46.193977, -50, -19.134172), (49.039265, -50, -9.754516), (0, 50, 0), (50, 50, 0), (49.039265, 50, 9.754516), (46.193977, 50, 19.134172), (41.573483, 50, 27.778511), (35.35534, 50, 35.35534), (27.778511, 50, 41.573483), (19.134172, 50, 46.193977), (9.754516, 50, 49.039265), (3.0616169e-15, 50, 50), (-9.754516, 50, 49.039265), (-19.134172, 50, 46.193977), (-27.778511, 50, 41.573483), (-35.35534, 50, 35.35534), (-41.573483, 50, 27.778511), (-46.193977, 50, 19.134172), (-49.039265, 50, 9.754516), (-50, 50, 6.1232338e-15), (-49.039265, 50, -9.754516), (-46.193977, 50, -19.134172), (-41.573483, 50, -27.778511), (-35.35534, 50, -35.35534), (-27.778511, 50, -41.573483), (-19.134172, 50, -46.193977), (-9.754516, 50, -49.039265), (-9.184851e-15, 50, -50), (9.754516, 50, -49.039265), (19.134172, 50, -46.193977), (27.778511, 50, -41.573483), (35.35534, 50, -35.35534), (41.573483, 50, -27.778511), (46.193977, 50, -19.134172), (49.039265, 50, -9.754516)] float2[] primvars:st = [(1, 0), (1, 1), (0.96875, 1), (0.96875, 0), (0.96875, 0), (0.96875, 1), (0.9375, 1), (0.9375, 0), (0.9375, 0), (0.9375, 1), (0.90625, 1), (0.90625, 0), (0.90625, 0), (0.90625, 1), (0.875, 1), (0.875, 0), (0.875, 0), (0.875, 1), (0.84375, 1), (0.84375, 0), (0.84375, 0), (0.84375, 1), (0.8125, 1), (0.8125, 0), (0.8125, 0), (0.8125, 1), (0.78125, 1), (0.78125, 0), (0.78125, 0), (0.78125, 1), (0.75, 1), (0.75, 0), (0.75, 0), (0.75, 1), (0.71875, 1), (0.71875, 0), (0.71875, 0), (0.71875, 1), (0.6875, 1), (0.6875, 0), (0.6875, 0), (0.6875, 1), (0.65625, 1), (0.65625, 0), (0.65625, 0), (0.65625, 1), (0.625, 1), (0.625, 0), (0.625, 0), (0.625, 1), (0.59375, 1), (0.59375, 0), (0.59375, 0), (0.59375, 1), (0.5625, 1), (0.5625, 0), (0.5625, 0), (0.5625, 1), (0.53125, 1), (0.53125, 0), (0.53125, 0), (0.53125, 1), (0.5, 1), (0.5, 0), (0.5, 0), (0.5, 1), (0.46875, 1), (0.46875, 0), (0.46875, 0), (0.46875, 1), (0.4375, 1), (0.4375, 0), (0.4375, 0), (0.4375, 1), (0.40625, 1), (0.40625, 0), (0.40625, 0), (0.40625, 1), (0.375, 1), (0.375, 0), (0.375, 0), (0.375, 1), (0.34375, 1), (0.34375, 0), (0.34375, 0), (0.34375, 1), (0.3125, 1), (0.3125, 0), (0.3125, 0), (0.3125, 1), (0.28125, 1), (0.28125, 0), (0.28125, 0), (0.28125, 1), (0.25, 1), (0.25, 0), (0.25, 0), (0.25, 1), (0.21875, 1), (0.21875, 0), (0.21875, 0), (0.21875, 1), (0.1875, 1), (0.1875, 0), (0.1875, 0), (0.1875, 1), (0.15625, 1), (0.15625, 0), (0.15625, 0), (0.15625, 1), (0.125, 1), (0.125, 0), (0.125, 0), (0.125, 1), (0.09375, 1), (0.09375, 0), (0.09375, 0), (0.09375, 1), (0.0625, 1), (0.0625, 0), (0.0625, 0), (0.0625, 1), (0.03125, 1), (0.03125, 0), (0.03125, 0), (0.03125, 1), (0, 1), (0, 0), (0.5, 0.5), (1, 0.5), (0.9903926, 0.59754515), (0.5, 0.5), (0.9903926, 0.59754515), (0.96193975, 0.6913417), (0.5, 0.5), (0.96193975, 0.6913417), (0.9157348, 0.7777851), (0.5, 0.5), (0.9157348, 0.7777851), (0.8535534, 0.8535534), (0.5, 0.5), (0.8535534, 0.8535534), (0.7777851, 0.9157348), (0.5, 0.5), (0.7777851, 0.9157348), (0.6913417, 0.96193975), (0.5, 0.5), (0.6913417, 0.96193975), (0.59754515, 0.9903926), (0.5, 0.5), (0.59754515, 0.9903926), (0.5, 1), (0.5, 0.5), (0.5, 1), (0.40245485, 0.9903926), (0.5, 0.5), (0.40245485, 0.9903926), (0.30865827, 0.96193975), (0.5, 0.5), (0.30865827, 0.96193975), (0.22221488, 0.9157348), (0.5, 0.5), (0.22221488, 0.9157348), (0.14644662, 0.8535534), (0.5, 0.5), (0.14644662, 0.8535534), (0.084265195, 0.7777851), (0.5, 0.5), (0.084265195, 0.7777851), (0.038060233, 0.6913417), (0.5, 0.5), (0.038060233, 0.6913417), (0.00960736, 0.59754515), (0.5, 0.5), (0.00960736, 0.59754515), (0, 0.5), (0.5, 0.5), (0, 0.5), (0.00960736, 0.40245485), (0.5, 0.5), (0.00960736, 0.40245485), (0.038060233, 0.30865827), (0.5, 0.5), (0.038060233, 0.30865827), (0.084265195, 0.22221488), (0.5, 0.5), (0.084265195, 0.22221488), (0.14644662, 0.14644662), (0.5, 0.5), (0.14644662, 0.14644662), (0.22221488, 0.084265195), (0.5, 0.5), (0.22221488, 0.084265195), (0.30865827, 0.038060233), (0.5, 0.5), (0.30865827, 0.038060233), (0.40245485, 0.00960736), (0.5, 0.5), (0.40245485, 0.00960736), (0.5, 0), (0.5, 0.5), (0.5, 0), (0.59754515, 0.00960736), (0.5, 0.5), (0.59754515, 0.00960736), (0.6913417, 0.038060233), (0.5, 0.5), (0.6913417, 0.038060233), (0.7777851, 0.084265195), (0.5, 0.5), (0.7777851, 0.084265195), (0.8535534, 0.14644662), (0.5, 0.5), (0.8535534, 0.14644662), (0.9157348, 0.22221488), (0.5, 0.5), (0.9157348, 0.22221488), (0.96193975, 0.30865827), (0.5, 0.5), (0.96193975, 0.30865827), (0.9903926, 0.40245485), (0.5, 0.5), (0.9903926, 0.40245485), (1, 0.5), (0.5, 0.5), (0.00960736, 0.59754515), (0, 0.5), (0.5, 0.5), (0.038060233, 0.6913417), (0.00960736, 0.59754515), (0.5, 0.5), (0.084265195, 0.7777851), (0.038060233, 0.6913417), (0.5, 0.5), (0.14644662, 0.8535534), (0.084265195, 0.7777851), (0.5, 0.5), (0.22221488, 0.9157348), (0.14644662, 0.8535534), (0.5, 0.5), (0.30865827, 0.96193975), (0.22221488, 0.9157348), (0.5, 0.5), (0.40245485, 0.9903926), (0.30865827, 0.96193975), (0.5, 0.5), (0.5, 1), (0.40245485, 0.9903926), (0.5, 0.5), (0.59754515, 0.9903926), (0.5, 1), (0.5, 0.5), (0.6913417, 0.96193975), (0.59754515, 0.9903926), (0.5, 0.5), (0.7777851, 0.9157348), (0.6913417, 0.96193975), (0.5, 0.5), (0.8535534, 0.8535534), (0.7777851, 0.9157348), (0.5, 0.5), (0.9157348, 0.7777851), (0.8535534, 0.8535534), (0.5, 0.5), (0.96193975, 0.6913417), (0.9157348, 0.7777851), (0.5, 0.5), (0.9903926, 0.59754515), (0.96193975, 0.6913417), (0.5, 0.5), (1, 0.5), (0.9903926, 0.59754515), (0.5, 0.5), (0.9903926, 0.40245485), (1, 0.5), (0.5, 0.5), (0.96193975, 0.30865827), (0.9903926, 0.40245485), (0.5, 0.5), (0.9157348, 0.22221488), (0.96193975, 0.30865827), (0.5, 0.5), (0.8535534, 0.14644662), (0.9157348, 0.22221488), (0.5, 0.5), (0.7777851, 0.084265195), (0.8535534, 0.14644662), (0.5, 0.5), (0.6913417, 0.038060233), (0.7777851, 0.084265195), (0.5, 0.5), (0.59754515, 0.00960736), (0.6913417, 0.038060233), (0.5, 0.5), (0.5, 0), (0.59754515, 0.00960736), (0.5, 0.5), (0.40245485, 0.00960736), (0.5, 0), (0.5, 0.5), (0.30865827, 0.038060233), (0.40245485, 0.00960736), (0.5, 0.5), (0.22221488, 0.084265195), (0.30865827, 0.038060233), (0.5, 0.5), (0.14644662, 0.14644662), (0.22221488, 0.084265195), (0.5, 0.5), (0.084265195, 0.22221488), (0.14644662, 0.14644662), (0.5, 0.5), (0.038060233, 0.30865827), (0.084265195, 0.22221488), (0.5, 0.5), (0.00960736, 0.40245485), (0.038060233, 0.30865827), (0.5, 0.5), (0, 0.5), (0.00960736, 0.40245485)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-196.80092, -17.644369, 214.445289) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Scope "Looks" { def Material "OmniPBR" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR" token outputs:out } } def Material "OmniGlass" { token outputs:mdl:displacement.connect = </World/Looks/OmniGlass/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniGlass/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniGlass/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniGlass.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniGlass" token outputs:out } } def Material "OmniSurface_Plastic" { token outputs:mdl:displacement.connect = </World/Looks/OmniSurface_Plastic/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniSurface_Plastic/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniSurface_Plastic/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniSurfacePresets.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniSurface_Plastic" token outputs:out } } } }
omniverse-code/kit/exts/omni.kit.widget.stage/data/tests/mtl/mahogany_floorboards.mdl
/****************************************************************************** * Copyright 2018 NVIDIA Corporation. All rights reserved. ****************************************************************************** Permission is hereby granted by NVIDIA Corporation ("NVIDIA"), free of charge, to any person obtaining a copy of the sample definition code that uses our Material Definition Language (the "MDL Materials"), to reproduce and distribute the MDL Materials, including without limitation the rights to use, copy, merge, publish, distribute, and sell modified and unmodified copies of the MDL Materials, and to permit persons to whom the MDL Materials is furnished to do so, in all cases solely for use with NVIDIA's Material Definition Language, subject to the following further conditions: 1. The above copyright notices, this list of conditions, and the disclaimer that follows shall be retained in all copies of one or more of the MDL Materials, including in any software with which the MDL Materials are bundled, redistributed, and/or sold, and included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user, as applicable. 2. The name of NVIDIA shall not be used to promote, endorse or advertise any Modified Version without specific prior written permission, except a) to comply with the notice requirements otherwise contained herein; or b) to acknowledge the contribution(s) of NVIDIA. THE MDL MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS. */ mdl 1.5; import ::df::*; import ::state::*; import ::base::*; import ::tex::*; import ::anno::*; export material mahogany_floorboards( uniform texture_2d diffuse_texture = texture_2d("") [[ anno::display_name("Wood color texture"), anno::description("Texture defining the color of the wood") ]], uniform texture_2d bump_texture = texture_2d("") [[ anno::display_name("Bump texture"), anno::description("Greyscale texture for bump mapping") ]], uniform texture_2d reflect_texture = texture_2d("") [[ anno::display_name("Reflectivity texture"), anno::description("Texture defining the reflectivity of the wood") ]], uniform float2 texture_tiling = float2(1.) [[ anno::display_name("Texture tiling"), anno::description("Defines how often to repeat the texture") ]], uniform float base_bump_amount = 1. [[ anno::display_name("Wood bump scale"), anno::description("Scales the bumpiness of the wood base") ]], float coat_roughness = .2 [[ anno::display_name("Coat roughness"), anno::hard_range(0.0, 1.0), anno::description("Roughness of the coat") ]], uniform float glossy_weight = 1. [[ anno::display_name("Overall reflectivity"), anno::hard_range(0.0, 1.0), anno::description("Scales the reflectivity of the coating") ]], uniform float material_ior = 1.5 [[ anno::display_name("Coating ior"), anno::soft_range(1.0, 4.0), anno::description("Describes the directional dependence of the reflection." " Values around 1.5 are realistic, higher values will increase reflectivity for" " surfaces facing the observer") ]] ) [[ anno::copyright_notice ( "Permission is hereby granted by NVIDIA Corporation (\"NVIDIA\"), free of charge, " "to any person obtaining a copy of the sample definition code that uses our " "Material Definition Language (the \"MDL Materials\"), to reproduce and distribute " "the MDL Materials, including without limitation the rights to use, copy, merge, " "publish, distribute, and sell modified and unmodified copies of the MDL " "Materials, and to permit persons to whom the MDL Materials is furnished to do " "so, in all cases solely for use with NVIDIA's Material Definition Language, " "subject to the following further conditions: " "\n" "1. The above copyright notices, this list of conditions, and the disclaimer " "that follows shall be retained in all copies of one or more of the MDL " "Materials, including in any software with which the MDL Materials are bundled, " "redistributed, and/or sold, and included either as stand-alone text files, " "human-readable headers or in the appropriate machine-readable metadata fields " "within text or binary files as long as those fields can be easily viewed by the " "user, as applicable. " "2. The name of NVIDIA shall not be used to promote, endorse or advertise any " "Modified Version without specific prior written permission, except a) to comply " "with the notice requirements otherwise contained herein; or b) to acknowledge " "the contribution(s) of NVIDIA. " "\n" "THE MDL MATERIALS ARE PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS " "OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, " "FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, " "TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR " "ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, " "INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF " "CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE " "THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS." ), anno::author("NVIDIA Corporation"), anno::display_name("Mahogany floorboards"), anno::description("Mahogany floorboards with a semi glossy finish") ]] = let { base::texture_coordinate_info coordinate = base::transform_coordinate( transform: base::rotation_translation_scale(float3(0.0),float3(0.0),float3(texture_tiling.x,texture_tiling.y,1)) ); base::texture_return reflectivity_map = base::file_texture( texture: reflect_texture, mono_source: base::mono_average, color_scale: color(glossy_weight), uvw: coordinate ); bsdf coat_glossy_bsdf = df::simple_glossy_bsdf( mode: df::scatter_reflect, tint: color(1.), roughness_u: coat_roughness ); float3 base_bump_map = base::file_bump_texture( texture: bump_texture, factor: base_bump_amount, uvw: coordinate ); base::texture_return diffuse_map = base::file_texture( texture: diffuse_texture, uvw: coordinate ); bsdf diffuse_bsdf = df::diffuse_reflection_bsdf( roughness: 0.0, tint: diffuse_map.tint ); } in material( surface: material_surface( scattering: df::fresnel_layer( ior: material_ior, weight: reflectivity_map.mono, layer: coat_glossy_bsdf, normal: base_bump_map, base: df::weighted_layer( weight: float(1.0), layer: diffuse_bsdf, normal: base_bump_map ) ) ) );
omniverse-code/kit/exts/omni.kit.widget.stage/data/tests/mtl/badname.mdl
/****************************************************************************** * Copyright 1986, 2019 NVIDIA ARC GmbH. All rights reserved. * ****************************************************************************** Permission is hereby granted by NVIDIA Corporation ("NVIDIA"), free of charge, to any person obtaining a copy of the sample definition code that uses our Material Definition Language (the "MDL Materials"), to reproduce and distribute the MDL Materials, including without limitation the rights to use, copy, merge, publish, distribute, and sell modified and unmodified copies of the MDL Materials, and to permit persons to whom the MDL Materials is furnished to do so, in all cases solely for use with NVIDIA’s Material Definition Language, subject to the following further conditions: 1. The above copyright notices, this list of conditions, and the disclaimer that follows shall be retained in all copies of one or more of the MDL Materials, including in any software with which the MDL Materials are bundled, redistributed, and/or sold, and included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user, as applicable. 2. The name of NVIDIA shall not be used to promote, endorse or advertise any Modified Version without specific prior written permission, except a) to comply with the notice requirements otherwise contained herein; or b) to acknowledge the contribution(s) of NVIDIA. THE MDL MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS. */ mdl 1.3; import df::*; import state::*; import math::*; import tex::*; import anno::*; // // ----------------------------- TO REMOVE ----------------------------- // The function has been moved to Ue4Function.mdl // export float4 unpack_normal_map( float4 texture_sample = float4(0.0, 0.0, 1.0, 1.0) ) [[ anno::description("Unpack a normal stored in a normal map"), anno::noinline() ]] { float2 normal_xy = float2(texture_sample.x, texture_sample.y); normal_xy = normal_xy * float2(2.0,2.0) - float2(1.0,1.0); float normal_z = math::sqrt( math::saturate( 1.0 - math::dot( normal_xy, normal_xy ) ) ); return float4( normal_xy.x, normal_xy.y, normal_z, 1.0 ); } // --------------------------------------------------------------------- float3 tangent_space_normal( float3 normal = float3(0.0,0.0,1.0), float3 tangent_u = state::texture_tangent_u(0), float3 tangent_v = state::texture_tangent_v(0) ) [[ anno::description("Interprets the vector in tangent space"), anno::noinline() ]] { return math::normalize( tangent_u * normal.x + tangent_v * normal.y + state::normal() * (normal.z)); } export material Ue4basedMDL( float3 base_color = float3(0.0, 0.0, 0.0), float metallic = 0.0, float roughness = 0.5, float specular = 0.5, float3 normal = float3(0.0,0.0,1.0), float clearcoat_weight = 0.0, float clearcoat_roughness = 0.0, float3 clearcoat_normal = float3(0.0,0.0,1.0), float opacity = 1.0, float3 emissive_color = float3(0.0, 0.0, 0.0) ) = let { color final_base_color = math::saturate(base_color); float final_metallic = math::saturate(metallic); float final_roughness = math::saturate(roughness); float final_specular = math::saturate(specular); color final_emissive_color = math::max(emissive_color, 0.0f); float final_clearcoat_weight = math::saturate(clearcoat_weight); float final_opacity = math::saturate(opacity); float final_clearcoat_roughness = math::saturate(clearcoat_roughness); float3 final_normal = math::normalize(normal); float3 final_clearcoat_normal = math::normalize(clearcoat_normal); // - compute final roughness by squaring the "roughness" parameter float alpha = final_roughness * final_roughness; // reduce the reflectivity at grazing angles to avoid "dark edges" for high roughness due to the layering float grazing_refl = math::max((1.0 - final_roughness), 0.0); // for the dielectric component we layer the glossy component on top of the diffuse one, // the glossy layer has no color tint bsdf dielectric_component = df::custom_curve_layer( weight: final_specular, normal_reflectivity: 0.08, grazing_reflectivity: grazing_refl, layer: df::microfacet_ggx_vcavities_bsdf(roughness_u: alpha), base: df::diffuse_reflection_bsdf(tint: final_base_color) ); // the metallic component doesn't have a diffuse component, it's only glossy // base_color is applied to tint it bsdf metallic_component = df::microfacet_ggx_vcavities_bsdf(tint: final_base_color, roughness_u: alpha); // final BSDF is a linear blend between dielectric and metallic component bsdf dielectric_metal_mix = df::normalized_mix( components: df::bsdf_component[]( df::bsdf_component( component: metallic_component, weight: final_metallic), df::bsdf_component( component: dielectric_component, weight: 1.0-final_metallic) ) ); // clearcoat layer float clearcoat_grazing_refl = math::max((1.0 - final_clearcoat_roughness), 0.0); float clearcoat_alpha = final_clearcoat_roughness * final_clearcoat_roughness; float3 the_normal = tangent_space_normal( normal: final_normal, tangent_u: state::texture_tangent_u(0), tangent_v: state::texture_tangent_v(0) ); float3 the_clearcoat_normal = tangent_space_normal( normal: final_clearcoat_normal, tangent_u: state::texture_tangent_u(0), tangent_v: state::texture_tangent_v(0) ); bsdf clearcoat = df::custom_curve_layer( base: df::weighted_layer( layer: dielectric_metal_mix, weight: 1.0 ), layer: df::microfacet_ggx_vcavities_bsdf( roughness_u: clearcoat_alpha, tint: color(1.0) ), normal_reflectivity: 0.04, grazing_reflectivity: clearcoat_grazing_refl, normal: the_clearcoat_normal, weight: final_clearcoat_weight ); bsdf surface = clearcoat; } in material( surface: material_surface( scattering: surface, emission: material_emission ( emission: df::diffuse_edf (), intensity: final_emissive_color ) ), geometry: material_geometry( normal: the_normal, cutout_opacity: final_opacity ) );
omniverse-code/kit/exts/omni.kit.widget.stage/data/tests/usd/cube.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50050) double radius = 500 } dictionary Perspective = { double3 position = (7.395431560203605, 164.96342256020364, 164.9634225602034) double3 target = (-157.567991, 0, 0) } dictionary Right = { double3 position = (-50207.567991, 0, -1.1148319598808244e-11) double radius = 500 } dictionary Top = { double3 position = (-4.3341100614586435e-12, 50050, 1.1113332476497817e-11) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Cube "Cube" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double size = 100 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-157.567991, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.kit.test_suite.layout/omni/kit/test_suite/layout/__init__.py
from .scripts import *
omniverse-code/kit/exts/omni.kit.test_suite.layout/omni/kit/test_suite/layout/scripts/__init__.py
omniverse-code/kit/exts/omni.kit.test_suite.layout/omni/kit/test_suite/layout/tests/__init__.py
from .compare_layout import * from .verify_dockspace import *
omniverse-code/kit/exts/omni.kit.test_suite.layout/omni/kit/test_suite/layout/tests/verify_dockspace.py
## Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import carb import omni.kit.test import omni.kit.app import omni.ui as ui import omni.kit.commands from omni.kit.test.async_unittest import AsyncTestCase from omni.kit import ui_test from omni.kit.test_suite.helpers import get_test_data_path, arrange_windows class VerifyDockspace(AsyncTestCase): # Before running each test async def setUp(self): await arrange_windows("Stage", 256) await omni.usd.get_context().new_stage_async() omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere", select_new_prim=True) # After running each test async def tearDown(self): pass async def test_verify_dockspace(self): # verify "Dockspace" window doesn't disapear when a prim is selected as this breaks layout load/save omni.usd.get_context().get_selection().set_selected_prim_paths([], True) await ui_test.human_delay(100) self.assertNotEqual(ui.Workspace.get_window("DockSpace"), None) omni.usd.get_context().get_selection().set_selected_prim_paths(["/Sphere"], True) await ui_test.human_delay(100) self.assertNotEqual(ui.Workspace.get_window("DockSpace"), None) async def test_verify_dockspace_shutdown(self): self._hooks = [] self._hooks.append(omni.kit.app.get_app().get_shutdown_event_stream().create_subscription_to_pop_by_type( omni.kit.app.POST_QUIT_EVENT_TYPE, self._on_shutdown_handler, name="omni.create.app.setup shutdown for layout", order=0)) omni.usd.get_context().get_selection().set_selected_prim_paths(["/Sphere"], True) await ui_test.human_delay(100) def _on_shutdown_handler(self, e: carb.events.IEvent): # verify "Dockspace" window hasn't disapeared as prims are selected as this breaks layout load/save print("running _on_shutdown_handler test") self.assertNotEqual(ui.Workspace.get_window("DockSpace"), None)
omniverse-code/kit/exts/omni.kit.test_suite.layout/omni/kit/test_suite/layout/tests/compare_layout.py
## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import omni.kit.test import omni.kit.app import omni.ui as ui from omni.kit.test.async_unittest import AsyncTestCase from omni.kit import ui_test from omni.kit.test_suite.helpers import get_test_data_path, arrange_windows from omni.kit.quicklayout import QuickLayout from omni.ui.workspace_utils import CompareDelegate class CompareLayout(AsyncTestCase): # Before running each test async def setUp(self): await arrange_windows("Stage", 256) # After running each test async def tearDown(self): pass async def test_compare_layout(self): layout_path = get_test_data_path(__name__, "layout.json") # compare layout, this should fail result = QuickLayout.compare_file(layout_path) self.assertNotEqual(result, []) # load layout QuickLayout.load_file(layout_path) # need to pause as load_file does some async stuff await ui_test.human_delay(10) # compare layout, this should pass result = QuickLayout.compare_file(layout_path) self.assertEqual(result, []) async def test_compare_layout_delegate(self): called_delegate = False layout_path = get_test_data_path(__name__, "layout.json") class TestCompareDelegate(CompareDelegate): def failed_get_window(self, error_list: list, target: dict): nonlocal called_delegate called_delegate = True return super().failed_get_window(error_list, target) def failed_window_key(self, error_list: list, key: str, target: dict, target_window: ui.Window): nonlocal called_delegate called_delegate = True return super().failed_window_key(error_list, key, target, target_window) def failed_window_value(self, error_list: list, key: str, value, target: dict, target_window: ui.Window): nonlocal called_delegate called_delegate = True return super().failed_window_value(error_list, key, value, target, target_window) def compare_value(self, key:str, value, target): nonlocal called_delegate called_delegate = True return super().compare_value(key, value, target) self.assertFalse(called_delegate) # compare layout, this should fail result = QuickLayout.compare_file(layout_path, compare_delegate=TestCompareDelegate()) self.assertNotEqual(result, []) # load layout QuickLayout.load_file(layout_path) # need to pause as load_file does some async stuff await ui_test.human_delay(10) # compare layout, this should pass result = QuickLayout.compare_file(layout_path, compare_delegate=TestCompareDelegate()) self.assertEqual(result, []) self.assertTrue(called_delegate)
omniverse-code/kit/exts/omni.kit.test_suite.layout/docs/index.rst
omni.kit.test_suite.layout ############################ layout tests .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.resourcemonitor/PACKAGE-LICENSES/omni.resourcemonitor-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related documentation without an express license agreement from NVIDIA CORPORATION is strictly prohibited.
omniverse-code/kit/exts/omni.resourcemonitor/config/extension.toml
[package] title = "Resource Monitor" description = "Monitor utility for device and host memory" authors = ["NVIDIA"] changelog = "docs/CHANGELOG.md" readme = "docs/README.md" category = "Internal" preview_image = "data/preview.png" icon = "data/icon.png" version = "1.0.0" [dependencies] "omni.kit.renderer.core" = {} "omni.kit.window.preferences" = {} [[python.module]] name = "omni.resourcemonitor" [[native.plugin]] path = "bin/*.plugin" # Additional python module with tests, to make them discoverable by test system [[python.module]] name = "omni.resourcemonitor.tests" [[test]] timeout = 300
omniverse-code/kit/exts/omni.resourcemonitor/omni/resourcemonitor/__init__.py
from .scripts.extension import *
omniverse-code/kit/exts/omni.resourcemonitor/omni/resourcemonitor/_resourceMonitor.pyi
"""pybind11 omni.resourcemonitor bindings""" from __future__ import annotations import omni.resourcemonitor._resourceMonitor import typing import carb.events._events __all__ = [ "IResourceMonitor", "ResourceMonitorEventType", "acquire_resource_monitor_interface", "deviceMemoryWarnFractionSettingName", "deviceMemoryWarnMBSettingName", "hostMemoryWarnFractionSettingName", "hostMemoryWarnMBSettingName", "release_resource_monitor_interface", "sendDeviceMemoryWarningSettingName", "sendHostMemoryWarningSettingName", "timeBetweenQueriesSettingName" ] class IResourceMonitor(): def get_available_device_memory(self, arg0: int) -> int: ... def get_available_host_memory(self) -> int: ... def get_event_stream(self) -> carb.events._events.IEventStream: ... def get_total_device_memory(self, arg0: int) -> int: ... def get_total_host_memory(self) -> int: ... pass class ResourceMonitorEventType(): """ ResourceMonitor notification. Members: DEVICE_MEMORY HOST_MEMORY LOW_DEVICE_MEMORY LOW_HOST_MEMORY """ def __eq__(self, other: object) -> bool: ... def __getstate__(self) -> int: ... def __hash__(self) -> int: ... def __index__(self) -> int: ... def __init__(self, value: int) -> None: ... def __int__(self) -> int: ... def __ne__(self, other: object) -> bool: ... def __repr__(self) -> str: ... def __setstate__(self, state: int) -> None: ... @property def name(self) -> str: """ :type: str """ @property def value(self) -> int: """ :type: int """ DEVICE_MEMORY: omni.resourcemonitor._resourceMonitor.ResourceMonitorEventType # value = <ResourceMonitorEventType.DEVICE_MEMORY: 0> HOST_MEMORY: omni.resourcemonitor._resourceMonitor.ResourceMonitorEventType # value = <ResourceMonitorEventType.HOST_MEMORY: 1> LOW_DEVICE_MEMORY: omni.resourcemonitor._resourceMonitor.ResourceMonitorEventType # value = <ResourceMonitorEventType.LOW_DEVICE_MEMORY: 2> LOW_HOST_MEMORY: omni.resourcemonitor._resourceMonitor.ResourceMonitorEventType # value = <ResourceMonitorEventType.LOW_HOST_MEMORY: 3> __members__: dict # value = {'DEVICE_MEMORY': <ResourceMonitorEventType.DEVICE_MEMORY: 0>, 'HOST_MEMORY': <ResourceMonitorEventType.HOST_MEMORY: 1>, 'LOW_DEVICE_MEMORY': <ResourceMonitorEventType.LOW_DEVICE_MEMORY: 2>, 'LOW_HOST_MEMORY': <ResourceMonitorEventType.LOW_HOST_MEMORY: 3>} pass def acquire_resource_monitor_interface(plugin_name: str = None, library_path: str = None) -> IResourceMonitor: pass def release_resource_monitor_interface(arg0: IResourceMonitor) -> None: pass deviceMemoryWarnFractionSettingName = '/persistent/resourcemonitor/deviceMemoryWarnFraction' deviceMemoryWarnMBSettingName = '/persistent/resourcemonitor/deviceMemoryWarnMB' hostMemoryWarnFractionSettingName = '/persistent/resourcemonitor/hostMemoryWarnFraction' hostMemoryWarnMBSettingName = '/persistent/resourcemonitor/hostMemoryWarnMB' sendDeviceMemoryWarningSettingName = '/persistent/resourcemonitor/sendDeviceMemoryWarning' sendHostMemoryWarningSettingName = '/persistent/resourcemonitor/sendHostMemoryWarning' timeBetweenQueriesSettingName = '/persistent/resourcemonitor/timeBetweenQueries'
omniverse-code/kit/exts/omni.resourcemonitor/omni/resourcemonitor/__extensions__.py
omniverse-code/kit/exts/omni.resourcemonitor/omni/resourcemonitor/scripts/extension.py
import omni.ext from .._resourceMonitor import * class PublicExtension(omni.ext.IExt): def on_startup(self): self._resourceMonitor = acquire_resource_monitor_interface() def on_shutdown(self): release_resource_monitor_interface(self._resourceMonitor)
omniverse-code/kit/exts/omni.resourcemonitor/omni/resourcemonitor/scripts/resource_monitor_page.py
import omni.ui as ui from omni.kit.window.preferences import PreferenceBuilder, SettingType from .. import _resourceMonitor class ResourceMonitorPreferences(PreferenceBuilder): def __init__(self): super().__init__("Resource Monitor") def build(self): """ Resource Monitor """ with ui.VStack(height=0): with self.add_frame("Resource Monitor"): with ui.VStack(): self.create_setting_widget( "Time Between Queries", _resourceMonitor.timeBetweenQueriesSettingName, SettingType.FLOAT, ) self.create_setting_widget( "Send Device Memory Warnings", _resourceMonitor.sendDeviceMemoryWarningSettingName, SettingType.BOOL, ) self.create_setting_widget( "Device Memory Warning Threshold (MB)", _resourceMonitor.deviceMemoryWarnMBSettingName, SettingType.INT, ) self.create_setting_widget( "Device Memory Warning Threshold (Fraction)", _resourceMonitor.deviceMemoryWarnFractionSettingName, SettingType.FLOAT, range_from=0., range_to=1., ) self.create_setting_widget( "Send Host Memory Warnings", _resourceMonitor.sendHostMemoryWarningSettingName, SettingType.BOOL ) self.create_setting_widget( "Host Memory Warning Threshold (MB)", _resourceMonitor.hostMemoryWarnMBSettingName, SettingType.INT, ) self.create_setting_widget( "Host Memory Warning Threshold (Fraction)", _resourceMonitor.hostMemoryWarnFractionSettingName, SettingType.FLOAT, range_from=0., range_to=1., )
omniverse-code/kit/exts/omni.resourcemonitor/omni/resourcemonitor/tests/__init__.py
""" Presence of this file allows the tests directory to be imported as a module so that all of its contents can be scanned to automatically add tests that are placed into this directory. """ scan_for_test_modules = True
omniverse-code/kit/exts/omni.resourcemonitor/omni/resourcemonitor/tests/test_resource_monitor.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # import numpy as np import carb.settings import omni.kit.test import omni.resourcemonitor as rm class TestResourceSettings(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): self._savedSettings = {} self._rm_interface = rm.acquire_resource_monitor_interface() self._settings = carb.settings.get_settings() # Save current settings self._savedSettings[rm.timeBetweenQueriesSettingName] = \ self._settings.get_as_float(rm.timeBetweenQueriesSettingName) self._savedSettings[rm.sendDeviceMemoryWarningSettingName] = \ self._settings.get_as_bool(rm.sendDeviceMemoryWarningSettingName) self._savedSettings[rm.deviceMemoryWarnMBSettingName] = \ self._settings.get_as_int(rm.deviceMemoryWarnMBSettingName) self._savedSettings[rm.deviceMemoryWarnFractionSettingName] = \ self._settings.get_as_float(rm.deviceMemoryWarnFractionSettingName) self._savedSettings[rm.sendHostMemoryWarningSettingName] = \ self._settings.get_as_bool(rm.sendHostMemoryWarningSettingName) self._savedSettings[rm.hostMemoryWarnMBSettingName] = \ self._settings.get_as_int(rm.hostMemoryWarnMBSettingName) self._savedSettings[rm.hostMemoryWarnFractionSettingName] = \ self._settings.get_as_float(rm.hostMemoryWarnFractionSettingName) # After running each test async def tearDown(self): # Restore settings self._settings.set_float( rm.timeBetweenQueriesSettingName, self._savedSettings[rm.timeBetweenQueriesSettingName]) self._settings.set_bool( rm.sendDeviceMemoryWarningSettingName, self._savedSettings[rm.sendDeviceMemoryWarningSettingName]) self._settings.set_int( rm.deviceMemoryWarnMBSettingName, self._savedSettings[rm.deviceMemoryWarnMBSettingName]) self._settings.set_float( rm.deviceMemoryWarnFractionSettingName, self._savedSettings[rm.deviceMemoryWarnFractionSettingName]) self._settings.set_bool( rm.sendHostMemoryWarningSettingName, self._savedSettings[rm.sendHostMemoryWarningSettingName]) self._settings.set_int( rm.hostMemoryWarnMBSettingName, self._savedSettings[rm.hostMemoryWarnMBSettingName]) self._settings.set_float( rm.hostMemoryWarnFractionSettingName, self._savedSettings[rm.hostMemoryWarnFractionSettingName]) async def test_resource_monitor(self): """ Test host memory warnings by setting the warning threshold to slightly less than 10 GB below current memory usage then allocating a 10 GB buffer """ hostBytesAvail = self._rm_interface.get_available_host_memory() memoryToAlloc = 10 * 1024 * 1024 * 1024 queryTime = 0.1 fudge = 512 * 1024 * 1024 # make sure we go below the warning threshold warnHostThresholdBytes = hostBytesAvail - memoryToAlloc + fudge self._settings.set_float( rm.timeBetweenQueriesSettingName, queryTime) self._settings.set_bool( rm.sendHostMemoryWarningSettingName, True) self._settings.set_int( rm.hostMemoryWarnMBSettingName, warnHostThresholdBytes // (1024 * 1024)) # bytes to MB hostMemoryWarningOccurred = False def on_rm_update(event): nonlocal hostMemoryWarningOccurred hostBytesAvail = self._rm_interface.get_available_host_memory() if event.type == int(rm.ResourceMonitorEventType.LOW_HOST_MEMORY): hostMemoryWarningOccurred = True sub = self._rm_interface.get_event_stream().create_subscription_to_pop(on_rm_update, name='resource monitor update') self.assertIsNotNone(sub) # allocate something numElements = memoryToAlloc // np.dtype(np.int64).itemsize array = np.zeros(numElements, dtype=np.int64) array[:] = 1 time = 0. while time < 2. * queryTime: # give time for a resourcemonitor event to come through dt = await omni.kit.app.get_app().next_update_async() time = time + dt self.assertTrue(hostMemoryWarningOccurred)
omniverse-code/kit/exts/omni.resourcemonitor/docs/CHANGELOG.md
# CHANGELOG ## [1.0.0] - 2021-09-14 ### Added - Initial implementation. - Provide event stream for low memory warnings. - Provide convenience functions for host and device memory queries.
omniverse-code/kit/exts/omni.resourcemonitor/docs/README.md
# [omni.resourcemonitor] Utility extension for host and device memory updates. Clients can subscribe to this extension's event stream to receive updates on available memory and/or receive warnings when available memory falls below specified thresholds.
omniverse-code/kit/exts/omni.graph.examples.python/ogn/nodes.json
{ "nodes": { "omni.graph.examples.python.DeformerPy": { "description": "Example node applying a sine wave deformation to a set of points, written in Python", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.DeformerPyGpu": { "description": "Example node applying a sine wave deformation to a set of points, written in Python for the GPU", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.VersionedDeformerPy": { "description": "Test node to confirm version upgrading works. Performs a basic deformation on some points.", "version": 2, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.BouncingCubes": { "description": "Example of realtime update of nodes using a gathered input", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.BouncingCubesGpu": { "description": "Example of realtime update of nodes using a gathered input", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.CountTo": { "description": "Example stateful node that counts to countTo by a certain increment", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.IntCounter": { "description": "Example stateful node that increments every time it's evaluated", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.TestInitNode": { "description": "Test Init Node", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.TestSingleton": { "description": "Example node that showcases the use of singleton nodes (nodes that can have only 1 instance)", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.AbsDouble": { "description": "Example node that takes the absolute value of a number", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.ClampDouble": { "description": "Example node that a number to a range", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.ComposeDouble3": { "description": "Example node that takes in the components of three doubles and outputs a double3", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.DecomposeDouble3": { "description": "Example node that takes in a double3 and outputs scalars that are its components", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.DeformerYAxis": { "description": "Example node applying a sine wave deformation to a set of points, written in Python. Deforms along Y-axis instead of Z", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.MultDouble": { "description": "Example node that multiplies 2 doubles together", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.PositionToColor": { "description": "This node takes positional data (double3) and converts to a color, and outputs as color3f[] (which seems to be the default color connection in USD)", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.SubtractDouble": { "description": "Example node that subtracts 2 doubles from each other", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.DynamicSwitch": { "description": "A switch node that will enable the left side or right side depending on the input. Requires dynamic scheduling to work", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" }, "omni.graph.examples.python.UniversalAdd": { "description": "Python-based universal add node for all types. This file is generated using UniversalAddGenerator.py", "version": 1, "extension": "omni.graph.examples.python", "language": "Python" } } }
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnVersionedDeformerPy.rst
.. _omni_graph_examples_python_VersionedDeformerPy_2: .. _omni_graph_examples_python_VersionedDeformerPy: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: VersionedDeformerPy :keywords: lang-en omnigraph node examples python versioned-deformer-py VersionedDeformerPy =================== .. <description> Test node to confirm version upgrading works. Performs a basic deformation on some points. .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:points", "``pointf[3][]``", "Set of points to be deformed", "[]" "inputs:wavelength", "``float``", "Wavelength of sinusodal deformer function", "50.0" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:points", "``pointf[3][]``", "Set of deformed points", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.VersionedDeformerPy" "Version", "2" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "VersionedDeformerPy" "Categories", "examples" "Generated Class Name", "OgnVersionedDeformerPyDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnPyUniversalAdd.rst
.. _omni_graph_examples_python_UniversalAdd_1: .. _omni_graph_examples_python_UniversalAdd: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Universal Add For All Types (Python) :keywords: lang-en omnigraph node examples python universal-add Universal Add For All Types (Python) ==================================== .. <description> Python-based universal add node for all types. This file is generated using UniversalAddGenerator.py .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:bool_0", "``bool``", "Input of type bool", "False" "inputs:bool_1", "``bool``", "Input of type bool", "False" "inputs:bool_arr_0", "``bool[]``", "Input of type bool[]", "[]" "inputs:bool_arr_1", "``bool[]``", "Input of type bool[]", "[]" "inputs:colord3_0", "``colord[3]``", "Input of type colord[3]", "[0.0, 0.0, 0.0]" "inputs:colord3_1", "``colord[3]``", "Input of type colord[3]", "[0.0, 0.0, 0.0]" "inputs:colord3_arr_0", "``colord[3][]``", "Input of type colord[3][]", "[]" "inputs:colord3_arr_1", "``colord[3][]``", "Input of type colord[3][]", "[]" "inputs:colord4_0", "``colord[4]``", "Input of type colord[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:colord4_1", "``colord[4]``", "Input of type colord[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:colord4_arr_0", "``colord[4][]``", "Input of type colord[4][]", "[]" "inputs:colord4_arr_1", "``colord[4][]``", "Input of type colord[4][]", "[]" "inputs:colorf3_0", "``colorf[3]``", "Input of type colorf[3]", "[0.0, 0.0, 0.0]" "inputs:colorf3_1", "``colorf[3]``", "Input of type colorf[3]", "[0.0, 0.0, 0.0]" "inputs:colorf3_arr_0", "``colorf[3][]``", "Input of type colorf[3][]", "[]" "inputs:colorf3_arr_1", "``colorf[3][]``", "Input of type colorf[3][]", "[]" "inputs:colorf4_0", "``colorf[4]``", "Input of type colorf[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:colorf4_1", "``colorf[4]``", "Input of type colorf[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:colorf4_arr_0", "``colorf[4][]``", "Input of type colorf[4][]", "[]" "inputs:colorf4_arr_1", "``colorf[4][]``", "Input of type colorf[4][]", "[]" "inputs:colorh3_0", "``colorh[3]``", "Input of type colorh[3]", "[0.0, 0.0, 0.0]" "inputs:colorh3_1", "``colorh[3]``", "Input of type colorh[3]", "[0.0, 0.0, 0.0]" "inputs:colorh3_arr_0", "``colorh[3][]``", "Input of type colorh[3][]", "[]" "inputs:colorh3_arr_1", "``colorh[3][]``", "Input of type colorh[3][]", "[]" "inputs:colorh4_0", "``colorh[4]``", "Input of type colorh[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:colorh4_1", "``colorh[4]``", "Input of type colorh[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:colorh4_arr_0", "``colorh[4][]``", "Input of type colorh[4][]", "[]" "inputs:colorh4_arr_1", "``colorh[4][]``", "Input of type colorh[4][]", "[]" "inputs:double2_0", "``double[2]``", "Input of type double[2]", "[0.0, 0.0]" "inputs:double2_1", "``double[2]``", "Input of type double[2]", "[0.0, 0.0]" "inputs:double2_arr_0", "``double[2][]``", "Input of type double[2][]", "[]" "inputs:double2_arr_1", "``double[2][]``", "Input of type double[2][]", "[]" "inputs:double3_0", "``double[3]``", "Input of type double[3]", "[0.0, 0.0, 0.0]" "inputs:double3_1", "``double[3]``", "Input of type double[3]", "[0.0, 0.0, 0.0]" "inputs:double3_arr_0", "``double[3][]``", "Input of type double[3][]", "[]" "inputs:double3_arr_1", "``double[3][]``", "Input of type double[3][]", "[]" "inputs:double4_0", "``double[4]``", "Input of type double[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:double4_1", "``double[4]``", "Input of type double[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:double4_arr_0", "``double[4][]``", "Input of type double[4][]", "[]" "inputs:double4_arr_1", "``double[4][]``", "Input of type double[4][]", "[]" "inputs:double_0", "``double``", "Input of type double", "0.0" "inputs:double_1", "``double``", "Input of type double", "0.0" "inputs:double_arr_0", "``double[]``", "Input of type double[]", "[]" "inputs:double_arr_1", "``double[]``", "Input of type double[]", "[]" "inputs:float2_0", "``float[2]``", "Input of type float[2]", "[0.0, 0.0]" "inputs:float2_1", "``float[2]``", "Input of type float[2]", "[0.0, 0.0]" "inputs:float2_arr_0", "``float[2][]``", "Input of type float[2][]", "[]" "inputs:float2_arr_1", "``float[2][]``", "Input of type float[2][]", "[]" "inputs:float3_0", "``float[3]``", "Input of type float[3]", "[0.0, 0.0, 0.0]" "inputs:float3_1", "``float[3]``", "Input of type float[3]", "[0.0, 0.0, 0.0]" "inputs:float3_arr_0", "``float[3][]``", "Input of type float[3][]", "[]" "inputs:float3_arr_1", "``float[3][]``", "Input of type float[3][]", "[]" "inputs:float4_0", "``float[4]``", "Input of type float[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:float4_1", "``float[4]``", "Input of type float[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:float4_arr_0", "``float[4][]``", "Input of type float[4][]", "[]" "inputs:float4_arr_1", "``float[4][]``", "Input of type float[4][]", "[]" "inputs:float_0", "``float``", "Input of type float", "0.0" "inputs:float_1", "``float``", "Input of type float", "0.0" "inputs:float_arr_0", "``float[]``", "Input of type float[]", "[]" "inputs:float_arr_1", "``float[]``", "Input of type float[]", "[]" "inputs:frame4_0", "``frame[4]``", "Input of type frame[4]", "[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]" "inputs:frame4_1", "``frame[4]``", "Input of type frame[4]", "[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]" "inputs:frame4_arr_0", "``frame[4][]``", "Input of type frame[4][]", "[]" "inputs:frame4_arr_1", "``frame[4][]``", "Input of type frame[4][]", "[]" "inputs:half2_0", "``half[2]``", "Input of type half[2]", "[0.0, 0.0]" "inputs:half2_1", "``half[2]``", "Input of type half[2]", "[0.0, 0.0]" "inputs:half2_arr_0", "``half[2][]``", "Input of type half[2][]", "[]" "inputs:half2_arr_1", "``half[2][]``", "Input of type half[2][]", "[]" "inputs:half3_0", "``half[3]``", "Input of type half[3]", "[0.0, 0.0, 0.0]" "inputs:half3_1", "``half[3]``", "Input of type half[3]", "[0.0, 0.0, 0.0]" "inputs:half3_arr_0", "``half[3][]``", "Input of type half[3][]", "[]" "inputs:half3_arr_1", "``half[3][]``", "Input of type half[3][]", "[]" "inputs:half4_0", "``half[4]``", "Input of type half[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:half4_1", "``half[4]``", "Input of type half[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:half4_arr_0", "``half[4][]``", "Input of type half[4][]", "[]" "inputs:half4_arr_1", "``half[4][]``", "Input of type half[4][]", "[]" "inputs:half_0", "``half``", "Input of type half", "0.0" "inputs:half_1", "``half``", "Input of type half", "0.0" "inputs:half_arr_0", "``half[]``", "Input of type half[]", "[]" "inputs:half_arr_1", "``half[]``", "Input of type half[]", "[]" "inputs:int2_0", "``int[2]``", "Input of type int[2]", "[0, 0]" "inputs:int2_1", "``int[2]``", "Input of type int[2]", "[0, 0]" "inputs:int2_arr_0", "``int[2][]``", "Input of type int[2][]", "[]" "inputs:int2_arr_1", "``int[2][]``", "Input of type int[2][]", "[]" "inputs:int3_0", "``int[3]``", "Input of type int[3]", "[0, 0, 0]" "inputs:int3_1", "``int[3]``", "Input of type int[3]", "[0, 0, 0]" "inputs:int3_arr_0", "``int[3][]``", "Input of type int[3][]", "[]" "inputs:int3_arr_1", "``int[3][]``", "Input of type int[3][]", "[]" "inputs:int4_0", "``int[4]``", "Input of type int[4]", "[0, 0, 0, 0]" "inputs:int4_1", "``int[4]``", "Input of type int[4]", "[0, 0, 0, 0]" "inputs:int4_arr_0", "``int[4][]``", "Input of type int[4][]", "[]" "inputs:int4_arr_1", "``int[4][]``", "Input of type int[4][]", "[]" "inputs:int64_0", "``int64``", "Input of type int64", "0" "inputs:int64_1", "``int64``", "Input of type int64", "0" "inputs:int64_arr_0", "``int64[]``", "Input of type int64[]", "[]" "inputs:int64_arr_1", "``int64[]``", "Input of type int64[]", "[]" "inputs:int_0", "``int``", "Input of type int", "0" "inputs:int_1", "``int``", "Input of type int", "0" "inputs:int_arr_0", "``int[]``", "Input of type int[]", "[]" "inputs:int_arr_1", "``int[]``", "Input of type int[]", "[]" "inputs:matrixd2_0", "``matrixd[2]``", "Input of type matrixd[2]", "[[0.0, 0.0], [0.0, 0.0]]" "inputs:matrixd2_1", "``matrixd[2]``", "Input of type matrixd[2]", "[[0.0, 0.0], [0.0, 0.0]]" "inputs:matrixd2_arr_0", "``matrixd[2][]``", "Input of type matrixd[2][]", "[]" "inputs:matrixd2_arr_1", "``matrixd[2][]``", "Input of type matrixd[2][]", "[]" "inputs:matrixd3_0", "``matrixd[3]``", "Input of type matrixd[3]", "[[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]]" "inputs:matrixd3_1", "``matrixd[3]``", "Input of type matrixd[3]", "[[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]]" "inputs:matrixd3_arr_0", "``matrixd[3][]``", "Input of type matrixd[3][]", "[]" "inputs:matrixd3_arr_1", "``matrixd[3][]``", "Input of type matrixd[3][]", "[]" "inputs:matrixd4_0", "``matrixd[4]``", "Input of type matrixd[4]", "[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]" "inputs:matrixd4_1", "``matrixd[4]``", "Input of type matrixd[4]", "[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]" "inputs:matrixd4_arr_0", "``matrixd[4][]``", "Input of type matrixd[4][]", "[]" "inputs:matrixd4_arr_1", "``matrixd[4][]``", "Input of type matrixd[4][]", "[]" "inputs:normald3_0", "``normald[3]``", "Input of type normald[3]", "[0.0, 0.0, 0.0]" "inputs:normald3_1", "``normald[3]``", "Input of type normald[3]", "[0.0, 0.0, 0.0]" "inputs:normald3_arr_0", "``normald[3][]``", "Input of type normald[3][]", "[]" "inputs:normald3_arr_1", "``normald[3][]``", "Input of type normald[3][]", "[]" "inputs:normalf3_0", "``normalf[3]``", "Input of type normalf[3]", "[0.0, 0.0, 0.0]" "inputs:normalf3_1", "``normalf[3]``", "Input of type normalf[3]", "[0.0, 0.0, 0.0]" "inputs:normalf3_arr_0", "``normalf[3][]``", "Input of type normalf[3][]", "[]" "inputs:normalf3_arr_1", "``normalf[3][]``", "Input of type normalf[3][]", "[]" "inputs:normalh3_0", "``normalh[3]``", "Input of type normalh[3]", "[0.0, 0.0, 0.0]" "inputs:normalh3_1", "``normalh[3]``", "Input of type normalh[3]", "[0.0, 0.0, 0.0]" "inputs:normalh3_arr_0", "``normalh[3][]``", "Input of type normalh[3][]", "[]" "inputs:normalh3_arr_1", "``normalh[3][]``", "Input of type normalh[3][]", "[]" "inputs:pointd3_0", "``pointd[3]``", "Input of type pointd[3]", "[0.0, 0.0, 0.0]" "inputs:pointd3_1", "``pointd[3]``", "Input of type pointd[3]", "[0.0, 0.0, 0.0]" "inputs:pointd3_arr_0", "``pointd[3][]``", "Input of type pointd[3][]", "[]" "inputs:pointd3_arr_1", "``pointd[3][]``", "Input of type pointd[3][]", "[]" "inputs:pointf3_0", "``pointf[3]``", "Input of type pointf[3]", "[0.0, 0.0, 0.0]" "inputs:pointf3_1", "``pointf[3]``", "Input of type pointf[3]", "[0.0, 0.0, 0.0]" "inputs:pointf3_arr_0", "``pointf[3][]``", "Input of type pointf[3][]", "[]" "inputs:pointf3_arr_1", "``pointf[3][]``", "Input of type pointf[3][]", "[]" "inputs:pointh3_0", "``pointh[3]``", "Input of type pointh[3]", "[0.0, 0.0, 0.0]" "inputs:pointh3_1", "``pointh[3]``", "Input of type pointh[3]", "[0.0, 0.0, 0.0]" "inputs:pointh3_arr_0", "``pointh[3][]``", "Input of type pointh[3][]", "[]" "inputs:pointh3_arr_1", "``pointh[3][]``", "Input of type pointh[3][]", "[]" "inputs:quatd4_0", "``quatd[4]``", "Input of type quatd[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:quatd4_1", "``quatd[4]``", "Input of type quatd[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:quatd4_arr_0", "``quatd[4][]``", "Input of type quatd[4][]", "[]" "inputs:quatd4_arr_1", "``quatd[4][]``", "Input of type quatd[4][]", "[]" "inputs:quatf4_0", "``quatf[4]``", "Input of type quatf[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:quatf4_1", "``quatf[4]``", "Input of type quatf[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:quatf4_arr_0", "``quatf[4][]``", "Input of type quatf[4][]", "[]" "inputs:quatf4_arr_1", "``quatf[4][]``", "Input of type quatf[4][]", "[]" "inputs:quath4_0", "``quath[4]``", "Input of type quath[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:quath4_1", "``quath[4]``", "Input of type quath[4]", "[0.0, 0.0, 0.0, 0.0]" "inputs:quath4_arr_0", "``quath[4][]``", "Input of type quath[4][]", "[]" "inputs:quath4_arr_1", "``quath[4][]``", "Input of type quath[4][]", "[]" "inputs:texcoordd2_0", "``texcoordd[2]``", "Input of type texcoordd[2]", "[0.0, 0.0]" "inputs:texcoordd2_1", "``texcoordd[2]``", "Input of type texcoordd[2]", "[0.0, 0.0]" "inputs:texcoordd2_arr_0", "``texcoordd[2][]``", "Input of type texcoordd[2][]", "[]" "inputs:texcoordd2_arr_1", "``texcoordd[2][]``", "Input of type texcoordd[2][]", "[]" "inputs:texcoordd3_0", "``texcoordd[3]``", "Input of type texcoordd[3]", "[0.0, 0.0, 0.0]" "inputs:texcoordd3_1", "``texcoordd[3]``", "Input of type texcoordd[3]", "[0.0, 0.0, 0.0]" "inputs:texcoordd3_arr_0", "``texcoordd[3][]``", "Input of type texcoordd[3][]", "[]" "inputs:texcoordd3_arr_1", "``texcoordd[3][]``", "Input of type texcoordd[3][]", "[]" "inputs:texcoordf2_0", "``texcoordf[2]``", "Input of type texcoordf[2]", "[0.0, 0.0]" "inputs:texcoordf2_1", "``texcoordf[2]``", "Input of type texcoordf[2]", "[0.0, 0.0]" "inputs:texcoordf2_arr_0", "``texcoordf[2][]``", "Input of type texcoordf[2][]", "[]" "inputs:texcoordf2_arr_1", "``texcoordf[2][]``", "Input of type texcoordf[2][]", "[]" "inputs:texcoordf3_0", "``texcoordf[3]``", "Input of type texcoordf[3]", "[0.0, 0.0, 0.0]" "inputs:texcoordf3_1", "``texcoordf[3]``", "Input of type texcoordf[3]", "[0.0, 0.0, 0.0]" "inputs:texcoordf3_arr_0", "``texcoordf[3][]``", "Input of type texcoordf[3][]", "[]" "inputs:texcoordf3_arr_1", "``texcoordf[3][]``", "Input of type texcoordf[3][]", "[]" "inputs:texcoordh2_0", "``texcoordh[2]``", "Input of type texcoordh[2]", "[0.0, 0.0]" "inputs:texcoordh2_1", "``texcoordh[2]``", "Input of type texcoordh[2]", "[0.0, 0.0]" "inputs:texcoordh2_arr_0", "``texcoordh[2][]``", "Input of type texcoordh[2][]", "[]" "inputs:texcoordh2_arr_1", "``texcoordh[2][]``", "Input of type texcoordh[2][]", "[]" "inputs:texcoordh3_0", "``texcoordh[3]``", "Input of type texcoordh[3]", "[0.0, 0.0, 0.0]" "inputs:texcoordh3_1", "``texcoordh[3]``", "Input of type texcoordh[3]", "[0.0, 0.0, 0.0]" "inputs:texcoordh3_arr_0", "``texcoordh[3][]``", "Input of type texcoordh[3][]", "[]" "inputs:texcoordh3_arr_1", "``texcoordh[3][]``", "Input of type texcoordh[3][]", "[]" "inputs:timecode_0", "``timecode``", "Input of type timecode", "0.0" "inputs:timecode_1", "``timecode``", "Input of type timecode", "0.0" "inputs:timecode_arr_0", "``timecode[]``", "Input of type timecode[]", "[]" "inputs:timecode_arr_1", "``timecode[]``", "Input of type timecode[]", "[]" "inputs:token_0", "``token``", "Input of type token", "default_token" "inputs:token_1", "``token``", "Input of type token", "default_token" "inputs:token_arr_0", "``token[]``", "Input of type token[]", "[]" "inputs:token_arr_1", "``token[]``", "Input of type token[]", "[]" "inputs:transform4_0", "``transform[4]``", "Input of type transform[4]", "[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]" "inputs:transform4_1", "``transform[4]``", "Input of type transform[4]", "[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]" "inputs:transform4_arr_0", "``transform[4][]``", "Input of type transform[4][]", "[]" "inputs:transform4_arr_1", "``transform[4][]``", "Input of type transform[4][]", "[]" "inputs:uchar_0", "``uchar``", "Input of type uchar", "0" "inputs:uchar_1", "``uchar``", "Input of type uchar", "0" "inputs:uchar_arr_0", "``uchar[]``", "Input of type uchar[]", "[]" "inputs:uchar_arr_1", "``uchar[]``", "Input of type uchar[]", "[]" "inputs:uint64_0", "``uint64``", "Input of type uint64", "0" "inputs:uint64_1", "``uint64``", "Input of type uint64", "0" "inputs:uint64_arr_0", "``uint64[]``", "Input of type uint64[]", "[]" "inputs:uint64_arr_1", "``uint64[]``", "Input of type uint64[]", "[]" "inputs:uint_0", "``uint``", "Input of type uint", "0" "inputs:uint_1", "``uint``", "Input of type uint", "0" "inputs:uint_arr_0", "``uint[]``", "Input of type uint[]", "[]" "inputs:uint_arr_1", "``uint[]``", "Input of type uint[]", "[]" "inputs:vectord3_0", "``vectord[3]``", "Input of type vectord[3]", "[0.0, 0.0, 0.0]" "inputs:vectord3_1", "``vectord[3]``", "Input of type vectord[3]", "[0.0, 0.0, 0.0]" "inputs:vectord3_arr_0", "``vectord[3][]``", "Input of type vectord[3][]", "[]" "inputs:vectord3_arr_1", "``vectord[3][]``", "Input of type vectord[3][]", "[]" "inputs:vectorf3_0", "``vectorf[3]``", "Input of type vectorf[3]", "[0.0, 0.0, 0.0]" "inputs:vectorf3_1", "``vectorf[3]``", "Input of type vectorf[3]", "[0.0, 0.0, 0.0]" "inputs:vectorf3_arr_0", "``vectorf[3][]``", "Input of type vectorf[3][]", "[]" "inputs:vectorf3_arr_1", "``vectorf[3][]``", "Input of type vectorf[3][]", "[]" "inputs:vectorh3_0", "``vectorh[3]``", "Input of type vectorh[3]", "[0.0, 0.0, 0.0]" "inputs:vectorh3_1", "``vectorh[3]``", "Input of type vectorh[3]", "[0.0, 0.0, 0.0]" "inputs:vectorh3_arr_0", "``vectorh[3][]``", "Input of type vectorh[3][]", "[]" "inputs:vectorh3_arr_1", "``vectorh[3][]``", "Input of type vectorh[3][]", "[]" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:bool_0", "``bool``", "Output of type bool", "False" "outputs:bool_arr_0", "``bool[]``", "Output of type bool[]", "[]" "outputs:colord3_0", "``colord[3]``", "Output of type colord[3]", "[0.0, 0.0, 0.0]" "outputs:colord3_arr_0", "``colord[3][]``", "Output of type colord[3][]", "[]" "outputs:colord4_0", "``colord[4]``", "Output of type colord[4]", "[0.0, 0.0, 0.0, 0.0]" "outputs:colord4_arr_0", "``colord[4][]``", "Output of type colord[4][]", "[]" "outputs:colorf3_0", "``colorf[3]``", "Output of type colorf[3]", "[0.0, 0.0, 0.0]" "outputs:colorf3_arr_0", "``colorf[3][]``", "Output of type colorf[3][]", "[]" "outputs:colorf4_0", "``colorf[4]``", "Output of type colorf[4]", "[0.0, 0.0, 0.0, 0.0]" "outputs:colorf4_arr_0", "``colorf[4][]``", "Output of type colorf[4][]", "[]" "outputs:colorh3_0", "``colorh[3]``", "Output of type colorh[3]", "[0.0, 0.0, 0.0]" "outputs:colorh3_arr_0", "``colorh[3][]``", "Output of type colorh[3][]", "[]" "outputs:colorh4_0", "``colorh[4]``", "Output of type colorh[4]", "[0.0, 0.0, 0.0, 0.0]" "outputs:colorh4_arr_0", "``colorh[4][]``", "Output of type colorh[4][]", "[]" "outputs:double2_0", "``double[2]``", "Output of type double[2]", "[0.0, 0.0]" "outputs:double2_arr_0", "``double[2][]``", "Output of type double[2][]", "[]" "outputs:double3_0", "``double[3]``", "Output of type double[3]", "[0.0, 0.0, 0.0]" "outputs:double3_arr_0", "``double[3][]``", "Output of type double[3][]", "[]" "outputs:double4_0", "``double[4]``", "Output of type double[4]", "[0.0, 0.0, 0.0, 0.0]" "outputs:double4_arr_0", "``double[4][]``", "Output of type double[4][]", "[]" "outputs:double_0", "``double``", "Output of type double", "0.0" "outputs:double_arr_0", "``double[]``", "Output of type double[]", "[]" "outputs:float2_0", "``float[2]``", "Output of type float[2]", "[0.0, 0.0]" "outputs:float2_arr_0", "``float[2][]``", "Output of type float[2][]", "[]" "outputs:float3_0", "``float[3]``", "Output of type float[3]", "[0.0, 0.0, 0.0]" "outputs:float3_arr_0", "``float[3][]``", "Output of type float[3][]", "[]" "outputs:float4_0", "``float[4]``", "Output of type float[4]", "[0.0, 0.0, 0.0, 0.0]" "outputs:float4_arr_0", "``float[4][]``", "Output of type float[4][]", "[]" "outputs:float_0", "``float``", "Output of type float", "0.0" "outputs:float_arr_0", "``float[]``", "Output of type float[]", "[]" "outputs:frame4_0", "``frame[4]``", "Output of type frame[4]", "[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]" "outputs:frame4_arr_0", "``frame[4][]``", "Output of type frame[4][]", "[]" "outputs:half2_0", "``half[2]``", "Output of type half[2]", "[0.0, 0.0]" "outputs:half2_arr_0", "``half[2][]``", "Output of type half[2][]", "[]" "outputs:half3_0", "``half[3]``", "Output of type half[3]", "[0.0, 0.0, 0.0]" "outputs:half3_arr_0", "``half[3][]``", "Output of type half[3][]", "[]" "outputs:half4_0", "``half[4]``", "Output of type half[4]", "[0.0, 0.0, 0.0, 0.0]" "outputs:half4_arr_0", "``half[4][]``", "Output of type half[4][]", "[]" "outputs:half_0", "``half``", "Output of type half", "0.0" "outputs:half_arr_0", "``half[]``", "Output of type half[]", "[]" "outputs:int2_0", "``int[2]``", "Output of type int[2]", "[0, 0]" "outputs:int2_arr_0", "``int[2][]``", "Output of type int[2][]", "[]" "outputs:int3_0", "``int[3]``", "Output of type int[3]", "[0, 0, 0]" "outputs:int3_arr_0", "``int[3][]``", "Output of type int[3][]", "[]" "outputs:int4_0", "``int[4]``", "Output of type int[4]", "[0, 0, 0, 0]" "outputs:int4_arr_0", "``int[4][]``", "Output of type int[4][]", "[]" "outputs:int64_0", "``int64``", "Output of type int64", "0" "outputs:int64_arr_0", "``int64[]``", "Output of type int64[]", "[]" "outputs:int_0", "``int``", "Output of type int", "0" "outputs:int_arr_0", "``int[]``", "Output of type int[]", "[]" "outputs:matrixd2_0", "``matrixd[2]``", "Output of type matrixd[2]", "[[0.0, 0.0], [0.0, 0.0]]" "outputs:matrixd2_arr_0", "``matrixd[2][]``", "Output of type matrixd[2][]", "[]" "outputs:matrixd3_0", "``matrixd[3]``", "Output of type matrixd[3]", "[[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]]" "outputs:matrixd3_arr_0", "``matrixd[3][]``", "Output of type matrixd[3][]", "[]" "outputs:matrixd4_0", "``matrixd[4]``", "Output of type matrixd[4]", "[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]" "outputs:matrixd4_arr_0", "``matrixd[4][]``", "Output of type matrixd[4][]", "[]" "outputs:normald3_0", "``normald[3]``", "Output of type normald[3]", "[0.0, 0.0, 0.0]" "outputs:normald3_arr_0", "``normald[3][]``", "Output of type normald[3][]", "[]" "outputs:normalf3_0", "``normalf[3]``", "Output of type normalf[3]", "[0.0, 0.0, 0.0]" "outputs:normalf3_arr_0", "``normalf[3][]``", "Output of type normalf[3][]", "[]" "outputs:normalh3_0", "``normalh[3]``", "Output of type normalh[3]", "[0.0, 0.0, 0.0]" "outputs:normalh3_arr_0", "``normalh[3][]``", "Output of type normalh[3][]", "[]" "outputs:pointd3_0", "``pointd[3]``", "Output of type pointd[3]", "[0.0, 0.0, 0.0]" "outputs:pointd3_arr_0", "``pointd[3][]``", "Output of type pointd[3][]", "[]" "outputs:pointf3_0", "``pointf[3]``", "Output of type pointf[3]", "[0.0, 0.0, 0.0]" "outputs:pointf3_arr_0", "``pointf[3][]``", "Output of type pointf[3][]", "[]" "outputs:pointh3_0", "``pointh[3]``", "Output of type pointh[3]", "[0.0, 0.0, 0.0]" "outputs:pointh3_arr_0", "``pointh[3][]``", "Output of type pointh[3][]", "[]" "outputs:quatd4_0", "``quatd[4]``", "Output of type quatd[4]", "[0.0, 0.0, 0.0, 0.0]" "outputs:quatd4_arr_0", "``quatd[4][]``", "Output of type quatd[4][]", "[]" "outputs:quatf4_0", "``quatf[4]``", "Output of type quatf[4]", "[0.0, 0.0, 0.0, 0.0]" "outputs:quatf4_arr_0", "``quatf[4][]``", "Output of type quatf[4][]", "[]" "outputs:quath4_0", "``quath[4]``", "Output of type quath[4]", "[0.0, 0.0, 0.0, 0.0]" "outputs:quath4_arr_0", "``quath[4][]``", "Output of type quath[4][]", "[]" "outputs:texcoordd2_0", "``texcoordd[2]``", "Output of type texcoordd[2]", "[0.0, 0.0]" "outputs:texcoordd2_arr_0", "``texcoordd[2][]``", "Output of type texcoordd[2][]", "[]" "outputs:texcoordd3_0", "``texcoordd[3]``", "Output of type texcoordd[3]", "[0.0, 0.0, 0.0]" "outputs:texcoordd3_arr_0", "``texcoordd[3][]``", "Output of type texcoordd[3][]", "[]" "outputs:texcoordf2_0", "``texcoordf[2]``", "Output of type texcoordf[2]", "[0.0, 0.0]" "outputs:texcoordf2_arr_0", "``texcoordf[2][]``", "Output of type texcoordf[2][]", "[]" "outputs:texcoordf3_0", "``texcoordf[3]``", "Output of type texcoordf[3]", "[0.0, 0.0, 0.0]" "outputs:texcoordf3_arr_0", "``texcoordf[3][]``", "Output of type texcoordf[3][]", "[]" "outputs:texcoordh2_0", "``texcoordh[2]``", "Output of type texcoordh[2]", "[0.0, 0.0]" "outputs:texcoordh2_arr_0", "``texcoordh[2][]``", "Output of type texcoordh[2][]", "[]" "outputs:texcoordh3_0", "``texcoordh[3]``", "Output of type texcoordh[3]", "[0.0, 0.0, 0.0]" "outputs:texcoordh3_arr_0", "``texcoordh[3][]``", "Output of type texcoordh[3][]", "[]" "outputs:timecode_0", "``timecode``", "Output of type timecode", "0.0" "outputs:timecode_arr_0", "``timecode[]``", "Output of type timecode[]", "[]" "outputs:token_0", "``token``", "Output of type token", "default_token" "outputs:token_arr_0", "``token[]``", "Output of type token[]", "[]" "outputs:transform4_0", "``transform[4]``", "Output of type transform[4]", "[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]" "outputs:transform4_arr_0", "``transform[4][]``", "Output of type transform[4][]", "[]" "outputs:uchar_0", "``uchar``", "Output of type uchar", "0" "outputs:uchar_arr_0", "``uchar[]``", "Output of type uchar[]", "[]" "outputs:uint64_0", "``uint64``", "Output of type uint64", "0" "outputs:uint64_arr_0", "``uint64[]``", "Output of type uint64[]", "[]" "outputs:uint_0", "``uint``", "Output of type uint", "0" "outputs:uint_arr_0", "``uint[]``", "Output of type uint[]", "[]" "outputs:vectord3_0", "``vectord[3]``", "Output of type vectord[3]", "[0.0, 0.0, 0.0]" "outputs:vectord3_arr_0", "``vectord[3][]``", "Output of type vectord[3][]", "[]" "outputs:vectorf3_0", "``vectorf[3]``", "Output of type vectorf[3]", "[0.0, 0.0, 0.0]" "outputs:vectorf3_arr_0", "``vectorf[3][]``", "Output of type vectorf[3][]", "[]" "outputs:vectorh3_0", "``vectorh[3]``", "Output of type vectorh[3]", "[0.0, 0.0, 0.0]" "outputs:vectorh3_arr_0", "``vectorh[3][]``", "Output of type vectorh[3][]", "[]" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.UniversalAdd" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "usd" "uiName", "Universal Add For All Types (Python)" "Categories", "examples" "Generated Class Name", "OgnPyUniversalAddDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnBouncingCubesGpu.rst
.. _omni_graph_examples_python_BouncingCubesGpu_1: .. _omni_graph_examples_python_BouncingCubesGpu: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Deprecated Node - Bouncing Cubes (GPU) :keywords: lang-en omnigraph node examples python bouncing-cubes-gpu Deprecated Node - Bouncing Cubes (GPU) ====================================== .. <description> Deprecated node - no longer supported .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.BouncingCubesGpu" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "True" "Implementation Language", "Python" "Default Memory Type", "cuda" "Generated Code Exclusions", "usd, test" "uiName", "Deprecated Node - Bouncing Cubes (GPU)" "__memoryType", "cuda" "Categories", "examples" "Generated Class Name", "OgnBouncingCubesGpuDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnCountTo.rst
.. _omni_graph_examples_python_CountTo_1: .. _omni_graph_examples_python_CountTo: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Count To :keywords: lang-en omnigraph node examples python count-to Count To ======== .. <description> Example stateful node that counts to countTo by a certain increment .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:countTo", "``double``", "The ceiling to count to", "3" "inputs:increment", "``double``", "Increment to count by", "0.1" "inputs:reset", "``bool``", "Whether to reset the count", "False" "inputs:trigger", "``double[3]``", "Position to be used as a trigger for the counting", "[0.0, 0.0, 0.0]" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:count", "``double``", "The current count", "0.0" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.CountTo" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Count To" "Categories", "examples" "Generated Class Name", "OgnCountToDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnPositionToColor.rst
.. _omni_graph_examples_python_PositionToColor_1: .. _omni_graph_examples_python_PositionToColor: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: PositionToColor :keywords: lang-en omnigraph node examples python position-to-color PositionToColor =============== .. <description> This node takes positional data (double3) and converts to a color, and outputs as color3f[] (which seems to be the default color connection in USD) .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:color_offset", "``colorf[3]``", "Offset added to the scaled color to get the final result", "[0.0, 0.0, 0.0]" "inputs:position", "``double[3]``", "Position to be converted to a color", "[0.0, 0.0, 0.0]" "inputs:scale", "``float``", "Constant by which to multiply the position to get the color", "1.0" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:color", "``colorf[3][]``", "Color value extracted from the position", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.PositionToColor" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "PositionToColor" "Categories", "examples" "Generated Class Name", "OgnPositionToColorDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnDeformerYAxis.rst
.. _omni_graph_examples_python_DeformerYAxis_1: .. _omni_graph_examples_python_DeformerYAxis: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Sine Wave Deformer Y-axis (Python) :keywords: lang-en omnigraph node examples python deformer-y-axis Sine Wave Deformer Y-axis (Python) ================================== .. <description> Example node applying a sine wave deformation to a set of points, written in Python. Deforms along Y-axis instead of Z .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:multiplier", "``double``", "The multiplier for the amplitude of the sine wave", "1" "inputs:offset", "``double``", "The offset of the sine wave", "0" "inputs:points", "``pointf[3][]``", "The input points to be deformed", "[]" "inputs:wavelength", "``double``", "The wavelength of the sine wave", "1" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:points", "``pointf[3][]``", "The deformed output points", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.DeformerYAxis" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Sine Wave Deformer Y-axis (Python)" "Categories", "examples" "Generated Class Name", "OgnDeformerYAxisDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnComposeDouble3.rst
.. _omni_graph_examples_python_ComposeDouble3_1: .. _omni_graph_examples_python_ComposeDouble3: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Compose Double3 (Python) :keywords: lang-en omnigraph node examples python compose-double3 Compose Double3 (Python) ======================== .. <description> Example node that takes in the components of three doubles and outputs a double3 .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:x", "``double``", "The x component of the input double3", "0" "inputs:y", "``double``", "The y component of the input double3", "0" "inputs:z", "``double``", "The z component of the input double3", "0" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:double3", "``double[3]``", "Output double3", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.ComposeDouble3" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Compose Double3 (Python)" "Categories", "examples" "Generated Class Name", "OgnComposeDouble3Database" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnMultDouble.rst
.. _omni_graph_examples_python_MultDouble_1: .. _omni_graph_examples_python_MultDouble: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Multiply Double (Python) :keywords: lang-en omnigraph node examples python mult-double Multiply Double (Python) ======================== .. <description> Example node that multiplies 2 doubles together .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:a", "``double``", "Input a", "0" "inputs:b", "``double``", "Input b", "0" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:out", "``double``", "The result of a * b", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.MultDouble" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Multiply Double (Python)" "Categories", "examples" "Generated Class Name", "OgnMultDoubleDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnDecomposeDouble3.rst
.. _omni_graph_examples_python_DecomposeDouble3_1: .. _omni_graph_examples_python_DecomposeDouble3: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Decompose Double3 (Python) :keywords: lang-en omnigraph node examples python decompose-double3 Decompose Double3 (Python) ========================== .. <description> Example node that takes in a double3 and outputs scalars that are its components .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:double3", "``double[3]``", "Input double3", "[0, 0, 0]" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:x", "``double``", "The x component of the input double3", "None" "outputs:y", "``double``", "The y component of the input double3", "None" "outputs:z", "``double``", "The z component of the input double3", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.DecomposeDouble3" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Decompose Double3 (Python)" "Categories", "examples" "Generated Class Name", "OgnDecomposeDouble3Database" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnDynamicSwitch.rst
.. _omni_graph_examples_python_DynamicSwitch_1: .. _omni_graph_examples_python_DynamicSwitch: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Dynamic Switch :keywords: lang-en omnigraph node examples python dynamic-switch Dynamic Switch ============== .. <description> A switch node that will enable the left side or right side depending on the input. Requires dynamic scheduling to work .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:left_value", "``int``", "Left value to output", "-1" "inputs:right_value", "``int``", "Right value to output", "1" "inputs:switch", "``int``", "Enables right value if greater than 0, else left value", "0" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:left_out", "``int``", "Left side output", "0" "outputs:right_out", "``int``", "Right side output", "0" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.DynamicSwitch" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "usd" "uiName", "Dynamic Switch" "Categories", "examples" "Generated Class Name", "OgnDynamicSwitchDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnClampDouble.rst
.. _omni_graph_examples_python_ClampDouble_1: .. _omni_graph_examples_python_ClampDouble: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Clamp Double (Python) :keywords: lang-en omnigraph node examples python clamp-double Clamp Double (Python) ===================== .. <description> Example node that a number to a range .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:max", "``double``", "Maximum value", "0" "inputs:min", "``double``", "Mininum value", "0" "inputs:num", "``double``", "Input number", "0" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:out", "``double``", "The result of the number, having been clamped to the range min,max", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.ClampDouble" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Clamp Double (Python)" "Categories", "examples" "Generated Class Name", "OgnClampDoubleDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnBouncingCubesCpu.rst
.. _omni_graph_examples_python_BouncingCubes_1: .. _omni_graph_examples_python_BouncingCubes: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Deprecated Node - Bouncing Cubes (GPU) :keywords: lang-en omnigraph node examples python bouncing-cubes Deprecated Node - Bouncing Cubes (GPU) ====================================== .. <description> Deprecated node - no longer supported .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. State ----- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "Translations (*state:translations*)", "``float[3][]``", "Set of translation attributes gathered from the inputs. Translations have velocities applied to them each evaluation.", "None" "Velocities (*state:velocities*)", "``float[]``", "Set of velocity attributes gathered from the inputs", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.BouncingCubes" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "True" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Deprecated Node - Bouncing Cubes (GPU)" "Categories", "examples" "Generated Class Name", "OgnBouncingCubesCpuDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnExecSwitch.rst
.. _omni_graph_examples_python_ExecSwitch_1: .. _omni_graph_examples_python_ExecSwitch: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Exec Switch :keywords: lang-en omnigraph node examples python exec-switch Exec Switch =========== .. <description> A switch node that will enable the left side or right side depending on the input .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "Exec In (*inputs:execIn*)", "``execution``", "Trigger the output", "None" "inputs:switch", "``bool``", "Enables right value if greater than 0, else left value", "False" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:execLeftOut", "``execution``", "Left execution", "None" "outputs:execRightOut", "``execution``", "Right execution", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.ExecSwitch" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "usd" "uiName", "Exec Switch" "Categories", "examples" "Generated Class Name", "OgnExecSwitchDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnDeformerCpu.rst
.. _omni_graph_examples_python_DeformerPy_1: .. _omni_graph_examples_python_DeformerPy: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Sine Wave Deformer Z-axis (Python) :keywords: lang-en omnigraph node examples python deformer-py Sine Wave Deformer Z-axis (Python) ================================== .. <description> Example node applying a sine wave deformation to a set of points, written in Python .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:multiplier", "``float``", "The multiplier for the amplitude of the sine wave", "1.0" "inputs:points", "``pointf[3][]``", "The input points to be deformed", "[]" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:points", "``pointf[3][]``", "The deformed output points", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.DeformerPy" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Sine Wave Deformer Z-axis (Python)" "Categories", "examples" "Generated Class Name", "OgnDeformerCpuDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnAbsDouble.rst
.. _omni_graph_examples_python_AbsDouble_1: .. _omni_graph_examples_python_AbsDouble: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Abs Double (Python) :keywords: lang-en omnigraph node examples python abs-double Abs Double (Python) =================== .. <description> Example node that takes the absolute value of a number .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:num", "``double``", "Input number", "0" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:out", "``double``", "The absolute value of input number", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.AbsDouble" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Abs Double (Python)" "Categories", "examples" "Generated Class Name", "OgnAbsDoubleDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnTestInitNode.rst
.. _omni_graph_examples_python_TestInitNode_1: .. _omni_graph_examples_python_TestInitNode: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: TestInitNode :keywords: lang-en omnigraph node examples python test-init-node TestInitNode ============ .. <description> Test Init Node .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:value", "``float``", "Value", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.TestInitNode" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "TestInitNode" "Categories", "examples" "Generated Class Name", "OgnTestInitNodeDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnSubtractDouble.rst
.. _omni_graph_examples_python_SubtractDouble_1: .. _omni_graph_examples_python_SubtractDouble: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Subtract Double (Python) :keywords: lang-en omnigraph node examples python subtract-double Subtract Double (Python) ======================== .. <description> Example node that subtracts 2 doubles from each other .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:a", "``double``", "Input a", "0" "inputs:b", "``double``", "Input b", "0" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:out", "``double``", "The result of a - b", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.SubtractDouble" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Subtract Double (Python)" "Categories", "examples" "Generated Class Name", "OgnSubtractDoubleDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnIntCounter.rst
.. _omni_graph_examples_python_IntCounter_1: .. _omni_graph_examples_python_IntCounter: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Int Counter :keywords: lang-en omnigraph node examples python int-counter Int Counter =========== .. <description> Example stateful node that increments every time it's evaluated .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:increment", "``int``", "Increment to count by", "1" "inputs:reset", "``bool``", "Whether to reset the count", "False" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:count", "``int``", "The current count", "0" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.IntCounter" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "uiName", "Int Counter" "Categories", "examples" "Generated Class Name", "OgnIntCounterDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnDeformerGpu.rst
.. _omni_graph_examples_python_DeformerPyGpu_1: .. _omni_graph_examples_python_DeformerPyGpu: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Sine Wave Deformer Z-axis (Python GPU) :keywords: lang-en omnigraph node examples python deformer-py-gpu Sine Wave Deformer Z-axis (Python GPU) ====================================== .. <description> Example node applying a sine wave deformation to a set of points, written in Python for the GPU .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Inputs ------ .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "inputs:multiplier", "``float``", "The multiplier for the amplitude of the sine wave", "1" "inputs:points", "``pointf[3][]``", "The input points to be deformed", "[]" Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:points", "``pointf[3][]``", "The deformed output points", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.DeformerPyGpu" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cuda" "Generated Code Exclusions", "None" "uiName", "Sine Wave Deformer Z-axis (Python GPU)" "__memoryType", "cuda" "Categories", "examples" "Generated Class Name", "OgnDeformerGpuDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/ogn/docs/OgnTestSingleton.rst
.. _omni_graph_examples_python_TestSingleton_1: .. _omni_graph_examples_python_TestSingleton: .. ================================================================================ .. THIS PAGE IS AUTO-GENERATED. DO NOT MANUALLY EDIT. .. ================================================================================ :orphan: .. meta:: :title: Test Singleton :keywords: lang-en omnigraph node examples python test-singleton Test Singleton ============== .. <description> Example node that showcases the use of singleton nodes (nodes that can have only 1 instance) .. </description> Installation ------------ To use this node enable :ref:`omni.graph.examples.python<ext_omni_graph_examples_python>` in the Extension Manager. Outputs ------- .. csv-table:: :header: "Name", "Type", "Descripton", "Default" :widths: 20, 20, 50, 10 "outputs:out", "``double``", "The unique output of the only instance of this node", "None" Metadata -------- .. csv-table:: :header: "Name", "Value" :widths: 30,70 "Unique ID", "omni.graph.examples.python.TestSingleton" "Version", "1" "Extension", "omni.graph.examples.python" "Has State?", "False" "Implementation Language", "Python" "Default Memory Type", "cpu" "Generated Code Exclusions", "None" "singleton", "1" "uiName", "Test Singleton" "Categories", "examples" "Generated Class Name", "OgnTestSingletonDatabase" "Python Module", "omni.graph.examples.python"
omniverse-code/kit/exts/omni.graph.examples.python/PACKAGE-LICENSES/omni.graph.examples.python-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related documentation without an express license agreement from NVIDIA CORPORATION is strictly prohibited.
omniverse-code/kit/exts/omni.graph.examples.python/config/extension.toml
[package] title = "OmniGraph Python Examples" version = "1.3.2" category = "Graph" readme = "docs/README.md" changelog = "docs/CHANGELOG.md" description = "Contains a set of sample OmniGraph nodes implemented in Python." repository = "" keywords = ["kit", "omnigraph", "nodes", "python"] # Main module for the Python interface [[python.module]] name = "omni.graph.examples.python" # Watch the .ogn files for hot reloading (only works for Python files) [fswatcher.patterns] include = ["*.ogn", "*.py"] exclude = ["Ogn*Database.py"] # Python array data uses numpy as its format [python.pipapi] requirements = ["numpy"] # SWIPAT filed under: http://nvbugs/3193231 # Other extensions that need to load in order for this one to work [dependencies] "omni.graph" = {} "omni.graph.tools" = {} "omni.kit.test" = {} "omni.kit.pipapi" = {} [[test]] stdoutFailPatterns.exclude = [ "*[omni.graph.core.plugin] getTypes called on non-existent path*", "*Trying to create multiple instances of singleton*" ] [documentation] deps = [ ["kit-sdk", "_build/docs/kit-sdk/latest"], # WAR to include omni.graph refs until that workflow is moved ] pages = [ "docs/Overview.md", "docs/CHANGELOG.md", ]
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/__init__.py
"""Module containing example nodes written in pure Python. There is no public API to this module. """ __all__ = [] from ._impl.extension import _PublicExtension # noqa: F401
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnSubtractDoubleDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.SubtractDouble Example node that subtracts 2 doubles from each other """ import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnSubtractDoubleDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.SubtractDouble Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.a inputs.b Outputs: outputs.out """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:a', 'double', 0, None, 'Input a', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:b', 'double', 0, None, 'Input b', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:out', 'double', 0, None, 'The result of a - b', {}, True, None, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"a", "b", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.a, self._attributes.b] self._batchedReadValues = [0, 0] @property def a(self): return self._batchedReadValues[0] @a.setter def a(self, value): self._batchedReadValues[0] = value @property def b(self): return self._batchedReadValues[1] @b.setter def b(self, value): self._batchedReadValues[1] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"out", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def out(self): value = self._batchedWriteValues.get(self._attributes.out) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.out) return data_view.get() @out.setter def out(self, value): self._batchedWriteValues[self._attributes.out] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnSubtractDoubleDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnSubtractDoubleDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnSubtractDoubleDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnSubtractDoubleDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.SubtractDouble' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnSubtractDoubleDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnSubtractDoubleDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnSubtractDoubleDatabase(node) try: compute_function = getattr(OgnSubtractDoubleDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnSubtractDoubleDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnSubtractDoubleDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnSubtractDoubleDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnSubtractDoubleDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnSubtractDoubleDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnSubtractDoubleDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnSubtractDoubleDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnSubtractDoubleDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnSubtractDoubleDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Subtract Double (Python)") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example node that subtracts 2 doubles from each other") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnSubtractDoubleDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnSubtractDoubleDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnSubtractDoubleDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnSubtractDoubleDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.SubtractDouble")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnAbsDoubleDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.AbsDouble Example node that takes the absolute value of a number """ import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnAbsDoubleDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.AbsDouble Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.num Outputs: outputs.out """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:num', 'double', 0, None, 'Input number', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:out', 'double', 0, None, 'The absolute value of input number', {}, True, None, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"num", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.num] self._batchedReadValues = [0] @property def num(self): return self._batchedReadValues[0] @num.setter def num(self, value): self._batchedReadValues[0] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"out", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def out(self): value = self._batchedWriteValues.get(self._attributes.out) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.out) return data_view.get() @out.setter def out(self, value): self._batchedWriteValues[self._attributes.out] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnAbsDoubleDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnAbsDoubleDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnAbsDoubleDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnAbsDoubleDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.AbsDouble' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnAbsDoubleDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnAbsDoubleDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnAbsDoubleDatabase(node) try: compute_function = getattr(OgnAbsDoubleDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnAbsDoubleDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnAbsDoubleDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnAbsDoubleDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnAbsDoubleDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnAbsDoubleDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnAbsDoubleDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnAbsDoubleDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnAbsDoubleDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnAbsDoubleDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Abs Double (Python)") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example node that takes the absolute value of a number") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnAbsDoubleDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnAbsDoubleDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnAbsDoubleDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnAbsDoubleDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.AbsDouble")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnCountToDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.CountTo Example stateful node that counts to countTo by a certain increment """ import numpy import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnCountToDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.CountTo Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.countTo inputs.increment inputs.reset inputs.trigger Outputs: outputs.count """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:countTo', 'double', 0, None, 'The ceiling to count to', {ogn.MetadataKeys.DEFAULT: '3'}, True, 3, False, ''), ('inputs:increment', 'double', 0, None, 'Increment to count by', {ogn.MetadataKeys.DEFAULT: '0.1'}, True, 0.1, False, ''), ('inputs:reset', 'bool', 0, None, 'Whether to reset the count', {ogn.MetadataKeys.DEFAULT: 'false'}, True, False, False, ''), ('inputs:trigger', 'double3', 0, None, 'Position to be used as a trigger for the counting', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:count', 'double', 0, None, 'The current count', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"countTo", "increment", "reset", "trigger", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.countTo, self._attributes.increment, self._attributes.reset, self._attributes.trigger] self._batchedReadValues = [3, 0.1, False, [0.0, 0.0, 0.0]] @property def countTo(self): return self._batchedReadValues[0] @countTo.setter def countTo(self, value): self._batchedReadValues[0] = value @property def increment(self): return self._batchedReadValues[1] @increment.setter def increment(self, value): self._batchedReadValues[1] = value @property def reset(self): return self._batchedReadValues[2] @reset.setter def reset(self, value): self._batchedReadValues[2] = value @property def trigger(self): return self._batchedReadValues[3] @trigger.setter def trigger(self, value): self._batchedReadValues[3] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"count", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def count(self): value = self._batchedWriteValues.get(self._attributes.count) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.count) return data_view.get() @count.setter def count(self, value): self._batchedWriteValues[self._attributes.count] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnCountToDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnCountToDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnCountToDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnCountToDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.CountTo' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnCountToDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnCountToDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnCountToDatabase(node) try: compute_function = getattr(OgnCountToDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnCountToDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnCountToDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnCountToDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnCountToDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnCountToDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnCountToDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnCountToDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnCountToDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnCountToDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Count To") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example stateful node that counts to countTo by a certain increment") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnCountToDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnCountToDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnCountToDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnCountToDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.CountTo")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnVersionedDeformerPyDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.VersionedDeformerPy Test node to confirm version upgrading works. Performs a basic deformation on some points. """ import numpy import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnVersionedDeformerPyDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.VersionedDeformerPy Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.points inputs.wavelength Outputs: outputs.points """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:points', 'point3f[]', 0, None, 'Set of points to be deformed', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:wavelength', 'float', 0, None, 'Wavelength of sinusodal deformer function', {ogn.MetadataKeys.DEFAULT: '50.0'}, True, 50.0, False, ''), ('outputs:points', 'point3f[]', 0, None, 'Set of deformed points', {}, True, None, False, ''), ]) @classmethod def _populate_role_data(cls): """Populate a role structure with the non-default roles on this node type""" role_data = super()._populate_role_data() role_data.inputs.points = og.AttributeRole.POSITION role_data.outputs.points = og.AttributeRole.POSITION return role_data class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"wavelength", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.wavelength] self._batchedReadValues = [50.0] @property def points(self): data_view = og.AttributeValueHelper(self._attributes.points) return data_view.get() @points.setter def points(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.points) data_view = og.AttributeValueHelper(self._attributes.points) data_view.set(value) self.points_size = data_view.get_array_size() @property def wavelength(self): return self._batchedReadValues[0] @wavelength.setter def wavelength(self, value): self._batchedReadValues[0] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self.points_size = None self._batchedWriteValues = { } @property def points(self): data_view = og.AttributeValueHelper(self._attributes.points) return data_view.get(reserved_element_count=self.points_size) @points.setter def points(self, value): data_view = og.AttributeValueHelper(self._attributes.points) data_view.set(value) self.points_size = data_view.get_array_size() def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnVersionedDeformerPyDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnVersionedDeformerPyDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnVersionedDeformerPyDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnVersionedDeformerPyDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.VersionedDeformerPy' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnVersionedDeformerPyDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnVersionedDeformerPyDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnVersionedDeformerPyDatabase(node) try: compute_function = getattr(OgnVersionedDeformerPyDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnVersionedDeformerPyDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnVersionedDeformerPyDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnVersionedDeformerPyDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnVersionedDeformerPyDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnVersionedDeformerPyDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnVersionedDeformerPyDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnVersionedDeformerPyDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnVersionedDeformerPyDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnVersionedDeformerPyDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "VersionedDeformerPy") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Test node to confirm version upgrading works. Performs a basic deformation on some points.") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnVersionedDeformerPyDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnVersionedDeformerPyDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnVersionedDeformerPyDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnVersionedDeformerPyDatabase.abi, 2) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.VersionedDeformerPy")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnDecomposeDouble3Database.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.DecomposeDouble3 Example node that takes in a double3 and outputs scalars that are its components """ import numpy import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnDecomposeDouble3Database(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.DecomposeDouble3 Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.double3 Outputs: outputs.x outputs.y outputs.z """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:double3', 'double3', 0, None, 'Input double3', {ogn.MetadataKeys.DEFAULT: '[0, 0, 0]'}, True, [0, 0, 0], False, ''), ('outputs:x', 'double', 0, None, 'The x component of the input double3', {}, True, None, False, ''), ('outputs:y', 'double', 0, None, 'The y component of the input double3', {}, True, None, False, ''), ('outputs:z', 'double', 0, None, 'The z component of the input double3', {}, True, None, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"double3", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.double3] self._batchedReadValues = [[0, 0, 0]] @property def double3(self): return self._batchedReadValues[0] @double3.setter def double3(self, value): self._batchedReadValues[0] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"x", "y", "z", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def x(self): value = self._batchedWriteValues.get(self._attributes.x) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.x) return data_view.get() @x.setter def x(self, value): self._batchedWriteValues[self._attributes.x] = value @property def y(self): value = self._batchedWriteValues.get(self._attributes.y) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.y) return data_view.get() @y.setter def y(self, value): self._batchedWriteValues[self._attributes.y] = value @property def z(self): value = self._batchedWriteValues.get(self._attributes.z) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.z) return data_view.get() @z.setter def z(self, value): self._batchedWriteValues[self._attributes.z] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnDecomposeDouble3Database.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnDecomposeDouble3Database.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnDecomposeDouble3Database.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnDecomposeDouble3Database.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.DecomposeDouble3' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnDecomposeDouble3Database.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnDecomposeDouble3Database(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnDecomposeDouble3Database(node) try: compute_function = getattr(OgnDecomposeDouble3Database.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnDecomposeDouble3Database.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnDecomposeDouble3Database._initialize_per_node_data(node) initialize_function = getattr(OgnDecomposeDouble3Database.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnDecomposeDouble3Database.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnDecomposeDouble3Database.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnDecomposeDouble3Database._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnDecomposeDouble3Database._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnDecomposeDouble3Database.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnDecomposeDouble3Database.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Decompose Double3 (Python)") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example node that takes in a double3 and outputs scalars that are its components") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnDecomposeDouble3Database.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnDecomposeDouble3Database.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnDecomposeDouble3Database.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnDecomposeDouble3Database.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.DecomposeDouble3")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnDeformerCpuDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.DeformerPy Example node applying a sine wave deformation to a set of points, written in Python """ import numpy import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnDeformerCpuDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.DeformerPy Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.multiplier inputs.points Outputs: outputs.points """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:multiplier', 'float', 0, None, 'The multiplier for the amplitude of the sine wave', {ogn.MetadataKeys.DEFAULT: '1.0'}, True, 1.0, False, ''), ('inputs:points', 'point3f[]', 0, None, 'The input points to be deformed', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:points', 'point3f[]', 0, None, 'The deformed output points', {}, True, None, False, ''), ]) @classmethod def _populate_role_data(cls): """Populate a role structure with the non-default roles on this node type""" role_data = super()._populate_role_data() role_data.inputs.points = og.AttributeRole.POSITION role_data.outputs.points = og.AttributeRole.POSITION return role_data class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"multiplier", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.multiplier] self._batchedReadValues = [1.0] @property def points(self): data_view = og.AttributeValueHelper(self._attributes.points) return data_view.get() @points.setter def points(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.points) data_view = og.AttributeValueHelper(self._attributes.points) data_view.set(value) self.points_size = data_view.get_array_size() @property def multiplier(self): return self._batchedReadValues[0] @multiplier.setter def multiplier(self, value): self._batchedReadValues[0] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self.points_size = None self._batchedWriteValues = { } @property def points(self): data_view = og.AttributeValueHelper(self._attributes.points) return data_view.get(reserved_element_count=self.points_size) @points.setter def points(self, value): data_view = og.AttributeValueHelper(self._attributes.points) data_view.set(value) self.points_size = data_view.get_array_size() def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnDeformerCpuDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnDeformerCpuDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnDeformerCpuDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnDeformerCpuDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.DeformerPy' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnDeformerCpuDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnDeformerCpuDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnDeformerCpuDatabase(node) try: compute_function = getattr(OgnDeformerCpuDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnDeformerCpuDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnDeformerCpuDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnDeformerCpuDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnDeformerCpuDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnDeformerCpuDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnDeformerCpuDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnDeformerCpuDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnDeformerCpuDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnDeformerCpuDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Sine Wave Deformer Z-axis (Python)") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example node applying a sine wave deformation to a set of points, written in Python") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnDeformerCpuDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnDeformerCpuDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnDeformerCpuDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnDeformerCpuDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.DeformerPy")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnExecSwitchDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.ExecSwitch A switch node that will enable the left side or right side depending on the input """ import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnExecSwitchDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.ExecSwitch Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.execIn inputs.switch Outputs: outputs.execLeftOut outputs.execRightOut """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:execIn', 'execution', 0, 'Exec In', 'Trigger the output', {}, True, None, False, ''), ('inputs:switch', 'bool', 0, None, 'Enables right value if greater than 0, else left value', {ogn.MetadataKeys.DEFAULT: 'false'}, True, False, False, ''), ('outputs:execLeftOut', 'execution', 0, None, 'Left execution', {}, True, None, False, ''), ('outputs:execRightOut', 'execution', 0, None, 'Right execution', {}, True, None, False, ''), ]) @classmethod def _populate_role_data(cls): """Populate a role structure with the non-default roles on this node type""" role_data = super()._populate_role_data() role_data.inputs.execIn = og.AttributeRole.EXECUTION role_data.outputs.execLeftOut = og.AttributeRole.EXECUTION role_data.outputs.execRightOut = og.AttributeRole.EXECUTION return role_data class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"execIn", "switch", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.execIn, self._attributes.switch] self._batchedReadValues = [None, False] @property def execIn(self): return self._batchedReadValues[0] @execIn.setter def execIn(self, value): self._batchedReadValues[0] = value @property def switch(self): return self._batchedReadValues[1] @switch.setter def switch(self, value): self._batchedReadValues[1] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"execLeftOut", "execRightOut", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def execLeftOut(self): value = self._batchedWriteValues.get(self._attributes.execLeftOut) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.execLeftOut) return data_view.get() @execLeftOut.setter def execLeftOut(self, value): self._batchedWriteValues[self._attributes.execLeftOut] = value @property def execRightOut(self): value = self._batchedWriteValues.get(self._attributes.execRightOut) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.execRightOut) return data_view.get() @execRightOut.setter def execRightOut(self, value): self._batchedWriteValues[self._attributes.execRightOut] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnExecSwitchDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnExecSwitchDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnExecSwitchDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnExecSwitchDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.ExecSwitch' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnExecSwitchDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnExecSwitchDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnExecSwitchDatabase(node) try: compute_function = getattr(OgnExecSwitchDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnExecSwitchDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnExecSwitchDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnExecSwitchDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnExecSwitchDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnExecSwitchDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnExecSwitchDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnExecSwitchDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnExecSwitchDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnExecSwitchDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Exec Switch") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "A switch node that will enable the left side or right side depending on the input") node_type.set_metadata(ogn.MetadataKeys.EXCLUSIONS, "usd") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnExecSwitchDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnExecSwitchDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnExecSwitchDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnExecSwitchDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.ExecSwitch")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnIntCounterDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.IntCounter Example stateful node that increments every time it's evaluated """ import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnIntCounterDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.IntCounter Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.increment inputs.reset Outputs: outputs.count """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:increment', 'int', 0, None, 'Increment to count by', {ogn.MetadataKeys.DEFAULT: '1'}, True, 1, False, ''), ('inputs:reset', 'bool', 0, None, 'Whether to reset the count', {ogn.MetadataKeys.DEFAULT: 'false'}, True, False, False, ''), ('outputs:count', 'int', 0, None, 'The current count', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"increment", "reset", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.increment, self._attributes.reset] self._batchedReadValues = [1, False] @property def increment(self): return self._batchedReadValues[0] @increment.setter def increment(self, value): self._batchedReadValues[0] = value @property def reset(self): return self._batchedReadValues[1] @reset.setter def reset(self, value): self._batchedReadValues[1] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"count", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def count(self): value = self._batchedWriteValues.get(self._attributes.count) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.count) return data_view.get() @count.setter def count(self, value): self._batchedWriteValues[self._attributes.count] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnIntCounterDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnIntCounterDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnIntCounterDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnIntCounterDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.IntCounter' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnIntCounterDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnIntCounterDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnIntCounterDatabase(node) try: compute_function = getattr(OgnIntCounterDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnIntCounterDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnIntCounterDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnIntCounterDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnIntCounterDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnIntCounterDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnIntCounterDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnIntCounterDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnIntCounterDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnIntCounterDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Int Counter") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example stateful node that increments every time it's evaluated") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnIntCounterDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnIntCounterDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnIntCounterDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnIntCounterDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.IntCounter")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnBouncingCubesGpuDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.BouncingCubesGpu Deprecated node - no longer supported """ import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnBouncingCubesGpuDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.BouncingCubesGpu Class Members: node: Node being evaluated """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [] self._batchedReadValues = [] def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnBouncingCubesGpuDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnBouncingCubesGpuDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnBouncingCubesGpuDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnBouncingCubesGpuDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.BouncingCubesGpu' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnBouncingCubesGpuDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnBouncingCubesGpuDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnBouncingCubesGpuDatabase(node) try: compute_function = getattr(OgnBouncingCubesGpuDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnBouncingCubesGpuDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnBouncingCubesGpuDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnBouncingCubesGpuDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnBouncingCubesGpuDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnBouncingCubesGpuDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnBouncingCubesGpuDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnBouncingCubesGpuDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnBouncingCubesGpuDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnBouncingCubesGpuDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Deprecated Node - Bouncing Cubes (GPU)") node_type.set_metadata(ogn.MetadataKeys.MEMORY_TYPE, "cuda") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Deprecated node - no longer supported") node_type.set_metadata(ogn.MetadataKeys.EXCLUSIONS, "usd,test") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") node_type.set_metadata(ogn.MetadataKeys.MEMORY_TYPE, "cuda") node_type.set_has_state(True) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnBouncingCubesGpuDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnBouncingCubesGpuDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnBouncingCubesGpuDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.BouncingCubesGpu")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnMultDoubleDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.MultDouble Example node that multiplies 2 doubles together """ import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnMultDoubleDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.MultDouble Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.a inputs.b Outputs: outputs.out """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:a', 'double', 0, None, 'Input a', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:b', 'double', 0, None, 'Input b', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:out', 'double', 0, None, 'The result of a * b', {}, True, None, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"a", "b", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.a, self._attributes.b] self._batchedReadValues = [0, 0] @property def a(self): return self._batchedReadValues[0] @a.setter def a(self, value): self._batchedReadValues[0] = value @property def b(self): return self._batchedReadValues[1] @b.setter def b(self, value): self._batchedReadValues[1] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"out", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def out(self): value = self._batchedWriteValues.get(self._attributes.out) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.out) return data_view.get() @out.setter def out(self, value): self._batchedWriteValues[self._attributes.out] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnMultDoubleDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnMultDoubleDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnMultDoubleDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnMultDoubleDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.MultDouble' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnMultDoubleDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnMultDoubleDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnMultDoubleDatabase(node) try: compute_function = getattr(OgnMultDoubleDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnMultDoubleDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnMultDoubleDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnMultDoubleDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnMultDoubleDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnMultDoubleDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnMultDoubleDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnMultDoubleDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnMultDoubleDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnMultDoubleDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Multiply Double (Python)") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example node that multiplies 2 doubles together") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnMultDoubleDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnMultDoubleDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnMultDoubleDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnMultDoubleDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.MultDouble")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnComposeDouble3Database.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.ComposeDouble3 Example node that takes in the components of three doubles and outputs a double3 """ import numpy import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnComposeDouble3Database(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.ComposeDouble3 Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.x inputs.y inputs.z Outputs: outputs.double3 """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:x', 'double', 0, None, 'The x component of the input double3', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:y', 'double', 0, None, 'The y component of the input double3', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:z', 'double', 0, None, 'The z component of the input double3', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:double3', 'double3', 0, None, 'Output double3', {}, True, None, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"x", "y", "z", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.x, self._attributes.y, self._attributes.z] self._batchedReadValues = [0, 0, 0] @property def x(self): return self._batchedReadValues[0] @x.setter def x(self, value): self._batchedReadValues[0] = value @property def y(self): return self._batchedReadValues[1] @y.setter def y(self, value): self._batchedReadValues[1] = value @property def z(self): return self._batchedReadValues[2] @z.setter def z(self, value): self._batchedReadValues[2] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"double3", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def double3(self): value = self._batchedWriteValues.get(self._attributes.double3) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.double3) return data_view.get() @double3.setter def double3(self, value): self._batchedWriteValues[self._attributes.double3] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnComposeDouble3Database.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnComposeDouble3Database.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnComposeDouble3Database.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnComposeDouble3Database.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.ComposeDouble3' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnComposeDouble3Database.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnComposeDouble3Database(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnComposeDouble3Database(node) try: compute_function = getattr(OgnComposeDouble3Database.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnComposeDouble3Database.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnComposeDouble3Database._initialize_per_node_data(node) initialize_function = getattr(OgnComposeDouble3Database.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnComposeDouble3Database.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnComposeDouble3Database.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnComposeDouble3Database._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnComposeDouble3Database._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnComposeDouble3Database.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnComposeDouble3Database.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Compose Double3 (Python)") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example node that takes in the components of three doubles and outputs a double3") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnComposeDouble3Database.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnComposeDouble3Database.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnComposeDouble3Database.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnComposeDouble3Database.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.ComposeDouble3")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnTestInitNodeDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.TestInitNode Test Init Node """ import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnTestInitNodeDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.TestInitNode Class Members: node: Node being evaluated Attribute Value Properties: Outputs: outputs.value """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('outputs:value', 'float', 0, None, 'Value', {}, True, None, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [] self._batchedReadValues = [] def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"value", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def value(self): value = self._batchedWriteValues.get(self._attributes.value) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.value) return data_view.get() @value.setter def value(self, value): self._batchedWriteValues[self._attributes.value] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnTestInitNodeDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnTestInitNodeDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnTestInitNodeDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnTestInitNodeDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.TestInitNode' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnTestInitNodeDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnTestInitNodeDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnTestInitNodeDatabase(node) try: compute_function = getattr(OgnTestInitNodeDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnTestInitNodeDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnTestInitNodeDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnTestInitNodeDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnTestInitNodeDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnTestInitNodeDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnTestInitNodeDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnTestInitNodeDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnTestInitNodeDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnTestInitNodeDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "TestInitNode") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Test Init Node") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnTestInitNodeDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnTestInitNodeDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnTestInitNodeDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnTestInitNodeDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.TestInitNode")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnDeformerYAxisDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.DeformerYAxis Example node applying a sine wave deformation to a set of points, written in Python. Deforms along Y-axis instead of Z """ import numpy import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnDeformerYAxisDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.DeformerYAxis Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.multiplier inputs.offset inputs.points inputs.wavelength Outputs: outputs.points """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:multiplier', 'double', 0, None, 'The multiplier for the amplitude of the sine wave', {ogn.MetadataKeys.DEFAULT: '1'}, True, 1, False, ''), ('inputs:offset', 'double', 0, None, 'The offset of the sine wave', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:points', 'point3f[]', 0, None, 'The input points to be deformed', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:wavelength', 'double', 0, None, 'The wavelength of the sine wave', {ogn.MetadataKeys.DEFAULT: '1'}, True, 1, False, ''), ('outputs:points', 'point3f[]', 0, None, 'The deformed output points', {}, True, None, False, ''), ]) @classmethod def _populate_role_data(cls): """Populate a role structure with the non-default roles on this node type""" role_data = super()._populate_role_data() role_data.inputs.points = og.AttributeRole.POSITION role_data.outputs.points = og.AttributeRole.POSITION return role_data class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"multiplier", "offset", "wavelength", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.multiplier, self._attributes.offset, self._attributes.wavelength] self._batchedReadValues = [1, 0, 1] @property def points(self): data_view = og.AttributeValueHelper(self._attributes.points) return data_view.get() @points.setter def points(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.points) data_view = og.AttributeValueHelper(self._attributes.points) data_view.set(value) self.points_size = data_view.get_array_size() @property def multiplier(self): return self._batchedReadValues[0] @multiplier.setter def multiplier(self, value): self._batchedReadValues[0] = value @property def offset(self): return self._batchedReadValues[1] @offset.setter def offset(self, value): self._batchedReadValues[1] = value @property def wavelength(self): return self._batchedReadValues[2] @wavelength.setter def wavelength(self, value): self._batchedReadValues[2] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self.points_size = None self._batchedWriteValues = { } @property def points(self): data_view = og.AttributeValueHelper(self._attributes.points) return data_view.get(reserved_element_count=self.points_size) @points.setter def points(self, value): data_view = og.AttributeValueHelper(self._attributes.points) data_view.set(value) self.points_size = data_view.get_array_size() def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnDeformerYAxisDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnDeformerYAxisDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnDeformerYAxisDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnDeformerYAxisDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.DeformerYAxis' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnDeformerYAxisDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnDeformerYAxisDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnDeformerYAxisDatabase(node) try: compute_function = getattr(OgnDeformerYAxisDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnDeformerYAxisDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnDeformerYAxisDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnDeformerYAxisDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnDeformerYAxisDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnDeformerYAxisDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnDeformerYAxisDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnDeformerYAxisDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnDeformerYAxisDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnDeformerYAxisDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Sine Wave Deformer Y-axis (Python)") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example node applying a sine wave deformation to a set of points, written in Python. Deforms along Y-axis instead of Z") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnDeformerYAxisDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnDeformerYAxisDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnDeformerYAxisDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnDeformerYAxisDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.DeformerYAxis")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnDynamicSwitchDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.DynamicSwitch A switch node that will enable the left side or right side depending on the input. Requires dynamic scheduling to work """ import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnDynamicSwitchDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.DynamicSwitch Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.left_value inputs.right_value inputs.switch Outputs: outputs.left_out outputs.right_out """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:left_value', 'int', 0, None, 'Left value to output', {ogn.MetadataKeys.DEFAULT: '-1'}, True, -1, False, ''), ('inputs:right_value', 'int', 0, None, 'Right value to output', {ogn.MetadataKeys.DEFAULT: '1'}, True, 1, False, ''), ('inputs:switch', 'int', 0, None, 'Enables right value if greater than 0, else left value', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:left_out', 'int', 0, None, 'Left side output', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:right_out', 'int', 0, None, 'Right side output', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"left_value", "right_value", "switch", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.left_value, self._attributes.right_value, self._attributes.switch] self._batchedReadValues = [-1, 1, 0] @property def left_value(self): return self._batchedReadValues[0] @left_value.setter def left_value(self, value): self._batchedReadValues[0] = value @property def right_value(self): return self._batchedReadValues[1] @right_value.setter def right_value(self, value): self._batchedReadValues[1] = value @property def switch(self): return self._batchedReadValues[2] @switch.setter def switch(self, value): self._batchedReadValues[2] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"left_out", "right_out", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def left_out(self): value = self._batchedWriteValues.get(self._attributes.left_out) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.left_out) return data_view.get() @left_out.setter def left_out(self, value): self._batchedWriteValues[self._attributes.left_out] = value @property def right_out(self): value = self._batchedWriteValues.get(self._attributes.right_out) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.right_out) return data_view.get() @right_out.setter def right_out(self, value): self._batchedWriteValues[self._attributes.right_out] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnDynamicSwitchDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnDynamicSwitchDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnDynamicSwitchDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnDynamicSwitchDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.DynamicSwitch' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnDynamicSwitchDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnDynamicSwitchDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnDynamicSwitchDatabase(node) try: compute_function = getattr(OgnDynamicSwitchDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnDynamicSwitchDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnDynamicSwitchDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnDynamicSwitchDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnDynamicSwitchDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnDynamicSwitchDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnDynamicSwitchDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnDynamicSwitchDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnDynamicSwitchDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnDynamicSwitchDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Dynamic Switch") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "A switch node that will enable the left side or right side depending on the input. Requires dynamic scheduling to work") node_type.set_metadata(ogn.MetadataKeys.EXCLUSIONS, "usd") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnDynamicSwitchDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnDynamicSwitchDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnDynamicSwitchDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnDynamicSwitchDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.DynamicSwitch")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnBouncingCubesCpuDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.BouncingCubes Deprecated node - no longer supported """ import numpy import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnBouncingCubesCpuDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.BouncingCubes Class Members: node: Node being evaluated Attribute Value Properties: State: state.translations state.velocities """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('state:translations', 'float3[]', 0, 'Translations', 'Set of translation attributes gathered from the inputs.\nTranslations have velocities applied to them each evaluation.', {}, True, None, False, ''), ('state:velocities', 'float[]', 0, 'Velocities', 'Set of velocity attributes gathered from the inputs', {}, True, None, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [] self._batchedReadValues = [] def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self.translations_size = None self.velocities_size = None @property def translations(self): data_view = og.AttributeValueHelper(self._attributes.translations) self.translations_size = data_view.get_array_size() return data_view.get() @translations.setter def translations(self, value): data_view = og.AttributeValueHelper(self._attributes.translations) data_view.set(value) self.translations_size = data_view.get_array_size() @property def velocities(self): data_view = og.AttributeValueHelper(self._attributes.velocities) self.velocities_size = data_view.get_array_size() return data_view.get() @velocities.setter def velocities(self, value): data_view = og.AttributeValueHelper(self._attributes.velocities) data_view.set(value) self.velocities_size = data_view.get_array_size() def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnBouncingCubesCpuDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnBouncingCubesCpuDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnBouncingCubesCpuDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnBouncingCubesCpuDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.BouncingCubes' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnBouncingCubesCpuDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnBouncingCubesCpuDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnBouncingCubesCpuDatabase(node) try: compute_function = getattr(OgnBouncingCubesCpuDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnBouncingCubesCpuDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnBouncingCubesCpuDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnBouncingCubesCpuDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnBouncingCubesCpuDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnBouncingCubesCpuDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnBouncingCubesCpuDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnBouncingCubesCpuDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnBouncingCubesCpuDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnBouncingCubesCpuDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Deprecated Node - Bouncing Cubes (GPU)") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Deprecated node - no longer supported") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnBouncingCubesCpuDatabase.INTERFACE.add_to_node_type(node_type) node_type.set_has_state(True) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnBouncingCubesCpuDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnBouncingCubesCpuDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnBouncingCubesCpuDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.BouncingCubes")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnDeformerGpuDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.DeformerPyGpu Example node applying a sine wave deformation to a set of points, written in Python for the GPU """ import numpy import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnDeformerGpuDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.DeformerPyGpu Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.multiplier inputs.points Outputs: outputs.points """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:multiplier', 'float', 0, None, 'The multiplier for the amplitude of the sine wave', {ogn.MetadataKeys.DEFAULT: '1'}, True, 1, False, ''), ('inputs:points', 'point3f[]', 0, None, 'The input points to be deformed', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:points', 'point3f[]', 0, None, 'The deformed output points', {}, True, None, False, ''), ]) @classmethod def _populate_role_data(cls): """Populate a role structure with the non-default roles on this node type""" role_data = super()._populate_role_data() role_data.inputs.points = og.AttributeRole.POSITION role_data.outputs.points = og.AttributeRole.POSITION return role_data class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [] self._batchedReadValues = [] @property def multiplier(self): data_view = og.AttributeValueHelper(self._attributes.multiplier) data_view.gpu_ptr_kind = og.PtrToPtrKind.CPU return data_view.get(on_gpu=True) @multiplier.setter def multiplier(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.multiplier) data_view = og.AttributeValueHelper(self._attributes.multiplier) data_view.gpu_ptr_kind = og.PtrToPtrKind.CPU data_view.set(value, on_gpu=True) @property def points(self): data_view = og.AttributeValueHelper(self._attributes.points) data_view.gpu_ptr_kind = og.PtrToPtrKind.CPU return data_view.get(on_gpu=True) @points.setter def points(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.points) data_view = og.AttributeValueHelper(self._attributes.points) data_view.gpu_ptr_kind = og.PtrToPtrKind.CPU data_view.set(value, on_gpu=True) self.points_size = data_view.get_array_size() def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self.points_size = None self._batchedWriteValues = { } @property def points(self): data_view = og.AttributeValueHelper(self._attributes.points) data_view.gpu_ptr_kind = og.PtrToPtrKind.CPU return data_view.get(reserved_element_count=self.points_size, on_gpu=True) @points.setter def points(self, value): data_view = og.AttributeValueHelper(self._attributes.points) data_view.gpu_ptr_kind = og.PtrToPtrKind.CPU data_view.set(value, on_gpu=True) self.points_size = data_view.get_array_size() def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnDeformerGpuDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnDeformerGpuDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnDeformerGpuDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnDeformerGpuDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.DeformerPyGpu' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnDeformerGpuDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnDeformerGpuDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnDeformerGpuDatabase(node) try: compute_function = getattr(OgnDeformerGpuDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnDeformerGpuDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnDeformerGpuDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnDeformerGpuDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnDeformerGpuDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnDeformerGpuDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnDeformerGpuDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnDeformerGpuDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnDeformerGpuDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnDeformerGpuDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Sine Wave Deformer Z-axis (Python GPU)") node_type.set_metadata(ogn.MetadataKeys.MEMORY_TYPE, "cuda") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example node applying a sine wave deformation to a set of points, written in Python for the GPU") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") node_type.set_metadata(ogn.MetadataKeys.MEMORY_TYPE, "cuda") OgnDeformerGpuDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnDeformerGpuDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnDeformerGpuDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnDeformerGpuDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.DeformerPyGpu")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnTestSingletonDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.TestSingleton Example node that showcases the use of singleton nodes (nodes that can have only 1 instance) """ import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnTestSingletonDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.TestSingleton Class Members: node: Node being evaluated Attribute Value Properties: Outputs: outputs.out """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('outputs:out', 'double', 0, None, 'The unique output of the only instance of this node', {}, True, None, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [] self._batchedReadValues = [] def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"out", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def out(self): value = self._batchedWriteValues.get(self._attributes.out) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.out) return data_view.get() @out.setter def out(self, value): self._batchedWriteValues[self._attributes.out] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnTestSingletonDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnTestSingletonDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnTestSingletonDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnTestSingletonDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.TestSingleton' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnTestSingletonDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnTestSingletonDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnTestSingletonDatabase(node) try: compute_function = getattr(OgnTestSingletonDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnTestSingletonDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnTestSingletonDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnTestSingletonDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnTestSingletonDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnTestSingletonDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnTestSingletonDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnTestSingletonDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnTestSingletonDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnTestSingletonDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.SINGLETON, "1") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Test Singleton") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example node that showcases the use of singleton nodes (nodes that can have only 1 instance)") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnTestSingletonDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnTestSingletonDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnTestSingletonDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnTestSingletonDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.TestSingleton")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnPositionToColorDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.PositionToColor This node takes positional data (double3) and converts to a color, and outputs as color3f[] (which seems to be the default color connection in USD) """ import numpy import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnPositionToColorDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.PositionToColor Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.color_offset inputs.position inputs.scale Outputs: outputs.color """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:color_offset', 'color3f', 0, None, 'Offset added to the scaled color to get the final result', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:position', 'double3', 0, None, 'Position to be converted to a color', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:scale', 'float', 0, None, 'Constant by which to multiply the position to get the color', {ogn.MetadataKeys.DEFAULT: '1.0'}, True, 1.0, False, ''), ('outputs:color', 'color3f[]', 0, None, 'Color value extracted from the position', {}, True, None, False, ''), ]) @classmethod def _populate_role_data(cls): """Populate a role structure with the non-default roles on this node type""" role_data = super()._populate_role_data() role_data.inputs.color_offset = og.AttributeRole.COLOR role_data.outputs.color = og.AttributeRole.COLOR return role_data class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"color_offset", "position", "scale", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.color_offset, self._attributes.position, self._attributes.scale] self._batchedReadValues = [[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], 1.0] @property def color_offset(self): return self._batchedReadValues[0] @color_offset.setter def color_offset(self, value): self._batchedReadValues[0] = value @property def position(self): return self._batchedReadValues[1] @position.setter def position(self, value): self._batchedReadValues[1] = value @property def scale(self): return self._batchedReadValues[2] @scale.setter def scale(self, value): self._batchedReadValues[2] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = { } """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self.color_size = None self._batchedWriteValues = { } @property def color(self): data_view = og.AttributeValueHelper(self._attributes.color) return data_view.get(reserved_element_count=self.color_size) @color.setter def color(self, value): data_view = og.AttributeValueHelper(self._attributes.color) data_view.set(value) self.color_size = data_view.get_array_size() def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnPositionToColorDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnPositionToColorDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnPositionToColorDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnPositionToColorDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.PositionToColor' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnPositionToColorDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnPositionToColorDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnPositionToColorDatabase(node) try: compute_function = getattr(OgnPositionToColorDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnPositionToColorDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnPositionToColorDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnPositionToColorDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnPositionToColorDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnPositionToColorDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnPositionToColorDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnPositionToColorDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnPositionToColorDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnPositionToColorDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "PositionToColor") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "This node takes positional data (double3) and converts to a color, and outputs as color3f[] (which seems to be the default color connection in USD)") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnPositionToColorDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnPositionToColorDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnPositionToColorDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnPositionToColorDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.PositionToColor")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnClampDoubleDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.ClampDouble Example node that a number to a range """ import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnClampDoubleDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.ClampDouble Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.max inputs.min inputs.num Outputs: outputs.out """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:max', 'double', 0, None, 'Maximum value', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:min', 'double', 0, None, 'Mininum value', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:num', 'double', 0, None, 'Input number', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:out', 'double', 0, None, 'The result of the number, having been clamped to the range min,max', {}, True, None, False, ''), ]) class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"max", "min", "num", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.max, self._attributes.min, self._attributes.num] self._batchedReadValues = [0, 0, 0] @property def max(self): return self._batchedReadValues[0] @max.setter def max(self, value): self._batchedReadValues[0] = value @property def min(self): return self._batchedReadValues[1] @min.setter def min(self, value): self._batchedReadValues[1] = value @property def num(self): return self._batchedReadValues[2] @num.setter def num(self, value): self._batchedReadValues[2] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"out", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedWriteValues = { } @property def out(self): value = self._batchedWriteValues.get(self._attributes.out) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.out) return data_view.get() @out.setter def out(self, value): self._batchedWriteValues[self._attributes.out] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnClampDoubleDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnClampDoubleDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnClampDoubleDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnClampDoubleDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.ClampDouble' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnClampDoubleDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnClampDoubleDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnClampDoubleDatabase(node) try: compute_function = getattr(OgnClampDoubleDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnClampDoubleDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnClampDoubleDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnClampDoubleDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnClampDoubleDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnClampDoubleDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnClampDoubleDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnClampDoubleDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnClampDoubleDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnClampDoubleDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Clamp Double (Python)") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Example node that a number to a range") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnClampDoubleDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnClampDoubleDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnClampDoubleDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnClampDoubleDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.ClampDouble")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/OgnPyUniversalAddDatabase.py
"""Support for simplified access to data on nodes of type omni.graph.examples.python.UniversalAdd Python-based universal add node for all types. This file is generated using UniversalAddGenerator.py """ import numpy import sys import traceback import omni.graph.core as og import omni.graph.core._omni_graph_core as _og import omni.graph.tools.ogn as ogn class OgnPyUniversalAddDatabase(og.Database): """Helper class providing simplified access to data on nodes of type omni.graph.examples.python.UniversalAdd Class Members: node: Node being evaluated Attribute Value Properties: Inputs: inputs.bool_0 inputs.bool_1 inputs.bool_arr_0 inputs.bool_arr_1 inputs.colord3_0 inputs.colord3_1 inputs.colord3_arr_0 inputs.colord3_arr_1 inputs.colord4_0 inputs.colord4_1 inputs.colord4_arr_0 inputs.colord4_arr_1 inputs.colorf3_0 inputs.colorf3_1 inputs.colorf3_arr_0 inputs.colorf3_arr_1 inputs.colorf4_0 inputs.colorf4_1 inputs.colorf4_arr_0 inputs.colorf4_arr_1 inputs.colorh3_0 inputs.colorh3_1 inputs.colorh3_arr_0 inputs.colorh3_arr_1 inputs.colorh4_0 inputs.colorh4_1 inputs.colorh4_arr_0 inputs.colorh4_arr_1 inputs.double2_0 inputs.double2_1 inputs.double2_arr_0 inputs.double2_arr_1 inputs.double3_0 inputs.double3_1 inputs.double3_arr_0 inputs.double3_arr_1 inputs.double4_0 inputs.double4_1 inputs.double4_arr_0 inputs.double4_arr_1 inputs.double_0 inputs.double_1 inputs.double_arr_0 inputs.double_arr_1 inputs.float2_0 inputs.float2_1 inputs.float2_arr_0 inputs.float2_arr_1 inputs.float3_0 inputs.float3_1 inputs.float3_arr_0 inputs.float3_arr_1 inputs.float4_0 inputs.float4_1 inputs.float4_arr_0 inputs.float4_arr_1 inputs.float_0 inputs.float_1 inputs.float_arr_0 inputs.float_arr_1 inputs.frame4_0 inputs.frame4_1 inputs.frame4_arr_0 inputs.frame4_arr_1 inputs.half2_0 inputs.half2_1 inputs.half2_arr_0 inputs.half2_arr_1 inputs.half3_0 inputs.half3_1 inputs.half3_arr_0 inputs.half3_arr_1 inputs.half4_0 inputs.half4_1 inputs.half4_arr_0 inputs.half4_arr_1 inputs.half_0 inputs.half_1 inputs.half_arr_0 inputs.half_arr_1 inputs.int2_0 inputs.int2_1 inputs.int2_arr_0 inputs.int2_arr_1 inputs.int3_0 inputs.int3_1 inputs.int3_arr_0 inputs.int3_arr_1 inputs.int4_0 inputs.int4_1 inputs.int4_arr_0 inputs.int4_arr_1 inputs.int64_0 inputs.int64_1 inputs.int64_arr_0 inputs.int64_arr_1 inputs.int_0 inputs.int_1 inputs.int_arr_0 inputs.int_arr_1 inputs.matrixd2_0 inputs.matrixd2_1 inputs.matrixd2_arr_0 inputs.matrixd2_arr_1 inputs.matrixd3_0 inputs.matrixd3_1 inputs.matrixd3_arr_0 inputs.matrixd3_arr_1 inputs.matrixd4_0 inputs.matrixd4_1 inputs.matrixd4_arr_0 inputs.matrixd4_arr_1 inputs.normald3_0 inputs.normald3_1 inputs.normald3_arr_0 inputs.normald3_arr_1 inputs.normalf3_0 inputs.normalf3_1 inputs.normalf3_arr_0 inputs.normalf3_arr_1 inputs.normalh3_0 inputs.normalh3_1 inputs.normalh3_arr_0 inputs.normalh3_arr_1 inputs.pointd3_0 inputs.pointd3_1 inputs.pointd3_arr_0 inputs.pointd3_arr_1 inputs.pointf3_0 inputs.pointf3_1 inputs.pointf3_arr_0 inputs.pointf3_arr_1 inputs.pointh3_0 inputs.pointh3_1 inputs.pointh3_arr_0 inputs.pointh3_arr_1 inputs.quatd4_0 inputs.quatd4_1 inputs.quatd4_arr_0 inputs.quatd4_arr_1 inputs.quatf4_0 inputs.quatf4_1 inputs.quatf4_arr_0 inputs.quatf4_arr_1 inputs.quath4_0 inputs.quath4_1 inputs.quath4_arr_0 inputs.quath4_arr_1 inputs.texcoordd2_0 inputs.texcoordd2_1 inputs.texcoordd2_arr_0 inputs.texcoordd2_arr_1 inputs.texcoordd3_0 inputs.texcoordd3_1 inputs.texcoordd3_arr_0 inputs.texcoordd3_arr_1 inputs.texcoordf2_0 inputs.texcoordf2_1 inputs.texcoordf2_arr_0 inputs.texcoordf2_arr_1 inputs.texcoordf3_0 inputs.texcoordf3_1 inputs.texcoordf3_arr_0 inputs.texcoordf3_arr_1 inputs.texcoordh2_0 inputs.texcoordh2_1 inputs.texcoordh2_arr_0 inputs.texcoordh2_arr_1 inputs.texcoordh3_0 inputs.texcoordh3_1 inputs.texcoordh3_arr_0 inputs.texcoordh3_arr_1 inputs.timecode_0 inputs.timecode_1 inputs.timecode_arr_0 inputs.timecode_arr_1 inputs.token_0 inputs.token_1 inputs.token_arr_0 inputs.token_arr_1 inputs.transform4_0 inputs.transform4_1 inputs.transform4_arr_0 inputs.transform4_arr_1 inputs.uchar_0 inputs.uchar_1 inputs.uchar_arr_0 inputs.uchar_arr_1 inputs.uint64_0 inputs.uint64_1 inputs.uint64_arr_0 inputs.uint64_arr_1 inputs.uint_0 inputs.uint_1 inputs.uint_arr_0 inputs.uint_arr_1 inputs.vectord3_0 inputs.vectord3_1 inputs.vectord3_arr_0 inputs.vectord3_arr_1 inputs.vectorf3_0 inputs.vectorf3_1 inputs.vectorf3_arr_0 inputs.vectorf3_arr_1 inputs.vectorh3_0 inputs.vectorh3_1 inputs.vectorh3_arr_0 inputs.vectorh3_arr_1 Outputs: outputs.bool_0 outputs.bool_arr_0 outputs.colord3_0 outputs.colord3_arr_0 outputs.colord4_0 outputs.colord4_arr_0 outputs.colorf3_0 outputs.colorf3_arr_0 outputs.colorf4_0 outputs.colorf4_arr_0 outputs.colorh3_0 outputs.colorh3_arr_0 outputs.colorh4_0 outputs.colorh4_arr_0 outputs.double2_0 outputs.double2_arr_0 outputs.double3_0 outputs.double3_arr_0 outputs.double4_0 outputs.double4_arr_0 outputs.double_0 outputs.double_arr_0 outputs.float2_0 outputs.float2_arr_0 outputs.float3_0 outputs.float3_arr_0 outputs.float4_0 outputs.float4_arr_0 outputs.float_0 outputs.float_arr_0 outputs.frame4_0 outputs.frame4_arr_0 outputs.half2_0 outputs.half2_arr_0 outputs.half3_0 outputs.half3_arr_0 outputs.half4_0 outputs.half4_arr_0 outputs.half_0 outputs.half_arr_0 outputs.int2_0 outputs.int2_arr_0 outputs.int3_0 outputs.int3_arr_0 outputs.int4_0 outputs.int4_arr_0 outputs.int64_0 outputs.int64_arr_0 outputs.int_0 outputs.int_arr_0 outputs.matrixd2_0 outputs.matrixd2_arr_0 outputs.matrixd3_0 outputs.matrixd3_arr_0 outputs.matrixd4_0 outputs.matrixd4_arr_0 outputs.normald3_0 outputs.normald3_arr_0 outputs.normalf3_0 outputs.normalf3_arr_0 outputs.normalh3_0 outputs.normalh3_arr_0 outputs.pointd3_0 outputs.pointd3_arr_0 outputs.pointf3_0 outputs.pointf3_arr_0 outputs.pointh3_0 outputs.pointh3_arr_0 outputs.quatd4_0 outputs.quatd4_arr_0 outputs.quatf4_0 outputs.quatf4_arr_0 outputs.quath4_0 outputs.quath4_arr_0 outputs.texcoordd2_0 outputs.texcoordd2_arr_0 outputs.texcoordd3_0 outputs.texcoordd3_arr_0 outputs.texcoordf2_0 outputs.texcoordf2_arr_0 outputs.texcoordf3_0 outputs.texcoordf3_arr_0 outputs.texcoordh2_0 outputs.texcoordh2_arr_0 outputs.texcoordh3_0 outputs.texcoordh3_arr_0 outputs.timecode_0 outputs.timecode_arr_0 outputs.token_0 outputs.token_arr_0 outputs.transform4_0 outputs.transform4_arr_0 outputs.uchar_0 outputs.uchar_arr_0 outputs.uint64_0 outputs.uint64_arr_0 outputs.uint_0 outputs.uint_arr_0 outputs.vectord3_0 outputs.vectord3_arr_0 outputs.vectorf3_0 outputs.vectorf3_arr_0 outputs.vectorh3_0 outputs.vectorh3_arr_0 """ # Imprint the generator and target ABI versions in the file for JIT generation GENERATOR_VERSION = (1, 41, 3) TARGET_VERSION = (2, 139, 12) # This is an internal object that provides per-class storage of a per-node data dictionary PER_NODE_DATA = {} # This is an internal object that describes unchanging attributes in a generic way # The values in this list are in no particular order, as a per-attribute tuple # Name, Type, ExtendedTypeIndex, UiName, Description, Metadata, # Is_Required, DefaultValue, Is_Deprecated, DeprecationMsg # You should not need to access any of this data directly, use the defined database interfaces INTERFACE = og.Database._get_interface([ ('inputs:bool_0', 'bool', 0, None, 'Input of type bool', {ogn.MetadataKeys.DEFAULT: 'false'}, True, False, False, ''), ('inputs:bool_1', 'bool', 0, None, 'Input of type bool', {ogn.MetadataKeys.DEFAULT: 'false'}, True, False, False, ''), ('inputs:bool_arr_0', 'bool[]', 0, None, 'Input of type bool[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:bool_arr_1', 'bool[]', 0, None, 'Input of type bool[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colord3_0', 'color3d', 0, None, 'Input of type colord[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:colord3_1', 'color3d', 0, None, 'Input of type colord[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:colord3_arr_0', 'color3d[]', 0, None, 'Input of type colord[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colord3_arr_1', 'color3d[]', 0, None, 'Input of type colord[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colord4_0', 'color4d', 0, None, 'Input of type colord[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:colord4_1', 'color4d', 0, None, 'Input of type colord[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:colord4_arr_0', 'color4d[]', 0, None, 'Input of type colord[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colord4_arr_1', 'color4d[]', 0, None, 'Input of type colord[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colorf3_0', 'color3f', 0, None, 'Input of type colorf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:colorf3_1', 'color3f', 0, None, 'Input of type colorf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:colorf3_arr_0', 'color3f[]', 0, None, 'Input of type colorf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colorf3_arr_1', 'color3f[]', 0, None, 'Input of type colorf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colorf4_0', 'color4f', 0, None, 'Input of type colorf[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:colorf4_1', 'color4f', 0, None, 'Input of type colorf[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:colorf4_arr_0', 'color4f[]', 0, None, 'Input of type colorf[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colorf4_arr_1', 'color4f[]', 0, None, 'Input of type colorf[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colorh3_0', 'color3h', 0, None, 'Input of type colorh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:colorh3_1', 'color3h', 0, None, 'Input of type colorh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:colorh3_arr_0', 'color3h[]', 0, None, 'Input of type colorh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colorh3_arr_1', 'color3h[]', 0, None, 'Input of type colorh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colorh4_0', 'color4h', 0, None, 'Input of type colorh[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:colorh4_1', 'color4h', 0, None, 'Input of type colorh[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:colorh4_arr_0', 'color4h[]', 0, None, 'Input of type colorh[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:colorh4_arr_1', 'color4h[]', 0, None, 'Input of type colorh[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:double2_0', 'double2', 0, None, 'Input of type double[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:double2_1', 'double2', 0, None, 'Input of type double[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:double2_arr_0', 'double2[]', 0, None, 'Input of type double[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:double2_arr_1', 'double2[]', 0, None, 'Input of type double[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:double3_0', 'double3', 0, None, 'Input of type double[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:double3_1', 'double3', 0, None, 'Input of type double[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:double3_arr_0', 'double3[]', 0, None, 'Input of type double[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:double3_arr_1', 'double3[]', 0, None, 'Input of type double[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:double4_0', 'double4', 0, None, 'Input of type double[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:double4_1', 'double4', 0, None, 'Input of type double[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:double4_arr_0', 'double4[]', 0, None, 'Input of type double[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:double4_arr_1', 'double4[]', 0, None, 'Input of type double[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:double_0', 'double', 0, None, 'Input of type double', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('inputs:double_1', 'double', 0, None, 'Input of type double', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('inputs:double_arr_0', 'double[]', 0, None, 'Input of type double[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:double_arr_1', 'double[]', 0, None, 'Input of type double[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:float2_0', 'float2', 0, None, 'Input of type float[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:float2_1', 'float2', 0, None, 'Input of type float[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:float2_arr_0', 'float2[]', 0, None, 'Input of type float[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:float2_arr_1', 'float2[]', 0, None, 'Input of type float[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:float3_0', 'float3', 0, None, 'Input of type float[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:float3_1', 'float3', 0, None, 'Input of type float[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:float3_arr_0', 'float3[]', 0, None, 'Input of type float[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:float3_arr_1', 'float3[]', 0, None, 'Input of type float[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:float4_0', 'float4', 0, None, 'Input of type float[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:float4_1', 'float4', 0, None, 'Input of type float[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:float4_arr_0', 'float4[]', 0, None, 'Input of type float[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:float4_arr_1', 'float4[]', 0, None, 'Input of type float[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:float_0', 'float', 0, None, 'Input of type float', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('inputs:float_1', 'float', 0, None, 'Input of type float', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('inputs:float_arr_0', 'float[]', 0, None, 'Input of type float[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:float_arr_1', 'float[]', 0, None, 'Input of type float[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:frame4_0', 'frame4d', 0, None, 'Input of type frame[4]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], False, ''), ('inputs:frame4_1', 'frame4d', 0, None, 'Input of type frame[4]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], False, ''), ('inputs:frame4_arr_0', 'frame4d[]', 0, None, 'Input of type frame[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:frame4_arr_1', 'frame4d[]', 0, None, 'Input of type frame[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:half2_0', 'half2', 0, None, 'Input of type half[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:half2_1', 'half2', 0, None, 'Input of type half[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:half2_arr_0', 'half2[]', 0, None, 'Input of type half[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:half2_arr_1', 'half2[]', 0, None, 'Input of type half[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:half3_0', 'half3', 0, None, 'Input of type half[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:half3_1', 'half3', 0, None, 'Input of type half[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:half3_arr_0', 'half3[]', 0, None, 'Input of type half[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:half3_arr_1', 'half3[]', 0, None, 'Input of type half[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:half4_0', 'half4', 0, None, 'Input of type half[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:half4_1', 'half4', 0, None, 'Input of type half[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:half4_arr_0', 'half4[]', 0, None, 'Input of type half[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:half4_arr_1', 'half4[]', 0, None, 'Input of type half[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:half_0', 'half', 0, None, 'Input of type half', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('inputs:half_1', 'half', 0, None, 'Input of type half', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('inputs:half_arr_0', 'half[]', 0, None, 'Input of type half[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:half_arr_1', 'half[]', 0, None, 'Input of type half[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:int2_0', 'int2', 0, None, 'Input of type int[2]', {ogn.MetadataKeys.DEFAULT: '[0, 0]'}, True, [0, 0], False, ''), ('inputs:int2_1', 'int2', 0, None, 'Input of type int[2]', {ogn.MetadataKeys.DEFAULT: '[0, 0]'}, True, [0, 0], False, ''), ('inputs:int2_arr_0', 'int2[]', 0, None, 'Input of type int[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:int2_arr_1', 'int2[]', 0, None, 'Input of type int[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:int3_0', 'int3', 0, None, 'Input of type int[3]', {ogn.MetadataKeys.DEFAULT: '[0, 0, 0]'}, True, [0, 0, 0], False, ''), ('inputs:int3_1', 'int3', 0, None, 'Input of type int[3]', {ogn.MetadataKeys.DEFAULT: '[0, 0, 0]'}, True, [0, 0, 0], False, ''), ('inputs:int3_arr_0', 'int3[]', 0, None, 'Input of type int[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:int3_arr_1', 'int3[]', 0, None, 'Input of type int[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:int4_0', 'int4', 0, None, 'Input of type int[4]', {ogn.MetadataKeys.DEFAULT: '[0, 0, 0, 0]'}, True, [0, 0, 0, 0], False, ''), ('inputs:int4_1', 'int4', 0, None, 'Input of type int[4]', {ogn.MetadataKeys.DEFAULT: '[0, 0, 0, 0]'}, True, [0, 0, 0, 0], False, ''), ('inputs:int4_arr_0', 'int4[]', 0, None, 'Input of type int[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:int4_arr_1', 'int4[]', 0, None, 'Input of type int[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:int64_0', 'int64', 0, None, 'Input of type int64', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:int64_1', 'int64', 0, None, 'Input of type int64', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:int64_arr_0', 'int64[]', 0, None, 'Input of type int64[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:int64_arr_1', 'int64[]', 0, None, 'Input of type int64[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:int_0', 'int', 0, None, 'Input of type int', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:int_1', 'int', 0, None, 'Input of type int', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:int_arr_0', 'int[]', 0, None, 'Input of type int[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:int_arr_1', 'int[]', 0, None, 'Input of type int[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:matrixd2_0', 'matrix2d', 0, None, 'Input of type matrixd[2]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0], [0.0, 0.0]]'}, True, [[0.0, 0.0], [0.0, 0.0]], False, ''), ('inputs:matrixd2_1', 'matrix2d', 0, None, 'Input of type matrixd[2]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0], [0.0, 0.0]]'}, True, [[0.0, 0.0], [0.0, 0.0]], False, ''), ('inputs:matrixd2_arr_0', 'matrix2d[]', 0, None, 'Input of type matrixd[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:matrixd2_arr_1', 'matrix2d[]', 0, None, 'Input of type matrixd[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:matrixd3_0', 'matrix3d', 0, None, 'Input of type matrixd[3]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]], False, ''), ('inputs:matrixd3_1', 'matrix3d', 0, None, 'Input of type matrixd[3]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]], False, ''), ('inputs:matrixd3_arr_0', 'matrix3d[]', 0, None, 'Input of type matrixd[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:matrixd3_arr_1', 'matrix3d[]', 0, None, 'Input of type matrixd[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:matrixd4_0', 'matrix4d', 0, None, 'Input of type matrixd[4]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], False, ''), ('inputs:matrixd4_1', 'matrix4d', 0, None, 'Input of type matrixd[4]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], False, ''), ('inputs:matrixd4_arr_0', 'matrix4d[]', 0, None, 'Input of type matrixd[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:matrixd4_arr_1', 'matrix4d[]', 0, None, 'Input of type matrixd[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:normald3_0', 'normal3d', 0, None, 'Input of type normald[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:normald3_1', 'normal3d', 0, None, 'Input of type normald[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:normald3_arr_0', 'normal3d[]', 0, None, 'Input of type normald[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:normald3_arr_1', 'normal3d[]', 0, None, 'Input of type normald[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:normalf3_0', 'normal3f', 0, None, 'Input of type normalf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:normalf3_1', 'normal3f', 0, None, 'Input of type normalf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:normalf3_arr_0', 'normal3f[]', 0, None, 'Input of type normalf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:normalf3_arr_1', 'normal3f[]', 0, None, 'Input of type normalf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:normalh3_0', 'normal3h', 0, None, 'Input of type normalh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:normalh3_1', 'normal3h', 0, None, 'Input of type normalh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:normalh3_arr_0', 'normal3h[]', 0, None, 'Input of type normalh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:normalh3_arr_1', 'normal3h[]', 0, None, 'Input of type normalh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:pointd3_0', 'point3d', 0, None, 'Input of type pointd[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:pointd3_1', 'point3d', 0, None, 'Input of type pointd[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:pointd3_arr_0', 'point3d[]', 0, None, 'Input of type pointd[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:pointd3_arr_1', 'point3d[]', 0, None, 'Input of type pointd[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:pointf3_0', 'point3f', 0, None, 'Input of type pointf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:pointf3_1', 'point3f', 0, None, 'Input of type pointf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:pointf3_arr_0', 'point3f[]', 0, None, 'Input of type pointf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:pointf3_arr_1', 'point3f[]', 0, None, 'Input of type pointf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:pointh3_0', 'point3h', 0, None, 'Input of type pointh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:pointh3_1', 'point3h', 0, None, 'Input of type pointh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:pointh3_arr_0', 'point3h[]', 0, None, 'Input of type pointh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:pointh3_arr_1', 'point3h[]', 0, None, 'Input of type pointh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:quatd4_0', 'quatd', 0, None, 'Input of type quatd[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:quatd4_1', 'quatd', 0, None, 'Input of type quatd[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:quatd4_arr_0', 'quatd[]', 0, None, 'Input of type quatd[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:quatd4_arr_1', 'quatd[]', 0, None, 'Input of type quatd[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:quatf4_0', 'quatf', 0, None, 'Input of type quatf[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:quatf4_1', 'quatf', 0, None, 'Input of type quatf[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:quatf4_arr_0', 'quatf[]', 0, None, 'Input of type quatf[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:quatf4_arr_1', 'quatf[]', 0, None, 'Input of type quatf[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:quath4_0', 'quath', 0, None, 'Input of type quath[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:quath4_1', 'quath', 0, None, 'Input of type quath[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('inputs:quath4_arr_0', 'quath[]', 0, None, 'Input of type quath[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:quath4_arr_1', 'quath[]', 0, None, 'Input of type quath[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordd2_0', 'texCoord2d', 0, None, 'Input of type texcoordd[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:texcoordd2_1', 'texCoord2d', 0, None, 'Input of type texcoordd[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:texcoordd2_arr_0', 'texCoord2d[]', 0, None, 'Input of type texcoordd[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordd2_arr_1', 'texCoord2d[]', 0, None, 'Input of type texcoordd[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordd3_0', 'texCoord3d', 0, None, 'Input of type texcoordd[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:texcoordd3_1', 'texCoord3d', 0, None, 'Input of type texcoordd[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:texcoordd3_arr_0', 'texCoord3d[]', 0, None, 'Input of type texcoordd[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordd3_arr_1', 'texCoord3d[]', 0, None, 'Input of type texcoordd[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordf2_0', 'texCoord2f', 0, None, 'Input of type texcoordf[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:texcoordf2_1', 'texCoord2f', 0, None, 'Input of type texcoordf[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:texcoordf2_arr_0', 'texCoord2f[]', 0, None, 'Input of type texcoordf[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordf2_arr_1', 'texCoord2f[]', 0, None, 'Input of type texcoordf[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordf3_0', 'texCoord3f', 0, None, 'Input of type texcoordf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:texcoordf3_1', 'texCoord3f', 0, None, 'Input of type texcoordf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:texcoordf3_arr_0', 'texCoord3f[]', 0, None, 'Input of type texcoordf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordf3_arr_1', 'texCoord3f[]', 0, None, 'Input of type texcoordf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordh2_0', 'texCoord2h', 0, None, 'Input of type texcoordh[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:texcoordh2_1', 'texCoord2h', 0, None, 'Input of type texcoordh[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('inputs:texcoordh2_arr_0', 'texCoord2h[]', 0, None, 'Input of type texcoordh[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordh2_arr_1', 'texCoord2h[]', 0, None, 'Input of type texcoordh[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordh3_0', 'texCoord3h', 0, None, 'Input of type texcoordh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:texcoordh3_1', 'texCoord3h', 0, None, 'Input of type texcoordh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:texcoordh3_arr_0', 'texCoord3h[]', 0, None, 'Input of type texcoordh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:texcoordh3_arr_1', 'texCoord3h[]', 0, None, 'Input of type texcoordh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:timecode_0', 'timecode', 0, None, 'Input of type timecode', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('inputs:timecode_1', 'timecode', 0, None, 'Input of type timecode', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('inputs:timecode_arr_0', 'timecode[]', 0, None, 'Input of type timecode[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:timecode_arr_1', 'timecode[]', 0, None, 'Input of type timecode[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:token_0', 'token', 0, None, 'Input of type token', {ogn.MetadataKeys.DEFAULT: '"default_token"'}, True, "default_token", False, ''), ('inputs:token_1', 'token', 0, None, 'Input of type token', {ogn.MetadataKeys.DEFAULT: '"default_token"'}, True, "default_token", False, ''), ('inputs:token_arr_0', 'token[]', 0, None, 'Input of type token[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:token_arr_1', 'token[]', 0, None, 'Input of type token[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:transform4_0', 'frame4d', 0, None, 'Input of type transform[4]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], False, ''), ('inputs:transform4_1', 'frame4d', 0, None, 'Input of type transform[4]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], False, ''), ('inputs:transform4_arr_0', 'frame4d[]', 0, None, 'Input of type transform[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:transform4_arr_1', 'frame4d[]', 0, None, 'Input of type transform[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:uchar_0', 'uchar', 0, None, 'Input of type uchar', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:uchar_1', 'uchar', 0, None, 'Input of type uchar', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:uchar_arr_0', 'uchar[]', 0, None, 'Input of type uchar[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:uchar_arr_1', 'uchar[]', 0, None, 'Input of type uchar[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:uint64_0', 'uint64', 0, None, 'Input of type uint64', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:uint64_1', 'uint64', 0, None, 'Input of type uint64', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:uint64_arr_0', 'uint64[]', 0, None, 'Input of type uint64[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:uint64_arr_1', 'uint64[]', 0, None, 'Input of type uint64[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:uint_0', 'uint', 0, None, 'Input of type uint', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:uint_1', 'uint', 0, None, 'Input of type uint', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('inputs:uint_arr_0', 'uint[]', 0, None, 'Input of type uint[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:uint_arr_1', 'uint[]', 0, None, 'Input of type uint[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:vectord3_0', 'vector3d', 0, None, 'Input of type vectord[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:vectord3_1', 'vector3d', 0, None, 'Input of type vectord[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:vectord3_arr_0', 'vector3d[]', 0, None, 'Input of type vectord[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:vectord3_arr_1', 'vector3d[]', 0, None, 'Input of type vectord[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:vectorf3_0', 'vector3f', 0, None, 'Input of type vectorf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:vectorf3_1', 'vector3f', 0, None, 'Input of type vectorf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:vectorf3_arr_0', 'vector3f[]', 0, None, 'Input of type vectorf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:vectorf3_arr_1', 'vector3f[]', 0, None, 'Input of type vectorf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:vectorh3_0', 'vector3h', 0, None, 'Input of type vectorh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:vectorh3_1', 'vector3h', 0, None, 'Input of type vectorh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('inputs:vectorh3_arr_0', 'vector3h[]', 0, None, 'Input of type vectorh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('inputs:vectorh3_arr_1', 'vector3h[]', 0, None, 'Input of type vectorh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:bool_0', 'bool', 0, None, 'Output of type bool', {ogn.MetadataKeys.DEFAULT: 'false'}, True, False, False, ''), ('outputs:bool_arr_0', 'bool[]', 0, None, 'Output of type bool[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:colord3_0', 'color3d', 0, None, 'Output of type colord[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:colord3_arr_0', 'color3d[]', 0, None, 'Output of type colord[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:colord4_0', 'color4d', 0, None, 'Output of type colord[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('outputs:colord4_arr_0', 'color4d[]', 0, None, 'Output of type colord[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:colorf3_0', 'color3f', 0, None, 'Output of type colorf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:colorf3_arr_0', 'color3f[]', 0, None, 'Output of type colorf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:colorf4_0', 'color4f', 0, None, 'Output of type colorf[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('outputs:colorf4_arr_0', 'color4f[]', 0, None, 'Output of type colorf[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:colorh3_0', 'color3h', 0, None, 'Output of type colorh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:colorh3_arr_0', 'color3h[]', 0, None, 'Output of type colorh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:colorh4_0', 'color4h', 0, None, 'Output of type colorh[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('outputs:colorh4_arr_0', 'color4h[]', 0, None, 'Output of type colorh[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:double2_0', 'double2', 0, None, 'Output of type double[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('outputs:double2_arr_0', 'double2[]', 0, None, 'Output of type double[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:double3_0', 'double3', 0, None, 'Output of type double[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:double3_arr_0', 'double3[]', 0, None, 'Output of type double[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:double4_0', 'double4', 0, None, 'Output of type double[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('outputs:double4_arr_0', 'double4[]', 0, None, 'Output of type double[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:double_0', 'double', 0, None, 'Output of type double', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('outputs:double_arr_0', 'double[]', 0, None, 'Output of type double[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:float2_0', 'float2', 0, None, 'Output of type float[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('outputs:float2_arr_0', 'float2[]', 0, None, 'Output of type float[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:float3_0', 'float3', 0, None, 'Output of type float[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:float3_arr_0', 'float3[]', 0, None, 'Output of type float[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:float4_0', 'float4', 0, None, 'Output of type float[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('outputs:float4_arr_0', 'float4[]', 0, None, 'Output of type float[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:float_0', 'float', 0, None, 'Output of type float', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('outputs:float_arr_0', 'float[]', 0, None, 'Output of type float[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:frame4_0', 'frame4d', 0, None, 'Output of type frame[4]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], False, ''), ('outputs:frame4_arr_0', 'frame4d[]', 0, None, 'Output of type frame[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:half2_0', 'half2', 0, None, 'Output of type half[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('outputs:half2_arr_0', 'half2[]', 0, None, 'Output of type half[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:half3_0', 'half3', 0, None, 'Output of type half[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:half3_arr_0', 'half3[]', 0, None, 'Output of type half[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:half4_0', 'half4', 0, None, 'Output of type half[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('outputs:half4_arr_0', 'half4[]', 0, None, 'Output of type half[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:half_0', 'half', 0, None, 'Output of type half', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('outputs:half_arr_0', 'half[]', 0, None, 'Output of type half[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:int2_0', 'int2', 0, None, 'Output of type int[2]', {ogn.MetadataKeys.DEFAULT: '[0, 0]'}, True, [0, 0], False, ''), ('outputs:int2_arr_0', 'int2[]', 0, None, 'Output of type int[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:int3_0', 'int3', 0, None, 'Output of type int[3]', {ogn.MetadataKeys.DEFAULT: '[0, 0, 0]'}, True, [0, 0, 0], False, ''), ('outputs:int3_arr_0', 'int3[]', 0, None, 'Output of type int[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:int4_0', 'int4', 0, None, 'Output of type int[4]', {ogn.MetadataKeys.DEFAULT: '[0, 0, 0, 0]'}, True, [0, 0, 0, 0], False, ''), ('outputs:int4_arr_0', 'int4[]', 0, None, 'Output of type int[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:int64_0', 'int64', 0, None, 'Output of type int64', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:int64_arr_0', 'int64[]', 0, None, 'Output of type int64[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:int_0', 'int', 0, None, 'Output of type int', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:int_arr_0', 'int[]', 0, None, 'Output of type int[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:matrixd2_0', 'matrix2d', 0, None, 'Output of type matrixd[2]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0], [0.0, 0.0]]'}, True, [[0.0, 0.0], [0.0, 0.0]], False, ''), ('outputs:matrixd2_arr_0', 'matrix2d[]', 0, None, 'Output of type matrixd[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:matrixd3_0', 'matrix3d', 0, None, 'Output of type matrixd[3]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]], False, ''), ('outputs:matrixd3_arr_0', 'matrix3d[]', 0, None, 'Output of type matrixd[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:matrixd4_0', 'matrix4d', 0, None, 'Output of type matrixd[4]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], False, ''), ('outputs:matrixd4_arr_0', 'matrix4d[]', 0, None, 'Output of type matrixd[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:normald3_0', 'normal3d', 0, None, 'Output of type normald[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:normald3_arr_0', 'normal3d[]', 0, None, 'Output of type normald[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:normalf3_0', 'normal3f', 0, None, 'Output of type normalf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:normalf3_arr_0', 'normal3f[]', 0, None, 'Output of type normalf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:normalh3_0', 'normal3h', 0, None, 'Output of type normalh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:normalh3_arr_0', 'normal3h[]', 0, None, 'Output of type normalh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:pointd3_0', 'point3d', 0, None, 'Output of type pointd[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:pointd3_arr_0', 'point3d[]', 0, None, 'Output of type pointd[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:pointf3_0', 'point3f', 0, None, 'Output of type pointf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:pointf3_arr_0', 'point3f[]', 0, None, 'Output of type pointf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:pointh3_0', 'point3h', 0, None, 'Output of type pointh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:pointh3_arr_0', 'point3h[]', 0, None, 'Output of type pointh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:quatd4_0', 'quatd', 0, None, 'Output of type quatd[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('outputs:quatd4_arr_0', 'quatd[]', 0, None, 'Output of type quatd[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:quatf4_0', 'quatf', 0, None, 'Output of type quatf[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('outputs:quatf4_arr_0', 'quatf[]', 0, None, 'Output of type quatf[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:quath4_0', 'quath', 0, None, 'Output of type quath[4]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0, 0.0], False, ''), ('outputs:quath4_arr_0', 'quath[]', 0, None, 'Output of type quath[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:texcoordd2_0', 'texCoord2d', 0, None, 'Output of type texcoordd[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('outputs:texcoordd2_arr_0', 'texCoord2d[]', 0, None, 'Output of type texcoordd[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:texcoordd3_0', 'texCoord3d', 0, None, 'Output of type texcoordd[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:texcoordd3_arr_0', 'texCoord3d[]', 0, None, 'Output of type texcoordd[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:texcoordf2_0', 'texCoord2f', 0, None, 'Output of type texcoordf[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('outputs:texcoordf2_arr_0', 'texCoord2f[]', 0, None, 'Output of type texcoordf[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:texcoordf3_0', 'texCoord3f', 0, None, 'Output of type texcoordf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:texcoordf3_arr_0', 'texCoord3f[]', 0, None, 'Output of type texcoordf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:texcoordh2_0', 'texCoord2h', 0, None, 'Output of type texcoordh[2]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0]'}, True, [0.0, 0.0], False, ''), ('outputs:texcoordh2_arr_0', 'texCoord2h[]', 0, None, 'Output of type texcoordh[2][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:texcoordh3_0', 'texCoord3h', 0, None, 'Output of type texcoordh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:texcoordh3_arr_0', 'texCoord3h[]', 0, None, 'Output of type texcoordh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:timecode_0', 'timecode', 0, None, 'Output of type timecode', {ogn.MetadataKeys.DEFAULT: '0.0'}, True, 0.0, False, ''), ('outputs:timecode_arr_0', 'timecode[]', 0, None, 'Output of type timecode[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:token_0', 'token', 0, None, 'Output of type token', {ogn.MetadataKeys.DEFAULT: '"default_token"'}, True, "default_token", False, ''), ('outputs:token_arr_0', 'token[]', 0, None, 'Output of type token[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:transform4_0', 'frame4d', 0, None, 'Output of type transform[4]', {ogn.MetadataKeys.DEFAULT: '[[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]]'}, True, [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], False, ''), ('outputs:transform4_arr_0', 'frame4d[]', 0, None, 'Output of type transform[4][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:uchar_0', 'uchar', 0, None, 'Output of type uchar', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:uchar_arr_0', 'uchar[]', 0, None, 'Output of type uchar[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:uint64_0', 'uint64', 0, None, 'Output of type uint64', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:uint64_arr_0', 'uint64[]', 0, None, 'Output of type uint64[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:uint_0', 'uint', 0, None, 'Output of type uint', {ogn.MetadataKeys.DEFAULT: '0'}, True, 0, False, ''), ('outputs:uint_arr_0', 'uint[]', 0, None, 'Output of type uint[]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:vectord3_0', 'vector3d', 0, None, 'Output of type vectord[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:vectord3_arr_0', 'vector3d[]', 0, None, 'Output of type vectord[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:vectorf3_0', 'vector3f', 0, None, 'Output of type vectorf[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:vectorf3_arr_0', 'vector3f[]', 0, None, 'Output of type vectorf[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ('outputs:vectorh3_0', 'vector3h', 0, None, 'Output of type vectorh[3]', {ogn.MetadataKeys.DEFAULT: '[0.0, 0.0, 0.0]'}, True, [0.0, 0.0, 0.0], False, ''), ('outputs:vectorh3_arr_0', 'vector3h[]', 0, None, 'Output of type vectorh[3][]', {ogn.MetadataKeys.DEFAULT: '[]'}, True, [], False, ''), ]) @classmethod def _populate_role_data(cls): """Populate a role structure with the non-default roles on this node type""" role_data = super()._populate_role_data() role_data.inputs.colord3_0 = og.AttributeRole.COLOR role_data.inputs.colord3_1 = og.AttributeRole.COLOR role_data.inputs.colord3_arr_0 = og.AttributeRole.COLOR role_data.inputs.colord3_arr_1 = og.AttributeRole.COLOR role_data.inputs.colord4_0 = og.AttributeRole.COLOR role_data.inputs.colord4_1 = og.AttributeRole.COLOR role_data.inputs.colord4_arr_0 = og.AttributeRole.COLOR role_data.inputs.colord4_arr_1 = og.AttributeRole.COLOR role_data.inputs.colorf3_0 = og.AttributeRole.COLOR role_data.inputs.colorf3_1 = og.AttributeRole.COLOR role_data.inputs.colorf3_arr_0 = og.AttributeRole.COLOR role_data.inputs.colorf3_arr_1 = og.AttributeRole.COLOR role_data.inputs.colorf4_0 = og.AttributeRole.COLOR role_data.inputs.colorf4_1 = og.AttributeRole.COLOR role_data.inputs.colorf4_arr_0 = og.AttributeRole.COLOR role_data.inputs.colorf4_arr_1 = og.AttributeRole.COLOR role_data.inputs.colorh3_0 = og.AttributeRole.COLOR role_data.inputs.colorh3_1 = og.AttributeRole.COLOR role_data.inputs.colorh3_arr_0 = og.AttributeRole.COLOR role_data.inputs.colorh3_arr_1 = og.AttributeRole.COLOR role_data.inputs.colorh4_0 = og.AttributeRole.COLOR role_data.inputs.colorh4_1 = og.AttributeRole.COLOR role_data.inputs.colorh4_arr_0 = og.AttributeRole.COLOR role_data.inputs.colorh4_arr_1 = og.AttributeRole.COLOR role_data.inputs.frame4_0 = og.AttributeRole.FRAME role_data.inputs.frame4_1 = og.AttributeRole.FRAME role_data.inputs.frame4_arr_0 = og.AttributeRole.FRAME role_data.inputs.frame4_arr_1 = og.AttributeRole.FRAME role_data.inputs.matrixd2_0 = og.AttributeRole.MATRIX role_data.inputs.matrixd2_1 = og.AttributeRole.MATRIX role_data.inputs.matrixd2_arr_0 = og.AttributeRole.MATRIX role_data.inputs.matrixd2_arr_1 = og.AttributeRole.MATRIX role_data.inputs.matrixd3_0 = og.AttributeRole.MATRIX role_data.inputs.matrixd3_1 = og.AttributeRole.MATRIX role_data.inputs.matrixd3_arr_0 = og.AttributeRole.MATRIX role_data.inputs.matrixd3_arr_1 = og.AttributeRole.MATRIX role_data.inputs.matrixd4_0 = og.AttributeRole.MATRIX role_data.inputs.matrixd4_1 = og.AttributeRole.MATRIX role_data.inputs.matrixd4_arr_0 = og.AttributeRole.MATRIX role_data.inputs.matrixd4_arr_1 = og.AttributeRole.MATRIX role_data.inputs.normald3_0 = og.AttributeRole.NORMAL role_data.inputs.normald3_1 = og.AttributeRole.NORMAL role_data.inputs.normald3_arr_0 = og.AttributeRole.NORMAL role_data.inputs.normald3_arr_1 = og.AttributeRole.NORMAL role_data.inputs.normalf3_0 = og.AttributeRole.NORMAL role_data.inputs.normalf3_1 = og.AttributeRole.NORMAL role_data.inputs.normalf3_arr_0 = og.AttributeRole.NORMAL role_data.inputs.normalf3_arr_1 = og.AttributeRole.NORMAL role_data.inputs.normalh3_0 = og.AttributeRole.NORMAL role_data.inputs.normalh3_1 = og.AttributeRole.NORMAL role_data.inputs.normalh3_arr_0 = og.AttributeRole.NORMAL role_data.inputs.normalh3_arr_1 = og.AttributeRole.NORMAL role_data.inputs.pointd3_0 = og.AttributeRole.POSITION role_data.inputs.pointd3_1 = og.AttributeRole.POSITION role_data.inputs.pointd3_arr_0 = og.AttributeRole.POSITION role_data.inputs.pointd3_arr_1 = og.AttributeRole.POSITION role_data.inputs.pointf3_0 = og.AttributeRole.POSITION role_data.inputs.pointf3_1 = og.AttributeRole.POSITION role_data.inputs.pointf3_arr_0 = og.AttributeRole.POSITION role_data.inputs.pointf3_arr_1 = og.AttributeRole.POSITION role_data.inputs.pointh3_0 = og.AttributeRole.POSITION role_data.inputs.pointh3_1 = og.AttributeRole.POSITION role_data.inputs.pointh3_arr_0 = og.AttributeRole.POSITION role_data.inputs.pointh3_arr_1 = og.AttributeRole.POSITION role_data.inputs.quatd4_0 = og.AttributeRole.QUATERNION role_data.inputs.quatd4_1 = og.AttributeRole.QUATERNION role_data.inputs.quatd4_arr_0 = og.AttributeRole.QUATERNION role_data.inputs.quatd4_arr_1 = og.AttributeRole.QUATERNION role_data.inputs.quatf4_0 = og.AttributeRole.QUATERNION role_data.inputs.quatf4_1 = og.AttributeRole.QUATERNION role_data.inputs.quatf4_arr_0 = og.AttributeRole.QUATERNION role_data.inputs.quatf4_arr_1 = og.AttributeRole.QUATERNION role_data.inputs.quath4_0 = og.AttributeRole.QUATERNION role_data.inputs.quath4_1 = og.AttributeRole.QUATERNION role_data.inputs.quath4_arr_0 = og.AttributeRole.QUATERNION role_data.inputs.quath4_arr_1 = og.AttributeRole.QUATERNION role_data.inputs.texcoordd2_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordd2_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordd2_arr_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordd2_arr_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordd3_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordd3_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordd3_arr_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordd3_arr_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordf2_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordf2_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordf2_arr_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordf2_arr_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordf3_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordf3_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordf3_arr_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordf3_arr_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordh2_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordh2_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordh2_arr_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordh2_arr_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordh3_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordh3_1 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordh3_arr_0 = og.AttributeRole.TEXCOORD role_data.inputs.texcoordh3_arr_1 = og.AttributeRole.TEXCOORD role_data.inputs.timecode_0 = og.AttributeRole.TIMECODE role_data.inputs.timecode_1 = og.AttributeRole.TIMECODE role_data.inputs.timecode_arr_0 = og.AttributeRole.TIMECODE role_data.inputs.timecode_arr_1 = og.AttributeRole.TIMECODE role_data.inputs.transform4_0 = og.AttributeRole.TRANSFORM role_data.inputs.transform4_1 = og.AttributeRole.TRANSFORM role_data.inputs.transform4_arr_0 = og.AttributeRole.TRANSFORM role_data.inputs.transform4_arr_1 = og.AttributeRole.TRANSFORM role_data.inputs.vectord3_0 = og.AttributeRole.VECTOR role_data.inputs.vectord3_1 = og.AttributeRole.VECTOR role_data.inputs.vectord3_arr_0 = og.AttributeRole.VECTOR role_data.inputs.vectord3_arr_1 = og.AttributeRole.VECTOR role_data.inputs.vectorf3_0 = og.AttributeRole.VECTOR role_data.inputs.vectorf3_1 = og.AttributeRole.VECTOR role_data.inputs.vectorf3_arr_0 = og.AttributeRole.VECTOR role_data.inputs.vectorf3_arr_1 = og.AttributeRole.VECTOR role_data.inputs.vectorh3_0 = og.AttributeRole.VECTOR role_data.inputs.vectorh3_1 = og.AttributeRole.VECTOR role_data.inputs.vectorh3_arr_0 = og.AttributeRole.VECTOR role_data.inputs.vectorh3_arr_1 = og.AttributeRole.VECTOR role_data.outputs.colord3_0 = og.AttributeRole.COLOR role_data.outputs.colord3_arr_0 = og.AttributeRole.COLOR role_data.outputs.colord4_0 = og.AttributeRole.COLOR role_data.outputs.colord4_arr_0 = og.AttributeRole.COLOR role_data.outputs.colorf3_0 = og.AttributeRole.COLOR role_data.outputs.colorf3_arr_0 = og.AttributeRole.COLOR role_data.outputs.colorf4_0 = og.AttributeRole.COLOR role_data.outputs.colorf4_arr_0 = og.AttributeRole.COLOR role_data.outputs.colorh3_0 = og.AttributeRole.COLOR role_data.outputs.colorh3_arr_0 = og.AttributeRole.COLOR role_data.outputs.colorh4_0 = og.AttributeRole.COLOR role_data.outputs.colorh4_arr_0 = og.AttributeRole.COLOR role_data.outputs.frame4_0 = og.AttributeRole.FRAME role_data.outputs.frame4_arr_0 = og.AttributeRole.FRAME role_data.outputs.matrixd2_0 = og.AttributeRole.MATRIX role_data.outputs.matrixd2_arr_0 = og.AttributeRole.MATRIX role_data.outputs.matrixd3_0 = og.AttributeRole.MATRIX role_data.outputs.matrixd3_arr_0 = og.AttributeRole.MATRIX role_data.outputs.matrixd4_0 = og.AttributeRole.MATRIX role_data.outputs.matrixd4_arr_0 = og.AttributeRole.MATRIX role_data.outputs.normald3_0 = og.AttributeRole.NORMAL role_data.outputs.normald3_arr_0 = og.AttributeRole.NORMAL role_data.outputs.normalf3_0 = og.AttributeRole.NORMAL role_data.outputs.normalf3_arr_0 = og.AttributeRole.NORMAL role_data.outputs.normalh3_0 = og.AttributeRole.NORMAL role_data.outputs.normalh3_arr_0 = og.AttributeRole.NORMAL role_data.outputs.pointd3_0 = og.AttributeRole.POSITION role_data.outputs.pointd3_arr_0 = og.AttributeRole.POSITION role_data.outputs.pointf3_0 = og.AttributeRole.POSITION role_data.outputs.pointf3_arr_0 = og.AttributeRole.POSITION role_data.outputs.pointh3_0 = og.AttributeRole.POSITION role_data.outputs.pointh3_arr_0 = og.AttributeRole.POSITION role_data.outputs.quatd4_0 = og.AttributeRole.QUATERNION role_data.outputs.quatd4_arr_0 = og.AttributeRole.QUATERNION role_data.outputs.quatf4_0 = og.AttributeRole.QUATERNION role_data.outputs.quatf4_arr_0 = og.AttributeRole.QUATERNION role_data.outputs.quath4_0 = og.AttributeRole.QUATERNION role_data.outputs.quath4_arr_0 = og.AttributeRole.QUATERNION role_data.outputs.texcoordd2_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordd2_arr_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordd3_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordd3_arr_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordf2_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordf2_arr_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordf3_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordf3_arr_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordh2_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordh2_arr_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordh3_0 = og.AttributeRole.TEXCOORD role_data.outputs.texcoordh3_arr_0 = og.AttributeRole.TEXCOORD role_data.outputs.timecode_0 = og.AttributeRole.TIMECODE role_data.outputs.timecode_arr_0 = og.AttributeRole.TIMECODE role_data.outputs.transform4_0 = og.AttributeRole.TRANSFORM role_data.outputs.transform4_arr_0 = og.AttributeRole.TRANSFORM role_data.outputs.vectord3_0 = og.AttributeRole.VECTOR role_data.outputs.vectord3_arr_0 = og.AttributeRole.VECTOR role_data.outputs.vectorf3_0 = og.AttributeRole.VECTOR role_data.outputs.vectorf3_arr_0 = og.AttributeRole.VECTOR role_data.outputs.vectorh3_0 = og.AttributeRole.VECTOR role_data.outputs.vectorh3_arr_0 = og.AttributeRole.VECTOR return role_data class ValuesForInputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"bool_0", "bool_1", "colord3_0", "colord3_1", "colord4_0", "colord4_1", "colorf3_0", "colorf3_1", "colorf4_0", "colorf4_1", "colorh3_0", "colorh3_1", "colorh4_0", "colorh4_1", "double2_0", "double2_1", "double3_0", "double3_1", "double4_0", "double4_1", "double_0", "double_1", "float2_0", "float2_1", "float3_0", "float3_1", "float4_0", "float4_1", "float_0", "float_1", "frame4_0", "frame4_1", "half2_0", "half2_1", "half3_0", "half3_1", "half4_0", "half4_1", "half_0", "half_1", "int2_0", "int2_1", "int3_0", "int3_1", "int4_0", "int4_1", "int64_0", "int64_1", "int_0", "int_1", "matrixd2_0", "matrixd2_1", "matrixd3_0", "matrixd3_1", "matrixd4_0", "matrixd4_1", "normald3_0", "normald3_1", "normalf3_0", "normalf3_1", "normalh3_0", "normalh3_1", "pointd3_0", "pointd3_1", "pointf3_0", "pointf3_1", "pointh3_0", "pointh3_1", "quatd4_0", "quatd4_1", "quatf4_0", "quatf4_1", "quath4_0", "quath4_1", "texcoordd2_0", "texcoordd2_1", "texcoordd3_0", "texcoordd3_1", "texcoordf2_0", "texcoordf2_1", "texcoordf3_0", "texcoordf3_1", "texcoordh2_0", "texcoordh2_1", "texcoordh3_0", "texcoordh3_1", "timecode_0", "timecode_1", "token_0", "token_1", "transform4_0", "transform4_1", "uchar_0", "uchar_1", "uint64_0", "uint64_1", "uint_0", "uint_1", "vectord3_0", "vectord3_1", "vectorf3_0", "vectorf3_1", "vectorh3_0", "vectorh3_1", "_setting_locked", "_batchedReadAttributes", "_batchedReadValues"} """Helper class that creates natural hierarchical access to input attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self._batchedReadAttributes = [self._attributes.bool_0, self._attributes.bool_1, self._attributes.colord3_0, self._attributes.colord3_1, self._attributes.colord4_0, self._attributes.colord4_1, self._attributes.colorf3_0, self._attributes.colorf3_1, self._attributes.colorf4_0, self._attributes.colorf4_1, self._attributes.colorh3_0, self._attributes.colorh3_1, self._attributes.colorh4_0, self._attributes.colorh4_1, self._attributes.double2_0, self._attributes.double2_1, self._attributes.double3_0, self._attributes.double3_1, self._attributes.double4_0, self._attributes.double4_1, self._attributes.double_0, self._attributes.double_1, self._attributes.float2_0, self._attributes.float2_1, self._attributes.float3_0, self._attributes.float3_1, self._attributes.float4_0, self._attributes.float4_1, self._attributes.float_0, self._attributes.float_1, self._attributes.frame4_0, self._attributes.frame4_1, self._attributes.half2_0, self._attributes.half2_1, self._attributes.half3_0, self._attributes.half3_1, self._attributes.half4_0, self._attributes.half4_1, self._attributes.half_0, self._attributes.half_1, self._attributes.int2_0, self._attributes.int2_1, self._attributes.int3_0, self._attributes.int3_1, self._attributes.int4_0, self._attributes.int4_1, self._attributes.int64_0, self._attributes.int64_1, self._attributes.int_0, self._attributes.int_1, self._attributes.matrixd2_0, self._attributes.matrixd2_1, self._attributes.matrixd3_0, self._attributes.matrixd3_1, self._attributes.matrixd4_0, self._attributes.matrixd4_1, self._attributes.normald3_0, self._attributes.normald3_1, self._attributes.normalf3_0, self._attributes.normalf3_1, self._attributes.normalh3_0, self._attributes.normalh3_1, self._attributes.pointd3_0, self._attributes.pointd3_1, self._attributes.pointf3_0, self._attributes.pointf3_1, self._attributes.pointh3_0, self._attributes.pointh3_1, self._attributes.quatd4_0, self._attributes.quatd4_1, self._attributes.quatf4_0, self._attributes.quatf4_1, self._attributes.quath4_0, self._attributes.quath4_1, self._attributes.texcoordd2_0, self._attributes.texcoordd2_1, self._attributes.texcoordd3_0, self._attributes.texcoordd3_1, self._attributes.texcoordf2_0, self._attributes.texcoordf2_1, self._attributes.texcoordf3_0, self._attributes.texcoordf3_1, self._attributes.texcoordh2_0, self._attributes.texcoordh2_1, self._attributes.texcoordh3_0, self._attributes.texcoordh3_1, self._attributes.timecode_0, self._attributes.timecode_1, self._attributes.token_0, self._attributes.token_1, self._attributes.transform4_0, self._attributes.transform4_1, self._attributes.uchar_0, self._attributes.uchar_1, self._attributes.uint64_0, self._attributes.uint64_1, self._attributes.uint_0, self._attributes.uint_1, self._attributes.vectord3_0, self._attributes.vectord3_1, self._attributes.vectorf3_0, self._attributes.vectorf3_1, self._attributes.vectorh3_0, self._attributes.vectorh3_1] self._batchedReadValues = [False, False, [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], 0.0, 0.0, [0.0, 0.0], [0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], 0.0, 0.0, [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], 0.0, 0.0, [0, 0], [0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], 0, 0, 0, 0, [[0.0, 0.0], [0.0, 0.0]], [[0.0, 0.0], [0.0, 0.0]], [[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0], [0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], 0.0, 0.0, "default_token", "default_token", [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], [[0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0], [0.0, 0.0, 0.0, 0.0]], 0, 0, 0, 0, 0, 0, [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0], [0.0, 0.0, 0.0]] @property def bool_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.bool_arr_0) return data_view.get() @bool_arr_0.setter def bool_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.bool_arr_0) data_view = og.AttributeValueHelper(self._attributes.bool_arr_0) data_view.set(value) self.bool_arr_0_size = data_view.get_array_size() @property def bool_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.bool_arr_1) return data_view.get() @bool_arr_1.setter def bool_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.bool_arr_1) data_view = og.AttributeValueHelper(self._attributes.bool_arr_1) data_view.set(value) self.bool_arr_1_size = data_view.get_array_size() @property def colord3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colord3_arr_0) return data_view.get() @colord3_arr_0.setter def colord3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colord3_arr_0) data_view = og.AttributeValueHelper(self._attributes.colord3_arr_0) data_view.set(value) self.colord3_arr_0_size = data_view.get_array_size() @property def colord3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.colord3_arr_1) return data_view.get() @colord3_arr_1.setter def colord3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colord3_arr_1) data_view = og.AttributeValueHelper(self._attributes.colord3_arr_1) data_view.set(value) self.colord3_arr_1_size = data_view.get_array_size() @property def colord4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colord4_arr_0) return data_view.get() @colord4_arr_0.setter def colord4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colord4_arr_0) data_view = og.AttributeValueHelper(self._attributes.colord4_arr_0) data_view.set(value) self.colord4_arr_0_size = data_view.get_array_size() @property def colord4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.colord4_arr_1) return data_view.get() @colord4_arr_1.setter def colord4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colord4_arr_1) data_view = og.AttributeValueHelper(self._attributes.colord4_arr_1) data_view.set(value) self.colord4_arr_1_size = data_view.get_array_size() @property def colorf3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colorf3_arr_0) return data_view.get() @colorf3_arr_0.setter def colorf3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colorf3_arr_0) data_view = og.AttributeValueHelper(self._attributes.colorf3_arr_0) data_view.set(value) self.colorf3_arr_0_size = data_view.get_array_size() @property def colorf3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.colorf3_arr_1) return data_view.get() @colorf3_arr_1.setter def colorf3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colorf3_arr_1) data_view = og.AttributeValueHelper(self._attributes.colorf3_arr_1) data_view.set(value) self.colorf3_arr_1_size = data_view.get_array_size() @property def colorf4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colorf4_arr_0) return data_view.get() @colorf4_arr_0.setter def colorf4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colorf4_arr_0) data_view = og.AttributeValueHelper(self._attributes.colorf4_arr_0) data_view.set(value) self.colorf4_arr_0_size = data_view.get_array_size() @property def colorf4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.colorf4_arr_1) return data_view.get() @colorf4_arr_1.setter def colorf4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colorf4_arr_1) data_view = og.AttributeValueHelper(self._attributes.colorf4_arr_1) data_view.set(value) self.colorf4_arr_1_size = data_view.get_array_size() @property def colorh3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colorh3_arr_0) return data_view.get() @colorh3_arr_0.setter def colorh3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colorh3_arr_0) data_view = og.AttributeValueHelper(self._attributes.colorh3_arr_0) data_view.set(value) self.colorh3_arr_0_size = data_view.get_array_size() @property def colorh3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.colorh3_arr_1) return data_view.get() @colorh3_arr_1.setter def colorh3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colorh3_arr_1) data_view = og.AttributeValueHelper(self._attributes.colorh3_arr_1) data_view.set(value) self.colorh3_arr_1_size = data_view.get_array_size() @property def colorh4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colorh4_arr_0) return data_view.get() @colorh4_arr_0.setter def colorh4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colorh4_arr_0) data_view = og.AttributeValueHelper(self._attributes.colorh4_arr_0) data_view.set(value) self.colorh4_arr_0_size = data_view.get_array_size() @property def colorh4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.colorh4_arr_1) return data_view.get() @colorh4_arr_1.setter def colorh4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.colorh4_arr_1) data_view = og.AttributeValueHelper(self._attributes.colorh4_arr_1) data_view.set(value) self.colorh4_arr_1_size = data_view.get_array_size() @property def double2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.double2_arr_0) return data_view.get() @double2_arr_0.setter def double2_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.double2_arr_0) data_view = og.AttributeValueHelper(self._attributes.double2_arr_0) data_view.set(value) self.double2_arr_0_size = data_view.get_array_size() @property def double2_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.double2_arr_1) return data_view.get() @double2_arr_1.setter def double2_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.double2_arr_1) data_view = og.AttributeValueHelper(self._attributes.double2_arr_1) data_view.set(value) self.double2_arr_1_size = data_view.get_array_size() @property def double3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.double3_arr_0) return data_view.get() @double3_arr_0.setter def double3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.double3_arr_0) data_view = og.AttributeValueHelper(self._attributes.double3_arr_0) data_view.set(value) self.double3_arr_0_size = data_view.get_array_size() @property def double3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.double3_arr_1) return data_view.get() @double3_arr_1.setter def double3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.double3_arr_1) data_view = og.AttributeValueHelper(self._attributes.double3_arr_1) data_view.set(value) self.double3_arr_1_size = data_view.get_array_size() @property def double4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.double4_arr_0) return data_view.get() @double4_arr_0.setter def double4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.double4_arr_0) data_view = og.AttributeValueHelper(self._attributes.double4_arr_0) data_view.set(value) self.double4_arr_0_size = data_view.get_array_size() @property def double4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.double4_arr_1) return data_view.get() @double4_arr_1.setter def double4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.double4_arr_1) data_view = og.AttributeValueHelper(self._attributes.double4_arr_1) data_view.set(value) self.double4_arr_1_size = data_view.get_array_size() @property def double_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.double_arr_0) return data_view.get() @double_arr_0.setter def double_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.double_arr_0) data_view = og.AttributeValueHelper(self._attributes.double_arr_0) data_view.set(value) self.double_arr_0_size = data_view.get_array_size() @property def double_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.double_arr_1) return data_view.get() @double_arr_1.setter def double_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.double_arr_1) data_view = og.AttributeValueHelper(self._attributes.double_arr_1) data_view.set(value) self.double_arr_1_size = data_view.get_array_size() @property def float2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.float2_arr_0) return data_view.get() @float2_arr_0.setter def float2_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.float2_arr_0) data_view = og.AttributeValueHelper(self._attributes.float2_arr_0) data_view.set(value) self.float2_arr_0_size = data_view.get_array_size() @property def float2_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.float2_arr_1) return data_view.get() @float2_arr_1.setter def float2_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.float2_arr_1) data_view = og.AttributeValueHelper(self._attributes.float2_arr_1) data_view.set(value) self.float2_arr_1_size = data_view.get_array_size() @property def float3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.float3_arr_0) return data_view.get() @float3_arr_0.setter def float3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.float3_arr_0) data_view = og.AttributeValueHelper(self._attributes.float3_arr_0) data_view.set(value) self.float3_arr_0_size = data_view.get_array_size() @property def float3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.float3_arr_1) return data_view.get() @float3_arr_1.setter def float3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.float3_arr_1) data_view = og.AttributeValueHelper(self._attributes.float3_arr_1) data_view.set(value) self.float3_arr_1_size = data_view.get_array_size() @property def float4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.float4_arr_0) return data_view.get() @float4_arr_0.setter def float4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.float4_arr_0) data_view = og.AttributeValueHelper(self._attributes.float4_arr_0) data_view.set(value) self.float4_arr_0_size = data_view.get_array_size() @property def float4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.float4_arr_1) return data_view.get() @float4_arr_1.setter def float4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.float4_arr_1) data_view = og.AttributeValueHelper(self._attributes.float4_arr_1) data_view.set(value) self.float4_arr_1_size = data_view.get_array_size() @property def float_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.float_arr_0) return data_view.get() @float_arr_0.setter def float_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.float_arr_0) data_view = og.AttributeValueHelper(self._attributes.float_arr_0) data_view.set(value) self.float_arr_0_size = data_view.get_array_size() @property def float_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.float_arr_1) return data_view.get() @float_arr_1.setter def float_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.float_arr_1) data_view = og.AttributeValueHelper(self._attributes.float_arr_1) data_view.set(value) self.float_arr_1_size = data_view.get_array_size() @property def frame4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.frame4_arr_0) return data_view.get() @frame4_arr_0.setter def frame4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.frame4_arr_0) data_view = og.AttributeValueHelper(self._attributes.frame4_arr_0) data_view.set(value) self.frame4_arr_0_size = data_view.get_array_size() @property def frame4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.frame4_arr_1) return data_view.get() @frame4_arr_1.setter def frame4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.frame4_arr_1) data_view = og.AttributeValueHelper(self._attributes.frame4_arr_1) data_view.set(value) self.frame4_arr_1_size = data_view.get_array_size() @property def half2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.half2_arr_0) return data_view.get() @half2_arr_0.setter def half2_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.half2_arr_0) data_view = og.AttributeValueHelper(self._attributes.half2_arr_0) data_view.set(value) self.half2_arr_0_size = data_view.get_array_size() @property def half2_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.half2_arr_1) return data_view.get() @half2_arr_1.setter def half2_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.half2_arr_1) data_view = og.AttributeValueHelper(self._attributes.half2_arr_1) data_view.set(value) self.half2_arr_1_size = data_view.get_array_size() @property def half3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.half3_arr_0) return data_view.get() @half3_arr_0.setter def half3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.half3_arr_0) data_view = og.AttributeValueHelper(self._attributes.half3_arr_0) data_view.set(value) self.half3_arr_0_size = data_view.get_array_size() @property def half3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.half3_arr_1) return data_view.get() @half3_arr_1.setter def half3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.half3_arr_1) data_view = og.AttributeValueHelper(self._attributes.half3_arr_1) data_view.set(value) self.half3_arr_1_size = data_view.get_array_size() @property def half4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.half4_arr_0) return data_view.get() @half4_arr_0.setter def half4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.half4_arr_0) data_view = og.AttributeValueHelper(self._attributes.half4_arr_0) data_view.set(value) self.half4_arr_0_size = data_view.get_array_size() @property def half4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.half4_arr_1) return data_view.get() @half4_arr_1.setter def half4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.half4_arr_1) data_view = og.AttributeValueHelper(self._attributes.half4_arr_1) data_view.set(value) self.half4_arr_1_size = data_view.get_array_size() @property def half_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.half_arr_0) return data_view.get() @half_arr_0.setter def half_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.half_arr_0) data_view = og.AttributeValueHelper(self._attributes.half_arr_0) data_view.set(value) self.half_arr_0_size = data_view.get_array_size() @property def half_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.half_arr_1) return data_view.get() @half_arr_1.setter def half_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.half_arr_1) data_view = og.AttributeValueHelper(self._attributes.half_arr_1) data_view.set(value) self.half_arr_1_size = data_view.get_array_size() @property def int2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.int2_arr_0) return data_view.get() @int2_arr_0.setter def int2_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.int2_arr_0) data_view = og.AttributeValueHelper(self._attributes.int2_arr_0) data_view.set(value) self.int2_arr_0_size = data_view.get_array_size() @property def int2_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.int2_arr_1) return data_view.get() @int2_arr_1.setter def int2_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.int2_arr_1) data_view = og.AttributeValueHelper(self._attributes.int2_arr_1) data_view.set(value) self.int2_arr_1_size = data_view.get_array_size() @property def int3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.int3_arr_0) return data_view.get() @int3_arr_0.setter def int3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.int3_arr_0) data_view = og.AttributeValueHelper(self._attributes.int3_arr_0) data_view.set(value) self.int3_arr_0_size = data_view.get_array_size() @property def int3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.int3_arr_1) return data_view.get() @int3_arr_1.setter def int3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.int3_arr_1) data_view = og.AttributeValueHelper(self._attributes.int3_arr_1) data_view.set(value) self.int3_arr_1_size = data_view.get_array_size() @property def int4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.int4_arr_0) return data_view.get() @int4_arr_0.setter def int4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.int4_arr_0) data_view = og.AttributeValueHelper(self._attributes.int4_arr_0) data_view.set(value) self.int4_arr_0_size = data_view.get_array_size() @property def int4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.int4_arr_1) return data_view.get() @int4_arr_1.setter def int4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.int4_arr_1) data_view = og.AttributeValueHelper(self._attributes.int4_arr_1) data_view.set(value) self.int4_arr_1_size = data_view.get_array_size() @property def int64_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.int64_arr_0) return data_view.get() @int64_arr_0.setter def int64_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.int64_arr_0) data_view = og.AttributeValueHelper(self._attributes.int64_arr_0) data_view.set(value) self.int64_arr_0_size = data_view.get_array_size() @property def int64_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.int64_arr_1) return data_view.get() @int64_arr_1.setter def int64_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.int64_arr_1) data_view = og.AttributeValueHelper(self._attributes.int64_arr_1) data_view.set(value) self.int64_arr_1_size = data_view.get_array_size() @property def int_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.int_arr_0) return data_view.get() @int_arr_0.setter def int_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.int_arr_0) data_view = og.AttributeValueHelper(self._attributes.int_arr_0) data_view.set(value) self.int_arr_0_size = data_view.get_array_size() @property def int_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.int_arr_1) return data_view.get() @int_arr_1.setter def int_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.int_arr_1) data_view = og.AttributeValueHelper(self._attributes.int_arr_1) data_view.set(value) self.int_arr_1_size = data_view.get_array_size() @property def matrixd2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.matrixd2_arr_0) return data_view.get() @matrixd2_arr_0.setter def matrixd2_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.matrixd2_arr_0) data_view = og.AttributeValueHelper(self._attributes.matrixd2_arr_0) data_view.set(value) self.matrixd2_arr_0_size = data_view.get_array_size() @property def matrixd2_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.matrixd2_arr_1) return data_view.get() @matrixd2_arr_1.setter def matrixd2_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.matrixd2_arr_1) data_view = og.AttributeValueHelper(self._attributes.matrixd2_arr_1) data_view.set(value) self.matrixd2_arr_1_size = data_view.get_array_size() @property def matrixd3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.matrixd3_arr_0) return data_view.get() @matrixd3_arr_0.setter def matrixd3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.matrixd3_arr_0) data_view = og.AttributeValueHelper(self._attributes.matrixd3_arr_0) data_view.set(value) self.matrixd3_arr_0_size = data_view.get_array_size() @property def matrixd3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.matrixd3_arr_1) return data_view.get() @matrixd3_arr_1.setter def matrixd3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.matrixd3_arr_1) data_view = og.AttributeValueHelper(self._attributes.matrixd3_arr_1) data_view.set(value) self.matrixd3_arr_1_size = data_view.get_array_size() @property def matrixd4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.matrixd4_arr_0) return data_view.get() @matrixd4_arr_0.setter def matrixd4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.matrixd4_arr_0) data_view = og.AttributeValueHelper(self._attributes.matrixd4_arr_0) data_view.set(value) self.matrixd4_arr_0_size = data_view.get_array_size() @property def matrixd4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.matrixd4_arr_1) return data_view.get() @matrixd4_arr_1.setter def matrixd4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.matrixd4_arr_1) data_view = og.AttributeValueHelper(self._attributes.matrixd4_arr_1) data_view.set(value) self.matrixd4_arr_1_size = data_view.get_array_size() @property def normald3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.normald3_arr_0) return data_view.get() @normald3_arr_0.setter def normald3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.normald3_arr_0) data_view = og.AttributeValueHelper(self._attributes.normald3_arr_0) data_view.set(value) self.normald3_arr_0_size = data_view.get_array_size() @property def normald3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.normald3_arr_1) return data_view.get() @normald3_arr_1.setter def normald3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.normald3_arr_1) data_view = og.AttributeValueHelper(self._attributes.normald3_arr_1) data_view.set(value) self.normald3_arr_1_size = data_view.get_array_size() @property def normalf3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.normalf3_arr_0) return data_view.get() @normalf3_arr_0.setter def normalf3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.normalf3_arr_0) data_view = og.AttributeValueHelper(self._attributes.normalf3_arr_0) data_view.set(value) self.normalf3_arr_0_size = data_view.get_array_size() @property def normalf3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.normalf3_arr_1) return data_view.get() @normalf3_arr_1.setter def normalf3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.normalf3_arr_1) data_view = og.AttributeValueHelper(self._attributes.normalf3_arr_1) data_view.set(value) self.normalf3_arr_1_size = data_view.get_array_size() @property def normalh3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.normalh3_arr_0) return data_view.get() @normalh3_arr_0.setter def normalh3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.normalh3_arr_0) data_view = og.AttributeValueHelper(self._attributes.normalh3_arr_0) data_view.set(value) self.normalh3_arr_0_size = data_view.get_array_size() @property def normalh3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.normalh3_arr_1) return data_view.get() @normalh3_arr_1.setter def normalh3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.normalh3_arr_1) data_view = og.AttributeValueHelper(self._attributes.normalh3_arr_1) data_view.set(value) self.normalh3_arr_1_size = data_view.get_array_size() @property def pointd3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.pointd3_arr_0) return data_view.get() @pointd3_arr_0.setter def pointd3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.pointd3_arr_0) data_view = og.AttributeValueHelper(self._attributes.pointd3_arr_0) data_view.set(value) self.pointd3_arr_0_size = data_view.get_array_size() @property def pointd3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.pointd3_arr_1) return data_view.get() @pointd3_arr_1.setter def pointd3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.pointd3_arr_1) data_view = og.AttributeValueHelper(self._attributes.pointd3_arr_1) data_view.set(value) self.pointd3_arr_1_size = data_view.get_array_size() @property def pointf3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.pointf3_arr_0) return data_view.get() @pointf3_arr_0.setter def pointf3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.pointf3_arr_0) data_view = og.AttributeValueHelper(self._attributes.pointf3_arr_0) data_view.set(value) self.pointf3_arr_0_size = data_view.get_array_size() @property def pointf3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.pointf3_arr_1) return data_view.get() @pointf3_arr_1.setter def pointf3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.pointf3_arr_1) data_view = og.AttributeValueHelper(self._attributes.pointf3_arr_1) data_view.set(value) self.pointf3_arr_1_size = data_view.get_array_size() @property def pointh3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.pointh3_arr_0) return data_view.get() @pointh3_arr_0.setter def pointh3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.pointh3_arr_0) data_view = og.AttributeValueHelper(self._attributes.pointh3_arr_0) data_view.set(value) self.pointh3_arr_0_size = data_view.get_array_size() @property def pointh3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.pointh3_arr_1) return data_view.get() @pointh3_arr_1.setter def pointh3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.pointh3_arr_1) data_view = og.AttributeValueHelper(self._attributes.pointh3_arr_1) data_view.set(value) self.pointh3_arr_1_size = data_view.get_array_size() @property def quatd4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.quatd4_arr_0) return data_view.get() @quatd4_arr_0.setter def quatd4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.quatd4_arr_0) data_view = og.AttributeValueHelper(self._attributes.quatd4_arr_0) data_view.set(value) self.quatd4_arr_0_size = data_view.get_array_size() @property def quatd4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.quatd4_arr_1) return data_view.get() @quatd4_arr_1.setter def quatd4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.quatd4_arr_1) data_view = og.AttributeValueHelper(self._attributes.quatd4_arr_1) data_view.set(value) self.quatd4_arr_1_size = data_view.get_array_size() @property def quatf4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.quatf4_arr_0) return data_view.get() @quatf4_arr_0.setter def quatf4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.quatf4_arr_0) data_view = og.AttributeValueHelper(self._attributes.quatf4_arr_0) data_view.set(value) self.quatf4_arr_0_size = data_view.get_array_size() @property def quatf4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.quatf4_arr_1) return data_view.get() @quatf4_arr_1.setter def quatf4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.quatf4_arr_1) data_view = og.AttributeValueHelper(self._attributes.quatf4_arr_1) data_view.set(value) self.quatf4_arr_1_size = data_view.get_array_size() @property def quath4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.quath4_arr_0) return data_view.get() @quath4_arr_0.setter def quath4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.quath4_arr_0) data_view = og.AttributeValueHelper(self._attributes.quath4_arr_0) data_view.set(value) self.quath4_arr_0_size = data_view.get_array_size() @property def quath4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.quath4_arr_1) return data_view.get() @quath4_arr_1.setter def quath4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.quath4_arr_1) data_view = og.AttributeValueHelper(self._attributes.quath4_arr_1) data_view.set(value) self.quath4_arr_1_size = data_view.get_array_size() @property def texcoordd2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordd2_arr_0) return data_view.get() @texcoordd2_arr_0.setter def texcoordd2_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordd2_arr_0) data_view = og.AttributeValueHelper(self._attributes.texcoordd2_arr_0) data_view.set(value) self.texcoordd2_arr_0_size = data_view.get_array_size() @property def texcoordd2_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.texcoordd2_arr_1) return data_view.get() @texcoordd2_arr_1.setter def texcoordd2_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordd2_arr_1) data_view = og.AttributeValueHelper(self._attributes.texcoordd2_arr_1) data_view.set(value) self.texcoordd2_arr_1_size = data_view.get_array_size() @property def texcoordd3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordd3_arr_0) return data_view.get() @texcoordd3_arr_0.setter def texcoordd3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordd3_arr_0) data_view = og.AttributeValueHelper(self._attributes.texcoordd3_arr_0) data_view.set(value) self.texcoordd3_arr_0_size = data_view.get_array_size() @property def texcoordd3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.texcoordd3_arr_1) return data_view.get() @texcoordd3_arr_1.setter def texcoordd3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordd3_arr_1) data_view = og.AttributeValueHelper(self._attributes.texcoordd3_arr_1) data_view.set(value) self.texcoordd3_arr_1_size = data_view.get_array_size() @property def texcoordf2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordf2_arr_0) return data_view.get() @texcoordf2_arr_0.setter def texcoordf2_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordf2_arr_0) data_view = og.AttributeValueHelper(self._attributes.texcoordf2_arr_0) data_view.set(value) self.texcoordf2_arr_0_size = data_view.get_array_size() @property def texcoordf2_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.texcoordf2_arr_1) return data_view.get() @texcoordf2_arr_1.setter def texcoordf2_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordf2_arr_1) data_view = og.AttributeValueHelper(self._attributes.texcoordf2_arr_1) data_view.set(value) self.texcoordf2_arr_1_size = data_view.get_array_size() @property def texcoordf3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordf3_arr_0) return data_view.get() @texcoordf3_arr_0.setter def texcoordf3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordf3_arr_0) data_view = og.AttributeValueHelper(self._attributes.texcoordf3_arr_0) data_view.set(value) self.texcoordf3_arr_0_size = data_view.get_array_size() @property def texcoordf3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.texcoordf3_arr_1) return data_view.get() @texcoordf3_arr_1.setter def texcoordf3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordf3_arr_1) data_view = og.AttributeValueHelper(self._attributes.texcoordf3_arr_1) data_view.set(value) self.texcoordf3_arr_1_size = data_view.get_array_size() @property def texcoordh2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordh2_arr_0) return data_view.get() @texcoordh2_arr_0.setter def texcoordh2_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordh2_arr_0) data_view = og.AttributeValueHelper(self._attributes.texcoordh2_arr_0) data_view.set(value) self.texcoordh2_arr_0_size = data_view.get_array_size() @property def texcoordh2_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.texcoordh2_arr_1) return data_view.get() @texcoordh2_arr_1.setter def texcoordh2_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordh2_arr_1) data_view = og.AttributeValueHelper(self._attributes.texcoordh2_arr_1) data_view.set(value) self.texcoordh2_arr_1_size = data_view.get_array_size() @property def texcoordh3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordh3_arr_0) return data_view.get() @texcoordh3_arr_0.setter def texcoordh3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordh3_arr_0) data_view = og.AttributeValueHelper(self._attributes.texcoordh3_arr_0) data_view.set(value) self.texcoordh3_arr_0_size = data_view.get_array_size() @property def texcoordh3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.texcoordh3_arr_1) return data_view.get() @texcoordh3_arr_1.setter def texcoordh3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.texcoordh3_arr_1) data_view = og.AttributeValueHelper(self._attributes.texcoordh3_arr_1) data_view.set(value) self.texcoordh3_arr_1_size = data_view.get_array_size() @property def timecode_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.timecode_arr_0) return data_view.get() @timecode_arr_0.setter def timecode_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.timecode_arr_0) data_view = og.AttributeValueHelper(self._attributes.timecode_arr_0) data_view.set(value) self.timecode_arr_0_size = data_view.get_array_size() @property def timecode_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.timecode_arr_1) return data_view.get() @timecode_arr_1.setter def timecode_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.timecode_arr_1) data_view = og.AttributeValueHelper(self._attributes.timecode_arr_1) data_view.set(value) self.timecode_arr_1_size = data_view.get_array_size() @property def token_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.token_arr_0) return data_view.get() @token_arr_0.setter def token_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.token_arr_0) data_view = og.AttributeValueHelper(self._attributes.token_arr_0) data_view.set(value) self.token_arr_0_size = data_view.get_array_size() @property def token_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.token_arr_1) return data_view.get() @token_arr_1.setter def token_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.token_arr_1) data_view = og.AttributeValueHelper(self._attributes.token_arr_1) data_view.set(value) self.token_arr_1_size = data_view.get_array_size() @property def transform4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.transform4_arr_0) return data_view.get() @transform4_arr_0.setter def transform4_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.transform4_arr_0) data_view = og.AttributeValueHelper(self._attributes.transform4_arr_0) data_view.set(value) self.transform4_arr_0_size = data_view.get_array_size() @property def transform4_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.transform4_arr_1) return data_view.get() @transform4_arr_1.setter def transform4_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.transform4_arr_1) data_view = og.AttributeValueHelper(self._attributes.transform4_arr_1) data_view.set(value) self.transform4_arr_1_size = data_view.get_array_size() @property def uchar_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.uchar_arr_0) return data_view.get() @uchar_arr_0.setter def uchar_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.uchar_arr_0) data_view = og.AttributeValueHelper(self._attributes.uchar_arr_0) data_view.set(value) self.uchar_arr_0_size = data_view.get_array_size() @property def uchar_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.uchar_arr_1) return data_view.get() @uchar_arr_1.setter def uchar_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.uchar_arr_1) data_view = og.AttributeValueHelper(self._attributes.uchar_arr_1) data_view.set(value) self.uchar_arr_1_size = data_view.get_array_size() @property def uint64_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.uint64_arr_0) return data_view.get() @uint64_arr_0.setter def uint64_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.uint64_arr_0) data_view = og.AttributeValueHelper(self._attributes.uint64_arr_0) data_view.set(value) self.uint64_arr_0_size = data_view.get_array_size() @property def uint64_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.uint64_arr_1) return data_view.get() @uint64_arr_1.setter def uint64_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.uint64_arr_1) data_view = og.AttributeValueHelper(self._attributes.uint64_arr_1) data_view.set(value) self.uint64_arr_1_size = data_view.get_array_size() @property def uint_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.uint_arr_0) return data_view.get() @uint_arr_0.setter def uint_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.uint_arr_0) data_view = og.AttributeValueHelper(self._attributes.uint_arr_0) data_view.set(value) self.uint_arr_0_size = data_view.get_array_size() @property def uint_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.uint_arr_1) return data_view.get() @uint_arr_1.setter def uint_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.uint_arr_1) data_view = og.AttributeValueHelper(self._attributes.uint_arr_1) data_view.set(value) self.uint_arr_1_size = data_view.get_array_size() @property def vectord3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.vectord3_arr_0) return data_view.get() @vectord3_arr_0.setter def vectord3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.vectord3_arr_0) data_view = og.AttributeValueHelper(self._attributes.vectord3_arr_0) data_view.set(value) self.vectord3_arr_0_size = data_view.get_array_size() @property def vectord3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.vectord3_arr_1) return data_view.get() @vectord3_arr_1.setter def vectord3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.vectord3_arr_1) data_view = og.AttributeValueHelper(self._attributes.vectord3_arr_1) data_view.set(value) self.vectord3_arr_1_size = data_view.get_array_size() @property def vectorf3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.vectorf3_arr_0) return data_view.get() @vectorf3_arr_0.setter def vectorf3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.vectorf3_arr_0) data_view = og.AttributeValueHelper(self._attributes.vectorf3_arr_0) data_view.set(value) self.vectorf3_arr_0_size = data_view.get_array_size() @property def vectorf3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.vectorf3_arr_1) return data_view.get() @vectorf3_arr_1.setter def vectorf3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.vectorf3_arr_1) data_view = og.AttributeValueHelper(self._attributes.vectorf3_arr_1) data_view.set(value) self.vectorf3_arr_1_size = data_view.get_array_size() @property def vectorh3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.vectorh3_arr_0) return data_view.get() @vectorh3_arr_0.setter def vectorh3_arr_0(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.vectorh3_arr_0) data_view = og.AttributeValueHelper(self._attributes.vectorh3_arr_0) data_view.set(value) self.vectorh3_arr_0_size = data_view.get_array_size() @property def vectorh3_arr_1(self): data_view = og.AttributeValueHelper(self._attributes.vectorh3_arr_1) return data_view.get() @vectorh3_arr_1.setter def vectorh3_arr_1(self, value): if self._setting_locked: raise og.ReadOnlyError(self._attributes.vectorh3_arr_1) data_view = og.AttributeValueHelper(self._attributes.vectorh3_arr_1) data_view.set(value) self.vectorh3_arr_1_size = data_view.get_array_size() @property def bool_0(self): return self._batchedReadValues[0] @bool_0.setter def bool_0(self, value): self._batchedReadValues[0] = value @property def bool_1(self): return self._batchedReadValues[1] @bool_1.setter def bool_1(self, value): self._batchedReadValues[1] = value @property def colord3_0(self): return self._batchedReadValues[2] @colord3_0.setter def colord3_0(self, value): self._batchedReadValues[2] = value @property def colord3_1(self): return self._batchedReadValues[3] @colord3_1.setter def colord3_1(self, value): self._batchedReadValues[3] = value @property def colord4_0(self): return self._batchedReadValues[4] @colord4_0.setter def colord4_0(self, value): self._batchedReadValues[4] = value @property def colord4_1(self): return self._batchedReadValues[5] @colord4_1.setter def colord4_1(self, value): self._batchedReadValues[5] = value @property def colorf3_0(self): return self._batchedReadValues[6] @colorf3_0.setter def colorf3_0(self, value): self._batchedReadValues[6] = value @property def colorf3_1(self): return self._batchedReadValues[7] @colorf3_1.setter def colorf3_1(self, value): self._batchedReadValues[7] = value @property def colorf4_0(self): return self._batchedReadValues[8] @colorf4_0.setter def colorf4_0(self, value): self._batchedReadValues[8] = value @property def colorf4_1(self): return self._batchedReadValues[9] @colorf4_1.setter def colorf4_1(self, value): self._batchedReadValues[9] = value @property def colorh3_0(self): return self._batchedReadValues[10] @colorh3_0.setter def colorh3_0(self, value): self._batchedReadValues[10] = value @property def colorh3_1(self): return self._batchedReadValues[11] @colorh3_1.setter def colorh3_1(self, value): self._batchedReadValues[11] = value @property def colorh4_0(self): return self._batchedReadValues[12] @colorh4_0.setter def colorh4_0(self, value): self._batchedReadValues[12] = value @property def colorh4_1(self): return self._batchedReadValues[13] @colorh4_1.setter def colorh4_1(self, value): self._batchedReadValues[13] = value @property def double2_0(self): return self._batchedReadValues[14] @double2_0.setter def double2_0(self, value): self._batchedReadValues[14] = value @property def double2_1(self): return self._batchedReadValues[15] @double2_1.setter def double2_1(self, value): self._batchedReadValues[15] = value @property def double3_0(self): return self._batchedReadValues[16] @double3_0.setter def double3_0(self, value): self._batchedReadValues[16] = value @property def double3_1(self): return self._batchedReadValues[17] @double3_1.setter def double3_1(self, value): self._batchedReadValues[17] = value @property def double4_0(self): return self._batchedReadValues[18] @double4_0.setter def double4_0(self, value): self._batchedReadValues[18] = value @property def double4_1(self): return self._batchedReadValues[19] @double4_1.setter def double4_1(self, value): self._batchedReadValues[19] = value @property def double_0(self): return self._batchedReadValues[20] @double_0.setter def double_0(self, value): self._batchedReadValues[20] = value @property def double_1(self): return self._batchedReadValues[21] @double_1.setter def double_1(self, value): self._batchedReadValues[21] = value @property def float2_0(self): return self._batchedReadValues[22] @float2_0.setter def float2_0(self, value): self._batchedReadValues[22] = value @property def float2_1(self): return self._batchedReadValues[23] @float2_1.setter def float2_1(self, value): self._batchedReadValues[23] = value @property def float3_0(self): return self._batchedReadValues[24] @float3_0.setter def float3_0(self, value): self._batchedReadValues[24] = value @property def float3_1(self): return self._batchedReadValues[25] @float3_1.setter def float3_1(self, value): self._batchedReadValues[25] = value @property def float4_0(self): return self._batchedReadValues[26] @float4_0.setter def float4_0(self, value): self._batchedReadValues[26] = value @property def float4_1(self): return self._batchedReadValues[27] @float4_1.setter def float4_1(self, value): self._batchedReadValues[27] = value @property def float_0(self): return self._batchedReadValues[28] @float_0.setter def float_0(self, value): self._batchedReadValues[28] = value @property def float_1(self): return self._batchedReadValues[29] @float_1.setter def float_1(self, value): self._batchedReadValues[29] = value @property def frame4_0(self): return self._batchedReadValues[30] @frame4_0.setter def frame4_0(self, value): self._batchedReadValues[30] = value @property def frame4_1(self): return self._batchedReadValues[31] @frame4_1.setter def frame4_1(self, value): self._batchedReadValues[31] = value @property def half2_0(self): return self._batchedReadValues[32] @half2_0.setter def half2_0(self, value): self._batchedReadValues[32] = value @property def half2_1(self): return self._batchedReadValues[33] @half2_1.setter def half2_1(self, value): self._batchedReadValues[33] = value @property def half3_0(self): return self._batchedReadValues[34] @half3_0.setter def half3_0(self, value): self._batchedReadValues[34] = value @property def half3_1(self): return self._batchedReadValues[35] @half3_1.setter def half3_1(self, value): self._batchedReadValues[35] = value @property def half4_0(self): return self._batchedReadValues[36] @half4_0.setter def half4_0(self, value): self._batchedReadValues[36] = value @property def half4_1(self): return self._batchedReadValues[37] @half4_1.setter def half4_1(self, value): self._batchedReadValues[37] = value @property def half_0(self): return self._batchedReadValues[38] @half_0.setter def half_0(self, value): self._batchedReadValues[38] = value @property def half_1(self): return self._batchedReadValues[39] @half_1.setter def half_1(self, value): self._batchedReadValues[39] = value @property def int2_0(self): return self._batchedReadValues[40] @int2_0.setter def int2_0(self, value): self._batchedReadValues[40] = value @property def int2_1(self): return self._batchedReadValues[41] @int2_1.setter def int2_1(self, value): self._batchedReadValues[41] = value @property def int3_0(self): return self._batchedReadValues[42] @int3_0.setter def int3_0(self, value): self._batchedReadValues[42] = value @property def int3_1(self): return self._batchedReadValues[43] @int3_1.setter def int3_1(self, value): self._batchedReadValues[43] = value @property def int4_0(self): return self._batchedReadValues[44] @int4_0.setter def int4_0(self, value): self._batchedReadValues[44] = value @property def int4_1(self): return self._batchedReadValues[45] @int4_1.setter def int4_1(self, value): self._batchedReadValues[45] = value @property def int64_0(self): return self._batchedReadValues[46] @int64_0.setter def int64_0(self, value): self._batchedReadValues[46] = value @property def int64_1(self): return self._batchedReadValues[47] @int64_1.setter def int64_1(self, value): self._batchedReadValues[47] = value @property def int_0(self): return self._batchedReadValues[48] @int_0.setter def int_0(self, value): self._batchedReadValues[48] = value @property def int_1(self): return self._batchedReadValues[49] @int_1.setter def int_1(self, value): self._batchedReadValues[49] = value @property def matrixd2_0(self): return self._batchedReadValues[50] @matrixd2_0.setter def matrixd2_0(self, value): self._batchedReadValues[50] = value @property def matrixd2_1(self): return self._batchedReadValues[51] @matrixd2_1.setter def matrixd2_1(self, value): self._batchedReadValues[51] = value @property def matrixd3_0(self): return self._batchedReadValues[52] @matrixd3_0.setter def matrixd3_0(self, value): self._batchedReadValues[52] = value @property def matrixd3_1(self): return self._batchedReadValues[53] @matrixd3_1.setter def matrixd3_1(self, value): self._batchedReadValues[53] = value @property def matrixd4_0(self): return self._batchedReadValues[54] @matrixd4_0.setter def matrixd4_0(self, value): self._batchedReadValues[54] = value @property def matrixd4_1(self): return self._batchedReadValues[55] @matrixd4_1.setter def matrixd4_1(self, value): self._batchedReadValues[55] = value @property def normald3_0(self): return self._batchedReadValues[56] @normald3_0.setter def normald3_0(self, value): self._batchedReadValues[56] = value @property def normald3_1(self): return self._batchedReadValues[57] @normald3_1.setter def normald3_1(self, value): self._batchedReadValues[57] = value @property def normalf3_0(self): return self._batchedReadValues[58] @normalf3_0.setter def normalf3_0(self, value): self._batchedReadValues[58] = value @property def normalf3_1(self): return self._batchedReadValues[59] @normalf3_1.setter def normalf3_1(self, value): self._batchedReadValues[59] = value @property def normalh3_0(self): return self._batchedReadValues[60] @normalh3_0.setter def normalh3_0(self, value): self._batchedReadValues[60] = value @property def normalh3_1(self): return self._batchedReadValues[61] @normalh3_1.setter def normalh3_1(self, value): self._batchedReadValues[61] = value @property def pointd3_0(self): return self._batchedReadValues[62] @pointd3_0.setter def pointd3_0(self, value): self._batchedReadValues[62] = value @property def pointd3_1(self): return self._batchedReadValues[63] @pointd3_1.setter def pointd3_1(self, value): self._batchedReadValues[63] = value @property def pointf3_0(self): return self._batchedReadValues[64] @pointf3_0.setter def pointf3_0(self, value): self._batchedReadValues[64] = value @property def pointf3_1(self): return self._batchedReadValues[65] @pointf3_1.setter def pointf3_1(self, value): self._batchedReadValues[65] = value @property def pointh3_0(self): return self._batchedReadValues[66] @pointh3_0.setter def pointh3_0(self, value): self._batchedReadValues[66] = value @property def pointh3_1(self): return self._batchedReadValues[67] @pointh3_1.setter def pointh3_1(self, value): self._batchedReadValues[67] = value @property def quatd4_0(self): return self._batchedReadValues[68] @quatd4_0.setter def quatd4_0(self, value): self._batchedReadValues[68] = value @property def quatd4_1(self): return self._batchedReadValues[69] @quatd4_1.setter def quatd4_1(self, value): self._batchedReadValues[69] = value @property def quatf4_0(self): return self._batchedReadValues[70] @quatf4_0.setter def quatf4_0(self, value): self._batchedReadValues[70] = value @property def quatf4_1(self): return self._batchedReadValues[71] @quatf4_1.setter def quatf4_1(self, value): self._batchedReadValues[71] = value @property def quath4_0(self): return self._batchedReadValues[72] @quath4_0.setter def quath4_0(self, value): self._batchedReadValues[72] = value @property def quath4_1(self): return self._batchedReadValues[73] @quath4_1.setter def quath4_1(self, value): self._batchedReadValues[73] = value @property def texcoordd2_0(self): return self._batchedReadValues[74] @texcoordd2_0.setter def texcoordd2_0(self, value): self._batchedReadValues[74] = value @property def texcoordd2_1(self): return self._batchedReadValues[75] @texcoordd2_1.setter def texcoordd2_1(self, value): self._batchedReadValues[75] = value @property def texcoordd3_0(self): return self._batchedReadValues[76] @texcoordd3_0.setter def texcoordd3_0(self, value): self._batchedReadValues[76] = value @property def texcoordd3_1(self): return self._batchedReadValues[77] @texcoordd3_1.setter def texcoordd3_1(self, value): self._batchedReadValues[77] = value @property def texcoordf2_0(self): return self._batchedReadValues[78] @texcoordf2_0.setter def texcoordf2_0(self, value): self._batchedReadValues[78] = value @property def texcoordf2_1(self): return self._batchedReadValues[79] @texcoordf2_1.setter def texcoordf2_1(self, value): self._batchedReadValues[79] = value @property def texcoordf3_0(self): return self._batchedReadValues[80] @texcoordf3_0.setter def texcoordf3_0(self, value): self._batchedReadValues[80] = value @property def texcoordf3_1(self): return self._batchedReadValues[81] @texcoordf3_1.setter def texcoordf3_1(self, value): self._batchedReadValues[81] = value @property def texcoordh2_0(self): return self._batchedReadValues[82] @texcoordh2_0.setter def texcoordh2_0(self, value): self._batchedReadValues[82] = value @property def texcoordh2_1(self): return self._batchedReadValues[83] @texcoordh2_1.setter def texcoordh2_1(self, value): self._batchedReadValues[83] = value @property def texcoordh3_0(self): return self._batchedReadValues[84] @texcoordh3_0.setter def texcoordh3_0(self, value): self._batchedReadValues[84] = value @property def texcoordh3_1(self): return self._batchedReadValues[85] @texcoordh3_1.setter def texcoordh3_1(self, value): self._batchedReadValues[85] = value @property def timecode_0(self): return self._batchedReadValues[86] @timecode_0.setter def timecode_0(self, value): self._batchedReadValues[86] = value @property def timecode_1(self): return self._batchedReadValues[87] @timecode_1.setter def timecode_1(self, value): self._batchedReadValues[87] = value @property def token_0(self): return self._batchedReadValues[88] @token_0.setter def token_0(self, value): self._batchedReadValues[88] = value @property def token_1(self): return self._batchedReadValues[89] @token_1.setter def token_1(self, value): self._batchedReadValues[89] = value @property def transform4_0(self): return self._batchedReadValues[90] @transform4_0.setter def transform4_0(self, value): self._batchedReadValues[90] = value @property def transform4_1(self): return self._batchedReadValues[91] @transform4_1.setter def transform4_1(self, value): self._batchedReadValues[91] = value @property def uchar_0(self): return self._batchedReadValues[92] @uchar_0.setter def uchar_0(self, value): self._batchedReadValues[92] = value @property def uchar_1(self): return self._batchedReadValues[93] @uchar_1.setter def uchar_1(self, value): self._batchedReadValues[93] = value @property def uint64_0(self): return self._batchedReadValues[94] @uint64_0.setter def uint64_0(self, value): self._batchedReadValues[94] = value @property def uint64_1(self): return self._batchedReadValues[95] @uint64_1.setter def uint64_1(self, value): self._batchedReadValues[95] = value @property def uint_0(self): return self._batchedReadValues[96] @uint_0.setter def uint_0(self, value): self._batchedReadValues[96] = value @property def uint_1(self): return self._batchedReadValues[97] @uint_1.setter def uint_1(self, value): self._batchedReadValues[97] = value @property def vectord3_0(self): return self._batchedReadValues[98] @vectord3_0.setter def vectord3_0(self, value): self._batchedReadValues[98] = value @property def vectord3_1(self): return self._batchedReadValues[99] @vectord3_1.setter def vectord3_1(self, value): self._batchedReadValues[99] = value @property def vectorf3_0(self): return self._batchedReadValues[100] @vectorf3_0.setter def vectorf3_0(self, value): self._batchedReadValues[100] = value @property def vectorf3_1(self): return self._batchedReadValues[101] @vectorf3_1.setter def vectorf3_1(self, value): self._batchedReadValues[101] = value @property def vectorh3_0(self): return self._batchedReadValues[102] @vectorh3_0.setter def vectorh3_0(self, value): self._batchedReadValues[102] = value @property def vectorh3_1(self): return self._batchedReadValues[103] @vectorh3_1.setter def vectorh3_1(self, value): self._batchedReadValues[103] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _prefetch(self): readAttributes = self._batchedReadAttributes newValues = _og._prefetch_input_attributes_data(readAttributes) if len(readAttributes) == len(newValues): self._batchedReadValues = newValues class ValuesForOutputs(og.DynamicAttributeAccess): LOCAL_PROPERTY_NAMES = {"bool_0", "colord3_0", "colord4_0", "colorf3_0", "colorf4_0", "colorh3_0", "colorh4_0", "double2_0", "double3_0", "double4_0", "double_0", "float2_0", "float3_0", "float4_0", "float_0", "frame4_0", "half2_0", "half3_0", "half4_0", "half_0", "int2_0", "int3_0", "int4_0", "int64_0", "int_0", "matrixd2_0", "matrixd3_0", "matrixd4_0", "normald3_0", "normalf3_0", "normalh3_0", "pointd3_0", "pointf3_0", "pointh3_0", "quatd4_0", "quatf4_0", "quath4_0", "texcoordd2_0", "texcoordd3_0", "texcoordf2_0", "texcoordf3_0", "texcoordh2_0", "texcoordh3_0", "timecode_0", "token_0", "transform4_0", "uchar_0", "uint64_0", "uint_0", "vectord3_0", "vectorf3_0", "vectorh3_0", "_batchedWriteValues"} """Helper class that creates natural hierarchical access to output attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) self.bool_arr_0_size = 0 self.colord3_arr_0_size = 0 self.colord4_arr_0_size = 0 self.colorf3_arr_0_size = 0 self.colorf4_arr_0_size = 0 self.colorh3_arr_0_size = 0 self.colorh4_arr_0_size = 0 self.double2_arr_0_size = 0 self.double3_arr_0_size = 0 self.double4_arr_0_size = 0 self.double_arr_0_size = 0 self.float2_arr_0_size = 0 self.float3_arr_0_size = 0 self.float4_arr_0_size = 0 self.float_arr_0_size = 0 self.frame4_arr_0_size = 0 self.half2_arr_0_size = 0 self.half3_arr_0_size = 0 self.half4_arr_0_size = 0 self.half_arr_0_size = 0 self.int2_arr_0_size = 0 self.int3_arr_0_size = 0 self.int4_arr_0_size = 0 self.int64_arr_0_size = 0 self.int_arr_0_size = 0 self.matrixd2_arr_0_size = 0 self.matrixd3_arr_0_size = 0 self.matrixd4_arr_0_size = 0 self.normald3_arr_0_size = 0 self.normalf3_arr_0_size = 0 self.normalh3_arr_0_size = 0 self.pointd3_arr_0_size = 0 self.pointf3_arr_0_size = 0 self.pointh3_arr_0_size = 0 self.quatd4_arr_0_size = 0 self.quatf4_arr_0_size = 0 self.quath4_arr_0_size = 0 self.texcoordd2_arr_0_size = 0 self.texcoordd3_arr_0_size = 0 self.texcoordf2_arr_0_size = 0 self.texcoordf3_arr_0_size = 0 self.texcoordh2_arr_0_size = 0 self.texcoordh3_arr_0_size = 0 self.timecode_arr_0_size = 0 self.token_arr_0_size = 0 self.transform4_arr_0_size = 0 self.uchar_arr_0_size = 0 self.uint64_arr_0_size = 0 self.uint_arr_0_size = 0 self.vectord3_arr_0_size = 0 self.vectorf3_arr_0_size = 0 self.vectorh3_arr_0_size = 0 self._batchedWriteValues = { } @property def bool_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.bool_arr_0) return data_view.get(reserved_element_count=self.bool_arr_0_size) @bool_arr_0.setter def bool_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.bool_arr_0) data_view.set(value) self.bool_arr_0_size = data_view.get_array_size() @property def colord3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colord3_arr_0) return data_view.get(reserved_element_count=self.colord3_arr_0_size) @colord3_arr_0.setter def colord3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.colord3_arr_0) data_view.set(value) self.colord3_arr_0_size = data_view.get_array_size() @property def colord4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colord4_arr_0) return data_view.get(reserved_element_count=self.colord4_arr_0_size) @colord4_arr_0.setter def colord4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.colord4_arr_0) data_view.set(value) self.colord4_arr_0_size = data_view.get_array_size() @property def colorf3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colorf3_arr_0) return data_view.get(reserved_element_count=self.colorf3_arr_0_size) @colorf3_arr_0.setter def colorf3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.colorf3_arr_0) data_view.set(value) self.colorf3_arr_0_size = data_view.get_array_size() @property def colorf4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colorf4_arr_0) return data_view.get(reserved_element_count=self.colorf4_arr_0_size) @colorf4_arr_0.setter def colorf4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.colorf4_arr_0) data_view.set(value) self.colorf4_arr_0_size = data_view.get_array_size() @property def colorh3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colorh3_arr_0) return data_view.get(reserved_element_count=self.colorh3_arr_0_size) @colorh3_arr_0.setter def colorh3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.colorh3_arr_0) data_view.set(value) self.colorh3_arr_0_size = data_view.get_array_size() @property def colorh4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.colorh4_arr_0) return data_view.get(reserved_element_count=self.colorh4_arr_0_size) @colorh4_arr_0.setter def colorh4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.colorh4_arr_0) data_view.set(value) self.colorh4_arr_0_size = data_view.get_array_size() @property def double2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.double2_arr_0) return data_view.get(reserved_element_count=self.double2_arr_0_size) @double2_arr_0.setter def double2_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.double2_arr_0) data_view.set(value) self.double2_arr_0_size = data_view.get_array_size() @property def double3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.double3_arr_0) return data_view.get(reserved_element_count=self.double3_arr_0_size) @double3_arr_0.setter def double3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.double3_arr_0) data_view.set(value) self.double3_arr_0_size = data_view.get_array_size() @property def double4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.double4_arr_0) return data_view.get(reserved_element_count=self.double4_arr_0_size) @double4_arr_0.setter def double4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.double4_arr_0) data_view.set(value) self.double4_arr_0_size = data_view.get_array_size() @property def double_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.double_arr_0) return data_view.get(reserved_element_count=self.double_arr_0_size) @double_arr_0.setter def double_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.double_arr_0) data_view.set(value) self.double_arr_0_size = data_view.get_array_size() @property def float2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.float2_arr_0) return data_view.get(reserved_element_count=self.float2_arr_0_size) @float2_arr_0.setter def float2_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.float2_arr_0) data_view.set(value) self.float2_arr_0_size = data_view.get_array_size() @property def float3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.float3_arr_0) return data_view.get(reserved_element_count=self.float3_arr_0_size) @float3_arr_0.setter def float3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.float3_arr_0) data_view.set(value) self.float3_arr_0_size = data_view.get_array_size() @property def float4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.float4_arr_0) return data_view.get(reserved_element_count=self.float4_arr_0_size) @float4_arr_0.setter def float4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.float4_arr_0) data_view.set(value) self.float4_arr_0_size = data_view.get_array_size() @property def float_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.float_arr_0) return data_view.get(reserved_element_count=self.float_arr_0_size) @float_arr_0.setter def float_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.float_arr_0) data_view.set(value) self.float_arr_0_size = data_view.get_array_size() @property def frame4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.frame4_arr_0) return data_view.get(reserved_element_count=self.frame4_arr_0_size) @frame4_arr_0.setter def frame4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.frame4_arr_0) data_view.set(value) self.frame4_arr_0_size = data_view.get_array_size() @property def half2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.half2_arr_0) return data_view.get(reserved_element_count=self.half2_arr_0_size) @half2_arr_0.setter def half2_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.half2_arr_0) data_view.set(value) self.half2_arr_0_size = data_view.get_array_size() @property def half3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.half3_arr_0) return data_view.get(reserved_element_count=self.half3_arr_0_size) @half3_arr_0.setter def half3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.half3_arr_0) data_view.set(value) self.half3_arr_0_size = data_view.get_array_size() @property def half4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.half4_arr_0) return data_view.get(reserved_element_count=self.half4_arr_0_size) @half4_arr_0.setter def half4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.half4_arr_0) data_view.set(value) self.half4_arr_0_size = data_view.get_array_size() @property def half_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.half_arr_0) return data_view.get(reserved_element_count=self.half_arr_0_size) @half_arr_0.setter def half_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.half_arr_0) data_view.set(value) self.half_arr_0_size = data_view.get_array_size() @property def int2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.int2_arr_0) return data_view.get(reserved_element_count=self.int2_arr_0_size) @int2_arr_0.setter def int2_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.int2_arr_0) data_view.set(value) self.int2_arr_0_size = data_view.get_array_size() @property def int3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.int3_arr_0) return data_view.get(reserved_element_count=self.int3_arr_0_size) @int3_arr_0.setter def int3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.int3_arr_0) data_view.set(value) self.int3_arr_0_size = data_view.get_array_size() @property def int4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.int4_arr_0) return data_view.get(reserved_element_count=self.int4_arr_0_size) @int4_arr_0.setter def int4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.int4_arr_0) data_view.set(value) self.int4_arr_0_size = data_view.get_array_size() @property def int64_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.int64_arr_0) return data_view.get(reserved_element_count=self.int64_arr_0_size) @int64_arr_0.setter def int64_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.int64_arr_0) data_view.set(value) self.int64_arr_0_size = data_view.get_array_size() @property def int_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.int_arr_0) return data_view.get(reserved_element_count=self.int_arr_0_size) @int_arr_0.setter def int_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.int_arr_0) data_view.set(value) self.int_arr_0_size = data_view.get_array_size() @property def matrixd2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.matrixd2_arr_0) return data_view.get(reserved_element_count=self.matrixd2_arr_0_size) @matrixd2_arr_0.setter def matrixd2_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.matrixd2_arr_0) data_view.set(value) self.matrixd2_arr_0_size = data_view.get_array_size() @property def matrixd3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.matrixd3_arr_0) return data_view.get(reserved_element_count=self.matrixd3_arr_0_size) @matrixd3_arr_0.setter def matrixd3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.matrixd3_arr_0) data_view.set(value) self.matrixd3_arr_0_size = data_view.get_array_size() @property def matrixd4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.matrixd4_arr_0) return data_view.get(reserved_element_count=self.matrixd4_arr_0_size) @matrixd4_arr_0.setter def matrixd4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.matrixd4_arr_0) data_view.set(value) self.matrixd4_arr_0_size = data_view.get_array_size() @property def normald3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.normald3_arr_0) return data_view.get(reserved_element_count=self.normald3_arr_0_size) @normald3_arr_0.setter def normald3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.normald3_arr_0) data_view.set(value) self.normald3_arr_0_size = data_view.get_array_size() @property def normalf3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.normalf3_arr_0) return data_view.get(reserved_element_count=self.normalf3_arr_0_size) @normalf3_arr_0.setter def normalf3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.normalf3_arr_0) data_view.set(value) self.normalf3_arr_0_size = data_view.get_array_size() @property def normalh3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.normalh3_arr_0) return data_view.get(reserved_element_count=self.normalh3_arr_0_size) @normalh3_arr_0.setter def normalh3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.normalh3_arr_0) data_view.set(value) self.normalh3_arr_0_size = data_view.get_array_size() @property def pointd3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.pointd3_arr_0) return data_view.get(reserved_element_count=self.pointd3_arr_0_size) @pointd3_arr_0.setter def pointd3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.pointd3_arr_0) data_view.set(value) self.pointd3_arr_0_size = data_view.get_array_size() @property def pointf3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.pointf3_arr_0) return data_view.get(reserved_element_count=self.pointf3_arr_0_size) @pointf3_arr_0.setter def pointf3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.pointf3_arr_0) data_view.set(value) self.pointf3_arr_0_size = data_view.get_array_size() @property def pointh3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.pointh3_arr_0) return data_view.get(reserved_element_count=self.pointh3_arr_0_size) @pointh3_arr_0.setter def pointh3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.pointh3_arr_0) data_view.set(value) self.pointh3_arr_0_size = data_view.get_array_size() @property def quatd4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.quatd4_arr_0) return data_view.get(reserved_element_count=self.quatd4_arr_0_size) @quatd4_arr_0.setter def quatd4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.quatd4_arr_0) data_view.set(value) self.quatd4_arr_0_size = data_view.get_array_size() @property def quatf4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.quatf4_arr_0) return data_view.get(reserved_element_count=self.quatf4_arr_0_size) @quatf4_arr_0.setter def quatf4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.quatf4_arr_0) data_view.set(value) self.quatf4_arr_0_size = data_view.get_array_size() @property def quath4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.quath4_arr_0) return data_view.get(reserved_element_count=self.quath4_arr_0_size) @quath4_arr_0.setter def quath4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.quath4_arr_0) data_view.set(value) self.quath4_arr_0_size = data_view.get_array_size() @property def texcoordd2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordd2_arr_0) return data_view.get(reserved_element_count=self.texcoordd2_arr_0_size) @texcoordd2_arr_0.setter def texcoordd2_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.texcoordd2_arr_0) data_view.set(value) self.texcoordd2_arr_0_size = data_view.get_array_size() @property def texcoordd3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordd3_arr_0) return data_view.get(reserved_element_count=self.texcoordd3_arr_0_size) @texcoordd3_arr_0.setter def texcoordd3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.texcoordd3_arr_0) data_view.set(value) self.texcoordd3_arr_0_size = data_view.get_array_size() @property def texcoordf2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordf2_arr_0) return data_view.get(reserved_element_count=self.texcoordf2_arr_0_size) @texcoordf2_arr_0.setter def texcoordf2_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.texcoordf2_arr_0) data_view.set(value) self.texcoordf2_arr_0_size = data_view.get_array_size() @property def texcoordf3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordf3_arr_0) return data_view.get(reserved_element_count=self.texcoordf3_arr_0_size) @texcoordf3_arr_0.setter def texcoordf3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.texcoordf3_arr_0) data_view.set(value) self.texcoordf3_arr_0_size = data_view.get_array_size() @property def texcoordh2_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordh2_arr_0) return data_view.get(reserved_element_count=self.texcoordh2_arr_0_size) @texcoordh2_arr_0.setter def texcoordh2_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.texcoordh2_arr_0) data_view.set(value) self.texcoordh2_arr_0_size = data_view.get_array_size() @property def texcoordh3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.texcoordh3_arr_0) return data_view.get(reserved_element_count=self.texcoordh3_arr_0_size) @texcoordh3_arr_0.setter def texcoordh3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.texcoordh3_arr_0) data_view.set(value) self.texcoordh3_arr_0_size = data_view.get_array_size() @property def timecode_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.timecode_arr_0) return data_view.get(reserved_element_count=self.timecode_arr_0_size) @timecode_arr_0.setter def timecode_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.timecode_arr_0) data_view.set(value) self.timecode_arr_0_size = data_view.get_array_size() @property def token_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.token_arr_0) return data_view.get(reserved_element_count=self.token_arr_0_size) @token_arr_0.setter def token_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.token_arr_0) data_view.set(value) self.token_arr_0_size = data_view.get_array_size() @property def transform4_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.transform4_arr_0) return data_view.get(reserved_element_count=self.transform4_arr_0_size) @transform4_arr_0.setter def transform4_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.transform4_arr_0) data_view.set(value) self.transform4_arr_0_size = data_view.get_array_size() @property def uchar_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.uchar_arr_0) return data_view.get(reserved_element_count=self.uchar_arr_0_size) @uchar_arr_0.setter def uchar_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.uchar_arr_0) data_view.set(value) self.uchar_arr_0_size = data_view.get_array_size() @property def uint64_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.uint64_arr_0) return data_view.get(reserved_element_count=self.uint64_arr_0_size) @uint64_arr_0.setter def uint64_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.uint64_arr_0) data_view.set(value) self.uint64_arr_0_size = data_view.get_array_size() @property def uint_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.uint_arr_0) return data_view.get(reserved_element_count=self.uint_arr_0_size) @uint_arr_0.setter def uint_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.uint_arr_0) data_view.set(value) self.uint_arr_0_size = data_view.get_array_size() @property def vectord3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.vectord3_arr_0) return data_view.get(reserved_element_count=self.vectord3_arr_0_size) @vectord3_arr_0.setter def vectord3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.vectord3_arr_0) data_view.set(value) self.vectord3_arr_0_size = data_view.get_array_size() @property def vectorf3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.vectorf3_arr_0) return data_view.get(reserved_element_count=self.vectorf3_arr_0_size) @vectorf3_arr_0.setter def vectorf3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.vectorf3_arr_0) data_view.set(value) self.vectorf3_arr_0_size = data_view.get_array_size() @property def vectorh3_arr_0(self): data_view = og.AttributeValueHelper(self._attributes.vectorh3_arr_0) return data_view.get(reserved_element_count=self.vectorh3_arr_0_size) @vectorh3_arr_0.setter def vectorh3_arr_0(self, value): data_view = og.AttributeValueHelper(self._attributes.vectorh3_arr_0) data_view.set(value) self.vectorh3_arr_0_size = data_view.get_array_size() @property def bool_0(self): value = self._batchedWriteValues.get(self._attributes.bool_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.bool_0) return data_view.get() @bool_0.setter def bool_0(self, value): self._batchedWriteValues[self._attributes.bool_0] = value @property def colord3_0(self): value = self._batchedWriteValues.get(self._attributes.colord3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.colord3_0) return data_view.get() @colord3_0.setter def colord3_0(self, value): self._batchedWriteValues[self._attributes.colord3_0] = value @property def colord4_0(self): value = self._batchedWriteValues.get(self._attributes.colord4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.colord4_0) return data_view.get() @colord4_0.setter def colord4_0(self, value): self._batchedWriteValues[self._attributes.colord4_0] = value @property def colorf3_0(self): value = self._batchedWriteValues.get(self._attributes.colorf3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.colorf3_0) return data_view.get() @colorf3_0.setter def colorf3_0(self, value): self._batchedWriteValues[self._attributes.colorf3_0] = value @property def colorf4_0(self): value = self._batchedWriteValues.get(self._attributes.colorf4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.colorf4_0) return data_view.get() @colorf4_0.setter def colorf4_0(self, value): self._batchedWriteValues[self._attributes.colorf4_0] = value @property def colorh3_0(self): value = self._batchedWriteValues.get(self._attributes.colorh3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.colorh3_0) return data_view.get() @colorh3_0.setter def colorh3_0(self, value): self._batchedWriteValues[self._attributes.colorh3_0] = value @property def colorh4_0(self): value = self._batchedWriteValues.get(self._attributes.colorh4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.colorh4_0) return data_view.get() @colorh4_0.setter def colorh4_0(self, value): self._batchedWriteValues[self._attributes.colorh4_0] = value @property def double2_0(self): value = self._batchedWriteValues.get(self._attributes.double2_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.double2_0) return data_view.get() @double2_0.setter def double2_0(self, value): self._batchedWriteValues[self._attributes.double2_0] = value @property def double3_0(self): value = self._batchedWriteValues.get(self._attributes.double3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.double3_0) return data_view.get() @double3_0.setter def double3_0(self, value): self._batchedWriteValues[self._attributes.double3_0] = value @property def double4_0(self): value = self._batchedWriteValues.get(self._attributes.double4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.double4_0) return data_view.get() @double4_0.setter def double4_0(self, value): self._batchedWriteValues[self._attributes.double4_0] = value @property def double_0(self): value = self._batchedWriteValues.get(self._attributes.double_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.double_0) return data_view.get() @double_0.setter def double_0(self, value): self._batchedWriteValues[self._attributes.double_0] = value @property def float2_0(self): value = self._batchedWriteValues.get(self._attributes.float2_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.float2_0) return data_view.get() @float2_0.setter def float2_0(self, value): self._batchedWriteValues[self._attributes.float2_0] = value @property def float3_0(self): value = self._batchedWriteValues.get(self._attributes.float3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.float3_0) return data_view.get() @float3_0.setter def float3_0(self, value): self._batchedWriteValues[self._attributes.float3_0] = value @property def float4_0(self): value = self._batchedWriteValues.get(self._attributes.float4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.float4_0) return data_view.get() @float4_0.setter def float4_0(self, value): self._batchedWriteValues[self._attributes.float4_0] = value @property def float_0(self): value = self._batchedWriteValues.get(self._attributes.float_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.float_0) return data_view.get() @float_0.setter def float_0(self, value): self._batchedWriteValues[self._attributes.float_0] = value @property def frame4_0(self): value = self._batchedWriteValues.get(self._attributes.frame4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.frame4_0) return data_view.get() @frame4_0.setter def frame4_0(self, value): self._batchedWriteValues[self._attributes.frame4_0] = value @property def half2_0(self): value = self._batchedWriteValues.get(self._attributes.half2_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.half2_0) return data_view.get() @half2_0.setter def half2_0(self, value): self._batchedWriteValues[self._attributes.half2_0] = value @property def half3_0(self): value = self._batchedWriteValues.get(self._attributes.half3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.half3_0) return data_view.get() @half3_0.setter def half3_0(self, value): self._batchedWriteValues[self._attributes.half3_0] = value @property def half4_0(self): value = self._batchedWriteValues.get(self._attributes.half4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.half4_0) return data_view.get() @half4_0.setter def half4_0(self, value): self._batchedWriteValues[self._attributes.half4_0] = value @property def half_0(self): value = self._batchedWriteValues.get(self._attributes.half_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.half_0) return data_view.get() @half_0.setter def half_0(self, value): self._batchedWriteValues[self._attributes.half_0] = value @property def int2_0(self): value = self._batchedWriteValues.get(self._attributes.int2_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.int2_0) return data_view.get() @int2_0.setter def int2_0(self, value): self._batchedWriteValues[self._attributes.int2_0] = value @property def int3_0(self): value = self._batchedWriteValues.get(self._attributes.int3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.int3_0) return data_view.get() @int3_0.setter def int3_0(self, value): self._batchedWriteValues[self._attributes.int3_0] = value @property def int4_0(self): value = self._batchedWriteValues.get(self._attributes.int4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.int4_0) return data_view.get() @int4_0.setter def int4_0(self, value): self._batchedWriteValues[self._attributes.int4_0] = value @property def int64_0(self): value = self._batchedWriteValues.get(self._attributes.int64_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.int64_0) return data_view.get() @int64_0.setter def int64_0(self, value): self._batchedWriteValues[self._attributes.int64_0] = value @property def int_0(self): value = self._batchedWriteValues.get(self._attributes.int_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.int_0) return data_view.get() @int_0.setter def int_0(self, value): self._batchedWriteValues[self._attributes.int_0] = value @property def matrixd2_0(self): value = self._batchedWriteValues.get(self._attributes.matrixd2_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.matrixd2_0) return data_view.get() @matrixd2_0.setter def matrixd2_0(self, value): self._batchedWriteValues[self._attributes.matrixd2_0] = value @property def matrixd3_0(self): value = self._batchedWriteValues.get(self._attributes.matrixd3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.matrixd3_0) return data_view.get() @matrixd3_0.setter def matrixd3_0(self, value): self._batchedWriteValues[self._attributes.matrixd3_0] = value @property def matrixd4_0(self): value = self._batchedWriteValues.get(self._attributes.matrixd4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.matrixd4_0) return data_view.get() @matrixd4_0.setter def matrixd4_0(self, value): self._batchedWriteValues[self._attributes.matrixd4_0] = value @property def normald3_0(self): value = self._batchedWriteValues.get(self._attributes.normald3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.normald3_0) return data_view.get() @normald3_0.setter def normald3_0(self, value): self._batchedWriteValues[self._attributes.normald3_0] = value @property def normalf3_0(self): value = self._batchedWriteValues.get(self._attributes.normalf3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.normalf3_0) return data_view.get() @normalf3_0.setter def normalf3_0(self, value): self._batchedWriteValues[self._attributes.normalf3_0] = value @property def normalh3_0(self): value = self._batchedWriteValues.get(self._attributes.normalh3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.normalh3_0) return data_view.get() @normalh3_0.setter def normalh3_0(self, value): self._batchedWriteValues[self._attributes.normalh3_0] = value @property def pointd3_0(self): value = self._batchedWriteValues.get(self._attributes.pointd3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.pointd3_0) return data_view.get() @pointd3_0.setter def pointd3_0(self, value): self._batchedWriteValues[self._attributes.pointd3_0] = value @property def pointf3_0(self): value = self._batchedWriteValues.get(self._attributes.pointf3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.pointf3_0) return data_view.get() @pointf3_0.setter def pointf3_0(self, value): self._batchedWriteValues[self._attributes.pointf3_0] = value @property def pointh3_0(self): value = self._batchedWriteValues.get(self._attributes.pointh3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.pointh3_0) return data_view.get() @pointh3_0.setter def pointh3_0(self, value): self._batchedWriteValues[self._attributes.pointh3_0] = value @property def quatd4_0(self): value = self._batchedWriteValues.get(self._attributes.quatd4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.quatd4_0) return data_view.get() @quatd4_0.setter def quatd4_0(self, value): self._batchedWriteValues[self._attributes.quatd4_0] = value @property def quatf4_0(self): value = self._batchedWriteValues.get(self._attributes.quatf4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.quatf4_0) return data_view.get() @quatf4_0.setter def quatf4_0(self, value): self._batchedWriteValues[self._attributes.quatf4_0] = value @property def quath4_0(self): value = self._batchedWriteValues.get(self._attributes.quath4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.quath4_0) return data_view.get() @quath4_0.setter def quath4_0(self, value): self._batchedWriteValues[self._attributes.quath4_0] = value @property def texcoordd2_0(self): value = self._batchedWriteValues.get(self._attributes.texcoordd2_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.texcoordd2_0) return data_view.get() @texcoordd2_0.setter def texcoordd2_0(self, value): self._batchedWriteValues[self._attributes.texcoordd2_0] = value @property def texcoordd3_0(self): value = self._batchedWriteValues.get(self._attributes.texcoordd3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.texcoordd3_0) return data_view.get() @texcoordd3_0.setter def texcoordd3_0(self, value): self._batchedWriteValues[self._attributes.texcoordd3_0] = value @property def texcoordf2_0(self): value = self._batchedWriteValues.get(self._attributes.texcoordf2_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.texcoordf2_0) return data_view.get() @texcoordf2_0.setter def texcoordf2_0(self, value): self._batchedWriteValues[self._attributes.texcoordf2_0] = value @property def texcoordf3_0(self): value = self._batchedWriteValues.get(self._attributes.texcoordf3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.texcoordf3_0) return data_view.get() @texcoordf3_0.setter def texcoordf3_0(self, value): self._batchedWriteValues[self._attributes.texcoordf3_0] = value @property def texcoordh2_0(self): value = self._batchedWriteValues.get(self._attributes.texcoordh2_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.texcoordh2_0) return data_view.get() @texcoordh2_0.setter def texcoordh2_0(self, value): self._batchedWriteValues[self._attributes.texcoordh2_0] = value @property def texcoordh3_0(self): value = self._batchedWriteValues.get(self._attributes.texcoordh3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.texcoordh3_0) return data_view.get() @texcoordh3_0.setter def texcoordh3_0(self, value): self._batchedWriteValues[self._attributes.texcoordh3_0] = value @property def timecode_0(self): value = self._batchedWriteValues.get(self._attributes.timecode_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.timecode_0) return data_view.get() @timecode_0.setter def timecode_0(self, value): self._batchedWriteValues[self._attributes.timecode_0] = value @property def token_0(self): value = self._batchedWriteValues.get(self._attributes.token_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.token_0) return data_view.get() @token_0.setter def token_0(self, value): self._batchedWriteValues[self._attributes.token_0] = value @property def transform4_0(self): value = self._batchedWriteValues.get(self._attributes.transform4_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.transform4_0) return data_view.get() @transform4_0.setter def transform4_0(self, value): self._batchedWriteValues[self._attributes.transform4_0] = value @property def uchar_0(self): value = self._batchedWriteValues.get(self._attributes.uchar_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.uchar_0) return data_view.get() @uchar_0.setter def uchar_0(self, value): self._batchedWriteValues[self._attributes.uchar_0] = value @property def uint64_0(self): value = self._batchedWriteValues.get(self._attributes.uint64_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.uint64_0) return data_view.get() @uint64_0.setter def uint64_0(self, value): self._batchedWriteValues[self._attributes.uint64_0] = value @property def uint_0(self): value = self._batchedWriteValues.get(self._attributes.uint_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.uint_0) return data_view.get() @uint_0.setter def uint_0(self, value): self._batchedWriteValues[self._attributes.uint_0] = value @property def vectord3_0(self): value = self._batchedWriteValues.get(self._attributes.vectord3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.vectord3_0) return data_view.get() @vectord3_0.setter def vectord3_0(self, value): self._batchedWriteValues[self._attributes.vectord3_0] = value @property def vectorf3_0(self): value = self._batchedWriteValues.get(self._attributes.vectorf3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.vectorf3_0) return data_view.get() @vectorf3_0.setter def vectorf3_0(self, value): self._batchedWriteValues[self._attributes.vectorf3_0] = value @property def vectorh3_0(self): value = self._batchedWriteValues.get(self._attributes.vectorh3_0) if value: return value else: data_view = og.AttributeValueHelper(self._attributes.vectorh3_0) return data_view.get() @vectorh3_0.setter def vectorh3_0(self, value): self._batchedWriteValues[self._attributes.vectorh3_0] = value def __getattr__(self, item: str): if item in self.LOCAL_PROPERTY_NAMES: return object.__getattribute__(self, item) else: return super().__getattr__(item) def __setattr__(self, item: str, new_value): if item in self.LOCAL_PROPERTY_NAMES: object.__setattr__(self, item, new_value) else: super().__setattr__(item, new_value) def _commit(self): _og._commit_output_attributes_data(self._batchedWriteValues) self._batchedWriteValues = { } class ValuesForState(og.DynamicAttributeAccess): """Helper class that creates natural hierarchical access to state attributes""" def __init__(self, node: og.Node, attributes, dynamic_attributes: og.DynamicAttributeInterface): """Initialize simplified access for the attribute data""" context = node.get_graph().get_default_graph_context() super().__init__(context, node, attributes, dynamic_attributes) def __init__(self, node): super().__init__(node) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_INPUT) self.inputs = OgnPyUniversalAddDatabase.ValuesForInputs(node, self.attributes.inputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_OUTPUT) self.outputs = OgnPyUniversalAddDatabase.ValuesForOutputs(node, self.attributes.outputs, dynamic_attributes) dynamic_attributes = self.dynamic_attribute_data(node, og.AttributePortType.ATTRIBUTE_PORT_TYPE_STATE) self.state = OgnPyUniversalAddDatabase.ValuesForState(node, self.attributes.state, dynamic_attributes) class abi: """Class defining the ABI interface for the node type""" @staticmethod def get_node_type(): get_node_type_function = getattr(OgnPyUniversalAddDatabase.NODE_TYPE_CLASS, 'get_node_type', None) if callable(get_node_type_function): return get_node_type_function() return 'omni.graph.examples.python.UniversalAdd' @staticmethod def compute(context, node): def database_valid(): return True try: per_node_data = OgnPyUniversalAddDatabase.PER_NODE_DATA[node.node_id()] db = per_node_data.get('_db') if db is None: db = OgnPyUniversalAddDatabase(node) per_node_data['_db'] = db if not database_valid(): per_node_data['_db'] = None return False except: db = OgnPyUniversalAddDatabase(node) try: compute_function = getattr(OgnPyUniversalAddDatabase.NODE_TYPE_CLASS, 'compute', None) if callable(compute_function) and compute_function.__code__.co_argcount > 1: return compute_function(context, node) db.inputs._prefetch() db.inputs._setting_locked = True with og.in_compute(): return OgnPyUniversalAddDatabase.NODE_TYPE_CLASS.compute(db) except Exception as error: stack_trace = "".join(traceback.format_tb(sys.exc_info()[2].tb_next)) db.log_error(f'Assertion raised in compute - {error}\n{stack_trace}', add_context=False) finally: db.inputs._setting_locked = False db.outputs._commit() return False @staticmethod def initialize(context, node): OgnPyUniversalAddDatabase._initialize_per_node_data(node) initialize_function = getattr(OgnPyUniversalAddDatabase.NODE_TYPE_CLASS, 'initialize', None) if callable(initialize_function): initialize_function(context, node) per_node_data = OgnPyUniversalAddDatabase.PER_NODE_DATA[node.node_id()] def on_connection_or_disconnection(*args): per_node_data['_db'] = None node.register_on_connected_callback(on_connection_or_disconnection) node.register_on_disconnected_callback(on_connection_or_disconnection) @staticmethod def release(node): release_function = getattr(OgnPyUniversalAddDatabase.NODE_TYPE_CLASS, 'release', None) if callable(release_function): release_function(node) OgnPyUniversalAddDatabase._release_per_node_data(node) @staticmethod def release_instance(node, target): OgnPyUniversalAddDatabase._release_per_node_instance_data(node, target) @staticmethod def update_node_version(context, node, old_version, new_version): update_node_version_function = getattr(OgnPyUniversalAddDatabase.NODE_TYPE_CLASS, 'update_node_version', None) if callable(update_node_version_function): return update_node_version_function(context, node, old_version, new_version) return False @staticmethod def initialize_type(node_type): initialize_type_function = getattr(OgnPyUniversalAddDatabase.NODE_TYPE_CLASS, 'initialize_type', None) needs_initializing = True if callable(initialize_type_function): needs_initializing = initialize_type_function(node_type) if needs_initializing: node_type.set_metadata(ogn.MetadataKeys.EXTENSION, "omni.graph.examples.python") node_type.set_metadata(ogn.MetadataKeys.UI_NAME, "Universal Add For All Types (Python)") node_type.set_metadata(ogn.MetadataKeys.CATEGORIES, "examples") node_type.set_metadata(ogn.MetadataKeys.DESCRIPTION, "Python-based universal add node for all types. This file is generated using UniversalAddGenerator.py") node_type.set_metadata(ogn.MetadataKeys.EXCLUSIONS, "usd") node_type.set_metadata(ogn.MetadataKeys.LANGUAGE, "Python") OgnPyUniversalAddDatabase.INTERFACE.add_to_node_type(node_type) @staticmethod def on_connection_type_resolve(node): on_connection_type_resolve_function = getattr(OgnPyUniversalAddDatabase.NODE_TYPE_CLASS, 'on_connection_type_resolve', None) if callable(on_connection_type_resolve_function): on_connection_type_resolve_function(node) NODE_TYPE_CLASS = None @staticmethod def register(node_type_class): OgnPyUniversalAddDatabase.NODE_TYPE_CLASS = node_type_class og.register_node_type(OgnPyUniversalAddDatabase.abi, 1) @staticmethod def deregister(): og.deregister_node_type("omni.graph.examples.python.UniversalAdd")
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnAbsDouble.py
""" Implementation of an OmniGraph node takes the absolute value of a number """ class OgnAbsDouble: @staticmethod def compute(db): db.outputs.out = abs(db.inputs.num) return True
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnComposeDouble3.ogn
{ "ComposeDouble3": { "version": 1, "categories": "examples", "description": ["Example node that takes in the components of three doubles and outputs a double3"], "language": "python", "metadata": { "uiName": "Compose Double3 (Python)" }, "inputs": { "x": { "type": "double", "description": ["The x component of the input double3"], "default": 0 }, "y": { "type": "double", "description": ["The y component of the input double3"], "default": 0 }, "z": { "type": "double", "description": ["The z component of the input double3"], "default": 0 } }, "outputs": { "double3": { "type": "double[3]", "description": ["Output double3"] } }, "tests": [ { "inputs:x": 1.0, "inputs:y": 2.0, "inputs:z": 3.0, "outputs:double3": [1.0, 2.0, 3.0] } ] } }
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnComposeDouble3.py
""" Implementation of an OmniGraph node that composes a double3 from its components """ class OgnComposeDouble3: @staticmethod def compute(db): db.outputs.double3 = (db.inputs.x, db.inputs.y, db.inputs.z) return True
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnMultDouble.ogn
{ "MultDouble": { "version": 1, "categories": "examples", "description": ["Example node that multiplies 2 doubles together"], "language": "python", "metadata": { "uiName": "Multiply Double (Python)" }, "inputs": { "a": { "type": "double", "description": ["Input a"], "default": 0 }, "b": { "type": "double", "description": ["Input b"], "default": 0 } }, "outputs": { "out": { "type": "double", "description": ["The result of a * b"] } }, "tests": [ { "inputs:a": 2.0, "inputs:b": 3.0, "outputs:out": 6.0 } ] } }
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnSubtractDouble.ogn
{ "SubtractDouble": { "version": 1, "categories": "examples", "description": ["Example node that subtracts 2 doubles from each other"], "language": "python", "metadata": { "uiName": "Subtract Double (Python)" }, "inputs": { "a": { "type": "double", "description": ["Input a"], "default": 0 }, "b": { "type": "double", "description": ["Input b"], "default": 0 } }, "outputs": { "out": { "type": "double", "description": ["The result of a - b"] } }, "tests": [ { "inputs:a": 2.0, "inputs:b": 3.0, "outputs:out": -1.0 } ] } }
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnDecomposeDouble3.ogn
{ "DecomposeDouble3": { "version": 1, "categories": "examples", "description": ["Example node that takes in a double3 and outputs scalars that are its components"], "language": "python", "metadata": { "uiName": "Decompose Double3 (Python)" }, "inputs": { "double3": { "type": "double[3]", "description": ["Input double3"], "default": [0,0,0] } }, "outputs": { "x": { "type": "double", "description": ["The x component of the input double3"] }, "y": { "type": "double", "description": ["The y component of the input double3"] }, "z": { "type": "double", "description": ["The z component of the input double3"] } }, "tests": [ { "inputs:double3": [1.0, 2.0, 3.0], "outputs:x": 1.0, "outputs:y": 2.0, "outputs:z": 3.0 } ] } }
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnDeformerYAxis.py
""" Implementation of an OmniGraph node that deforms a surface using a sine wave """ import numpy as np class OgnDeformerYAxis: @staticmethod def compute(db): """Deform the input points by a multiple of the sine wave""" points = db.inputs.points multiplier = db.inputs.multiplier wavelength = db.inputs.wavelength offset = db.inputs.offset db.outputs.points_size = points.shape[0] # Nothing to evaluate if there are no input points if db.outputs.points_size == 0: return True output_points = db.outputs.points if wavelength <= 0: wavelength = 1.0 pt = points.copy() # we still need to do a copy here because we do not want to modify points tx = pt[:, 0] offset_tx = tx + offset disp = np.sin(offset_tx / wavelength) pt[:, 1] += disp * multiplier output_points[:] = pt[:] # we modify output_points in memory so we do not need to set the value again return True
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnClampDouble.py
""" Implementation of an OmniGraph node that clamps a double value """ class OgnClampDouble: @staticmethod def compute(db): if db.inputs.num < db.inputs.min: db.outputs.out = db.inputs.min elif db.inputs.num > db.inputs.max: db.outputs.out = db.inputs.max else: db.outputs.out = db.inputs.num return True
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnAbsDouble.ogn
{ "AbsDouble": { "version": 1, "categories": "examples", "description": ["Example node that takes the absolute value of a number"], "language": "python", "metadata": { "uiName": "Abs Double (Python)" }, "inputs": { "num": { "type": "double", "description": ["Input number"], "default": 0 } }, "outputs": { "out": { "type": "double", "description": ["The absolute value of input number"] } }, "tests": [ { "inputs:num": -8.0, "outputs:out": 8.0 }, { "inputs:num": 8.0, "outputs:out": 8.0 }, { "inputs:num": -0.0, "outputs:out": 0.0 } ] } }
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnDecomposeDouble3.py
""" Implementation of an OmniGraph node that decomposes a double3 into its comonents """ class OgnDecomposeDouble3: @staticmethod def compute(db): in_double3 = db.inputs.double3 db.outputs.x = in_double3[0] db.outputs.y = in_double3[1] db.outputs.z = in_double3[2] return True
omniverse-code/kit/exts/omni.graph.examples.python/omni/graph/examples/python/ogn/python/nodes/tutorial1/OgnMultDouble.py
""" Implementation of an OmniGraph node that calculates a * b """ class OgnMultDouble: @staticmethod def compute(db): db.outputs.out = db.inputs.a * db.inputs.b return True