file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.kit.example.toolbar_button/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [0.1.0] - 2020-07-23 ### Added - Initial implementation
omniverse-code/kit/exts/omni.kit.example.toolbar_button/docs/index.rst
omni.kit.example.toolbar_button ############################### Omniverse Kit Toolbar Button Example .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.window.preferences/PACKAGE-LICENSES/omni.kit.window.preferences-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.kit.window.preferences/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.3.8" category = "Internal" feature = true # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarly for displaying extension info in UI title = "Preferences Window" description="Preferences Window" # URL of the extension source repository. repository = "" # Keywords for the extension keywords = ["kit", "ui", "preferences"] # Location of change log file in target (final) folder of extension, relative to the root. # More info on writing changelog: https://keepachangelog.com/en/1.0.0/ changelog = "docs/CHANGELOG.md" # Preview image. Folder named "data" automatically goes in git lfs (see .gitattributes file). preview_image = "data/preview.png" [ui] name = "Python preferences Window" [dependencies] "omni.usd" = {} "omni.kit.context_menu" = {} "omni.client" = {} "omni.ui" = {} "omni.kit.audiodeviceenum" = {} "omni.kit.window.filepicker" = {} "omni.kit.menu.utils" = {} "omni.kit.widget.settings" = {} "omni.kit.actions.core" = {} [[python.module]] name = "omni.kit.window.preferences" [[test]] args = [ "--/renderer/enabled=pxr", "--/renderer/active=pxr", "--/renderer/multiGpu/enabled=false", "--/renderer/multiGpu/autoEnable=false", # Disable mGPU with PXR due to OM-51026, OM-53611 "--/renderer/multiGpu/maxGpuCount=1", "--/app/asyncRendering=false", "--/app/file/ignoreUnsavedOnExit=true", "--/app/window/dpiScaleOverride=1.0", "--/app/window/scaleToMonitor=false", "--/persistent/app/omniverse/filepicker/options_menu/show_details=false", "--/persistent/app/stage/dragDropImport='reference'", "--/persistent/app/material/dragDropMaterialPath='Absolute'", "--no-window" ] dependencies = [ "omni.hydra.pxr", "omni.kit.mainwindow", "omni.usd", "omni.kit.ui_test", "omni.kit.test_suite.helpers", ] stdoutFailPatterns.exclude = [ "*HydraRenderer failed to render this frame*", # Can drop a frame or two rendering with OpenGL interop "*Cannot use omni.hydra.pxr without OpenGL interop*" # Linux TC configs with multi-GPU might not have OpenGL available ]
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/__init__.py
from .scripts import *
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/preference_builder.py
import asyncio import os from typing import List, Callable, Union from typing import List, Callable, Union import carb import omni.kit.menu.utils import omni.ui as ui from omni.ui import color as cl from functools import partial from omni.kit.widget.settings import create_setting_widget, create_setting_widget_combo, SettingType from omni.kit.widget.settings import get_style, get_ui_style_name # Base class for a preference builder class PreferenceBuilder: WINDOW_NAME = "Preferences" def __init__(self, title): self._title = title carb.settings.get_settings().set_default_string("/placeholder", "missing setting") def __del__(self): pass def label(self, name: str, tooltip: str=None): """ Create a UI widget label. Args: name: Name to be in label tooltip: The Tooltip string to be displayed when mouse hovers on the label Returns: :class:`ui.Widget` connected with the setting on the path specified. """ if tooltip: ui.Label(name, word_wrap=True, name="title", width=ui.Percent(50), tooltip=tooltip) else: ui.Label(name, word_wrap=True, name="title", width=ui.Percent(50)) def create_setting_widget_combo(self, name: str, setting_path: str, list: List[str], setting_is_index=False, **kwargs) -> ui.Widget: """ Creating a Combo Setting widget. This function creates a combo box that shows a provided list of names and it is connected with setting by path specified. Underlying setting values are used from values of `items` dict. Args: setting_path: Path to the setting to show and edit. items: Can be either :py:obj:`dict` or :py:obj:`list`. For :py:obj:`dict` keys are UI displayed names, values are actual values set into settings. If it is a :py:obj:`list` UI displayed names are equal to setting values. setting_is_index: True - setting_path value is index into items list False - setting_path value is string in items list (default) """ with ui.HStack(height=24): self.label(name) widget, model = create_setting_widget_combo(setting_path, list, setting_is_index=setting_is_index, **kwargs) return widget def create_setting_widget( self, label_name: str, setting_path: str, setting_type: SettingType, **kwargs ) -> ui.Widget: """ Create a UI widget connected with a setting. If ``range_from`` >= ``range_to`` there is no limit. Undo/redo operations are also supported, because changing setting goes through the :mod:`omni.kit.commands` module, using :class:`.ChangeSettingCommand`. Args: setting_path: Path to the setting to show and edit. setting_type: Type of the setting to expect. range_from: Limit setting value lower bound. range_to: Limit setting value upper bound. Returns: :class:`ui.Widget` connected with the setting on the path specified. """ if carb.settings.get_settings().get(setting_path) is None: return self.create_setting_widget(label_name, "/placeholder", SettingType.STRING) clicked_fn = None if "clicked_fn" in kwargs: clicked_fn = kwargs["clicked_fn"] del kwargs["clicked_fn"] # omni.kit.widget.settings.create_drag_or_slider won't use min/max unless hard_range is set to True if 'range_from' in kwargs and 'range_to' in kwargs: kwargs['hard_range'] = True vheight = 24 vpadding = 0 if setting_type == SettingType.FLOAT or setting_type == SettingType.INT or setting_type == SettingType.STRING: vheight = 20 vpadding = 3 with ui.HStack(height=vheight): tooltip = kwargs.pop('tooltip', '') self.label(label_name, tooltip) widget, model = create_setting_widget(setting_path, setting_type, **kwargs) if clicked_fn: ui.Button( style={"image_url": "resources/icons/folder.png"}, clicked_fn=partial(clicked_fn, widget), width=24 ) ui.Spacer(height=vpadding) return widget def add_frame(self, name: str) -> ui.CollapsableFrame: """ Create a UI collapsable frame. Args: name: Name to be in frame Returns: :class:`ui.Widget` connected with the setting on the path specified. """ return ui.CollapsableFrame(title=name, identifier=f"preferences_builder_{name}") def spacer(self) -> ui.Spacer: """ Create a UI spacer. Args: None Returns: :class:`ui.Widget` connected with the setting on the path specified. """ return ui.Spacer(height=10) def get_title(self) -> str: """ Gets the page title Args: None Returns: str name of the page """ return self._title def cleanup_slashes(self, path: str, is_directory: bool = False) -> str: """ Makes path/slashes uniform Args: path: path is_directory is path a directory, so final slash can be added Returns: path """ path = os.path.normpath(path) if is_directory: if path[-1] != "/": path += "/" return path.replace("\\", "/") class PageItem(ui.AbstractItem): """Single item of the model""" def __init__(self, pages): super().__init__() self.name = pages[0].get_title() self.name_model = ui.SimpleStringModel(self.name) self.pages = pages class PageModel(ui.AbstractItemModel): def __init__(self, page_list: List[str]): super().__init__() self._pages = [] for key in page_list: page = page_list[key] self._pages.append(PageItem(page)) self._item_changed(None) def get_item_children(self, item: PageItem) -> List[PageItem]: if item is not None: # Since we are doing a flat list, we return the children of root only. # If it's not root we return. return [] return self._pages def get_item_value_model_count(self, item: PageItem) -> int: """The number of columns""" return 1 def get_item_value_model(self, item: PageItem, column_id: int) -> ui.SimpleStringModel: if item and isinstance(item, PageItem): return item.name_model class PreferenceBuilderUI: def __init__(self, visibility_changed_fn: Callable): self._visibility_changed_fn = visibility_changed_fn self._active_page = "" self._treeview = None def destroy(self): ui.Workspace.set_show_window_fn(PreferenceBuilder.WINDOW_NAME, None) self._page_list = None self._pages_model = None self._visibility_changed_fn = None self._treeview = None del self._window def __del__(self): pass def update_page_list(self, page_list: List) -> None: """ Updates page list Args: page_list: list of pages Returns: None """ self._page_list = {} self._page_header = [] for page in page_list: if isinstance(page, PreferenceBuilder): if not page._title: self._page_header.append(page) elif not page._title in self._page_list: self._page_list[page.get_title()] = [page] else: self._page_list[page.get_title()].append(page) def create_window(self): """ Create omni.ui.window Args: None Returns: None """ def set_window_state(v): self._show_window(None, v) if v: self.rebuild_pages() self._treeview = None self._window = None ui.Workspace.set_show_window_fn(PreferenceBuilder.WINDOW_NAME, set_window_state) def _show_window(self, menu, value): if value: self._window = ui.Window(PreferenceBuilder.WINDOW_NAME, width=1000, height=600, dockPreference=ui.DockPreference.LEFT_BOTTOM) self._window.set_visibility_changed_fn(self._on_visibility_changed_fn) self._window.frame.set_style(get_style()) self._window.deferred_dock_in("Content") elif self._window: self._treeview = None self._window.destroy() self._window = None def rebuild_pages(self) -> None: """ Rebuilds window pages using current page list Args: None Returns: None """ self._pages_model = PageModel(self._page_list) full_list = self._pages_model.get_item_children(None) if not full_list or not self._window: return elif not self._active_page in self._page_list: self._active_page = next(iter(self._page_list)) def treeview_clicked(treeview): async def get_selection(): await omni.kit.app.get_app().next_update_async() if treeview.selection: selection = treeview.selection[0] self.set_active_page(selection.name) asyncio.ensure_future(get_selection()) with self._window.frame: prefs_style = {"ScrollingFrame::header": {"background_color": 0xFF444444}, "ScrollingFrame::header:hovered": {"background_color": 0xFF444444}, "ScrollingFrame::header:pressed": {"background_color": 0xFF444444}, "Button::global": {"color": cl("#34C7FF"), "margin": 0, "margin_width": 0, "padding": 5}, "Button.Label::global": {"color": cl("#34C7FF")}, "Button::global:hovered": {"background_color": 0xFF545454}, "Button::global:pressed": {"background_color": 0xFF555555}, } with ui.VStack(style=prefs_style, name="header"): if self._page_header: with ui.HStack(width=0, height=10): for page in self._page_header: page.build() ui.Spacer(height=3) with ui.HStack(): with ui.ScrollingFrame( width=175, horizontal_scrollbar_policy=ui.ScrollBarPolicy.SCROLLBAR_ALWAYS_OFF ): if get_ui_style_name() == "NvidiaLight": FIELD_BACKGROUND = 0xFF545454 FIELD_TEXT_COLOR = 0xFFD6D6D6 else: FIELD_BACKGROUND = 0xFF23211F FIELD_TEXT_COLOR = 0xFFD5D5D5 self._treeview = ui.TreeView( self._pages_model, root_visible=False, header_visible=False, style={ "TreeView.Item": {"margin": 4}, "margin_width": 0.5, "margin_height": 0.5, "background_color": FIELD_BACKGROUND, "color": FIELD_TEXT_COLOR, }, ) if not self._treeview.selection and len(full_list) > 0: for page in full_list: if page.name == self._active_page: self._treeview.selection = [page] break selection = self._treeview.selection self._treeview.set_mouse_released_fn(lambda x, y, b, c, tv=self._treeview: treeview_clicked(tv)) with ui.VStack(): ui.Spacer(height=7) self._page_frame = ui.ScrollingFrame( horizontal_scrollbar_policy=ui.ScrollBarPolicy.SCROLLBAR_AS_NEEDED ) if selection: self._build_page(selection[0].pages) def set_active_page(self, page_index: Union[int, str]) -> None: """ Set the given page index as the active one. Args: page_index: Index of page of the page list to set as the active one. Returns: None """ if isinstance(page_index, str): self._active_page = page_index else: for index, key in enumerate(self._page_list): if index == page_index: self._active_page = self._page_list[key].get_title() break # Build and display the list of preference widgets on the right-hand column of the panel: async def rebuild(): await omni.kit.app.get_app().next_update_async() self._build_page(self._page_list[self._active_page]) asyncio.ensure_future(rebuild()) # Select the title of the page on the left-hand column of the panel, acting as navigation tabs between the # Preference pages: if self._pages_model and self._treeview: for page in self._pages_model.get_item_children(None): if page.name == self._active_page: self._treeview.selection = [page] break def select_page(self, page: PreferenceBuilder) -> bool: """ If found, display the given Preference page and select its title in the TreeView. Args: page: One of the page from the list of pages. Returns: bool: A flag indicating if the given page was successfully selected. """ for key in self._page_list: items = self._page_list[key] for item in items: if item == page: self.set_active_page(item.get_title()) return True return False def _build_page(self, pages: List[PreferenceBuilder]) -> None: with self._page_frame: with ui.VStack(): for page in pages: page.build() if len(pages) > 1: ui.Spacer(height=7) def show_window(self) -> None: """ show window Args: None Returns: None """ if not self._window: self._show_window(None, True) self.rebuild_pages() def hide_window(self) -> None: """ hide window Args: None Returns: None """ if self._window: self._show_window(None, False) def _on_visibility_changed_fn(self, visible) -> None: self._visibility_changed_fn(visible) omni.kit.menu.utils.rebuild_menus()
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/__init__.py
from .preferences_window import *
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/preferences_window.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. from typing import Callable import asyncio import carb import omni.ext from enum import IntFlag from .preference_builder import PreferenceBuilder, PreferenceBuilderUI, SettingType from .preferences_actions import register_actions, deregister_actions _extension_instance = None _preferences_page_list = [] PERSISTENT_SETTINGS_PREFIX = "/persistent" DEVELOPER_PREFERENCE_PATH = "/app/show_developer_preference_section" GLOBAL_PREFERENCES_PATH = "/exts/omni.kit.window.preferences/show_globals" AUDIO_PREFERENCES_PATH = "/exts/omni.kit.window.preferences/show_audio" RENDERING_PREFERENCES_PATH = "/exts/omni.kit.window.preferences/show_rendering" RESOURCE_MONITOR_PREFERENCES_PATH = "/exts/omni.kit.window.preferences/show_resource_monitor" TAGGING_PREFERENCES_PATH = "/exts/omni.kit.window.preferences/show_tagging" class PreferencesExtension(omni.ext.IExt): class PreferencesState(IntFlag): Invalid = 0 Created = 1 def on_startup(self, ext_id): global _extension_instance _extension_instance = self self._ext_name = omni.ext.get_extension_name(ext_id) register_actions(self._ext_name, PreferencesExtension, lambda: _extension_instance) self._hooks = [] self._ready_state = PreferencesExtension.PreferencesState.Invalid self._window = PreferenceBuilderUI(self._on_visibility_changed_fn) self._window.update_page_list(get_page_list()) self._window.create_window() self._window_is_visible = False self._create_menu() self._register_pages() self._resourcemonitor_preferences = None manager = omni.kit.app.get_app().get_extension_manager() if carb.settings.get_settings().get(RESOURCE_MONITOR_PREFERENCES_PATH): self._hooks.append( manager.subscribe_to_extension_enable( on_enable_fn=lambda _: self._register_resourcemonitor_preferences(), on_disable_fn=lambda _: self._unregister_resourcemonitor_preferences(), ext_name="omni.resourcemonitor", hook_name="omni.kit.window.preferences omni.resourcemonitor listener", ) ) # set app started trigger. refresh_menu_items & rebuild_menus won't do anything until self._ready_state is MenuState.Created self._app_ready_sub = ( omni.kit.app.get_app() .get_startup_event_stream() .create_subscription_to_pop_by_type( omni.kit.app.EVENT_APP_READY, self._rebuild_after_loading, name="omni.kit.menu.utils app started trigger" ) ) def on_shutdown(self): self._hooks = None deregister_actions(self._ext_name) self._window.destroy() del self._window self._window = None self._remove_menu() self._unregister_resourcemonitor_preferences() for page in self._created_preferences: unregister_page(page, rebuild=False) self._created_preferences = None # clear globals global _preferences_page_list _preferences_page_list = None global _extension_instance _extension_instance = None def _rebuild_after_loading(self, event): self._ready_state = PreferencesExtension.PreferencesState.Created self.rebuild_pages() def _register_pages(self): from .pages.stage_page import StagePreferences from .pages.rendering_page import RenderingPreferences from .pages.screenshot_page import ScreenshotPreferences from .pages.thumbnail_generation_page import ThumbnailGenerationPreferences from .pages.audio_page import AudioPreferences from .pages.tagging_page import TaggingPreferences from .pages.datetime_format_page import DatetimeFormatPreferences from .pages.globals import GlobalPreferences self._developer_preferences = None self._created_preferences = [] for page in [ ScreenshotPreferences(), ThumbnailGenerationPreferences(), StagePreferences(), DatetimeFormatPreferences(), ]: self._created_preferences.append(register_page(page)) if carb.settings.get_settings().get(GLOBAL_PREFERENCES_PATH): self._created_preferences.append(register_page(GlobalPreferences())) if carb.settings.get_settings().get(AUDIO_PREFERENCES_PATH): self._created_preferences.append(register_page(AudioPreferences())) if carb.settings.get_settings().get(RENDERING_PREFERENCES_PATH): self._created_preferences.append(register_page(RenderingPreferences())) if carb.settings.get_settings().get(TAGGING_PREFERENCES_PATH): self._created_preferences.append(register_page(TaggingPreferences())) # developer options self._hooks.append(carb.settings.get_settings().subscribe_to_node_change_events( DEVELOPER_PREFERENCE_PATH, self._on_developer_preference_section_changed )) self._on_developer_preference_section_changed(None, None) def _on_developer_preference_section_changed(self, item, event_type): if event_type == carb.settings.ChangeEventType.CHANGED: if carb.settings.get_settings().get(DEVELOPER_PREFERENCE_PATH): if not self._developer_preferences: from .pages.developer_page import DeveloperPreferences self._developer_preferences = register_page(DeveloperPreferences()) elif self._developer_preferences: self._developer_preferences = unregister_page(self._developer_preferences) def _register_resourcemonitor_preferences(self): from .pages.resourcemonitor_page import ResourceMonitorPreferences self._resourcemonitor_preferences = register_page(ResourceMonitorPreferences()) def _unregister_resourcemonitor_preferences(self): if self._resourcemonitor_preferences: unregister_page(self._resourcemonitor_preferences) self._resourcemonitor_preferences = None def rebuild_pages(self): if self._ready_state == PreferencesExtension.PreferencesState.Invalid: return if self._window: self._window.update_page_list(get_page_list()) self._window.rebuild_pages() def select_page(self, page): if self._window: if self._window.select_page(page): return True return False async def _refresh_menu_async(self): omni.kit.menu.utils.refresh_menu_items("Edit") self._refresh_menu_task = None def _on_visibility_changed_fn(self, visible): self._window_is_visible = visible if visible: self._window.show_window() else: self._window.hide_window() def _create_menu(self): from omni.kit.menu.utils import MenuItemDescription, MenuItemOrder self._edit_menu_list = None self._refresh_menu_task = None self._edit_menu_list = [ MenuItemDescription( name="Preferences", glyph="cog.svg", appear_after=["Capture Screenshot", MenuItemOrder.LAST], ticked=True, ticked_fn=lambda: self._window_is_visible, onclick_action=("omni.kit.window.preferences", "toggle_preferences_window"), ), MenuItemDescription( appear_after=["Capture Screenshot", MenuItemOrder.LAST], ), ] omni.kit.menu.utils.add_menu_items(self._edit_menu_list, "Edit", -9) def _remove_menu(self): if self._refresh_menu_task: self._refresh_menu_task.cancel() self._refresh_menu_task = None # remove menu omni.kit.menu.utils.remove_menu_items(self._edit_menu_list, "Edit") def _toggle_preferences_window(self): self._window_is_visible = not self._window_is_visible async def show_windows(): if self._window_is_visible: self._window.show_window() else: self._window.hide_window() asyncio.ensure_future(show_windows()) asyncio.ensure_future(self._refresh_menu_async()) def show_preferences_window(self): """Show the Preferences window to the User.""" if not self._window_is_visible: self._toggle_preferences_window() def hide_preferences_window(self): """Hide the Preferences window from the User.""" if self._window_is_visible: self._toggle_preferences_window() def get_instance(): global _extension_instance return _extension_instance def show_preferences_window(): """Show the Preferences window to the User.""" get_instance().show_preferences_window() def hide_preferences_window(): """Hide the Preferences window from the User.""" get_instance().hide_preferences_window() def get_page_list(): global _preferences_page_list return _preferences_page_list def register_page(page): global _preferences_page_list _preferences_page_list.append(page) _preferences_page_list = sorted(_preferences_page_list, key=lambda page: page._title) get_instance().rebuild_pages() return page def select_page(page): return get_instance().select_page(page) def rebuild_pages(): get_instance().rebuild_pages() def unregister_page(page, rebuild: bool=True): global _preferences_page_list if hasattr(page, 'destroy'): page.destroy() # Explicitly clear properties, that helps to release some C++ objects page.__dict__.clear() if _preferences_page_list: _preferences_page_list.remove(page) preferences = get_instance() if preferences and rebuild: preferences.rebuild_pages() def show_file_importer( title: str, file_exts: list = [("All Files(*)", "")], filename_url: str = None, click_apply_fn: Callable = None, show_only_folders: bool = False, ): from functools import partial from omni.kit.window.file_importer import get_file_importer def on_import(click_fn: Callable, filename: str, dirname: str, selections=[]): dirname = dirname.strip() if dirname and not dirname.endswith("/"): dirname += "/" fullpath = f"{dirname}{filename}" if click_fn: click_fn(fullpath) file_importer = get_file_importer() if file_importer: file_importer.show_window( title=title, import_button_label="Select", import_handler=partial(on_import, click_apply_fn), file_extension_types=file_exts, filename_url=filename_url, # OM-96626: Add show_only_folders option to file importer show_only_folders=show_only_folders, )
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/material_config_widget.py
import os import carb.settings import omni.kit.notification_manager as nm import omni.ui as ui from omni.ui import color as cl from . import material_config_utils class EditableListItem(ui.AbstractItem): def __init__(self, text): super().__init__() self.name_model = ui.SimpleStringModel(text) class EditableListItemDelegate(ui.AbstractItemDelegate): _ITEM_LABEL_STYLE = { "margin": 3, "font_size": 16.0, ":selected": { "color": cl("#333333") } } _DELETE_BUTTON_STYLE = { "margin": 2, "padding": 0, "": { "image_url": "", "alignment": ui.Alignment.CENTER, "background_color": 0x00000000 }, ":hovered": { "image_url": "resources/glyphs/trash.svg", "color": cl("#cccccc"), "background_color": 0x00000000 }, ":selected": { "image_url": "resources/glyphs/trash.svg", "color": cl("#cccccc"), "background_color": 0x00000000 } } def build_widget(self, model, item, column_id, level, expanded): with ui.ZStack(height=20): value_model = model.get_item_value_model(item, column_id) if column_id == 0: # entry text label = ui.Label(value_model.as_string, style=self._ITEM_LABEL_STYLE) field = ui.StringField() field.model = value_model field.visible = False label.set_mouse_double_clicked_fn( lambda x, y, b, m, f=field, l=label: self.on_label_double_click(b, f, l) ) elif column_id == 1: # remove button with ui.HStack(): ui.Spacer() button = ui.Button(width=20, style=self._DELETE_BUTTON_STYLE) button.set_clicked_fn(lambda i=item, m=model: self.on_button_clicked(i, m)) ui.Spacer(width=5) else: pass def on_label_double_click(self, mouse_button, field, label): if mouse_button != 0: return field.visible = True field.focus_keyboard() self.subscription = field.model.subscribe_end_edit_fn( lambda m, f=field, l=label: self.on_field_end_edit(m, f, l) ) def on_field_end_edit(self, model, field, label): field.visible = False if model.as_string: # avoid empty string label.text = model.as_string self.subscription = None def on_button_clicked(self, item, model): model.remove_item(item) class EditableListModel(ui.AbstractItemModel): def __init__( self, item_class=EditableListItem, setting_path=None ): super().__init__() self._settings = carb.settings.get_settings() self._setting_path = setting_path self._item_class = item_class self._items = [] self.populate_items() def populate_items(self): entries = self._settings.get(self._setting_path) if not entries: entries = [] self._items.clear() for entry in entries: if not entry: continue self._items.append(self._item_class(entry)) self._item_changed(None) def get_item_children(self, item): if item is not None: return [] return self._items def get_item_value_model_count(self, item): return 2 def get_item_value_model(self, item, column_id): if item and isinstance(item, self._item_class): if column_id == 0: return item.name_model else: return None def get_drag_mime_data(self, item): return item.name_model.as_string def drop_accepted(self, target_item, source, drop_location=1): return not target_item and drop_location >= 0 def drop(self, target_item, source, drop_location=-1): try: source_id = self._items.index(source) except ValueError: return if source_id == drop_location: return self._items.remove(source) if drop_location > len(self._items): self._items.append(source) else: if source_id < drop_location: drop_location = drop_location - 1 self._items.insert(drop_location, source) self._item_changed(None) def add_entry(self, text): self._items.insert(0, self._item_class(text)) self._item_changed(None) def remove_item(self, item): self._items.remove(item) self._item_changed(None) def save_entries_to_settings(self): entries = [item.name_model.as_string for item in self._items] self._settings.set(self._setting_path, entries) def save_to_material_config_file(self): material_config_utils.save_live_config_to_file() class EditableListWidget(ui.Widget): _ADD_BUTTON_STYLE = { "image_url": "resources/glyphs/plus.svg", "color": cl("#cccccc") } def __init__( self, model_class=EditableListModel, item_delegate_class=EditableListItemDelegate, setting_path=None, list_height=100 ): super(EditableListWidget).__init__() self._model = model_class(setting_path=setting_path) self._delegate = item_delegate_class() # build UI with ui.VStack(): with ui.HStack(): # list widget with ui.ScrollingFrame(height=list_height): ui.Spacer(height=5) self._view = ui.TreeView( self._model, delegate=self._delegate, header_visible=False, root_visible=False, column_widths=[ui.Percent(95)], drop_between_items=True ) self._view.set_selection_changed_fn(self.on_item_selection_changed) ui.Spacer(width=5) # "+" button self._add_new_entry_button = ui.Button( width=20, height=20, style=self._ADD_BUTTON_STYLE, clicked_fn=self.on_add_new_entry_button_clicked ) ui.Spacer(height=5) with ui.HStack(): ui.Spacer() # save button self._save_button = ui.Button( "Save", width=100, height=0, clicked_fn=self.on_save_button_clicked ) ui.Spacer(width=5) # reset button self._reset_button = ui.Button( "Reset", width=100, height=0, clicked_fn=self.on_reset_button_clicked ) ui.Spacer(width=25) def on_add_new_entry_button_clicked(self): self._view.clear_selection() self._model.add_entry("New Entry") def on_item_selection_changed(self, items): # not to allow multi-selection num_items = len(items) if num_items > 1: for i in range(1, num_items): self._view.toggle_selection(items[i]) def on_save_button_clicked(self): self._model.save_entries_to_settings() config_file = material_config_utils.get_config_file_path() if not os.path.exists(config_file): ok_button = nm.NotificationButtonInfo( "OK", on_complete=self._model.save_to_material_config_file ) cancel_button = nm.NotificationButtonInfo( "Cancel", on_complete=None ) nm.post_notification( f"Material config file does not exist. Create?\n\n{config_file}", status=nm.NotificationStatus.INFO, button_infos=[ok_button, cancel_button], hide_after_timeout=False ) else: self._model.save_to_material_config_file() def on_reset_button_clicked(self): self._view.clear_selection() self._model.populate_items()
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/preferences_actions.py
import omni.kit.actions.core def register_actions(extension_id, cls, get_self_fn): action_registry = omni.kit.actions.core.get_action_registry() actions_tag = "Window Preferences Actions" # actions action_registry.register_action( extension_id, "show_preferences_window", get_self_fn().show_preferences_window, display_name="Show Preferences Window", description="Show Preferences Window", tag=actions_tag, ) action_registry.register_action( extension_id, "hide_preferences_window", get_self_fn().hide_preferences_window, display_name="Hide Preferences Window", description="Hide Preferences Window", tag=actions_tag, ) action_registry.register_action( extension_id, "toggle_preferences_window", get_self_fn()._toggle_preferences_window, display_name="Toggle Preferences Window", description="Toggle Preferences Window", tag=actions_tag, ) def deregister_actions(extension_id): action_registry = omni.kit.actions.core.get_action_registry() action_registry.deregister_all_actions_for_extension(extension_id)
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/material_path_widget.py
import os import pathlib import carb import carb.settings import omni.kit.notification_manager as nm import omni.ui as ui from omni.kit.window.filepicker import FilePickerDialog from omni.mdl import pymdlsdk from omni.ui import color as cl from . import material_config_utils from . material_config_widget import EditableListItemDelegate, EditableListModel, EditableListWidget class MdlPathItem(ui.AbstractItem): def __init__(self, text): super().__init__() text = pathlib.PurePath(text).as_posix() self.name_model = ui.SimpleStringModel(text) class MdlDefaultPathListModel(ui.AbstractItemModel): SOURCE_MDL_SYSTEM_PATH = 0 SOURCE_MDL_USER_PATH = 1 SOURCE_ADDITIONAL_SYSTEM_PATHS = 2 SOURCE_ADDITIONAL_USER_PATHS = 3 SOURCE_RENDERER_REQUIRED = 4 SOURCE_RENDERER_TEMPLATES = 5 def __init__(self, mode): super().__init__() self._SETTING_NAME_MAP = { self.SOURCE_ADDITIONAL_SYSTEM_PATHS: "/app/mdl/additionalSystemPaths", self.SOURCE_ADDITIONAL_USER_PATHS: "/app/mdl/additionalUserPaths", self.SOURCE_RENDERER_REQUIRED: "/renderer/mdl/searchPaths/required", self.SOURCE_RENDERER_TEMPLATES: "/renderer/mdl/searchPaths/templates" } _FN_MAP = { self.SOURCE_MDL_SYSTEM_PATH: self._get_paths_from_mdl_config, self.SOURCE_MDL_USER_PATH: self._get_paths_from_mdl_config, self.SOURCE_ADDITIONAL_SYSTEM_PATHS: self._get_paths_from_setting, self.SOURCE_ADDITIONAL_USER_PATHS: self._get_paths_from_setting, self.SOURCE_RENDERER_REQUIRED: self._get_paths_from_setting, self.SOURCE_RENDERER_TEMPLATES: self._get_paths_from_setting } self._items = [] paths = _FN_MAP[mode](mode) for path in paths: self._items.append(MdlPathItem(path)) def _get_omni_neuray_api(self): import omni.mdl.neuraylib neuraylib = omni.mdl.neuraylib.get_neuraylib() ineuray = neuraylib.getNeurayAPI() neuray = pymdlsdk.attach_ineuray(ineuray) return neuray def _get_paths_from_mdl_config(self, mode): neuray = self._get_omni_neuray_api() paths = [] with neuray.get_api_component(pymdlsdk.IMdl_configuration) as cfg: if mode == self.SOURCE_MDL_SYSTEM_PATH: num_paths = cfg.get_mdl_system_paths_length() if num_paths: for i in range(0, num_paths): paths.append(cfg.get_mdl_system_path(i)) elif mode == self.SOURCE_MDL_USER_PATH: num_paths = cfg.get_mdl_user_paths_length() if num_paths: for i in range(0, num_paths): paths.append(cfg.get_mdl_user_path(i)) else: pass return paths def _get_paths_from_setting(self, mode): settings = carb.settings.get_settings() pathStr = settings.get(self._SETTING_NAME_MAP[mode]) paths = [] if pathStr: paths = pathStr.split(";") return paths def get_item_children(self, item): if item is not None: return [] return self._items def get_item_value_model_count(self, item): return 1 def get_item_value_model(self, item, column_id): if item and isinstance(item, MdlPathItem): return item.name_model def get_items(self): return self._items class MdlDefaultPathListWidget(ui.Widget): _TREEVIEW_STYLE = { "TreeView.Item": { "margin": 3, "font_size": 16.0, "color": cl("#777777") } } _FRAME_STYLE = { "CollapsableFrame": { "margin": 0, "padding": 3, "border_width": 0, "border_radius": 0, "secondary_color": cl("#2c2e2e") } } def __init__(self, **kwargs): super(MdlDefaultPathListWidget).__init__() self._models = {} entries = [ ["Standard System Paths", MdlDefaultPathListModel.SOURCE_MDL_SYSTEM_PATH], ["Additional System Paths", MdlDefaultPathListModel.SOURCE_ADDITIONAL_SYSTEM_PATHS], ["Standard User Paths", MdlDefaultPathListModel.SOURCE_MDL_USER_PATH], ["Additional User Paths", MdlDefaultPathListModel.SOURCE_ADDITIONAL_USER_PATHS], ["Renderer Required", MdlDefaultPathListModel.SOURCE_RENDERER_REQUIRED], ["Renderer Templates", MdlDefaultPathListModel.SOURCE_RENDERER_TEMPLATES] ] with ui.VStack(height=0): for entry in entries: model = MdlDefaultPathListModel(entry[1]) if not model.get_items(): continue # do not add widget if it is empty self._add_path_list_widget(entry[0], model) self._models[entry[1]] = model def _add_path_list_widget(self, title, model): with ui.CollapsableFrame(title, collapsed=True, style=self._FRAME_STYLE): with ui.ScrollingFrame(height=100): view = ui.TreeView( model, header_visible=False, root_visible=False, style=self._TREEVIEW_STYLE ) # do not allow select items view.set_selection_changed_fn(lambda i: view.clear_selection()) class MdlLocalPathListModel(EditableListModel): def __init__(self, setting_path): super().__init__( MdlPathItem, setting_path ) def populate_items(self): pathStr = self._settings.get(self._setting_path) paths = pathStr.split(";") if pathStr else [] self._items.clear() for path in paths: if not path: continue self._items.append(self._item_class(path)) self._item_changed(None) def find_path(self, path): pp = pathlib.PurePath(path) for item in self._items: ip = pathlib.PurePath(item.name_model.as_string) if pp == ip: return ip.as_posix() return "" def sanity_check_paths(self): bad_paths = [] for item in self._items: path = item.name_model.as_string if not os.path.exists(path): bad_paths.append(path) return bad_paths def save_entries_to_settings(self): pathStrs = [item.name_model.as_string for item in self._items] pathStr = ";".join(pathStrs) self._settings.set(self._setting_path, pathStr) def save_to_material_config_file(self): material_config_utils.save_carb_setting_to_config_file( "/app/mdl/nostdpath", "/options/noStandardPath" ) material_config_utils.save_carb_setting_to_config_file( self._setting_path, "/searchPaths/local", is_paths=True ) class MdlLocalPathListWidget(EditableListWidget): def __init__(self): super().__init__( MdlLocalPathListModel, EditableListItemDelegate, "/renderer/mdl/searchPaths/local", 150 ) self._file_picker_selection = None self._file_picker = FilePickerDialog( "Add New Search Path", allow_multi_selection=False, apply_button_label="Select", selection_changed_fn=self.on_file_picker_selection_changed, click_apply_handler=lambda f, d: self.on_file_picker_apply_clicked(), click_cancel_handler=None ) self._file_picker.hide() def on_file_picker_selection_changed(self, items): # this is a workaround for that FilePickerDialog has a bug that # the selection does not get updated if user select a directory if items: self._file_picker_selection = items[0].path def on_file_picker_apply_clicked(self): if self._model.find_path(self._file_picker_selection): nm.post_notification( "Path already exists in the list.", status=nm.NotificationStatus.INFO, hide_after_timeout=False ) return self._model.add_entry(self._file_picker_selection) self._file_picker.hide() def on_add_new_entry_button_clicked(self): self._view.clear_selection() self._file_picker.show() def on_save_button_clicked(self): bad_paths = self._model.sanity_check_paths() if bad_paths: paths = "\n".join(bad_paths) ok_button = nm.NotificationButtonInfo( "OK", on_complete=lambda: self.save_settings_and_config_file() ) cancel_button = nm.NotificationButtonInfo( "Cancel", on_complete=None ) nm.post_notification( f"Path(s) below do not exist. Continue?\n\n{paths}", status=nm.NotificationStatus.WARNING, button_infos=[ok_button, cancel_button], hide_after_timeout=False ) else: self.save_settings_and_config_file() def save_settings_and_config_file(self): self._model.save_entries_to_settings() config_file = material_config_utils.get_config_file_path() if not os.path.exists(config_file): ok_button = nm.NotificationButtonInfo( "OK", on_complete=self._model.save_to_material_config_file ) cancel_button = nm.NotificationButtonInfo( "Cancel", on_complete=None ) nm.post_notification( f"Material config file does not exist. Create?\n\n{config_file}", status=nm.NotificationStatus.INFO, button_infos=[ok_button, cancel_button], hide_after_timeout=False ) else: self._model.save_to_material_config_file() carb.log_info(f"Material config file saved: {config_file}")
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/material_config_utils.py
import os import posixpath # import platform import pathlib import copy import toml import carb import carb.settings SETTING_BUILTINALLOWLIST = "/materialConfig/materialGraph/builtInAllowList" SETTING_BUILTINBLOCKLIST = "/materialConfig/materialGraph/builtInBlockList" SETTING_USERALLOWLIST = "/materialConfig/materialGraph/userAllowList" SETTING_USERBLOCKLIST = "/materialConfig/materialGraph/userBlockList" def _key_value_to_dict(key, value): # "/path/to/key", <value> -> {"path": {"to": {"key": <value>}}} tokens = key.split('/') tokens = list(filter(None, tokens)) # filter empty strings dct = value for token in reversed(tokens): dct = {token: dct} return dct def _merge_dict(dict1, dict2): merged = copy.deepcopy(dict1) for k2, v2 in dict2.items(): v1 = merged.get(k2) if isinstance(v1, dict) and isinstance(v2, dict): merged[k2] = _merge_dict(v1, v2) else: merged[k2] = copy.deepcopy(v2) return merged def get_default_config_file_path(): try: home_dir = pathlib.Path.home() except Exception as e: carb.log_error(str(e)) return "" config_file_path = home_dir / "Documents/Kit/shared" / "material.config.toml" config_file_path = config_file_path.as_posix() return str(config_file_path) def get_config_file_path(): settings = carb.settings.get_settings() file_path = settings.get('/materialConfig/configFilePath') if not file_path or not os.path.exists(file_path): file_path = get_default_config_file_path() return file_path def load_config_file(file_path): config = {} try: if os.path.exists(file_path): config = toml.load(file_path) except Exception as e: carb.log_error(str(e)) return config def save_config_file(config, file_path): # this setting should not be saved in file config.pop("configFilePath", None) try: toml_str = toml.dumps(config) # least prettify format toml_str = toml_str.replace(",", ",\n") toml_str = toml_str.replace("[ ", "[\n ") with open(file_path, "w") as f: f.write(toml_str) except Exception as e: carb.log_error(str(e)) return False return True def save_carb_setting_to_config_file(carb_setting_key, config_key, is_paths=False, non_standard_path=None): try: # get value from carb setting settings = carb.settings.get_settings() value = settings.get(carb_setting_key) if is_paths: value = value.split(";") if value else [] value = list(filter(None, value)) # remove empty strings # load config from file file_path = pathlib.Path(non_standard_path if non_standard_path else get_config_file_path()) if not file_path.exists(): file_path.touch() config = load_config_file(file_path) # deep merge configs new_config = _key_value_to_dict(config_key, value) merged_config = _merge_dict(config, new_config) # save config to file save_config_file(merged_config, file_path) except Exception as e: carb.log_error(str(e)) return False return True def save_live_config_to_file(non_standard_path=None): try: # get live material config from carb setting settings = carb.settings.get_settings() live_config = settings.get("/materialConfig") # save config to file file_path = pathlib.Path(non_standard_path if non_standard_path else get_config_file_path()) save_config_file(live_config, file_path) except Exception as e: carb.log_error(str(e)) return False return True
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/screenshot_page.py
import os import carb.settings import omni.ui as ui from ..preferences_window import PreferenceBuilder, show_file_importer, PERSISTENT_SETTINGS_PREFIX, SettingType class ScreenshotPreferences(PreferenceBuilder): def __init__(self): super().__init__("Capture Screenshot") self._settings = carb.settings.get_settings() # setup captureFrame paths template_path = self._settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/captureFrame/path") if template_path is None or template_path == "./": template_path = self._settings.get("/app/captureFrame/path") if template_path[-1] != "/": template_path += "/" self._settings.set(PERSISTENT_SETTINGS_PREFIX + "/app/captureFrame/path", template_path) # 3D viewport self._settings.set_default_bool(PERSISTENT_SETTINGS_PREFIX + "/app/captureFrame/viewport", False) # ansel defaults if self._is_ansel_enabled(): ansel_quality_path = PERSISTENT_SETTINGS_PREFIX + "/exts/omni.ansel/quality" self._settings.set_default_string(ansel_quality_path, "Medium") ansel_super_resolution_size_path = PERSISTENT_SETTINGS_PREFIX + "/exts/omni.ansel/superResolution/size" self._settings.set_default_string(ansel_super_resolution_size_path, "2x") # create captureFrame directory original_umask = os.umask(0) if not os.path.isdir(template_path): try: os.makedirs(template_path) except Exception: carb.log_error(f"Failed to create directory {template_path}") os.umask(original_umask) def build(self): """ Capture Screenshot """ # The path widget. It's not standard because it has the button browse. Since the main layout has two columns, # we need to create another layout and put it to the main one. with ui.VStack(height=0): with self.add_frame("Capture Screenshot"): with ui.VStack(): self._settings_widget = self.create_setting_widget( "Path to save screenshots", PERSISTENT_SETTINGS_PREFIX + "/app/captureFrame/path", SettingType.STRING, clicked_fn=self._on_browse_button_fn, ) self.create_setting_widget( "Capture only the 3D viewport", PERSISTENT_SETTINGS_PREFIX + "/app/captureFrame/viewport", SettingType.BOOL, ) # Show Ansel super resolution configuration, only when Ansel enabled self._create_ansel_super_resolution_settings() def _add_ansel_settings(self): # check if Ansel enabled. If not, do not show Ansel settings if not self._is_ansel_enabled(): return self.create_setting_widget_combo( "Quality", PERSISTENT_SETTINGS_PREFIX + "/exts/omni.ansel/quality", ["Low", "Medium", "High"] ) def _create_ansel_super_resolution_settings(self): # check if Ansel enabled. If not, do not show Ansel settings if not self._is_ansel_enabled(): return self.spacer() with self.add_frame("Super Resolution"): with ui.VStack(): self.create_setting_widget_combo( "Size", PERSISTENT_SETTINGS_PREFIX + "/exts/omni.ansel/superResolution/size", ["2x", "4x", "8x", "16x", "32x"], ) self._add_ansel_settings() def _is_ansel_enabled(self): return self._settings.get("/exts/omni.ansel/enable") def _on_browse_button_fn(self, owner): """ Called when the user picks the Browse button. """ navigate_to = self._settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/captureFrame/path") show_file_importer("Select Screenshot Directory", click_apply_fn=self._on_dir_pick, filename_url=navigate_to, show_only_folders=True) def _on_dir_pick(self, real_path): """ Called when the user accepts directory in the Select Directory dialog. """ directory = self.cleanup_slashes(real_path, is_directory=True) self._settings.set(PERSISTENT_SETTINGS_PREFIX + "/app/captureFrame/path", directory) self._settings_widget.model.set_value(directory)
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/globals.py
import asyncio import carb.settings import omni.kit.app import omni.ui as ui from ..preferences_window import PreferenceBuilder class GlobalPreferences(PreferenceBuilder): def __init__(self): super().__init__("") def build(self): async def on_ok_clicked(dialog): import sys import carb.events import omni.kit.app dialog.hide() def run_process(args): import subprocess import platform kwargs = {"close_fds": False} if platform.system().lower() == "windows": kwargs["creationflags"] = subprocess.CREATE_NEW_CONSOLE | subprocess.CREATE_NEW_PROCESS_GROUP subprocess.Popen(args, **kwargs) # pylint: disable=consider-using-with def on_event(e: carb.events.IEvent): if e.type == omni.kit.app.PRE_SHUTDOWN_EVENT_TYPE: run_process(sys.argv + ["--reset-user"]) self._shutdown_sub = omni.kit.app.get_app().get_shutdown_event_stream().create_subscription_to_pop(on_event, name="preferences re-start", order=0) await omni.kit.app.get_app().next_update_async() omni.kit.app.get_app().post_quit() def reset_clicked(): from omni.kit.window.popup_dialog import MessageDialog if omni.usd.get_context().has_pending_edit(): dialog = MessageDialog( title= f"{omni.kit.ui.get_custom_glyph_code('${glyphs}/exclamation.svg')} Reset to Default Settings", width=400, message=f"This application will restart to remove all custom settings and restore the application to the installed state.\n\nYou will be prompted to save any unsaved changes.", ok_handler=lambda dialog: asyncio.ensure_future(on_ok_clicked(dialog)), ok_label="Continue", cancel_label="Cancel", ) else: dialog = MessageDialog( title= f"{omni.kit.ui.get_custom_glyph_code('${glyphs}/exclamation.svg')} Reset to Default Settings", width=400, message=f"This application will restart to remove all custom settings and restore the application to the installed state.", ok_handler=lambda dialog: asyncio.ensure_future(on_ok_clicked(dialog)), ok_label="Restart", cancel_label="Cancel", ) dialog.show() ui.Button("Reset to Default", clicked_fn=reset_clicked, name="global", tooltip="This will reset all settings back to the installed state after the application is restarted") def __del__(self): super().__del__()
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/thumbnail_generation_page.py
import carb.settings import omni.ui as ui from ..preferences_window import PreferenceBuilder, show_file_importer, PERSISTENT_SETTINGS_PREFIX, SettingType MDL_PREFERENCES_PATH = "/exts/omni.kit.window.preferences/show_thumbnail_generation_mdl" def set_default_usd_thumbnail_generator_settings(): """Setup default value for the setting of the USD Thumbnail Generator""" settings = carb.settings.get_settings() settings.set_default_int("/app/thumbnailsGenerator/usd/width", 256) settings.set_default_int("/app/thumbnailsGenerator/usd/height", 256) settings.set_default_string(PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/usd/renderer", "RayTracing") settings.set_default_int(PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/usd/iterations", 8) settings.set_default_bool(PERSISTENT_SETTINGS_PREFIX + "/exts/omni.kit.thumbnails.usd/thumbnail_on_save", True) def set_default_mdl_thumbnail_generator_settings(): """Setup default value for the setting of the MDL Thumbnail Generator""" settings = carb.settings.get_settings() settings.set_default_int("/app/thumbnailsGenerator/mdl/width", 256) settings.set_default_int("/app/thumbnailsGenerator/mdl/height", 256) settings.set_default_string(PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/mdl/renderer", "PathTracing") settings.set_default_int(PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/mdl/iterations", 512) template_url = "/Library/AEC/Materials/Library_Default.thumbnail.usd" settings.set_default_string( PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/mdl/usd_template_path", template_url ) settings.set_default_string( PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/mdl/standin_usd_path", "/Stage/ShaderKnob" ) class ThumbnailGenerationPreferences(PreferenceBuilder): def __init__(self): super().__init__("Thumbnail Generation") self._settings = carb.settings.get_settings() # default_settings set_default_usd_thumbnail_generator_settings() set_default_mdl_thumbnail_generator_settings() def build(self): """Thumbnail Generation""" with ui.VStack(height=0): if carb.settings.get_settings().get(MDL_PREFERENCES_PATH): with self.add_frame("MDL Thumbnail Generation Settings"): with ui.VStack(): self._settings_widget = self.create_setting_widget( "Path usd template to render MDL Thumnail", PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/mdl/usd_template_path", SettingType.STRING, clicked_fn=self._on_browse_button_fn, ) self.create_setting_widget( "Name of the standin Prim", PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/mdl/standin_usd_path", SettingType.STRING, ) self.create_setting_widget_combo( "Renderer Type", PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/mdl/renderer", ["RayTracing", "PathTracing"], ) self.create_setting_widget( "Rendering Samples", PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/mdl/iterations", SettingType.INT, ) self.spacer() with self.add_frame("USD Thumbnail Generation Settings"): with ui.VStack(): self.create_setting_widget_combo( "Renderer Type", PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/usd/renderer", ["RayTracing", "PathTracing"], ) self.create_setting_widget( "Rendering Samples", PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/usd/iterations", SettingType.INT, ) self.create_setting_widget( "Save usd thumbnail on save", PERSISTENT_SETTINGS_PREFIX + "/exts/omni.kit.thumbnails.usd/thumbnail_on_save", SettingType.BOOL, ) def _on_browse_button_fn(self, owner): """Called when the user picks the Browse button.""" path = self._settings_widget.model.get_value_as_string() show_file_importer(title="Select Template", click_apply_fn=self._on_file_pick, filename_url=path) def _on_file_pick(self, full_path): """Called when the user accepts directory in the Select Directory dialog.""" self._settings.set(PERSISTENT_SETTINGS_PREFIX + "/app/thumbnailsGenerator/mdl/usd_template_path", full_path) self._settings_widget.model.set_value(full_path)
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/usdskel_page.py
import carb.settings import omni.kit.app from functools import partial from ..preferences_window import PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX, SettingType class UsdSkelPreferences(PreferenceBuilder): def __init__(self): super().__init__("UsdSkel") self._update_setting = {} settings = carb.settings.get_settings() if settings.get(PERSISTENT_SETTINGS_PREFIX + "/omnihydra/useSkelAdapter") is None: settings.set_default_bool( PERSISTENT_SETTINGS_PREFIX + "/omnihydra/useSkelAdapter", True ) if settings.get(PERSISTENT_SETTINGS_PREFIX + "/omnihydra/useSkelAdapterBlendShape") is None: settings.set_default_bool( PERSISTENT_SETTINGS_PREFIX + "/omnihydra/useSkelAdapterBlendShape", True ) def build(self): import omni.ui as ui with ui.VStack(height=0): with self.add_frame("UsdSkel"): with ui.VStack(): self.create_setting_widget( "Enable BlendShape", PERSISTENT_SETTINGS_PREFIX + "/omnihydra/useSkelAdapterBlendShape", SettingType.BOOL, tooltip="Enable BlendShape. Will be effective on the next stage load.", ) def _on_enable_blendshape_change(item, event_type, owner): if event_type == carb.settings.ChangeEventType.CHANGED: settings = carb.settings.get_settings() if settings.get_as_bool(PERSISTENT_SETTINGS_PREFIX + "/omnihydra/useSkelAdapterBlendShape"): if not settings.get_as_bool(PERSISTENT_SETTINGS_PREFIX + "/omnihydra/useSkelAdapter"): settings.set_bool(PERSISTENT_SETTINGS_PREFIX + "/omnihydra/useSkelAdapter", True) self._update_setting["Enable BlendShape"] = omni.kit.app.SettingChangeSubscription( PERSISTENT_SETTINGS_PREFIX + "/omnihydra/useSkelAdapterBlendShape", partial(_on_enable_blendshape_change, owner=self), ) def __del__(self): super().__del__() self._update_setting = {}
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/material_page.py
import carb.settings import omni.kit.app import omni.ui as ui from ..preferences_window import PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX, SettingType from ..material_config_utils import SETTING_USERALLOWLIST, SETTING_USERBLOCKLIST from ..material_config_widget import EditableListWidget from ..material_path_widget import MdlDefaultPathListWidget from ..material_path_widget import MdlLocalPathListWidget class MaterialPreferences(PreferenceBuilder): def __init__(self): super().__init__("Material") settings = carb.settings.get_settings() self._sub_render_context = omni.kit.app.SettingChangeSubscription( PERSISTENT_SETTINGS_PREFIX + "/app/hydra/material/renderContext", self._on_render_context_changed ) if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath") is None: settings.set_default_string(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "Relative") if settings.get("/app/mdl/nostdpath") is None: settings.set_default_bool("/app/mdl/nostdpath", False) PreferenceBuilder.__init__(self, "Material") def build(self): """ Material """ with ui.VStack(height=0): """ Material """ with self.add_frame("Material"): with ui.VStack(): self.create_setting_widget_combo( "Binding Strength", PERSISTENT_SETTINGS_PREFIX + "/app/stage/materialStrength", ["weakerThanDescendants", "strongerThanDescendants"], ) self.create_setting_widget_combo( "Drag/Drop Path", PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", ["Absolute", "Relative"], ) self.create_setting_widget_combo( "Render Context / Material Network (Requires Stage Reload)", PERSISTENT_SETTINGS_PREFIX + "/app/hydra/material/renderContext", {"default": "", "mdl": "mdl"}, ) self.spacer() """ Material Search Path """ with self.add_frame("Material Search Path"): with ui.VStack(height=0): """ Default Paths """ default_path_frame = self.add_frame("Default Paths") # default_path_frame.collapsed = True default_path_frame.collapsed = False with default_path_frame: with ui.VStack(): self.create_setting_widget( "Ignore Standard Paths", "/app/mdl/nostdpath", SettingType.BOOL ) self.spacer() with ui.HStack(): ui.Spacer(width=5) self._mdl_default_paths = MdlDefaultPathListWidget() self.spacer() """ Local Paths """ with self.add_frame("Local Paths"): self._mdl_local_paths = MdlLocalPathListWidget() self.spacer() """ Material Graph """ if self._isExtensionEnabled("omni.kit.window.material_graph"): with self.add_frame("Material Graph"): with ui.VStack(height=0): """ User Allow List """ user_allow_list_frame = self.add_frame("User Allow List") with user_allow_list_frame: self._user_allow_list_widget = EditableListWidget(setting_path=SETTING_USERALLOWLIST) self.spacer() """ User Block List """ user_block_list_frame = self.add_frame("User Block List") with user_block_list_frame: self._user_block_list_widget = EditableListWidget(setting_path=SETTING_USERBLOCKLIST) def _isExtensionEnabled(self, name): manager = omni.kit.app.get_app().get_extension_manager() for ext in manager.get_extensions(): if ext["name"] == name and ext["enabled"] == True: return True return False def _on_render_context_changed(self, value: str, event_type: carb.settings.ChangeEventType): import omni.usd if event_type == carb.settings.ChangeEventType.CHANGED: stage = omni.usd.get_context().get_stage() if not stage or stage.GetRootLayer().anonymous: return msg = "Material render context has been changed. You will need to reload your stage for this to take effect." try: import asyncio import omni.kit.notification_manager import omni.kit.app async def show_msg(): await omni.kit.app.get_app().next_update_async() omni.kit.notification_manager.post_notification(msg, hide_after_timeout=False) asyncio.ensure_future(show_msg()) except: carb.log_warn(msg)
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/resourcemonitor_page.py
import omni.ui as ui from ..preferences_window import PreferenceBuilder, SettingType class ResourceMonitorPreferences(PreferenceBuilder): def __init__(self): super().__init__("Resource Monitor") def build(self): """ Resource Monitor """ try: import omni.resourcemonitor as rm with ui.VStack(height=0): with self.add_frame("Resource Monitor"): with ui.VStack(): self.create_setting_widget( "Time Between Queries", rm.timeBetweenQueriesSettingName, SettingType.FLOAT, ) self.create_setting_widget( "Send Device Memory Warnings", rm.sendDeviceMemoryWarningSettingName, SettingType.BOOL, ) self.create_setting_widget( "Device Memory Warning Threshold (MB)", rm.deviceMemoryWarnMBSettingName, SettingType.INT, ) self.create_setting_widget( "Device Memory Warning Threshold (Fraction)", rm.deviceMemoryWarnFractionSettingName, SettingType.FLOAT, range_from=0., range_to=1., ) self.create_setting_widget( "Send Host Memory Warnings", rm.sendHostMemoryWarningSettingName, SettingType.BOOL ) self.create_setting_widget( "Host Memory Warning Threshold (MB)", rm.hostMemoryWarnMBSettingName, SettingType.INT, ) self.create_setting_widget( "Host Memory Warning Threshold (Fraction)", rm.hostMemoryWarnFractionSettingName, SettingType.FLOAT, range_from=0., range_to=1., ) except ImportError: pass
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/datetime_format_page.py
import carb.settings import omni.kit.app from functools import partial from ..preferences_window import PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX class DatetimeFormatPreferences(PreferenceBuilder): def __init__(self): super().__init__("Datetime Format") settings = carb.settings.get_settings() if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/datetime/format") is None: settings.set_default_string(PERSISTENT_SETTINGS_PREFIX + "/app/datetime/format", "MM/DD/YYYY") def build(self): import omni.ui as ui # OM-38343: allow user to switching between different date formats with ui.VStack(height=0): with self.add_frame("Datetime Format"): self.create_setting_widget_combo( "Display Date As", PERSISTENT_SETTINGS_PREFIX + "/app/datetime/format", [ "MM/DD/YYYY", "DD.MM.YYYY", "DD-MM-YYYY", "YYYY-MM-DD", "YYYY/MM/DD", "YYYY.MM.DD" ] ) def __del__(self): super().__del__()
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/developer_page.py
import carb import carb.settings import omni.kit.app import omni.ui as ui from ..preferences_window import PreferenceBuilder, SettingType, PERSISTENT_SETTINGS_PREFIX from typing import Any from typing import Dict from typing import Optional THREAD_SYNC_PRESETS = [ ( "No Pacing", { "/app/runLoops/main/rateLimitEnabled": True, "/app/runLoops/main/rateLimitFrequency": 120, "/app/runLoops/main/rateLimitUsePrecisionSleep": True, "/app/runLoops/main/syncToPresent": False, "/app/runLoops/present/rateLimitEnabled": True, "/app/runLoops/present/rateLimitFrequency": 120, "/app/runLoops/present/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_0/rateLimitEnabled": True, "/app/runLoops/rendering_0/rateLimitFrequency": 120, "/app/runLoops/rendering_0/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_0/syncToPresent": False, "/app/runLoops/rendering_1/rateLimitEnabled": True, "/app/runLoops/rendering_1/rateLimitFrequency": 120, "/app/runLoops/rendering_1/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_1/syncToPresent": False, "/app/runLoopsGlobal/syncToPresent": False, "/app/vsync": False, "/exts/omni.kit.renderer.core/present/enabled": True, "/exts/omni.kit.renderer.core/present/presentAfterRendering": False, "/persistent/app/viewport/defaults/tickRate": 120, "/rtx-transient/dlssg/enabled": True, }, ), ( "30x2", { "/app/runLoops/main/rateLimitEnabled": True, "/app/runLoops/main/rateLimitFrequency": 60, "/app/runLoops/main/rateLimitUsePrecisionSleep": True, "/app/runLoops/main/syncToPresent": True, "/app/runLoops/present/rateLimitEnabled": True, "/app/runLoops/present/rateLimitFrequency": 60, "/app/runLoops/present/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_0/rateLimitEnabled": True, "/app/runLoops/rendering_0/rateLimitFrequency": 30, "/app/runLoops/rendering_0/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_0/syncToPresent": True, "/app/runLoops/rendering_1/rateLimitEnabled": True, "/app/runLoops/rendering_1/rateLimitFrequency": 30, "/app/runLoops/rendering_1/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_1/syncToPresent": True, "/app/runLoopsGlobal/syncToPresent": True, "/app/vsync": True, "/exts/omni.kit.renderer.core/present/enabled": True, "/exts/omni.kit.renderer.core/present/presentAfterRendering": True, "/persistent/app/viewport/defaults/tickRate": 30, "/rtx-transient/dlssg/enabled": True, }, ), ( "60", { "/app/runLoops/main/rateLimitEnabled": True, "/app/runLoops/main/rateLimitFrequency": 60, "/app/runLoops/main/rateLimitUsePrecisionSleep": True, "/app/runLoops/main/syncToPresent": True, "/app/runLoops/present/rateLimitEnabled": True, "/app/runLoops/present/rateLimitFrequency": 60, "/app/runLoops/present/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_0/rateLimitEnabled": True, "/app/runLoops/rendering_0/rateLimitFrequency": 60, "/app/runLoops/rendering_0/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_0/syncToPresent": True, "/app/runLoops/rendering_1/rateLimitEnabled": True, "/app/runLoops/rendering_1/rateLimitFrequency": 60, "/app/runLoops/rendering_1/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_1/syncToPresent": True, "/app/runLoopsGlobal/syncToPresent": True, "/app/vsync": True, "/exts/omni.kit.renderer.core/present/enabled": True, "/exts/omni.kit.renderer.core/present/presentAfterRendering": True, "/persistent/app/viewport/defaults/tickRate": 60, "/rtx-transient/dlssg/enabled": False, }, ), ( "60x2", { "/app/runLoops/main/rateLimitEnabled": True, "/app/runLoops/main/rateLimitFrequency": 60, "/app/runLoops/main/rateLimitUsePrecisionSleep": True, "/app/runLoops/main/syncToPresent": True, "/app/runLoops/present/rateLimitEnabled": True, "/app/runLoops/present/rateLimitFrequency": 120, "/app/runLoops/present/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_0/rateLimitEnabled": True, "/app/runLoops/rendering_0/rateLimitFrequency": 60, "/app/runLoops/rendering_0/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_0/syncToPresent": True, "/app/runLoops/rendering_1/rateLimitEnabled": True, "/app/runLoops/rendering_1/rateLimitFrequency": 60, "/app/runLoops/rendering_1/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_1/syncToPresent": True, "/app/runLoopsGlobal/syncToPresent": True, "/app/vsync": True, "/exts/omni.kit.renderer.core/present/enabled": True, "/exts/omni.kit.renderer.core/present/presentAfterRendering": True, "/persistent/app/viewport/defaults/tickRate": 60, "/rtx-transient/dlssg/enabled": True, }, ), ( "120", { "/app/runLoops/main/rateLimitEnabled": True, "/app/runLoops/main/rateLimitFrequency": 120, "/app/runLoops/main/rateLimitUsePrecisionSleep": True, "/app/runLoops/main/syncToPresent": True, "/app/runLoops/present/rateLimitEnabled": True, "/app/runLoops/present/rateLimitFrequency": 120, "/app/runLoops/present/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_0/rateLimitEnabled": True, "/app/runLoops/rendering_0/rateLimitFrequency": 120, "/app/runLoops/rendering_0/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_0/syncToPresent": True, "/app/runLoops/rendering_1/rateLimitEnabled": True, "/app/runLoops/rendering_1/rateLimitFrequency": 120, "/app/runLoops/rendering_1/rateLimitUsePrecisionSleep": True, "/app/runLoops/rendering_1/syncToPresent": True, "/app/runLoopsGlobal/syncToPresent": True, "/app/vsync": True, "/exts/omni.kit.renderer.core/present/enabled": True, "/exts/omni.kit.renderer.core/present/presentAfterRendering": True, "/persistent/app/viewport/defaults/tickRate": 120, "/rtx-transient/dlssg/enabled": False, }, ), ] class ThreadSyncPresets: def __init__(self): # Get all the settings to watch names = [] paths = set() for name, setting in THREAD_SYNC_PRESETS: names.append(name) for key, default in setting.items(): paths.add(key) self._settings = carb.settings.get_settings() self._subscriptions = [] for path in paths: self._subscriptions.append(self._settings.subscribe_to_node_change_events(path, self._on_setting_changed)) combo = ui.ComboBox(*([0, ""] + names), height=0) self._model = combo.model self._sub = self._model.subscribe_item_changed_fn(self._on_model_changed) def _on_setting_changed(self, item, event_type): for name, setting in THREAD_SYNC_PRESETS: all_is_good = True for key, default in setting.items(): if self._settings.get(key) != default: all_is_good = False break if all_is_good: self._on_preset_changed(name) return self._on_preset_changed(None) def _on_preset_changed(self, preset: Optional[str]): # Find ID for i, child_item in enumerate(self._model.get_item_children()): if self._model.get_item_value_model(child_item).as_string == preset: self._set_preset_id(i) def _set_preset_id(self, preset_id: int): self._model.get_item_value_model().as_int = preset_id def _on_model_changed(self, model: ui.AbstractItemModel, item: ui.AbstractItem): preset_id = self._model.get_item_value_model().as_int child_item = self._model.get_item_children()[preset_id] child_name = self._model.get_item_value_model(child_item).as_string if not child_name: return # Find prest for name, setting in THREAD_SYNC_PRESETS: if name == child_name: self._set_settings(setting) break def _set_settings(self, batch: Dict[str, Any]): for key, value in batch.items(): if self._settings.get(key) != value: self._settings.set(key, value) carb.log_info(f"Present Sets Setting {key} -> {value}") class DeveloperPreferences(PreferenceBuilder): def __init__(self): super().__init__("Developer") def build(self): with ui.VStack(height=0): """ Throttle Rendering """ with self.add_frame("Throttle Rendering"): with ui.VStack(): with ui.HStack(): self.label("Global Thread Synchronization Preset") self.__presets = ThreadSyncPresets() self.create_setting_widget("Async Rendering", "/app/asyncRendering", SettingType.BOOL) self.create_setting_widget( "Skip Rendering While Minimized", "/app/renderer/skipWhileMinimized", SettingType.BOOL ) self.create_setting_widget( "Yield 'ms' while in focus", "/app/renderer/sleepMsOnFocus", SettingType.INT, range_from=0, range_to=50, ) self.create_setting_widget( "Yield 'ms' while not in focus", "/app/renderer/sleepMsOutOfFocus", SettingType.INT, range_from=0, range_to=200, ) self.create_setting_widget( "Enable UI FPS Limit", "/app/runLoops/main/rateLimitEnabled", SettingType.BOOL ) self.create_setting_widget( "UI FPS Limit uses Busy Loop", "/app/runLoops/main/rateLimitUseBusyLoop", SettingType.BOOL ) self.create_setting_widget( "UI FPS Limit", "/app/runLoops/main/rateLimitFrequency", SettingType.FLOAT, range_from=10, range_to=360, ) self.create_setting_widget( "Use Fixed Time Stepping", "/app/player/useFixedTimeStepping", SettingType.BOOL ) # Present thread self.create_setting_widget( "Use Present Thread", "/exts/omni.kit.renderer.core/present/enabled", SettingType.BOOL ) self.create_setting_widget( "Sync Threads and Present Thread", "/app/runLoopsGlobal/syncToPresent", SettingType.BOOL ) self.create_setting_widget( "Present Thread FPS Limit", "/app/runLoops/present/rateLimitFrequency", SettingType.FLOAT, range_from=10, range_to=360, ) self.create_setting_widget( "Sync Present Thread to Present After Rendering", "/exts/omni.kit.renderer.core/present/presentAfterRendering", SettingType.BOOL ) self.create_setting_widget( "Vsync", "/app/vsync", SettingType.BOOL )
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/stage_page.py
import carb.settings import omni.kit.app from functools import partial from ..preferences_window import PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX, SettingType class StagePreferences(PreferenceBuilder): def __init__(self): super().__init__("Stage") self._update_setting = {} settings = carb.settings.get_settings() if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/stage/timeCodeRange") is None: settings.set_float_array(PERSISTENT_SETTINGS_PREFIX + "/app/stage/timeCodeRange", [0, 100]) if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/stage/timeCodesPerSecond") is None: settings.set_default_float(PERSISTENT_SETTINGS_PREFIX + "/app/stage/timeCodesPerSecond", 60.0) if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/PrimCreationWithDefaultXformOps") is None: settings.set_default_bool( PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/PrimCreationWithDefaultXformOps", True ) if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpType") is None: settings.set_default_string( PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpType", "Scale, Rotate, Translate" ) if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultRotationOrder") is None: settings.set_default_string(PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultRotationOrder", "XYZ") # OM-47905: Default camera rotation order should be YXZ. if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultCameraRotationOrder") is None: settings.set_default_string(PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultCameraRotationOrder", "YXZ") if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpOrder") is None: settings.set_default_string( PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpOrder", "xformOp:translate, xformOp:rotate, xformOp:scale", ) if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpPrecision") is None: settings.set_default_string( PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpPrecision", "Double" ) if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/stage/dragDropImport") is None: settings.set_default_string( PERSISTENT_SETTINGS_PREFIX + "/app/stage/dragDropImport", "payload" ) if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/stage/nestedGprimsAuthoring") is None: settings.set_default_bool( PERSISTENT_SETTINGS_PREFIX + "/app/stage/nestedGprimsAuthoring", False ) if settings.get(PERSISTENT_SETTINGS_PREFIX + "/app/stage/movePrimInPlace") is None: settings.set_default_bool( PERSISTENT_SETTINGS_PREFIX + "/app/stage/movePrimInPlace", True ) def build(self): import omni.ui as ui """ New Stage """ with ui.VStack(height=0): with self.add_frame("New Stage"): with ui.VStack(): self.create_setting_widget_combo( "Default Up Axis", PERSISTENT_SETTINGS_PREFIX + "/app/stage/upAxis", ["Y", "Z"] ) self.create_setting_widget( "Default Animation Rate (TimeCodesPerSecond)", PERSISTENT_SETTINGS_PREFIX + "/app/stage/timeCodesPerSecond", SettingType.FLOAT ) self.create_setting_widget( "Default Meters Per Unit", PERSISTENT_SETTINGS_PREFIX + "/simulation/defaultMetersPerUnit", SettingType.FLOAT, range_from=0.001, range_to=1.0, speed=0.001, identifier="default_meters_per_unit" ) self.create_setting_widget( "Default Time Code Range", PERSISTENT_SETTINGS_PREFIX + "/app/stage/timeCodeRange", SettingType.DOUBLE2, ) self.create_setting_widget( "Default DefaultPrim Name", PERSISTENT_SETTINGS_PREFIX + "/app/stage/defaultPrimName", SettingType.STRING, ) self.create_setting_widget_combo( "Interpolation Type", PERSISTENT_SETTINGS_PREFIX + "/app/stage/interpolationType", ["Linear", "Held"], ) self.create_setting_widget( "Enable Static Material Network Topology", "/omnihydra/staticMaterialNetworkTopology", SettingType.BOOL, ) self._create_prim_creation_settings_widgets() self.spacer() """ Authoring """ with self.add_frame("Authoring"): with ui.VStack(): self.create_setting_widget( "Keep Prim World Transfrom When Reparenting", PERSISTENT_SETTINGS_PREFIX + "/app/stage/movePrimInPlace", SettingType.BOOL, ) self.create_setting_widget( 'Set "Instanceable" When Creating Reference', PERSISTENT_SETTINGS_PREFIX + "/app/stage/instanceableOnCreatingReference", SettingType.BOOL, ) self.create_setting_widget( "Transform Gizmo Manipulates Scale/Rotate/Translate Separately (New)", PERSISTENT_SETTINGS_PREFIX + "/app/transform/gizmoUseSRT", SettingType.BOOL, ) self.create_setting_widget( "Camera Controller Manipulates Scale/Rotate/Translate Separately (New)", PERSISTENT_SETTINGS_PREFIX + "/app/camera/controllerUseSRT", SettingType.BOOL, ) self.create_setting_widget( "Allow nested gprims authoring", PERSISTENT_SETTINGS_PREFIX + "/app/stage/nestedGprimsAuthoring", SettingType.BOOL, ) self.spacer() """ Import """ with self.add_frame("Import"): with ui.VStack(): self.create_setting_widget_combo( "Drag & Drop USD Method", PERSISTENT_SETTINGS_PREFIX + "/app/stage/dragDropImport", ["payload", "reference"], ) self.spacer() """ Logging """ with self.add_frame("Logging"): with ui.VStack(): self.create_setting_widget( "Mute USD Coding Error from USD Diagnostic Manager", PERSISTENT_SETTINGS_PREFIX + "/app/usd/muteUsdCodingError", SettingType.BOOL, ) self.spacer() """ Compatibility """ with self.add_frame("Compatibility"): with ui.VStack(): self.create_setting_widget( "Support unprefixed UsdLux attributes (USD <= 20.11)", PERSISTENT_SETTINGS_PREFIX + "/app/usd/usdLuxUnprefixedCompat", SettingType.BOOL, ) def __del__(self): super().__del__() self._update_setting = {} def _create_prim_creation_settings_widgets(self): self.create_setting_widget( "Start with Transform Op on Prim Creation", PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/PrimCreationWithDefaultXformOps", SettingType.BOOL, ) def _on_prim_creation_with_default_xform_ops_change(item, event_type, owner): if event_type == carb.settings.ChangeEventType.CHANGED: owner._update_prim_creation_with_default_xform_ops() self._update_setting["PrimCreationWithDefaultXformOps"] = omni.kit.app.SettingChangeSubscription( PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/PrimCreationWithDefaultXformOps", partial(_on_prim_creation_with_default_xform_ops_change, owner=self), ) widget = self.create_setting_widget_combo( " Default Transform Op Type", PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpType", ["Scale, Rotate, Translate", "Scale, Orient, Translate", "Transform"], ) def _on_default_xform_op_type_change(item, event_type, owner): if event_type == carb.settings.ChangeEventType.CHANGED: owner._update_prim_creation_with_default_xform_ops() self._update_setting["DefaultXformOpType"] = omni.kit.app.SettingChangeSubscription( PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpType", partial(_on_default_xform_op_type_change, owner=self), ) self._widget_default_xform_op_type = widget widget = self.create_setting_widget_combo( " Default Camera Rotation Order", PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultCameraRotationOrder", ["XYZ", "XZY", "YZX", "YXZ", "ZXY", "ZYX"], ) self._widget_default_camera_rotation_order = widget widget = self.create_setting_widget_combo( " Default Rotation Order", PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultRotationOrder", ["XYZ", "XZY", "YZX", "YXZ", "ZXY", "ZYX"], ) self._widget_default_rotation_order = widget widget = self.create_setting_widget_combo( " Default Xform Op Order", PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpOrder", [ "xformOp:translate, xformOp:rotate, xformOp:scale", "xformOp:translate, xformOp:orient, xformOp:scale", "xformOp:transform", ], ) self._widget_default_xform_op_order = widget widget = self.create_setting_widget_combo( " Default Xform Precision", PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpPrecision", ["Float", "Double"], ) self._widget_default_xform_op_precision = widget self._update_prim_creation_with_default_xform_ops() def _update_prim_creation_with_default_xform_ops(self): settings = carb.settings.get_settings() if settings.get_as_bool(PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/PrimCreationWithDefaultXformOps"): self._widget_default_xform_op_type.enabled = True default_xform_ops = settings.get_as_string( PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpType" ) if default_xform_ops == "Scale, Orient, Translate": self._widget_default_rotation_order.enabled = False self._widget_default_camera_rotation_order.enabled = False settings.set_string( PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpOrder", "xformOp:translate, xformOp:orient, xformOp:scale", ) elif default_xform_ops == "Transform": self._widget_default_rotation_order.enabled = False self._widget_default_camera_rotation_order.enabled = False settings.set_string( PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpOrder", "xformOp:transform" ) else: self._widget_default_rotation_order.enabled = True self._widget_default_camera_rotation_order.enabled = True settings.set_string( PERSISTENT_SETTINGS_PREFIX + "/app/primCreation/DefaultXformOpOrder", "xformOp:translate, xformOp:rotate, xformOp:scale", ) self._widget_default_xform_op_order.enabled = False self._widget_default_xform_op_precision.enabled = True else: self._widget_default_xform_op_type.enabled = False self._widget_default_rotation_order.enabled = False self._widget_default_camera_rotation_order.enabled = False self._widget_default_xform_op_order.enabled = False self._widget_default_xform_op_precision.enabled = False
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/rendering_page.py
import carb import carb.settings import omni.kit.app import omni.ui as ui from ..preferences_window import PreferenceBuilder, SettingType, PERSISTENT_SETTINGS_PREFIX from .developer_page import THREAD_SYNC_PRESETS # kit-extensions/kit-scene extension access this from typing import Any from typing import Dict from typing import Optional class RenderingPreferences(PreferenceBuilder): def post_notification(message: str, info: bool = False, duration: int = 3): import omni.kit.notification_manager as nm if info: type = nm.NotificationStatus.INFO else: type = nm.NotificationStatus.WARNING nm.post_notification(message, status=type, duration=duration) def __init__(self): super().__init__("Rendering") self._persistentDistillMaterialPath = PERSISTENT_SETTINGS_PREFIX + "/rtx/mdltranslator/distillMaterial" self._persistentMultiGPUPath = PERSISTENT_SETTINGS_PREFIX + "/renderer/multiGpu/enabled" self._persistentOpacityMicromapPath = PERSISTENT_SETTINGS_PREFIX + "/renderer/raytracingOmm/enabled" settings = carb.settings.get_settings() if settings.get(self._persistentDistillMaterialPath) is None: settings.set_default_bool(self._persistentDistillMaterialPath, False) self._sub_material_distilling_changed = omni.kit.app.SettingChangeSubscription( self._persistentDistillMaterialPath, self._on_material_distilling_changed ) self._sub_opacity_micromap_changed = omni.kit.app.SettingChangeSubscription( self._persistentOpacityMicromapPath, self._on_opacity_micromap_changed ) self._persistentPlaceholderTextureColorPath = PERSISTENT_SETTINGS_PREFIX + "/rtx/resourcemanager/placeholderTextureColor" if settings.get(self._persistentPlaceholderTextureColorPath) is None: settings.set_float_array(self._persistentPlaceholderTextureColorPath, [0,1,1]) # Note: No SettingChangeSubscription because it shows the same popup like 6 times when the color is changed self._enableFabricSceneDelegatePath = "/app/useFabricSceneDelegate" self._sub_fabric_delegate_changed = omni.kit.app.SettingChangeSubscription( self._enableFabricSceneDelegatePath, self._on_fabric_delegate_changed ) self._fabricMemBudgetPath = "/app/usdrt/scene_delegate/gpuMemoryBudgetPercent" if settings.get(self._fabricMemBudgetPath) is None: settings.set_default_float(self._fabricMemBudgetPath, 90) self._fabricEnableGeometryStreaming = "/app/usdrt/scene_delegate/geometryStreaming/enabled" if settings.get(self._fabricEnableGeometryStreaming) is None: settings.set_default_bool(self._fabricEnableGeometryStreaming, True) self._fabricEnableGeometryStreamingMinSize = "/app/usdrt/scene_delegate/geometryStreaming/solidAngleLimit" if settings.get(self._fabricEnableGeometryStreamingMinSize) is None: settings.set_default_float(self._fabricEnableGeometryStreamingMinSize, 0.) self._fabricEnableProxyCubes = "/app/usdrt/scene_delegate/enableProxyCubes" if settings.get(self._fabricEnableProxyCubes) is None: settings.set_default_bool(self._fabricEnableProxyCubes, False) self._fabricMergeSubcomponents = "/app/usdrt/population/utils/mergeSubcomponents" if settings.get(self._fabricMergeSubcomponents) is None: settings.set_default_bool(self._fabricMergeSubcomponents, False) self._fabricMergeInstances = "/app/usdrt/population/utils/mergeInstances" if settings.get(self._fabricMergeInstances) is None: settings.set_default_bool(self._fabricMergeInstances, False) self._fabricMergeMaterials = "/app/usdrt/population/utils/mergeMaterials" if settings.get(self._fabricMergeMaterials) is None: settings.set_default_bool(self._fabricMergeMaterials, True) self._fabricReadMaterials = "/app/usdrt/population/utils/readMaterials" if settings.get(self._fabricReadMaterials) is None: settings.set_default_bool(self._fabricReadMaterials, True) self._fabricReadLights = "/app/usdrt/population/utils/readLights" if settings.get(self._fabricReadLights) is None: settings.set_default_bool(self._fabricReadLights, True) self._fabricReadPrimvars = "/app/usdrt/population/utils/readPrimvars" if settings.get(self._fabricReadPrimvars) is None: settings.set_default_bool(self._fabricReadPrimvars, True) self._fabricInferDisplayColorFromMaterial = "/app/usdrt/population/utils/inferDisplayColorFromMaterial" if settings.get(self._fabricInferDisplayColorFromMaterial) is None: settings.set_default_bool(self._fabricInferDisplayColorFromMaterial, False) self._fabricHandleSceneGraphInstances = "/app/usdrt/population/utils/handleSceneGraphInstances" if settings.get(self._fabricHandleSceneGraphInstances) is None: settings.set_default_bool(self._fabricHandleSceneGraphInstances, True) self._fabricUseHydraBlendShape = "/app/usdrt/scene_delegate/useHydraBlendShape" if settings.get(self._fabricUseHydraBlendShape) is None: settings.set_default_bool(self._fabricUseHydraBlendShape, False) def build(self): with ui.VStack(height=0): """ Hydra Scene Delegate """ with self.add_frame("Fabric Scene Delegate"): with ui.VStack(): self.create_setting_widget("Enable Fabric delegate (preview feature, requires scene reload)", self._enableFabricSceneDelegatePath, SettingType.BOOL, tooltip="Enable Fabric Hydra scene delegate for faster load times on large scenes.\n" "This is a preview release of this new feature and some scene interactions will be limited.\n" "You should expect faster load times with geometry streaming, faster playback of USD animation, " "and GPU memory staying under a predefined budget.") self.create_setting_widget("Fabric delegate GPU memory budget %", self._fabricMemBudgetPath, SettingType.FLOAT, range_from=0, range_to=100, tooltip="Fabric Scene Delegate will stop loading geometry when this threshold of available GPU memory is reached.") with ui.CollapsableFrame(title="Advanced Fabric Scene Delegate Settings", collapsed=True): with ui.VStack(): self.create_setting_widget("Enable Geometry Streaming in Fabric Scene Delegate", self._fabricEnableGeometryStreaming, SettingType.BOOL, tooltip="This enables the progressive and sorted loading of geometry, as well as the device memory limit checks.") self.create_setting_widget("Geo Streaming Minimum Size", self._fabricEnableGeometryStreamingMinSize, SettingType.FLOAT, range_from=0, range_to=1, range_step=0.0001, tooltip="This sets a minimum relative size on screen for objects to be loaded, 0 loads everything.") self.create_setting_widget("Enable proxy cubes for unloaded prims", self._fabricEnableProxyCubes, SettingType.BOOL, tooltip="This helps visualizing scene content when having low device memory, but can have performance impact for very large scenes.") self.create_setting_widget("Merge subcomponents", self._fabricMergeSubcomponents, SettingType.BOOL, tooltip="Fabric Scene Delegate will merge all meshes within USD subcomponents.\n" "This does NOT affect the USD stage, only the Fabric representation.") self.create_setting_widget("Merge instances", self._fabricMergeInstances, SettingType.BOOL, tooltip="Fabric Scene Delegate will merge all meshes within USD scene graph instances.\n" "This does NOT affect the USD stage, only the Fabric representation.") self.create_setting_widget("Merge materials", self._fabricMergeMaterials, SettingType.BOOL, tooltip="Fabric Scene Delegate will identify unique materials and drop all duplicates.\n" "This does NOT affect the USD stage, only the Fabric representation.") self.create_setting_widget("Read materials", self._fabricReadMaterials, SettingType.BOOL, tooltip="When off, Fabric Scene Delegate will not read any material from USD, which can speed up load time.\n" "This does NOT affect the USD stage, only the Fabric representation.") self.create_setting_widget("Infer displayColor from material", self._fabricInferDisplayColorFromMaterial, SettingType.BOOL, tooltip="When on, Fabric Scene Delegate will read material info to infer mesh displayColor.\n" "This does NOT affect the USD stage, only the Fabric representation.") self.create_setting_widget("Read lights", self._fabricReadLights, SettingType.BOOL, tooltip="When off, Fabric Scene Delegate will not read any lights from USD.\n" "This does NOT affect the USD stage, only the Fabric representation.") self.create_setting_widget("Read primvars", self._fabricReadPrimvars, SettingType.BOOL, tooltip="When off, Fabric Scene Delegate will not read any mesh primvar from USD.\n" "This does NOT affect the USD stage, only the Fabric representation.") self.create_setting_widget("Use Fabric Scene Graph Instancing", self._fabricHandleSceneGraphInstances, SettingType.BOOL, tooltip="When off, Fabric Scene Delegate will ignore USD Scene Graph Instances.\n" "Each instanced geometry will be duplicated in Fabric.") self.create_setting_widget("Use Hydra BlendShape", self._fabricUseHydraBlendShape, SettingType.BOOL, tooltip="Fabric Scene Delegate will compute hydra BlendShape.\n" "This will be effective after next stage loading.") #define USDRT_POPULATION_UTILS_INFERDISPLAYCOLORFROMMATERIAL "/app/usdrt/population/utils/" self.spacer() """ White Mode """ with self.add_frame("White Mode"): with ui.VStack(): widget = self.create_setting_widget("Material", "/rtx/debugMaterialWhite", SettingType.STRING) widget.enabled = False self.create_setting_widget( "Exceptions (Requires Scene Reload)", PERSISTENT_SETTINGS_PREFIX + "/app/rendering/whiteModeExceptions", SettingType.STRING, ) self.spacer() """ MDL """ with self.add_frame("MDL"): with ui.VStack(): self.create_setting_widget( "Material Distilling (Experimental, requires app restart)", self._persistentDistillMaterialPath, SettingType.BOOL, tooltip="Enables transforming MDL materials of arbitrary complexity to predefined target material models, which can improve material rendering fidelity in RTX Real-Time mode." "\nImproves rendering fidelity of complex materials such as Clear Coat in RTX Real-Time mode." "\nRequires app restart to take effect." ) self.spacer() """ Texture Streaming """ with self.add_frame("Texture Streaming"): with ui.VStack(): self.create_setting_widget( "Placeholder Texture Color (requires app restart)", self._persistentPlaceholderTextureColorPath, SettingType.COLOR3, tooltip="Sets the color of the placeholder texture which is used while actual textures are loaded." "\nRequires app restart to take effect." ) self.spacer() """ Multi-GPU """ with self.add_frame("Multi-GPU"): with ui.VStack(): with ui.HStack(height=24): self.label("Multi-GPU") settings = carb.settings.get_settings() mgpu = str(settings.get(self._persistentMultiGPUPath)) index = 0 if mgpu == "True": index = 1 elif mgpu == "False": index = 2 widget = ui.ComboBox(index, "Auto", "True", "False") widget.model.add_item_changed_fn(self._on_multigpu_changed) self.spacer() """ Opacity MicroMap """ with self.add_frame("Opacity MicroMap"): with ui.VStack(): self.create_setting_widget( "Enable Opacity MicroMap", self._persistentOpacityMicromapPath, SettingType.BOOL, tooltip="Opacity MicroMaps improve efficiency of rendering translucent objects." "\nThis feature requires an Ada Lovelace architecture GPU." "\nRequires app restart to take effect." ) def _on_opacity_micromap_changed(self, value: bool, event_type: carb.settings.ChangeEventType): if event_type == carb.settings.ChangeEventType.CHANGED: msg = "Opacity MicroMap settings has been changed. You will need to restart Omniverse for this to take effect." try: import asyncio import omni.kit.notification_manager import omni.kit.app async def show_msg(): await omni.kit.app.get_app().next_update_async() omni.kit.notification_manager.post_notification(msg, hide_after_timeout=False) asyncio.ensure_future(show_msg()) except: carb.log_warn(msg) def _on_material_distilling_changed(self, value: bool, event_type: carb.settings.ChangeEventType): if event_type == carb.settings.ChangeEventType.CHANGED: msg = "Material distilling settings has been changed. You will need to restart Omniverse for this to take effect." try: import asyncio import omni.kit.notification_manager import omni.kit.app async def show_msg(): await omni.kit.app.get_app().next_update_async() omni.kit.notification_manager.post_notification(msg, hide_after_timeout=False) asyncio.ensure_future(show_msg()) except: carb.log_warn(msg) def _on_fabric_delegate_changed(self, value: str, event_type: carb.settings.ChangeEventType): import omni.usd if event_type == carb.settings.ChangeEventType.CHANGED: stage = omni.usd.get_context().get_stage() if not stage or stage.GetRootLayer().anonymous: return msg = "Hydra scene delegate changed. You will need to reload your stage for this to take effect." try: import asyncio import omni.kit.notification_manager import omni.kit.app async def show_msg(): await omni.kit.app.get_app().next_update_async() omni.kit.notification_manager.post_notification(msg, hide_after_timeout=True, duration=2) asyncio.ensure_future(show_msg()) except: carb.log_warn(msg) def _on_multigpu_changed(self, model, item): current_index = model.get_item_value_model().as_int settings = carb.settings.get_settings() if current_index == 0: # this is a string not a bool and will have no effect settings.set_string(self._persistentMultiGPUPath, "auto") elif current_index == 1: settings.set_bool(self._persistentMultiGPUPath, True) elif current_index == 2: settings.set_bool(self._persistentMultiGPUPath, False) # print restart message RenderingPreferences.post_notification(f"You need to restart {omni.kit.app.get_app().get_app_name()} for changes to take effect", info=True)
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/audio_page.py
import os import platform import carb.settings import omni.kit.app import omni.kit.audiodeviceenum import omni.usd.audio from functools import partial import omni.ui as ui from omni.kit.audiodeviceenum import Direction, SampleType from ..preferences_window import PreferenceBuilder, show_file_importer, PERSISTENT_SETTINGS_PREFIX, SettingType class AudioPreferences(PreferenceBuilder): def __init__(self): super().__init__("Audio") self._settings = carb.settings.get_settings() self._enum = omni.kit.audiodeviceenum.acquire_audio_device_enum_interface() self._audio = omni.usd.audio.get_stage_audio_interface() carb.settings.get_settings().set_default_bool( PERSISTENT_SETTINGS_PREFIX + "/audio/context/closeAudioPlayerOnStop", False ) carb.settings.get_settings().set_default_float(PERSISTENT_SETTINGS_PREFIX + "/audio/context/uiVolume", 1.0) def build(self): devices = self.get_device_list(Direction.PLAYBACK) capture_devices = self.get_device_list(Direction.CAPTURE) speaker_list = [ "auto-detect", "mono", "stereo", "2.1", "quad", "4.1 surround", "5.1 surround", "7.1 surround", "7.1.4 surround", "9.1 surround", "9.1.4 surround", "9.1.6 surround", ] """ Audio Device """ with ui.VStack(height=0): with self.add_frame("Audio Output"): with ui.VStack(): self._device_widget = self.create_setting_widget_combo( "Output Device", PERSISTENT_SETTINGS_PREFIX + "/audio/context/deviceName", devices ) self._capture_device_widget = self.create_setting_widget_combo( "Input Device", PERSISTENT_SETTINGS_PREFIX + "/audio/context/captureDeviceName", capture_devices ) self.create_setting_widget_combo( "Speaker Configuration", PERSISTENT_SETTINGS_PREFIX + "/audio/context/speakerMode", speaker_list ) with ui.HStack(height=24): ui.Button("Refresh", clicked_fn=partial(self._on_refresh_button_fn)) ui.Spacer(width=10) ui.Button("Apply", clicked_fn=partial(self._on_apply_button_fn)) self.spacer() """ Audio Parameters """ with self.add_frame("Audio Parameters"): with ui.VStack(): self.create_setting_widget( "Auto Stream Threshold (in Kilobytes)", PERSISTENT_SETTINGS_PREFIX + "/audio/context/autoStreamThreshold", SettingType.INT, range_from=0, range_to=10240, speed=10, ) self.spacer() """ Audio Player Parameters """ with self.add_frame("Audio Player Parameters"): with ui.VStack(): self.create_setting_widget( "Auto Stream Threshold (in Kilobytes)", PERSISTENT_SETTINGS_PREFIX + "/audio/context/audioPlayerAutoStreamThreshold", SettingType.INT, range_from=0, range_to=10240, speed=10, ) self.create_setting_widget( "Close Audio Player on Stop", PERSISTENT_SETTINGS_PREFIX + "/audio/context/closeAudioPlayerOnStop", SettingType.BOOL, ) self.spacer() """ Volume Levels """ with self.add_frame("Volume Levels"): with ui.VStack(): self.create_setting_widget( "Master Volume", PERSISTENT_SETTINGS_PREFIX + "/audio/context/masterVolume", SettingType.FLOAT, range_from=0.0, range_to=1.0, speed=0.01, ) self.create_setting_widget( "USD Volume", PERSISTENT_SETTINGS_PREFIX + "/audio/context/usdVolume", SettingType.FLOAT, range_from=0.0, range_to=1.0, speed=0.01, ) self.create_setting_widget( "Spatial Voice Volume", PERSISTENT_SETTINGS_PREFIX + "/audio/context/spatialVolume", SettingType.FLOAT, range_from=0.0, range_to=1.0, speed=0.01, ) self.create_setting_widget( "Non-spatial Voice Volume", PERSISTENT_SETTINGS_PREFIX + "/audio/context/nonSpatialVolume", SettingType.FLOAT, range_from=0.0, range_to=1.0, speed=0.01, ) self.create_setting_widget( "UI Audio Volume", PERSISTENT_SETTINGS_PREFIX + "/audio/context/uiVolume", SettingType.FLOAT, range_from=0.0, range_to=1.0, speed=0.01, ) self.spacer() """ Debug """ with self.add_frame("Debug"): with ui.VStack(): self.create_setting_widget( "Stream Dump Filename", PERSISTENT_SETTINGS_PREFIX + "/audio/context/streamerFile", SettingType.STRING, clicked_fn=self._on_browse_button_fn, ) # checkbox to enable stream dumping. Note that the setting path for # this is *intentionally* not persistent. This forces the stream # dumping to need to be toggled on at each launch instead of just # enabling it on startup and filling up everyone's harddrives. self.create_setting_widget("Enable Stream Dump", "/audio/context/enableStreamer", SettingType.BOOL) def _on_browse_button_fn(self, origin): """ Called when the user picks the Browse button. """ full_path = origin.model.get_value_as_string() path = os.path.dirname(full_path) if path == "": path = "/" if platform.system().lower() == "windows": path = "C:/" filename = os.path.basename(full_path) if filename == "": filename = "stream_dump" # NOTE: navigate_to doesn't work if target file doesn't exist... navigate_to = self.cleanup_slashes(os.path.join(path, filename)) if not os.path.exists(navigate_to): navigate_to = self.cleanup_slashes(path) show_file_importer( title="Select Filename (Local Files Only)", file_exts=[("RIFF Files(*.wav)", ""), ("All Files(*)", "")], click_apply_fn=self._on_file_pick, filename_url=navigate_to ) def _on_file_pick(self, full_path): """ Called when the user accepts filename in the Select Filename dialog. """ path = os.path.dirname(full_path) if path == "": path = "/" if platform.system().lower() == "windows": path = "C:/" filename = os.path.basename(full_path) if filename == "": filename = "stream_dump.bin" self._settings.set( PERSISTENT_SETTINGS_PREFIX + "/audio/context/streamerFile", self.cleanup_slashes(os.path.join(path, filename)), ) def _on_refresh_button_fn(self): """ Called when the user clicks on the 'Refresh' button. """ devices = self.get_device_list(Direction.PLAYBACK) self._device_widget.model.set_items(devices) devices = self.get_device_list(Direction.CAPTURE) self._capture_device_widget.model.set_items(devices) def _on_apply_button_fn(self): """ Called when the user clicks on the 'Apply' button. """ deviceId = self._settings.get(PERSISTENT_SETTINGS_PREFIX + "/audio/context/deviceName") self._audio.set_device(deviceId) def get_device_list(self, direction): device_count = self._enum.get_device_count(direction) default_device = self._enum.get_device_name(direction, 0) if default_device is None: return {"No audio device is connected": ""} devices = {"Default Device (" + self._enum.get_device_name(direction, 0) + ")": ""} for i in range(device_count): dev_name = self._enum.get_device_description(direction, i) dev_id = self._enum.get_device_id(direction, i) if dev_name == None or dev_id == None: continue devices[dev_name] = dev_id return devices
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/scripts/pages/tagging_page.py
import carb.settings import omni.kit.app from functools import partial import omni.ui as ui from ..preferences_window import PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX, SettingType class TaggingPreferences(PreferenceBuilder): def __init__(self): super().__init__("Tagging") self._showAdvanced = PERSISTENT_SETTINGS_PREFIX + "/exts/omni.kit.property.tagging/showAdvancedTagView" self._showHidden = PERSISTENT_SETTINGS_PREFIX + "/exts/omni.kit.property.tagging/showHiddenTags" self._modifyHidden = PERSISTENT_SETTINGS_PREFIX + "/exts/omni.kit.property.tagging/modifyHiddenTags" carb.settings.get_settings().set_default_bool(self._showAdvanced, False) carb.settings.get_settings().set_default_bool(self._showHidden, False) carb.settings.get_settings().set_default_bool(self._modifyHidden, False) def build(self): # update on setting change def _on_change(item, event_type, owner): if event_type == carb.settings.ChangeEventType.CHANGED: owner._update_visibility() self._update_setting = omni.kit.app.SettingChangeSubscription( self._showAdvanced, partial(_on_change, owner=self) ) self._update_setting2 = omni.kit.app.SettingChangeSubscription( self._showHidden, partial(_on_change, owner=self) ) """ Tagging """ with ui.VStack(height=0): with self.add_frame("Tagging"): with ui.VStack(): self.create_setting_widget("Allow advanced tag view", self._showAdvanced, SettingType.BOOL) self._showHiddenWidget = self.create_setting_widget( "Show hidden tags in advanced view", self._showHidden, SettingType.BOOL ) self._modifyHiddenWidget = self.create_setting_widget( "Allow adding and modifying hidden tags directly", self._modifyHidden, SettingType.BOOL ) self._update_visibility() def _update_visibility(self): settings = carb.settings.get_settings() if settings.get_as_bool(self._showAdvanced): self._showHiddenWidget.enabled = True self._modifyHiddenWidget.enabled = settings.get_as_bool(self._showHidden) else: self._showHiddenWidget.enabled = False self._modifyHiddenWidget.enabled = False
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/tests/test_material_config.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 carb import omni.usd import omni.kit.app from omni.kit.test.async_unittest import AsyncTestCase import omni.kit.window.preferences.scripts.material_config_utils as mc_utils import os from pathlib import Path import posixpath import shutil import tempfile import toml TEST_PATH_STRS = [ "C:/some/project/materials", "omniverse://another/project/materials", "/my/own/materials" ] def _compare_toml_files(file1, file2): # the toml module does not preserve the item order in files so can't use # simple line comparison. needs to compare them as dicts toml1 = toml.load(file1) toml2 = toml.load(file2) return (toml1 == toml2) class PreferencesTestMaterialConfigUtils(AsyncTestCase): # run only once at the beginning @classmethod def setUpClass(cls): # test config file path ext_path = omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__) data_tests_dir = Path(ext_path) / "data/tests" test_config_file_path = data_tests_dir / "material.config.toml" test_config_carb_file_path = data_tests_dir / "material.config.carb.toml" # create temp home dir cls._temp_home = Path(tempfile.mkdtemp()) cls._temp_home = cls._temp_home.as_posix() # copy test config files to the temp home cls._temp_kit_shared_dir = posixpath.join(cls._temp_home, "Documents/Kit/shared") if not os.path.exists(cls._temp_kit_shared_dir): os.makedirs(cls._temp_kit_shared_dir) shutil.copy(test_config_file_path, cls._temp_kit_shared_dir) shutil.copy(test_config_carb_file_path, cls._temp_kit_shared_dir) # temporary wipe out material config in settings settings = carb.settings.get_settings() cls._curr_material_config = settings.get("/materialConfig") settings.set("/materialConfig", {}) # run only once at the end @classmethod def tearDownClass(cls): # remove settings used in tests settings = carb.settings.get_settings() settings.destroy_item("/materialConfigTests") # restore material config in settings settings.set("/materialConfig", {}) settings.set("/materialConfig", cls._curr_material_config) # delete temp home dir if os.path.exists(cls._temp_home): shutil.rmtree(cls._temp_home) # before running each test async def setUp(self): # temporary set home path # replace both variables since Path.home() looks for different env var on Windows # depends on the Python version self._curr_profile = os.environ.get("USERPROFILE", "") if self._curr_profile: os.environ["USERPROFILE"] = str(self._temp_home) self._curr_home = os.environ.get("HOME", "") if self._curr_home: os.environ["HOME"] = str(self._temp_home) # after running each test async def tearDown(self): # restore env vars if self._curr_profile: os.environ["USERPROFILE"] = self._curr_profile if self._curr_home: os.environ["HOME"] = self._curr_home async def test_get_config_file_path(self): expect = Path(self._temp_home) / "Documents/Kit/shared" / "material.config.toml" expect = expect.as_posix() self.assertEqual(expect, mc_utils.get_config_file_path()) async def test_load_config_file(self): config_file_path = mc_utils.get_config_file_path() config = mc_utils.load_config_file(config_file_path) expect = ["my_materials", "my_maps"] self.assertEqual(expect, config["materialGraph"]["userAllowList"]) expect = ["foo_materials", "bar_maps"] self.assertEqual(expect, config["materialGraph"]["userBlockList"]) expect = False self.assertEqual(expect, config["options"]["noStandardPath"]) expect = TEST_PATH_STRS self.assertEqual(expect, config["searchPaths"]["local"]) async def test_save_config_file(self): config = {} config["materialGraph"] = {} config["materialGraph"]["userAllowList"] = ["my_materials", "my_maps"] config["materialGraph"]["userBlockList"] = ["foo_materials", "bar_maps"] config["options"] = {} config["options"]["noStandardPath"] = False config["searchPaths"] = {} config["searchPaths"]["local"] = TEST_PATH_STRS config["configFilePath"] = "/dummy/path/material.config.toml" # save new file new_config_file_path = posixpath.join(self._temp_kit_shared_dir, "material.config.saved.toml") self.assertTrue(mc_utils.save_config_file(config, new_config_file_path)) # compare to the original file orig_config_file_path = mc_utils.get_config_file_path() self.assertTrue(_compare_toml_files(new_config_file_path, orig_config_file_path)) async def test_save_carb_setting_to_config_file(self): test_settings = ( ("string", "coffee", False), ("float", 24.0, False), ("bool", True, False), ("paths", ";".join(TEST_PATH_STRS), True) ) # assign to carb settings settings = carb.settings.get_settings() for i in test_settings: setting_key = posixpath.join("/materialConfigTests", i[0]) settings.set(setting_key, i[1]) # save new file new_config_carb_file_path = posixpath.join(self._temp_kit_shared_dir, "material.config.carb.saved.toml") for i in test_settings: carb_key = posixpath.join("/materialConfigTests", i[0]) config_key = posixpath.join("tests", i[0]) mc_utils.save_carb_setting_to_config_file( carb_key, config_key, is_paths=i[2], non_standard_path=new_config_carb_file_path ) # compare to the original file orig_config_carb_file_path = posixpath.join(self._temp_kit_shared_dir, "material.config.carb.toml") self.assertTrue(_compare_toml_files(new_config_carb_file_path, orig_config_carb_file_path)) async def test_save_live_config_to_file(self): test_settings = ( ("materialGraph/userAllowList", ["my_materials", "my_maps"]), ("materialGraph/userBlockList", ["foo_materials", "bar_maps"]), ("options/noStandardPath", False), ("searchPaths/local", TEST_PATH_STRS) ) # assign to /materialConfig carb settings settings = carb.settings.get_settings() for i in test_settings: setting_key = posixpath.join("/materialConfig", i[0]) settings.set(setting_key, i[1]) # save new file new_config_file_path = posixpath.join(self._temp_kit_shared_dir, "material.config.saved2.toml") mc_utils.save_live_config_to_file(non_standard_path=new_config_file_path) # compare to the original file orig_config_file_path = mc_utils.get_config_file_path() self.assertTrue(_compare_toml_files(new_config_file_path, orig_config_file_path))
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/tests/test_pages.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 carb import omni.usd import omni.kit.app from omni.kit.test.async_unittest import AsyncTestCase from omni.kit import ui_test class PreferencesTestPages(AsyncTestCase): # Before running each test async def setUp(self): omni.kit.window.preferences.show_preferences_window() # After running each test async def tearDown(self): omni.kit.window.preferences.hide_preferences_window() carb.settings.get_settings().set("/app/show_developer_preference_section", False) async def _change_values(self): # toggle checkboxes widgets = ui_test.find_all("Preferences//Frame/**/CheckBox[*]") if widgets: for w in widgets: # don't change audio as it causes exceptions on TC if not "audio" in w.widget.identifier: ov = w.model.get_value_as_bool() w.model.set_value(not ov) await ui_test.human_delay(10) w.model.set_value(ov) async def test_show_pages(self): pages = omni.kit.window.preferences.get_page_list() page_names = [page._title for page in pages] # is list alpha sorted. Don't compare with fixed list as members can change self.assertEqual(page_names, sorted(page_names)) for page in pages: omni.kit.window.preferences.select_page(page) await ui_test.human_delay(10) await self._change_values() async def test_developer_page(self): carb.settings.get_settings().set("/app/show_developer_preference_section", True) await ui_test.human_delay(10) omni.kit.window.preferences.select_page(omni.kit.window.preferences.get_instance()._developer_preferences) await ui_test.human_delay(10) await self._change_values()
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/tests/__init__.py
from .test_preferences import * from .test_stage import * from .test_pages import *
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/tests/test_preferences.py
import os import unittest import carb import omni.kit.test from omni.kit.window.preferences.scripts.preferences_window import ( PreferenceBuilder, PERSISTENT_SETTINGS_PREFIX, ) class TestPreferencesWindow(omni.kit.test.AsyncTestCase): async def setUp(self): pass async def tearDown(self): pass async def test_new_preferences_window(self): called_init = False called_del = False class TestPreferences(PreferenceBuilder): def __init__(self): super().__init__("Test") def build(self): nonlocal called_init called_init = True def __del__(self): super().__del__() nonlocal called_del called_del = True self.assertFalse(called_init) self.assertFalse(called_del) called_init = False called_del = False page = omni.kit.window.preferences.register_page(TestPreferences()) omni.kit.window.preferences.select_page(page) omni.kit.window.preferences.rebuild_pages() prefs = omni.kit.window.preferences.get_instance() self.assertTrue(called_init) self.assertFalse(called_del) called_init = False called_del = False omni.kit.window.preferences.unregister_page(page) del page self.assertFalse(called_init) self.assertTrue(called_del)
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/tests/test_material.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 carb import omni.usd import omni.kit.app from omni.kit.test.async_unittest import AsyncTestCase class PreferencesTestDragDropImport(AsyncTestCase): # Before running each test async def setUp(self): from omni.kit import ui_test carb.settings.get_settings().set("/persistent/app/material/dragDropMaterialPath", "Absolute") omni.kit.window.preferences.show_preferences_window() for page in omni.kit.window.preferences.get_page_list(): if page.get_title() == "Material": omni.kit.window.preferences.select_page(page) await ui_test.human_delay(50) break # After running each test async def tearDown(self): carb.settings.get_settings().set("/persistent/app/material/dragDropMaterialPath", "Absolute") async def test_l1_app_materla_drag_drop_path(self): from omni.kit import ui_test frame = ui_test.find("Preferences//Frame/**/CollapsableFrame[*].identifier=='preferences_builder_Material'") import_combo = frame.find("**/ComboBox[*].identifier=='/persistent/app/material/dragDropMaterialPath'") index_model = import_combo.model.get_item_value_model(None, 0) import_list = import_combo.model.get_item_children(None) for index, item in enumerate(import_list): index_model.set_value(item.model.value) await ui_test.human_delay(50) self.assertEqual(carb.settings.get_settings().get('/persistent/app/material/dragDropMaterialPath'), item.model.as_string)
omniverse-code/kit/exts/omni.kit.window.preferences/omni/kit/window/preferences/tests/test_stage.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 carb import omni.usd import omni.kit.app from omni.kit.test.async_unittest import AsyncTestCase class PreferencesTestDragDropImport(AsyncTestCase): # Before running each test async def setUp(self): from omni.kit import ui_test carb.settings.get_settings().set("/persistent/app/stage/dragDropImport", "reference") omni.kit.window.preferences.show_preferences_window() for page in omni.kit.window.preferences.get_page_list(): if page.get_title() == "Stage": omni.kit.window.preferences.select_page(page) await ui_test.human_delay(50) break # After running each test async def tearDown(self): carb.settings.get_settings().set("/persistent/app/stage/dragDropImport", "reference") async def test_l1_app_stage_drag_drop_import(self): from omni.kit import ui_test frame = ui_test.find("Preferences//Frame/**/CollapsableFrame[*].identifier=='preferences_builder_Import'") import_combo = frame.find("**/ComboBox[*]") import_combo.widget.scroll_here_y(0.5) await ui_test.human_delay(50) index_model = import_combo.model.get_item_value_model(None, 0) import_list = import_combo.model.get_item_children(None) for index, item in enumerate(import_list): index_model.set_value(item.model.value) await ui_test.human_delay(50) self.assertEqual(carb.settings.get_settings().get('/persistent/app/stage/dragDropImport'), item.model.as_string) async def test_default_meters_zero(self): from omni.kit import ui_test # get widgets await ui_test.human_delay(10) frame = ui_test.find("Preferences//Frame/**/CollapsableFrame[*].identifier=='preferences_builder_New Stage'") widget = frame.find("**/FloatSlider[*].identifier=='default_meters_per_unit'") # set to 0.5 widget.model.set_value(0.5) await ui_test.human_delay(10) # set to 0.0 - This is not allowed as minimum if 0.01 widget.model.set_value(0.0) await ui_test.human_delay(10) # verify self.assertAlmostEqual(widget.model.get_value_as_float(), 0.5)
omniverse-code/kit/exts/omni.kit.window.preferences/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.3.8] - 2023-01-12 ### Changed - Fixed `create_setting_widget_combo` to support `setting_is_index` - Pages with same name to be grouped into same page ## [1.3.7] - 2022-09-13 ### Changed - Prevented "Material render context has been changed" message when stage not saved ## [1.3.6] - 2022-08-23 ### Changed - Alpha sorted page names ## [1.3.4] - 2022-07-27 ### Changed - Added "/omnihydra/staticMaterialNetworkTopology" to stage page ## [1.3.3] - 2022-06-22 ### Changed - Added "/persistent/app/material/dragDropMaterialPath" to materials page ## [1.3.2] - 2022-06-08 ### Changed - Updated menus to use actions ## [1.3.1] - 2022-06-06 ### Changed - Removed omni.kit.ui support ## [1.2.2] - 2022-02-22 ### Changed - Added stage import usd method payload/reference - Added identifier to `ui.CollapsableFrame` in `add_frame` ## [1.2.1] - 2022-02-22 ### Changed - Changed implementation on label function ## [1.2.0] - 2022-02-16 ### Added - Allow widgets to display tooltip information ## [1.1.5] - 2021-10-20 ### Changes - Cleans up on shutdown, including releasing handle to FilePickerDialog. ## [1.1.4] - 2021-10-18 ### Changes - Use float type for rateLimitFrequency in preferences. ## [1.1.3] - 2021-07-10 ### Added - Added support for "deep linking" of specific Preference pages from external components. ## [1.1.2] - 2021-05-19 ### Changes - Force "Preferences" to always at the bottom of the edit menu ## [1.1.1] - 2021-05-06 ### Changes - Added feeback when user changes `/app/hydra/material/renderContext` ## [1.1.0] - 2021-03-25 ### Changes - Added `PreferenceBuilder` for new `omni.ui` - Updated existing Pages to use `PreferenceBuilder` - Updated `PreferencePage` it still works, but now depricated ## [1.0.3] - 2021-03-02 ### Changes - Added test ## [1.0.2] - 2020-12-17 ### Changes - Updated menu to use `omni.kit.menu.utils` ## [1.0.1] - 2020-10-17 ### Changes - Added filepicker API - Updated pages to use new filepicker API ## [1.0.0] - 2020-08-13 ### Changes - Converted to extension 2.0
omniverse-code/kit/exts/omni.kit.window.preferences/docs/index.rst
omni.kit.window.preferences ########################### Preferences Window .. toctree:: :maxdepth: 1 CHANGELOG .. automodule:: omni.kit.window.preferences :platform: Windows-x86_64, Linux-x86_64, Linux-aarch64 :members: :undoc-members: :imported-members:
omniverse-code/kit/exts/omni.kit.window.preferences/data/tests/material.config.carb.toml
[tests] paths = [ "C:/some/project/materials", "omniverse://another/project/materials", "/my/own/materials", ] string = "coffee" float = 24.0 bool = true
omniverse-code/kit/exts/omni.kit.window.preferences/data/tests/material.config.toml
[materialGraph] userAllowList = [ "my_materials", "my_maps", ] userBlockList = [ "foo_materials", "bar_maps", ] [options] noStandardPath = false [searchPaths] local = [ "C:/some/project/materials", "omniverse://another/project/materials", "/my/own/materials", ]
omniverse-code/kit/exts/omni.rtx.tests/PACKAGE-LICENSES/omni.rtx.tests-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.rtx.tests/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "0.1.4" # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarily for displaying extension info in UI title = "RTX tests" description="Extension for RTX renderer python tests." # Path (relative to the root) or content of readme markdown file for UI. readme = "docs/README.md" # URL of the extension source repository. repository = "" # One of categories for UI. category = "Rendering" # Keywords for the extension keywords = ["kit", "rtx", "rendering", "tests"] # Location of change log file in target (final) folder of extension, relative to the root. Can also be just a content # of it instead of file path. More info on writing changelog: https://keepachangelog.com/en/1.0.0/ changelog="docs/CHANGELOG.md" [dependencies] "omni.kit.commands" = {} "omni.kit.renderer.capture" = {} "omni.kit.test_helpers_gfx" = {} "omni.kit.window.property" = {} "omni.kit.viewport.utility" = {} "omni.usd" = {} # Temporary until we can move the tetmesh imaging # logic and test cases into the physics repo. "omni.usd.schema.physx" = {} # Main python module this extension provides, it will be publicly available as "import omni.example.hello". [[python.module]] name = "omni.rtx.tests" [[test]] pythonTests.unreliable = [ "*UNSTABLE*" ] args = [ "--/renderer/enabled=rtx", "--/renderer/active=rtx", "--/renderer/multiGpu/enabled=false", "--/renderer/multiGpu/autoEnable=false", "--/app/asyncRendering=false", "--/app/captureFrame/setAlphaTo1=true", "--/omni.kit.plugin/syncUsdLoads=true", "--/rtx-transient/resourcemanager/texturestreaming/async=false", "--/rtx/materialDb/syncLoads=true", "--/rtx/hydra/materialSyncLoads=true", "--/rtx/pathtracing/lightcache/cached/enabled=false", "--/rtx/raytracing/lightcache/spatialCache/enabled=false", "--/rtx/post/aa/op=0", "--/rtx-defaults/post/aa/op=0", "--/app/viewport/forceHideFps=true", "--/persistent/app/viewport/displayOptions=0", "--/persistent/app/primCreation/PrimCreationWithDefaultXformOps=true", "--/app/window/hideUi=true", "--/app/docks/disabled=true", "--/app/window/dpiScaleOverride=1.0", "--/app/window/scaleToMonitor=false", "--/app/window/width=512", "--/app/window/height=512", "--no-window", ] # Aftermath in lightmode (Windows only right now) "filter:platform"."windows-x86_64"."args" = [ "--/renderer/debug/aftermath/enabled=true", "--/renderer/debug/aftermath/useLightMode=true", ] dependencies = [ "omni.usd", "omni.kit.commands", "omni.kit.renderer.capture", "omni.kit.mainwindow", "omni.hydra.rtx", "omni.kit.viewport.utility", "omni.kit.window.viewport", "omni.volume" # Tests use volume rendering ] profiling = false # RTX regression OM-51983 timeout = 700
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_common.py
## Copyright (c) 2021-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.appwindow import omni.kit.app import omni.kit.test import omni.kit.commands import omni.timeline import omni.usd import carb import carb.settings import carb.windowing import inspect import pathlib from omni.kit.test_helpers_gfx.compare_utils import finalize_capture_and_compare, ComparisonMetric from omni.kit.viewport.utility import get_active_viewport_window, next_viewport_frame_async from omni.kit.viewport.utility.tests.capture import capture_viewport_and_wait from pxr import Sdf, Gf, Usd, UsdGeom, UsdLux # This settings should be set before stage opening/creation testSettings = { "/app/window/hideUi": True, "/app/asyncRendering": False, "/app/docks/disabled": True, "/app/window/scaleToMonitor": False, "/app/viewport/forceHideFps": True, "/app/captureFrame/setAlphaTo1": True, "/rtx/materialDb/syncLoads": True, "/omni.kit.plugin/syncUsdLoads": True, "/rtx/hydra/materialSyncLoads": True, "/renderer/multiGpu/autoEnable": False, "/persistent/app/viewport/displayOptions": 0, "/app/viewport/grid/enabled": False, "/app/viewport/show/lights": False, "/persistent/app/primCreation/PrimCreationWithDefaultXformOps": True, "/rtx-transient/resourcemanager/texturestreaming/async": False, "/app/viewport/outline/enabled": True } # Settings that should override settings that was set on stage opening/creation postLoadTestSettings = { "/rtx/post/aa/op": 0, "/rtx/pathtracing/lightcache/cached/enabled": False, "/rtx/raytracing/lightcache/spatialCache/enabled": False, "/rtx/sceneDb/ambientLightIntensity": 1.0, "/rtx/indirectDiffuse/enabled": False, } postLoadSkelTestSettings = { "/rtx/post/aa/op": 0, "/rtx/shadows/enabled": False, "/rtx/reflections/enabled": False, "/rtx/ambientOcclusion/enabled": False, "/rtx/post/tonemap/op": 1, "/renderer/multiGpu/autoEnable": False, } RENDER_WIDTH_SETTING = "/app/renderer/resolution/width" RENDER_HEIGHT_SETTING = "/app/renderer/resolution/height" OUTPUTS_DIR = pathlib.Path(omni.kit.test.get_test_output_path()) EXTENSION_FOLDER_PATH = pathlib.Path(omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__)) GOLDEN_DIR = EXTENSION_FOLDER_PATH.joinpath("data/golden") USD_DIR = EXTENSION_FOLDER_PATH.joinpath("data/usd") VOLUMES_DIR = EXTENSION_FOLDER_PATH.joinpath("data/volumes") async def next_resize_async(): """ Wait for the next event in the resize event stream of IAppWindow::getWindowResizeEventStream. We need it because the window resize event stream is independent of IApp::getUpdateEventStream. Without this function it's possible that resize happens several updates after. It's reproducable on Linux Release build. """ return await omni.appwindow.get_default_app_window().get_window_resize_event_stream().next_event() async def wait_for_update(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 def set_cursor_position(pos): app_window = omni.appwindow.get_default_app_window() windowing = carb.windowing.acquire_windowing_interface() os_window = app_window.get_window() windowing.set_cursor_position(os_window, pos) def set_transform_helper( prim_path, translate=Gf.Vec3d(0, 0, 0), euler=Gf.Vec3d(0, 0, 0), scale=Gf.Vec3d(1, 1, 1), ): rotation = ( Gf.Rotation(Gf.Vec3d.ZAxis(), euler[2]) * Gf.Rotation(Gf.Vec3d.YAxis(), euler[1]) * Gf.Rotation(Gf.Vec3d.XAxis(), euler[0]) ) xform = Gf.Matrix4d().SetScale(scale) * Gf.Matrix4d().SetRotate(rotation) * Gf.Matrix4d().SetTranslate(translate) omni.kit.commands.execute( "TransformPrimCommand", path=prim_path, new_transform_matrix=xform, ) async def setup_viewport_test_window(resolution_x: int, resolution_y: int, position_x: int = 0, position_y: int = 0): from omni.kit.viewport.utility import get_active_viewport_window viewport_window = get_active_viewport_window() if viewport_window: viewport_window.position_x = position_x viewport_window.position_y = position_y viewport_window.width = resolution_x viewport_window.height = resolution_y viewport_window.viewport_api.resolution = (resolution_x, resolution_y) return viewport_window class RtxTest(omni.kit.test.AsyncTestCase): THRESHOLD = 1e-5 WINDOW_SIZE = (640, 480) def __init__(self, tests=()): super().__init__(tests) self._saved_width = None self._saved_height = None self._savedSettings = {} self._failedImages = [] @property def __test_name(self) -> str: """ The full name of the test. It has the name of the module, class and the current test function. We use the stack to get the name of the test function and since it's only called from create_test_window and finalize_test, we get the third member. """ return f"{self.__module__}.{self.__class__.__name__}.{inspect.stack()[2][3]}" async def create_test_area(self, width: int = 256, height: int = 256): """Resize the main window""" app_window = omni.appwindow.get_default_app_window() await omni.usd.get_context().new_stage_async() viewport_window = await setup_viewport_test_window(width, height) self.assertTrue(viewport_window is not None, "No active viewport window found.") # Current main window size current_width = app_window.get_width() current_height = app_window.get_height() # If the main window is already has requested size, do nothing if width == current_width and height == current_height: self._saved_width = None self._saved_height = None else: # Save the size of the main window to be able to restore it at the end of the test self._saved_width = current_width self._saved_height = current_height app_window.resize(width, height) # Wait for getWindowResizeEventStream await next_resize_async() # Wait until the Viewport has delivered some frames await next_viewport_frame_async(viewport_window.viewport_api, 0) async def screenshot_and_diff(self, golden_img_dir: pathlib.Path, output_subdir=None, golden_img_name=None, threshold=THRESHOLD): """ Capture the current frame and compare it with the golden image. Assert if the diff is more than given threshold. This method differs from capture_and_compare in that it lets callers outside omni.rtx.tests capture and compare images in their own directories. The screen captures will be placed in a common place with the rtx.tests output, either in a subdirectory passed in as output_subdir, or in a directory named for the test module. Golden images will be found in the directory passed in as golden_img_dir, this is the only required parameter. """ if not golden_img_dir: self.assertTrue(golden_img_dir, "A valid golden image dir is a required parameter") if not output_subdir: output_subdir = f"{self.__module__}" output_img_dir = OUTPUTS_DIR.joinpath(output_subdir) if not golden_img_name: golden_img_name = f"{self.__test_name}.png" return await self._capture_and_compare(golden_img_name, threshold, output_img_dir, golden_img_dir) async def capture_and_compare(self, img_subdir: pathlib.Path = None, golden_img_name=None, threshold=THRESHOLD, metric: ComparisonMetric = ComparisonMetric.MEAN_ERROR_SQUARED): """ Capture current frame and compare it with the golden image. Assert if the diff is more than given threshold. """ golden_img_dir = GOLDEN_DIR.joinpath(img_subdir) output_img_dir = OUTPUTS_DIR.joinpath(img_subdir) if not golden_img_name: golden_img_name = f"{self.__test_name}.png" return await self._capture_and_compare(golden_img_name, threshold, output_img_dir, golden_img_dir, metric) async def _capture_and_compare(self, golden_img_name, threshold, output_img_dir: pathlib.Path, golden_img_dir: pathlib.Path, metric: ComparisonMetric = ComparisonMetric.MEAN_ERROR_SQUARED): # Capture directly from the Viewport's texture, not from UI swapchain await capture_viewport_and_wait(golden_img_name, output_img_dir) # Do the image comparison now diff = finalize_capture_and_compare(golden_img_name, threshold, output_img_dir, golden_img_dir, metric=metric) if diff != 0: carb.log_warn(f"[{self.__test_name}] the generated image {golden_img_name} has max difference {diff}") if (diff is not None) and diff >= threshold: self._failedImages.append(golden_img_name) return diff def add_dir_light(self): omni.kit.commands.execute( "CreatePrimCommand", prim_path="/World/Light", prim_type="DistantLight", select_new_prim=False, # https://github.com/PixarAnimationStudios/USD/commit/b5d3809c943950cd3ff6be0467858a3297df0bb7 attributes={UsdLux.Tokens.inputsAngle: 1.0, UsdLux.Tokens.inputsIntensity: 3000} if hasattr(UsdLux.Tokens, 'inputsIntensity') else {UsdLux.Tokens.angle: 1.0, UsdLux.Tokens.intensity: 3000}, create_default_xform=True, ) def add_floor(self): floor_path = "/World/Floor" omni.kit.commands.execute( "CreatePrimCommand", prim_path=floor_path, prim_type="Cube", select_new_prim=False, attributes={UsdGeom.Tokens.size: 100}, ) floor_prim = self.ctx.get_stage().GetPrimAtPath(floor_path) floor_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(25, 0.1, 25)) floor_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set(["xformOp:scale"]) def open_usd(self, usdSubpath: pathlib.Path): path = USD_DIR.joinpath(usdSubpath) omni.usd.get_context().open_stage(str(path)) def get_volumes_path(self, volumeSubPath: pathlib.Path): return Sdf.AssetPath(str(VOLUMES_DIR.joinpath(volumeSubPath))) def set_settings(self, newSettings): settingsAPI = carb.settings.get_settings() for s, v in newSettings.items(): if s not in self._savedSettings: # Remember old setting only when it was changed first time self._savedSettings[s] = settingsAPI.get(s) if v is None: # hideUi sometimes is None and it hangs kit v = False settingsAPI.set(s, v) def set_camera(self, cameraPos=None, targetPos=None): from omni.kit.viewport.utility.camera_state import ViewportCameraState camera_state = ViewportCameraState("/OmniverseKit_Persp") camera_state.set_position_world(cameraPos, True) camera_state.set_target_world(targetPos, True) async def setUp_internal(self): self.ctx = omni.usd.get_context() await self.create_test_area(self.WINDOW_SIZE[0], self.WINDOW_SIZE[1]) async def setUp(self): await self.setUp_internal() async def tearDown(self): # Restore main window resolution if it was saved if self._saved_width is not None and self._saved_height is not None: app_window = omni.appwindow.get_default_app_window() app_window.resize(self._saved_width, self._saved_height) # Wait for getWindowResizeEventStream await next_resize_async() self.set_settings(self._savedSettings) self.ctx.close_stage() for imgName in self._failedImages: carb.log_warn(f"[{self.__test_name}] The image {imgName} doesn't match the golden") hasFailed = len(self._failedImages) self._failedImages = [] self.assertEqual(hasFailed, 0)
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_domelight.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.app import omni.kit.test from .test_common import RtxTest, testSettings, postLoadTestSettings, wait_for_update from pxr import UsdGeom, UsdLux, Gf, Sdf class TestRtxDomelight(RtxTest): TEST_PATH = "domelight" DOMELIGHT_PRIM_PATH = "/World/DomeLight" def create_mesh(self): box = UsdGeom.Mesh.Define(self.ctx.get_stage(), "/World/box") box.CreatePointsAttr([(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)]) box.CreateFaceVertexCountsAttr([4, 4, 4, 4, 4, 4]) box.CreateFaceVertexIndicesAttr([0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5]) box.CreateSubdivisionSchemeAttr("none") return box def create_dome_light(self, name=DOMELIGHT_PRIM_PATH): omni.kit.commands.execute( "CreatePrim", prim_path=name, prim_type="DomeLight", select_new_prim=False, # https://github.com/PixarAnimationStudios/USD/commit/b5d3809c943950cd3ff6be0467858a3297df0bb7 attributes={ UsdLux.Tokens.inputsIntensity: 1, UsdLux.Tokens.inputsTextureFormat: UsdLux.Tokens.latlong, UsdLux.Tokens.inputsTextureFile: "daytime.hdr", UsdGeom.Tokens.visibility: UsdGeom.Tokens.inherited, } if hasattr(UsdLux.Tokens, 'inputsIntensity') else { UsdLux.Tokens.intensity: 1, UsdLux.Tokens.textureFormat: UsdLux.Tokens.latlong, UsdLux.Tokens.textureFile: "daytime.hdr", UsdGeom.Tokens.visibility: UsdGeom.Tokens.inherited, }, create_default_xform=True, ) dome_light_prim = self.ctx.get_stage().GetPrimAtPath(name) return dome_light_prim async def setUp(self): await self.setUp_internal() print("RTX DomeLight Tests Setup") self.set_settings(testSettings) super().open_usd("hydra/dome_materials.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) my_settings = { "/rtx/pathtracing/lightcache/cached/enabled": False, "/rtx/raytracing/lightcache/spatialCache/enabled" : False, "/rtx-transient/resourcemanager/genMipsForNormalMaps" : False, "/rtx-transient/resourcemanager/texturestreaming/async" : False, "/rtx-transient/samplerFeedbackTileSize" : 1, "/rtx/post/aa/op" : 0, # 0 = None, 2 = FXAA "/rtx/directLighting/sampledLighting/enabled" : False, "/rtx/reflections/sampledLighting/enabled" : False, # LTC gives consistent lighting # perMaterialSyncLoads: Very important, otherwise the material updates for the domelight # materials (MDLs) are not sync-ed and updated properly. "/rtx/hydra/perMaterialSyncLoads" : True, } self.set_settings(my_settings) async def test_domelight_material_assignment(self): """ Test Domelight material assignment """ looksPath = "/World/Looks/" # Scene Setup self.set_settings({"/rtx/domeLight/baking/resolution": "1024"}) # We could show some minimal mesh but that might create false positives in the lighting. #self.create_mesh() dome_prim = self.create_dome_light() # The loaded domelight had a texture assigned check it: # https://github.com/PixarAnimationStudios/USD/commit/b5d3809c943950cd3ff6be0467858a3297df0bb7 if hasattr(UsdLux.Tokens, 'inputsIntensity'): dome_prim.GetAttribute(UsdLux.Tokens.inputsIntensity).Set(100) else: dome_prim.GetAttribute(UsdLux.Tokens.intensity).Set(100) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_texture_assigned.png") # Bind a material to the domelight # This material shows the emission direction in a color-coded way. omni.kit.commands.execute('BindMaterial', material_path=looksPath + "dome_emission_direction", prim_path=[self.DOMELIGHT_PRIM_PATH], strength=['weakerThanDescendants']) # https://github.com/PixarAnimationStudios/USD/commit/b5d3809c943950cd3ff6be0467858a3297df0bb7 if hasattr(UsdLux.Tokens, 'inputsIntensity'): dome_prim.GetAttribute(UsdLux.Tokens.inputsIntensity).Set(1) else: dome_prim.GetAttribute(UsdLux.Tokens.intensity).Set(1) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "02_emission_direction_mat.png") # Bind a different material to the domelight omni.kit.commands.execute('BindMaterial', material_path='/World/Looks/dome_gridspherejulia', prim_path=['/World/DomeLight'], strength=['weakerThanDescendants']) # https://github.com/PixarAnimationStudios/USD/commit/b5d3809c943950cd3ff6be0467858a3297df0bb7 if hasattr(UsdLux.Tokens, 'inputsIntensity'): dome_prim.GetAttribute(UsdLux.Tokens.inputsIntensity).Set(1) else: dome_prim.GetAttribute(UsdLux.Tokens.intensity).Set(1) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "03_gridspherejulia_mat.png") # Set a different baking resolution self.set_settings({"/rtx/domeLight/baking/resolution": "256"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "04_baking_resolution.png") # Testing domelight per pixel evaluation: # JIRA OM-49492 self.set_settings({ "/rtx/pathtracing/domeLight/primaryRaysEvaluateDomelightMdlDirectly" : True, "/rtx/rendermode" : 'PathTracing', "/rtx/pathtracing/spp" : 1, "/rtx/pathtracing/totalSpp" : 1, }) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "04a_mdl_direct_evaluation.png") # Create another domelight (JIRA OM-19501) # The visible domelight can be any domelight if multiple domelights are in the scene. # Internally it depends which one is in the domelight buffer[0]. # Therefore, we need to explicitly disable the first one to see the result of the second. self.set_settings({ "/rtx/rendermode" : 'RaytracedLighting', }) dome2_path = "/World/DomeLight_2" dome_prim2 = self.create_dome_light(dome2_path) # https://github.com/PixarAnimationStudios/USD/commit/b5d3809c943950cd3ff6be0467858a3297df0bb7 if hasattr(UsdLux.Tokens, 'inputsIntensity'): dome_prim2.GetAttribute(UsdLux.Tokens.inputsIntensity).Set(100) else: dome_prim2.GetAttribute(UsdLux.Tokens.intensity).Set(100) omni.kit.commands.execute('ChangeProperty', prop_path=Sdf.Path('/World/DomeLight_2.xformOp:rotateXYZ'), value=Gf.Vec3d(270.0, -90.0, 0.0), prev=Gf.Vec3d(270.0, 0.0, 0.0)) # Disable the first dome light dome_prim.GetAttribute(UsdGeom.Tokens.visibility).Set(UsdGeom.Tokens.invisible) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "05_second_domelight.png")
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_material_distilling_toggle.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.app import omni.kit.commands import omni.kit.undo import omni.kit.test from .test_common import RtxTest, testSettings, postLoadTestSettings, wait_for_update class TestMaterialDistillingToggle(RtxTest): """ rtx test running renderer with material distilling toggle on to ensure renderer correctly loads in neuraylib plugins, compiles shader cache, inserts preprocessor macro (DISTILLED_MTL_MODE) """ async def setUp(self): await super().setUp() self.set_settings(testSettings) self.open_usd("material_distilling.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) async def test_material_distilling_toggle(self): await wait_for_update() await self.capture_and_compare("material_distilling_toggle", "material_distilling_toggle.png", 1e-3)
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_hydra_skel.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. ## #TODO 02: omnihydra does not support dynamically switch animationsource on skelroot prim bindingAPI (should be a repopulate in this case) #TODO 03: omnihydra does not support joints/blendshapes change in skelanimation prim #TODO 04: omnihydra does not support blendshapes (target name) change in skelanimation prim (not in test) #TODO 05 when skelanimation become invalid, skinning result should retrive restTransform #TODO 06: after added time ranged control, the render result does not work correct for the specific animation source import omni.kit.app import omni.kit.commands import omni.kit.undo import omni.kit.test import omni.timeline import carb.settings from .test_hydra_common import RtxHydraTest from .test_common import testSettings, postLoadSkelTestSettings, set_transform_helper, wait_for_update from pxr import Gf, Sdf, Usd, UsdGeom, UsdSkel, UsdShade def _update_animation(animation : UsdSkel.Animation, animation_static : UsdSkel.Animation, timecode : Usd.TimeCode): trans = animation.GetTranslationsAttr().Get(timecode) rots = animation.GetRotationsAttr().Get(timecode) scales = animation.GetScalesAttr().Get(timecode) bsWeights = animation.GetBlendShapeWeightsAttr().Get(timecode) animation_static.GetTranslationsAttr().Set(trans) animation_static.GetRotationsAttr().Set(rots) animation_static.GetScalesAttr().Set(scales) animation_static.GetBlendShapeWeightsAttr().Set(bsWeights) class TestRtxHydraSkel(RtxHydraTest): TEST_PATH = "hydra/skel" async def setUp(self): await super().setUp() timeline = omni.timeline.get_timeline_interface() timeline.set_fast_mode(True) await omni.kit.app.get_app().next_update_async() async def test_01_skel_anim(self): """ Test hydra skel - skel anim """ self.set_settings(testSettings) super().open_usd("hydra/skel/skelcylinder.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadSkelTestSettings) stage = self.ctx.get_stage() skelroot_path = "/Root/group1" skelroot_prim = stage.GetPrimAtPath(skelroot_path) skelroot = UsdSkel.Root(skelroot_prim) skeleton_path = "/Root/group1/joint1" skeleton_prim = stage.GetPrimAtPath(skeleton_path) skeleton_bindingAPI = UsdSkel.BindingAPI(skeleton_prim) skeleton = UsdSkel.Skeleton(skeleton_prim) animation_static_path = "/Root/group1/joint1/Animation_Static" animation_static_prim = stage.GetPrimAtPath(animation_static_path) animation_static = UsdSkel.Animation(animation_static_prim) animation_path = "/Root/group1/joint1/Animation" animation_prim = stage.GetPrimAtPath(animation_path) animation = UsdSkel.Animation(animation_prim) animation_flat_path = "/Root/group1/joint1/Animation_Flat" animation_flat_prim = stage.GetPrimAtPath(animation_flat_path) aniamtion_flat = UsdSkel.Animation(animation_flat_prim) animation_outside_path = "/ZAnimation" animation_outside_prim = stage.GetPrimAtPath(animation_outside_path) aniamtion_outside = UsdSkel.Animation(animation_outside_prim) session_layer = stage.GetSessionLayer() timeline = omni.timeline.get_timeline_interface() timeline.play() timeline.set_auto_update(False) timeline.set_current_time(0.0) await omni.kit.app.get_app().next_update_async() # pure skeleton test await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_0_skeleton_0.png") #Test animation skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_path]) self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_prim) timeline.set_current_time(0.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_1_animation_0.png") timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_1_animation_1.png") timeline.set_current_time(1.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_1_animation_2.png") skeleton_bindingAPI.GetAnimationSourceRel().ClearTargets(False) self.assertTrue(not skeleton_bindingAPI.GetInheritedAnimationSource()) timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_1_animation_3.png") #Test animation in session layer (resync) with Usd.EditContext(stage, session_layer): skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_path]) self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_prim) timeline.set_current_time(0.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_1_animation_sessionlayer_0.png") timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_1_animation_sessionlayer_1.png") timeline.set_current_time(1.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_1_animation_sessionlayer_2.png") stage.RemovePrim(skeleton_path) self.assertTrue(not skeleton_bindingAPI.GetInheritedAnimationSource()) timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_1_animation_sessionlayer_3.png") await wait_for_update() self.assertTrue(not skeleton_bindingAPI.GetInheritedAnimationSource()) skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_path]) self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_prim) #Test animation switch skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_flat_path]) self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_flat_prim) timeline.set_current_time(0.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_2_animation_flat_0.png") timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_2_animation_flat_1.png") skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_path]) self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_prim) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_2_animation_flat_2.png") #Test animation switch in session layer with Usd.EditContext(stage, session_layer): skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_flat_path]) timeline.set_current_time(0.0) self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_flat_prim) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_2_animation_flat_sessionlayer_0.png") timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_2_animation_flat_sessionlayer_1.png") #TODO 06: after added time ranged control, the render result does not work correct for the specific animation source stage.RemovePrim(skeleton_path) self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_prim) await wait_for_update() #await self.capture_and_compare(self.TEST_PATH, "01_skelanim_2_animation_flat_sessionlayer_2.png") #Test animation switch to outside root animation await wait_for_update() self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_prim) skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_outside_path]) await wait_for_update() self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_outside_prim) timeline.set_current_time(0.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_3_animation_outside_0.png") timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_3_animation_outside_1.png") skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_path]) await wait_for_update() self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_prim) #Test animation switch to outside root animation in session layer with Usd.EditContext(stage, session_layer): skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_outside_path]) await wait_for_update() self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_outside_prim) timeline.set_current_time(0.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_3_animation_outside_sessionlayer_0.png") timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "01_skelanim_3_animation_outside_sessionlayer_1.png") stage.RemovePrim(skeleton_path) ##TODO 02: omnihydra does not support dynamically switch animationsource on skelroot prim bindingAPI (should be a repopulate in this case) ##Test animation switch to at skelroot prim #skeleton_bindingAPI.GetAnimationSourceRel().ClearTargets(False) #await wait_for_update() #self.assertTrue(not skeleton_bindingAPI.GetInheritedAnimationSource()) #skelroot_bindingAPI = UsdSkel.BindingAPI.Apply(skelroot_prim) #skelroot_bindingAPI.GetAnimationSourceRel().SetTargets([animation_flat_path]) #await wait_for_update() #self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_flat_prim) #timeline.set_current_time(0.0) #await wait_for_update() #await self.capture_and_compare(self.TEST_PATH, "01_skelanim_4_animation_binding_on_root_0.png") #timeline.set_current_time(0.5) #await wait_for_update() #await self.capture_and_compare(self.TEST_PATH, "01_skelanim_4_animation_binding_on_root_1.png") #skelroot_bindingAPI.GetAnimationSourceRel().ClearTargets(False) #self.assertTrue(not skelroot_bindingAPI.GetInheritedAnimationSource()) ##Test animation switch to outside root animation in session layer #with Usd.EditContext(stage, session_layer): # skelroot_bindingAPI.GetAnimationSourceRel().SetTargets([animation_flat_path]) # await wait_for_update() # self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_flat_prim) # await wait_for_update() # await self.capture_and_compare(self.TEST_PATH, "01_skelanim_4_animation_binding_on_root_sessionlayer_0.png") # timeline.set_current_time(0.5) # await wait_for_update() # await self.capture_and_compare(self.TEST_PATH, "01_skelanim_4_animation_binding_on_root_sessionlayer_1.png") # stage.RemovePrim(skeleton_path) timeline.set_auto_update(True) timeline.stop() async def test_02_skel_anim_update(self): """ Test hydra skel - skel animation update """ self.set_settings(testSettings) super().open_usd("hydra/skel/skelcylinder.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadSkelTestSettings) stage = self.ctx.get_stage() skeleton_path = "/Root/group1/joint1" skeleton_prim = stage.GetPrimAtPath(skeleton_path) skeleton_bindingAPI = UsdSkel.BindingAPI(skeleton_prim) skeleton = UsdSkel.Skeleton(skeleton_prim) animation_static_path = "/Root/group1/joint1/Animation_Static" animation_static_prim = stage.GetPrimAtPath(animation_static_path) animation_static = UsdSkel.Animation(animation_static_prim) animation_path = "/Root/group1/joint1/Animation" animation_prim = stage.GetPrimAtPath(animation_path) animation = UsdSkel.Animation(animation_prim) animation_flat_path = "/Root/group1/joint1/Animation_Flat" animation_flat_prim = stage.GetPrimAtPath(animation_flat_path) aniamtion_flat = UsdSkel.Animation(animation_flat_prim) animation_outside_path = "/ZAnimation" animation_outside_prim = stage.GetPrimAtPath(animation_outside_path) aniamtion_outside = UsdSkel.Animation(animation_outside_prim) session_layer = stage.GetSessionLayer() timeline = omni.timeline.get_timeline_interface() #Test SRT/bsweights update skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_static_path]) self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_static_prim) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_0_animation_update_0.png") timecode = Usd.TimeCode(0.5 * stage.GetTimeCodesPerSecond()) with Sdf.ChangeBlock(): _update_animation(animation, animation_static, timecode) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_0_animation_update_1.png") #non play test timeline.play() timeline.set_auto_update(False) timeline.set_current_time(1.0) await omni.kit.app.get_app().next_update_async() timecode = Usd.TimeCode(timeline.get_current_time() * stage.GetTimeCodesPerSecond()) with Sdf.ChangeBlock(): _update_animation(animation, animation_static, timecode) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_0_animation_update_2.png") # play test timeline.set_auto_update(True) timeline.stop() timeline.set_current_time(0.0) await omni.kit.app.get_app().next_update_async() with Sdf.ChangeBlock(): _update_animation(animation, animation_static, Usd.TimeCode.Default()) #Test SRT/bsweights update in session layer with Usd.EditContext(stage, session_layer): self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_static_prim) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_0_animation_update_sessionlayer_0.png") timecode = Usd.TimeCode(0.5 * stage.GetTimeCodesPerSecond()) with Sdf.ChangeBlock(): _update_animation(animation, animation_static, timecode) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_0_animation_update_sessionlayer_1.png") #non play test stage.RemovePrim(animation_static_path) timeline.set_current_time(1.0) await omni.kit.app.get_app().next_update_async() timecode = Usd.TimeCode(timeline.get_current_time() * stage.GetTimeCodesPerSecond()) with Sdf.ChangeBlock(): _update_animation(animation, animation_static, timecode) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_2_animation_update_sessionlayer_2.png") # play test timeline.set_auto_update(True) timeline.stop() await omni.kit.app.get_app().next_update_async() stage.RemovePrim(animation_static_path) ###Test joint change ##TODO 03: omnihydra does not support joints/blendshapes change in skelanimation prim ##TODO 04: omnihydra does not support blendshapes (target name) change in skelanimation prim (not in test) #with Sdf.ChangeBlock(): #_update_animation(animation, animation_static, Usd.TimeCode.Default()) #await wait_for_update() #await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_3_joint_update_0.png") #timecode = Usd.TimeCode(1.0 * stage.GetTimeCodesPerSecond()) #trans = animation.GetTranslationsAttr().Get(timecode) #rots = animation.GetRotationsAttr().Get(timecode) #scales = animation.GetScalesAttr().Get(timecode) #joints = animation.GetJointsAttr().Get() #new_joints = joints.__getitem__(slice(0,3,1)) #new_trans = trans.__getitem__(slice(0,3,1)) #new_rots = rots.__getitem__(slice(0,3,1)) #new_scales = scales.__getitem__(slice(0,3,1)) #animation_static.GetJointsAttr().Set(new_joints) #animation_static.GetTranslationsAttr().Set(new_trans) #animation_static.GetRotationsAttr().Set(new_rots) #animation_static.GetScalesAttr().Set(new_scales) #await wait_for_update() #await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_3_joint_update_1.png") #new_joints = joints.__getitem__(slice(0,2,1)) #new_trans = trans.__getitem__(slice(0,2,1)) #new_rots = rots.__getitem__(slice(0,2,1)) #new_scales = scales.__getitem__(slice(0,2,1)) #animation_static.GetJointsAttr().Set(new_joints) #animation_static.GetTranslationsAttr().Set(new_trans) #animation_static.GetRotationsAttr().Set(new_rots) #animation_static.GetScalesAttr().Set(new_scales) #await wait_for_update() #await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_3_joint_update_2.png") #animation_static.GetJointsAttr().Set(joints) #animation_static.GetTranslationsAttr().Set(trans) #animation_static.GetRotationsAttr().Set(rots) #animation_static.GetScalesAttr().Set(scales) #await wait_for_update() ###Test joint change in session layer #animation_static.GetJointsAttr().Set(joints) #with Sdf.ChangeBlock(): #_update_animation(animation, animation_static, Usd.TimeCode.Default()) #await wait_for_update() #await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_3_joint_update_sessionlayer_0.png") #with Usd.EditContext(stage, session_layer): # timecode = Usd.TimeCode(1.0 * stage.GetTimeCodesPerSecond()) # trans = animation.GetTranslationsAttr().Get(timecode) # rots = animation.GetRotationsAttr().Get(timecode) # scales = animation.GetScalesAttr().Get(timecode) # joints = animation.GetJointsAttr().Get() # new_joints = joints.__getitem__(slice(0,3,1)) # new_trans = trans.__getitem__(slice(0,3,1)) # new_rots = rots.__getitem__(slice(0,3,1)) # new_scales = scales.__getitem__(slice(0,3,1)) # animation_static.GetJointsAttr().Set(new_joints) # animation_static.GetTranslationsAttr().Set(new_trans) # animation_static.GetRotationsAttr().Set(new_rots) # animation_static.GetScalesAttr().Set(new_scales) # await wait_for_update() # await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_3_joint_update_sessionlayer_1.png") # new_joints = joints.__getitem__(slice(0,2,1)) # new_trans = trans.__getitem__(slice(0,2,1)) # new_rots = rots.__getitem__(slice(0,2,1)) # new_scales = scales.__getitem__(slice(0,2,1)) # animation_static.GetJointsAttr().Set(new_joints) # animation_static.GetTranslationsAttr().Set(new_trans) # animation_static.GetRotationsAttr().Set(new_rots) # animation_static.GetScalesAttr().Set(new_scales) # await wait_for_update() # await self.capture_and_compare(self.TEST_PATH, "02_skelanim_update_3_joint_update_sessionlayer_2.png") # animation_static.GetJointsAttr().Set(joints) # animation_static.GetTranslationsAttr().Set(trans) # animation_static.GetRotationsAttr().Set(rots) # animation_static.GetScalesAttr().Set(scales) # await wait_for_update() # stage.RemovePrim(animation_static_path) async def test_03_skel_anim_create_delete(self): """ Test hydra skel - skel animation update """ self.set_settings(testSettings) super().open_usd("hydra/skel/skelcylinder.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadSkelTestSettings) stage = self.ctx.get_stage() skeleton_path = "/Root/group1/joint1" skeleton_prim = stage.GetPrimAtPath(skeleton_path) skeleton_bindingAPI = UsdSkel.BindingAPI(skeleton_prim) skeleton = UsdSkel.Skeleton(skeleton_prim) animation_static_path = "/Root/group1/joint1/Animation_Static" animation_static_prim = stage.GetPrimAtPath(animation_static_path) animation_static = UsdSkel.Animation(animation_static_prim) animation_path = "/Root/group1/joint1/Animation" animation_prim = stage.GetPrimAtPath(animation_path) animation = UsdSkel.Animation(animation_prim) animation_flat_path = "/Root/group1/joint1/Animation_Flat" animation_flat_prim = stage.GetPrimAtPath(animation_flat_path) aniamtion_flat = UsdSkel.Animation(animation_flat_prim) animation_outside_path = "/ZAnimation" animation_outside_prim = stage.GetPrimAtPath(animation_outside_path) aniamtion_outside = UsdSkel.Animation(animation_outside_prim) session_layer = stage.GetSessionLayer() timeline = omni.timeline.get_timeline_interface() timeline.set_current_time(0.0) await omni.kit.app.get_app().next_update_async() timecode = Usd.TimeCode(1.0 * stage.GetTimeCodesPerSecond()) trans = animation.GetTranslationsAttr().Get(timecode) rots = animation.GetRotationsAttr().Get(timecode) scales = animation.GetScalesAttr().Get(timecode) joints = animation.GetJointsAttr().Get() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "03_skelanim_create_delete_0_animation_create_0.png") animation_new_path = "/ZAnimation_New" animation_new = UsdSkel.Animation.Define(stage, animation_new_path) animation_new_prim = animation_new.GetPrim() await wait_for_update() self.assertTrue(animation_new_prim) with Sdf.ChangeBlock(): animation_new.GetJointsAttr().Set(joints) animation_new.GetTranslationsAttr().Set(trans) animation_new.GetRotationsAttr().Set(rots) animation_new.GetScalesAttr().Set(scales) skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_new_path]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "03_skelanim_create_delete_0_animation_create_1.png") stage.RemovePrim(animation_new_path) skeleton_bindingAPI.GetAnimationSourceRel().ClearTargets(False) #This line should supposed not to be needed #TODO 05 when skelanimation become invalid, skinning result should retrive restTransform await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "03_skelanim_create_delete_1_animation_delete_0.png") with Usd.EditContext(stage, session_layer): animation_new = UsdSkel.Animation.Define(stage, animation_new_path) animation_new_prim = animation_new.GetPrim() await wait_for_update() self.assertTrue(animation_new_prim) with Sdf.ChangeBlock(): animation_new.GetJointsAttr().Set(joints) animation_new.GetTranslationsAttr().Set(trans) animation_new.GetRotationsAttr().Set(rots) animation_new.GetScalesAttr().Set(scales) skeleton_bindingAPI.GetAnimationSourceRel().SetTargets([animation_new_path]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "03_skelanim_create_delete_2_animation_create_sessionlayer_0.png") with Sdf.ChangeBlock(): stage.RemovePrim(animation_new_path) skeleton_bindingAPI.GetAnimationSourceRel().ClearTargets(False) #This line should supposed not to be needed #TODO 05 when skelanimation become invalid, skinning result should retrive restTransform skel_root_prim = stage.GetPrimAtPath("/Root/group1") skel_root = UsdSkel.Root(skel_root_prim) visible = skel_root.GetVisibilityAttr().Set("invisible") await wait_for_update() # test repopulate crash due to resync by update visibility in skelroot. skel_root.GetVisibilityAttr().Set("inherited") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "03_skelanim_create_delete_3_animation_delete_with_root_recync_sessionlayer_0.png") #This test is temporarily since we cannot dynamically update animation source on skelroot's bindAPI in omnihydra yet. async def test_04_skel_anim_on_skel_root(self): """ Test hydra skel - skel anim on root """ self.set_settings(testSettings) super().open_usd("hydra/skel/skelcylinder_root.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadSkelTestSettings) stage = self.ctx.get_stage() skelroot_path = "/Root/group1" skelroot_prim = stage.GetPrimAtPath(skelroot_path) skelroot = UsdSkel.Root(skelroot_prim) skelroot_bindingAPI = UsdSkel.BindingAPI(skelroot_prim) skeleton_path = "/Root/group1/joint1" skeleton_prim = stage.GetPrimAtPath(skeleton_path) skeleton_bindingAPI = UsdSkel.BindingAPI(skeleton_prim) skeleton = UsdSkel.Skeleton(skeleton_prim) animation_static_path = "/Root/group1/joint1/Animation_Static" animation_static_prim = stage.GetPrimAtPath(animation_static_path) animation_static = UsdSkel.Animation(animation_static_prim) animation_path = "/Root/group1/joint1/Animation" animation_prim = stage.GetPrimAtPath(animation_path) animation = UsdSkel.Animation(animation_prim) animation_flat_path = "/Root/group1/joint1/Animation_Flat" animation_flat_prim = stage.GetPrimAtPath(animation_flat_path) aniamtion_flat = UsdSkel.Animation(animation_flat_prim) animation_outside_path = "/ZAnimation" animation_outside_prim = stage.GetPrimAtPath(animation_outside_path) aniamtion_outside = UsdSkel.Animation(animation_outside_prim) session_layer = stage.GetSessionLayer() timeline = omni.timeline.get_timeline_interface() timeline.play() timeline.set_auto_update(False) timeline.set_current_time(0.0) await omni.kit.app.get_app().next_update_async() # pure skeleton test await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "04_skelanim_on_root_0_skeleton_0.png") #Test animation self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_prim) timeline.set_current_time(0.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "04_skelanim_on_root_1_animation_0.png") timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "04_skelanim_on_root_1_animation_1.png") timeline.set_current_time(1.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "04_skelanim_on_root_1_animation_2.png") timeline.set_auto_update(True) timeline.stop() await omni.kit.app.get_app().next_update_async() async def test_05_skel_anim_update_restTransforms(self): """ Test hydra skel - update restTransforms """ self.set_settings(testSettings) super().open_usd("hydra/skel/skelcylinder.usda") # self.set_settings(postLoadSkelTestSettings) await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadSkelTestSettings) stage = self.ctx.get_stage() skelroot_path = "/Root/group1" skelroot_prim = stage.GetPrimAtPath(skelroot_path) skelroot = UsdSkel.Root(skelroot_prim) skelroot_bindingAPI = UsdSkel.BindingAPI(skelroot_prim) skeleton_path = "/Root/group1/joint1" skeleton_prim = stage.GetPrimAtPath(skeleton_path) skeleton_bindingAPI = UsdSkel.BindingAPI(skeleton_prim) skeleton = UsdSkel.Skeleton(skeleton_prim) animation_static_path = "/Root/group1/joint1/Animation_Static" animation_static_prim = stage.GetPrimAtPath(animation_static_path) animation_static = UsdSkel.Animation(animation_static_prim) animation_path = "/Root/group1/joint1/Animation" animation_prim = stage.GetPrimAtPath(animation_path) animation = UsdSkel.Animation(animation_prim) animation_flat_path = "/Root/group1/joint1/Animation_Flat" animation_flat_prim = stage.GetPrimAtPath(animation_flat_path) aniamtion_flat = UsdSkel.Animation(animation_flat_prim) animation_outside_path = "/ZAnimation" animation_outside_prim = stage.GetPrimAtPath(animation_outside_path) aniamtion_outside = UsdSkel.Animation(animation_outside_prim) session_layer = stage.GetSessionLayer() timeline = omni.timeline.get_timeline_interface() timeline.play() timeline.set_auto_update(False) timeline.set_current_time(0.0) await omni.kit.app.get_app().next_update_async() # pure skeleton test await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "05_skelanim_update_restTransforms_0_skeleton_0.png") #Test animation self.assertTrue(not skeleton_bindingAPI.GetInheritedAnimationSource()) timecode = Usd.TimeCode.Default() poses = animation.GetTransforms(timecode) skeleton.GetRestTransformsAttr().Set(poses) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "05_skelanim_update_restTransforms_1_animation_0.png") timecode = Usd.TimeCode(0.5 * stage.GetTimeCodesPerSecond()) poses = animation.GetTransforms(timecode) skeleton.GetRestTransformsAttr().Set(poses) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "05_skelanim_update_restTransforms_1_animation_1.png") timecode = Usd.TimeCode(1.0 * stage.GetTimeCodesPerSecond()) poses = animation.GetTransforms(timecode) skeleton.GetRestTransformsAttr().Set(poses) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "05_skelanim_update_restTransforms_1_animation_2.png") with Usd.EditContext(stage, session_layer): timecode = Usd.TimeCode.Default() poses = animation.GetTransforms(timecode) skeleton.GetRestTransformsAttr().Set(poses) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "05_skelanim_update_restTransforms_1_animation_session_layer_0.png") timecode = Usd.TimeCode(0.5 * stage.GetTimeCodesPerSecond()) poses = animation.GetTransforms(timecode) skeleton.GetRestTransformsAttr().Set(poses) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "05_skelanim_update_restTransforms_1_animation_session_layer_1.png") timecode = Usd.TimeCode(1.0 * stage.GetTimeCodesPerSecond()) poses = animation.GetTransforms(timecode) skeleton.GetRestTransformsAttr().Set(poses) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "05_skelanim_update_restTransforms_1_animation_session_layer_2.png") timeline.set_auto_update(True) timeline.stop() await omni.kit.app.get_app().next_update_async() async def test_06_skel_anim_reference(self): """ Test hydra skel - skel anim reference """ self.set_settings(testSettings) super().open_usd("hydra/skel/skelcylinder_ref.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadSkelTestSettings) stage = self.ctx.get_stage() skelroot_path = "/Root/group1" skelroot_prim = stage.GetPrimAtPath(skelroot_path) skelroot = UsdSkel.Root(skelroot_prim) skelroot_bindingAPI = UsdSkel.BindingAPI(skelroot_prim) skeleton_path = "/Root/group1/joint1" skeleton_prim = stage.GetPrimAtPath(skeleton_path) skeleton_bindingAPI = UsdSkel.BindingAPI(skeleton_prim) skeleton = UsdSkel.Skeleton(skeleton_prim) animation_static_path = "/Root/group1/joint1/Animation_Static" animation_static_prim = stage.GetPrimAtPath(animation_static_path) animation_static = UsdSkel.Animation(animation_static_prim) animation_path = "/Root/group1/joint1/Animation" animation_prim = stage.GetPrimAtPath(animation_path) animation = UsdSkel.Animation(animation_prim) animation_flat_path = "/Root/group1/joint1/Animation_Flat" animation_flat_prim = stage.GetPrimAtPath(animation_flat_path) aniamtion_flat = UsdSkel.Animation(animation_flat_prim) animation_outside_path = "/ZAnimation" animation_outside_prim = stage.GetPrimAtPath(animation_outside_path) aniamtion_outside = UsdSkel.Animation(animation_outside_prim) session_layer = stage.GetSessionLayer() timeline = omni.timeline.get_timeline_interface() timeline.play() timeline.set_auto_update(False) timeline.set_current_time(0.0) await omni.kit.app.get_app().next_update_async() # pure skeleton tests await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "06_skelanim_reference_0_skeleton_0.png") # Test animation self.assertTrue(skeleton_bindingAPI.GetInheritedAnimationSource() == animation_prim) refs = animation_prim.GetReferences() refs.SetReferences([Sdf.Reference(assetPath="./assets/skelcylinder_anim_flat.usda")]) timeline.set_current_time(0.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "06_skelanim_reference_1_animation_reference_0.png") timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "06_skelanim_reference_1_animation_reference_1.png") timeline.set_current_time(1.0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "06_skelanim_reference_1_animation_reference_2.png") timeline.set_auto_update(True) timeline.stop() async def test_07_skel_mesh_material_switch(self): """ Test hydra skel - skel anim reference """ self.set_settings(testSettings) super().open_usd("hydra/skel/skelcylinder_material_test.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadSkelTestSettings) stage = self.ctx.get_stage() skelmesh1_path = "/Root/BLENDWEIGHT_group1/BLENDWEIGHT_pCylinder1" skelmesh1_prim = stage.GetPrimAtPath(skelmesh1_path) skelmesh2_path = "/Root/BLENDWEIGHT_group1/BLENDWEIGHT_pCylinder2" skelmesh2_prim = stage.GetPrimAtPath(skelmesh2_path) print(skelmesh2_prim) material_red_path = "/Root/Looks/PreviewSurface_Red" material_blue_path = "/Root/Looks/PreviewSurface_Blue" session_layer = stage.GetSessionLayer() timeline = omni.timeline.get_timeline_interface() timeline.play() timeline.set_auto_update(False) timeline.set_current_time(0.0) await wait_for_update() # pure skeleton tests timeline.set_current_time(0.1) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "07_skel_mesh_material_switch_0.png") # Test animations omni.kit.commands.execute( "BindMaterial", prim_path=Sdf.Path(skelmesh1_path), material_path=Sdf.Path(material_blue_path), strength=UsdShade.Tokens.weakerThanDescendants, ) timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "07_skel_mesh_material_switch_1.png") omni.kit.commands.execute( "BindMaterial", prim_path=Sdf.Path(skelmesh2_path), material_path=Sdf.Path(material_red_path), strength=UsdShade.Tokens.weakerThanDescendants, ) timeline.set_current_time(0.6) await wait_for_update() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "07_skel_mesh_material_switch_2.png") imageable = UsdGeom.Imageable(skelmesh2_prim) imageable.MakeInvisible() timeline.set_current_time(0.7) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "07_skel_mesh_material_switch_3.png") timeline.set_auto_update(True) timeline.stop() async def test_08_skel_mesh_animation_rename(self): """ Test hydra skel - skel anim reference """ self.set_settings(testSettings) super().open_usd("hydra/skel/skelcylinder_material_test.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadSkelTestSettings) stage = self.ctx.get_stage() skelmesh1_path = "/Root/BLENDWEIGHT_group1/BLENDWEIGHT_pCylinder1" skelmesh1_prim = stage.GetPrimAtPath(skelmesh1_path) skelmesh2_path = "/Root/BLENDWEIGHT_group1/BLENDWEIGHT_pCylinder2" skelmesh2_prim = stage.GetPrimAtPath(skelmesh2_path) animation_path = "/Root/BLENDWEIGHT_group1/BLENDWEIGHT_joint1/Animation" animation_prim = stage.GetPrimAtPath(animation_path) new_animation_path = "/Root/BLENDWEIGHT_group1/BLENDWEIGHT_joint1/Animation2" session_layer = stage.GetSessionLayer() timeline = omni.timeline.get_timeline_interface() timeline.play() timeline.set_auto_update(False) timeline.set_current_time(0.0) await wait_for_update() # pure skeleton tests timeline.set_current_time(0.5) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "08_skel_mesh_animation_rename_0.png") old_prim_name = Sdf.Path(animation_path) move_dict = {old_prim_name: new_animation_path} omni.kit.commands.execute("MovePrims", paths_to_move=move_dict, destructive=False) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "08_skel_mesh_animation_rename_1.png") omni.kit.undo.undo() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "08_skel_mesh_animation_rename_2.png") # Test animations omni.kit.commands.execute( "DeletePrims", paths=[Sdf.Path(animation_path)] ) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "08_skel_mesh_animation_rename_3.png") omni.kit.undo.undo() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "08_skel_mesh_animation_rename_4.png") timeline.set_auto_update(True) timeline.stop()
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_hydra_light_collections.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 omni.kit.commands import omni.kit.undo from .test_hydra_common import RtxHydraTest from .test_common import wait_for_update class TestRtxHydraLightCollections(RtxHydraTest): """ To run: from omni.kit.test import unittests from omni.rtx.tests import test_hydra_light_collections unittests.run_tests_in_modules([test_hydra_light_collections]) """ TEST_PATH = "hydra/lightCollections" LIGHT_PATH = "/World/defaultLight" LIGHT_VIS_PATH = LIGHT_PATH + ".visibility" LIGHT_SHADOW_EXCLUDE_PATH = LIGHT_PATH + ".collection:shadowLink:excludes" LIGHT_LINK_INCLUDE_PATH = LIGHT_PATH + ".collection:lightLink:includeRoot" CUBE_PATH = "/World/Cube" SHADOW_LINK_INCLUDE_PATH = LIGHT_PATH + ".collection:shadowLink:includeRoot" async def test_UNSTABLE_light_collection_undo(self): """ Regression test for usdImaging refresh issue when undoing light deletion """ self.open_usd("hydra/LightLink.usda") await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionWorking.png", 1e-4) omni.kit.commands.execute("DeletePrims", paths=[self.LIGHT_PATH]) await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionBlack.png", 1e-4) omni.kit.undo.undo() await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionWorking.png", 1e-4) # OM-56283, CI-1655 - Sporadic crash/unreliable image output async def test_UNSTABLE_light_collection_toggle_crash_UNSTABLE(self): """ Regression test for crash in Light Collection toggle """ self.open_usd("hydra/LightLink.usda") await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionWorking.png", 1e-3) omni.kit.commands.execute("ChangeProperty", prop_path=self.LIGHT_LINK_INCLUDE_PATH, value=True, prev=False) await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionInactive.png", 1e-3) omni.kit.commands.execute("ChangeProperty", prop_path=self.SHADOW_LINK_INCLUDE_PATH, value=False, prev=True) await wait_for_update(wait_frames=1) omni.kit.commands.execute("ChangeProperty", prop_path=self.SHADOW_LINK_INCLUDE_PATH, value=True, prev=False) await wait_for_update(wait_frames=1) omni.kit.commands.execute("ChangeProperty", prop_path=self.LIGHT_LINK_INCLUDE_PATH, value=False, prev=True) await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionWorking.png", 1e-3) async def test_UNSTABLE_light_collection_lightvistoggle(self): """ Regression test for refresh issue when toggling light visibility """ self.open_usd("hydra/LightLink.usda") await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionWorking.png", 1e-3) omni.kit.commands.execute("ChangeProperty", prop_path=self.LIGHT_VIS_PATH, value="invisible", prev="inherited") await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionBlack.png", 1e-3) omni.kit.commands.execute("ChangeProperty", prop_path=self.LIGHT_VIS_PATH, value="inherited", prev="invisible") await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionWorking.png", 1e-3) # OM-53278 - occasionally produces pitch black image async def test_UNSTABLE_light_collection_refresh_issue_when_light_and_shadow_are_the_same_UNSTABLE(self): """ Regression test for refresh issue when the light and shadow collections become the same This is a regression test for OM-48040 Light Linking: light goes off after toggling Include Root on/off """ self.open_usd("hydra/LightLinkSimple.usda") await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionSimpleCubeNoLight.png", 1e-3) omni.kit.commands.execute( "AddRelationshipTarget", relationship=omni.usd.get_context().get_stage().GetPropertyAtPath(self.LIGHT_SHADOW_EXCLUDE_PATH), target=self.CUBE_PATH ) await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionSimpleCubeNoShadow.png", 1e-3) omni.kit.commands.execute("ChangeProperty", prop_path=self.LIGHT_LINK_INCLUDE_PATH, value=False, prev=True) await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionBlack.png", 1e-3) omni.kit.commands.execute("ChangeProperty", prop_path=self.LIGHT_LINK_INCLUDE_PATH, value=True, prev=False) await wait_for_update(wait_frames=25) await self.capture_and_compare(self.TEST_PATH, "lightCollectionSimpleCubeNoShadow.png", 1e-3)
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_postprocessing_tonemapper.py
## Copyright (c) 2021-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.app import omni.kit.test import omni.kit.commands import carb import pathlib from .test_common import RtxTest, testSettings, postLoadTestSettings, wait_for_update from .test_common import USD_DIR, EXTENSION_FOLDER_PATH from pxr import Gf, Sdf, Usd from pxr import UsdGeom, UsdLux class TestRtxPostprocessingTonemapper(RtxTest): TEST_PATH = "tonemapping" def open_usd_scene(self, path : pathlib.Path): omni.usd.get_context().open_stage(str(path)) def create_dome_light(self, name="/Xform/DomeLight"): omni.kit.commands.execute( "CreatePrim", prim_path=name, prim_type="DomeLight", select_new_prim=False, attributes={ UsdLux.Tokens.inputsIntensity: 1, UsdLux.Tokens.inputsTextureFormat: UsdLux.Tokens.latlong, UsdLux.Tokens.inputsTextureFile: str(EXTENSION_FOLDER_PATH.joinpath("data/usd/hydra/daytime.hdr")), UsdGeom.Tokens.visibility: "inherited", } if hasattr(UsdLux.Tokens, 'inputsIntensity') else { UsdLux.Tokens.intensity: 1, UsdLux.Tokens.textureFormat: UsdLux.Tokens.latlong, UsdLux.Tokens.textureFile: str(EXTENSION_FOLDER_PATH.joinpath("data/usd/hydra/daytime.hdr")), UsdGeom.Tokens.visibility: "inherited", }, create_default_xform=True, ) dome_light_prim = self.ctx.get_stage().GetPrimAtPath(name) return dome_light_prim async def setUp(self): await self.setUp_internal() carb.log_info("Setting up scene for RTX postprocessing tonemapping tests.") # Setting that should be set before opening a new stage self.set_settings(testSettings) rtxDataPath = EXTENSION_FOLDER_PATH.joinpath("../../../../../data/usd/tests") self.open_usd_scene(rtxDataPath.joinpath("BallCluster/ballcluster_stage.usda")) # Settings that should be set after opening a new stage self.set_settings(postLoadTestSettings) # camera setup: omni.kit.commands.execute('CreatePrimWithDefaultXform', prim_path='/Ballcluster_set/Camera', prim_type='Camera', attributes={'focusDistance': 400, 'focalLength': 24, 'clippingRange': (1, 10000000)}, create_default_xform=False) omni.kit.commands.execute('TransformPrimCommand', path=Sdf.Path('/Ballcluster_set/Camera'), new_transform_matrix=Gf.Matrix4d(-0.6550639249522971, 0.7555734605093614, 6.112664085837494e-16, 0.0, 0.008064090705444693, 0.006991371699474781, 0.9999430439594318, 0.0, 0.7555304260366915, 0.6550266151048126, -0.010672808306432642, 0.0, 543.7716131933593, 536.4127523809548, 92.10006955095595, 1.0), old_transform_matrix=Gf.Matrix4d(-0.7071067811865474, 0.7071067811865478, 5.551115215516806e-17, 0.0, -0.4082482839677534, -0.4082482839677533, 0.8164965874238357, 0.0, 0.5773502737830692, 0.5773502737830688, 0.5773502600027394, 0.0, 500.0, 500.0, 500.0, 1.0), time_code=Usd.TimeCode.Default(), had_transform_at_key=False, usd_context_name='') # Create a domelight to get some high dynamic range going: self.domelight_prim = self.create_dome_light() # Disable this object so that the dome light is actually visible: omni.kit.commands.execute('DeletePrims', paths=['/Xform/sky_sphere_emiss'], destructive=False) await wait_for_update() # Activate the new camera: viewport_api = omni.kit.viewport.utility.get_active_viewport() viewport_api.set_active_camera("/Ballcluster_set/Camera") await omni.kit.app.get_app().next_update_async() my_settings = { "/app/hydraEngine/waitIdle" : True, "/app/renderer/waitIdle" : True, "/app/asyncRenderingLowLatency" : False, "/rtx-transient/resourcemanager/genMipsForNormalMaps" : False, "/rtx-transient/resourcemanager/texturestreaming/async" : False, "/rtx-transient/samplerFeedbackTileSize" : 1, "/rtx/hydra/perMaterialSyncLoads" : True, "/rtx/post/aa/op" : 0, # 0 = None, 2 = FXAA "/renderer/multiGpu/maxGpuCount" : 1, "/rtx/gatherColorToDisplayDevice" : True, "/rtx/rendermode" : 'PathTracing', "/rtx/raytracing/lightcache/spatialCache/enabled" : False, "/rtx/pathtracing/lightcache/cached/enabled" : False, "/rtx/pathtracing/cached/enabled" : False, "/rtx/pathtracing/optixDenoiser/enabled" : False, "/rtx/pathtracing/spp" : 1, "/rtx/pathtracing/totalSpp" : 1, "/rtx/pathtracing/maxBounces" : 2, "/rtx/hydra/perMaterialSyncLoads" : True, } self.set_settings(my_settings) await wait_for_update() # Marking unstable due to OM-86613 async def test_UNSTABLE_postprocessing_tonemappers_UNSTABLE(self): """ Test RTX Postprocessing Tonemappers """ self.set_settings({"/rtx/post/tonemap/op" : "0"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "0_tonemapper_test_clamp.png") # Make the domelight 'visible' for all non-clamp tonemappers # https://github.com/PixarAnimationStudios/USD/commit/b5d3809c943950cd3ff6be0467858a3297df0bb7 if hasattr(UsdLux.Tokens, 'inputsIntensity'): self.domelight_prim.GetAttribute(UsdLux.Tokens.inputsIntensity).Set(200) else: self.domelight_prim.GetAttribute(UsdLux.Tokens.intensity).Set(200) self.set_settings({"/rtx/post/tonemap/op" : "1"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "1_tonemapper_test_linear.png") self.set_settings({"/rtx/post/tonemap/op" : "2"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "2_tonemapper_test_reinhard.png") self.set_settings({"/rtx/post/tonemap/op" : "3"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "3_tonemapper_test_reinhard_modified.png") self.set_settings({"/rtx/post/tonemap/op" : "4"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "4_tonemapper_test_hejlhablealu.png") self.set_settings({"/rtx/post/tonemap/op" : "5"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "5_tonemapper_test_hableuc2.png") self.set_settings({"/rtx/post/tonemap/op" : "6"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "6_tonemapper_test_aces.png") self.set_settings({"/rtx/post/tonemap/op" : "7"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "7_tonemapper_test_iray.png")
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/__init__.py
import sys if sys.platform == "win32": from .test_example import TestRtxExample1, TestRtxExample2 from .test_selectionoutline import TestRtxSelectionOutline from .test_hydra_mesh import * from .test_hydra_points import * from .test_hydra_basis_curves import * from .test_hydra_skel import * from .test_hydra_materials import * from .test_scenedb import TestRtxSceneDb from .test_hydra_light_collections import * from .test_hydra_volume import * from .test_domelight import TestRtxDomelight from .test_postprocessing_tonemapper import * from .test_light_toggling import * from .test_usdlux_schema_compat import * from .test_hydra_scene_delegate_omni_imaging import * from .test_picking import * from .test_material_distilling_toggle import * # Enable other extensions to use these test classes from .test_common import RtxTest, testSettings, postLoadTestSettings, OUTPUTS_DIR
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_light_toggling.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.app import omni.kit.test import omni.kit.commands import carb import pathlib from .test_common import RtxTest, testSettings, postLoadTestSettings, wait_for_update from .test_common import EXTENSION_FOLDER_PATH from pxr import Gf, Sdf, Usd class TestRtxLightToggling(RtxTest): TEST_PATH = "light_toggling" def open_usd_scene(self, path : pathlib.Path): omni.usd.get_context().open_stage(str(path)) async def setUp(self): await self.setUp_internal() carb.log_info("Setting up scene for RTX postprocessing tonemapping tests.") self.set_settings(testSettings) rtxDataPath = EXTENSION_FOLDER_PATH.joinpath("../../../../../data/usd/tests") self.open_usd_scene(rtxDataPath.joinpath("KitchenSet/Kitchen_set.usda")) # camera setup: omni.kit.commands.execute('CreatePrimWithDefaultXform', prim_path='/Kitchen_set/Camera', prim_type='Camera', attributes={'focusDistance': 400, 'focalLength': 24, 'clippingRange': (1, 10000000)}, create_default_xform=False) omni.kit.commands.execute('TransformPrimCommand', path=Sdf.Path('/Kitchen_set/Camera'), new_transform_matrix=Gf.Matrix4d( 0.929103525371008, 0.36981973871491086, 9.165845166192454e-16, 0.0, -0.07453993201486002, 0.18726775876424714, 0.9794766893921647, 0.0, 0.3622298133483562, -0.9100352451329841, 0.201557473037752, 0.0, 273.5074607559941, -621.0054603487383, 221.75447008156692, 1.0), old_transform_matrix=Gf.Matrix4d( 0.9305632067779971, 0.36613128545789503, 9.159340032886883e-16, 0.0, -0.09015111941855866, 0.22912905319151347, 0.9692123877928621, 0.0, 0.35485897742431627, -0.9019133876334855, 0.24622621174208614, 0.0, 328.2529492634561, -760.1471818173628, 259.74075506441545, 1.0), time_code=Usd.TimeCode.Default(), had_transform_at_key=False, usd_context_name='') # remove any selection, not sure why this happens, but otherwise weird bounding # boxes appear selection = omni.usd.get_context().get_selection() selection.clear_selected_prim_paths() await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) my_settings = { "/rtx/pathtracing/lightcache/cached/enabled": False, "/rtx/raytracing/lightcache/spatialCache/enabled" : False, "/rtx-transient/resourcemanager/genMipsForNormalMaps" : False, "/rtx-transient/resourcemanager/texturestreaming/async" : False, "/rtx-transient/samplerFeedbackTileSize" : 1, "/rtx/post/aa/op" : 0, # 0 = None, 2 = FXAA "/rtx/directLighting/sampledLighting/enabled" : False, # LTC gives consistent lighting "/rtx/reflections/enabled" : False, # Disabling reflections. "/rtx/reflections/sampledLighting/enabled" : False, # LTC gives consistent lighting "/rtx/sceneDb/ambientLightIntensity" : float(0.0), "/rtx/ambientOcclusion/enabled" : False, "/rtx/indirectDiffuse/enabled" : False, "/app/viewport/grid/enabled" : False, # Disable Kit Grid "/app/viewport/grid/showOrigin" : False, # Disable Kit Origin "/app/viewport/outline/enabled" : False, # Disable Selection drawing } self.set_settings(my_settings) async def test_light_toggling(self): """ Test RTX Light Toggling """ LIGHT_VIS_PATH = ".visibility" # Activate the main camera: viewport_api = omni.kit.viewport.utility.get_active_viewport() viewport_api.set_active_camera("/Kitchen_set/Camera") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "0_all_light_sources.png") # Disable SphereLight omni.kit.commands.execute("ChangeProperty", prop_path="/SphereLight" + LIGHT_VIS_PATH, value="invisible", prev="inherited") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "1_spherelight_off.png") # Disable DiskLight omni.kit.commands.execute("ChangeProperty", prop_path="/DiskLight" + LIGHT_VIS_PATH, value="invisible", prev="inherited") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "2_disklight_off.png") # Disable DistantLight # Disable RectLightLight omni.kit.commands.execute("ChangeProperty", prop_path="/DistantLight" + LIGHT_VIS_PATH, value="invisible", prev="inherited") omni.kit.commands.execute("ChangeProperty", prop_path="/RectLight" + LIGHT_VIS_PATH, value="invisible", prev="inherited") omni.kit.commands.execute("ChangeProperty", prop_path="/DiskLight" + LIGHT_VIS_PATH, value="inherited", prev="invisible") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "3_two_lights_off_one_light_on.png") # Enable Sphere Light # Enable Rect Light # Disable Cylinder Light omni.kit.commands.execute("ChangeProperty", prop_path="/SphereLight" + LIGHT_VIS_PATH, value="inherited", prev="invisible") omni.kit.commands.execute("ChangeProperty", prop_path="/RectLight" + LIGHT_VIS_PATH, value="inherited", prev="invisible") omni.kit.commands.execute("ChangeProperty", prop_path="/CylinderLight" + LIGHT_VIS_PATH, value="invisible", prev="inherited") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "4_one_light_off_two_lights_on.png")
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_picking.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.app import omni.kit.commands import omni.kit.undo import omni.kit.test import omni.usd import carb from .test_common import RtxTest, testSettings, postLoadTestSettings, wait_for_update class TestRtxPicking(RtxTest): async def setUp(self): await super().setUp() self.set_settings(testSettings) omni.usd.get_context().new_stage() # Important: it should be called before `setUp` method as it reset settings and stage. await omni.kit.app.get_app().next_update_async() # Wait stage loading self.set_settings(postLoadTestSettings) async def test_picking_queue(self): """ Verify picking/query requests are successfully queued """ super().add_floor() await wait_for_update() # OM-80470: Verify all picking requests requested in consecutive frames are all queued and executed successfully counter = 0 def query_complete(path, pos, *args, **kwargs): nonlocal counter counter += 1 import omni.kit.viewport viewport = omni.kit.viewport.utility.get_active_viewport() if hasattr(viewport, 'legacy_window'): return # Queue multiple query requests interrupted by a pick center = [int(v * 0.5) for v in viewport.resolution] viewport.request_query(center, query_complete, query_name="test_1") viewport.request_query(center, query_complete, query_name="test_2") viewport.request_pick(center, center, omni.usd.PickingMode.RESET_AND_SELECT) viewport.request_query(center, query_complete, query_name="test_3") viewport.request_query(center, query_complete, query_name="test_4") await wait_for_update(wait_frames=40) # All queries should complete self.assertEqual(counter, 4)
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_hydra_materials.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. ## from sys import path import omni.kit.app import omni.kit.commands import omni.kit.undo import omni.kit.test import omni.timeline import carb.settings from .test_hydra_common import RtxHydraTest, RtxHydraMaterialsTest, RtxHydraInstancerTest from .test_common import testSettings, postLoadTestSettings, wait_for_update, USD_DIR from pxr import Gf, Sdf, UsdGeom, UsdRender, UsdShade import shutil, os, pathlib class RtxHydraMaterialTest(RtxHydraTest): TEST_PATH = "hydra/materials" PRIM_PATH = "/World/box" DATA_PATH = "hydra/materials/reload" TEST_CLASS = "" # need to use the real path in order to have the filewatching work properly # -> client library ticket: https://nvidia-omniverse.atlassian.net/browse/CC-168 def getDataPath(self, relativePath) -> str: data_path : str = USD_DIR.joinpath(self.DATA_PATH, relativePath) return pathlib.Path(os.path.normpath(data_path)).resolve() # helper to override the test files # in case we want to do more or use another function def copyTestFile(self, source : str, target : str): shutil.copy(self.getDataPath(source), self.getDataPath(target)) # delete the temporary file created def cleanupTestFile(self, target : str): os.remove(self.getDataPath(target)) # basic structure of a test case init async def initTest(self, caseName: str): goldenImage = f"reload-{self.TEST_CLASS}-{caseName}.png" # compare await wait_for_update(wait_frames=10) await self.capture_and_compare(self.TEST_PATH, goldenImage) # basic structure of a test case async def changeMdlAndTest(self, caseName: str, moduleToChange: str, threshold=None): sourceFile = f"{self.TEST_CLASS}/{caseName}.mdl" targetFile = f"{self.TEST_CLASS}/{moduleToChange}.mdl" goldenImage = f"reload-{self.TEST_CLASS}-{caseName}.png" if threshold is None: threshold = self.THRESHOLD # change MDL self.copyTestFile(sourceFile, targetFile) # compare await wait_for_update(wait_frames=10) await self.capture_and_compare(self.TEST_PATH, goldenImage, threshold) class TestRtxHydraMaterialsReloadBasic(RtxHydraMaterialTest): MEDIUM_THRESHOLD = 3.0e-5 async def setUp(self): self.TEST_CLASS = "basic" await self.setUp_internal() self.set_settings(testSettings) # prepare initial MDL module self.copyTestFile("basic/A_init.mdl", "basic/A.mdl") # load the test scene scenePath = self.getDataPath("basic/XYZ.usda") print(f"Scene Path: {scenePath}") super().open_usd(scenePath) await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) async def test_touch_no_change(self): """ Test hydra materials - reload basic - touch, no change """ # make sure we start with the right material await self.initTest("A_init") # touch the file by copying the same file again await self.changeMdlAndTest("A_init", "A", self.MEDIUM_THRESHOLD) # remove the temp file self.cleanupTestFile(f"{self.TEST_CLASS}/A.mdl") async def test_change_body(self): """ Test hydra materials - reload basic - change body """ # make sure we start with the right material await self.initTest("A_init") # make multiple changes in a row await self.changeMdlAndTest("A_change_body_1", "A", self.MEDIUM_THRESHOLD) await self.changeMdlAndTest("A_change_body_2", "A", self.MEDIUM_THRESHOLD) # remove the temp file self.cleanupTestFile(f"{self.TEST_CLASS}/A.mdl") class TestRtxHydraMaterialsReloadSignature(RtxHydraMaterialTest): async def setUp(self): self.TEST_CLASS = "signature" await self.setUp_internal() self.set_settings(testSettings) # prepare initial MDL module self.copyTestFile("signature/A_init.mdl", "signature/A.mdl") # load the test scene scenePath = self.getDataPath("signature/A.usda") print(f"Scene Path: {scenePath}") super().open_usd(scenePath) await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) async def test_change_signature(self): """ Test hydra materials - reload signature - change signature """ # make sure we start with the right material await self.initTest("A_init") # run test cases await self.changeMdlAndTest("A_add_parameter", "A") await self.changeMdlAndTest("A_rename_parameter", "A") await self.changeMdlAndTest("A_move_parameter", "A") await self.changeMdlAndTest("A_change_parameter_default", "A") await self.changeMdlAndTest("A_change_parameter_type", "A") await self.changeMdlAndTest("A_remove_parameter", "A") # remove the temp file self.cleanupTestFile(f"{self.TEST_CLASS}/A.mdl") class TestRtxHydraMaterialsReloadGraph(RtxHydraMaterialTest): async def setUp(self): self.TEST_CLASS = "graph" await self.setUp_internal() self.set_settings(testSettings) # prepare initial MDL module self.copyTestFile("graph/A_init.mdl", "graph/A.mdl") # load the test scene scenePath = self.getDataPath("graph/GraphA.usda") print(f"Scene Path: {scenePath}") super().open_usd(scenePath) await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) # Unstable via OM-53607 async def test_UNSTABLE_change_function_body_UNSTABLE(self): """ Test hydra materials - reload graph - change function body """ # make sure we start with the right material await self.initTest("A_init") # run test cases await self.changeMdlAndTest("A_change_function_body", "A") await self.changeMdlAndTest("A_change_function_param_defaults", "A") await self.changeMdlAndTest("A_add_function_param", "A") await self.changeMdlAndTest("A_move_function_param", "A") await self.changeMdlAndTest("A_remove_function_param", "A") # remove the temp file self.cleanupTestFile(f"{self.TEST_CLASS}/A.mdl") class TestRtxHydraMaterialsDebugMode(RtxHydraMaterialTest): async def setUp(self): self.TEST_CLASS = "debugMode" await self.setUp_internal() self.set_settings(testSettings) async def test_whiteMode(self): """ Test hydra materials - toggling white mode """ super().open_usd("hydra/materials/two_spheres.usda") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "materials_whiteMode_off.png", 1e-4) self.set_settings({"/rtx/debugMaterialType": 0}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "materials_whiteMode_on.png", 1e-4) shader = self.ctx.get_stage().GetPrimAtPath("/World/Looks/PreviewSurface/Shader") attr = shader.GetAttribute("inputs:excludeFromWhiteMode") attr.Set(1) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "materials_whiteMode_on_withExclude.png", 1e-4) attr.Set(0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "materials_whiteMode_on_withoutExclude.png", 1e-4) self.set_settings({"/rtx/debugMaterialType": -1}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "materials_whiteMode_off_again.png", 1e-4) class TestRtxHydraMaterialStdModules(RtxHydraTest): async def setUp(self): await super().setUp() self.set_settings(testSettings) super().open_usd("hydra/materials/stdmodules/test_std_modules.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) async def test_load_stdmodules(self): await wait_for_update(wait_frames=10) await self.capture_and_compare("hydra/materials", "stdmodules.png")
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_hydra_basis_curves.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 omni.timeline from .test_hydra_common import RtxHydraTest, RtxHydraMaterialsTest, RtxHydraInstancerTest from .test_common import wait_for_update, postLoadTestSettings from pxr import Sdf, Vt, UsdGeom, UsdShade simplePts = [(0, -100, 0), (50, -50, 0), (-50, 50, 0), (0, 100, 0)] simpleCnt = len(simplePts) linearPts = [(0, -100, 0), (50, 0, 0), (0, 100, 0)] linearCnt = len(linearPts) bezierPts = [(0, -100, 0), (25, -25, 0), (50, 0, 0), (0, 25, 0), (-50, 50, 0), (-25, 75, 0), (0, 100, 0)] bezierCnt = len(bezierPts) bsplinePts = [(0, -200, 0), (25, -25, 0), (-25, 0, 0), (50, 25, 0), (0, 200, 0)] bsplineCnt = len(bsplinePts) catromPts = [(0, -200, 0), (25, -50, 0), (-25, -15, 0), (-25, 15, 0), (50, 50, 0), (0, 200, 0)] catromCnt = len(catromPts) periodicPts = [(-200, -200, 0), (200, -200, 0), (200, 200, 0), (-200, 200, 0)] periodicCnt = len(periodicPts) bezierPeriodicPts = [(0, -200, 0), (-100, -200, 0), (-200, -100, 0), (-200, 0, 0), (-200, 100, 0), (-100, 200, 0), (0, 200, 0), (100, 200, 0), (200, 100, 0)] bezierPeriodicCnt = len(bezierPeriodicPts) class TestRtxHydraBasisCurves(RtxHydraTest): TEST_PATH = "hydra/basisCurves" PRIM_PATH = "/World/curve" async def setUp(self): await super().setUp() timeline = omni.timeline.get_timeline_interface() self.set_settings({"/rtx/hydra/curves/enabled": True, "/rtx/hydra/curves/splits": 1}) def _create_geometry(self, cnt, v, widthInterpolation="constant", width=None, basis="bezier", type="cubic", wrap="nonperiodic", name=PRIM_PATH): curve = UsdGeom.BasisCurves.Define(self.ctx.get_stage(), name) curve.CreateCurveVertexCountsAttr(cnt) curve.CreatePointsAttr(v) curve.SetWidthsInterpolation(widthInterpolation) curve.CreateWidthsAttr(width if width else [20]) curve.CreateBasisAttr(basis) curve.CreateTypeAttr(type) curve.CreateWrapAttr(wrap) return curve async def create_geometry_and_test(self, golden, *args, **kwargs): self._create_geometry(*args, **kwargs) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, golden) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) async def create_geometry_and_test_primvar(self, golden, pvName, pvType, pvInterp, pvData, *args, **kwargs): self._create_geometry(*args, **kwargs) prim = self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH) attr = UsdGeom.PrimvarsAPI(prim).CreatePrimvar(pvName, pvType, pvInterp) attr.Set(pvData) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, golden) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) def create_geometry(self, name=PRIM_PATH): curve = self._create_geometry([simpleCnt], simplePts, name=name) return curve async def test_visibility(self): """ Test hydra basis curves - visibility """ await self.visibility() async def test_doNotCastShadow(self): """ Test hydra basis curves - doNotCastShadow toggle """ self.create_geometry_with_floor() await self.toggle_primvar(self.PRIM_PATH, "doNotCastShadows") async def test_matteObject(self): """ Test hydra basis curves - isMatteObject toggle """ self.create_geometry_with_floor() await self.matte() async def test_hideForCamera(self): """ Test hydra basis curves - hideForCamera toggle """ self.create_geometry_with_floor() await self.toggle_primvar(self.PRIM_PATH, "hideForCamera") async def test_transform(self): """ Test hydra basis curves - tranform """ await self.transform_all() async def test_display_color(self): """ Test hydra basis curves - change display color """ # Constant geom = self.create_geometry() geom.CreateDisplayColorPrimvar("constant").Set([(0, 1, 0)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "displayColorConstant.png") return geom async def test_widths(self): """ Test hydra basis curves - change width """ await self.create_geometry_and_test("bezier.png", [bezierCnt], bezierPts, "constant", [20, 19]) await self.create_geometry_and_test("widthDefault.png", [bezierCnt], bezierPts, "constant", []) await self.create_geometry_and_test("widthLinear.png", [linearCnt], linearPts, "vertex", [0, 30, 0], type="linear") await self.create_geometry_and_test("widthVertex.png", [bezierCnt], bezierPts, "vertex", [0, 10, 20, 30, 20, 10, 0]) await self.create_geometry_and_test("widthBsplineVertex.png", [bsplineCnt], bsplinePts, "vertex", [0, 10, 30, 10, 0], "bspline") await self.create_geometry_and_test("widthLinear.png", [linearCnt], linearPts, "varying", [0, 30, 0], type="linear") await self.create_geometry_and_test("widthVarying.png", [bezierCnt], bezierPts, "varying", [10, 30, 50]) await self.create_geometry_and_test("widthBsplineVarying.png", [bsplineCnt], bsplinePts, "varying", [10, 30, 10], "bspline") pts2 = bezierPts + [(p[0], p[1], 50) for p in bezierPts] await self.create_geometry_and_test("widthConstant.png", [bezierCnt, bezierCnt], pts2, "constant", [30]) await self.create_geometry_and_test("widthUniform.png", [bezierCnt, bezierCnt], pts2, "uniform", [10, 30]) lPts2 = linearPts + [(p[0], p[1], 50) for p in linearPts] await self.create_geometry_and_test("widthLinear2.png", [linearCnt, linearCnt], lPts2, "varying", [10, 30, 50, 5, 35, 5], type="linear") await self.create_geometry_and_test("widthVarying2.png", [bezierCnt, bezierCnt], pts2, "varying", [10, 30, 50, 5, 35, 5]) bsPts2 = bsplinePts + [(p[0], p[1], 50) for p in bsplinePts] await self.create_geometry_and_test("widthBsplineVarying2.png", [bsplineCnt, bsplineCnt], bsPts2, "varying", [10, 30, 50, 5, 35, 5], "bspline") async def test_points(self): """ Test hydra basis curves - update points """ pts = [simplePts, simplePts.copy()] pts[1][1] = (-50, -50, 0) pts[1][2] = (50, 50, 0) await self.attribute_test_case(self.create_geometry, "points", Sdf.ValueTypeNames.Point3f, pts, ["geom.png", "points.png"]) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # TODO fix curves for delayed points assignments # curve = UsdGeom.BasisCurves.Define(self.ctx.get_stage(), self.PRIM_PATH) # curve.CreateWidthsAttr([20]) # await wait_for_update() # await self.capture_and_compare(self.TEST_PATH, "empty.png") # curve.CreateCurveVertexCountsAttr([simpleCnt]) # curve.CreatePointsAttr(simplePts) # await wait_for_update() # await self.capture_and_compare(self.TEST_PATH, "empty.png") async def test_skip_processing(self): """ Test hydra basis curves - skipProcessing attribute """ geom = self.create_geometry() geom.GetPrim().CreateAttribute("omni:rtx:skip", Sdf.ValueTypeNames.Bool).Set(True) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "empty.png") async def test_topology_wrap(self): """ Test hydra basis curves - wrap """ # bspline: await self.create_geometry_and_test("bsplinePinned.png", [bsplineCnt], bsplinePts, "constant", [20], "bspline", "cubic", "pinned") await self.create_geometry_and_test("bsplinePinned2.png", [bsplineCnt, bsplineCnt], bsplinePts + [(p[0], p[1], 50) for p in bsplinePts], "constant", [20], "bspline", "cubic", "pinned") # catmullRom await self.create_geometry_and_test("catmullRomPinned.png", [catromCnt], catromPts, "constant", [20], "catmullRom", "cubic", "pinned") await self.create_geometry_and_test("catmullRomPinned2.png", [catromCnt, catromCnt], catromPts + [(p[0], p[1], 50) for p in catromPts], "constant", [20], "catmullRom", "cubic", "pinned") # bspline: await self.create_geometry_and_test("bsplinePeriodic.png", [periodicCnt], periodicPts, "constant", [20], "bspline", "cubic", "periodic") await self.create_geometry_and_test("bsplinePeriodic2.png", [periodicCnt, periodicCnt], periodicPts + [(p[0], p[1], 50) for p in periodicPts], "constant", [20], "bspline", "cubic", "periodic") # catmullRom await self.create_geometry_and_test("catmullRomPeriodic.png", [periodicCnt], periodicPts, "constant", [20], "catmullRom", "cubic", "periodic") await self.create_geometry_and_test("catmullRomPeriodic2.png", [periodicCnt, periodicCnt], periodicPts + [(p[0], p[1], 50) for p in periodicPts], "constant", [20], "catmullRom", "cubic", "periodic") # bezier await self.create_geometry_and_test("bezierPeriodic.png", [bezierPeriodicCnt], bezierPeriodicPts, "constant", [20], "bezier", "cubic", "periodic") # linear await self.create_geometry_and_test("linearPeriodic.png", [periodicCnt], periodicPts, type="linear", wrap="periodic") async def test_topology_basis(self): """ Test hydra basis curves - topology basis """ # linear: 2 + (n - 1) await self.create_geometry_and_test("linear.png", [linearCnt], linearPts, type="linear") await self.create_geometry_and_test("linear2.png", [linearCnt, linearCnt], linearPts + [(p[0], p[1], 50) for p in linearPts], type="linear", wrap="nonperiodic") # bezier: 4 + 3 * (n - 1) pts await self.create_geometry_and_test("bezier.png", [bezierCnt], bezierPts, "constant", [20], "bezier", "cubic", "nonperiodic") # # more points than needed, but this is ok await self.create_geometry_and_test("bezier.png", [bezierCnt], bezierPts + [(0, 0, 0)]) # # indices - ibychkov: is this supported? How it can be set? # bspline: 4 + (n - 1) pts await self.create_geometry_and_test("bspline.png", [bsplineCnt], bsplinePts, "constant", [20], "bspline", "cubic", "nonperiodic") # catmullRom await self.create_geometry_and_test("catmullRom.png", [catromCnt], catromPts, "constant", [20], "catmullRom", "cubic", "nonperiodic") # Ribbons - Not supported - OM-36882 async def test_topology_incorrect(self): """ Test hydra basis curves - incorrect topology """ efn = "empty.png" # test incorrect number of points # linear await self.create_geometry_and_test(efn, [1], [(0, -100, 0)], type="linear") await self.create_geometry_and_test(efn, [2], [(0, -100, 0), (-100, 0, 0)], type="linear", wrap="periodic") # bezier await self.create_geometry_and_test(efn, [0], []) await self.create_geometry_and_test(efn, [4], []) await self.create_geometry_and_test(efn, [1], [(0, -100, 0), (50, -50, 0), (0, 0, 0), (-50, 50, 0), (0, 100, 0)]) await self.create_geometry_and_test(efn, [1], [(0, -100, 0)]) await self.create_geometry_and_test(efn, [2], [(0, -100, 0), (50, -50, 0)]) await self.create_geometry_and_test(efn, [3], [(0, -100, 0), (50, -50, 0), (0, 0, 0)]) await self.create_geometry_and_test(efn, [4], [(0, -100, 0)]) await self.create_geometry_and_test(efn, [5], [(0, -100, 0), (50, -50, 0), (0, 0, 0), (-50, 50, 0), (0, 100, 0), (50, 150, 0)]) await self.create_geometry_and_test(efn, [7], [(0, -100, 0), (25, -25, 0), (50, 0, 0), (0, 25, 0), (-50, 50, 0), (-25, 75, 0), (0, 100, 0)], "constant", [20], "bezier", "cubic", "periodic") await self.create_geometry_and_test(efn, [7, 7], [(0, -100, 0), (25, -25, 0), (50, 0, 0), (0, 25, 0), (-50, 50, 0), (-25, 75, 0), (0, 100, 0)]) # bspline await self.create_geometry_and_test(efn, [3], [(0, -100, 0), (50, -50, 0), (0, 0, 0)], basis="bspline") await self.create_geometry_and_test(efn, [1], [(0, -100, 0)], "constant", [20], "bspline", "cubic", "periodic") await self.create_geometry_and_test(efn, [1], [(0, -100, 0)], "constant", [20], "bspline", "cubic", "pinned") # catmullRom await self.create_geometry_and_test(efn, [3], [(0, -100, 0), (50, -50, 0), (0, 0, 0)], basis="catmullRom") await self.create_geometry_and_test(efn, [1], [(0, -100, 0)], "constant", [20], "catmullRom", "cubic", "periodic") await self.create_geometry_and_test(efn, [1], [(0, -100, 0)], "constant", [20], "catmullRom", "cubic", "pinned") # pinned wrap, bezier await self.create_geometry_and_test("empty.png", [bezierCnt], bezierPts, "constant", [20], "bezier", "cubic", "pinned") # test incorrect number of widths pts2 = bezierPts + [(p[0], p[1], 50) for p in bezierPts] await self.create_geometry_and_test(efn, [bezierCnt], bezierPts, "vertex", [0, 10, 20, 30, 20, 10]) await self.create_geometry_and_test(efn, [bezierCnt], bezierPts, "varying", [20]) await self.create_geometry_and_test(efn, [bezierCnt, bezierCnt], pts2, "uniform", [20]) # test incorrect number of display color async def test_normal_and_tangents(self): """ Test hydra basis curves - normal and tangents """ self.set_settings({"/rtx/debugView/target": "normal"}) await self.create_geometry_and_test("normalLinear.png", [linearCnt], linearPts, "constant", [40], type="linear") await self.create_geometry_and_test("normal.png", [bezierCnt], bezierPts, "constant", [40]) await self.create_geometry_and_test("normalBspline.png", [bsplineCnt], bsplinePts, "constant", [40], "bspline") await self.create_geometry_and_test("normalCatrom.png", [catromCnt], catromPts, "constant", [40], "catmullRom") self.set_settings({"/rtx/debugView/target": "tangentu"}) await self.create_geometry_and_test("tangentuLinear.png", [linearCnt], linearPts, "constant", [40], type="linear") await self.create_geometry_and_test("tangentu.png", [bezierCnt], bezierPts, "constant", [40]) await self.create_geometry_and_test("tangentuBspline.png", [bsplineCnt], bsplinePts, "constant", [40], "bspline") await self.create_geometry_and_test("tangentuCatrom.png", [catromCnt], catromPts, "constant", [40], "catmullRom") self.set_settings({"/rtx/debugView/target": "tangentv"}) await self.create_geometry_and_test("tangentvLinear.png", [linearCnt], linearPts, "constant", [40], type="linear") await self.create_geometry_and_test("tangentv.png", [bezierCnt], bezierPts, "constant", [40]) await self.create_geometry_and_test("tangentvBspline.png", [bsplineCnt], bsplinePts, "constant", [40], "bspline") await self.create_geometry_and_test("tangentvCatrom.png", [catromCnt], catromPts, "constant", [40], "catmullRom") async def test_texCoords(self): """ Test hydra basis curves - texCoords (UVs) """ self.set_settings({"/rtx/debugView/target": "texcoord0"}) await self.create_geometry_and_test("texCoordsLinear.png", [linearCnt], linearPts, "vertex", [10, 30, 50], type="linear") await self.create_geometry_and_test("texCoords.png", [bezierCnt], bezierPts, "varying", [10, 30, 50]) await self.create_geometry_and_test("texCoordsBspline.png", [bsplineCnt], bsplinePts, "constant", [40], "bspline") await self.create_geometry_and_test("texCoordsCatrom.png", [catromCnt], catromPts, "constant", [40], "catmullRom") async def test_texCoords2(self): """ Test hydra basis curves - texCoords (UVs) set 2. Defined by asset. """ self.set_settings({"/rtx/debugView/target": "texcoord1"}) await self.create_geometry_and_test_primvar("texCoords2Vertex.png", "uv1", Sdf.ValueTypeNames.Float2Array, UsdGeom.Tokens.vertex, [(0, 0), (0.15, 0), (0.3, 0), (0.5, 0), (0.7, 0), (0.85, 0), (1, 0)], [bezierCnt], bezierPts, "varying", [10, 30, 50]) await self.create_geometry_and_test_primvar("texCoords2Uniform.png", "uv1", Sdf.ValueTypeNames.Float2Array, UsdGeom.Tokens.uniform, [(0, 0.5), (1, 0)], [bezierCnt, bezierCnt], bezierPts + [(p[0], p[1], 50) for p in bezierPts]) # Pinned wrap await self.create_geometry_and_test_primvar("texCoords2VertexPinned.png", "uv1", Sdf.ValueTypeNames.Float2Array, UsdGeom.Tokens.vertex, [(0, 0), (0.3, 0), (0.5, 0), (0.7, 0), (1, 0)], [bsplineCnt], bsplinePts, "constant", [30], "bspline", "cubic", "pinned") await self.create_geometry_and_test_primvar("texCoords2UniformPinned.png", "uv1", Sdf.ValueTypeNames.Float2Array, UsdGeom.Tokens.uniform, [(0, 0.5), (1, 0)], [bsplineCnt, bsplineCnt], bsplinePts + [(p[0], p[1], 50) for p in bsplinePts], "constant", [20], "bspline", "cubic", "pinned") # Peropdic wrap await self.create_geometry_and_test_primvar("texCoords2VertexPeriodic.png", "uv1", Sdf.ValueTypeNames.Float2Array, UsdGeom.Tokens.vertex, [(0, 0), (0.3, 0), (0.5, 0), (1, 0)], [periodicCnt], periodicPts, "constant", [30], "bspline", "cubic", "periodic") await self.create_geometry_and_test_primvar("texCoords2UniformPeriodic.png", "uv1", Sdf.ValueTypeNames.Float2Array, UsdGeom.Tokens.uniform, [(0, 0.5), (1, 0)], [periodicCnt, periodicCnt], periodicPts + [(p[0], p[1], 50) for p in periodicPts], "constant", [20], "bspline", "cubic", "periodic") async def test_endcaps(self): """ Test hydra basis curves - endcaps. For cubic curves - flat and open For linear curves - only round """ self._create_geometry([bezierCnt], bezierPts, "varying", [30, 30, 50]) prim = self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH) pv = UsdGeom.PrimvarsAPI(prim).CreatePrimvar("endcaps", Sdf.ValueTypeNames.Int) # Flat pv.Set(1) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "endcapFlat.png") # Open pv.Set(0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "endcapOpen.png") # OM-55978: Discontinuity along curves or hair fibers when the endcaps option set to open self.set_camera((1.25, 1.25, 1.25), (0, 0, 0)) self.set_settings({"/rtx/debugView/target": "normal"}) self._create_geometry([4], [(0, -10, 0), (0, 0, 0), (0, 10, 0), (0, 20, 0)], "constant", [1], "bspline", "cubic", "pinned") prim = self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH) pv = UsdGeom.PrimvarsAPI(prim).CreatePrimvar("endcaps", Sdf.ValueTypeNames.Int) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "om55978.png") async def test_numsplits(self): """ Test hydra basis curves - numSplits. For cubic curves only """ self.set_settings({"/rtx/wireframe/enabled": True}) self.set_settings({"/rtx/wireframe/wireframeThickness": 5}) self.set_settings({"/rtx/wireframe/mode": 2}) # Global setting self._create_geometry([bezierCnt], bezierPts, "constant", [20]) self.set_settings({"/rtx/hydra/curves/splits": 4}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "bezier4Splits.png") # Update global setting self.set_settings({"/rtx/hydra/curves/splits": 1}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "bezier1Splits.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Primvar with overrided self._create_geometry([bezierCnt], bezierPts, "constant", [20]) prim = self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH) UsdGeom.PrimvarsAPI(prim).CreatePrimvar("numSplitsOverride", Sdf.ValueTypeNames.Bool).Set(True) UsdGeom.PrimvarsAPI(prim).CreatePrimvar("numSplits", Sdf.ValueTypeNames.Int).Set(2) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "bezier2Splits.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Primvar without override (it should get num splits from global setting == 1) self._create_geometry([bezierCnt], bezierPts, "constant", [20]) prim = self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH) UsdGeom.PrimvarsAPI(prim).CreatePrimvar("numSplits", Sdf.ValueTypeNames.Int).Set(2) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "bezier1Splits.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Bspline self._create_geometry([bsplineCnt], bsplinePts, "constant", [20], "bspline") prim = self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH) UsdGeom.PrimvarsAPI(prim).CreatePrimvar("numSplits", Sdf.ValueTypeNames.Int).Set(2) UsdGeom.PrimvarsAPI(prim).CreatePrimvar("numSplitsOverride", Sdf.ValueTypeNames.Bool).Set(True) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "bspline2Splits.png") async def test_timeSampled(self): """ Test hydra basis curves - verify time sample animation works. """ super().open_usd("hydra/curves_timeSampled_001.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) timeline = omni.timeline.get_timeline_interface() # Regression test for OM-96462, where time-sampled xform was impairing update of time-sampled points await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "curves_timeSampled_frame0.png") # Advance a few frames and capture another frame for t in range(12): timeline.forward_one_frame() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "curves_timeSampled_frame12.png") class TestRtxHydraBasisCurvesInstancer(RtxHydraInstancerTest): # TODO full cover scene instancer with tests TEST_PATH = "hydra/basisCurves/instancer" GEOM_PATH = RtxHydraInstancerTest.PRIM_PATH + "/curve" def create_geometry(self, name=GEOM_PATH): curve = UsdGeom.BasisCurves.Define(self.ctx.get_stage(), name) curve.CreateCurveVertexCountsAttr([simpleCnt]) curve.CreatePointsAttr(simplePts) curve.CreateWidthsAttr([0, 20, 20, 0]) return curve async def test_sceneInstancer(self): """ Test hydra basis curves - scene instancer """ await self.si_all() async def test_pointInstancer(self): """ Test hydra basis curves - point instancer """ await self.pi_all() class TestRtxHydraBasisCurvesMaterials(RtxHydraMaterialsTest): TEST_PATH = "hydra/basisCurves/material" PRIM_PATH = "/World/curve" def create_geometry(self, name=PRIM_PATH): curve = UsdGeom.BasisCurves.Define(self.ctx.get_stage(), name) curve.CreateCurveVertexCountsAttr([simpleCnt]) curve.CreatePointsAttr(simplePts) curve.CreateWidthsAttr([10, 30, 30, 10]) return curve # Unstable via OM-53604 async def test_UNSTABLE_materials_UNSTABLE(self): """ Test hydra basis curves - materials """ materials = ["Green", "Red"] looksPath = "/World/Looks/" # Set and change material geomPrim = self.create_geometry().GetPrim() for m in materials: self.bind_material(geomPrim, looksPath + m) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "mat_{}.png".format(m)) # Unbind material it should fallback to basic material UsdShade.MaterialBindingAPI(geomPrim).UnbindAllBindings() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "mat_base.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH)
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_hydra_common.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.app import omni.kit.commands import omni.kit.undo import omni.kit.test import omni.timeline from .test_common import RtxTest, testSettings, postLoadTestSettings, set_transform_helper, wait_for_update from pxr import Sdf, Gf, UsdGeom, UsdShade class RtxHydraTest(RtxTest): """ Base class for hydra tests """ # override resolution WINDOW_SIZE = (512, 512) TEST_PATH = "hydra" PRIM_PATH = "" async def setUp(self): await self.setUp_internal() self.set_settings(testSettings) omni.usd.get_context().new_stage() self.add_dir_light() await omni.kit.app.get_app().next_update_async() # Wait stage loading self.set_settings(postLoadTestSettings) def create_geometry(self, name=PRIM_PATH): pass def create_geometry_with_floor(self): self.add_floor() self.create_geometry() set_transform_helper(self.PRIM_PATH, translate=Gf.Vec3d(0, 100, 0)) async def geometry_with_attribute(self, attrName, attrType, attrVal, shouldWait=False): geom = self.create_geometry() if shouldWait: await wait_for_update() attr = geom.GetPrim().CreateAttribute(attrName, attrType) self.assertTrue(attr) attr.Set(attrVal) await wait_for_update() return geom async def set_attribute_timesampled(self, geom, attrName, attrType, attrVals, goldens): attr = geom.GetPrim().CreateAttribute(attrName, attrType) self.assertTrue(attr) for i, v in enumerate(attrVals): attr.Set(v, i) self.assertTrue(len(attrVals) == len(goldens)) timeline = omni.timeline.get_timeline_interface() timeline.set_target_framerate(timeline.get_time_codes_per_seconds()) timeline.play() timeline.set_auto_update(False) for i, g in enumerate(goldens): timeline.set_current_time(i) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, g) timeline.set_auto_update(True) timeline.stop() async def attribute_test_case(self, createGeom, attrName, attrType, attrVals, goldens): self.assertTrue(len(attrVals) > 1) self.assertTrue(len(attrVals) == len(goldens)) geom = createGeom() attr = geom.GetPrim().CreateAttribute(attrName, attrType) self.assertTrue(attr) # Test updating attribute for i, g in enumerate(goldens): attr.Set(attrVals[i]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, g) # Test timesampled attribute self.ctx.get_stage().RemovePrim(self.PRIM_PATH) geom = createGeom() await self.set_attribute_timesampled(geom, attrName, attrType, attrVals, goldens) async def toggle_primvar(self, geomPath, primvarName, primvarType=Sdf.ValueTypeNames.Bool, primvarVal=True, baseGoldenName="boxAndFloor.png", threshould=1e-5): prim = self.ctx.get_stage().GetPrimAtPath(geomPath) attr = UsdGeom.PrimvarsAPI(prim).CreatePrimvar(primvarName, primvarType) self.assertTrue(attr) await wait_for_update() self.assertFalse(attr.Get() == primvarVal) await self.capture_and_compare(self.TEST_PATH, baseGoldenName) attr.Set(primvarVal) await wait_for_update() self.assertTrue(attr.Get() == primvarVal) await self.capture_and_compare(self.TEST_PATH, primvarName + ".png", threshould) async def visibility(self): prim = self.create_geometry() attr = prim.GetVisibilityAttr() self.assertTrue(attr) for i in range(2): attr.Set(UsdGeom.Tokens.inherited) await wait_for_update() self.assertTrue(attr.Get() == UsdGeom.Tokens.inherited) await self.capture_and_compare(self.TEST_PATH, "geom.png") attr.Set(UsdGeom.Tokens.invisible) await wait_for_update() self.assertTrue(attr.Get() == UsdGeom.Tokens.invisible) await self.capture_and_compare(self.TEST_PATH, "empty.png") async def cull_style(self): # Not yet supported by hydra pass async def double_sided(self): pass async def single_sided(self): self.set_settings({"/rtx/debugView/target": "normal", "/rtx/hydra/faceCulling/enabled": True}) geom = self.create_geometry() attr = geom.GetPrim().CreateAttribute("singleSided", Sdf.ValueTypeNames.Bool) self.assertTrue(attr) self.set_camera(cameraPos=(0, 0, 0), targetPos=(-500, -500, -500)) await wait_for_update() self.assertFalse(attr.Get()) await self.capture_and_compare(self.TEST_PATH, "doubleSided.png") attr.Set(True) await wait_for_update() self.assertTrue(attr.Get()) await self.capture_and_compare(self.TEST_PATH, "singleSided.png") async def matte(self): self.set_settings({"/rtx/matteObject/enabled": True, "/rtx/post/backgroundZeroAlpha/enabled": True, "/rtx/post/backgroundZeroAlpha/backgroundComposite": True, "/rtx/post/backgroundZeroAlpha/backgroundDefaultColor": (0, 0, 0)}) await self.toggle_primvar("/World/Floor", "isMatteObject") async def is_picked(self): # This is not worked when kit is not focused. Skip tests while solution wouldn't be found self.skipTest("Test is not worked correctly yet!") #viewport = omni.kit.viewport_legacy.acquire_viewport_interface().get_viewport_window(None) #isPicked = False # for i in range(10): # set_cursor_position((int(self.WINDOW_SIZE[0] / 2), int(self.WINDOW_SIZE[1] / 2))) # await omni.kit.app.get_app().next_update_async() # ret = viewport.get_hovered_world_position() # isPicked |= ret[0] #return isPicked async def pickable(self): geom = self.create_geometry() self.assertTrue(await self.is_picked()) self.ctx.set_pickable(self.PRIM_PATH, False) # set_pickable is not catched correctly by hydra yet. So we need to update any primvar to force update instance attr = geom.GetPrim().CreateAttribute("singleSided", Sdf.ValueTypeNames.Bool) attr.Set(True) await wait_for_update() self.assertFalse(await self.is_picked()) async def transform_translate(self): self.create_geometry() set_transform_helper(self.PRIM_PATH, translate=Gf.Vec3d(0, 0, 150)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "translateZ.png") async def transform_rotate(self): self.create_geometry() set_transform_helper(self.PRIM_PATH, euler=Gf.Vec3d(0, 45, 0)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "rotateY.png") async def transform_scale(self): self.create_geometry() set_transform_helper(self.PRIM_PATH, scale=Gf.Vec3d(2, 1, 1)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "scaleX.png") async def transform_combined(self, shouldWait=False): self.create_geometry() if shouldWait: await wait_for_update() set_transform_helper(self.PRIM_PATH, translate=Gf.Vec3d(0, 0, 150), euler=Gf.Vec3d(0, 45, 0), scale=Gf.Vec3d(2, 1, 1)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "tranlateZrotateYscaleX.png") async def transform_all(self): await self.transform_translate() self.ctx.get_stage().RemovePrim(self.PRIM_PATH) await self.transform_rotate() self.ctx.get_stage().RemovePrim(self.PRIM_PATH) await self.transform_scale() self.ctx.get_stage().RemovePrim(self.PRIM_PATH) await self.transform_combined(shouldWait=True) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) await wait_for_update() await self.transform_combined(shouldWait=False) class RtxHydraMaterialsTest(RtxHydraTest): TEST_PATH = "" PRIM_PATH = "" async def setUp(self): await self.setUp_internal() self.set_settings(testSettings) super().open_usd("hydra/UsdShade.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) def create_geometry(self, name): pass def bind_material(self, geom, material_path): binding_api = UsdShade.MaterialBindingAPI(geom) material_prim = self.ctx.get_stage().GetPrimAtPath(material_path) material = UsdShade.Material(material_prim) binding_api.Bind(material, UsdShade.Tokens.weakerThanDescendants) class RtxHydraInstancerTest(RtxHydraTest): # TODO full cover scene instancer with tests TEST_PATH = "" GEOM_PATH = "" PRIM_PATH = "/World/instance" PRIM1_PATH = "/World/instance1" PRIM2_PATH = "/World/instance2" def create_geometry(self, name): pass def create_scene_instancer(self): prim = UsdGeom.Xform.Define(self.ctx.get_stage(), self.PRIM_PATH).GetPrim() self.create_geometry(self.GEOM_PATH) prim1 = UsdGeom.Xform.Define(self.ctx.get_stage(), self.PRIM1_PATH).GetPrim() prim1.GetReferences().AddInternalReference(self.PRIM_PATH) prim1.SetInstanceable(True) omni.kit.commands.execute("CopyPrimCommand", path_from=self.PRIM1_PATH, path_to=self.PRIM2_PATH) self.ctx.get_selection().clear_selected_prim_paths() prim2 = self.ctx.get_stage().GetPrimAtPath(self.PRIM2_PATH) set_transform_helper(self.PRIM2_PATH, translate=Gf.Vec3d(0, 200, 0)) return prim, prim2 def remove_scene_instancer(self): # Teardown in reverse order of creation, to avoid temporarily leaving dangling references. # Alternatively, we could implement this in Sdf with a change block to batch all the removals. self.ctx.get_stage().RemovePrim(self.PRIM2_PATH) self.ctx.get_stage().RemovePrim(self.PRIM1_PATH) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) self.ctx.get_stage().RemovePrim(self.GEOM_PATH) def create_point_instancer(self): instancer = UsdGeom.PointInstancer.Define(self.ctx.get_stage(), self.PRIM_PATH) instancer.CreatePositionsAttr([(-150, 0, 0), (150, 0, 0)]) instancer.CreateProtoIndicesAttr([0, 0]) self.create_geometry(self.GEOM_PATH) attr = instancer.CreatePrototypesRel() attr.AddTarget(self.GEOM_PATH) return instancer def remove_point_instancer(self): self.ctx.get_stage().RemovePrim(self.GEOM_PATH) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) async def si_create(self): self.create_scene_instancer() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "sceneinstancer.png", 1e-4) async def si_rotate(self): self.create_scene_instancer() set_transform_helper(self.GEOM_PATH, euler=Gf.Vec3d(0, 0, 45)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "si_rotate_mesh.png", 1e-4) async def si_all(self): await self.si_create() self.remove_scene_instancer() await self.si_rotate() self.remove_scene_instancer() async def pi_create(self): self.create_point_instancer() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pointinstancer.png", 1e-4) async def pi_protoIndices(self): instancer = self.create_point_instancer() sphere = UsdGeom.Sphere.Define(self.ctx.get_stage(), self.PRIM_PATH + "/sphere") sphere.CreateRadiusAttr(50) instancer.GetPrototypesRel().AddTarget(self.PRIM_PATH + "/sphere") instancer.GetProtoIndicesAttr().Set([1, 0]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pi_2meshes.png", 1e-4) # Regression test for OM-32503 instancer.GetProtoIndicesAttr().Set([1, 0, 1]) instancer.GetPositionsAttr().Set([(-150, 0, 0), (0, 0, 0), (150, 0, 0)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pi_3meshes.png", 1e-4) async def pi_invisibleIds(self): instancer = self.create_point_instancer() attr = instancer.CreateInvisibleIdsAttr() attr.Set([0]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pi_invisibleIds.png", 1e-4) attr.Set([]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pointinstancer.png", 1e-4) async def pi_orientations(self): instancer = self.create_point_instancer() attr = instancer.CreateOrientationsAttr() attr.Set([Gf.Quath(0., 0., 0.5, 1), Gf.Quath(0., 0.5, 0., 1)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pi_orientations.png", 1e-4) async def pi_scales(self): instancer = self.create_point_instancer() attr = instancer.CreateScalesAttr() attr.Set([(1., 2., 1), (1., 1., 2)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pi_scales.png", 1e-4) # OM-30814 - verify proper refresh when authoring xforms on prototype gprims and ancestors async def pi_protoXform(self): instancer = self.create_point_instancer() await wait_for_update() # TODO: Figure out why the bug does not repro via scripting, only via TransformGizmo; # even scripting the entire operation within an Sdf.ChangeBlock does not trigger the # bug, with the fixes reverted. set_transform_helper(self.GEOM_PATH, scale=Gf.Vec3d(2, 1, 2)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pi_protoXform.png", 1e-4) set_transform_helper(self.GEOM_PATH, scale=Gf.Vec3d(1, 1, 1)) await wait_for_update() geomPath = Sdf.Path(self.GEOM_PATH) xformPath = geomPath.GetParentPath().AppendChild('Xform') UsdGeom.Xform.Define(self.ctx.get_stage(), xformPath) newGeomPath = xformPath.AppendChild(geomPath.name) omni.kit.commands.execute("MovePrimCommand", path_from=self.GEOM_PATH, path_to=newGeomPath) instancer.GetPrototypesRel().ClearTargets(removeSpec=True) instancer.GetPrototypesRel().AddTarget(xformPath) await wait_for_update() set_transform_helper(xformPath, scale=Gf.Vec3d(1, 2, 1)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pi_ancestralProtoXform.png", 1e-4) omni.kit.commands.execute("MovePrimCommand", path_from=newGeomPath, path_to=self.GEOM_PATH) instancer.GetPrototypesRel().ClearTargets(removeSpec=True) instancer.GetPrototypesRel().AddTarget(geomPath) self.ctx.get_stage().RemovePrim(xformPath) # OM-81682 - verify the prototype transform does not include the transform above the prototype root set_transform_helper(self.GEOM_PATH, scale=Gf.Vec3d(1, 1, 1)) await wait_for_update() parentXformPath = geomPath.GetParentPath().AppendChild('Parent') UsdGeom.Xform.Define(self.ctx.get_stage(), parentXformPath) newXformPath = parentXformPath.AppendChild('Xform') UsdGeom.Xform.Define(self.ctx.get_stage(), newXformPath) newGeomPath = newXformPath.AppendChild(geomPath.name) omni.kit.commands.execute("MovePrimCommand", path_from=self.GEOM_PATH, path_to=newGeomPath) set_transform_helper(newXformPath, scale=Gf.Vec3d(1, 2, 1)) set_transform_helper(parentXformPath, scale=Gf.Vec3d(2, 2, 2)) instancer.GetPrototypesRel().ClearTargets(removeSpec=True) instancer.GetPrototypesRel().AddTarget(newXformPath) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pi_ancestralProtoXform.png") omni.kit.commands.execute("MovePrimCommand", path_from=newGeomPath, path_to=self.GEOM_PATH) self.ctx.get_stage().RemovePrim(parentXformPath) set_transform_helper(self.GEOM_PATH, scale=Gf.Vec3d(2, 1, 2)) instancer.GetPrototypesRel().ClearTargets(removeSpec=True) instancer.GetPrototypesRel().AddTarget(self.GEOM_PATH) async def pi_all(self): await self.pi_create() self.remove_point_instancer() await self.pi_protoIndices() self.remove_point_instancer() await self.pi_invisibleIds() self.remove_point_instancer() # Transforms await self.pi_orientations() self.remove_point_instancer() await self.pi_scales() self.remove_point_instancer() self.create_point_instancer() await self.transform_translate() self.remove_point_instancer() self.create_point_instancer() await self.transform_rotate() self.remove_point_instancer() self.create_point_instancer() await self.transform_scale() self.remove_point_instancer() await self.pi_protoXform() self.remove_point_instancer()
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_hydra_points.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 omni.timeline from .test_hydra_common import RtxHydraTest, RtxHydraMaterialsTest, RtxHydraInstancerTest from .test_common import wait_for_update, postLoadTestSettings from pxr import Sdf, UsdGeom, UsdShade DEFAULT_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)] class TestRtxHydraPoints(RtxHydraTest): TEST_PATH = "hydra/points" PRIM_PATH = "/World/pts" async def display_color(self): # Constant geom = self.create_geometry() geom.CreateDisplayColorPrimvar("constant").Set([(0, 1, 0)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "displayColorConstant.png") return geom async def widths(self): # Default geom = self.create_geometry() geom.GetWidthsAttr().Clear() self.set_settings({"/persistent/rtx/hydra/points/defaultWidth": 35}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "widthDefault.png") self.set_settings({"/persistent/rtx/hydra/points/defaultWidth": 45}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "widthDefault2.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Constant geom = self.create_geometry() geom.SetWidthsInterpolation("constant") geom.CreateWidthsAttr().Set([20]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "widthConstant.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Vertex geom = self.create_geometry() geom.CreateWidthsAttr().Set([20, 15, 10, 25, 30, 35, 40, 45]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "widthVertex.png") async def points(self): pts = [DEFAULT_POINTS, [(-50, -50, -50), (150, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)]] await self.attribute_test_case(self.create_geometry, "points", Sdf.ValueTypeNames.Point3f, pts, ["geom.png", "points.png"]) async def skipProcessing(self): geom = self.create_geometry() geom.GetPrim().CreateAttribute("omni:rtx:skip", Sdf.ValueTypeNames.Bool).Set(True) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "empty.png") class TestRtxHydraPrimitiveDrawingPoints(TestRtxHydraPoints): TEST_PATH = "hydra/points/primitivedrawing" PRIM_PATH = "/World/pts" def create_geometry(self, name=PRIM_PATH): pts = UsdGeom.Points.Define(self.ctx.get_stage(), name) pts.CreatePointsAttr(DEFAULT_POINTS) pts.CreateWidthsAttr([10, 10, 10, 10, 5, 5, 15, 15]) UsdGeom.PrimvarsAPI(pts).CreatePrimvar("usePrimitiveDrawing", Sdf.ValueTypeNames.Bool).Set(True) UsdGeom.PrimvarsAPI(pts).CreatePrimvar("screenSpacePrimitiveDrawing", Sdf.ValueTypeNames.Bool).Set(True) return pts async def test_visibility(self): """ Test hydra points - visibility """ await self.visibility() async def test_transform(self): """ Test hydra points - tranform """ await self.transform_all() async def test_displayColor(self): """ Test hydra points - change display color """ geom = await self.display_color() # Vertex geom.CreateDisplayColorPrimvar("vertex").Set([(0, 1, 0), (1, 1, 0), (0, 1, 1), (1, 0, 1), (1, 0, 0), (0, 0, 1), (0, 1, 0), (1, 1, 0)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "displayColorVertex.png") async def test_widths(self): """ Test hydra points - change widths """ await self.widths() async def test_points(self): """ Test hydra points - update points """ await self.points() async def test_skipProcessing(self): """ Test hydra points - skipProcessing attribute """ await self.skipProcessing() class TestRtxHydraPrimitiveDrawingPointsInstancer(RtxHydraInstancerTest): # TODO full cover scene instancer with tests TEST_PATH = "hydra/points/primitivedrawing/instancer" GEOM_PATH = RtxHydraInstancerTest.PRIM_PATH + "/pts" def create_geometry(self, name=GEOM_PATH): pts = UsdGeom.Points.Define(self.ctx.get_stage(), name) pts.CreatePointsAttr(DEFAULT_POINTS) pts.CreateWidthsAttr([10, 10, 10, 10, 5, 5, 15, 15]) UsdGeom.PrimvarsAPI(pts).CreatePrimvar("usePrimitiveDrawing", Sdf.ValueTypeNames.Bool).Set(True) UsdGeom.PrimvarsAPI(pts).CreatePrimvar("screenSpacePrimitiveDrawing", Sdf.ValueTypeNames.Bool).Set(True) return pts async def test_sceneInstancer(self): """ Test hydra points scene instancer """ await self.si_all() async def test_pointInstancer(self): """ Test hydra points point instancer """ await self.pi_all() class UNSTABLE_TestRtxHydraProceduralPoints_UNSTABLE(TestRtxHydraPoints): TEST_PATH = "hydra/points/procedural" PRIM_PATH = "/World/pts" def create_geometry(self, name=PRIM_PATH): pts = UsdGeom.Points.Define(self.ctx.get_stage(), name) pts.CreatePointsAttr(DEFAULT_POINTS) pts.CreateWidthsAttr([40, 30, 30, 20, 15, 15, 35, 35]) return pts async def test_visibility(self): """ Test hydra points - visibility """ await self.visibility() async def test_doNotCastShadow(self): """ Test hydra points - doNotCastShadow toggle """ self.create_geometry_with_floor() await self.toggle_primvar(self.PRIM_PATH, "doNotCastShadows") async def test_matteObject(self): """ Test hydra points - isMatteObject toggle """ self.create_geometry_with_floor() await self.matte() async def test_hideForCamera(self): """ Test hydra points - hideForCamera toggle """ self.create_geometry_with_floor() await self.toggle_primvar(self.PRIM_PATH, "hideForCamera") async def test_transform(self): """ Test hydra points - tranform """ await self.transform_all() async def test_displayColor(self): """ Test hydra points - change display color """ await self.display_color() async def test_widths(self): """ Test hydra points - change widths """ await self.widths() async def test_points(self): """ Test hydra points - update points """ await self.points() self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # OM-45604, OM-43655 # Delayed points assignment geom = UsdGeom.Points.Define(self.ctx.get_stage(), self.PRIM_PATH) geom.CreateWidthsAttr([40, 30, 30, 20, 15, 15, 35, 35]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "empty.png", 1e-4) attr = geom.CreatePointsAttr(DEFAULT_POINTS) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "geom.png", 1e-4) # OM-43655 - remove point attr.Set(DEFAULT_POINTS[:-1]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "pointsRemovedOne.png", 1e-4) async def test_skip_processing(self): """ Test hydra points - skipProcessing attribute """ await self.skipProcessing() async def test_texCoords(self): self.set_settings({"/rtx/debugView/target": "texcoord1"}) self.create_geometry() prim = self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH) attr = UsdGeom.PrimvarsAPI(prim).CreatePrimvar("uv1", Sdf.ValueTypeNames.Float2Array, UsdGeom.Tokens.vertex) uvVertexSet = [(1, 0), (0.15, 0.5), (0.3, 0.5), (0.5, 0.5), (0.7, 0.5), (0.85, 0.5), (1, 0.5), (1, 1)] attr.Set(uvVertexSet) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "texCoords.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) async def test_timeSampled(self): """ Test hydra points - verify time sample animation works. """ super().open_usd("hydra/points_timeSampled_001.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) timeline = omni.timeline.get_timeline_interface() # Regression test for OM-96462, where time-sampled xform was impairing update of time-sampled points await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "points_timeSampled_frame0.png") # Advance a few frames and capture another frame for t in range(12): timeline.forward_one_frame() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "points_timeSampled_frame12.png") class UNSTABLE_TestRtxHydraProceduralPointsInstancer_UNSTABLE(RtxHydraInstancerTest): # TODO full cover scene instancer with tests TEST_PATH = "hydra/points/procedural/instancer" GEOM_PATH = RtxHydraInstancerTest.PRIM_PATH + "/pts" def create_geometry(self, name=GEOM_PATH): pts = UsdGeom.Points.Define(self.ctx.get_stage(), name) pts.CreatePointsAttr(DEFAULT_POINTS) pts.CreateWidthsAttr([40, 30, 30, 20, 15, 15, 35, 35]) return pts async def test_sceneInstancer(self): """ Test hydra points - scene instancer """ await self.si_all() async def test_pointInstancer(self): """ Test hydra points - point instancer """ await self.pi_all() class UNSTABLE_TestRtxHydraProceduralPointsMaterials_UNSTABLE(RtxHydraMaterialsTest): TEST_PATH = "hydra/points/procedural/material" PRIM_PATH = "/World/pts" def create_geometry(self, name=PRIM_PATH): pts = UsdGeom.Points.Define(self.ctx.get_stage(), name) pts.CreatePointsAttr([(-50, 0, 0), (50, 0, 0)]) pts.CreateWidthsAttr([50, 25]) return pts async def test_materials(self): """ Test hydra points - materials """ materials = ["Green", "Red"] looksPath = "/World/Looks/" # Set and change material geomPrim = self.create_geometry().GetPrim() for m in materials: self.bind_material(geomPrim, looksPath + m) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "mat_{}.png".format(m)) # Unbind material it should fallback to basic material UsdShade.MaterialBindingAPI(geomPrim).UnbindAllBindings() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "mat_base.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH)
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_hydra_volume.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 from .test_hydra_common import RtxHydraTest from .test_common import set_transform_helper, wait_for_update from pxr import Gf, UsdVol class TestRtxHydraVolume(RtxHydraTest): TEST_PATH = "hydra/volume" PRIM_PATH = "/World/volume" def create_geometry(self, name=PRIM_PATH): open_vdb_asset = UsdVol.OpenVDBAsset.Define(self.ctx.get_stage(), name + "/OpenVDBAsset") open_vdb_asset.GetFilePathAttr().Set(self.get_volumes_path("sphere.vdb")) open_vdb_asset.GetFieldNameAttr().Set("density") volume = UsdVol.Volume.Define(self.ctx.get_stage(), name) volume.CreateFieldRelationship("density", open_vdb_asset.GetPath()) set_transform_helper(volume.GetPath(), translate=Gf.Vec3d(0, 150, 0), scale=Gf.Vec3d(20.0, 20.0, 20.0)) return volume # simple test, create a volume with a OpenVDB asset # Unstable via OM-54845 async def test_UNSTABLE_create_UNSTABLE(self): self.add_floor() self.create_geometry() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "create_sphere.png", threshold=1e-3) # test changing the OpenVDBAsset file path # Unstable via OM-54845 async def test_UNSTABLE_change_to_torus_UNSTABLE(self): self.add_floor() self.create_geometry() open_vdb_asset = UsdVol.OpenVDBAsset(self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH + "/OpenVDBAsset")) open_vdb_asset.GetFilePathAttr().Set(self.get_volumes_path("torus.vdb")) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "change_to_torus.png", threshold=1e-3)
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_example.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.app import omni.kit.commands import omni.kit.undo import omni.kit.test from .test_common import RtxTest, testSettings, postLoadTestSettings, wait_for_update from pxr import UsdGeom class TestRtxExample1(RtxTest): """ Example of rtx test which creates box and capture screenshot Hints: for python debug insert line below and attach to kit process in VS Code omni.kit.debug.python.breakpoint() """ # override resolution WINDOW_SIZE = (512, 512) async def setUp(self): await super().setUp() self.set_settings(testSettings) omni.usd.get_context().new_stage() # Important: it should be called before `setUp` method as it reset settings and stage. self.add_dir_light() await omni.kit.app.get_app().next_update_async() # Wait stage loading self.set_settings(postLoadTestSettings) def create_mesh(self): box = UsdGeom.Mesh.Define(self.ctx.get_stage(), "/World/box") box.CreatePointsAttr([(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)]) box.CreateFaceVertexCountsAttr([4, 4, 4, 4, 4, 4]) box.CreateFaceVertexIndicesAttr([0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5]) box.CreateSubdivisionSchemeAttr("none") return box # Unstable via OM-58681 async def test_UNSTABLE_rtx_example_create_mesh_UNSTABLE(self): """ Test example - create mesh """ self.create_mesh() await wait_for_update() await self.capture_and_compare("example", "mesh.png") async def test_rtx_example_check_mesh(self): """ Test example - check mesh """ box = self.create_mesh() points = box.GetPointsAttr().Get() face_indices = box.GetFaceVertexIndicesAttr().Get() unique_indices = set(face_indices) self.assertTrue(len(points) == len(unique_indices)) class TestRtxExample2(RtxTest): async def setUp(self): await super().setUp() self.set_settings(testSettings) self.open_usd("bunny.obj.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) self.set_camera((6.969233739993722, 6.969233739993723, 6.969233739993719), (0, 0, 0)) async def test_UNSTABLE_rtx_example_open_usd_UNSTABLE(self): """ Test example - open usd file """ await wait_for_update() await self.capture_and_compare("example", "usd.png", 1e-4)
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_usdlux_schema_compat.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.app import omni.kit.test from .test_common import RtxTest, testSettings, postLoadTestSettings, wait_for_update from pxr import UsdGeom, UsdLux class TestUsdLuxSchemaCompat(RtxTest): TEST_PATH = "hydra/usdlux" async def test_usdlux_inputs_prefix(self): """ Test that the compatibility workaround for UsdLux schema changes that requires an inputs: prefix on attributes works. """ test_file_path = "hydra/simpleSphereLightUnprefixed.usda" super().open_usd(test_file_path) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "lightAttributes.png") async def test_usdlux_light_with_both_attributes(self): """ Test that the delegate chooses inputs: attributes when both inputs and non-inputs are authored. The usda for this test has these properties defined: float inputs:intensity = 30000 float intensity = 90000000 """ test_file_path = "hydra/simpleSphereLightBothAttributes.usda" super().open_usd(test_file_path) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "lightAttributes.png")
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_hydra_mesh.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.app import omni.kit.commands import omni.kit.undo import omni.kit.test import omni.timeline import carb.settings from .test_hydra_common import RtxHydraTest, RtxHydraMaterialsTest, RtxHydraInstancerTest from .test_common import postLoadTestSettings, set_transform_helper, wait_for_update from pxr import Vt, Gf, Sdf, UsdGeom, UsdShade cubePts = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)] cubeFaceVCount = [4, 4, 4, 4, 4, 4] cubeIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5] class TestRtxHydraMesh(RtxHydraTest): TEST_PATH = "hydra/mesh" PRIM_PATH = "/World/box" async def setUp(self): await super().setUp() timeline = omni.timeline.get_timeline_interface() timeline.set_target_framerate(timeline.get_time_codes_per_seconds()) def create_geometry(self, name=PRIM_PATH): box = UsdGeom.Mesh.Define(self.ctx.get_stage(), name) box.CreatePointsAttr(cubePts) box.CreateFaceVertexCountsAttr(cubeFaceVCount) box.CreateFaceVertexIndicesAttr(cubeIndices) box.CreateSubdivisionSchemeAttr("none") return box # # Common tests for mesh # async def test_visibility(self): """ Test hydra mesh - visibility """ await self.visibility() # OM-34158 # Verify proper refresh when points are moved while the mesh is invisible. prim = self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH) mesh = UsdGeom.Mesh(prim) points = mesh.GetPointsAttr().Get() for idx, p in enumerate(points): points[idx] = p + Gf.Vec3f(100, 0, 0) mesh.GetPointsAttr().Set(points) await wait_for_update() mesh.GetVisibilityAttr().Set(UsdGeom.Tokens.inherited) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "boxPtsMovedWhileInvisible.png") async def test_doNotCastShadow(self): """ Test hydra mesh - doNotCastShadow toggle """ self.create_geometry_with_floor() # OM-58993: Properly cast shadows. await self.toggle_primvar(self.PRIM_PATH, "doNotCastShadows") # TODO setup scene which shows the difference # async def test_shadowTerminatorFix(self): # """ # Test hydra mesh - enableShadowTerminatorFix toggle # """ # self.create_geometry_with_floor() # await self.toggle_primvar(self.PRIM_PATH, "enableShadowTerminatorFix") async def test_matteObject(self): """ Test hydra mesh - isMatteObject toggle """ self.create_geometry_with_floor() await self.matte() async def test_hideForCamera(self): """ Test hydra mesh - hideForCamera toggle """ self.create_geometry_with_floor() await self.toggle_primvar(self.PRIM_PATH, "hideForCamera") async def test_wireframe(self): """ Test hydra mesh - wireframe toggle """ self.create_geometry() self.set_settings({"/rtx/wireframe/wireframeThickness": 10}) await self.toggle_primvar(self.PRIM_PATH, "wireframe", baseGoldenName="geom.png", threshould=1e-7) async def test_singleSided(self): """ Test hydra mesh - singleSided toggle """ await self.single_sided() async def test_pickable(self): """ Test hydra mesh - pickable flag toggle """ await self.pickable() # OM-3262 Verify proper refresh when authoring purpose async def test_purpose(self): """ Test hydra mesh - purpose toggle """ self.set_settings({'/persistent/app/hydra/displayPurpose/guide': False}) self.create_geometry() geom = self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH) UsdGeom.Imageable(geom).CreatePurposeAttr().Set(UsdGeom.Tokens.guide) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "purpose.png") # OM-62070 # Verify mesh visibility updates when changing global setting self.set_settings({'/persistent/app/hydra/displayPurpose/guide': True}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "guideVisEnable.png") self.set_settings({'/persistent/app/hydra/displayPurpose/guide': False}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "guideVisDisable.png") # Verify inherited purpose authoring self.set_settings({'/persistent/app/hydra/displayPurpose/guide': False}) super().open_usd("hydra/inheritedPurpose.usda") scope = self.ctx.get_stage().GetPrimAtPath('/World/Scope') UsdGeom.Imageable(scope).CreatePurposeAttr().Set(UsdGeom.Tokens.guide) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "inheritedGuidePurpose.png") UsdGeom.Imageable(scope).GetPurposeAttr().Clear() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "inheritedDefaultPurpose.png", 5e-5) # OM-32623 # Verify proper population of new repr when toggling saved guide purpose to default. self.set_settings({'/persistent/app/hydra/displayPurpose/guide': False}) super().open_usd("hydra/guideRepr.usda") geom = self.ctx.get_stage().GetPrimAtPath('/World/Cube') UsdGeom.Imageable(geom).GetPurposeAttr().Clear() await wait_for_update() # Allow for a bit of noise between local run and TC await self.capture_and_compare(self.TEST_PATH, "guideRepr.png", 1e-4) async def test_transform(self): """ Test hydra mesh - tranform """ await self.transform_all() # OM-26055 # Verify that fallback xform values are properly initialized. super().open_usd("hydra/OM-26055_scene.usda") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "OM-26055_scene.png") # OM-34447 # Verify that xforms properly resync when initially present with no value. super().open_usd("hydra/empty_xform_mtx.usda") stage = self.ctx.get_stage() set_transform_helper("/World/Mesh", translate=Gf.Vec3d(200, 0, 0)) await wait_for_update() # Looser threshold, as the test is somewhat noisy on Linux TC await self.capture_and_compare(self.TEST_PATH, "resync-empty_xform_mtx.png", 1e-4) # Verify that ancestral xforms properly affect invisible geometry. super().open_usd("hydra/simpleCubeAncestralXforms.usda") stage = self.ctx.get_stage() await wait_for_update() intermediateXform = UsdGeom.Imageable(stage.GetPrimAtPath("/World/Xform/Xform_01")) intermediateXform.MakeVisible(False) await wait_for_update() ancestralXform = UsdGeom.XformCommonAPI(stage.GetPrimAtPath("/World/Xform")) ancestralXform.SetTranslate((100,0,0)) await wait_for_update() intermediateXform.MakeVisible(True) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "postVisAncestralXform.png") async def test_backfaceCulling(self): """ Test hydra mesh - verify toggling of backface culling is correctly propagated """ # Scene loads without backface culling: a green place partially covers a gray sphere super().open_usd("hydra/backFaceCulling.usda") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "backfaceCulling_off.png") self.set_settings({"/rtx/hydra/faceCulling/enabled": True}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "backfaceCulling_on.png") stage = self.ctx.get_stage() prim = stage.GetPrimAtPath("/World/Plane") attr = prim.GetAttribute("singleSided") attr.Set(False) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "backfaceCulling_doublesided.png") async def test_displayColor(self): """ Test hydra mesh - change display color """ await self.geometry_with_attribute("primvars:displayColor", Sdf.ValueTypeNames.Color3f, [(0, 1, 0)]) await self.capture_and_compare(self.TEST_PATH, "displayColor.png") # OM-58993 - Changing only display color should work prim = self.ctx.get_stage().GetPrimAtPath(self.PRIM_PATH) mesh = UsdGeom.Mesh(prim) displayColorAttr = mesh.GetDisplayColorAttr() displayColorAttr.Set([(0, 0, 1)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "displayColorChange.png") stage = self.ctx.get_stage() prim = stage.GetPrimAtPath(self.PRIM_PATH) mesh = UsdGeom.Mesh(prim) attr = prim.GetAttribute("primvars:displayColor") primvar = UsdGeom.Primvar(attr) primvar.SetInterpolation(UsdGeom.Tokens.uniform) colors = [(1, 0, 0), (1, 1, 0), (0, 1, 0), (0, 1, 1), (0, 0, 1), (1, 0, 1)] attr.Set(colors) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "displayColorUniform.png") primvar.SetInterpolation(UsdGeom.Tokens.vertex) colors = [(1, 0, 0), (1, 0, 1), (1, 1, 1), (1, 1, 0), (0, 0, 0), (0, 0, 1), (0, 1, 1), (0, 1, 0)] attr.Set(colors) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "displayColorVertex.png") async def test_primvarBinding(self): """ Test hydra mesh - varify effects of material edits to geometry primvar binding """ # OM-83102 - the file should open with a material lookup pointing to no primvar. It should render # a default magenta color super().open_usd("hydra/primvars_edit.usda") await self.capture_and_compare(self.TEST_PATH, "primvarNotFound_magenta.png") # changing the default lookup color to yellow prim = self.ctx.get_stage().GetPrimAtPath("/World/Looks/mtl_emissive/data_lookup_color") attr = prim.GetAttribute("inputs:default_value") attr.Set((1, 1, 0)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "primvarNotFound_yellow.png") # specify an existing primvar to lookup attr = prim.GetAttribute("inputs:name") attr.Set("blue") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "primvarFound_blue.png") # change to a different existing primvar to lookup attr = prim.GetAttribute("inputs:name") attr.Set("green") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "primvarFound_green.png") # change the default value to red now should have no effect attr = prim.GetAttribute("inputs:default_value") attr.Set((1, 0, 0)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "primvarFound_still_green.png") # change to a different not-existing primvar to lookup, now it should render the default color set in previous step attr = prim.GetAttribute("inputs:name") attr.Set("foo_bar") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "primvarNotFound_red.png") # # Mesh specific tests # async def test_topology(self): """ Test hydra mesh - topology changes - transform cube to wedge """ box = self.create_geometry() await wait_for_update() # Wait 5 frames to be sure that we update topology box.CreateFaceVertexCountsAttr([4, 3, 4, 3, 4]) box.CreateFaceVertexIndicesAttr([0, 1, 3, 2, 0, 4, 1, 0, 2, 7, 4, 2, 3, 7, 1, 4, 7, 3]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "topology.png") async def subdiv_default(self, shouldWait=False): box = self.create_geometry() if shouldWait: await wait_for_update() subdivAttr = box.GetSubdivisionSchemeAttr() subdivAttr.Set("catmullClark") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "subdivDefault.png") async def test_subdiv(self): """ Test hydra mesh - subdiv """ await self.subdiv_default(shouldWait=True) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) await wait_for_update() await self.subdiv_default(shouldWait=False) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Set refinement level with setting self.set_settings({"/rtx/hydra/subdivision/refinementLevel": 2}) geom = self.create_geometry() subdivAttr = geom.GetSubdivisionSchemeAttr() subdivAttr.Set("catmullClark") geom.GetPrim().CreateAttribute("refinementLevel", Sdf.ValueTypeNames.Int).Set(0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "subdivRefinementLevel.png", 1e-4) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Set refinement level override from usd self.set_settings({"/rtx/hydra/subdivision/refinementLevel": 0}) geom = self.create_geometry() subdivAttr = geom.GetSubdivisionSchemeAttr() subdivAttr.Set("catmullClark") geom.GetPrim().CreateAttribute("refinementEnableOverride", Sdf.ValueTypeNames.Bool).Set(True) geom.GetPrim().CreateAttribute("refinementLevel", Sdf.ValueTypeNames.Int).Set(2) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "subdivRefinementLevel.png", 1e-4) # OM-21340 Verify that load of refined geometry does not crash. super().open_usd("hydra/cone_sbdv.usda") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "cone_sbdv.png", 1e-4) async def test_subdiv_toggle(self): """ Test hydra mesh - subdiv toggle on/off, this test verifies that change between regular polygons and subdiv geometry doesn't leave the mesh in a corrupt internal state. """ # OM-88053: toggle on/off sudivision surfaces on a mesh *with authored normals*. # Begin with checking the input geometry: a primitve cube with authored normals. super().open_usd("hydra/cube_subdiv.usda") geom = self.ctx.get_stage().GetPrimAtPath("/World/Cube") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "subdivToggle_off.png", 1e-4) # Enabling Catmull-Clark subdivision without changing any other option would simply # discard the authored normals, but still render the polygonal cage. subdivAttr = geom.GetAttribute("subdivisionScheme") subdivAttr.Set("catmullClark") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "subdivToggle_on_smoothNormals.png", 1e-4) # This should produce a subdivided smooth mesh. geom.CreateAttribute("refinementEnableOverride", Sdf.ValueTypeNames.Bool).Set(True) geom.CreateAttribute("refinementLevel", Sdf.ValueTypeNames.Int).Set(2) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "subdivToggle_on_subdivided.png", 1e-4) # Deform by moving a point. mesh = UsdGeom.Mesh(geom) points = mesh.GetPointsAttr().Get() points[7] = points[7] + Gf.Vec3f(0, 40, 0) mesh.GetPointsAttr().Set(points) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "subdivToggle_on_deformed.png", 1e-4) # Also test bilinear subdivision subdivAttr.Set("bilinear") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "subdivToggle_on_bilinear.png", 1e-4) # Finally this should go back to the original mesh with authored normals. subdivAttr.Set("none") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "subdivToggle_off_again.png", 1e-4) async def test_handedness(self): """ Test hydra mesh - toggle orintation between right and left handed, in a combination of triangulated mesh and quadrangulated mesh, with and without subdivision surfaces. """ # OM-113941: toggle handedness. A custom material front-facing green and back-facing red. super().open_usd("hydra/handedness_001.usda") await wait_for_update() self.set_settings(postLoadTestSettings) # This triangulated mesh is left-handed and has subdivision surface on. It also has broken normals # (a vector of zero entries) that would have resulted in a crash when toggling subdivision surfaces off. geomT = self.ctx.get_stage().GetPrimAtPath("/World/glasst_mod/SH000254198100001_Tube/SH000254198100001_Tube") # This is a mesh made of quads and right-handed geomQ = self.ctx.get_stage().GetPrimAtPath("/World/glassq/SH000254198100001_Tube/SH000254198100001_Tube") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "handedness_001_subdiv_green.png", 1e-4) # Toggle handedness geomT.GetAttribute("orientation").Set("leftHanded") # This edit would not render red in OM-113941 geomQ.GetAttribute("orientation").Set("rightHanded") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "handedness_001_subdiv_red.png", 1e-4) # Toggle subdivision surface geomT.GetAttribute("subdivisionScheme").Set("none") # This edit would crash OM-113941 geomQ.GetAttribute("subdivisionScheme").Set("catmullClark") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "handedness_001_mesh_red.png", 1e-4) # Toggle handedness again geomT.GetAttribute("orientation").Set("rightHanded") geomQ.GetAttribute("orientation").Set("leftHanded") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "handedness_001_mesh_green.png", 1e-4) async def test_points(self): """ Test hydra mesh - update points """ pts = [cubePts, cubePts.copy()] pts[1][1] = (150, -50, -50) await self.attribute_test_case(self.create_geometry, "points", Sdf.ValueTypeNames.Point3f, pts, ["geom.png", "points.png"]) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # OM-76321: this set of tests [interleavedPointsEdit_*] verifies intermittent primvar edits during # regular points edit. Special care is due because of the minimal updates we do to mesh VBs # Interleaved points edit - initial state, this should render a blue cube. geom = self.create_geometry() mesh = UsdGeom.Mesh(geom) displayColorAttr = mesh.GetDisplayColorAttr() displayColorAttr.Set([(0, 0, 1)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "interleavedPointsEdit_0.png", 1e-4) # Interleaved points edit - first edit, the cube is slightly deformed and still blue. # This first edit goes through full mesh update to create mutable buffers (not deduplicated). pts[1][1] = (60, -50, -50) geom.GetPointsAttr().Set(pts[1]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "interleavedPointsEdit_1.png", 1e-4) # Interleaved points edit - second edit, the cube is deformed again and is now set to green # The second edit goes through meshUpdateVertices and creates a second VB. pts[1][1] = (70, -50, -50) geom.GetPointsAttr().Set(pts[1]) displayColorAttr.Set([(0, 1, 0)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "interleavedPointsEdit_2.png", 1e-4) # Interleaved points edit - third edit, the cube is more deformed and should still be green # The last edit verifies that the previous edit to primvars need to be propagated to The # VB ping-pong swap. If this fails the cube will be blue (as in previous frame) instead of green. pts[1][1] = (80, -50, -50) geom.GetPointsAttr().Set(pts[1]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "interleavedPointsEdit_3.png", 1e-4) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) async def test_normals(self): """ Test hydra mesh - update normals """ self.set_settings({"/rtx/debugView/target": "normal"}) # Authored face varying interpolation 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)], [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0.5, 0.5, 0), (0.5, 0.5, 0), (0.5, 0.5, 0), (0.5, 0.5, 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)]] def createGeom(): geom = self.create_geometry() geom.CreateNormalsAttr() geom.SetNormalsInterpolation("faceVarying") return geom await self.attribute_test_case(createGeom, "normals", Sdf.ValueTypeNames.Point3f, normals, ["normals.png", "normalsAuthoredFaceVarying.png"]) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Authored vertex interpolation geom = self.create_geometry() geom.GetNormalsAttr().Set([(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)]) geom.SetNormalsInterpolation("vertex") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "normalsAuthoredVertex.png", 1e-4) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Authored uniform interpolation geom = self.create_geometry() geom.GetNormalsAttr().Set([(0, -1, 0), (0, 0, -1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, 1, 0)]) geom.SetNormalsInterpolation("uniform") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "normals.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Authored constant interpolation geom = self.create_geometry() geom.GetNormalsAttr().Set([(0, 1, 0)]) geom.SetNormalsInterpolation("constant") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "normalsAuthoredConstant.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Generated smooth geom = self.create_geometry() geom.GetSubdivisionSchemeAttr().Set("catmullClark") geom.GetPrim().CreateAttribute("refinementLevel", Sdf.ValueTypeNames.Int).Set(0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "normalsGeneratedSmooth.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Generated flat self.create_geometry() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "normals.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # TBN Frame mode - generate normals on gpu self.set_settings({"/rtx/hydra/TBNFrameMode": 2}) geom = self.create_geometry() geom.GetSubdivisionSchemeAttr().Set("catmullClark") geom.GetPrim().CreateAttribute("refinementLevel", Sdf.ValueTypeNames.Int).Set(0) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "normalsGeneratedSmooth-gpu.png", 5e-5) self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # OM-94303: Unstable due to golden image mismatch async def test_UNSTABLE_gpu_normals(self): """ Test hydra mesh - gpu normals """ super().open_usd("hydra/normals_gen_001.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) self.set_settings({"/rtx/hydra/TBNFrameMode": 2}) self.set_settings({"/rtx/debugView/target": "materialGeometryNormal"}) await self.capture_and_compare(self.TEST_PATH, "gpu_normals_creation.png") # Generated on GPU with reference normals stage = self.ctx.get_stage() prim = stage.GetPrimAtPath("/World/pSphere2") mesh = UsdGeom.Mesh(prim) points = mesh.GetPointsAttr().Get() # By moving a point we force the generation of normals. Regression test for OM-90364 / MR !24845 points[16] = Gf.Vec3f(0, 11, 0) mesh.GetPointsAttr().Set(points) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "gpu_normals_editing.png") async def test_texCoords(self): """ Test hydra mesh - update tex coords """ self.set_settings({"/rtx/debugView/target": "texcoord0"}) # faceVarying geom = self.create_geometry() # https://github.com/PixarAnimationStudios/USD/commit/592b4d39edf5daf0534d467e970c95462a65d44b # UsdGeom.Imageable.CreatePrimvar deprecated in v19.03 and removed in v22.08 UsdGeom.PrimvarsAPI(geom.GetPrim()).CreatePrimvar("st", Sdf.ValueTypeNames.TexCoord2fArray, UsdGeom.Tokens.faceVarying).Set( [(1, 0), (0, 0), (0, 1), (1, 1)]) geom.GetPrim().CreateAttribute("primvars:st:indices", Sdf.ValueTypeNames.IntArray, False).Set( [0, 1, 2, 3, 0, 3, 2, 1, 0, 1, 2, 3, 0, 1, 2, 3, 0, 3, 2, 1, 0, 3, 2, 1]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "texCoordsFaceVarying.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # vertex or varying (they are the same for a mesh geometry) geom = self.create_geometry() # https://github.com/PixarAnimationStudios/USD/commit/592b4d39edf5daf0534d467e970c95462a65d44b # UsdGeom.Imageable.CreatePrimvar deprecated in v19.03 and removed in v22.08 UsdGeom.PrimvarsAPI(geom.GetPrim()).CreatePrimvar("st", Sdf.ValueTypeNames.TexCoord2fArray, UsdGeom.Tokens.vertex).Set( [(0, 0), (0.1, 0), (0.2, 0), (0.3, 0), (0.4, 0), (0.5, 0), (0.6, 0), (0.7, 0)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "texCoordsVertex.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # uniform geom = self.create_geometry() # https://github.com/PixarAnimationStudios/USD/commit/592b4d39edf5daf0534d467e970c95462a65d44b # UsdGeom.Imageable.CreatePrimvar deprecated in v19.03 and removed in v22.08 UsdGeom.PrimvarsAPI(geom.GetPrim()).CreatePrimvar("st", Sdf.ValueTypeNames.TexCoord2fArray, UsdGeom.Tokens.uniform).Set( [(0, 0), (0, 0.1), (0, 0.2), (0, 0.3), (0, 0.4), (0, 0.5)]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "texCoordsUniform.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) async def test_tangents(self): """ Test hydra mesh - update tangents """ self.set_settings({"/rtx/debugView/target": "tangentu"}) # default - gpu geom = self.create_geometry() # https://github.com/PixarAnimationStudios/USD/commit/592b4d39edf5daf0534d467e970c95462a65d44b # UsdGeom.Imageable.CreatePrimvar deprecated in v19.03 and removed in v22.08 UsdGeom.PrimvarsAPI(geom.GetPrim()).CreatePrimvar("st", Sdf.ValueTypeNames.TexCoord2fArray, UsdGeom.Tokens.faceVarying).Set( [(1, 0), (0, 0), (0, 1), (1, 1)]) geom.GetPrim().CreateAttribute("primvars:st:indices", Sdf.ValueTypeNames.IntArray, False).Set( [0, 1, 2, 3, 0, 3, 2, 1, 0, 1, 2, 3, 0, 1, 2, 3, 0, 3, 2, 1, 0, 3, 2, 1]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "tangentsU.png") self.set_settings({"/rtx/debugView/target": "tangentv"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "tangentsV.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # cpu - uniform geom = self.create_geometry() geom.GetNormalsAttr().Set([(0, -1, 0), (0, 0, -1), (1, 0, 0), (0, 0, 1), (-1, 0, 0), (0, 1, 0)]) geom.SetNormalsInterpolation("uniform") # https://github.com/PixarAnimationStudios/USD/commit/592b4d39edf5daf0534d467e970c95462a65d44b # UsdGeom.Imageable.CreatePrimvar deprecated in v19.03 and removed in v22.08 UsdGeom.PrimvarsAPI(geom.GetPrim()).CreatePrimvar("st", Sdf.ValueTypeNames.TexCoord2fArray, UsdGeom.Tokens.faceVarying).Set( [(1, 0), (0, 0), (0, 1), (1, 1)]) geom.GetPrim().CreateAttribute("primvars:st:indices", Sdf.ValueTypeNames.IntArray, False).Set( [0, 1, 2, 3, 0, 3, 2, 1, 0, 1, 2, 3, 0, 1, 2, 3, 0, 3, 2, 1, 0, 3, 2, 1]) self.set_settings({"/rtx/debugView/target": "tangentu"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "tangentsU.png") self.set_settings({"/rtx/debugView/target": "tangentv"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "tangentsV.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # cpu - vertex geom = self.create_geometry() geom.GetNormalsAttr().Set([(-0.57735, -0.57735, -0.57735), (0.57735, -0.57735, -0.57735), (-0.57735, -0.57735, 0.57735), (0.57735, -0.57735, 0.57735), (-0.57735, 0.57735, -0.57735), (0.57735, 0.57735, -0.57735), (0.57735, 0.57735, 0.57735), (-0.57735, 0.57735, 0.57735)]) geom.SetNormalsInterpolation("vertex") # https://github.com/PixarAnimationStudios/USD/commit/592b4d39edf5daf0534d467e970c95462a65d44b # UsdGeom.Imageable.CreatePrimvar deprecated in v19.03 and removed in v22.08 UsdGeom.PrimvarsAPI(geom.GetPrim()).CreatePrimvar("st", Sdf.ValueTypeNames.TexCoord2fArray, UsdGeom.Tokens.faceVarying).Set( [(1, 0), (0, 0), (0, 1), (1, 1)]) geom.GetPrim().CreateAttribute("primvars:st:indices", Sdf.ValueTypeNames.IntArray, False).Set( [0, 1, 2, 3, 0, 3, 2, 1, 0, 1, 2, 3, 0, 1, 2, 3, 0, 3, 2, 1, 0, 3, 2, 1]) self.set_settings({"/rtx/debugView/target": "tangentu"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "tangentsVertexU.png") self.set_settings({"/rtx/debugView/target": "tangentv"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "tangentsVertexV.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # cpu - facevarying geom = self.create_geometry() geom.GetNormalsAttr().Set([(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)]) geom.SetNormalsInterpolation("faceVarying") # https://github.com/PixarAnimationStudios/USD/commit/592b4d39edf5daf0534d467e970c95462a65d44b # UsdGeom.Imageable.CreatePrimvar deprecated in v19.03 and removed in v22.08 UsdGeom.PrimvarsAPI(geom.GetPrim()).CreatePrimvar("st", Sdf.ValueTypeNames.TexCoord2fArray, UsdGeom.Tokens.faceVarying).Set( [(1, 0), (0, 0), (0, 1), (1, 1)]) geom.GetPrim().CreateAttribute("primvars:st:indices", Sdf.ValueTypeNames.IntArray, False).Set( [0, 1, 2, 3, 0, 3, 2, 1, 0, 1, 2, 3, 0, 1, 2, 3, 0, 3, 2, 1, 0, 3, 2, 1]) self.set_settings({"/rtx/debugView/target": "tangentu"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "tangentsFacevaryingU.png") self.set_settings({"/rtx/debugView/target": "tangentv"}) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "tangentsFacevaryingV.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) async def test_skeleton(self): """ Test hydra mesh - skeleton """ super().open_usd("hydra/skelcylinder.usda") # self.set_settings(postLoadTestSettings) await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) # create timeline = omni.timeline.get_timeline_interface() timeline.play() timeline.set_auto_update(False) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "skeleton0.png") timeline.set_current_time(1) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "skeleton1.png") timeline.set_auto_update(True) timeline.stop() # TODO remove, update # create many instances # SkinningMethod: eDualQuaternion, eClassicLinear, eWeightedBlend async def test_mesh_with_api_schemas(self): """ Verify proper population and refresh when apiSchemas are present """ # OM-24223: Verify proper mesh population when duplicating with apiSchemas present stage = self.ctx.get_stage() cube = UsdGeom.Cube.Define(stage, "/Cube") cube.GetSizeAttr().Set(50.0) # Doesn't matter which API schema is applied, just use one from core, to avoid depending on physics. # https://github.com/PixarAnimationStudios/USD/commit/6f0ce585bf5d06ca929584b515cd3bdf05d78eb3 # https://github.com/PixarAnimationStudios/USD/commit/1222ea7cd2478e576f4fc32936f781d2a7f61cd5 # https://github.com/PixarAnimationStudios/USD/commit/61fcc34d8555bb269fae49af90eab5154989392c if hasattr(UsdGeom, 'VisibilityAPI'): UsdGeom.VisibilityAPI.Apply(cube.GetPrim()) else: from pxr import UsdRender UsdRender.SettingsAPI.Apply(cube.GetPrim()) await wait_for_update() omni.kit.commands.execute("CopyPrim", path_from="/Cube", path_to="/DupeCube") self.ctx.get_selection().clear_selected_prim_paths() set_transform_helper("/DupeCube", translate=Gf.Vec3d(200, 0, 0)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "dupeWithApiSchema.png") self.ctx.get_stage().RemovePrim("/Cube") self.ctx.get_stage().RemovePrim("/DupeCube") await wait_for_update() # OM-29819: Verify proper normals after applying an API schema super().open_usd("hydra/torus_mesh.usda") await wait_for_update() stage = self.ctx.get_stage() # Doesn't matter which API schema is applied, just use one from core, to avoid depending on physics. # https://github.com/PixarAnimationStudios/USD/commit/6f0ce585bf5d06ca929584b515cd3bdf05d78eb3 # https://github.com/PixarAnimationStudios/USD/commit/1222ea7cd2478e576f4fc32936f781d2a7f61cd5 # https://github.com/PixarAnimationStudios/USD/commit/61fcc34d8555bb269fae49af90eab5154989392c if hasattr(UsdGeom, 'VisibilityAPI'): UsdGeom.VisibilityAPI.Apply(stage.GetPrimAtPath("/World/Torus")) else: from pxr import UsdRender UsdRender.SettingsAPI.Apply(stage.GetPrimAtPath("/World/Torus")) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "normalsWithApiSchema.png", 3e-4) async def test_UNSTABLE_tetMesh_UNSTABLE(self): """ Test hydra tetmesh """ # Eventually this should live in the physics repo, when omni hydra supports plugin adapters. super().open_usd("hydra/tetmesh_teddy.usda") await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "tetmesh_teddy.png", 3e-4) async def test_mesh_dedup(self): """ Verify hash collisions in mesh dedup do not crash """ # OM-64181: Verify hash collisions in mesh dedup do not crash timeline = omni.timeline.get_timeline_interface() timeline.set_current_time(0) super().open_usd("hydra/AlternatingCubePlane.usda") await wait_for_update() N = 50 while N > 0: N = N - 1 timeline.forward_one_frame() await wait_for_update() timeline.rewind_one_frame() await wait_for_update() class TestRtxHydraMeshMaterials(RtxHydraMaterialsTest): TEST_PATH = "hydra/mesh/material" PRIM_PATH = "/World/box" def create_geometry(self, name=PRIM_PATH): box = UsdGeom.Mesh.Define(self.ctx.get_stage(), name) box.CreatePointsAttr([(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)]) box.CreateFaceVertexCountsAttr([4, 4, 4, 4, 4, 4]) box.CreateFaceVertexIndicesAttr([0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5]) box.CreateSubdivisionSchemeAttr("none") return box async def test_materials(self): """ Test hydra mesh - materials """ materials = ["Green", "Red"] looksPath = "/World/Looks/" # Set and change material geomPrim = self.create_geometry().GetPrim() for m in materials: self.bind_material(geomPrim, looksPath + m) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "mat_{}.png".format(m)) # Unbind material it should fallback to basic material UsdShade.MaterialBindingAPI(geomPrim).UnbindAllBindings() await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "mat_base.png") self.ctx.get_stage().RemovePrim(self.PRIM_PATH) # Subsets subsetPath = self.PRIM_PATH + "/subset" geomPrim = self.create_geometry().GetPrim() subset = UsdGeom.Subset.Define(self.ctx.get_stage(), subsetPath) # https://github.com/PixarAnimationStudios/USD/commit/c1cdbbaa8a2dd8ecbb9722de517ef44c1a680352 # Family name required for subset material bindingas as of USD 21.11+; # has been available on subsets from the firsrt public release of USD. subset.CreateFamilyNameAttr().Set(UsdShade.Tokens.materialBind) attr = subset.CreateIndicesAttr() attr.Set([5]) self.bind_material(geomPrim, looksPath + materials[0]) self.bind_material(subset.GetPrim(), looksPath + materials[1]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "mat_subsets.png") # Update subset attr.Set([3]) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "mat_subsets2.png") # Remove subset self.ctx.get_stage().RemovePrim(subsetPath) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "mat_Green.png") class TestRtxHydraMeshInstancer(RtxHydraInstancerTest): # TODO full cover scene instancer with tests TEST_PATH = "hydra/mesh/instancer" GEOM_PATH = RtxHydraInstancerTest.PRIM_PATH + "/box" def create_geometry(self, name=GEOM_PATH): box = UsdGeom.Mesh.Define(self.ctx.get_stage(), name) box.CreatePointsAttr([(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)]) box.CreateFaceVertexCountsAttr([4, 4, 4, 4, 4, 4]) box.CreateFaceVertexIndicesAttr([0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5]) box.CreateSubdivisionSchemeAttr("none") return box async def test_sceneInstancer(self): """ Test hydra mesh scene instancer """ await self.si_all() sgInstSettingsKey = "/persistent/omnihydra/useSceneGraphInstancing" useSceneGraphInstancing = carb.settings.get_settings().get_as_bool(sgInstSettingsKey) try: async def nest_ptinst_in_sginst_test(self, enableOmniHydraScenegraphInstancing): carb.settings.get_settings().set_bool(sgInstSettingsKey, enableOmniHydraScenegraphInstancing) # OM-34669 # Verify that turning on instanceable on a hierarchy that contains # a point instancer does not corrupt parent xforms. super().open_usd("hydra/ptinst_inside_sginst.usda") await wait_for_update() stage = self.ctx.get_stage() instance = stage.GetPrimAtPath('/World/Instance') instance.SetInstanceable(True) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "ptinst_inside_sginst.png") # Verify that authoring xforms on instances over internal references refreshes properly. set_transform_helper(instance.GetPath(), translate=Gf.Vec3d(200,0,0), euler=Gf.Vec3f(0, 0, -120)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "ptinst_inside_sginst_rotated.png") # Verify that authoring xforms on instances over external references refreshes properly. super().open_usd("hydra/ref_ptinst_inside_sginst.usda") await wait_for_update() stage = self.ctx.get_stage() instance = stage.GetPrimAtPath('/World/Instance') set_transform_helper(instance.GetPath(), euler=Gf.Vec3f(0, 0, -30)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "ref_ptinst_inside_sginst_rotated.png") await nest_ptinst_in_sginst_test(self, False) await nest_ptinst_in_sginst_test(self, True) finally: carb.settings.get_settings().set_bool(sgInstSettingsKey, useSceneGraphInstancing) # OM-35643 # Verify xforms above scenegraph instance roots are honored by omni hydra scenegraph instancing. try: carb.settings.get_settings().set_bool(sgInstSettingsKey, True) super().open_usd("hydra/CubeWorld.usda") await wait_for_update() stage = self.ctx.get_stage() cubeInstance = stage.GetPrimAtPath("/CubeWorld/CubeInstance") cubeInstance.SetInstanceable(True) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "sginst_parent_xform.png", 1e-4) cubeInstance.SetInstanceable(False) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "sginst_parent_xform.png", 1e-4) finally: carb.settings.get_settings().set_bool(sgInstSettingsKey, useSceneGraphInstancing) # OM-36724 # Verify xforms in the presence of nested scenegraph instancing with omni hydra scenegraph instancing enabled for testFile in ["hydra/nestedScenegraphInstances.usda", "hydra/nestedScenegraphInstancesOff.usda"]: try: carb.settings.get_settings().set_bool(sgInstSettingsKey, True) super().open_usd(testFile) await wait_for_update() stage = self.ctx.get_stage() cubeInstance = stage.GetPrimAtPath("/World/threeCubes") cubeInstance.SetInstanceable(True) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "nested_sginst_toggle.png", 1e-4) cubeInstance.SetInstanceable(False) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "nested_sginst_toggle.png", 1e-4) set_transform_helper(cubeInstance.GetPath(), translate=Gf.Vec3d(200,0,0)) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "nested_sginst_xform_refresh.png", 1e-4) finally: carb.settings.get_settings().set_bool(sgInstSettingsKey, useSceneGraphInstancing) async def test_pointInstancer(self): """ Test hydra mesh point instancer """ await self.pi_all() # OM-30658 Verify proper population when prototype is not nested under point instancer super().open_usd("hydra/ptinst_unnested_proto.usda") await wait_for_update() # Raise threshold a bit to account for noise between local runs and TC await self.capture_and_compare(self.TEST_PATH, "ptinst_unnested_proto.png", 3e-4) # OM-32571 Verify proper population after creating an empty instancer. super().open_usd("hydra/cube_ptinst_unpopulated.usda") await wait_for_update() stage = self.ctx.get_stage() p = stage.GetPrimAtPath('/World/output') pos = p.GetAttribute('positions1').Get() ori = p.GetAttribute('orientations1').Get() scl = p.GetAttribute('scales1').Get() pi = p.GetAttribute('protoIndices1').Get() with Sdf.ChangeBlock(): p.GetAttribute('positions').Set(pos) p.GetAttribute('orientations').Set(ori) p.GetAttribute('scales').Set(scl) p.GetAttribute('protoIndices').Set(pi) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "cube_ptinst_unpopulated.png") # OM-35779 Verify proper refresh of nested point instancers super().open_usd("hydra/nested_ptinst.usda") await wait_for_update() stage = self.ctx.get_stage() prim = stage.GetPrimAtPath("/World/PointInstancer_parent") pos = prim.GetAttribute('positions').Get() new_pos = list(pos) new_pos[0] = Gf.Vec3d(300,300,0) prim.GetAttribute('positions').Set(new_pos) await wait_for_update() await self.capture_and_compare(self.TEST_PATH, "nested_ptinst.png") # OM-38291 Verify no crash with full update from Nucleus super().open_usd("hydra/OM-38291-one_ptinst.usda") await wait_for_update() stage = self.ctx.get_stage() # Mock a full update from Nucleus live edit by clearing and reloading the layer. stage.GetRootLayer().Clear() await wait_for_update() stage.GetRootLayer().Reload(True) await wait_for_update() # OM-110897 Verify no crash with nested point instancers with different dimensions super().open_usd("hydra/nested_ptinst_extradim.usda") await wait_for_update() stage = self.ctx.get_stage() await wait_for_update()
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_selectionoutline.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.app import omni.kit.commands import omni.kit.test from .test_common import RtxTest, testSettings, postLoadTestSettings, wait_for_update from pxr import UsdGeom spherePath = '/World/Sphere' cylinderPath = '/World/Cylinder' defaultColor0 = [0, 0, 0, 0] defaultColor1 = [0.7, 0.7, 0, 1] defaultColor2 = [0.7, 0, 1, 1] displayOptionSetting = "/persistent/app/viewport/displayOptions" outlineWidthSetting = "/persistent/app/viewport/outline/width" outlineColorSetting = "/persistent/app/viewport/outline/color" shadeColorSetting = "/persistent/app/viewport/outline/shadeColor" intersectionColorSetting = "/persistent/app/viewport/outline/intersection/color" outlineEnabledSetting = "/app/viewport/outline/enabled" class TestRtxSelectionOutline(RtxTest): async def setUp(self): await super().setUp() self.set_settings(testSettings) self.set_settings({displayOptionSetting: (1 << 7)}) omni.usd.get_context().new_stage() # Important: it should be called before `setUp` method as it reset settings # and stage. await omni.kit.app.get_app().next_update_async() # Wait stage loading self.set_settings(postLoadTestSettings) self.set_settings({ outlineWidthSetting: 2, outlineColorSetting: defaultColor0, shadeColorSetting: defaultColor0, intersectionColorSetting: defaultColor0, "/app/transform/operation": "select" }) self.create_scene() self.ctx.set_selection_group_outline_color(255, defaultColor1) def set_selected(self, path, select=True): self.ctx.get_selection().set_prim_path_selected(path, select, True, False, True) def create_scene(self): stage = self.ctx.get_stage() sphere = UsdGeom.Sphere.Define(stage, spherePath) sphere.CreateRadiusAttr(100) cylinder = UsdGeom.Cylinder.Define(stage, cylinderPath) cylinder.CreateHeightAttr(200) cylinder.CreateRadiusAttr(75) async def test_rtx_selectionoutline_outline1(self): """ Test SelectionOutline - Outline sphere """ self.set_selected(spherePath) await wait_for_update() await self.capture_and_compare("SelectionOutline", "Outline1.png") async def test_rtx_selectionoutline_outline2(self): """ Test SelectionOutline - Outline cylinder """ self.set_selected(cylinderPath) await wait_for_update() await self.capture_and_compare("SelectionOutline", "Outline2.png") async def test_rtx_selectionoutline_outline12(self): """ Test SelectionOutline - Outline sphere & cylinder """ self.set_selected(spherePath) self.set_selected(cylinderPath) await wait_for_update() await self.capture_and_compare("SelectionOutline", "Outline12.png") async def test_rtx_selectionoutline_intersection(self): """ Test SelectionOutline - Intersection """ self.set_settings({intersectionColorSetting: defaultColor2}) self.set_selected(spherePath) self.set_selected(cylinderPath) await wait_for_update() await self.capture_and_compare("SelectionOutline", "Intersection.png", 4e-5) async def test_UNSTABLE_rtx_selectionoutline_thick(self): """ Test SelectionOutline - Outline sphere & cylinder, thick """ self.set_settings({outlineWidthSetting: 15}) self.set_selected(spherePath) self.set_selected(cylinderPath) await wait_for_update() await self.capture_and_compare("SelectionOutline", "Thick.png") async def test_rtx_selectionoutline_blend(self): """ Test SelectionOutline - Outline cylinder with blended color """ self.set_settings({outlineWidthSetting: 15}) c = defaultColor1[:3] c.append(0.5) self.ctx.set_selection_group_outline_color(255, c) self.set_selected(cylinderPath) await wait_for_update() await self.capture_and_compare("SelectionOutline", "Blend.png") async def test_rtx_selectionoutline_multicolored(self): """ Test SelectionOutline - Outline sphere & cylinder with different colors """ self.set_settings({outlineWidthSetting: 4}) self.ctx.set_selection_group(1, spherePath) self.ctx.set_selection_group(2, cylinderPath) self.ctx.set_selection_group_outline_color(1, defaultColor1) self.ctx.set_selection_group_outline_color(2, defaultColor2) self.ctx.set_selection_group_shade_color(1, defaultColor0) self.ctx.set_selection_group_shade_color(2, defaultColor0) await wait_for_update() await self.capture_and_compare("SelectionOutline", "Multicolored.png") async def test_rtx_selectionoutline_shade(self): """ Test SelectionOutline - Shade sphere """ self.set_settings({outlineWidthSetting: 4}) self.ctx.set_selection_group(1, spherePath) self.ctx.set_selection_group(2, cylinderPath) self.ctx.set_selection_group_shade_color(1, defaultColor1) self.ctx.set_selection_group_shade_color(2, defaultColor0) await wait_for_update() await self.capture_and_compare("SelectionOutline", "Shade.png") async def test_UNSTABLE_rtx_selectionoutline_shade_multicolored_UNSTABLE(self): """ Test SelectionOutline - Shade sphere & cylinder with different colors """ self.set_settings({outlineWidthSetting: 4}) self.ctx.set_selection_group(1, spherePath) self.ctx.set_selection_group(2, cylinderPath) self.ctx.set_selection_group_shade_color(1, defaultColor1) self.ctx.set_selection_group_shade_color(2, defaultColor2) await wait_for_update() await self.capture_and_compare("SelectionOutline", "ShadeMulticolored.png") async def test_rtx_selectionoutline_disabled(self): """ Test SelectionOutline - Disabled """ self.set_settings({outlineEnabledSetting: False, displayOptionSetting: 0}) self.set_selected(spherePath) self.set_selected(cylinderPath) await wait_for_update() await self.capture_and_compare("SelectionOutline", "Disabled.png") # OM-102267 - unreliable in 105.1 branch async def test_UNSTABLE_rtx_selectionoutline_disabledByMetadata_UNSTABLE(self): """ Test SelectionOutline - Disabled by metadata. OM-34048 """ self.ctx.get_stage().GetPrimAtPath(spherePath).SetMetadata('no_selection_outline', True) self.set_selected(spherePath) self.set_selected(cylinderPath) await wait_for_update() await self.capture_and_compare("SelectionOutline", "Outline2.png", 2e-5) # OM-102267 - unreliable in 105.1 branch async def test_UNSTABLE_rtx_selectionoutline_instances_UNSTABLE(self): """ Test Selection Outline - Instances """ self.open_usd("hydra/CubeWorld.usda") PRIM_PATH = '/CubeWorld/CubeInstance' cubeInstance = self.ctx.get_stage().GetPrimAtPath(PRIM_PATH) cubeInstance.SetInstanceable(False) self.set_selected(PRIM_PATH) await wait_for_update() await self.capture_and_compare("SelectionOutline", "InstanceableFalse.png", 4e-5) self.set_selected(PRIM_PATH, False) # Unselect cubeInstance.SetInstanceable(True) self.set_selected(PRIM_PATH) await wait_for_update() await self.capture_and_compare("SelectionOutline", "InstanceableTrue.png", 4e-5) async def test_rtx_selectionoutline_mouse_select(self): """Test mouse selection works in Viewport.""" from omni.kit import ui_test from omni.kit.ui_test.vec2 import Vec2 self.open_usd("hydra/CubeInstance.usda") omni.usd.get_context().get_selection().set_selected_prim_paths([], True) await wait_for_update() await ui_test.emulate_mouse_move_and_click(Vec2(256, 256)) await wait_for_update() await self.capture_and_compare("SelectionOutline", "MouseSelect.png", 4e-5) async def test_rtx_selectionoutline_mouse_select_aov_changed(self): """Test mouse selection works in Viewport before and after AOV change.""" from omni.kit import ui_test from omni.kit.ui_test.vec2 import Vec2 mouse_pos = Vec2(256, 256) self.open_usd("hydra/CubeInstance.usda") usd_context = omni.usd.get_context() usd_context.get_selection().set_selected_prim_paths([], True) await wait_for_update() await ui_test.emulate_mouse_move_and_click(mouse_pos) await wait_for_update() await self.capture_and_compare("SelectionOutline", "MouseSelectAOVA.png", 4e-5) # Reset selection to nothing usd_context.get_selection().set_selected_prim_paths([], True) # Add additional AOVs from omni.kit.viewport.utility import get_active_viewport from pxr import Sdf, Usd, UsdRender stage = usd_context.get_stage() render_product_path = Sdf.Path(get_active_viewport().render_product_path) render_product = UsdRender.Product(stage.GetPrimAtPath(render_product_path)) ordered_vars_rel = render_product.GetOrderedVarsRel() start_aov_len = len(ordered_vars_rel.GetForwardedTargets()) # Targets need to be adde don session-layer as other prims live there with Usd.EditContext(stage, stage.GetSessionLayer()): aov_name = "Depth" render_var = UsdRender.Var.Define(stage, Sdf.Path(f"/Render/Vars/{aov_name}")) render_var.GetSourceNameAttr().Set(aov_name) render_var.GetDataTypeAttr().Set("float") ordered_vars_rel.AddTarget(render_var.GetPath()) end_aov_len = len(render_product.GetOrderedVarsRel().GetForwardedTargets()) self.assertNotEqual(start_aov_len, end_aov_len) # Re-select the object await ui_test.emulate_mouse_move_and_click(mouse_pos) await wait_for_update() await self.capture_and_compare("SelectionOutline", "MouseSelectAOVB.png", 4e-5)
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_hydra_scene_delegate_omni_imaging.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. ## from sys import path import omni.kit.app import omni.kit.commands import omni.kit.undo import omni.kit.test import omni.timeline import carb.settings from .test_hydra_common import RtxHydraTest from .test_common import testSettings, postLoadTestSettings, wait_for_update from pxr import Gf, UsdShade import shutil, os, pathlib class TestRtxHydraSceneDelegateOmniImagingSetEmissionColor(RtxHydraTest): # OM-73180 # Prior to the update in this ticket the OmniImagingDelegate ignored # certain parameters, "emission_color" being one of them. This test # validates that is no longer the case. async def setUp(self): await super().setUp() self.set_settings(testSettings) super().open_usd("hydra/scene_delegate/emission_color/test.usda") await omni.kit.app.get_app().next_update_async() self.set_settings(postLoadTestSettings) async def test_set_emission_color(self): ''' Test OmniImagingDelegate don't ignore 'emission_color' ''' await wait_for_update(wait_frames=10) prim = self.ctx.get_stage().GetPrimAtPath("/World/Looks/mtl_emission/emission") shader_prim = UsdShade.Shader(prim) shader_prim.GetInput("emission_color").Set(Gf.Vec3f(1.0, 0.0, 0.0)) await wait_for_update(wait_frames=10) await self.capture_and_compare("hydra/scene_delegate", "set_emission_color.png")
omniverse-code/kit/exts/omni.rtx.tests/omni/rtx/tests/test_scenedb.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.app import omni.kit.test from .test_common import RtxTest, testSettings, postLoadTestSettings, wait_for_update from pxr import UsdGeom, Sdf import numpy as np class TestRtxSceneDb(RtxTest): TEST_PATH = "scenedb" async def setUp(self): await super().setUp() self.set_settings(testSettings) omni.usd.get_context().new_stage() # Important: it should be called before `setUp` method as it reset settings and stage. self.add_dir_light() await omni.kit.app.get_app().next_update_async() # Wait stage loading self.set_settings(postLoadTestSettings) def create_geometry(self, name): sphere = UsdGeom.Sphere.Define(self.ctx.get_stage(), name) sphere.CreateRadiusAttr(10) def create_instancer(self, name, N): pts = [] indices = [] sp = 250. dx = 500. / N[0] dy = 500. / N[1] dz = 500. / N[2] for i in np.arange(-sp, sp, dx): for j in np.arange(-sp, sp, dy): for k in np.arange(-sp, sp, dz): pts.append((i, j, k)) indices.append(0) print("Generated points: ", len(indices)) lyr = self.ctx.get_stage().GetRootLayer() with Sdf.ChangeBlock(): instancer = lyr.GetPrimAtPath("/World/Instancer") or \ Sdf.PrimSpec(lyr.GetPrimAtPath("/World"), "Instancer", Sdf.SpecifierDef, "PointInstancer") pos = lyr.GetAttributeAtPath("/World/Instancer.positions") or \ Sdf.AttributeSpec(instancer, "positions", Sdf.ValueTypeNames.Point3fArray) pos.default = pts protoIndices = lyr.GetAttributeAtPath("/World/Instancer.protoIndices") or \ Sdf.AttributeSpec(instancer, "protoIndices", Sdf.ValueTypeNames.IntArray) protoIndices.default = indices rel = lyr.GetRelationshipAtPath("/World/Instancer.prototypes") or \ Sdf.RelationshipSpec(instancer, "prototypes") rel.targetPathList.prependedItems = [name] async def test_sphere_PI_1M(self): id = "/World/Sphere" self.create_geometry(id) self.create_instancer(id, (100, 100, 100)) await wait_for_update(self.ctx, 25) # Wait 25 frames before capture. await self.capture_and_compare(self.TEST_PATH, "sphere1M.png", threshold=5e-5) # Unstable due to crashes in SceneDB: OM-49598 async def test_UNSTABLE_sphere_PI_1M_Recreate_UNSTABLE(self): id = "/World/Sphere" self.create_geometry(id) self.create_instancer(id, (100, 100, 100)) await wait_for_update(self.ctx, 25) # Wait 25 frames before capture. self.ctx.get_stage().RemovePrim("/World/instancer") self.create_instancer(id, (100, 100, 100)) await self.capture_and_compare(self.TEST_PATH, "sphere1M.png")
omniverse-code/kit/exts/omni.rtx.tests/docs/CHANGELOG.md
# CHANGELOG This document records all notable changes to ``omni.rtx.tests`` extension. This project adheres to `Semantic Versioning <https://semver.org/>`. ## [Unreleased] ### Added ### Changed ### Removed ## [0.1.4] - 2022-10-19 ### Changed - Flagged test_light_collection_lightvistoggle as UNSTABLE. ## [0.1.3] - 2022-06-05 ### Fixed - Added one missing dependency and a couple small fixes ## [0.1.2] - 2022-06-02 ### Changed - Capture from Viewport texture directly instead of UI / Window ## [0.1.1] - 2022-05-23 ### Changed - Add missing explicit dependencies ## [0.1.0] - 2021-04-20 ### Added - Initial Release
omniverse-code/kit/exts/omni.rtx.tests/docs/README.md
# The RTX Renderer Test Framework [omni.rtx.tests] This extensions contains python tests for RTX renderer. This tests is based on kit python tests. See `omni.kit.tests` documentation. # How-to run tets There is few ways to run tets. 1) Run script `_build/{build}/{config}/tests-omni.rtx.tests.{bat|sh}` 2) Run `kit`. Open `Window -> Test Runner`. Select and run tests you want to run. # How-to add new tests: 1) Create new py file. See `test_example.py` as template. 2) Derive you test class from `class RtxTests` from `test_common.py` 3) Add your test by adding method started from `test_` 4) Improt your test class in __init__.py # How-to write tests You may use any methods from `omni.kit.tests`. For example to assert use `self.assertTrue({condition})`. Default directory for placing usd files is `{ext_path}/data/usd` ## Settings It is not recommended to use `carb.settings` directly as tests might be executed by user in kit and overwrite user's settings config. There is way to deal with it - use next method for settings. ``` self.set_settings({"/app/setting1": "val1", "/app/setting2": (0, 0), "/app/setting3": True})) ``` `set_settings` remembers previous value of setting that changed first time and set this value on `tearDown()` ### Default rtx test settings See `testSettings` and `postLoadTestSettings`. `testSettings` is set on test startup before stage loading. `postLoadTestSettings`is set after stage loading. You can load this settings in your tests without changes or create your own setup based on it. ## Capture and compare screenshots with golden Rendering is drawn screen with few frames delay. So after any changes has done it is needed to wait few frames before capture. Use `wait_for_update(wait_frames=4)` for waiting next few frames. For capturing use `capture_and_compare` function. Generated images are placed in `{kit}/kit/outputs/omni.rtx.tests/{image_subdir}`. Goldens for compare are placed in `{ext_path}/data/goldens/{image_subdir}`. ### Generating goldens Tests is not interrupted if golden is missed in goloden directory. So if it is needed to generate goldens it shold be removed from golden directory. Then run the tests and copy new goldens from output directory. ## Helper functions `set_transform_helper` - set transform for specified prim path `add_dir_light` - add directional light `/World/Light` to scene `add_floor` - add floor plane `/World/Floor` to scene `open_usd` - open usd file `set_camera` - set camera position and target
omniverse-code/kit/exts/omni.rtx.tests/docs/index.rst
omni.rtx.tests ########################### .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.rtx.tests/data/usd/bunny.obj.usda
#usda 1.0 ( upAxis = "Y" defaultPrim = "mesh" ) def Mesh "mesh" { uniform bool doubleSided = 1 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 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, 3, 4, 5, 6, 7, 8, 9, 10, 11, 8, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 18, 38, 19, 39, 23, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 41, 55, 56, 53, 57, 58, 59, 43, 42, 60, 61, 62, 63, 54, 42, 41, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 24, 81, 82, 72, 71, 81, 72, 83, 84, 85, 7, 12, 8, 86, 87, 88, 89, 90, 91, 92, 93, 5, 70, 72, 94, 95, 96, 97, 98, 99, 100, 48, 56, 55, 87, 101, 102, 103, 67, 104, 82, 105, 72, 105, 82, 17, 9, 106, 10, 107, 6, 65, 108, 97, 109, 110, 72, 111, 112, 23, 113, 114, 59, 45, 115, 49, 55, 45, 59, 46, 116, 117, 118, 110, 111, 119, 120, 121, 122, 123, 58, 124, 113, 23, 39, 38, 64, 125, 124, 126, 127, 128, 129, 130, 131, 132, 133, 42, 134, 60, 135, 136, 137, 130, 138, 139, 140, 141, 142, 114, 57, 59, 143, 144, 145, 146, 147, 148, 147, 149, 148, 149, 150, 148, 151, 152, 153, 96, 154, 155, 141, 156, 157, 22, 158, 20, 137, 136, 159, 58, 123, 59, 146, 160, 147, 161, 162, 163, 21, 164, 165, 60, 134, 166, 167, 168, 169, 170, 117, 116, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 147, 160, 180, 149, 147, 181, 161, 150, 182, 183, 184, 185, 25, 186, 187, 188, 71, 49, 48, 55, 30, 132, 189, 103, 104, 190, 59, 191, 46, 192, 105, 193, 149, 181, 150, 194, 162, 161, 181, 194, 161, 195, 196, 197, 125, 64, 66, 153, 9, 11, 20, 164, 21, 198, 111, 192, 130, 129, 138, 199, 200, 160, 180, 201, 149, 149, 202, 181, 203, 204, 205, 206, 207, 208, 40, 25, 185, 67, 69, 104, 170, 116, 209, 210, 0, 211, 212, 213, 214, 215, 216, 62, 199, 217, 200, 149, 201, 202, 218, 162, 219, 220, 221, 116, 222, 31, 189, 223, 224, 225, 200, 226, 180, 226, 201, 180, 202, 227, 181, 194, 219, 162, 228, 229, 217, 230, 231, 232, 19, 38, 129, 233, 189, 131, 234, 235, 236, 181, 227, 194, 237, 238, 239, 240, 241, 242, 243, 234, 236, 38, 125, 129, 244, 245, 246, 217, 226, 200, 247, 248, 249, 250, 240, 242, 239, 251, 252, 240, 253, 241, 254, 255, 256, 81, 257, 18, 17, 19, 258, 259, 260, 261, 262, 217, 229, 262, 226, 217, 263, 264, 265, 227, 266, 194, 267, 268, 269, 253, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 3, 135, 4, 281, 282, 283, 284, 260, 259, 260, 285, 286, 285, 287, 286, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 226, 298, 299, 274, 300, 301, 302, 303, 0, 304, 305, 306, 94, 110, 128, 130, 307, 308, 285, 260, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 103, 190, 322, 323, 324, 325, 326, 252, 144, 321, 190, 326, 325, 327, 112, 24, 23, 65, 6, 8, 187, 71, 328, 186, 329, 185, 119, 198, 330, 284, 308, 260, 331, 332, 333, 334, 265, 264, 335, 336, 312, 336, 313, 312, 335, 312, 337, 338, 339, 340, 253, 271, 341, 342, 343, 344, 241, 341, 242, 105, 17, 193, 345, 346, 347, 259, 345, 284, 348, 349, 350, 351, 291, 352, 353, 354, 265, 266, 355, 356, 357, 358, 272, 359, 357, 272, 188, 107, 257, 81, 71, 188, 6, 360, 7, 72, 110, 94, 361, 362, 363, 364, 365, 366, 367, 365, 346, 346, 365, 347, 368, 345, 347, 368, 284, 345, 368, 308, 284, 352, 293, 99, 291, 293, 352, 369, 272, 370, 371, 372, 373, 374, 375, 376, 334, 353, 265, 377, 378, 379, 380, 381, 382, 360, 12, 7, 371, 383, 384, 294, 296, 354, 385, 386, 387, 197, 388, 389, 390, 391, 392, 189, 132, 131, 393, 394, 395, 364, 396, 365, 365, 397, 347, 398, 308, 368, 399, 400, 401, 402, 403, 404, 405, 371, 384, 343, 406, 344, 407, 408, 409, 410, 368, 347, 397, 410, 347, 411, 308, 398, 411, 412, 308, 413, 414, 415, 334, 264, 336, 416, 417, 254, 68, 418, 419, 69, 68, 420, 8, 13, 421, 422, 423, 424, 425, 426, 427, 428, 429, 364, 429, 396, 364, 396, 430, 365, 365, 430, 397, 430, 431, 397, 410, 398, 368, 99, 293, 100, 432, 375, 374, 370, 272, 274, 433, 412, 411, 351, 434, 291, 65, 8, 66, 435, 436, 437, 438, 396, 429, 438, 430, 396, 397, 431, 410, 410, 439, 398, 412, 433, 440, 263, 441, 264, 351, 289, 442, 443, 444, 445, 446, 447, 448, 432, 449, 375, 450, 451, 452, 438, 453, 430, 454, 336, 335, 455, 456, 457, 123, 124, 458, 360, 459, 12, 460, 461, 462, 463, 464, 428, 431, 465, 410, 466, 411, 398, 466, 433, 411, 467, 378, 377, 449, 468, 469, 470, 471, 472, 473, 348, 350, 474, 441, 384, 100, 375, 475, 476, 477, 27, 478, 174, 479, 428, 480, 429, 429, 480, 438, 465, 439, 410, 481, 433, 466, 372, 295, 373, 482, 483, 484, 485, 486, 487, 441, 405, 384, 488, 15, 489, 490, 491, 12, 224, 223, 492, 493, 494, 244, 463, 495, 464, 464, 496, 428, 428, 496, 480, 480, 497, 438, 438, 497, 453, 453, 465, 430, 465, 431, 430, 439, 498, 398, 398, 498, 466, 433, 499, 440, 371, 296, 372, 500, 446, 501, 502, 503, 504, 488, 505, 15, 268, 506, 507, 16, 15, 508, 509, 450, 461, 510, 496, 464, 511, 465, 453, 465, 511, 439, 512, 474, 384, 513, 504, 514, 514, 348, 473, 515, 516, 446, 517, 502, 518, 516, 519, 520, 516, 521, 519, 522, 523, 524, 525, 349, 348, 526, 527, 528, 392, 529, 530, 531, 532, 533, 534, 168, 535, 496, 536, 480, 536, 497, 480, 511, 453, 497, 511, 537, 439, 439, 537, 498, 537, 538, 498, 538, 466, 498, 481, 539, 433, 539, 540, 499, 433, 539, 499, 413, 399, 414, 541, 542, 543, 544, 545, 546, 512, 313, 474, 518, 502, 504, 547, 548, 407, 464, 549, 510, 466, 550, 481, 550, 539, 481, 374, 514, 473, 377, 379, 551, 350, 552, 432, 351, 352, 289, 553, 554, 555, 549, 536, 510, 536, 496, 510, 556, 497, 536, 557, 511, 497, 558, 537, 511, 550, 466, 538, 350, 546, 559, 341, 271, 523, 289, 352, 560, 469, 247, 561, 562, 563, 564, 565, 554, 505, 566, 487, 34, 567, 568, 569, 556, 557, 497, 511, 557, 558, 550, 570, 539, 561, 247, 249, 501, 448, 415, 414, 501, 415, 571, 500, 399, 401, 571, 399, 500, 515, 446, 572, 155, 573, 72, 105, 111, 574, 322, 575, 576, 577, 578, 537, 579, 538, 579, 580, 538, 580, 570, 550, 538, 580, 550, 313, 336, 264, 581, 413, 582, 290, 560, 98, 543, 583, 584, 473, 432, 374, 585, 586, 587, 588, 555, 554, 589, 590, 555, 119, 111, 198, 591, 549, 592, 591, 536, 549, 556, 558, 557, 579, 537, 558, 593, 539, 570, 594, 540, 539, 472, 595, 596, 249, 248, 317, 588, 597, 555, 597, 589, 555, 82, 18, 17, 598, 536, 591, 599, 556, 536, 600, 558, 601, 600, 579, 558, 602, 603, 604, 454, 605, 336, 606, 157, 156, 565, 607, 554, 129, 125, 138, 598, 599, 536, 599, 608, 556, 556, 608, 558, 608, 601, 558, 579, 600, 580, 580, 593, 570, 540, 609, 610, 611, 612, 613, 614, 449, 469, 560, 352, 99, 27, 615, 616, 560, 99, 98, 141, 617, 156, 618, 619, 304, 607, 620, 588, 554, 607, 588, 620, 597, 588, 621, 41, 43, 622, 623, 624, 625, 626, 591, 626, 598, 591, 600, 627, 580, 628, 593, 580, 628, 594, 593, 593, 594, 539, 629, 609, 540, 630, 404, 631, 632, 633, 634, 635, 636, 617, 350, 544, 546, 117, 211, 118, 625, 637, 626, 627, 628, 580, 594, 638, 540, 638, 639, 540, 639, 629, 540, 640, 320, 641, 522, 642, 269, 500, 643, 515, 372, 296, 295, 603, 618, 304, 192, 111, 105, 193, 17, 258, 455, 644, 625, 644, 637, 625, 637, 645, 626, 645, 598, 626, 628, 646, 594, 594, 646, 638, 244, 567, 647, 648, 467, 649, 636, 650, 156, 617, 636, 156, 650, 606, 156, 197, 196, 651, 652, 644, 457, 653, 598, 645, 653, 599, 598, 653, 608, 599, 608, 653, 601, 627, 654, 628, 628, 654, 646, 78, 77, 655, 342, 344, 656, 657, 449, 614, 375, 657, 475, 541, 649, 542, 607, 658, 620, 659, 660, 652, 652, 660, 644, 644, 661, 637, 653, 654, 600, 601, 653, 600, 600, 654, 627, 656, 344, 662, 663, 16, 664, 665, 666, 667, 350, 559, 552, 658, 668, 620, 620, 668, 597, 669, 652, 597, 660, 670, 644, 645, 671, 653, 671, 672, 653, 672, 654, 653, 654, 673, 646, 674, 640, 675, 413, 415, 582, 375, 449, 657, 676, 677, 678, 207, 679, 680, 668, 669, 597, 644, 681, 661, 661, 645, 637, 661, 671, 645, 682, 654, 672, 682, 673, 654, 673, 683, 646, 683, 684, 646, 646, 684, 638, 638, 685, 639, 686, 687, 629, 688, 689, 690, 543, 542, 583, 691, 692, 650, 693, 606, 692, 694, 695, 696, 30, 189, 31, 697, 668, 658, 669, 659, 652, 670, 681, 644, 698, 338, 699, 691, 700, 692, 660, 701, 670, 661, 702, 671, 702, 703, 671, 671, 703, 672, 703, 704, 672, 704, 705, 672, 705, 682, 672, 706, 673, 682, 706, 707, 673, 707, 683, 673, 707, 684, 683, 684, 685, 638, 542, 708, 583, 252, 709, 710, 424, 711, 712, 210, 211, 117, 713, 714, 669, 715, 659, 669, 716, 660, 659, 716, 701, 660, 702, 661, 681, 717, 702, 681, 718, 684, 707, 686, 639, 685, 441, 371, 405, 719, 559, 720, 708, 721, 583, 722, 700, 691, 669, 668, 713, 714, 715, 669, 701, 681, 670, 723, 703, 702, 703, 724, 704, 704, 725, 705, 726, 707, 706, 685, 684, 686, 584, 583, 721, 605, 334, 336, 700, 727, 693, 692, 700, 693, 200, 180, 160, 727, 386, 728, 729, 730, 22, 715, 716, 659, 716, 731, 701, 732, 702, 717, 732, 723, 702, 723, 724, 703, 724, 725, 704, 733, 98, 734, 513, 514, 374, 732, 724, 723, 725, 735, 705, 726, 718, 707, 491, 686, 684, 316, 695, 317, 100, 376, 375, 586, 312, 314, 561, 736, 737, 27, 616, 28, 293, 513, 376, 23, 25, 40, 258, 19, 128, 19, 129, 128, 715, 714, 738, 739, 716, 715, 731, 717, 701, 717, 681, 701, 735, 740, 705, 705, 740, 682, 741, 706, 682, 742, 743, 476, 744, 301, 77, 739, 731, 716, 745, 732, 717, 745, 724, 732, 740, 741, 682, 741, 746, 706, 746, 726, 706, 747, 748, 643, 289, 560, 290, 712, 749, 424, 329, 31, 222, 738, 739, 715, 739, 750, 731, 750, 717, 731, 750, 751, 717, 717, 751, 745, 745, 752, 724, 752, 753, 725, 724, 752, 725, 725, 753, 735, 741, 754, 746, 746, 718, 726, 491, 684, 718, 755, 325, 756, 415, 757, 582, 708, 551, 482, 442, 288, 758, 759, 728, 760, 761, 762, 752, 735, 753, 740, 698, 763, 764, 482, 551, 483, 473, 350, 432, 376, 513, 374, 559, 719, 552, 1, 0, 210, 4, 135, 137, 765, 192, 193, 766, 739, 738, 767, 766, 738, 766, 750, 739, 330, 361, 363, 101, 688, 108, 740, 754, 741, 238, 768, 769, 770, 316, 771, 467, 377, 542, 665, 561, 737, 630, 402, 404, 64, 107, 65, 772, 300, 773, 569, 774, 775, 776, 777, 778, 766, 779, 750, 750, 779, 751, 780, 746, 754, 781, 718, 746, 782, 781, 746, 781, 491, 718, 783, 784, 785, 551, 786, 483, 224, 492, 787, 292, 513, 293, 474, 264, 441, 788, 246, 245, 789, 766, 767, 790, 791, 779, 792, 793, 794, 316, 130, 695, 448, 447, 795, 796, 740, 753, 740, 796, 754, 797, 781, 782, 798, 491, 781, 798, 13, 491, 514, 503, 525, 469, 468, 247, 265, 354, 263, 666, 665, 737, 504, 503, 514, 799, 776, 778, 800, 801, 322, 801, 323, 322, 521, 516, 802, 803, 128, 307, 361, 765, 804, 805, 754, 796, 754, 805, 780, 782, 746, 780, 798, 421, 13, 719, 468, 552, 354, 371, 441, 249, 317, 694, 467, 542, 649, 541, 295, 649, 552, 468, 449, 806, 778, 169, 799, 807, 776, 807, 808, 776, 41, 621, 53, 355, 809, 356, 810, 782, 780, 338, 698, 339, 811, 631, 812, 728, 385, 813, 814, 813, 815, 432, 552, 449, 806, 169, 816, 817, 806, 816, 818, 778, 806, 818, 799, 778, 819, 820, 821, 198, 192, 361, 131, 133, 822, 93, 3, 5, 12, 823, 490, 824, 825, 826, 780, 827, 810, 828, 378, 467, 721, 482, 484, 377, 551, 708, 153, 11, 829, 246, 788, 562, 316, 307, 130, 830, 831, 832, 810, 797, 782, 833, 781, 797, 834, 225, 472, 561, 249, 694, 518, 835, 836, 446, 520, 447, 471, 834, 472, 837, 808, 807, 808, 837, 838, 198, 361, 330, 192, 765, 361, 839, 840, 841, 53, 621, 55, 842, 843, 844, 845, 810, 827, 846, 847, 643, 640, 318, 320, 806, 848, 818, 818, 848, 799, 837, 807, 799, 849, 850, 851, 130, 139, 695, 330, 363, 852, 664, 853, 854, 855, 324, 207, 845, 856, 810, 856, 797, 810, 421, 798, 781, 833, 421, 781, 857, 858, 859, 694, 317, 695, 482, 721, 708, 379, 860, 861, 293, 376, 100, 806, 862, 848, 848, 863, 799, 863, 837, 799, 837, 864, 838, 188, 865, 107, 765, 193, 866, 867, 493, 595, 868, 869, 870, 748, 516, 515, 561, 694, 736, 584, 721, 871, 504, 513, 872, 178, 158, 730, 870, 873, 874, 803, 307, 770, 875, 856, 845, 876, 833, 797, 876, 421, 833, 877, 878, 879, 290, 98, 733, 861, 880, 551, 36, 881, 37, 863, 864, 837, 193, 258, 866, 258, 128, 803, 882, 883, 870, 869, 882, 870, 883, 873, 870, 361, 804, 362, 369, 359, 272, 350, 349, 544, 434, 351, 880, 861, 551, 379, 864, 884, 885, 886, 887, 882, 888, 874, 873, 888, 889, 874, 890, 866, 803, 891, 892, 893, 894, 856, 819, 894, 797, 856, 895, 421, 876, 895, 66, 421, 354, 296, 371, 399, 501, 414, 648, 649, 295, 337, 312, 586, 896, 864, 863, 848, 896, 863, 897, 885, 884, 884, 898, 897, 899, 887, 886, 887, 900, 882, 900, 901, 882, 901, 883, 882, 901, 873, 883, 902, 888, 873, 888, 903, 889, 0, 904, 905, 765, 906, 804, 907, 876, 797, 908, 66, 895, 909, 522, 269, 369, 370, 910, 516, 520, 446, 864, 898, 884, 911, 900, 887, 901, 912, 873, 820, 819, 856, 907, 895, 876, 377, 708, 542, 585, 337, 586, 399, 500, 501, 862, 896, 848, 896, 913, 864, 864, 913, 898, 615, 342, 310, 899, 911, 887, 911, 914, 900, 900, 915, 901, 915, 912, 901, 902, 873, 912, 770, 307, 316, 916, 894, 819, 916, 917, 894, 907, 797, 894, 917, 907, 894, 125, 66, 908, 544, 918, 545, 643, 748, 515, 446, 448, 501, 913, 919, 898, 919, 533, 898, 899, 920, 911, 920, 914, 911, 914, 921, 900, 900, 921, 915, 922, 888, 902, 922, 903, 888, 327, 273, 326, 483, 442, 484, 125, 908, 138, 354, 441, 263, 373, 295, 541, 786, 442, 483, 248, 315, 317, 647, 569, 775, 913, 512, 919, 866, 258, 803, 866, 906, 765, 912, 923, 902, 923, 922, 902, 924, 239, 326, 925, 916, 821, 925, 666, 916, 666, 917, 916, 696, 908, 895, 603, 602, 849, 862, 586, 896, 839, 926, 840, 733, 903, 922, 737, 907, 917, 736, 895, 907, 736, 696, 895, 383, 371, 373, 313, 264, 474, 786, 351, 442, 315, 771, 316, 586, 314, 896, 896, 314, 913, 853, 927, 508, 532, 531, 928, 541, 920, 928, 914, 871, 921, 921, 484, 915, 915, 929, 912, 929, 923, 912, 667, 666, 925, 737, 736, 907, 270, 699, 271, 880, 351, 786, 880, 786, 551, 314, 512, 913, 919, 531, 533, 920, 584, 914, 914, 584, 871, 484, 929, 915, 288, 923, 929, 288, 922, 923, 290, 733, 922, 930, 821, 931, 737, 917, 666, 139, 908, 696, 139, 138, 908, 847, 747, 643, 587, 586, 862, 531, 541, 928, 758, 288, 929, 922, 288, 290, 574, 417, 416, 932, 821, 930, 736, 694, 696, 698, 764, 339, 828, 467, 648, 314, 313, 512, 512, 384, 919, 919, 383, 531, 531, 373, 541, 920, 543, 584, 484, 758, 929, 742, 27, 26, 442, 289, 288, 919, 384, 383, 383, 373, 531, 541, 543, 920, 871, 721, 921, 721, 484, 921, 484, 442, 758, 92, 933, 93, 934, 335, 935, 614, 469, 561, 861, 936, 880, 937, 813, 385, 880, 936, 434, 606, 693, 938, 939, 940, 941, 942, 943, 944, 945, 946, 294, 947, 948, 949, 950, 525, 951, 225, 224, 472, 952, 747, 953, 954, 955, 956, 957, 953, 846, 447, 958, 959, 960, 273, 357, 961, 658, 962, 963, 953, 957, 957, 846, 964, 965, 243, 966, 967, 968, 969, 691, 636, 635, 951, 525, 503, 970, 971, 972, 973, 974, 975, 272, 358, 273, 976, 977, 944, 978, 979, 980, 640, 981, 675, 51, 50, 982, 201, 983, 202, 248, 720, 559, 967, 984, 985, 320, 986, 641, 987, 988, 989, 201, 297, 990, 990, 983, 201, 991, 992, 993, 298, 994, 297, 995, 996, 997, 998, 844, 545, 999, 1000, 1001, 969, 1002, 984, 977, 382, 1003, 412, 1004, 287, 1005, 630, 631, 1006, 964, 1007, 39, 282, 1008, 1009, 994, 298, 297, 1010, 990, 447, 520, 519, 985, 984, 978, 382, 381, 1011, 1012, 1013, 1014, 1012, 1009, 1013, 990, 355, 983, 977, 1003, 1015, 1016, 994, 1009, 990, 1010, 355, 772, 773, 1017, 1007, 1018, 1019, 1020, 1009, 1012, 1020, 1016, 1009, 1016, 1021, 994, 994, 1021, 297, 297, 1021, 1010, 1022, 957, 1023, 1022, 963, 957, 1024, 1025, 1026, 1027, 1028, 1029, 545, 844, 546, 1030, 1031, 62, 1032, 1014, 1033, 1034, 1012, 1014, 1010, 1035, 355, 699, 338, 1036, 963, 1037, 952, 1038, 1039, 1040, 1041, 1042, 1043, 953, 747, 847, 952, 1037, 1044, 1032, 1034, 1014, 1020, 1012, 1034, 1021, 1045, 1010, 1046, 1047, 1048, 1049, 1050, 1051, 1016, 1052, 1021, 1035, 809, 355, 1053, 1054, 1055, 401, 964, 846, 955, 1056, 956, 825, 1057, 1058, 846, 953, 847, 1016, 1020, 1052, 1045, 1059, 1010, 1010, 1059, 1035, 1060, 291, 434, 978, 1061, 979, 1007, 964, 1062, 1063, 1064, 1065, 1066, 1032, 1004, 412, 1066, 1004, 1052, 1045, 1021, 1067, 1050, 1038, 1034, 1032, 1066, 1059, 1068, 1035, 1031, 1069, 1070, 958, 1071, 1024, 1072, 1073, 1074, 1075, 1076, 1077, 1077, 1078, 1079, 1078, 1080, 1079, 1081, 1073, 1078, 1082, 970, 972, 1083, 1020, 1034, 1083, 1084, 1020, 1084, 1052, 1020, 1052, 1085, 1045, 1085, 1086, 1045, 1045, 1086, 1059, 1086, 1087, 1059, 1059, 1087, 1068, 1068, 1088, 1035, 1088, 809, 1035, 1072, 1074, 1089, 958, 1024, 959, 909, 242, 522, 1073, 1072, 1078, 1066, 1083, 1034, 1090, 809, 1088, 1070, 1069, 1091, 349, 940, 544, 503, 502, 951, 1084, 1092, 1052, 1092, 1085, 1052, 154, 162, 218, 1093, 488, 489, 1094, 488, 1093, 250, 242, 909, 841, 840, 1095, 950, 940, 349, 1096, 1061, 1002, 1061, 978, 1002, 1097, 1098, 1099, 1100, 1101, 1064, 1102, 1103, 615, 440, 1104, 1083, 1066, 440, 1083, 1083, 1104, 1084, 1105, 1106, 385, 968, 967, 1107, 843, 771, 844, 844, 771, 546, 835, 872, 1060, 1108, 998, 545, 1109, 1085, 1092, 1110, 1088, 1068, 1110, 1111, 1088, 1111, 1090, 1088, 1090, 1112, 809, 575, 324, 855, 855, 206, 1113, 1114, 1115, 1116, 1104, 1117, 1084, 1117, 1118, 1084, 1084, 1118, 1092, 1109, 1119, 1085, 1120, 1086, 1085, 1119, 1120, 1085, 1121, 1086, 1120, 1121, 1087, 1086, 1122, 1068, 1087, 1121, 1122, 1087, 1068, 1122, 1110, 1123, 1090, 1111, 1090, 1123, 1112, 763, 1124, 764, 1125, 966, 633, 1126, 1092, 1118, 1092, 1126, 1109, 1110, 1123, 1111, 1127, 592, 464, 565, 488, 1094, 565, 505, 488, 607, 565, 1128, 1099, 1098, 1129, 1114, 1130, 1115, 22, 1131, 729, 1126, 1119, 1109, 1119, 1121, 1120, 1132, 712, 711, 356, 1112, 165, 1041, 1133, 1134, 523, 1036, 524, 517, 1133, 502, 1135, 1075, 1079, 1097, 1116, 1098, 1119, 1136, 1121, 1110, 1137, 1123, 1138, 1139, 1140, 341, 523, 522, 226, 297, 201, 1100, 1063, 1130, 1060, 872, 292, 239, 238, 251, 1141, 1046, 969, 462, 1142, 1143, 1048, 1061, 1096, 1126, 1144, 1119, 1137, 1145, 1123, 1146, 1128, 1094, 1056, 1147, 956, 835, 518, 872, 1148, 757, 1081, 1149, 408, 1150, 1151, 1040, 1152, 1153, 1154, 955, 1061, 1155, 1153, 1156, 1117, 1104, 499, 1156, 1104, 1156, 1118, 1117, 1122, 1121, 1110, 1157, 1137, 1110, 1146, 962, 1128, 262, 1013, 1009, 1158, 1050, 1067, 1159, 1160, 445, 1046, 1048, 1096, 969, 1046, 1096, 1133, 517, 1161, 1162, 1126, 1118, 1126, 1162, 1144, 1157, 1163, 1137, 1137, 1163, 1145, 680, 1164, 208, 1165, 1152, 1166, 381, 387, 1011, 696, 695, 139, 872, 513, 292, 385, 728, 386, 934, 1080, 1107, 1161, 517, 836, 348, 514, 525, 1063, 1065, 380, 937, 824, 1167, 69, 420, 170, 1162, 1118, 1156, 1144, 1136, 1119, 1121, 1157, 1110, 1168, 171, 173, 1026, 1025, 1152, 1152, 1169, 1170, 1166, 1152, 1170, 1171, 1172, 1173, 1174, 489, 15, 518, 504, 872, 1043, 951, 502, 610, 1156, 499, 1136, 1175, 1121, 1176, 1101, 1177, 941, 1178, 939, 1153, 954, 979, 252, 1179, 709, 755, 773, 300, 1180, 1026, 1152, 954, 1153, 955, 1061, 1153, 979, 1043, 502, 1133, 937, 1167, 813, 324, 1125, 632, 1181, 1106, 1105, 1182, 1183, 1184, 1162, 1185, 1144, 1185, 1186, 1144, 1144, 1186, 1136, 1136, 529, 1175, 1121, 1175, 1157, 1164, 680, 942, 1187, 1060, 936, 1170, 1169, 1188, 1178, 941, 1189, 1181, 1065, 1106, 1190, 1134, 1191, 610, 1162, 1156, 1186, 529, 1136, 1116, 976, 1098, 1026, 1180, 1192, 1193, 1178, 1189, 1041, 1194, 1042, 950, 349, 525, 967, 969, 984, 1195, 1145, 1163, 159, 1196, 143, 226, 262, 1009, 1185, 1197, 1186, 421, 66, 8, 1000, 1198, 1001, 28, 616, 310, 1000, 918, 1198, 1046, 1199, 1047, 1200, 604, 1201, 1189, 951, 1043, 1190, 1041, 1134, 1202, 1170, 1203, 1166, 1170, 1202, 610, 1204, 1162, 1162, 1204, 1185, 1186, 530, 529, 585, 1205, 337, 1080, 1072, 1206, 1149, 409, 408, 1206, 1072, 1089, 835, 1060, 1187, 1194, 1189, 1042, 1178, 999, 939, 959, 1026, 795, 825, 824, 1106, 1041, 1043, 1133, 1207, 1208, 1209, 774, 309, 775, 1204, 1197, 1185, 854, 1210, 1211, 965, 1212, 243, 605, 967, 334, 380, 387, 381, 140, 617, 141, 757, 1073, 1081, 945, 978, 980, 1050, 1213, 1027, 1203, 1188, 1191, 1203, 1170, 1188, 1214, 1215, 1216, 1197, 530, 1186, 1217, 423, 1218, 935, 335, 337, 202, 983, 227, 1135, 935, 337, 1038, 1050, 1039, 1151, 1038, 1040, 1217, 711, 424, 934, 1107, 454, 1063, 380, 382, 1219, 1029, 999, 983, 266, 227, 1220, 1036, 1221, 860, 379, 378, 1129, 943, 680, 1222, 1194, 1190, 1154, 1161, 955, 1212, 1223, 243, 1224, 1225, 1226, 1062, 400, 1018, 1204, 610, 609, 25, 1227, 186, 1228, 1067, 1071, 1205, 1229, 337, 1194, 1222, 1189, 956, 1147, 860, 963, 34, 1037, 1000, 1149, 1150, 1074, 1165, 1199, 1230, 171, 1231, 1074, 1199, 1046, 1078, 1072, 1080, 447, 959, 795, 485, 338, 486, 338, 340, 486, 273, 327, 274, 680, 943, 942, 1029, 409, 1149, 1099, 634, 811, 795, 757, 448, 1219, 999, 1178, 1232, 462, 1233, 1130, 382, 977, 1165, 1166, 1199, 494, 1234, 244, 999, 1001, 939, 1065, 1181, 1105, 300, 274, 327, 299, 1235, 370, 1040, 1039, 1169, 581, 1236, 413, 987, 1237, 1238, 1238, 1237, 816, 1237, 817, 816, 1018, 400, 1239, 1240, 1241, 1242, 944, 977, 1015, 1187, 861, 860, 80, 1227, 1243, 1244, 1245, 611, 1246, 860, 378, 1098, 976, 944, 1062, 401, 400, 165, 1247, 356, 1023, 1006, 1248, 546, 771, 248, 1191, 1188, 1190, 1063, 382, 1130, 566, 963, 1022, 941, 940, 1189, 1249, 1250, 1006, 387, 722, 1011, 1251, 1252, 1253, 1254, 524, 1220, 1255, 1256, 340, 230, 232, 1257, 748, 747, 1044, 140, 1131, 986, 986, 1131, 641, 142, 1131, 140, 1258, 1259, 231, 1260, 587, 1237, 891, 893, 1261, 1262, 1263, 106, 292, 291, 1060, 237, 768, 238, 985, 353, 334, 824, 1264, 1167, 387, 386, 722, 1039, 1222, 1190, 1064, 1063, 1100, 1177, 1101, 1100, 771, 315, 248, 987, 1260, 1237, 1147, 1187, 860, 1017, 1067, 1228, 1169, 1265, 1188, 1169, 1190, 1265, 271, 699, 1036, 519, 1228, 447, 1266, 140, 986, 587, 862, 817, 1115, 1130, 977, 1050, 1219, 1051, 861, 1187, 936, 1039, 1190, 1169, 1193, 1219, 1178, 1007, 1249, 1006, 674, 255, 318, 271, 1036, 523, 945, 980, 946, 62, 216, 1030, 1267, 1268, 1269, 1248, 1022, 1023, 1022, 1248, 566, 963, 566, 34, 932, 925, 821, 999, 1029, 1149, 113, 1270, 112, 1071, 1025, 1024, 1071, 1038, 1151, 1271, 986, 320, 1266, 617, 140, 992, 769, 768, 250, 909, 1172, 486, 340, 1256, 571, 846, 500, 1074, 1192, 1180, 1272, 1273, 1274, 353, 985, 945, 422, 749, 1275, 1125, 965, 966, 1271, 1266, 986, 1266, 635, 617, 26, 309, 774, 237, 182, 184, 1276, 1277, 1278, 836, 1187, 1147, 401, 846, 571, 241, 253, 341, 62, 1031, 1279, 1071, 1067, 1038, 1073, 1192, 1074, 1025, 1071, 1151, 980, 828, 946, 998, 1280, 1281, 918, 1108, 545, 980, 979, 828, 1190, 1194, 1041, 335, 934, 454, 412, 440, 1066, 906, 866, 890, 1107, 967, 454, 978, 945, 985, 640, 641, 981, 269, 642, 267, 1246, 1282, 860, 1049, 1051, 1222, 1283, 232, 406, 968, 1141, 969, 1284, 1285, 1286, 1287, 1182, 1184, 984, 1002, 978, 1288, 1067, 1017, 1027, 1289, 1028, 942, 944, 1015, 285, 308, 412, 1115, 977, 976, 1246, 378, 828, 1219, 1193, 1051, 1106, 824, 937, 1282, 956, 860, 1213, 1289, 1027, 609, 1197, 1204, 1065, 1105, 380, 1290, 287, 1004, 959, 1024, 1026, 1017, 1291, 772, 1292, 1113, 1271, 1293, 635, 1266, 1293, 1294, 635, 1295, 1296, 1297, 184, 768, 237, 1260, 1298, 587, 386, 727, 722, 1150, 918, 1000, 1152, 1040, 1169, 1203, 1191, 1155, 1189, 950, 951, 1081, 1077, 1076, 1299, 1300, 1301, 924, 182, 237, 343, 1257, 1283, 1282, 954, 956, 1056, 836, 1147, 1089, 1074, 1046, 1079, 934, 935, 641, 1131, 1302, 1303, 1287, 1184, 1050, 1049, 1039, 1028, 409, 1029, 835, 1187, 836, 242, 341, 522, 1292, 319, 855, 1173, 269, 1304, 1298, 1305, 587, 1098, 944, 943, 1188, 1265, 1190, 1089, 1141, 1206, 1135, 1079, 935, 1134, 1133, 1161, 1051, 1193, 1222, 1050, 1027, 1219, 252, 251, 1179, 1266, 1271, 1293, 1306, 691, 635, 1294, 1306, 635, 643, 500, 846, 1307, 359, 369, 1050, 1158, 1213, 979, 1282, 1246, 1165, 1180, 1152, 1074, 1180, 1165, 940, 1198, 544, 1219, 1027, 1029, 964, 401, 1062, 1308, 1293, 1271, 1236, 1239, 400, 270, 763, 699, 1309, 1310, 1311, 691, 650, 636, 979, 954, 1282, 1172, 909, 1173, 855, 1113, 1292, 359, 1312, 357, 1308, 1271, 1113, 1312, 960, 357, 478, 1313, 174, 1080, 1206, 1107, 1206, 968, 1107, 925, 665, 667, 454, 967, 605, 1314, 1294, 1293, 1003, 1306, 1294, 1314, 1003, 1294, 334, 967, 985, 1205, 585, 587, 1305, 1205, 587, 936, 1060, 434, 1100, 1130, 1114, 955, 1161, 1056, 1089, 1046, 1141, 1206, 1141, 968, 1191, 1154, 1155, 1189, 940, 950, 763, 698, 699, 1154, 1134, 1161, 1199, 1166, 1047, 447, 1228, 958, 1222, 1193, 1189, 1005, 631, 811, 1113, 1164, 1308, 1308, 1314, 1293, 958, 1228, 1071, 1315, 1316, 612, 700, 722, 727, 1260, 987, 949, 1150, 1108, 918, 274, 299, 370, 1203, 1155, 1061, 811, 812, 1097, 294, 648, 295, 999, 1149, 1000, 720, 248, 247, 320, 319, 1292, 1317, 1306, 1003, 1317, 691, 1306, 1317, 722, 691, 1318, 1272, 662, 597, 457, 589, 952, 1044, 747, 814, 1319, 728, 817, 862, 806, 1047, 1203, 1061, 1047, 1061, 1048, 1116, 1115, 976, 1155, 1154, 1153, 953, 963, 952, 795, 1026, 1192, 208, 1164, 1113, 1160, 1234, 1320, 212, 1321, 84, 1006, 1023, 964, 582, 757, 1148, 1105, 385, 387, 380, 1105, 387, 1322, 609, 687, 1323, 1324, 1325, 1043, 1042, 1189, 757, 795, 1073, 1065, 1057, 1106, 1114, 1326, 1100, 1327, 212, 84, 828, 979, 1246, 1023, 957, 964, 1064, 1057, 1065, 1161, 836, 1056, 1079, 1080, 934, 1245, 1328, 825, 1047, 1202, 1203, 554, 553, 15, 795, 1192, 1073, 1015, 1003, 1314, 1317, 1011, 722, 1329, 135, 3, 1330, 674, 675, 1191, 1134, 1154, 1106, 937, 385, 1152, 1025, 1151, 1039, 1049, 1222, 1106, 1057, 825, 468, 719, 720, 1164, 942, 1314, 1308, 1164, 1314, 942, 1015, 1314, 1331, 1332, 1333, 287, 285, 412, 939, 1001, 940, 1001, 1198, 940, 1075, 1077, 1079, 728, 1319, 760, 1002, 969, 1096, 565, 1094, 1128, 1166, 1202, 1047, 657, 925, 932, 1334, 1335, 1336, 382, 1317, 1003, 382, 1011, 1317, 544, 1198, 918, 1337, 311, 310, 1081, 1078, 1077, 960, 182, 924, 79, 1338, 80, 1339, 933, 92, 1339, 92, 132, 1340, 1341, 1342, 1340, 1342, 788, 1343, 115, 1344, 1097, 1099, 811, 76, 1345, 77, 420, 117, 170, 1346, 1347, 1348, 1349, 1329, 1350, 1348, 1351, 1093, 132, 92, 133, 1352, 333, 1353, 1354, 1355, 1350, 144, 1356, 321, 321, 1357, 67, 84, 83, 526, 1358, 84, 526, 1304, 1171, 1173, 67, 1357, 1359, 1360, 115, 1343, 303, 302, 1361, 1362, 763, 270, 159, 145, 1363, 418, 1200, 419, 1364, 973, 975, 1365, 1366, 1367, 1368, 1369, 1277, 624, 1370, 1371, 1315, 1372, 1373, 209, 1374, 104, 1363, 145, 190, 95, 97, 690, 850, 95, 690, 575, 318, 255, 302, 1375, 1376, 1373, 676, 678, 1210, 1377, 275, 1338, 1286, 29, 309, 1341, 775, 564, 1378, 470, 1379, 1241, 1240, 1377, 830, 1380, 236, 1005, 633, 4, 279, 278, 1064, 1372, 1058, 841, 1095, 1381, 1382, 1379, 1383, 231, 1273, 1272, 1384, 1385, 1386, 1387, 1388, 359, 1389, 1388, 1387, 224, 787, 867, 1390, 1391, 1392, 615, 27, 477, 812, 1326, 1097, 1393, 1382, 1383, 1344, 563, 562, 1344, 44, 563, 133, 1394, 822, 1395, 1396, 1397, 319, 575, 855, 1176, 677, 676, 1373, 1372, 676, 1398, 1303, 1184, 1399, 1338, 79, 4, 137, 1400, 246, 562, 564, 1364, 975, 1207, 853, 590, 1401, 1338, 29, 1402, 1312, 1388, 1403, 494, 493, 867, 311, 1341, 309, 1403, 1404, 183, 1405, 1406, 1407, 1360, 49, 115, 522, 524, 642, 509, 1408, 1409, 972, 971, 1241, 879, 1410, 1411, 689, 851, 690, 1372, 1064, 1176, 1411, 877, 879, 1412, 1413, 1414, 1241, 971, 1242, 651, 832, 1415, 1366, 581, 582, 1363, 1374, 1416, 1400, 137, 1417, 1418, 1387, 1307, 311, 1343, 1341, 131, 822, 1419, 1420, 1396, 1421, 1422, 1423, 1424, 1374, 209, 1425, 137, 1363, 1417, 1363, 190, 1374, 1355, 1349, 1350, 1426, 1427, 1428, 1429, 1430, 1431, 1432, 1433, 1316, 622, 1389, 1387, 903, 733, 1434, 1435, 1436, 1076, 1395, 1397, 1418, 406, 1318, 344, 1437, 1438, 1335, 1418, 1307, 1395, 1412, 1439, 1413, 1360, 1343, 311, 633, 1005, 811, 1177, 1100, 1326, 357, 273, 358, 1388, 1312, 359, 1375, 302, 301, 970, 1440, 1441, 1442, 1335, 602, 1443, 1383, 1379, 563, 46, 1378, 364, 1444, 1445, 1446, 826, 1328, 77, 793, 744, 1447, 1448, 1449, 1396, 1395, 1450, 1451, 1396, 1450, 658, 607, 1128, 1076, 1436, 1081, 420, 210, 117, 1215, 1452, 1453, 1421, 1451, 1454, 209, 116, 221, 133, 278, 1394, 1390, 1455, 1391, 970, 1441, 1456, 1441, 1390, 1457, 564, 563, 1378, 1272, 1318, 232, 1458, 1177, 812, 80, 1338, 186, 676, 1372, 1176, 788, 1342, 562, 189, 233, 222, 1459, 1460, 1262, 185, 329, 222, 619, 1311, 305, 1421, 1454, 1461, 1075, 1462, 1076, 1456, 1441, 1457, 1463, 1435, 1464, 974, 1455, 975, 1208, 975, 1440, 1465, 276, 1466, 133, 5, 278, 1467, 832, 651, 1456, 1457, 971, 499, 540, 610, 1129, 679, 634, 196, 1467, 651, 1342, 1344, 562, 1338, 1402, 186, 1468, 1469, 1470, 792, 1375, 744, 974, 1420, 1455, 1471, 1472, 1391, 926, 1473, 1474, 1475, 1476, 1477, 604, 603, 1478, 1033, 1014, 1479, 812, 1177, 1326, 404, 678, 677, 1480, 1481, 1482, 0, 2, 304, 622, 1387, 1418, 1478, 603, 2, 1436, 1148, 1081, 1483, 1484, 1485, 1486, 1414, 1487, 1472, 1392, 1391, 1412, 1414, 184, 63, 62, 1279, 1488, 112, 1270, 1158, 1489, 1213, 1490, 199, 1491, 1406, 1492, 1407, 1468, 1493, 1469, 1396, 1451, 1421, 1494, 1205, 1305, 1417, 1363, 1416, 1495, 1422, 1424, 1496, 1497, 839, 1436, 1498, 1148, 1058, 611, 1245, 1406, 1499, 1492, 1500, 49, 1360, 388, 651, 1415, 971, 1457, 1275, 1501, 1502, 276, 1451, 1450, 1503, 1450, 1307, 369, 674, 318, 640, 1374, 1425, 1416, 841, 1496, 839, 974, 973, 1424, 675, 981, 1504, 960, 1403, 183, 1414, 993, 184, 1451, 1503, 1454, 1505, 1506, 1507, 1502, 196, 195, 195, 1466, 276, 1207, 975, 1208, 273, 960, 924, 195, 276, 1502, 279, 4, 1400, 1382, 1508, 1379, 1509, 1510, 1511, 974, 1424, 1512, 326, 239, 252, 656, 1360, 311, 877, 1411, 1397, 1397, 622, 1418, 1200, 1442, 602, 602, 1513, 850, 1500, 47, 49, 1513, 95, 850, 1292, 1271, 320, 238, 769, 1514, 448, 757, 415, 1315, 1058, 1372, 1515, 1508, 1382, 1516, 1517, 1518, 1368, 1519, 1520, 1411, 622, 1397, 1242, 1275, 749, 1240, 1242, 749, 1240, 749, 1132, 564, 470, 246, 663, 854, 1211, 960, 183, 182, 1143, 1327, 1358, 1455, 1461, 1391, 1423, 1397, 1396, 1393, 1383, 1470, 1387, 359, 1307, 273, 924, 326, 1400, 1417, 1521, 1522, 857, 1523, 5, 4, 278, 1424, 1423, 1512, 877, 1397, 1423, 851, 618, 849, 344, 1318, 662, 1524, 1525, 444, 1411, 623, 622, 662, 1500, 1360, 656, 662, 1360, 40, 185, 1526, 1380, 1467, 1501, 1, 1478, 2, 2, 603, 304, 305, 904, 0, 970, 1456, 971, 1450, 369, 1503, 270, 1510, 1362, 773, 1288, 1017, 305, 1311, 904, 1312, 1403, 960, 1242, 971, 1275, 1209, 1208, 1440, 1342, 1341, 1343, 1114, 1116, 1097, 1337, 656, 311, 1209, 1440, 970, 1527, 1523, 857, 794, 793, 1345, 1508, 1241, 1379, 1440, 1390, 1441, 567, 569, 647, 1528, 1028, 1289, 1420, 1421, 1455, 1470, 1469, 1529, 184, 993, 768, 1512, 1423, 1396, 1530, 1163, 1157, 1395, 1307, 1450, 1531, 1532, 1533, 233, 131, 1419, 1489, 1289, 1213, 1489, 1528, 1289, 1528, 409, 1028, 1514, 251, 238, 1470, 1529, 1393, 1534, 276, 1465, 1272, 1274, 662, 1132, 749, 712, 966, 236, 633, 1535, 1536, 1537, 1440, 975, 1390, 1454, 1538, 1461, 1274, 1500, 662, 1201, 1478, 1, 1274, 47, 1500, 1530, 1195, 1163, 1432, 1316, 678, 1461, 1538, 1471, 1433, 612, 1316, 1455, 1421, 1461, 1508, 972, 1241, 1512, 1396, 1420, 420, 1201, 1, 1539, 1158, 1288, 1539, 1489, 1158, 1539, 1528, 1489, 547, 409, 1528, 1540, 642, 1254, 1473, 1541, 1542, 1543, 1175, 1544, 1543, 1530, 1175, 524, 1036, 1220, 208, 1113, 206, 975, 1455, 1390, 974, 1512, 1420, 420, 68, 1201, 1545, 1546, 1547, 68, 419, 1201, 710, 1528, 1539, 709, 547, 1528, 1530, 1302, 1195, 1302, 1131, 1195, 1503, 910, 1454, 1546, 79, 1547, 1544, 529, 1504, 26, 569, 568, 1546, 1399, 79, 773, 1539, 1288, 710, 709, 1528, 252, 710, 325, 1548, 216, 1549, 1541, 1548, 1549, 34, 487, 1256, 613, 1244, 611, 517, 518, 836, 1006, 1250, 1248, 1176, 1458, 677, 294, 354, 945, 1058, 1057, 1064, 310, 342, 1337, 756, 710, 1539, 612, 1433, 613, 1503, 369, 910, 981, 1543, 1544, 924, 237, 239, 1019, 1540, 1550, 1550, 1540, 1249, 1248, 485, 566, 268, 1304, 269, 756, 1539, 773, 642, 524, 1254, 80, 1243, 24, 304, 619, 305, 1551, 1552, 1553, 1473, 1542, 1474, 943, 1129, 1098, 981, 1544, 1504, 641, 1530, 1543, 1530, 641, 1302, 1530, 1157, 1175, 1249, 1220, 1250, 566, 485, 487, 1554, 972, 1508, 267, 642, 1540, 327, 755, 300, 1173, 909, 269, 115, 1555, 1344, 802, 516, 748, 1540, 1254, 1249, 1249, 1254, 1220, 755, 327, 325, 553, 853, 508, 1221, 338, 485, 1342, 1343, 1344, 981, 641, 1543, 1549, 216, 1556, 1220, 1221, 1250, 1250, 485, 1248, 486, 1256, 487, 755, 756, 773, 325, 710, 756, 709, 1179, 547, 1179, 548, 547, 1036, 338, 1221, 675, 1504, 391, 1250, 1221, 485, 10, 1557, 11, 1558, 1559, 1273, 10, 106, 54, 59, 123, 1560, 962, 1146, 1138, 1561, 494, 867, 1562, 1459, 106, 22, 21, 1195, 191, 59, 1560, 9, 1562, 106, 1378, 191, 471, 597, 652, 457, 1559, 47, 1273, 1044, 1037, 33, 1559, 11, 47, 1555, 44, 1344, 1563, 1330, 1564, 764, 1255, 340, 809, 1112, 356, 1255, 1565, 32, 1566, 33, 32, 1565, 1566, 32, 1566, 1044, 33, 1567, 102, 1568, 1569, 35, 37, 169, 168, 816, 764, 1251, 1255, 400, 413, 1236, 1570, 1571, 1247, 44, 114, 45, 1251, 1572, 1255, 1572, 1573, 1255, 1255, 1573, 1565, 1573, 1574, 1565, 1565, 1574, 1566, 1256, 1255, 32, 417, 575, 255, 1574, 1575, 1566, 458, 124, 127, 1576, 759, 760, 1566, 1575, 802, 1253, 1572, 1251, 1577, 1573, 1572, 1573, 1578, 1574, 1574, 1578, 1575, 1568, 572, 573, 1579, 1577, 1572, 1578, 1573, 1577, 1578, 1580, 1575, 1575, 521, 802, 38, 257, 64, 1310, 86, 127, 1580, 521, 1575, 1291, 1228, 521, 1291, 521, 1580, 1580, 1578, 1577, 772, 1291, 1580, 844, 998, 1281, 21, 1145, 1195, 688, 97, 108, 1437, 1335, 1442, 1267, 1581, 1268, 136, 135, 1329, 1582, 1577, 1579, 1235, 1582, 1579, 1582, 1580, 1577, 1580, 1582, 772, 132, 30, 1285, 728, 759, 727, 1350, 1329, 3, 104, 170, 209, 1570, 1247, 165, 933, 1350, 93, 1350, 3, 93, 1091, 1583, 1070, 299, 300, 1582, 1582, 300, 772, 1145, 21, 1112, 1576, 37, 693, 1584, 158, 178, 730, 158, 22, 165, 1112, 21, 867, 595, 224, 865, 1585, 6, 1273, 1259, 1558, 60, 124, 58, 573, 155, 154, 1409, 450, 509, 1380, 830, 1467, 1482, 275, 1586, 157, 177, 179, 1587, 86, 1310, 1587, 87, 86, 158, 1584, 1588, 1588, 1589, 164, 1567, 1568, 1571, 1587, 689, 101, 87, 1587, 101, 689, 688, 101, 1590, 1322, 687, 1557, 48, 47, 164, 1589, 1570, 688, 690, 97, 81, 188, 257, 87, 102, 1567, 1591, 1592, 1593, 458, 127, 1594, 106, 1263, 42, 881, 36, 1595, 82, 81, 18, 1596, 1597, 1598, 56, 10, 54, 1558, 829, 1559, 1599, 1600, 1601, 1570, 1589, 1571, 1555, 55, 44, 55, 1602, 44, 1602, 114, 44, 1602, 43, 114, 43, 57, 114, 823, 1590, 1603, 1604, 144, 143, 1592, 1585, 1593, 612, 611, 1058, 11, 1557, 47, 1605, 16, 663, 456, 1606, 1607, 1309, 1587, 1310, 1608, 1609, 1562, 86, 88, 1594, 1599, 1585, 1592, 1610, 391, 390, 47, 1274, 1273, 141, 157, 179, 1601, 1610, 1590, 1611, 390, 1197, 1280, 998, 1108, 102, 572, 1568, 458, 1594, 1596, 1608, 152, 151, 828, 648, 946, 390, 392, 530, 530, 1197, 390, 340, 339, 764, 1356, 655, 321, 1571, 1612, 1247, 573, 154, 218, 18, 257, 38, 390, 1611, 1610, 177, 1613, 178, 1589, 1567, 1571, 1243, 1227, 25, 1614, 829, 1558, 1568, 573, 1612, 1615, 1567, 1589, 88, 1597, 1594, 1600, 1610, 1601, 321, 655, 1357, 1599, 1601, 360, 1560, 458, 1616, 1598, 1584, 178, 1599, 360, 1585, 179, 142, 141, 164, 1570, 165, 932, 1617, 657, 1597, 1615, 1584, 43, 58, 57, 67, 1359, 68, 360, 1601, 459, 1593, 1585, 865, 490, 1603, 687, 490, 687, 686, 102, 101, 108, 179, 729, 142, 158, 164, 20, 328, 71, 70, 166, 1618, 124, 1619, 1596, 1598, 1267, 1620, 234, 179, 730, 729, 1564, 391, 1610, 1600, 1564, 1610, 68, 1621, 418, 109, 96, 155, 614, 561, 665, 459, 1601, 823, 1601, 1590, 823, 418, 1442, 1200, 1622, 218, 219, 1619, 1598, 1623, 1624, 1625, 1626, 788, 647, 1340, 1610, 1611, 1322, 88, 87, 1567, 1593, 865, 1627, 1427, 1600, 1628, 88, 1567, 1615, 663, 1211, 1629, 103, 321, 67, 1590, 1610, 1322, 226, 1009, 298, 408, 1630, 1150, 1631, 1632, 1633, 124, 60, 166, 1612, 573, 1622, 1622, 573, 218, 257, 107, 64, 1564, 1330, 391, 563, 44, 46, 1288, 1158, 1067, 107, 865, 6, 127, 86, 1594, 1612, 1622, 1247, 251, 1634, 1179, 813, 1167, 815, 179, 178, 730, 1245, 825, 1058, 1613, 1598, 178, 1635, 1354, 1636, 1514, 1634, 251, 499, 1104, 440, 1179, 1634, 548, 548, 1637, 407, 1590, 687, 1603, 1560, 123, 458, 1638, 1262, 1460, 1584, 1615, 1588, 829, 11, 1559, 1597, 88, 1615, 823, 1603, 490, 1598, 1597, 1584, 1309, 619, 1587, 1634, 1639, 548, 548, 1639, 1637, 1330, 675, 391, 1588, 1615, 1589, 851, 1587, 619, 1587, 851, 689, 1434, 733, 734, 651, 388, 197, 1428, 1628, 1592, 1628, 1599, 1592, 102, 108, 572, 10, 56, 1557, 153, 152, 9, 1571, 1568, 1612, 319, 318, 575, 1630, 408, 407, 213, 1640, 1641, 1592, 1591, 1428, 1611, 1197, 1322, 1197, 609, 1322, 108, 109, 572, 815, 1319, 814, 1623, 1598, 1613, 1642, 1623, 1613, 1643, 1514, 769, 1644, 1150, 1630, 1645, 1644, 1630, 1646, 1534, 1647, 220, 116, 118, 1648, 1649, 1650, 37, 760, 1319, 572, 109, 155, 1594, 1597, 1596, 1634, 1651, 1639, 1639, 1652, 1637, 1637, 1652, 407, 1652, 1653, 407, 1653, 1630, 407, 1653, 1645, 1630, 1481, 275, 1482, 815, 1569, 1319, 1628, 1600, 1599, 1557, 56, 48, 115, 55, 1555, 1514, 1654, 1634, 458, 1596, 1616, 1654, 1651, 1634, 1651, 1655, 1639, 1639, 1655, 1652, 621, 43, 1602, 1656, 1653, 1652, 42, 1263, 134, 1481, 1211, 275, 1657, 1658, 1654, 1514, 1657, 1654, 1654, 1655, 1651, 1655, 1656, 1652, 1643, 1657, 1514, 106, 42, 54, 459, 823, 12, 491, 490, 686, 278, 1659, 1394, 1656, 1645, 1653, 1427, 1628, 1428, 1504, 529, 392, 187, 328, 1627, 1211, 1210, 275, 247, 468, 720, 151, 1660, 1661, 903, 1434, 931, 1658, 1662, 1654, 1654, 1662, 1655, 1280, 1644, 1645, 534, 988, 1238, 158, 1588, 164, 1663, 1645, 1656, 1663, 1280, 1645, 1563, 1664, 1330, 219, 194, 356, 1665, 794, 1345, 1541, 1549, 1542, 1666, 1280, 1663, 865, 187, 1627, 1642, 1613, 177, 1401, 830, 1377, 475, 1667, 100, 1662, 1668, 1655, 1655, 1669, 1656, 1670, 1663, 1656, 1666, 1671, 1280, 1280, 1671, 1281, 1617, 475, 657, 1622, 219, 356, 1657, 1672, 1658, 1658, 1672, 1662, 1672, 1673, 1662, 1655, 1668, 1669, 1669, 1670, 1656, 734, 98, 1667, 1563, 1600, 1427, 354, 353, 945, 6, 1585, 360, 475, 1617, 1667, 1247, 1622, 356, 621, 1602, 55, 1662, 1673, 1668, 1670, 1666, 1663, 1671, 842, 1281, 1345, 793, 77, 1617, 930, 1667, 152, 1608, 1562, 1475, 1647, 1476, 43, 60, 58, 788, 245, 647, 616, 615, 310, 1669, 1674, 1670, 92, 5, 133, 814, 728, 813, 152, 1562, 9, 854, 853, 1401, 209, 221, 1425, 1673, 363, 1668, 1675, 1671, 1666, 1671, 843, 842, 1600, 1563, 1564, 1569, 37, 1319, 686, 629, 639, 363, 362, 1668, 1668, 362, 1669, 1669, 362, 1674, 1670, 1675, 1666, 930, 1434, 734, 1667, 930, 734, 1112, 1123, 1145, 1672, 1676, 1673, 1674, 1675, 1670, 890, 1671, 1675, 1671, 770, 843, 843, 770, 771, 24, 1243, 25, 46, 191, 1378, 145, 144, 190, 926, 1474, 840, 1677, 1091, 1069, 362, 804, 1674, 1671, 890, 770, 931, 821, 820, 37, 1576, 760, 1676, 363, 1673, 1674, 906, 1675, 906, 890, 1675, 687, 609, 629, 930, 931, 1434, 1660, 151, 829, 865, 188, 187, 890, 803, 770, 246, 472, 596, 409, 547, 407, 1562, 1460, 1459, 0, 905, 1678, 804, 906, 1674, 391, 1504, 392, 56, 54, 53, 606, 650, 692, 1679, 1680, 1381, 1402, 29, 186, 389, 1681, 996, 211, 0, 1678, 852, 363, 1676, 34, 33, 1037, 805, 1682, 827, 1321, 212, 214, 1347, 1624, 1683, 14, 16, 1624, 1684, 1460, 1562, 1415, 1685, 1686, 16, 1605, 1624, 1347, 14, 1624, 591, 592, 1127, 1687, 931, 820, 1688, 713, 1689, 1690, 776, 1691, 767, 738, 1691, 1692, 345, 259, 1376, 1336, 302, 916, 819, 821, 1142, 1693, 1694, 1223, 1695, 1267, 889, 903, 1696, 1174, 15, 14, 899, 928, 920, 1697, 1698, 761, 1699, 796, 753, 1700, 1230, 1231, 761, 752, 745, 779, 1701, 751, 1324, 134, 1262, 791, 1702, 1701, 1703, 456, 1607, 134, 1263, 1262, 445, 444, 1525, 534, 816, 168, 1618, 166, 1323, 1699, 1704, 796, 479, 174, 1705, 213, 1496, 1680, 614, 925, 657, 1706, 1707, 1708, 215, 61, 1709, 595, 472, 224, 589, 457, 456, 1710, 874, 889, 286, 1711, 260, 897, 886, 1712, 492, 176, 787, 1195, 1131, 22, 1689, 713, 1713, 1216, 1215, 1714, 1703, 589, 456, 134, 1324, 1323, 1715, 1704, 1699, 1701, 1702, 1697, 1716, 938, 881, 1717, 1698, 1697, 1696, 1682, 1710, 677, 1458, 631, 1618, 1325, 1718, 1719, 1618, 1718, 148, 150, 1720, 1721, 1713, 697, 1717, 882, 869, 761, 1722, 762, 1723, 1724, 1725, 234, 1223, 1267, 1701, 1697, 761, 1726, 1727, 1728, 1693, 1729, 1730, 789, 838, 790, 1701, 779, 791, 533, 532, 897, 1682, 875, 827, 1347, 1174, 14, 1415, 831, 1731, 1415, 1731, 1685, 1732, 1686, 1685, 1731, 1732, 1685, 1225, 168, 1733, 1346, 1174, 1347, 1715, 874, 1710, 1703, 1734, 1401, 897, 532, 899, 37, 938, 693, 897, 899, 886, 962, 658, 1128, 647, 775, 1340, 1687, 820, 875, 1689, 1735, 1688, 231, 1259, 1273, 1687, 875, 1682, 590, 1703, 1401, 1710, 1682, 1704, 869, 868, 1698, 1463, 1498, 1436, 875, 845, 827, 596, 244, 246, 1682, 796, 1704, 1093, 489, 1346, 633, 811, 634, 1606, 1736, 1731, 1625, 1629, 1626, 1346, 489, 1174, 1698, 868, 1722, 868, 874, 1715, 886, 1717, 1737, 713, 668, 697, 949, 1298, 1260, 831, 1607, 1731, 126, 1719, 1738, 346, 345, 367, 1739, 163, 1740, 1740, 162, 154, 365, 367, 366, 1159, 568, 1160, 126, 124, 1618, 1657, 1741, 1672, 1325, 1618, 1323, 1690, 714, 713, 1742, 1743, 1744, 868, 870, 874, 808, 838, 789, 261, 260, 1711, 664, 16, 927, 793, 792, 744, 1689, 1713, 1721, 1728, 1727, 1724, 1629, 1745, 1626, 864, 885, 838, 455, 457, 644, 1746, 1742, 1744, 761, 1698, 1722, 1747, 148, 1720, 1747, 1748, 1743, 927, 853, 664, 886, 1737, 1712, 1226, 1225, 961, 1542, 1749, 1474, 1444, 1750, 1751, 897, 1712, 885, 1225, 1721, 961, 577, 1752, 1753, 1620, 1267, 1269, 423, 1754, 1755, 366, 367, 1756, 1746, 1744, 1757, 886, 882, 1717, 1720, 1758, 1748, 1747, 1720, 1748, 1692, 261, 1759, 1044, 1566, 748, 1702, 1737, 1717, 167, 777, 1689, 1760, 1761, 1762, 366, 1756, 1750, 1759, 1763, 1756, 1757, 1744, 1764, 1742, 1746, 1765, 160, 1743, 1742, 455, 1606, 456, 1766, 436, 1257, 1146, 1767, 1139, 1768, 1769, 63, 578, 577, 1753, 1770, 1771, 577, 1702, 1717, 1697, 1772, 1773, 1774, 1720, 1739, 1775, 1745, 1481, 1480, 1776, 1777, 1778, 1779, 1745, 1480, 1766, 1257, 343, 1296, 1295, 1333, 1780, 197, 389, 1781, 1773, 905, 1782, 1770, 577, 1326, 1114, 1097, 366, 1750, 1444, 1743, 1748, 1744, 367, 1692, 1759, 508, 927, 16, 1696, 903, 931, 1783, 1770, 1782, 1783, 1784, 1770, 1784, 1771, 1770, 961, 697, 658, 1764, 1744, 1785, 1784, 1647, 1475, 213, 1641, 1496, 1125, 633, 632, 925, 614, 665, 160, 1742, 1490, 1786, 1679, 1787, 1748, 1758, 1785, 1720, 1775, 1758, 1064, 1101, 1176, 1635, 1636, 1285, 1724, 1727, 1788, 869, 1698, 1717, 762, 1699, 752, 1789, 1626, 1745, 1790, 261, 1711, 1791, 1683, 1789, 1688, 776, 1690, 1783, 1646, 1784, 1646, 1647, 1784, 148, 1747, 1743, 1792, 1793, 1286, 1286, 1793, 1284, 1794, 1285, 1284, 1794, 1635, 1285, 1688, 1735, 776, 751, 1701, 745, 1720, 163, 1739, 207, 206, 855, 1744, 1748, 1785, 1335, 1513, 602, 776, 808, 1691, 1782, 1795, 1783, 1795, 1646, 1783, 697, 1713, 713, 167, 778, 777, 1623, 1642, 1796, 345, 1692, 367, 1719, 126, 1618, 1629, 1481, 1745, 1797, 1795, 1782, 1733, 1689, 1225, 163, 162, 1740, 777, 1735, 1689, 1316, 1373, 678, 1793, 1794, 1284, 839, 1473, 926, 1624, 1605, 1625, 1734, 1703, 1607, 1736, 1732, 1731, 261, 1790, 1759, 1701, 761, 745, 753, 752, 1699, 1321, 1786, 1787, 1399, 1798, 1792, 1798, 1793, 1792, 1799, 1635, 1794, 1800, 425, 427, 789, 790, 766, 1711, 286, 1801, 1802, 1646, 1795, 1733, 168, 167, 1793, 1803, 1794, 1799, 1354, 1635, 1715, 1699, 762, 961, 962, 1519, 166, 134, 1323, 1491, 160, 1490, 167, 1689, 1733, 1223, 1804, 1695, 121, 1648, 1776, 1763, 1759, 1790, 167, 169, 778, 838, 885, 1712, 679, 324, 632, 1805, 1331, 1806, 1790, 1711, 1807, 1807, 1711, 1801, 1534, 1646, 1802, 1722, 1715, 762, 1532, 1531, 1808, 1295, 1030, 216, 1223, 234, 243, 1798, 1399, 1546, 1798, 1763, 1793, 1793, 1763, 1803, 838, 1712, 790, 1175, 529, 1544, 1809, 1031, 1030, 1676, 1672, 1810, 1696, 1687, 1682, 1811, 95, 1513, 1812, 1802, 1797, 1262, 1325, 1324, 1476, 1466, 1477, 1546, 1813, 1798, 1803, 1807, 1794, 1807, 1799, 1794, 1807, 1814, 1799, 868, 1715, 1722, 791, 1737, 1702, 1688, 1690, 713, 61, 63, 1447, 1815, 1264, 826, 146, 148, 1743, 197, 1780, 1816, 1817, 1739, 1740, 1775, 1739, 1817, 1334, 1513, 1335, 1334, 1811, 1513, 96, 95, 1811, 1341, 1340, 775, 1812, 1818, 1802, 1802, 1818, 1534, 1465, 1466, 1476, 1715, 1710, 1704, 450, 452, 461, 1813, 1819, 1798, 1819, 1763, 1798, 1814, 1820, 1799, 195, 197, 1816, 1801, 1821, 1820, 109, 97, 96, 1822, 1823, 1824, 1825, 1826, 1827, 1624, 1626, 1789, 1712, 1737, 791, 367, 1759, 1756, 1710, 889, 1696, 1546, 1828, 1813, 1829, 1830, 1553, 215, 62, 61, 1405, 1407, 1831, 961, 1721, 697, 1832, 1375, 792, 1031, 1833, 1677, 790, 1712, 791, 1238, 816, 534, 177, 1834, 1642, 777, 776, 1735, 1816, 1477, 1466, 1780, 996, 1477, 1816, 1780, 1477, 389, 996, 1780, 1835, 1836, 1837, 1763, 1790, 1803, 1803, 1790, 1807, 393, 1772, 1838, 232, 1318, 406, 1832, 1376, 1375, 1839, 1840, 1470, 1775, 1334, 1336, 1817, 1811, 1334, 1475, 1771, 1784, 878, 1423, 1422, 1812, 277, 1818, 277, 1534, 1818, 1762, 1761, 1841, 1751, 1750, 1813, 1813, 1750, 1819, 794, 1764, 792, 792, 1764, 1832, 1775, 1336, 1376, 1817, 1334, 1775, 1811, 1740, 96, 1696, 931, 1687, 1691, 808, 767, 714, 1691, 738, 177, 938, 1834, 796, 1682, 805, 1842, 199, 1490, 767, 808, 789, 28, 310, 309, 195, 1816, 1466, 1720, 150, 163, 1843, 785, 784, 1807, 1801, 1814, 1814, 1801, 1820, 1844, 1764, 794, 1785, 1376, 1832, 1740, 1811, 1817, 26, 28, 309, 146, 1743, 160, 177, 157, 938, 1108, 1150, 1644, 1279, 1031, 1070, 1786, 1680, 1679, 215, 1556, 216, 1845, 1835, 1632, 1750, 1756, 1819, 1819, 1756, 1763, 1457, 1846, 1275, 805, 827, 780, 1225, 1689, 1721, 1586, 275, 277, 37, 881, 938, 96, 1740, 154, 1764, 1785, 1832, 1785, 1758, 1376, 1758, 1775, 1376, 1257, 1847, 230, 1848, 1849, 1850, 1851, 1852, 1853, 1259, 1258, 1854, 1855, 1856, 1857, 94, 306, 1429, 119, 1858, 1430, 1859, 1860, 1861, 199, 228, 217, 1252, 1124, 1862, 122, 1863, 1385, 1864, 1865, 1777, 928, 899, 532, 830, 1734, 831, 437, 1866, 435, 1867, 462, 461, 151, 1661, 1868, 435, 1869, 1868, 1183, 1870, 1871, 422, 424, 749, 435, 1866, 1869, 1609, 1608, 1868, 1872, 1873, 477, 1869, 1874, 1868, 1872, 1875, 437, 1873, 1872, 437, 437, 1875, 1866, 1876, 1609, 1868, 1874, 1876, 1868, 1866, 1877, 1869, 1869, 1877, 1874, 744, 1375, 301, 1878, 1872, 1879, 1876, 1684, 1609, 1562, 1609, 1684, 1872, 1878, 1875, 1875, 1880, 1866, 1866, 1880, 1877, 85, 1881, 83, 1874, 1882, 1876, 1876, 1882, 1684, 1882, 1883, 1684, 1878, 1884, 1875, 1877, 1882, 1874, 302, 1438, 1361, 1878, 1879, 743, 1885, 1883, 1882, 1877, 1885, 1882, 1792, 1286, 1338, 1524, 1878, 743, 1884, 1886, 1875, 1875, 1886, 1880, 1381, 1680, 841, 1880, 1885, 1877, 1887, 1859, 1861, 1625, 1605, 663, 742, 1525, 743, 1638, 1460, 1883, 1885, 1638, 1883, 995, 1477, 996, 1888, 1889, 1859, 1890, 1867, 1891, 1201, 604, 1478, 1892, 1525, 742, 1893, 1878, 1524, 1893, 1884, 1878, 1894, 1895, 1896, 1897, 1898, 1899, 1525, 1524, 743, 1900, 1901, 1902, 1853, 1852, 1903, 1904, 1831, 1407, 1905, 1906, 1837, 1906, 1907, 1835, 1907, 1908, 1835, 1908, 1633, 1835, 444, 1893, 1524, 1885, 1909, 1638, 1439, 1910, 1911, 1905, 1912, 1906, 1906, 1913, 1907, 1914, 1631, 1915, 1916, 1633, 1908, 1917, 1885, 1880, 1886, 1917, 1880, 1909, 1262, 1638, 1889, 1918, 1860, 1919, 1920, 1921, 1315, 612, 1058, 1922, 1913, 1906, 1912, 1922, 1906, 1913, 1923, 1907, 1923, 1924, 1908, 1907, 1923, 1908, 1709, 1915, 1633, 1916, 1709, 1633, 1909, 1925, 1262, 1919, 120, 1920, 1887, 783, 1431, 1870, 1926, 1905, 1923, 1927, 1924, 1924, 1916, 1908, 815, 1167, 1264, 1917, 1909, 1885, 663, 664, 854, 76, 1604, 1196, 1920, 120, 1385, 1859, 1889, 1860, 1926, 1922, 1905, 1905, 1922, 1912, 1709, 1916, 1924, 1286, 1285, 30, 1928, 1917, 1886, 1884, 1928, 1886, 1887, 1861, 783, 1183, 1929, 1926, 1870, 1183, 1926, 1922, 1930, 1913, 1709, 1449, 1915, 1917, 1931, 1909, 1909, 1931, 1925, 1467, 830, 832, 1629, 1211, 1481, 1361, 1437, 418, 98, 100, 1667, 287, 1290, 286, 1920, 1384, 1932, 1933, 1929, 1183, 1926, 1934, 1922, 1913, 1930, 1923, 1893, 1928, 1884, 1792, 1338, 1399, 856, 875, 820, 1935, 1522, 1936, 1935, 858, 1937, 1935, 1938, 858, 1938, 1939, 858, 1799, 1820, 1355, 1933, 1940, 1929, 1926, 1929, 1934, 1927, 1556, 1924, 215, 1709, 1924, 1556, 215, 1924, 1354, 1799, 1355, 1820, 1941, 1355, 1925, 1325, 1262, 1941, 1349, 1355, 1934, 1930, 1922, 1930, 1749, 1923, 1923, 1542, 1927, 1542, 1556, 1927, 1942, 1943, 1595, 1917, 1944, 1931, 1931, 1325, 1925, 1945, 857, 859, 1183, 1182, 1933, 1923, 1749, 1542, 1378, 471, 470, 1468, 1946, 1493, 1947, 1948, 1949, 445, 1950, 443, 443, 1950, 444, 1858, 1951, 1952, 1823, 1856, 1855, 1953, 1938, 1935, 1953, 528, 1938, 1881, 1182, 1954, 1933, 1182, 1940, 1940, 1934, 1929, 1930, 1955, 1749, 1956, 1287, 1303, 78, 144, 1604, 78, 1356, 144, 1160, 1957, 445, 445, 1957, 1950, 1950, 1958, 444, 1958, 1893, 444, 1893, 1959, 1928, 1936, 1953, 1935, 1934, 1955, 1930, 1960, 1893, 1958, 1960, 1959, 1893, 1928, 1944, 1917, 1961, 1962, 1963, 1647, 1465, 1476, 1936, 1964, 1953, 1468, 1261, 1965, 83, 1881, 1954, 1934, 1095, 1955, 1749, 1955, 1474, 76, 78, 1604, 1959, 1944, 1928, 1944, 1966, 1931, 1967, 1446, 1963, 1268, 1967, 1963, 1968, 528, 1953, 1969, 1182, 1881, 1182, 1970, 1940, 50, 1971, 509, 404, 677, 631, 1210, 1401, 1377, 830, 1401, 1734, 1972, 1718, 1931, 1966, 1972, 1931, 1931, 1718, 1325, 1968, 1953, 1964, 1968, 526, 528, 1182, 1969, 1970, 1095, 840, 1955, 1959, 1966, 1944, 655, 301, 303, 1970, 1381, 1940, 1940, 1381, 1934, 1934, 1381, 1095, 1973, 1974, 1865, 63, 1279, 1975, 303, 1361, 1621, 1621, 1361, 418, 1357, 655, 1359, 1957, 1976, 1950, 1607, 831, 1734, 854, 1401, 1210, 1977, 1968, 1964, 1969, 1978, 1970, 1979, 1980, 1981, 1520, 1138, 1982, 1625, 663, 1629, 1983, 1984, 1985, 1941, 1986, 1349, 1987, 1958, 1950, 1958, 1987, 1960, 577, 1771, 1752, 77, 301, 655, 1196, 1604, 143, 982, 1988, 1964, 1988, 1977, 1964, 1977, 526, 1968, 851, 850, 690, 1989, 1969, 1881, 1989, 1978, 1969, 1990, 1921, 1920, 1991, 204, 1992, 1377, 1380, 1501, 1501, 1467, 196, 1501, 196, 1502, 1377, 1501, 276, 1377, 276, 275, 1987, 1966, 1959, 1960, 1987, 1959, 1820, 1821, 1941, 13, 12, 491, 602, 850, 849, 1268, 1581, 1967, 1978, 1381, 1970, 1980, 1993, 1994, 1572, 1253, 1579, 1981, 1980, 1849, 831, 1415, 832, 851, 619, 618, 509, 461, 460, 1987, 1995, 1966, 1966, 1995, 1972, 78, 655, 1356, 604, 1200, 602, 85, 1989, 1881, 1787, 1679, 1989, 1978, 1679, 1381, 1994, 1864, 1849, 1996, 1997, 1998, 1999, 1519, 1368, 1448, 1505, 2000, 849, 618, 603, 1, 210, 420, 1234, 1976, 1320, 1359, 303, 68, 1138, 1519, 962, 2001, 1569, 1967, 1233, 1977, 1988, 1977, 1358, 526, 1416, 1425, 221, 68, 303, 1621, 2002, 1951, 1858, 2003, 2004, 2005, 69, 170, 104, 1976, 2006, 1950, 1718, 1972, 1995, 1291, 1017, 1228, 1437, 1442, 418, 419, 1200, 1201, 266, 356, 194, 1465, 1647, 1534, 606, 938, 157, 1244, 613, 1961, 2007, 2008, 2009, 2009, 2008, 2010, 1103, 343, 342, 2011, 1895, 1894, 1561, 1976, 1234, 1995, 2012, 1718, 1311, 619, 1309, 1691, 714, 1690, 1361, 1438, 1437, 330, 2002, 1858, 1997, 2013, 2007, 2010, 2014, 1215, 1993, 1487, 1973, 329, 29, 31, 1950, 2015, 1987, 1987, 2015, 1995, 29, 1286, 30, 143, 145, 159, 1851, 2016, 1852, 2017, 2008, 2007, 2014, 1452, 1215, 1593, 2018, 2019, 1374, 190, 104, 933, 1354, 1350, 1561, 2006, 1976, 2015, 1950, 2006, 2015, 2012, 1995, 2001, 35, 1569, 1595, 1581, 1695, 36, 2001, 1581, 2020, 1830, 2021, 80, 186, 1227, 1285, 1339, 132, 1952, 1951, 1859, 2022, 2023, 2024, 1965, 2020, 2025, 2026, 2010, 2008, 2027, 1848, 1888, 1561, 2028, 2006, 1339, 1285, 933, 36, 1581, 1595, 2012, 1719, 1718, 1636, 1354, 933, 1413, 1439, 1865, 2029, 2030, 2024, 2011, 1583, 1895, 2013, 2017, 2007, 2014, 2010, 2026, 1862, 1509, 2031, 1706, 1708, 2032, 204, 2033, 205, 2015, 2034, 2012, 1285, 1636, 933, 137, 159, 1363, 1506, 1386, 1537, 337, 1229, 1135, 2011, 2035, 2036, 2037, 2017, 2013, 2017, 2038, 2008, 2008, 2038, 2026, 2039, 1706, 2032, 2040, 2035, 2041, 2042, 1903, 2041, 1492, 1499, 1055, 204, 1536, 2033, 1430, 1887, 1431, 1918, 1889, 2043, 1406, 1506, 1505, 277, 276, 1534, 1851, 1857, 2016, 1729, 2044, 1730, 1730, 2044, 2045, 1985, 2046, 1983, 2037, 2047, 2017, 1447, 1499, 1448, 1852, 2016, 2048, 783, 1861, 784, 2028, 867, 1827, 2028, 2049, 2006, 2034, 2015, 2006, 1542, 1549, 1556, 186, 29, 329, 1867, 1890, 2050, 1983, 2051, 2037, 2052, 2047, 2037, 2047, 2038, 2017, 2053, 2026, 2038, 2026, 2054, 2014, 2054, 1452, 2014, 2055, 2056, 1452, 184, 183, 1412, 2021, 1830, 1829, 1406, 1384, 1506, 2028, 1827, 2049, 2034, 1738, 1719, 2012, 2034, 1719, 1716, 881, 1595, 2057, 2050, 1890, 1431, 1853, 2058, 2059, 2060, 1985, 1985, 2060, 2046, 2037, 2051, 2052, 2047, 2053, 2038, 2053, 2054, 2026, 2061, 1452, 2054, 2062, 2056, 2055, 1768, 1055, 1769, 1499, 1447, 1769, 1384, 1406, 1932, 1826, 2049, 1827, 2049, 2063, 2006, 2006, 2063, 2034, 1716, 1595, 1943, 2064, 1716, 1943, 2065, 1890, 1891, 2050, 1729, 2066, 2044, 2067, 2068, 1800, 2060, 2059, 2046, 2069, 1983, 1983, 2069, 2051, 2052, 2070, 2047, 2047, 2070, 2053, 2071, 2054, 2053, 2055, 1452, 2061, 852, 2002, 330, 1499, 1769, 1055, 2072, 1826, 1781, 2072, 2049, 1826, 1738, 2034, 2063, 426, 2068, 2067, 824, 826, 1264, 769, 992, 991, 1954, 1182, 1287, 1517, 2039, 2032, 2070, 2073, 2053, 2074, 2071, 2053, 2054, 1659, 2061, 1659, 280, 2061, 280, 2055, 2061, 2075, 2058, 1903, 1278, 1277, 2076, 905, 2072, 1781, 2072, 2063, 2049, 2064, 1943, 2077, 2078, 1891, 74, 2078, 2079, 1891, 2079, 2065, 1891, 1890, 2065, 2057, 2050, 2044, 1729, 2051, 1526, 2052, 2071, 1659, 2054, 2080, 2081, 2082, 2081, 2083, 2082, 2084, 2085, 1370, 1773, 1781, 1774, 2086, 2063, 2072, 1796, 2064, 2077, 1752, 2078, 74, 997, 2044, 2050, 2069, 2087, 2051, 2051, 2087, 1526, 2052, 1526, 2070, 2073, 2074, 2053, 2062, 1521, 395, 2080, 395, 1521, 2080, 1416, 2081, 118, 1773, 220, 2088, 1487, 1993, 904, 2086, 2072, 2086, 1738, 2063, 2089, 2064, 1796, 2089, 1716, 2064, 2089, 1834, 1716, 1771, 2078, 1752, 1438, 1336, 1335, 126, 1738, 127, 1771, 2079, 2078, 997, 1681, 2044, 2044, 1681, 2067, 282, 2090, 2069, 2046, 282, 2069, 2069, 2090, 2087, 2087, 40, 1526, 233, 2074, 2073, 2074, 1419, 2071, 1394, 1659, 2071, 280, 279, 2055, 279, 2062, 2055, 221, 2083, 2081, 221, 220, 2083, 118, 1678, 1773, 1678, 905, 1773, 905, 904, 2072, 1310, 1738, 2086, 995, 2050, 2057, 995, 997, 2050, 2074, 233, 1419, 279, 1521, 2062, 904, 1311, 2086, 1311, 1310, 2086, 2084, 2091, 2030, 1496, 841, 1680, 36, 35, 2001, 1475, 2079, 1771, 1475, 2065, 2079, 1475, 2057, 2065, 1787, 84, 1321, 2090, 40, 2087, 2070, 222, 2073, 222, 233, 2073, 1419, 822, 2071, 822, 1394, 2071, 278, 280, 1659, 1416, 221, 2081, 211, 1678, 118, 199, 160, 1491, 655, 303, 1359, 1642, 1834, 2089, 302, 1336, 1438, 1477, 2057, 1475, 2057, 1477, 995, 996, 1681, 997, 213, 1680, 1786, 213, 1786, 214, 214, 1786, 1321, 282, 2046, 283, 1526, 185, 2070, 2070, 185, 222, 279, 1400, 1521, 1521, 1417, 2080, 1417, 1416, 2080, 1863, 2023, 2092, 2023, 2093, 2092, 1980, 2094, 1993, 878, 877, 1423, 1778, 2030, 2029, 2095, 1429, 2058, 1259, 1614, 1558, 2096, 2042, 1896, 2011, 2036, 1070, 569, 26, 774, 1431, 783, 785, 1506, 1384, 1386, 1449, 1448, 1914, 1657, 1979, 1741, 1979, 2097, 1741, 230, 1847, 1258, 231, 230, 1258, 83, 1954, 526, 1499, 1406, 1505, 1776, 1778, 2029, 2098, 1471, 1538, 826, 825, 1328, 1272, 232, 231, 1234, 567, 244, 1741, 2097, 2099, 2024, 2023, 2100, 2085, 2084, 1778, 1904, 1054, 2048, 910, 370, 2101, 2102, 2103, 2104, 1404, 1439, 183, 2101, 1538, 910, 1910, 1404, 1371, 1439, 1404, 1910, 2105, 2003, 2106, 1424, 973, 1495, 1864, 2107, 1849, 2108, 1864, 2109, 2110, 2096, 1896, 94, 1429, 70, 2099, 2027, 1951, 2024, 2030, 2022, 1993, 1973, 1864, 2097, 2027, 2099, 1657, 2094, 1979, 1911, 2085, 1778, 1864, 1777, 1650, 1850, 1849, 2107, 1386, 1863, 1537, 2029, 2024, 121, 2019, 2111, 2112, 2101, 2113, 1538, 2113, 2098, 1538, 1854, 1614, 1259, 1414, 1413, 1487, 1287, 527, 1954, 853, 555, 590, 527, 1938, 528, 1948, 2114, 1949, 2027, 2097, 1981, 1650, 1777, 1776, 1487, 1413, 1974, 1693, 1142, 2066, 779, 766, 790, 993, 1486, 991, 1777, 1911, 1778, 622, 624, 1389, 1358, 1327, 84, 991, 2094, 1657, 1851, 1855, 1857, 1505, 1507, 2000, 1823, 2115, 1824, 121, 2024, 2100, 2116, 2113, 2101, 306, 1430, 1429, 2113, 2117, 2098, 2094, 2088, 1993, 1386, 1385, 1863, 2076, 1277, 2118, 2094, 1980, 1979, 2119, 2042, 2096, 2048, 1054, 2035, 1249, 1007, 1550, 110, 119, 306, 1499, 1505, 1448, 1124, 763, 1362, 1981, 1848, 2027, 1864, 1973, 1865, 1994, 1993, 1864, 370, 2116, 2101, 1810, 1951, 852, 1945, 2021, 1829, 253, 1510, 270, 1596, 1619, 1616, 1619, 1560, 1616, 2115, 1823, 1855, 2031, 2113, 2116, 1903, 2040, 2041, 1429, 1431, 2058, 1252, 764, 1124, 153, 829, 151, 1642, 2089, 1796, 2120, 1560, 1619, 2121, 2120, 1619, 2120, 471, 1560, 2100, 2023, 1863, 2027, 1859, 1951, 2027, 1888, 1859, 2076, 2118, 2122, 1398, 859, 1303, 1232, 50, 509, 2035, 1053, 2036, 2076, 2122, 2123, 785, 2115, 1853, 476, 1879, 477, 1619, 1623, 2121, 2121, 2124, 2120, 2120, 2124, 471, 1863, 2092, 1537, 1536, 204, 1991, 1623, 1796, 2121, 1796, 2125, 2121, 2125, 2124, 2121, 2124, 834, 471, 859, 2126, 1945, 1889, 1848, 1850, 526, 1954, 527, 1303, 859, 1956, 2077, 2125, 1796, 416, 225, 834, 1627, 2110, 2018, 2018, 2110, 2127, 2128, 70, 2095, 1053, 2035, 1054, 1371, 1388, 1389, 1829, 1527, 857, 1507, 1537, 1991, 2011, 1070, 1583, 1431, 785, 1853, 1853, 2115, 1851, 1171, 2129, 1172, 2124, 2130, 834, 834, 2130, 416, 1932, 1405, 1822, 1852, 2040, 1903, 2119, 2128, 2042, 1847, 1257, 436, 236, 966, 243, 1337, 342, 656, 370, 1235, 2116, 2128, 2095, 2075, 1852, 2048, 2040, 1171, 423, 1755, 1896, 2042, 2041, 61, 1447, 1449, 2041, 2035, 2011, 343, 1283, 406, 204, 203, 1484, 259, 261, 1692, 1861, 1860, 784, 1918, 1843, 784, 1860, 1918, 784, 416, 2131, 225, 225, 2131, 2132, 2133, 2134, 2135, 417, 574, 575, 1862, 1124, 1509, 1973, 1487, 1974, 2004, 2136, 2005, 1851, 2115, 1855, 1992, 1484, 1483, 1579, 1253, 1235, 204, 1484, 1992, 680, 679, 1129, 1511, 2117, 2113, 910, 1538, 1454, 1848, 1889, 1888, 1252, 1862, 1253, 404, 1432, 678, 1914, 2000, 1483, 1705, 2137, 479, 852, 1951, 2002, 70, 1429, 2095, 574, 2130, 2124, 1461, 1471, 1391, 2131, 254, 2138, 2127, 2110, 1896, 2139, 2127, 1896, 2140, 2108, 1649, 1228, 519, 521, 2021, 1945, 2126, 1858, 1952, 1887, 1486, 993, 1414, 2141, 2137, 1705, 2141, 2142, 2137, 2142, 2143, 2144, 2137, 2142, 2144, 1388, 1404, 1403, 555, 853, 553, 1956, 859, 1939, 1815, 826, 1446, 1810, 2099, 1951, 2145, 1946, 1965, 1864, 2108, 2107, 1483, 1485, 1914, 2000, 1992, 1483, 2146, 1535, 1537, 2128, 2075, 2042, 191, 1560, 471, 1593, 2019, 1591, 1385, 120, 122, 2138, 2147, 2132, 2148, 1705, 2149, 2147, 2148, 2149, 2148, 2141, 1705, 527, 1956, 1939, 1485, 1631, 1914, 1582, 1235, 299, 121, 2100, 122, 2116, 1235, 2031, 254, 256, 2138, 256, 2150, 2138, 2138, 2150, 2147, 2151, 2143, 2142, 1787, 1989, 85, 769, 991, 1643, 1371, 1370, 1911, 1865, 1911, 1777, 2148, 2152, 2141, 2152, 2142, 2141, 2153, 2143, 2151, 1536, 1991, 1537, 1235, 1253, 1862, 2041, 2011, 1894, 2154, 2151, 2142, 2042, 2075, 1903, 255, 1664, 256, 1664, 2150, 256, 2155, 2154, 2142, 2134, 2133, 2153, 1507, 1991, 1992, 1939, 1938, 527, 674, 1664, 255, 2150, 2156, 2148, 2147, 2150, 2148, 2148, 2156, 2152, 2142, 2152, 2155, 328, 70, 2128, 2016, 1904, 2048, 2157, 2151, 2154, 1509, 1362, 1510, 328, 2128, 2119, 306, 119, 1430, 1509, 1124, 1362, 1371, 1404, 1388, 2095, 2058, 2075, 1330, 1664, 674, 1563, 2156, 2150, 2157, 2153, 2151, 1563, 2150, 1664, 2156, 2158, 2152, 2152, 2158, 2155, 2155, 2157, 2154, 2159, 2153, 2157, 2000, 1507, 1992, 328, 2119, 1627, 119, 330, 1858, 1974, 1413, 1865, 2001, 1967, 1581, 1563, 1426, 2156, 1426, 2160, 2156, 2156, 2160, 2158, 2159, 2134, 2153, 2159, 2135, 2134, 2161, 286, 1290, 2040, 2048, 2035, 1251, 764, 1252, 1430, 1858, 1887, 574, 2124, 800, 1810, 1741, 2099, 1824, 2115, 2162, 2041, 1894, 1896, 533, 897, 898, 1843, 2162, 2115, 1563, 1427, 1426, 2163, 2157, 2155, 207, 324, 679, 1135, 2164, 1462, 1776, 2029, 121, 2088, 1486, 1487, 1843, 2115, 785, 2158, 2165, 2155, 2165, 2163, 2155, 2163, 2159, 2157, 1896, 1895, 2139, 1506, 1537, 1507, 2097, 1979, 1981, 1676, 1810, 852, 1672, 1741, 1810, 802, 748, 1566, 2160, 2166, 2158, 1919, 1921, 1649, 1511, 1510, 2167, 2108, 2109, 1649, 2108, 2140, 2107, 1864, 1650, 2109, 991, 1486, 2088, 1448, 2000, 1914, 1889, 1850, 2043, 1910, 1371, 1911, 2122, 2118, 2168, 2019, 2127, 2139, 2094, 991, 2088, 2043, 1850, 2169, 2019, 2139, 2111, 527, 1287, 1956, 1967, 1569, 1264, 1865, 1439, 1911, 1815, 1446, 1967, 1384, 1920, 1385, 2043, 1843, 1918, 1952, 1859, 1887, 595, 493, 596, 2158, 2166, 2165, 2170, 2159, 2163, 2170, 2171, 2159, 2171, 2135, 2159, 2171, 1091, 2135, 2110, 2119, 2096, 1627, 2119, 2110, 1981, 1849, 1848, 1235, 1862, 2031, 1942, 1595, 1695, 1410, 2172, 2091, 1778, 2084, 2030, 1426, 1428, 1591, 1426, 2166, 2160, 2111, 2165, 2166, 2112, 2111, 2166, 2111, 2163, 2165, 2111, 2139, 2163, 2139, 2170, 2163, 2058, 1853, 1903, 122, 2100, 1863, 1867, 2050, 2066, 1509, 2113, 2031, 1643, 991, 1657, 1232, 509, 460, 1426, 1591, 2166, 1895, 2171, 2170, 1980, 1994, 1849, 2018, 2127, 2019, 1509, 1511, 2113, 1129, 634, 1099, 1967, 1264, 1815, 2168, 2118, 2173, 2019, 2166, 1591, 2019, 2112, 2166, 2171, 1895, 1091, 1446, 1328, 1961, 930, 1617, 932, 2022, 2030, 2172, 2139, 1895, 2170, 1945, 1829, 857, 1919, 1648, 120, 2010, 1215, 1214, 1834, 938, 1716, 1452, 2056, 1453, 1727, 1714, 1788, 89, 2056, 90, 1453, 2056, 89, 2174, 2056, 2062, 1841, 89, 2144, 2175, 89, 1841, 394, 2176, 2177, 15, 505, 554, 1829, 1553, 1527, 394, 1838, 2176, 1838, 2178, 2176, 240, 1510, 253, 2178, 1838, 2179, 2180, 2167, 1510, 240, 2180, 1510, 2181, 2182, 2133, 2179, 1781, 1825, 2180, 2183, 2167, 2183, 2184, 2167, 462, 1867, 2066, 250, 2185, 240, 240, 2185, 2180, 171, 2186, 1231, 1364, 2187, 973, 1996, 1998, 2188, 2189, 1212, 965, 1102, 615, 477, 1551, 2020, 1261, 1989, 1679, 1978, 2185, 2183, 2180, 1835, 1837, 1906, 1836, 1835, 1845, 1788, 2190, 1725, 2191, 2192, 2193, 2077, 2194, 800, 1984, 2195, 2191, 1985, 1984, 2191, 1172, 2129, 250, 2129, 2196, 2185, 250, 2129, 2185, 2184, 2098, 2117, 1985, 2191, 2059, 1984, 1996, 2195, 2197, 1762, 2182, 2198, 2199, 2190, 2153, 2182, 2143, 393, 395, 2080, 2196, 2200, 2185, 2185, 2200, 2183, 2200, 1472, 2184, 2183, 2200, 2184, 2020, 1551, 1830, 1553, 1830, 1551, 171, 1230, 2201, 1825, 867, 787, 1409, 1408, 2202, 1961, 1963, 1446, 1856, 2016, 1857, 2184, 1472, 2098, 1472, 1471, 2098, 2178, 175, 1313, 2178, 2179, 175, 175, 2179, 2203, 395, 2177, 2174, 395, 394, 2177, 1723, 1725, 2204, 174, 492, 223, 1449, 1914, 1915, 1788, 1760, 2190, 2176, 91, 90, 1171, 1755, 2129, 1838, 1774, 2179, 1724, 1788, 1725, 1996, 2188, 2195, 2186, 171, 1168, 174, 2149, 1705, 174, 223, 2149, 2179, 1774, 1781, 1755, 1754, 2129, 1754, 2196, 2129, 1957, 1160, 1320, 2175, 1453, 89, 1640, 212, 1327, 212, 1640, 213, 2190, 2197, 2205, 2198, 2190, 2205, 2206, 2199, 2198, 223, 225, 2132, 2207, 2206, 1805, 2207, 2199, 2206, 839, 2208, 1473, 2068, 1730, 2045, 2068, 2209, 1730, 1781, 1826, 1825, 2196, 2210, 2200, 1392, 1472, 2200, 2210, 1392, 2200, 1492, 1904, 1407, 171, 2201, 172, 1614, 1854, 1661, 1389, 624, 1371, 1492, 1055, 1054, 2206, 1296, 1333, 1332, 2206, 1333, 2188, 1726, 2211, 1856, 1822, 1831, 173, 172, 2212, 423, 1171, 1218, 2213, 2181, 2135, 2214, 1806, 1331, 1726, 2009, 1214, 1754, 1846, 2196, 2196, 1846, 2210, 800, 2125, 2077, 172, 1806, 2214, 623, 1370, 624, 2135, 2181, 2133, 1846, 1392, 2210, 1955, 840, 1474, 1726, 1214, 1727, 1370, 2085, 1911, 2174, 2177, 90, 1805, 1332, 1331, 2215, 965, 323, 1700, 1231, 2209, 2056, 2174, 90, 1583, 1091, 1895, 1998, 2007, 2009, 867, 2028, 1561, 2212, 2214, 2216, 2212, 2208, 2186, 1131, 142, 729, 1984, 2037, 1996, 2217, 1800, 2059, 1125, 323, 965, 1742, 1765, 1490, 2218, 1640, 1694, 1700, 2209, 2068, 425, 1700, 2068, 1805, 2206, 1332, 254, 2131, 416, 623, 2091, 1370, 1519, 1138, 1520, 2219, 2220, 2221, 2118, 1277, 2222, 1998, 1726, 2188, 425, 2068, 426, 2223, 172, 2201, 973, 2187, 1495, 1333, 1295, 2224, 2194, 2189, 2215, 2176, 478, 91, 423, 422, 1754, 422, 1846, 1754, 1730, 2209, 2220, 470, 472, 246, 2186, 2208, 2225, 1856, 1823, 1822, 176, 492, 174, 1730, 2218, 1693, 2226, 1515, 1382, 1536, 1535, 2227, 2176, 1313, 478, 1209, 970, 1082, 1277, 1369, 2222, 2172, 1410, 879, 2091, 2084, 1370, 2228, 2223, 2201, 2206, 2198, 1296, 2198, 1297, 1296, 1422, 2229, 878, 2230, 2172, 879, 1677, 2231, 2213, 1714, 1761, 1760, 2195, 2188, 2228, 1460, 1684, 1883, 1082, 2232, 1209, 2232, 1207, 1209, 1915, 1631, 1633, 1495, 2229, 1422, 2229, 879, 878, 1537, 2092, 2146, 1809, 1833, 1031, 1833, 2231, 1677, 1873, 437, 1766, 2218, 2219, 1640, 2233, 2186, 2225, 2232, 1364, 1207, 2229, 2230, 879, 2230, 2234, 2172, 2195, 2228, 2192, 1313, 175, 174, 800, 322, 574, 1082, 1554, 2232, 2232, 2235, 1364, 1364, 2235, 2187, 2187, 2236, 1495, 2236, 2237, 2229, 1495, 2236, 2229, 2229, 2237, 2230, 2237, 2238, 2230, 2238, 2239, 2230, 2239, 2234, 2230, 1640, 2221, 1641, 1368, 1520, 1369, 2220, 2233, 2221, 2217, 1700, 425, 2181, 2197, 2182, 1762, 1841, 2143, 1554, 2240, 2232, 2187, 2241, 2236, 2172, 2234, 2022, 127, 1738, 1310, 445, 1525, 1892, 982, 50, 1233, 1168, 173, 2186, 452, 74, 1891, 1725, 2199, 2207, 2232, 2242, 2235, 2235, 2242, 2187, 2242, 2241, 2187, 1694, 1640, 1327, 2216, 2224, 1473, 1648, 1650, 1776, 1485, 1484, 2243, 462, 2066, 1142, 2236, 2244, 2237, 2239, 2245, 2234, 1410, 623, 1411, 1143, 1694, 1327, 1641, 2233, 1497, 2216, 1473, 2208, 1231, 2186, 2220, 1329, 1349, 2246, 2217, 1230, 1700, 2232, 2240, 2242, 2233, 2225, 1497, 2225, 2208, 1497, 2208, 2212, 2216, 2226, 2247, 1515, 1515, 2247, 1554, 1554, 2247, 2240, 2241, 2244, 2236, 2237, 2244, 2238, 2248, 2022, 2234, 1449, 1709, 61, 2093, 2023, 2022, 2117, 2167, 2184, 1648, 121, 120, 1997, 1996, 2037, 2136, 2249, 2250, 1804, 1942, 1695, 2192, 2201, 1230, 176, 2203, 787, 2247, 2251, 2240, 2240, 2252, 2242, 2252, 2241, 2242, 2253, 2245, 2239, 2178, 1313, 2176, 1232, 460, 462, 1030, 1295, 1809, 2062, 395, 2174, 1382, 1393, 2226, 2254, 2255, 2244, 2244, 2255, 2238, 2255, 2239, 2238, 2245, 2256, 2234, 2256, 2248, 2234, 2248, 2093, 2022, 1804, 1212, 2189, 452, 1891, 1867, 2231, 2205, 2181, 1516, 1301, 1517, 2226, 2257, 2247, 2247, 2258, 2251, 2251, 2259, 2240, 2252, 2260, 2241, 2241, 2261, 2244, 342, 615, 1103, 1233, 1988, 982, 2091, 623, 1410, 2247, 2257, 2258, 2258, 2259, 2251, 2240, 2259, 2252, 2241, 2260, 2261, 2261, 2262, 2244, 2244, 2262, 2254, 2253, 2239, 2255, 2253, 2256, 2245, 1091, 2213, 2135, 1297, 2198, 2231, 2198, 2205, 2231, 207, 680, 208, 2226, 2263, 2257, 2262, 2264, 2254, 2221, 2233, 1641, 1769, 1447, 63, 1943, 1942, 2077, 1529, 2265, 2226, 2258, 2257, 2263, 2266, 2254, 2264, 2266, 2267, 2255, 2254, 2266, 2255, 2267, 2268, 2253, 2255, 2267, 2253, 2253, 2268, 2256, 2256, 2269, 2248, 2269, 2093, 2248, 1295, 1833, 1809, 2224, 1295, 1548, 1258, 1847, 1854, 591, 455, 625, 1937, 858, 857, 1990, 2169, 2140, 972, 1554, 1082, 1772, 2083, 1773, 2093, 2270, 2092, 2259, 2271, 2252, 2260, 2272, 2261, 2268, 2273, 2256, 2273, 2269, 2256, 2093, 2269, 2270, 1520, 1982, 1369, 1804, 1223, 1212, 1788, 1714, 1760, 1473, 1548, 1541, 1921, 1990, 2140, 1458, 812, 631, 2203, 2179, 1825, 1215, 1453, 2175, 2188, 2211, 2223, 1714, 1215, 2175, 2226, 2265, 2263, 2258, 2271, 2259, 2271, 2274, 2252, 2252, 2274, 2260, 2267, 2275, 2268, 2275, 2276, 2268, 2268, 2276, 2273, 1358, 462, 1143, 1233, 462, 1358, 1761, 2175, 1841, 1824, 2169, 1990, 2182, 2153, 2133, 1838, 1772, 1774, 2258, 2277, 2271, 2262, 2261, 2264, 1640, 2219, 2221, 2162, 2169, 1824, 2162, 2043, 2169, 2194, 2077, 1942, 568, 567, 1160, 2277, 2278, 2271, 2271, 2272, 2274, 2272, 2260, 2274, 2272, 2279, 2261, 2276, 2280, 2273, 2280, 2269, 2273, 1548, 1295, 216, 1850, 2107, 2169, 2177, 2176, 90, 2218, 2220, 2219, 2279, 2264, 2261, 2266, 2281, 2267, 2267, 2281, 2275, 2146, 2270, 2269, 2280, 2146, 2269, 2066, 1729, 1693, 1932, 1990, 1920, 800, 2194, 801, 52, 1971, 50, 1873, 1102, 477, 2278, 2282, 2271, 2282, 2283, 2271, 2283, 2284, 2271, 2271, 2284, 2272, 2284, 2279, 2272, 1295, 1297, 1833, 1843, 2043, 2162, 1921, 2140, 1649, 1805, 1725, 2207, 436, 1766, 437, 2263, 2285, 2258, 2258, 2285, 2277, 2275, 2286, 2276, 2276, 2286, 2280, 2287, 2277, 2285, 2277, 2287, 2278, 2284, 2288, 2279, 2288, 2289, 2264, 2279, 2288, 2264, 2289, 2266, 2264, 173, 2212, 2186, 1142, 1694, 1143, 1529, 2290, 2265, 2287, 2291, 2278, 2278, 2291, 2282, 2283, 2288, 2284, 2281, 2292, 2275, 2286, 2293, 2280, 2194, 1942, 1804, 1275, 1846, 422, 1822, 1990, 1932, 2223, 1806, 172, 2203, 1825, 787, 1469, 1946, 1529, 1529, 1946, 2290, 2294, 2266, 2289, 2266, 2294, 2281, 2275, 2292, 2286, 2227, 2146, 2280, 1822, 1824, 1990, 2132, 2147, 2149, 2130, 574, 416, 2290, 2295, 2265, 2295, 2263, 2265, 2291, 2296, 2282, 2283, 2296, 2288, 2286, 2297, 2293, 2227, 2280, 2293, 2228, 2188, 2223, 2215, 2189, 965, 1835, 1633, 1632, 1469, 1493, 1946, 2263, 2295, 2285, 2282, 2296, 2283, 2296, 2298, 2288, 2292, 2299, 2286, 2299, 2297, 2286, 2297, 2227, 2293, 2082, 2083, 1772, 2216, 2214, 2224, 2199, 1725, 2190, 2281, 2300, 2292, 1279, 1070, 1975, 1975, 1070, 2036, 2194, 1804, 2189, 2082, 1772, 393, 175, 2203, 176, 2295, 2301, 2285, 2285, 2301, 2287, 2291, 2302, 2296, 2298, 2303, 2288, 2288, 2303, 2289, 2294, 2300, 2281, 2292, 2304, 2299, 1132, 1443, 1240, 2033, 1536, 2227, 2080, 2082, 393, 1518, 1517, 2305, 2220, 2186, 2233, 2301, 2306, 2287, 2306, 2302, 2291, 2287, 2306, 2291, 2302, 2307, 2296, 2303, 2308, 2289, 2308, 2294, 2289, 2107, 2140, 2169, 50, 1232, 1233, 1677, 2213, 1091, 2296, 2309, 2298, 2300, 2304, 2292, 205, 2227, 2297, 205, 2033, 2227, 1825, 1827, 867, 436, 1854, 1847, 2307, 2310, 2296, 2296, 2310, 2309, 2298, 2311, 2303, 2304, 2312, 2299, 2312, 2297, 2299, 1730, 2220, 2218, 1831, 1904, 1856, 1984, 1983, 2037, 2194, 2215, 801, 2182, 1762, 2143, 74, 451, 75, 2143, 1841, 2144, 2311, 2308, 2303, 2308, 2313, 2300, 2294, 2308, 2300, 2313, 2314, 2304, 2300, 2313, 2304, 2020, 1965, 1261, 451, 450, 75, 1760, 2197, 2190, 1946, 2145, 2290, 2290, 2145, 2295, 2298, 2309, 2311, 2314, 2315, 2304, 2304, 2315, 2312, 2312, 2316, 2297, 2297, 2316, 205, 2059, 2193, 2217, 1331, 1333, 2224, 2209, 1231, 2220, 2146, 2227, 1535, 2307, 2317, 2310, 2311, 2318, 2308, 2315, 2316, 2312, 2197, 1760, 1762, 1244, 1328, 1245, 1964, 51, 982, 1964, 1936, 51, 509, 1971, 1408, 232, 1283, 1257, 1406, 1405, 1932, 2309, 2318, 2311, 2313, 2319, 2314, 1353, 2320, 1707, 1805, 2204, 1725, 1554, 1508, 1515, 1331, 2224, 2214, 493, 244, 596, 2321, 1518, 2305, 1937, 1522, 1935, 1433, 1432, 403, 403, 2322, 1433, 1473, 2224, 1548, 2145, 2025, 2295, 2295, 2323, 2301, 2324, 2306, 2301, 2323, 2324, 2301, 2324, 2302, 2306, 2302, 2317, 2307, 2310, 2318, 2309, 2318, 2325, 2308, 2316, 203, 205, 993, 992, 768, 1867, 461, 452, 1094, 1767, 1146, 1649, 1648, 1919, 1714, 2175, 1761, 1053, 1975, 2036, 2320, 2326, 1276, 2132, 2131, 2138, 2295, 2025, 2323, 2325, 2319, 2313, 2308, 2325, 2313, 2319, 2327, 2314, 2314, 2327, 2315, 2315, 2328, 2316, 1872, 477, 1879, 2211, 2204, 2223, 1267, 1695, 1581, 1800, 2217, 425, 2329, 1409, 2202, 1409, 2329, 450, 2326, 1277, 1276, 1432, 404, 403, 1433, 2322, 613, 1998, 1997, 2007, 1226, 961, 1519, 2330, 2302, 2324, 2330, 2317, 2302, 2310, 2317, 2318, 2317, 2331, 2318, 2318, 2331, 2325, 2328, 203, 2316, 2204, 1805, 2223, 1727, 1216, 1714, 1492, 1054, 1904, 613, 2322, 1961, 1214, 1216, 1727, 73, 1753, 74, 2332, 1236, 1365, 2091, 2172, 2030, 1873, 1766, 1102, 2325, 2333, 2319, 2319, 2333, 2327, 2205, 2197, 2181, 1693, 2218, 1694, 2231, 2181, 2213, 435, 1854, 436, 2334, 2335, 2336, 1962, 2322, 403, 2145, 1965, 2025, 2330, 2337, 2317, 2337, 2331, 2317, 2325, 2338, 2333, 2339, 203, 2328, 2191, 2193, 2059, 74, 1753, 1752, 1726, 2204, 2211, 679, 632, 634, 2340, 1962, 403, 1962, 1961, 2322, 1328, 1244, 1961, 2331, 2338, 2325, 2339, 2243, 203, 2243, 1484, 203, 2193, 2192, 1230, 393, 1838, 394, 220, 1773, 2083, 2193, 1230, 2217, 2341, 2342, 277, 1871, 2337, 2330, 2333, 2343, 2327, 2315, 2339, 2328, 2228, 2201, 2192, 1726, 1723, 2204, 1297, 2231, 1833, 1641, 1497, 1496, 1468, 891, 1261, 1726, 1728, 1723, 2344, 2324, 2323, 2344, 2330, 2324, 2331, 2345, 2338, 2345, 2333, 2338, 2327, 2343, 2315, 2315, 2343, 2339, 2126, 859, 1398, 1797, 576, 2346, 1457, 1392, 1846, 1457, 1390, 1392, 1813, 1828, 1751, 235, 402, 630, 2340, 403, 402, 2025, 2126, 2323, 2344, 1871, 2330, 2345, 2331, 2337, 2044, 2068, 2045, 172, 2214, 2212, 1102, 1766, 1103, 451, 74, 452, 1480, 1482, 1586, 1963, 1962, 2340, 1522, 1937, 857, 2025, 2021, 2126, 1398, 2323, 2126, 1398, 2344, 2323, 2345, 2347, 2333, 2348, 2343, 2333, 2347, 2348, 2333, 2348, 2349, 2343, 2349, 2339, 2343, 2339, 2349, 2243, 1723, 1728, 1724, 2191, 2195, 2192, 2342, 1480, 1586, 1586, 277, 2342, 1677, 1069, 1031, 2020, 2021, 2025, 1871, 2345, 2337, 553, 508, 15, 2270, 2146, 2092, 1768, 1053, 1055, 151, 1868, 1608, 223, 2132, 2149, 1398, 1184, 2344, 1183, 1871, 2344, 1870, 2345, 1871, 1870, 1905, 2345, 1837, 2345, 1905, 1837, 2347, 2345, 478, 479, 2137, 1768, 1975, 1053, 1650, 1649, 2109, 1620, 402, 235, 1620, 2340, 402, 2350, 1490, 1765, 2351, 1686, 1732, 1184, 1183, 2344, 85, 84, 1787, 1233, 1358, 1977, 1837, 1836, 2347, 1836, 2348, 2347, 2349, 1632, 2243, 1632, 1485, 2243, 1320, 1976, 1957, 89, 2137, 2144, 89, 91, 2137, 1237, 587, 817, 1997, 2037, 2013, 1301, 2039, 1517, 236, 630, 1005, 236, 235, 630, 234, 1620, 235, 1269, 2340, 1620, 1269, 1268, 1963, 2340, 1269, 1963, 2010, 1214, 2009, 2223, 1805, 1806, 1845, 2348, 1836, 323, 801, 2215, 91, 478, 2137, 1497, 2208, 839, 1839, 1532, 1808, 2173, 2118, 2222, 1405, 1831, 1822, 800, 2124, 2125, 1845, 2349, 2348, 2349, 1845, 1632, 1632, 1631, 1485, 1998, 2009, 1726, 63, 1975, 1768, 2352, 2353, 2354, 2353, 2355, 2354, 2356, 2357, 2355, 2353, 2356, 2355, 2164, 1135, 2358, 2359, 2360, 2335, 2361, 989, 2362, 2363, 2364, 2365, 267, 2366, 268, 2367, 2368, 2369, 2360, 2370, 2371, 2366, 2372, 506, 2249, 2371, 2367, 2373, 1999, 1368, 2374, 1300, 1299, 2321, 2375, 1518, 2363, 2376, 2364, 2377, 2354, 2355, 1494, 2378, 2379, 2364, 2376, 2365, 743, 1879, 476, 2376, 2380, 2365, 2352, 2354, 2381, 1801, 286, 2161, 476, 27, 742, 1683, 1791, 2382, 364, 1445, 463, 1379, 1240, 1443, 1018, 2332, 2372, 568, 1892, 26, 2361, 2362, 2373, 1159, 445, 1892, 568, 1159, 1892, 1533, 1532, 2383, 2384, 1217, 1218, 2384, 1897, 1217, 1897, 2376, 2363, 1550, 1007, 1019, 1766, 343, 1103, 1494, 948, 2378, 2380, 2353, 2352, 423, 1217, 424, 2385, 2386, 1516, 2377, 2355, 2387, 2104, 2334, 2336, 2359, 2370, 2360, 2354, 2388, 2381, 948, 1298, 949, 2354, 2377, 2388, 2379, 2378, 2357, 2367, 2369, 2250, 1986, 2389, 2390, 389, 2391, 1681, 1217, 1899, 2102, 2358, 1135, 1229, 988, 534, 535, 136, 1329, 159, 323, 1125, 324, 1281, 842, 844, 417, 255, 254, 1329, 2246, 1196, 2392, 2356, 2353, 2392, 1462, 2356, 2356, 1462, 2164, 2393, 2164, 2358, 2356, 2164, 2393, 2369, 1949, 2250, 948, 947, 2378, 2365, 2380, 2352, 2334, 2394, 2335, 2395, 76, 1196, 2396, 2384, 1218, 2384, 2397, 1897, 2397, 2376, 1897, 2388, 2377, 2398, 2397, 2399, 2376, 2399, 2380, 2376, 2103, 1899, 1898, 1329, 1196, 159, 2246, 2395, 1196, 76, 2395, 2400, 1464, 2353, 2380, 1464, 2392, 2353, 1217, 2102, 711, 1239, 1236, 2332, 2122, 2168, 2401, 2005, 2136, 2250, 1018, 1239, 2332, 948, 1494, 1305, 2106, 1299, 2385, 2246, 1349, 2395, 1665, 1345, 2402, 2004, 2335, 2136, 2003, 1902, 2004, 2403, 1902, 2003, 1532, 1900, 2383, 2060, 283, 2046, 1349, 1986, 2395, 2395, 1986, 2390, 2390, 2404, 2395, 2395, 2404, 2400, 2358, 2379, 2393, 1900, 2403, 2383, 2106, 2385, 2105, 2405, 1901, 2406, 2404, 2407, 2400, 2400, 2407, 2402, 1463, 2380, 2399, 1463, 1464, 2380, 1139, 1138, 1146, 2105, 2385, 2408, 2105, 2408, 1533, 2250, 2374, 2106, 1383, 2406, 1470, 2406, 1839, 1470, 2407, 2409, 2402, 2402, 2409, 1665, 1899, 2103, 2102, 34, 1256, 32, 2408, 1516, 2410, 1797, 2411, 1812, 2409, 2412, 1665, 2102, 2336, 1901, 2372, 2332, 1367, 2332, 1365, 1367, 2408, 2385, 1516, 2375, 1531, 2410, 987, 1238, 988, 2404, 2413, 2407, 2407, 2413, 2409, 2414, 332, 331, 2385, 1299, 2386, 1949, 1352, 2374, 1844, 2412, 2409, 1757, 1764, 1844, 2336, 2102, 2104, 1569, 815, 1264, 1519, 1999, 1226, 2390, 2389, 2404, 575, 322, 324, 2372, 1367, 2415, 1304, 1218, 1171, 759, 1576, 693, 727, 759, 693, 112, 1547, 24, 1757, 1765, 1746, 1547, 79, 24, 1808, 892, 2416, 2362, 535, 1224, 1300, 1352, 1706, 2389, 2417, 2404, 2417, 2413, 2404, 2413, 2418, 2409, 2419, 1844, 2409, 2419, 1757, 1844, 2398, 2420, 1947, 1304, 2396, 1218, 2420, 1948, 1947, 1745, 1779, 1789, 1439, 1412, 183, 1444, 364, 366, 892, 2375, 2321, 331, 333, 1352, 2409, 2418, 2419, 2372, 2415, 506, 983, 355, 266, 1013, 262, 229, 1479, 1013, 229, 2410, 1516, 1518, 2375, 2410, 1518, 2421, 2369, 2368, 1300, 1706, 1301, 2416, 892, 891, 1821, 2389, 1941, 1479, 1014, 1013, 794, 1665, 2412, 2402, 1345, 2400, 892, 1808, 2375, 2416, 891, 1468, 2422, 2413, 2417, 2422, 2418, 2413, 2419, 1765, 1757, 1345, 76, 2400, 2423, 2399, 2397, 2423, 1498, 2399, 2394, 2359, 2335, 1462, 1075, 1135, 1683, 1348, 1347, 1545, 1828, 1546, 2418, 2350, 2419, 2419, 2350, 1765, 244, 647, 245, 333, 2424, 1353, 2374, 1299, 2106, 1498, 1463, 2399, 294, 946, 648, 1008, 1270, 113, 282, 281, 1008, 1270, 2425, 1488, 1547, 1828, 1545, 1352, 1353, 1706, 988, 535, 2362, 2161, 2417, 2389, 2161, 2422, 2417, 2060, 2426, 283, 2424, 2326, 1353, 1108, 1644, 1280, 281, 2425, 1008, 112, 1488, 1547, 1949, 331, 1352, 2161, 2389, 1821, 989, 988, 2362, 1435, 2392, 1464, 1435, 1462, 2392, 1488, 2427, 1547, 2427, 1828, 1547, 1225, 1224, 168, 1290, 2422, 2161, 2418, 1842, 2350, 1842, 1490, 2350, 2378, 2361, 2357, 2371, 2370, 2368, 1435, 1463, 1436, 283, 2428, 281, 2429, 2430, 281, 281, 2430, 2425, 1234, 494, 1561, 1731, 1607, 1606, 1801, 2161, 1821, 2431, 2418, 2422, 2418, 2431, 1842, 2361, 2373, 2357, 2420, 2377, 2387, 2335, 2360, 2136, 2426, 2428, 283, 2428, 2429, 281, 2366, 506, 268, 1132, 2406, 1443, 1868, 1661, 435, 2431, 2422, 1290, 2249, 2367, 2250, 2432, 2388, 2398, 2430, 2433, 2425, 2336, 2335, 1902, 228, 199, 1842, 1800, 427, 2426, 2425, 2434, 1488, 2434, 2435, 1488, 1488, 2435, 2427, 1511, 2167, 2117, 1019, 2372, 2366, 267, 1019, 2366, 2346, 576, 578, 2436, 2431, 1290, 2431, 228, 1842, 1802, 1795, 1797, 73, 578, 1753, 427, 2437, 2426, 2437, 2438, 2426, 2426, 2438, 2428, 2428, 2430, 2429, 2430, 2439, 2433, 2435, 2440, 2427, 2440, 1828, 2427, 2440, 1751, 1828, 1681, 2441, 2067, 106, 1459, 1262, 2329, 2442, 73, 75, 2329, 73, 2428, 2438, 2430, 2438, 2443, 2430, 2430, 2443, 2439, 1839, 1808, 1840, 2383, 2403, 2105, 1004, 2436, 1290, 2436, 1479, 2431, 2431, 1479, 228, 1373, 1316, 1315, 73, 2442, 578, 1366, 1498, 2423, 2439, 2434, 2425, 2433, 2439, 2425, 1470, 2416, 1468, 2105, 2403, 2003, 1797, 1782, 576, 1033, 2436, 1004, 1479, 229, 228, 2388, 2370, 2359, 2202, 2442, 2329, 2437, 2444, 2438, 2445, 2443, 2438, 2443, 2446, 2439, 2434, 2447, 2435, 2435, 2447, 2440, 2362, 1224, 1999, 2386, 1299, 1301, 1301, 1706, 2039, 1033, 1479, 2436, 2432, 2368, 2370, 2432, 2421, 2368, 2202, 2448, 2442, 1176, 1177, 1458, 1234, 1160, 567, 2444, 2445, 2438, 2446, 2449, 2439, 2447, 2450, 2440, 2451, 1751, 2440, 2450, 2451, 2440, 1751, 2451, 1444, 1789, 1683, 1624, 577, 576, 1782, 1032, 1033, 1004, 1229, 1205, 2358, 1224, 535, 168, 2388, 2432, 2370, 1019, 1018, 2372, 2452, 578, 2442, 2448, 2452, 2442, 2452, 2346, 578, 1435, 1076, 1462, 2434, 2453, 2447, 2381, 2388, 2454, 277, 1812, 2341, 426, 2437, 427, 2445, 2446, 2443, 2439, 2449, 2453, 2439, 2453, 2434, 1148, 1366, 582, 1353, 2326, 2320, 2106, 2003, 2005, 2067, 2441, 2437, 426, 2067, 2437, 2437, 2441, 2444, 2451, 1445, 1444, 1904, 2016, 1856, 1661, 1660, 1614, 2415, 2397, 2384, 2415, 2423, 2397, 1971, 2455, 1408, 2456, 2202, 1408, 2455, 2456, 1408, 2456, 2448, 2202, 2411, 2346, 2452, 2346, 2411, 1797, 39, 40, 2090, 2444, 2441, 1681, 2445, 2457, 2446, 2458, 2451, 2450, 2458, 1445, 2451, 1348, 1093, 1346, 2459, 2452, 2448, 1681, 2391, 2444, 2460, 2457, 2445, 2457, 2461, 2446, 2446, 2461, 2449, 2447, 2458, 2450, 1533, 2383, 2105, 2398, 2377, 2420, 2356, 2393, 2357, 1898, 1897, 2363, 2459, 2411, 2452, 2398, 2421, 2432, 1986, 1941, 2389, 1593, 1627, 2018, 2444, 2460, 2445, 2462, 2449, 2461, 2449, 2462, 2453, 2463, 2458, 2447, 2360, 2371, 2249, 2136, 2360, 2249, 1540, 1019, 267, 2462, 2463, 2453, 2453, 2463, 2447, 1365, 1236, 581, 52, 2455, 1971, 2391, 2460, 2444, 2090, 282, 39, 2454, 2388, 2359, 1304, 507, 2396, 507, 2384, 2396, 590, 589, 1703, 2464, 2456, 2455, 2465, 2448, 2456, 2465, 2459, 2448, 507, 2415, 2384, 1365, 581, 1366, 75, 450, 2329, 1686, 2461, 2457, 1686, 2462, 2461, 1305, 1298, 948, 2386, 1301, 1516, 248, 559, 546, 1686, 2351, 2462, 2351, 2463, 2462, 2466, 2467, 2458, 2458, 2467, 1445, 1148, 1498, 1366, 2464, 2455, 52, 829, 1614, 1660, 2463, 2466, 2458, 332, 2424, 333, 1226, 1999, 1224, 1965, 1946, 1468, 51, 2468, 52, 2468, 2464, 52, 2411, 2459, 1812, 2459, 2341, 1812, 1480, 2342, 1779, 400, 399, 413, 161, 163, 150, 1947, 1949, 2369, 1522, 2469, 1936, 2469, 2468, 1936, 1936, 2468, 51, 2341, 1791, 1779, 1779, 1791, 1789, 2466, 2463, 2351, 2467, 463, 1445, 1901, 2336, 1902, 2106, 2005, 2250, 1523, 2470, 1522, 2470, 2469, 1522, 2470, 2471, 2469, 2471, 2468, 2469, 2472, 2456, 2464, 2472, 2465, 2456, 2459, 2473, 2341, 742, 26, 1892, 1533, 2408, 2410, 2468, 2474, 2464, 2474, 2475, 2464, 2472, 2476, 2465, 2465, 2477, 2459, 2477, 2473, 2459, 2473, 1791, 2341, 1732, 1736, 2351, 1736, 2466, 2351, 495, 463, 2467, 2471, 2474, 2468, 2466, 2478, 2467, 2478, 495, 2467, 1217, 1897, 1899, 1527, 1552, 1523, 1552, 2470, 1523, 2470, 2479, 2471, 2464, 2480, 2472, 2473, 2382, 1791, 1007, 1062, 1018, 1531, 1533, 2410, 1553, 1552, 1527, 2481, 2464, 2475, 2481, 2480, 2464, 2482, 2472, 2480, 2476, 2222, 2465, 2222, 2477, 2465, 2477, 2483, 2473, 2382, 1348, 1683, 2482, 2480, 2481, 2484, 2382, 2473, 2425, 1270, 1008, 1606, 2466, 1736, 1808, 1531, 2375, 2485, 2479, 2470, 2474, 2471, 2479, 2486, 2474, 2479, 2484, 1348, 2382, 506, 2415, 507, 1606, 2478, 2466, 1840, 1808, 2416, 2250, 1949, 2374, 2378, 947, 2361, 2487, 2479, 2485, 2487, 2488, 2479, 2488, 2486, 2479, 2483, 2484, 2473, 2484, 1351, 1348, 858, 1939, 859, 39, 1008, 113, 2478, 2489, 495, 495, 1127, 464, 2379, 2358, 1494, 1367, 1366, 2423, 2485, 2470, 1552, 1140, 2484, 2483, 435, 1661, 1854, 2426, 2060, 1800, 1606, 2489, 2478, 2489, 1127, 495, 464, 592, 549, 2490, 2487, 2485, 2490, 2491, 2487, 2491, 2492, 2487, 2492, 2488, 2487, 2123, 2475, 2474, 2412, 1844, 794, 2358, 1205, 1494, 1606, 455, 2489, 455, 1127, 2489, 1840, 2416, 1470, 1900, 1532, 1839, 893, 2485, 1552, 1139, 1351, 2484, 2406, 1901, 1839, 2393, 2379, 2357, 1132, 711, 2406, 2342, 2341, 1779, 2493, 2485, 893, 2493, 2490, 2485, 2123, 2481, 2475, 2481, 2494, 2482, 2495, 2477, 2222, 2495, 2496, 2477, 2496, 2483, 2477, 1139, 2484, 1140, 1767, 1351, 1139, 1351, 1767, 1093, 711, 2405, 2406, 1706, 1353, 1707, 455, 591, 1127, 947, 949, 2361, 949, 989, 2361, 1551, 893, 1552, 2497, 2490, 2493, 2498, 2492, 2491, 2498, 2499, 2492, 2123, 2474, 2486, 2496, 1140, 2483, 268, 507, 1304, 2387, 1948, 2420, 1949, 2114, 331, 2226, 1393, 1529, 2500, 2491, 2490, 2500, 2498, 2491, 1708, 2499, 2498, 2501, 2481, 2123, 2501, 2494, 2481, 428, 364, 463, 2415, 1367, 2423, 711, 2102, 2405, 2490, 2497, 2500, 1902, 2335, 2004, 2398, 1947, 2421, 2371, 2368, 2367, 1901, 1900, 1839, 1900, 1902, 2403, 2032, 2498, 2500, 1982, 2496, 2495, 2405, 2102, 1901, 2497, 2305, 2500, 2032, 1708, 2498, 1982, 1140, 2496, 2421, 1947, 2369, 2114, 2414, 331, 989, 949, 987, 1517, 2500, 2305, 1517, 2032, 2500, 2123, 2122, 2501, 2501, 2122, 2494, 1369, 1982, 2495, 1261, 893, 1551, 2497, 2321, 2305, 1138, 1140, 1982, 1093, 1767, 1094, 2362, 1999, 2373, 1443, 2406, 1383, 2374, 1352, 1300, 892, 2493, 893, 892, 2321, 2497, 2493, 892, 2497, 2122, 2401, 2494, 1369, 2495, 2222, 1686, 2457, 2502, 2457, 2460, 2502, 2460, 2391, 2502, 2391, 389, 2502, 389, 388, 2502, 388, 1415, 2502, 1415, 1686, 2502] normal3f[] normals = [(-0.8590629, 0.117870525, -0.49811387), (-0.89814866, -0.031243127, -0.43858042), (-0.85692567, -0.13305487, -0.49797067), (-0.97854805, -0.20043711, -0.047629822), (-0.9158193, -0.31286165, -0.25177896), (-0.9576202, 0.2513207, -0.14071745), (-0.10619863, 0.9663028, 0.23447953), (-0.060409684, 0.92203385, 0.38236654), (-0.2333105, 0.87541354, 0.42334047), (0.15915732, 0.86922413, 0.4681008), (0.3530125, 0.85101134, 0.38879523), (0.5086808, 0.7223638, 0.46843803), (-0.2333105, 0.87541354, 0.42334047), (0.13814108, 0.8588598, 0.4932311), (-0.20693623, 0.76447463, 0.6105374), (-0.63100797, 0.4884225, 0.6027209), (-0.18640007, 0.7097053, 0.6793919), (-0.549907, 0.7612995, 0.34354806), (-0.08229463, 0.993445, 0.07933864), (-0.16796216, 0.9833957, 0.06871436), (-0.090055265, 0.9777874, 0.18926695), (0.5002851, 0.8444975, 0.19115135), (0.70054066, 0.58831096, 0.40389735), (0.7595671, 0.6272571, 0.17206532), (-0.8382794, -0.54524046, -0.00071699696), (-0.8122668, -0.5721191, 0.113588564), (-0.92169434, -0.38049635, -0.07551261), (0.36375645, -0.89763147, -0.24887547), (-0.011004529, -0.9110386, -0.41217405), (0.6264436, -0.7512508, -0.20782378), (-0.9115523, -0.40591183, 0.06563446), (-0.9961066, -0.06624365, 0.058166064), (-0.9863752, -0.14707237, -0.073714055), (0.74083424, 0.6040892, 0.29366815), (0.64088225, 0.59856194, 0.48061773), (0.8394417, 0.30937803, 0.44679174), (-0.54022664, 0.8414942, 0.006545372), (-0.61686933, 0.7563009, -0.21790126), (-0.41684034, 0.85262483, 0.31507948), (-0.16796216, 0.9833957, 0.06871436), (-0.20652598, 0.9519867, 0.22598301), (-0.090055265, 0.9777874, 0.18926695), (-0.76743174, -0.63194263, -0.108153306), (-0.8382794, -0.54524046, -0.00071699696), (-0.8632082, -0.45999706, -0.20802511), (0.27974927, 0.8973062, 0.341441), (-0.09890812, 0.9205776, 0.37782794), (0.29553086, 0.86234987, 0.41111332), (0.79330575, 0.5454925, 0.27037752), (0.7570868, 0.55058867, 0.35166964), (0.84273946, 0.44965845, 0.2959688), (0.7552057, 0.5495205, 0.35733962), (0.6511017, 0.7073549, 0.27516472), (0.84929305, 0.49472123, 0.18426105), (-0.31921285, 0.27075258, -0.9081829), (-0.7886005, -0.15360364, -0.59541184), (-0.21306917, -0.86168283, -0.46054745), (0.49248132, 0.830168, 0.26131052), (0.25332546, 0.9172516, 0.307369), (0.27974927, 0.8973062, 0.341441), (0.6878133, 0.6915365, 0.2206584), (0.5064183, 0.8191969, 0.2691784), (0.49248132, 0.830168, 0.26131052), (0.3452576, 0.7805231, 0.52113426), (0.17538239, 0.8461015, 0.5033421), (0.6204998, 0.67441005, 0.40018886), (0.29553086, 0.86234987, 0.41111332), (-0.09890812, 0.9205776, 0.37782794), (-0.16633473, 0.8858777, 0.43307444), (-0.45958078, 0.4397767, -0.7716099), (-0.1635049, 0.18375777, -0.9692777), (-0.15011746, 0.20696905, -0.9667619), (0.25332546, 0.9172516, 0.307369), (-0.09890812, 0.9205776, 0.37782794), (0.27974927, 0.8973062, 0.341441), (-0.31588024, 0.9009044, 0.29764208), (-0.32039356, 0.88322234, 0.34244162), (-0.32711035, 0.8158708, 0.47681615), (-0.93291295, 0.35986936, 0.012942048), (-0.9587795, 0.26072076, 0.11298901), (-0.9207175, 0.38214493, -0.07902244), (-0.17897557, 0.93098456, -0.31817535), (-0.21132989, 0.9662338, -0.14741704), (-0.13678886, 0.9809032, -0.13826738), (-0.7593494, -0.55912864, -0.33281165), (-0.8095361, 0.31446472, -0.4957451), (-0.77669567, -0.038613975, -0.6286914), (-0.9026322, -0.42681515, -0.055532932), (-0.99596953, -0.034286868, -0.08288012), (-0.983754, -0.106783405, 0.14431019), (-0.8702511, -0.42538556, 0.2484149), (-0.9454336, -0.27170563, 0.17980929), (-0.8122668, -0.5721191, 0.113588564), (-0.20491007, 0.9780425, -0.038011298), (-0.13579999, 0.99041, -0.025425393), (-0.13678886, 0.9809032, -0.13826738), (-0.21132989, 0.9662338, -0.14741704), (-0.20491007, 0.9780425, -0.038011298), (-0.13678886, 0.9809032, -0.13826738), (-0.30698523, 0.912352, -0.27087653), (-0.18237467, 0.6480371, -0.73945075), (-0.37058988, 0.86662453, -0.33410332), (-0.060409684, 0.92203385, 0.38236654), (0.13814108, 0.8588598, 0.4932311), (-0.2333105, 0.87541354, 0.42334047), (-0.23053631, 0.9663495, -0.11411248), (-0.20690525, 0.9781105, -0.022140631), (-0.078585915, 0.99615055, -0.03883709), (-0.3989333, 0.3694526, -0.83925974), (-0.36365452, -0.011067656, -0.93146807), (-0.178465, 0.05809405, -0.9822297), (-0.97807634, 0.20070383, -0.055540092), (-0.95112556, 0.3084675, -0.014423577), (-0.9576202, 0.2513207, -0.14071745), (-0.17897557, 0.93098456, -0.31817535), (-0.13678886, 0.9809032, -0.13826738), (-0.08430674, 0.9387543, -0.3341147), (-0.67405987, 0.6506391, 0.3497315), (-0.48647246, 0.74353755, 0.45879897), (-0.48132876, 0.8258349, 0.2938015), (0.0813317, 0.65248305, 0.75342625), (0.24659972, 0.5663498, 0.78640735), (0.1354116, 0.78960186, 0.59849197), (0.6511017, 0.7073549, 0.27516472), (0.5064183, 0.8191969, 0.2691784), (0.6878133, 0.6915365, 0.2206584), (-0.20690525, 0.9781105, -0.022140631), (-0.2818992, 0.95858043, 0.040699583), (-0.17983451, 0.9705822, 0.16009289), (-0.98524743, 0.15831314, -0.064996704), (-0.93291295, 0.35986936, 0.012942048), (-0.97125167, 0.15677212, -0.17914452), (-0.13579999, 0.99041, -0.025425393), (-0.04422065, 0.9989389, -0.012871277), (-0.13678886, 0.9809032, -0.13826738), (-0.04422065, 0.9989389, -0.012871277), (-0.13579999, 0.99041, -0.025425393), (-0.08229463, 0.993445, 0.07933864), (0.15915732, 0.86922413, 0.4681008), (-0.19833784, 0.8949851, 0.3995795), (0.3530125, 0.85101134, 0.38879523), (-0.29553196, 0.9381323, 0.18046756), (-0.10619863, 0.9663028, 0.23447953), (-0.32039356, 0.88322234, 0.34244162), (-0.309174, 0.9253757, 0.21929698), (-0.48132876, 0.8258349, 0.2938015), (-0.36604598, 0.8602345, 0.3549749), (-0.030848743, 0.96463877, -0.26176423), (-0.13678886, 0.9809032, -0.13826738), (0.011650657, 0.993044, -0.11716521), (-0.8162737, -0.559295, 0.14452073), (-0.8382794, -0.54524046, -0.00071699696), (-0.8368754, -0.54651237, 0.031046543), (0.6025557, 0.69966674, 0.38391808), (0.6204998, 0.67441005, 0.40018886), (0.7570868, 0.55058867, 0.35166964), (0.8885122, 0.44605473, 0.10761615), (0.84929305, 0.49472123, 0.18426105), (0.6878133, 0.6915365, 0.2206584), (0.7570868, 0.55058867, 0.35166964), (0.6204998, 0.67441005, 0.40018886), (0.84273946, 0.44965845, 0.2959688), (-0.8753872, 0.22401635, -0.42838526), (-0.8739215, 0.398463, -0.27836725), (-0.78920925, 0.29126886, -0.54065806), (-0.030848743, 0.96463877, -0.26176423), (0.011650657, 0.993044, -0.11716521), (0.07123869, 0.94643617, -0.31493425), (0.10364011, 0.56799906, -0.8164777), (0.286093, 0.52348936, -0.8025645), (0.2955777, 0.73814315, -0.6064474), (0.46501714, 0.8165149, 0.34214398), (0.17538239, 0.8461015, 0.5033421), (-0.17572127, 0.88967335, 0.42143017), (-0.8368754, -0.54651237, 0.031046543), (-0.8382794, -0.54524046, -0.00071699696), (-0.76743174, -0.63194263, -0.108153306), (-0.20652598, 0.9519867, 0.22598301), (-0.31588024, 0.9009044, 0.29764208), (-0.2537338, 0.86747384, 0.4279114), (-0.17572127, 0.88967335, 0.42143017), (-0.64699185, 0.69672793, 0.30979314), (-0.32523423, 0.94020087, 0.10121758), (-0.0019311432, 0.9339178, 0.3574826), (-0.11742587, 0.9185192, 0.37753624), (-0.023574412, 0.83847994, 0.54442215), (-0.97349536, -0.03525896, -0.22597268), (-0.9992325, 0.009367977, -0.03803466), (-0.9668867, 0.15470429, -0.20296964), (-0.09890812, 0.9205776, 0.37782794), (-0.52123135, 0.776415, 0.35425666), (-0.16633473, 0.8858777, 0.43307444), (-0.67896193, -0.7316011, -0.061403584), (-0.6809156, -0.73172814, 0.03046109), (-0.781744, -0.58333945, -0.22043467), (-0.023574412, 0.83847994, 0.54442215), (-0.14615607, 0.8347189, 0.5309263), (-0.07466462, 0.77266836, 0.63040364), (0.5620079, 0.36322513, 0.7431114), (0.23804793, 0.49164066, 0.8376293), (0.5976201, 0.584136, 0.5492134), (0.6025557, 0.69966674, 0.38391808), (0.3452576, 0.7805231, 0.52113426), (0.6204998, 0.67441005, 0.40018886), (-0.88560915, -0.41817006, 0.20206507), (-0.97621727, -0.14019398, 0.16536482), (-0.9552864, -0.29540315, 0.01284408), (-0.3886515, -0.233583, 0.89128506), (-0.17502308, -0.017029524, 0.9844171), (-0.41813788, 0.17239003, 0.89187574), (-0.17502308, -0.017029524, 0.9844171), (0.04088839, 0.3029048, 0.95214325), (-0.41813788, 0.17239003, 0.89187574), (0.04088839, 0.3029048, 0.95214325), (-0.27793613, 0.4540266, 0.846529), (-0.41813788, 0.17239003, 0.89187574), (-0.35504547, 0.88452846, -0.30257598), (-0.19617479, 0.9391101, 0.2821128), (0.20080341, 0.9125142, 0.35636473), (-0.48647246, 0.74353755, 0.45879897), (-0.31844297, 0.76659155, 0.55761224), (-0.30763242, 0.8334799, 0.45899191), (0.23804793, 0.49164066, 0.8376293), (0.037180874, 0.5199265, 0.8534014), (-0.19371775, 0.70356625, 0.6837163), (0.7595671, 0.6272571, 0.17206532), (0.33993483, 0.93633366, 0.08788439), (0.5002851, 0.8444975, 0.19115135), (-0.781744, -0.58333945, -0.22043467), (-0.6809156, -0.73172814, 0.03046109), (-0.8176909, -0.5715781, 0.06841176), (0.17538239, 0.8461015, 0.5033421), (0.46501714, 0.8165149, 0.34214398), (0.6204998, 0.67441005, 0.40018886), (-0.3886515, -0.233583, 0.89128506), (-0.41622862, -0.25352228, 0.8732011), (-0.17502308, -0.017029524, 0.9844171), (-0.18829687, 0.5858822, 0.7882172), (-0.23401758, 0.691813, 0.6831036), (-0.43426287, 0.5636831, 0.7026216), (0.70054066, 0.58831096, 0.40389735), (0.24459313, 0.9440391, 0.22127925), (0.31924212, 0.796362, 0.513704), (-0.16633473, 0.8858777, 0.43307444), (-0.52123135, 0.776415, 0.35425666), (-0.46872184, 0.7804253, 0.41380703), (-0.5197389, 0.49881884, 0.69357854), (-0.59768534, 0.20133865, 0.77603805), (-0.38011017, 0.50591207, 0.77431846), (-0.9279822, 0.3141734, -0.20035993), (-0.8739215, 0.398463, -0.27836725), (-0.8753872, 0.22401635, -0.42838526), (0.06840639, -0.5524936, -0.83070534), (-0.009388099, -0.44137946, -0.8972714), (0.100453675, -0.519082, -0.8488009), (0.13239287, 0.092030376, -0.9869156), (-0.12840469, 0.074718386, -0.98890316), (-0.018525995, 0.10767494, -0.9940135), (-0.36111245, 0.82862437, 0.42776096), (0.07371192, 0.98138446, 0.17734447), (0.27001643, 0.8076288, 0.5242393), (-0.013981743, 0.043335028, 0.99896276), (-0.17502308, -0.017029524, 0.9844171), (-0.41622862, -0.25352228, 0.8732011), (-0.013981743, 0.043335028, 0.99896276), (0.04088839, 0.3029048, 0.95214325), (-0.17502308, -0.017029524, 0.9844171), (0.025163656, 0.5127945, 0.85814255), (-0.18829687, 0.5858822, 0.7882172), (-0.27793613, 0.4540266, 0.846529), (0.91915107, 0.22936215, -0.32024097), (0.8271193, 0.29346165, -0.47932655), (0.8584517, 0.30511788, -0.41226652), (-0.9146135, -0.3669641, -0.16976309), (-0.92169434, -0.38049635, -0.07551261), (-0.9480551, -0.3159854, 0.03667171), (-0.20989858, 0.9638512, -0.16411382), (-0.23840603, 0.9710963, -0.011599948), (-0.21132989, 0.9662338, -0.14741704), (0.84929305, 0.49472123, 0.18426105), (0.6511017, 0.7073549, 0.27516472), (0.6878133, 0.6915365, 0.2206584), (-0.9961066, -0.06624365, 0.058166064), (-0.9992325, 0.009367977, -0.03803466), (-0.98484534, 0.023799932, -0.17179422), (-0.98524743, 0.15831314, -0.064996704), (-0.97125167, 0.15677212, -0.17914452), (-0.9949563, -0.057375763, -0.082279444), (0.6204998, 0.67441005, 0.40018886), (0.8529486, 0.47849572, 0.20861624), (0.84273946, 0.44965845, 0.2959688), (0.13255553, 0.99081033, -0.026908878), (-0.04422065, 0.9989389, -0.012871277), (0.060451977, 0.99370325, 0.09433652), (0.04088839, 0.3029048, 0.95214325), (0.025163656, 0.5127945, 0.85814255), (-0.27793613, 0.4540266, 0.846529), (0.07036235, 0.62625414, 0.7764373), (-0.23401758, 0.691813, 0.6831036), (-0.18829687, 0.5858822, 0.7882172), (0.025163656, 0.5127945, 0.85814255), (0.07036235, 0.62625414, 0.7764373), (-0.18829687, 0.5858822, 0.7882172), (-0.6434348, 0.53775394, 0.54480493), (-0.9386532, 0.30061942, 0.16899173), (-0.84021795, 0.027527712, 0.54154986), (-0.2537338, 0.86747384, 0.4279114), (-0.31588024, 0.9009044, 0.29764208), (-0.32711035, 0.8158708, 0.47681615), (0.20080341, 0.9125142, 0.35636473), (0.15915732, 0.86922413, 0.4681008), (0.5086808, 0.7223638, 0.46843803), (0.5002851, 0.8444975, 0.19115135), (0.24459313, 0.9440391, 0.22127925), (0.70054066, 0.58831096, 0.40389735), (0.1613725, 0.9756421, -0.14859825), (0.011650657, 0.993044, -0.11716521), (0.13255553, 0.99081033, -0.026908878), (-0.023574412, 0.83847994, 0.54442215), (-0.11742587, 0.9185192, 0.37753624), (-0.14615607, 0.8347189, 0.5309263), (-0.42388347, -0.36057454, 0.8308482), (-0.18735828, -0.10297738, 0.97687894), (-0.41622862, -0.25352228, 0.8732011), (-0.013981743, 0.043335028, 0.99896276), (0.35752425, 0.2704521, 0.8938859), (0.04088839, 0.3029048, 0.95214325), (0.04088839, 0.3029048, 0.95214325), (0.25520527, 0.39804116, 0.8811547), (0.025163656, 0.5127945, 0.85814255), (0.02167344, 0.25035143, -0.9679124), (0.058695275, 0.47261247, -0.87931365), (0.15140519, 0.22772746, -0.9618818), (0.5278373, -0.79790884, 0.29108292), (0.48523468, -0.87437403, 0.0041459464), (0.5598551, -0.7281588, 0.3954075), (-0.8632082, -0.45999706, -0.20802511), (-0.92169434, -0.38049635, -0.07551261), (-0.9146135, -0.3669641, -0.16976309), (-0.93291295, 0.35986936, 0.012942048), (-0.9207175, 0.38214493, -0.07902244), (-0.97125167, 0.15677212, -0.17914452), (-0.9279822, 0.3141734, -0.20035993), (-0.8753872, 0.22401635, -0.42838526), (-0.92852044, 0.07832266, -0.3629262), (-0.90972215, 0.2802738, -0.3063531), (-0.8590629, 0.117870525, -0.49811387), (-0.8585084, 0.36451405, -0.3606837), (0.10247141, -0.0037224537, -0.99472904), (0.0385595, -0.28710848, -0.9571217), (0.012923298, -0.14554134, -0.98926777), (-0.5634086, 0.27225077, -0.78003216), (-0.30569237, -0.08142651, -0.94864213), (-0.1635049, 0.18375777, -0.9692777), (-0.42388347, -0.36057454, 0.8308482), (-0.07068588, -0.2992179, 0.951563), (-0.18735828, -0.10297738, 0.97687894), (0.04088839, 0.3029048, 0.95214325), (0.35752425, 0.2704521, 0.8938859), (0.25520527, 0.39804116, 0.8811547), (-0.13216738, 0.80042946, 0.5846747), (-0.23401758, 0.691813, 0.6831036), (0.020863017, 0.7332546, 0.67963403), (-0.7964196, 0.20476519, -0.5690227), (-0.8749361, 0.10047233, -0.47370037), (-0.8753872, 0.22401635, -0.42838526), (-0.956032, -0.1533356, -0.24998195), (-0.9863752, -0.14707237, -0.073714055), (-0.98484534, 0.023799932, -0.17179422), (0.301215, 0.11390896, -0.9467281), (0.24769956, -0.17423761, -0.9530405), (0.47714183, 0.1923976, -0.85750735), (-0.18735828, -0.10297738, 0.97687894), (0.21601784, 0.08309092, 0.9728475), (-0.013981743, 0.043335028, 0.99896276), (0.21601784, 0.08309092, 0.9728475), (0.35752425, 0.2704521, 0.8938859), (-0.013981743, 0.043335028, 0.99896276), (0.25520527, 0.39804116, 0.8811547), (0.23540291, 0.5110494, 0.8266886), (0.025163656, 0.5127945, 0.85814255), (0.07036235, 0.62625414, 0.7764373), (0.020863017, 0.7332546, 0.67963403), (-0.23401758, 0.691813, 0.6831036), (-0.19532515, -0.64201677, 0.7413924), (0.0765499, -0.5684397, 0.81915593), (-0.07068588, -0.2992179, 0.951563), (0.39555016, -0.08151908, -0.9148195), (0.9294046, 0.26653555, -0.25527623), (0.8700867, -0.17603566, -0.4603918), (-0.090055265, 0.9777874, 0.18926695), (-0.20652598, 0.9519867, 0.22598301), (-0.11742587, 0.9185192, 0.37753624), (-0.94723433, 0.0141571285, -0.3202292), (-0.98484534, 0.023799932, -0.17179422), (-0.97349536, -0.03525896, -0.22597268), (-0.2824014, -0.24968438, -0.92623276), (-0.20448917, -0.41327986, -0.88734657), (-0.07044898, -0.5397641, -0.8388633), (0.025163656, 0.5127945, 0.85814255), (0.23540291, 0.5110494, 0.8266886), (0.07036235, 0.62625414, 0.7764373), (0.913919, 0.2985505, -0.2749904), (0.87425536, 0.4388207, -0.20763896), (0.93655956, 0.33114547, -0.11488639), (0.562021, -0.3577581, -0.74574894), (0.67618173, -0.42391613, -0.6025555), (0.617499, -0.5915019, -0.51847905), (-0.18033013, -0.39411464, -0.90119624), (-0.2824014, -0.24968438, -0.92623276), (-0.07044898, -0.5397641, -0.8388633), (-0.20652598, 0.9519867, 0.22598301), (-0.2537338, 0.86747384, 0.4279114), (-0.11742587, 0.9185192, 0.37753624), (0.45199344, -0.8476778, -0.27774844), (0.8210526, -0.54693574, -0.16350538), (0.93352866, -0.33231995, -0.13449113), (-0.07068588, -0.2992179, 0.951563), (0.21601784, 0.08309092, 0.9728475), (-0.18735828, -0.10297738, 0.97687894), (0.19276795, 0.31514922, 0.9292586), (0.18990594, 0.46538013, 0.86449826), (0.08716038, 0.50213987, 0.86038285), (0.4576426, -0.57375616, -0.6792401), (0.562021, -0.3577581, -0.74574894), (0.617499, -0.5915019, -0.51847905), (0.93655956, 0.33114547, -0.11488639), (0.8756664, 0.48078087, -0.0453676), (0.931049, 0.36383775, 0.027747536), (0.562021, -0.3577581, -0.74574894), (0.7554652, -0.25161803, -0.60494685), (0.67618173, -0.42391613, -0.6025555), (0.6672254, 0.2849614, -0.6881912), (0.8494472, 0.21180317, -0.48330003), (0.6906337, 0.37421668, -0.6188594), (-0.20491007, 0.9780425, -0.038011298), (-0.26032758, 0.9601892, 0.10132203), (-0.16796216, 0.9833957, 0.06871436), (-0.08229463, 0.993445, 0.07933864), (-0.090055265, 0.9777874, 0.18926695), (0.016667308, 0.9787065, 0.20458676), (-0.2703703, 0.17386167, 0.94692767), (-0.36372912, 0.32128337, 0.8743444), (-0.5329692, 0.19743983, 0.8227766), (0.24947077, -0.28938565, 0.92413217), (-0.07068588, -0.2992179, 0.951563), (0.0765499, -0.5684397, 0.81915593), (0.24947077, -0.28938565, 0.92413217), (0.21601784, 0.08309092, 0.9728475), (-0.07068588, -0.2992179, 0.951563), (0.20746073, -0.2056236, 0.95638853), (0.13927187, -0.4960245, 0.85706663), (0.1054876, -0.21303132, 0.9713341), (0.23540291, 0.5110494, 0.8266886), (0.3866582, 0.49182975, 0.78012747), (0.07036235, 0.62625414, 0.7764373), (0.5601152, -0.8276674, 0.03517831), (0.45836627, -0.8875529, -0.046368957), (0.537906, -0.8258717, -0.16909474), (0.7554652, -0.25161803, -0.60494685), (0.80521214, -0.07608237, -0.5880859), (0.8699443, -0.29174265, -0.3975969), (0.9604763, 0.03142416, -0.27658242), (0.98106885, 0.04682403, -0.18791324), (0.99246705, 0.054656122, -0.109644346), (-0.6664247, 0.5819242, -0.46609253), (-0.5688045, 0.80533934, 0.1670028), (-0.83901477, 0.5282562, 0.1303828), (-0.9213237, 0.2280763, -0.3148711), (-0.85855085, -0.089423046, -0.50487024), (-0.8550972, 0.2941393, -0.42695528), (-0.97854805, -0.20043711, -0.047629822), (-0.67896193, -0.7316011, -0.061403584), (-0.9158193, -0.31286165, -0.25177896), (-0.7068969, -0.7067872, -0.027361292), (-0.6854155, -0.6979322, -0.20759624), (-0.6827181, -0.6939659, -0.22870846), (-0.20031226, 0.23849788, 0.9502598), (-0.36372912, 0.32128337, 0.8743444), (-0.2703703, 0.17386167, 0.94692767), (-0.36372912, 0.32128337, 0.8743444), (-0.22197253, 0.3225391, 0.92016125), (-0.27621555, 0.0014689193, 0.9610946), (-0.22197253, 0.3225391, 0.92016125), (0.11033541, -0.2923358, 0.9499294), (-0.27621555, 0.0014689193, 0.9610946), (0.033083975, 0.1578401, 0.98691034), (0.10217742, 0.23066665, 0.96765316), (0.041143876, 0.4090212, 0.91159695), (0.24642, 0.41090232, 0.8777451), (0.34748375, 0.4804332, 0.8052571), (0.25459546, 0.5935051, 0.76350033), (0.3153758, -0.32686642, 0.8908964), (0.069934025, -0.16515385, 0.9837853), (0.10212472, -0.44229057, 0.8910385), (0.56424934, 0.364599, 0.7407362), (0.21601784, 0.08309092, 0.9728475), (0.46723258, 0.19325909, 0.8627541), (0.9286086, 0.35685587, -0.10168594), (0.99246705, 0.054656122, -0.109644346), (0.9917053, 0.1263945, 0.0233474), (-0.96352214, 0.2658698, 0.030630894), (-0.96371, 0.2455488, 0.10473212), (-0.92704785, 0.36381298, 0.09067647), (-0.8590629, 0.117870525, -0.49811387), (-0.83092785, -0.021337103, -0.555971), (-0.7881963, 0.06871542, -0.6115757), (-0.0015518905, 0.91320086, -0.40750656), (-0.08430674, 0.9387543, -0.3341147), (-0.030848743, 0.96463877, -0.26176423), (-0.0019311432, 0.9339178, 0.3574826), (-0.023574412, 0.83847994, 0.54442215), (0.046126176, 0.8528811, 0.5200637), (-0.21605456, 0.35979885, 0.90767026), (-0.22197253, 0.3225391, 0.92016125), (-0.36372912, 0.32128337, 0.8743444), (0.83682686, -0.5141604, -0.18804199), (0.81515265, -0.53872156, -0.21285026), (0.9583574, -0.26300776, -0.11125653), (0.062324222, -0.444162, 0.8937761), (-0.07433573, -0.7323538, 0.6768546), (-0.036610823, -0.49364787, 0.8688909), (0.07472834, 0.58994323, 0.80397934), (0.059466913, 0.7326687, 0.6779824), (0.084180735, 0.60850376, 0.7890733), (0.97447985, -0.17888117, -0.1356112), (0.6992543, -0.71367687, 0.041335452), (0.8318086, -0.3919076, 0.39306858), (-0.9819716, 0.15203424, 0.11232699), (-0.98524743, 0.15831314, -0.064996704), (-0.9949563, -0.057375763, -0.082279444), (-0.0215857, -0.57216984, -0.819851), (-0.10319789, -0.58678037, -0.80314326), (0.25655803, -0.8464801, -0.4665291), (0.9765633, 0.20900229, 0.05140108), (0.9777654, 0.20047794, -0.06150969), (0.931049, 0.36383775, 0.027747536), (-0.97621727, -0.14019398, 0.16536482), (-0.9819716, 0.15203424, 0.11232699), (-0.9949563, -0.057375763, -0.082279444), (0.9777654, 0.20047794, -0.06150969), (0.9765633, 0.20900229, 0.05140108), (0.99612904, 0.08727966, -0.010440441), (-0.8162737, -0.559295, 0.14452073), (-0.8122668, -0.5721191, 0.113588564), (-0.8382794, -0.54524046, -0.00071699696), (-0.32039356, 0.88322234, 0.34244162), (-0.10619863, 0.9663028, 0.23447953), (-0.2333105, 0.87541354, 0.42334047), (-0.20989858, 0.9638512, -0.16411382), (-0.21132989, 0.9662338, -0.14741704), (-0.22743472, 0.93119746, -0.28485948), (-0.9480551, -0.3159854, 0.03667171), (-0.91879785, -0.39120173, -0.05264702), (-0.9146135, -0.3669641, -0.16976309), (0.07123869, 0.94643617, -0.31493425), (0.1613725, 0.9756421, -0.14859825), (0.27325293, 0.9196915, -0.2819581), (-0.20031226, 0.23849788, 0.9502598), (-0.21605456, 0.35979885, 0.90767026), (-0.36372912, 0.32128337, 0.8743444), (0.023948837, -0.9976528, 0.0641504), (0.024746506, -0.99675536, 0.076593235), (0.021073312, -0.99795896, 0.060281094), (0.30929923, -0.40474993, 0.8605298), (0.1054876, -0.21303132, 0.9713341), (0.13927187, -0.4960245, 0.85706663), (0.21663934, -0.32630387, 0.920105), (0.16122013, -0.6891975, 0.7064099), (0.062324222, -0.444162, 0.8937761), (0.16122013, -0.6891975, 0.7064099), (-0.07433573, -0.7323538, 0.6768546), (0.062324222, -0.444162, 0.8937761), (0.21663934, -0.32630387, 0.920105), (0.062324222, -0.444162, 0.8937761), (0.17015596, 0.044459715, 0.9844137), (0.99068445, -0.04349092, -0.12904574), (0.94701487, 0.19354117, -0.25632918), (0.93415296, 0.33030346, -0.13512185), (0.7554652, -0.25161803, -0.60494685), (0.8699443, -0.29174265, -0.3975969), (0.7773464, -0.4599915, -0.42911586), (0.7768317, -0.57160056, -0.26420677), (0.430587, -0.6497393, -0.62644523), (0.957997, -0.2859565, 0.021691369), (0.67618173, -0.42391613, -0.6025555), (0.7773464, -0.4599915, -0.42911586), (0.617499, -0.5915019, -0.51847905), (-0.04422065, 0.9989389, -0.012871277), (-0.08229463, 0.993445, 0.07933864), (0.060451977, 0.99370325, 0.09433652), (-0.31335086, 0.1311195, 0.9405418), (-0.44079724, 0.024381436, 0.89727557), (-0.32866132, 0.1766891, 0.927773), (-0.2703703, 0.17386167, 0.94692767), (-0.31335086, 0.1311195, 0.9405418), (-0.20031226, 0.23849788, 0.9502598), (0.21076278, 0.59047675, 0.7790484), (0.3797876, 0.58644396, 0.7154333), (0.07506453, 0.64145595, 0.76347864), (0.13161509, 0.20264517, 0.97036713), (0.24642, 0.41090232, 0.8777451), (0.22690275, 0.3862648, 0.894044), (0.23926726, -0.14382397, 0.96024257), (0.18310174, -0.24384306, 0.952373), (0.1054876, -0.21303132, 0.9713341), (0.3866582, 0.49182975, 0.78012747), (0.647132, 0.2797327, 0.7092037), (0.30334, 0.5943287, 0.74482083), (0.9626579, -0.0268924, -0.26938185), (0.9742027, 0.03884721, -0.22230598), (0.9604763, 0.03142416, -0.27658242), (0.88654864, -0.10568019, -0.45040348), (0.9626579, -0.0268924, -0.26938185), (0.9604763, 0.03142416, -0.27658242), (-0.23840603, 0.9710963, -0.011599948), (-0.29553196, 0.9381323, 0.18046756), (-0.26032758, 0.9601892, 0.10132203), (-0.20491007, 0.9780425, -0.038011298), (-0.21132989, 0.9662338, -0.14741704), (-0.23840603, 0.9710963, -0.011599948), (-0.10619863, 0.9663028, 0.23447953), (0.21395285, 0.94366175, 0.2524414), (-0.060409684, 0.92203385, 0.38236654), (-0.13678886, 0.9809032, -0.13826738), (-0.030848743, 0.96463877, -0.26176423), (-0.08430674, 0.9387543, -0.3341147), (0.32994097, 0.9398471, -0.08846733), (0.46057546, 0.88716006, -0.028589655), (0.45455205, 0.8788353, -0.14502047), (-0.26577422, -0.36665386, 0.891588), (-0.25319877, -0.18759899, 0.94905055), (-0.46531352, -0.32130724, 0.8247697), (-0.47351477, -0.11410375, 0.87336373), (-0.25319877, -0.18759899, 0.94905055), (-0.44079724, 0.024381436, 0.89727557), (-0.44079724, 0.024381436, 0.89727557), (-0.25319877, -0.18759899, 0.94905055), (-0.32866132, 0.1766891, 0.927773), (-0.23617615, 0.26490545, 0.9349043), (-0.31335086, 0.1311195, 0.9405418), (-0.32866132, 0.1766891, 0.927773), (-0.23617615, 0.26490545, 0.9349043), (-0.20031226, 0.23849788, 0.9502598), (-0.31335086, 0.1311195, 0.9405418), (-0.23617615, 0.26490545, 0.9349043), (-0.21605456, 0.35979885, 0.90767026), (-0.20031226, 0.23849788, 0.9502598), (0.22690275, 0.3862648, 0.894044), (0.25459546, 0.5935051, 0.76350033), (0.24659972, 0.5663498, 0.78640735), (0.24642, 0.41090232, 0.8777451), (0.25459546, 0.5935051, 0.76350033), (0.22690275, 0.3862648, 0.894044), (0.90839314, -0.0503038, -0.4150799), (0.9604763, 0.03142416, -0.27658242), (0.9298531, 0.065071344, -0.3621309), (-0.057124197, -0.23572528, 0.97013944), (-0.06189606, -0.39835835, 0.9151391), (-0.06518985, -0.31126437, 0.9480848), (-0.1009697, 0.5361198, 0.83808154), (-0.13540511, 0.7182786, 0.68245244), (0.099326484, 0.64293486, 0.7594531), (0.30929923, -0.40474993, 0.8605298), (0.23926726, -0.14382397, 0.96024257), (0.1054876, -0.21303132, 0.9713341), (0.15873082, -0.089554355, 0.98325205), (0.22328147, -0.076789305, 0.9717246), (0.16608538, 0.027675416, 0.9857229), (0.5147164, 0.28035697, 0.8102265), (0.53343964, 0.27986443, 0.7981968), (0.35952163, 0.55715156, 0.7485495), (0.21395285, 0.94366175, 0.2524414), (0.13814108, 0.8588598, 0.4932311), (-0.060409684, 0.92203385, 0.38236654), (-0.057124197, -0.23572528, 0.97013944), (-0.08165552, -0.28599936, 0.9547443), (-0.23737086, -0.15981758, 0.95818233), (0.3153758, -0.32686642, 0.8908964), (0.10212472, -0.44229057, 0.8910385), (0.18310174, -0.24384306, 0.952373), (0.7497193, -0.20978902, 0.6276221), (0.7629182, -0.26861337, 0.5880498), (0.69891834, -0.071353205, 0.7116332), (-0.84021795, 0.027527712, 0.54154986), (-0.6884842, -0.67793065, 0.25768104), (-0.78738946, -0.45226362, 0.418898), (0.869915, 0.37368533, 0.3218806), (0.84710217, 0.51983225, 0.11041878), (0.83344054, 0.48242986, 0.26951486), (-0.98484534, 0.023799932, -0.17179422), (-0.9992325, 0.009367977, -0.03803466), (-0.97349536, -0.03525896, -0.22597268), (-0.50882804, -0.1622441, -0.8454413), (-0.4349633, -0.1718754, -0.8838925), (-0.5387095, -0.35279298, -0.7650681), (-0.26577422, -0.36665386, 0.891588), (-0.056041718, -0.25372228, 0.96565235), (-0.25319877, -0.18759899, 0.94905055), (-0.25319877, -0.18759899, 0.94905055), (-0.18396431, 0.08664264, 0.9791068), (-0.32866132, 0.1766891, 0.927773), (-0.06566453, 0.309662, 0.9485766), (-0.21605456, 0.35979885, 0.90767026), (-0.23617615, 0.26490545, 0.9349043), (0.10752623, -0.11405444, 0.9876385), (0.37219942, -0.5005989, 0.7815807), (0.49719888, -0.32317707, 0.8052017), (-0.3294147, -0.43125603, -0.83994293), (-0.5175812, -0.33996534, -0.78519636), (-0.30536386, -0.6192945, -0.7233444), (-0.16236158, 0.034183253, 0.98613906), (-0.057124197, -0.23572528, 0.97013944), (-0.23737086, -0.15981758, 0.95818233), (0.430587, -0.6497393, -0.62644523), (0.8923967, -0.39999035, -0.20889154), (0.957997, -0.2859565, 0.021691369), (0.7706223, 0.5744059, 0.2760419), (0.72817004, 0.49180785, 0.4773819), (0.81504124, 0.41989926, 0.39923972), (-0.09489537, 0.30926257, 0.9462302), (-0.23617615, 0.26490545, 0.9349043), (-0.32866132, 0.1766891, 0.927773), (-0.18396431, 0.08664264, 0.9791068), (-0.09489537, 0.30926257, 0.9462302), (-0.32866132, 0.1766891, 0.927773), (-0.05849197, 0.4420527, 0.89508), (-0.21605456, 0.35979885, 0.90767026), (-0.06566453, 0.309662, 0.9485766), (-0.05849197, 0.4420527, 0.89508), (0.055428933, 0.14206898, 0.9883036), (-0.21605456, 0.35979885, 0.90767026), (-0.029292079, -0.3112522, 0.9498758), (-0.14589304, -0.035335813, 0.98866916), (0.022580879, -0.12428294, 0.9919899), (0.30929923, -0.40474993, 0.8605298), (0.13927187, -0.4960245, 0.85706663), (0.16122013, -0.6891975, 0.7064099), (0.48341665, 0.29635894, -0.8236987), (0.63791245, 0.060515024, -0.76772755), (0.6672254, 0.2849614, -0.6881912), (-0.9587795, 0.26072076, 0.11298901), (-0.97649986, -0.1604329, 0.14390719), (-0.98468184, -0.07080658, 0.15933585), (-0.9207175, 0.38214493, -0.07902244), (-0.9587795, 0.26072076, 0.11298901), (-0.95097476, 0.25195938, -0.17934175), (-0.2333105, 0.87541354, 0.42334047), (-0.20693623, 0.76447463, 0.6105374), (-0.3220169, 0.68951935, 0.6487435), (0.33754775, -0.6609498, -0.67022896), (0.21423133, -0.8084097, -0.5482506), (0.4877713, -0.78026503, -0.39149147), (-0.28390387, -0.8107465, -0.5119459), (-0.29589933, -0.874036, -0.3853629), (-0.32875413, -0.90028757, -0.28531218), (-0.16228446, -0.3235335, 0.9321962), (-0.18999156, -0.20312528, 0.9605432), (-0.26577422, -0.36665386, 0.891588), (-0.18999156, -0.20312528, 0.9605432), (-0.056041718, -0.25372228, 0.96565235), (-0.26577422, -0.36665386, 0.891588), (-0.056041718, -0.25372228, 0.96565235), (0.0177147, -0.12427413, 0.9920898), (-0.25319877, -0.18759899, 0.94905055), (-0.25319877, -0.18759899, 0.94905055), (0.0177147, -0.12427413, 0.9920898), (-0.18396431, 0.08664264, 0.9791068), (0.0177147, -0.12427413, 0.9920898), (-0.008740451, 0.115399234, 0.9932807), (-0.18396431, 0.08664264, 0.9791068), (-0.09489537, 0.30926257, 0.9462302), (-0.06566453, 0.309662, 0.9485766), (-0.23617615, 0.26490545, 0.9349043), (0.24659972, 0.5663498, 0.78640735), (0.25459546, 0.5935051, 0.76350033), (0.1354116, 0.78960186, 0.59849197), (-0.1493062, 0.7053834, 0.6929228), (-0.13540511, 0.7182786, 0.68245244), (-0.1009697, 0.5361198, 0.83808154), (0.9298531, 0.065071344, -0.3621309), (0.9604763, 0.03142416, -0.27658242), (0.99246705, 0.054656122, -0.109644346), (-0.0069292844, 0.5076618, 0.86152864), (0.055428933, 0.14206898, 0.9883036), (-0.05849197, 0.4420527, 0.89508), (0.13161509, 0.20264517, 0.97036713), (0.3057944, 0.15064518, 0.94010407), (0.24642, 0.41090232, 0.8777451), (-0.32039356, 0.88322234, 0.34244162), (-0.2333105, 0.87541354, 0.42334047), (-0.32711035, 0.8158708, 0.47681615), (-0.74905336, -0.25794122, -0.6102337), (-0.70096695, -0.13765024, -0.69978404), (-0.9109413, -0.076090276, -0.4054579), (-0.12301849, -0.11533063, 0.9856801), (-0.056041718, -0.25372228, 0.96565235), (-0.18999156, -0.20312528, 0.9605432), (-0.12301849, -0.11533063, 0.9856801), (0.0177147, -0.12427413, 0.9920898), (-0.056041718, -0.25372228, 0.96565235), (-0.18396431, 0.08664264, 0.9791068), (-0.008740451, 0.115399234, 0.9932807), (-0.09489537, 0.30926257, 0.9462302), (-0.09489537, 0.30926257, 0.9462302), (0.0709414, 0.26156795, 0.96257436), (-0.06566453, 0.309662, 0.9485766), (0.055428933, 0.14206898, 0.9883036), (-0.0069292844, 0.5076618, 0.86152864), (0.3038638, -0.12738982, 0.9441602), (0.20746073, -0.2056236, 0.95638853), (0.12920095, -0.19085027, 0.9730792), (0.13927187, -0.4960245, 0.85706663), (0.13161509, 0.20264517, 0.97036713), (0.10217742, 0.23066665, 0.96765316), (0.0039564003, 0.11590399, 0.9932525), (-0.8752313, -0.34873527, -0.33519235), (-0.97881943, -0.011554678, -0.20439933), (-0.6685689, -0.72058904, -0.18375832), (-0.10935553, 0.41149226, 0.904829), (0.63005215, 0.06056474, 0.7741875), (0.26782945, 0.0053843213, 0.9634513), (-0.1493062, 0.7053834, 0.6929228), (0.07665287, 0.3765971, 0.92320037), (-0.13540511, 0.7182786, 0.68245244), (-0.4769235, 0.13732037, -0.8681516), (-0.7309083, 0.2947873, -0.615527), (-0.57752246, 0.52907157, -0.6217323), (-0.12301849, -0.11533063, 0.9856801), (0.0096869925, -0.06467324, 0.9978594), (0.0177147, -0.12427413, 0.9920898), (0.4313926, -0.5462701, 0.7179759), (0.16122013, -0.6891975, 0.7064099), (0.21663934, -0.32630387, 0.920105), (-0.44635057, -0.3501747, 0.8234979), (-0.7292571, -0.15952715, 0.6653834), (-0.48213178, -0.10772832, 0.86945015), (0.46501714, 0.8165149, 0.34214398), (-0.17572127, 0.88967335, 0.42143017), (0.2747581, 0.95821714, 0.07954798), (0.21395285, 0.94366175, 0.2524414), (0.31584677, 0.88301134, 0.3471768), (0.13814108, 0.8588598, 0.4932311), (-0.2773278, 0.31339413, -0.9082255), (-0.35297173, 0.4074013, -0.84227973), (-0.32487574, 0.3613849, -0.873989), (-0.17811333, -0.52131015, 0.8345726), (-0.058807254, -0.4848953, 0.8725929), (-0.16228446, -0.3235335, 0.9321962), (-0.008740451, 0.115399234, 0.9932807), (0.13597265, 0.11969041, 0.9834559), (-0.09489537, 0.30926257, 0.9462302), (0.021597004, 0.4145648, 0.90976346), (-0.05849197, 0.4420527, 0.89508), (-0.06566453, 0.309662, 0.9485766), (0.021597004, 0.4145648, 0.90976346), (-0.0069292844, 0.5076618, 0.86152864), (-0.05849197, 0.4420527, 0.89508), (0.17434353, -0.03654722, 0.9840064), (0.22328147, -0.076789305, 0.9717246), (0.15873082, -0.089554355, 0.98325205), (0.07665287, 0.3765971, 0.92320037), (0.2670099, 0.19656658, 0.94343376), (0.17491105, 0.19325906, 0.965431), (0.9966044, -0.060561676, -0.055785798), (0.8960697, 0.31373283, -0.31405523), (0.82764876, -0.24990812, -0.502537), (-0.015166537, 0.65454024, 0.75587493), (0.21076278, 0.59047675, 0.7790484), (0.07506453, 0.64145595, 0.76347864), (-0.11989767, -0.5240033, 0.84323484), (0.12920095, -0.19085027, 0.9730792), (-0.23737086, -0.15981758, 0.95818233), (0.1354116, 0.78960186, 0.59849197), (-0.13540511, 0.7182786, 0.68245244), (-0.016314462, 0.8976061, 0.44049644), (-0.7099642, -0.5525628, -0.43660668), (-0.73144907, -0.44305888, -0.51834464), (-0.011004529, -0.9110386, -0.41217405), (-0.053287975, 0.03853071, -0.9978355), (0.13239287, 0.092030376, -0.9869156), (0.11112244, 0.19617122, -0.9742529), (-0.16228446, -0.3235335, 0.9321962), (-0.12990804, -0.14979085, 0.98014617), (-0.18999156, -0.20312528, 0.9605432), (-0.18999156, -0.20312528, 0.9605432), (-0.12990804, -0.14979085, 0.98014617), (-0.12301849, -0.11533063, 0.9856801), (0.13597265, 0.11969041, 0.9834559), (0.0709414, 0.26156795, 0.96257436), (-0.09489537, 0.30926257, 0.9462302), (0.007774585, 0.49092638, 0.87116635), (-0.0069292844, 0.5076618, 0.86152864), (0.021597004, 0.4145648, 0.90976346), (-0.06189606, -0.39835835, 0.9151391), (0.069934025, -0.16515385, 0.9837853), (-0.06518985, -0.31126437, 0.9480848), (0.22414061, 0.095365204, 0.9698796), (0.08757645, 0.104537815, 0.9906574), (0.0027943084, 0.11029896, 0.9938945), (0.98415905, -0.10507068, 0.14279798), (0.99170935, 0.12236345, 0.03924041), (0.9578458, 0.12638372, 0.2579895), (0.12920095, -0.19085027, 0.9730792), (-0.16236158, 0.034183253, 0.98613906), (-0.23737086, -0.15981758, 0.95818233), (0.09335617, 0.35891667, 0.9286891), (-0.18640007, 0.7097053, 0.6793919), (-0.28025487, 0.3406953, 0.8974318), (0.11040793, 0.7877665, 0.6059984), (-0.063274145, 0.68634343, 0.72451985), (0.13814108, 0.8588598, 0.4932311), (0.24769956, -0.17423761, -0.9530405), (0.301215, 0.11390896, -0.9467281), (0.12762953, 0.0902003, -0.9877118), (0.2776778, -0.906496, -0.31805658), (-0.025121022, -0.944091, -0.32872617), (0.45199344, -0.8476778, -0.27774844), (-0.17811333, -0.52131015, 0.8345726), (-0.052310307, -0.581549, 0.8118279), (-0.058807254, -0.4848953, 0.8725929), (-0.058807254, -0.4848953, 0.8725929), (0.029340316, -0.34519386, 0.9380727), (-0.16228446, -0.3235335, 0.9321962), (-0.16228446, -0.3235335, 0.9321962), (0.029340316, -0.34519386, 0.9380727), (-0.12990804, -0.14979085, 0.98014617), (-0.12990804, -0.14979085, 0.98014617), (-0.08137942, -0.009718286, 0.99663585), (-0.12301849, -0.11533063, 0.9856801), (-0.12301849, -0.11533063, 0.9856801), (-0.08137942, -0.009718286, 0.99663585), (0.0096869925, -0.06467324, 0.9978594), (0.0096869925, -0.06467324, 0.9978594), (0.13597265, 0.11969041, 0.9834559), (0.0177147, -0.12427413, 0.9920898), (0.13597265, 0.11969041, 0.9834559), (-0.008740451, 0.115399234, 0.9932807), (0.0177147, -0.12427413, 0.9920898), (0.0709414, 0.26156795, 0.96257436), (0.023645641, 0.27873552, 0.9600767), (-0.06566453, 0.309662, 0.9485766), (-0.06566453, 0.309662, 0.9485766), (0.023645641, 0.27873552, 0.9600767), (0.021597004, 0.4145648, 0.90976346), (-0.0069292844, 0.5076618, 0.86152864), (0.26924786, 0.27496895, 0.922983), (0.3038638, -0.12738982, 0.9441602), (-0.057124197, -0.23572528, 0.97013944), (0.10212472, -0.44229057, 0.8910385), (-0.06189606, -0.39835835, 0.9151391), (0.06586055, 0.2137245, 0.97467136), (-0.10935553, 0.41149226, 0.904829), (-0.1487316, 0.1672607, 0.9746295), (0.2826537, 0.21204098, 0.93549204), (0.22976145, 0.24329102, 0.94234765), (0.28562865, 0.2665702, 0.92051977), (0.09335617, 0.35891667, 0.9286891), (0.1088793, 0.6450235, 0.75636625), (-0.18640007, 0.7097053, 0.6793919), (0.45836627, -0.8875529, -0.046368957), (0.38774744, -0.9145859, 0.1148242), (0.34086612, -0.93966603, -0.028946167), (-0.549907, 0.7612995, 0.34354806), (-0.18640007, 0.7097053, 0.6793919), (-0.18741368, 0.93810004, 0.29128063), (-0.3434998, 0.20149514, -0.9172827), (-0.4769235, 0.13732037, -0.8681516), (-0.35297173, 0.4074013, -0.84227973), (-0.007975545, -0.3329824, 0.94289935), (0.029340316, -0.34519386, 0.9380727), (-0.058807254, -0.4848953, 0.8725929), (0.039211534, 0.16317964, 0.98581684), (0.13597265, 0.11969041, 0.9834559), (0.0096869925, -0.06467324, 0.9978594), (0.13597265, 0.11969041, 0.9834559), (0.039211534, 0.16317964, 0.98581684), (0.0709414, 0.26156795, 0.96257436), (-0.19273907, -0.56079185, 0.80521053), (-0.11989767, -0.5240033, 0.84323484), (-0.23737086, -0.15981758, 0.95818233), (0.21989535, 0.46821377, 0.8558166), (0.28562865, 0.2665702, 0.92051977), (0.15229794, 0.37084228, 0.9161231), (0.15229794, 0.37084228, 0.9161231), (0.21076278, 0.59047675, 0.7790484), (-0.015166537, 0.65454024, 0.75587493), (-0.11695605, 0.4948351, 0.8610804), (-0.09595232, 0.6099804, 0.78658575), (-0.10935553, 0.41149226, 0.904829), (0.3377375, 0.23690069, 0.9109399), (0.2826537, 0.21204098, 0.93549204), (0.44153064, 0.2671292, 0.8565586), (-0.09595232, 0.6099804, 0.78658575), (0.48421824, 0.2921103, 0.824745), (0.13144158, 0.42583707, 0.8952016), (-0.09595232, 0.6099804, 0.78658575), (0.26596016, 0.72425157, 0.63617986), (0.48421824, 0.2921103, 0.824745), (0.68052876, -0.6903251, -0.24562559), (0.848993, -0.47340342, -0.23473416), (0.8157006, -0.57242763, -0.08342118), (0.3472462, 0.41306263, 0.84190226), (0.3797876, 0.58644396, 0.7154333), (0.21076278, 0.59047675, 0.7790484), (-0.56604046, 0.77200174, -0.2891566), (-0.47269213, 0.7379392, -0.48167187), (-0.70865, 0.5702388, -0.41550317), (0.83344054, 0.48242986, 0.26951486), (0.77743036, 0.4899097, 0.39444962), (0.8547374, 0.35883695, 0.3750466), (-0.16767572, -0.2735583, 0.94712764), (-0.3791319, -0.2046025, 0.90243936), (-0.3708847, -0.35086176, 0.8598492), (-0.4116224, 0.05100067, 0.9099263), (-0.59768534, 0.20133865, 0.77603805), (-0.50571656, -0.4274882, 0.74933606), (0.029340316, -0.34519386, 0.9380727), (0.13355571, -0.23071915, 0.9638109), (-0.12990804, -0.14979085, 0.98014617), (0.13355571, -0.23071915, 0.9638109), (-0.08137942, -0.009718286, 0.99663585), (-0.12990804, -0.14979085, 0.98014617), (0.039211534, 0.16317964, 0.98581684), (0.0096869925, -0.06467324, 0.9978594), (-0.08137942, -0.009718286, 0.99663585), (0.039211534, 0.16317964, 0.98581684), (-0.033193357, 0.18358557, 0.9824431), (0.0709414, 0.26156795, 0.96257436), (0.0709414, 0.26156795, 0.96257436), (-0.033193357, 0.18358557, 0.9824431), (0.023645641, 0.27873552, 0.9600767), (-0.033193357, 0.18358557, 0.9824431), (0.012985091, 0.35019267, 0.9365877), (0.023645641, 0.27873552, 0.9600767), (0.012985091, 0.35019267, 0.9365877), (0.021597004, 0.4145648, 0.90976346), (0.023645641, 0.27873552, 0.9600767), (0.007774585, 0.49092638, 0.87116635), (-0.014871487, 0.50563097, 0.8626216), (-0.0069292844, 0.5076618, 0.86152864), (-0.014871487, 0.50563097, 0.8626216), (0.0589187, 0.6413174, 0.7650101), (0.26924786, 0.27496895, 0.922983), (-0.0069292844, 0.5076618, 0.86152864), (-0.014871487, 0.50563097, 0.8626216), (0.26924786, 0.27496895, 0.922983), (-0.029292079, -0.3112522, 0.9498758), (0.10752623, -0.11405444, 0.9876385), (-0.14589304, -0.035335813, 0.98866916), (-0.115355425, -0.09205561, 0.98904943), (0.12388652, -0.18089667, 0.97566825), (-0.09187397, -0.33620593, 0.9372965), (0.31702483, 0.522555, 0.7914742), (0.28563854, 0.46243456, 0.8393836), (0.20326447, 0.45285785, 0.8681032), (-0.19273907, -0.56079185, 0.80521053), (-0.07433573, -0.7323538, 0.6768546), (-0.11989767, -0.5240033, 0.84323484), (0.44153064, 0.2671292, 0.8565586), (0.2826537, 0.21204098, 0.93549204), (0.28562865, 0.2665702, 0.92051977), (0.8780951, 0.44791573, 0.16828656), (0.830922, 0.5463997, 0.10495742), (0.7706223, 0.5744059, 0.2760419), (-0.058807254, -0.4848953, 0.8725929), (-0.02700468, -0.34321782, 0.9388675), (-0.007975545, -0.3329824, 0.94289935), (0.021597004, 0.4145648, 0.90976346), (0.089965165, 0.43421403, 0.896306), (0.007774585, 0.49092638, 0.87116635), (0.089965165, 0.43421403, 0.896306), (-0.014871487, 0.50563097, 0.8626216), (0.007774585, 0.49092638, 0.87116635), (-0.1009697, 0.5361198, 0.83808154), (0.15229794, 0.37084228, 0.9161231), (-0.015166537, 0.65454024, 0.75587493), (0.15873082, -0.089554355, 0.98325205), (0.16608538, 0.027675416, 0.9857229), (0.2565452, -0.020014055, 0.966325), (0.07506453, 0.64145595, 0.76347864), (0.0411087, 0.4981852, 0.86609566), (-0.1493062, 0.7053834, 0.6929228), (0.13161509, 0.20264517, 0.97036713), (0.22690275, 0.3862648, 0.894044), (0.10217742, 0.23066665, 0.96765316), (-0.074242614, 0.9043319, 0.4203234), (0.07782403, 0.7469551, 0.6603041), (-0.39848554, 0.6507947, 0.64627826), (-0.02700468, -0.34321782, 0.9388675), (0.13355571, -0.23071915, 0.9638109), (-0.007975545, -0.3329824, 0.94289935), (0.13355571, -0.23071915, 0.9638109), (0.029340316, -0.34519386, 0.9380727), (-0.007975545, -0.3329824, 0.94289935), (0.19910751, -0.0050769607, 0.97996444), (-0.08137942, -0.009718286, 0.99663585), (0.13355571, -0.23071915, 0.9638109), (0.022813087, 0.17060664, 0.9850751), (0.039211534, 0.16317964, 0.98581684), (-0.08137942, -0.009718286, 0.99663585), (0.18425074, 0.12783782, 0.9745302), (-0.033193357, 0.18358557, 0.9824431), (0.039211534, 0.16317964, 0.98581684), (0.089965165, 0.43421403, 0.896306), (0.021597004, 0.4145648, 0.90976346), (0.012985091, 0.35019267, 0.9365877), (0.07506453, 0.64145595, 0.76347864), (0.20326447, 0.45285785, 0.8681032), (0.12527607, 0.38304296, 0.9151961), (0.7773464, -0.4599915, -0.42911586), (0.8699443, -0.29174265, -0.3975969), (0.848993, -0.47340342, -0.23473416), (0.10217742, 0.23066665, 0.96765316), (0.22690275, 0.3862648, 0.894044), (0.16176148, 0.37942222, 0.91097313), (0.17491105, 0.19325906, 0.965431), (0.19276795, 0.31514922, 0.9292586), (0.023954298, 0.34886315, 0.9368675), (0.9985195, -0.035640925, 0.04109335), (0.9573712, 0.23245242, 0.17148295), (0.9987824, -0.010016361, 0.04830461), (0.26045316, 0.45574567, 0.8511522), (0.07782403, 0.7469551, 0.6603041), (0.1088793, 0.6450235, 0.75636625), (0.91738075, 0.01338988, 0.39778554), (0.9578458, 0.12638372, 0.2579895), (0.8394417, 0.30937803, 0.44679174), (0.19180067, -0.9516986, -0.23975466), (0.026534816, -0.97648054, -0.21396673), (0.54656434, -0.80144656, -0.24279799), (0.19910751, -0.0050769607, 0.97996444), (0.022813087, 0.17060664, 0.9850751), (-0.08137942, -0.009718286, 0.99663585), (0.039211534, 0.16317964, 0.98581684), (0.022813087, 0.17060664, 0.9850751), (0.18425074, 0.12783782, 0.9745302), (0.089965165, 0.43421403, 0.896306), (-0.09009637, 0.40598586, 0.90942734), (-0.014871487, 0.50563097, 0.8626216), (0.023954298, 0.34886315, 0.9368675), (0.19276795, 0.31514922, 0.9292586), (0.08716038, 0.50213987, 0.86038285), (-0.1487316, 0.1672607, 0.9746295), (0.26782945, 0.0053843213, 0.9634513), (0.022580879, -0.12428294, 0.9919899), (-0.14589304, -0.035335813, 0.98866916), (-0.1487316, 0.1672607, 0.9746295), (0.022580879, -0.12428294, 0.9919899), (0.3557596, -0.09067761, 0.9301681), (0.06586055, 0.2137245, 0.97467136), (0.10752623, -0.11405444, 0.9876385), (0.49719888, -0.32317707, 0.8052017), (0.3557596, -0.09067761, 0.9301681), (0.10752623, -0.11405444, 0.9876385), (0.06586055, 0.2137245, 0.97467136), (-0.11695605, 0.4948351, 0.8610804), (-0.10935553, 0.41149226, 0.904829), (-0.22315592, 0.91620046, 0.3328336), (-0.30763242, 0.8334799, 0.45899191), (-0.14962682, 0.8733716, 0.46350175), (-0.13678886, 0.9809032, -0.13826738), (-0.04422065, 0.9989389, -0.012871277), (0.011650657, 0.993044, -0.11716521), (0.26282606, -0.08450447, -0.96113557), (-0.0215857, -0.57216984, -0.819851), (0.607333, -0.55710804, -0.5663719), (-0.9000499, -0.37269938, 0.22584301), (-0.97281104, 0.22841159, -0.03830044), (-0.6393449, -0.7685127, 0.02502504), (-0.033193357, 0.18358557, 0.9824431), (0.08326929, 0.21479166, 0.97310364), (0.012985091, 0.35019267, 0.9365877), (0.08326929, 0.21479166, 0.97310364), (0.017049821, 0.34103146, 0.93989724), (0.012985091, 0.35019267, 0.9365877), (0.017049821, 0.34103146, 0.93989724), (-0.09009637, 0.40598586, 0.90942734), (0.089965165, 0.43421403, 0.896306), (0.012985091, 0.35019267, 0.9365877), (0.017049821, 0.34103146, 0.93989724), (0.089965165, 0.43421403, 0.896306), (-0.07433573, -0.7323538, 0.6768546), (0.16122013, -0.6891975, 0.7064099), (0.13927187, -0.4960245, 0.85706663), (0.080321275, -0.56148475, 0.82357955), (-0.029292079, -0.3112522, 0.9498758), (0.26364633, -0.4508326, 0.852784), (0.041143876, 0.4090212, 0.91159695), (0.16176148, 0.37942222, 0.91097313), (0.0813317, 0.65248305, 0.75342625), (-0.09187397, -0.33620593, 0.9372965), (0.0773809, -0.29087433, 0.95362693), (-0.18833666, -0.27567136, 0.9426211), (-0.015166537, 0.65454024, 0.75587493), (-0.1493062, 0.7053834, 0.6929228), (-0.1009697, 0.5361198, 0.83808154), (0.26462433, 0.20451565, 0.9424157), (0.21685927, 0.23731945, 0.9469168), (0.31110305, 0.14118168, 0.9398311), (-0.13287392, 0.58206916, 0.80220944), (-0.39848554, 0.6507947, 0.64627826), (0.07782403, 0.7469551, 0.6603041), (-0.6690248, 0.10474818, 0.73582166), (-0.78519917, 0.42751658, 0.4479865), (-0.39848554, 0.6507947, 0.64627826), (0.07123869, 0.94643617, -0.31493425), (0.011650657, 0.993044, -0.11716521), (0.1613725, 0.9756421, -0.14859825), (0.08454101, -0.33148712, 0.9396643), (-0.02700468, -0.34321782, 0.9388675), (0.06398499, -0.579523, 0.81244016), (0.08454101, -0.33148712, 0.9396643), (0.13355571, -0.23071915, 0.9638109), (-0.02700468, -0.34321782, 0.9388675), (0.19910751, -0.0050769607, 0.97996444), (0.18425074, 0.12783782, 0.9745302), (0.022813087, 0.17060664, 0.9850751), (0.08326929, 0.21479166, 0.97310364), (-0.033193357, 0.18358557, 0.9824431), (0.18425074, 0.12783782, 0.9745302), (-0.1517771, 0.40047118, 0.9036518), (-0.014871487, 0.50563097, 0.8626216), (-0.09009637, 0.40598586, 0.90942734), (0.011541755, 0.55310476, 0.8330318), (0.0589187, 0.6413174, 0.7650101), (-0.014871487, 0.50563097, 0.8626216), (0.82764876, -0.24990812, -0.502537), (0.350484, -0.7758478, -0.5246153), (0.64303005, -0.7089091, -0.28975874), (0.08716038, 0.50213987, 0.86038285), (0.18990594, 0.46538013, 0.86449826), (0.084180735, 0.60850376, 0.7890733), (-0.13287392, 0.58206916, 0.80220944), (-0.22639912, 0.16232789, 0.9604129), (-0.39848554, 0.6507947, 0.64627826), (-0.22639912, 0.16232789, 0.9604129), (-0.6690248, 0.10474818, 0.73582166), (-0.39848554, 0.6507947, 0.64627826), (-0.13579999, 0.99041, -0.025425393), (-0.16796216, 0.9833957, 0.06871436), (-0.08229463, 0.993445, 0.07933864), (0.29506394, -0.18907054, 0.93658394), (0.13355571, -0.23071915, 0.9638109), (0.08454101, -0.33148712, 0.9396643), (0.35266396, -0.13054973, 0.92659855), (0.19910751, -0.0050769607, 0.97996444), (0.13355571, -0.23071915, 0.9638109), (0.26670727, 0.085495986, 0.9599779), (0.18425074, 0.12783782, 0.9745302), (0.33253404, 0.08836878, 0.938942), (0.26670727, 0.085495986, 0.9599779), (0.08326929, 0.21479166, 0.97310364), (0.18425074, 0.12783782, 0.9745302), (-0.9915138, 0.05954056, 0.115564995), (-0.95371497, -0.009299656, -0.3005682), (-0.99763674, -0.05126775, -0.045744807), (0.4313926, -0.5462701, 0.7179759), (0.40932652, -0.5690106, 0.71321714), (0.16122013, -0.6891975, 0.7064099), (-0.19790466, 0.6978808, 0.6883285), (-0.19371775, 0.70356625, 0.6837163), (0.037180874, 0.5199265, 0.8534014), (0.26045316, 0.45574567, 0.8511522), (0.1616468, 0.5185643, 0.83961976), (0.07782403, 0.7469551, 0.6603041), (-0.11742587, 0.9185192, 0.37753624), (-0.2537338, 0.86747384, 0.4279114), (-0.14615607, 0.8347189, 0.5309263), (0.29506394, -0.18907054, 0.93658394), (0.35266396, -0.13054973, 0.92659855), (0.13355571, -0.23071915, 0.9638109), (0.35266396, -0.13054973, 0.92659855), (0.3680614, 0.12534688, 0.92131364), (0.19910751, -0.0050769607, 0.97996444), (0.19910751, -0.0050769607, 0.97996444), (0.3680614, 0.12534688, 0.92131364), (0.18425074, 0.12783782, 0.9745302), (0.3680614, 0.12534688, 0.92131364), (0.33253404, 0.08836878, 0.938942), (0.18425074, 0.12783782, 0.9745302), (0.08326929, 0.21479166, 0.97310364), (0.26670727, 0.085495986, 0.9599779), (0.017049821, 0.34103146, 0.93989724), (0.017049821, 0.34103146, 0.93989724), (-0.1517771, 0.40047118, 0.9036518), (-0.09009637, 0.40598586, 0.90942734), (0.0589187, 0.6413174, 0.7650101), (0.33469716, 0.57536525, 0.7462793), (0.55669487, 0.25641346, 0.7901538), (0.7657911, 0.57791793, -0.28208998), (0.6738203, 0.21030322, -0.70833516), (-0.20828348, 0.23818831, -0.9486223), (0.11630765, 0.11799151, 0.9861797), (0.07665287, 0.3765971, 0.92320037), (0.17491105, 0.19325906, 0.965431), (0.16176148, 0.37942222, 0.91097313), (0.22690275, 0.3862648, 0.894044), (0.24659972, 0.5663498, 0.78640735), (-0.011004529, -0.9110386, -0.41217405), (0.12727505, -0.81410795, -0.56659454), (0.45945284, -0.78982055, -0.4063086), (0.16176148, 0.37942222, 0.91097313), (0.24659972, 0.5663498, 0.78640735), (0.0813317, 0.65248305, 0.75342625), (0.23804793, 0.49164066, 0.8376293), (0.3958961, 0.30342558, 0.86671746), (0.037180874, 0.5199265, 0.8534014), (-0.876151, 0.28557828, -0.38833538), (-0.70207876, 0.5382597, -0.46622092), (-0.83092785, -0.021337103, -0.555971), (0.1616468, 0.5185643, 0.83961976), (0.021480436, 0.44137764, 0.89706427), (-0.13287392, 0.58206916, 0.80220944), (0.07782403, 0.7469551, 0.6603041), (0.1616468, 0.5185643, 0.83961976), (-0.13287392, 0.58206916, 0.80220944), (0.021480436, 0.44137764, 0.89706427), (-0.22639912, 0.16232789, 0.9604129), (-0.13287392, 0.58206916, 0.80220944), (0.48888955, 0.8121081, 0.31853953), (0.27974927, 0.8973062, 0.341441), (0.29553086, 0.86234987, 0.41111332), (0.70229757, -0.15326084, -0.69519), (0.570426, 0.016073883, -0.8211916), (0.543596, -0.03596109, -0.83857626), (-0.1420328, -0.21302138, 0.9666689), (0.077164955, -0.09245978, 0.9927218), (0.08454101, -0.33148712, 0.9396643), (0.077164955, -0.09245978, 0.9927218), (0.29506394, -0.18907054, 0.93658394), (0.08454101, -0.33148712, 0.9396643), (0.26670727, 0.085495986, 0.9599779), (0.16875584, 0.16203745, 0.97224754), (0.017049821, 0.34103146, 0.93989724), (0.12409471, 0.3466316, 0.9297565), (-0.1517771, 0.40047118, 0.9036518), (0.017049821, 0.34103146, 0.93989724), (0.12409471, 0.3466316, 0.9297565), (0.011541755, 0.55310476, 0.8330318), (-0.1517771, 0.40047118, 0.9036518), (-0.1517771, 0.40047118, 0.9036518), (0.011541755, 0.55310476, 0.8330318), (-0.014871487, 0.50563097, 0.8626216), (-0.064630546, 0.71945006, 0.69153064), (0.33469716, 0.57536525, 0.7462793), (0.0589187, 0.6413174, 0.7650101), (-0.14805838, -0.5870909, -0.7958662), (-0.30536386, -0.6192945, -0.7233444), (-0.012127084, -0.7994914, -0.60055524), (0.25492045, -0.8550625, -0.4515348), (0.1351536, -0.7640246, -0.6308723), (0.2974425, -0.91589993, -0.26954654), (0.5549209, 0.22934762, 0.7996639), (0.37538117, 0.23835196, 0.8956994), (0.3958961, 0.30342558, 0.86671746), (0.07506453, 0.64145595, 0.76347864), (0.31702483, 0.522555, 0.7914742), (0.20326447, 0.45285785, 0.8681032), (-0.8739215, 0.398463, -0.27836725), (-0.8585084, 0.36451405, -0.3606837), (-0.78920925, 0.29126886, -0.54065806), (-0.1420328, -0.21302138, 0.9666689), (-0.09432892, -0.024845503, 0.99523103), (0.077164955, -0.09245978, 0.9927218), (0.16875584, 0.16203745, 0.97224754), (0.12409471, 0.3466316, 0.9297565), (0.017049821, 0.34103146, 0.93989724), (0.011541755, 0.55310476, 0.8330318), (0.072863065, 0.60180104, 0.79531527), (0.0589187, 0.6413174, 0.7650101), (0.072863065, 0.60180104, 0.79531527), (0.023842763, 0.63369995, 0.77321136), (0.0589187, 0.6413174, 0.7650101), (0.023842763, 0.63369995, 0.77321136), (-0.064630546, 0.71945006, 0.69153064), (0.0589187, 0.6413174, 0.7650101), (0.99257517, 0.06272157, 0.10421382), (0.8318086, -0.3919076, 0.39306858), (0.9491198, 0.06107513, 0.30893606), (0.68052876, -0.6903251, -0.24562559), (0.66412526, -0.7449501, -0.063141584), (0.537906, -0.8258717, -0.16909474), (0.06586055, 0.2137245, 0.97467136), (0.12510486, 0.30186772, 0.94510555), (-0.11695605, 0.4948351, 0.8610804), (-0.06189606, -0.39835835, 0.9151391), (0.10212472, -0.44229057, 0.8910385), (0.069934025, -0.16515385, 0.9837853), (-0.95371497, -0.009299656, -0.3005682), (-0.876151, 0.28557828, -0.38833538), (-0.83092785, -0.021337103, -0.555971), (0.13255553, 0.99081033, -0.026908878), (0.011650657, 0.993044, -0.11716521), (-0.04422065, 0.9989389, -0.012871277), (0.060451977, 0.99370325, 0.09433652), (-0.08229463, 0.993445, 0.07933864), (0.016667308, 0.9787065, 0.20458676), (-0.44635057, -0.3501747, 0.8234979), (-0.12592243, -0.15547617, 0.97978085), (-0.1420328, -0.21302138, 0.9666689), (-0.12592243, -0.15547617, 0.97978085), (-0.09432892, -0.024845503, 0.99523103), (-0.1420328, -0.21302138, 0.9666689), (-0.09432892, -0.024845503, 0.99523103), (-0.07763297, -0.027056448, 0.99661475), (0.077164955, -0.09245978, 0.9927218), (-0.07763297, -0.027056448, 0.99661475), (0.29506394, -0.18907054, 0.93658394), (0.077164955, -0.09245978, 0.9927218), (0.12409471, 0.3466316, 0.9297565), (0.22389963, 0.4121977, 0.8831545), (0.011541755, 0.55310476, 0.8330318), (0.011541755, 0.55310476, 0.8330318), (0.22389963, 0.4121977, 0.8831545), (0.072863065, 0.60180104, 0.79531527), (0.45199344, -0.8476778, -0.27774844), (0.19180067, -0.9516986, -0.23975466), (0.7449587, -0.6390075, -0.19158767), (0.27950996, -0.040275995, 0.95929766), (0.17434353, -0.03654722, 0.9840064), (0.07089685, 0.021663697, 0.99724835), (0.37538117, 0.23835196, 0.8956994), (0.14828181, 0.43243113, 0.88939065), (0.037180874, 0.5199265, 0.8534014), (0.3958961, 0.30342558, 0.86671746), (0.37538117, 0.23835196, 0.8956994), (0.037180874, 0.5199265, 0.8534014), (0.14828181, 0.43243113, 0.88939065), (-0.19790466, 0.6978808, 0.6883285), (0.037180874, 0.5199265, 0.8534014), (-0.84021795, 0.027527712, 0.54154986), (-0.9386532, 0.30061942, 0.16899173), (-0.9727995, -0.2294292, 0.031990424), (-0.1420941, -0.14105362, 0.97975165), (-0.12592243, -0.15547617, 0.97978085), (-0.48213178, -0.10772832, 0.86945015), (0.13242446, 0.02003132, 0.9909907), (0.29506394, -0.18907054, 0.93658394), (-0.07763297, -0.027056448, 0.99661475), (0.13242446, 0.02003132, 0.9909907), (0.35266396, -0.13054973, 0.92659855), (0.29506394, -0.18907054, 0.93658394), (0.13242446, 0.02003132, 0.9909907), (0.3680614, 0.12534688, 0.92131364), (0.35266396, -0.13054973, 0.92659855), (0.3680614, 0.12534688, 0.92131364), (0.13242446, 0.02003132, 0.9909907), (0.33253404, 0.08836878, 0.938942), (0.16875584, 0.16203745, 0.97224754), (0.09053187, 0.184441, 0.97866523), (0.12409471, 0.3466316, 0.9297565), (0.12409471, 0.3466316, 0.9297565), (0.09053187, 0.184441, 0.97866523), (0.22389963, 0.4121977, 0.8831545), (-0.983754, -0.106783405, 0.14431019), (-0.99596953, -0.034286868, -0.08288012), (-0.9637507, 0.20905967, 0.16576698), (0.7768317, -0.57160056, -0.26420677), (0.957997, -0.2859565, 0.021691369), (0.9789346, -0.20254333, -0.025753347), (-0.01143896, 0.61629575, 0.7874318), (0.07665287, 0.3765971, 0.92320037), (0.11630765, 0.11799151, 0.9861797), (-0.13540511, 0.7182786, 0.68245244), (-0.01143896, 0.61629575, 0.7874318), (-0.016314462, 0.8976061, 0.44049644), (-0.115355425, -0.09205561, 0.98904943), (0.07089685, 0.021663697, 0.99724835), (0.12388652, -0.18089667, 0.97566825), (0.1616468, 0.5185643, 0.83961976), (0.27213457, 0.30032533, 0.9141922), (0.021480436, 0.44137764, 0.89706427), (0.17538087, -0.17119454, 0.9695019), (0.08169453, -0.16445746, 0.9829954), (-0.1420941, -0.14105362, 0.97975165), (-0.1420941, -0.14105362, 0.97975165), (0.08169453, -0.16445746, 0.9829954), (-0.12592243, -0.15547617, 0.97978085), (-0.12592243, -0.15547617, 0.97978085), (-0.01260178, -0.099135, 0.9949941), (-0.09432892, -0.024845503, 0.99523103), (0.13242446, 0.02003132, 0.9909907), (0.09053187, 0.184441, 0.97866523), (0.26670727, 0.085495986, 0.9599779), (0.33253404, 0.08836878, 0.938942), (0.13242446, 0.02003132, 0.9909907), (0.26670727, 0.085495986, 0.9599779), (0.26670727, 0.085495986, 0.9599779), (0.09053187, 0.184441, 0.97866523), (0.16875584, 0.16203745, 0.97224754), (0.9789346, -0.20254333, -0.025753347), (0.957997, -0.2859565, 0.021691369), (0.9916238, 0.05435835, 0.117163286), (-0.6929957, 0.7194179, -0.04685013), (-0.549907, 0.7612995, 0.34354806), (-0.418116, 0.90703624, -0.04964165), (-0.0027750435, 0.12141987, 0.99259734), (-0.11552037, 0.1588067, 0.9805282), (-0.15189363, -0.0077059036, 0.9883668), (0.07506453, 0.64145595, 0.76347864), (0.12527607, 0.38304296, 0.9151961), (0.0411087, 0.4981852, 0.86609566), (0.27213457, 0.30032533, 0.9141922), (0.023922712, 0.30276743, 0.95276415), (0.021480436, 0.44137764, 0.89706427), (0.021480436, 0.44137764, 0.89706427), (0.023922712, 0.30276743, 0.95276415), (-0.22639912, 0.16232789, 0.9604129), (0.0857613, 0.10257194, 0.9910217), (-0.1420941, -0.14105362, 0.97975165), (-0.22639912, 0.16232789, 0.9604129), (0.08169453, -0.16445746, 0.9829954), (0.061646953, -0.06583159, 0.9959246), (-0.12592243, -0.15547617, 0.97978085), (-0.07763297, -0.027056448, 0.99661475), (-0.16156928, -0.034379628, 0.9862623), (0.13242446, 0.02003132, 0.9909907), (-0.16156928, -0.034379628, 0.9862623), (-0.21196769, 0.04055886, 0.9764347), (0.13242446, 0.02003132, 0.9909907), (-0.21196769, 0.04055886, 0.9764347), (0.09053187, 0.184441, 0.97866523), (0.13242446, 0.02003132, 0.9909907), (0.09053187, 0.184441, 0.97866523), (-0.0047080936, 0.38096893, 0.9245758), (0.22389963, 0.4121977, 0.8831545), (0.94052345, 0.28376985, -0.18678981), (0.99257517, 0.06272157, 0.10421382), (0.93103486, 0.3613243, 0.0511762), (-0.029292079, -0.3112522, 0.9498758), (0.022580879, -0.12428294, 0.9919899), (0.26364633, -0.4508326, 0.852784), (-0.13540511, 0.7182786, 0.68245244), (0.07665287, 0.3765971, 0.92320037), (-0.01143896, 0.61629575, 0.7874318), (0.96243465, -0.26563317, -0.05620066), (0.41798517, -0.7731486, -0.47700074), (0.31189576, -0.6687293, -0.67492384), (0.48523468, -0.87437403, 0.0041459464), (0.39536312, -0.91615075, -0.06599754), (0.50237906, -0.73099184, 0.46180746), (0.023922712, 0.30276743, 0.95276415), (0.0857613, 0.10257194, 0.9910217), (-0.22639912, 0.16232789, 0.9604129), (-0.12592243, -0.15547617, 0.97978085), (0.14550443, -0.112756245, 0.9829113), (-0.01260178, -0.099135, 0.9949941), (-0.01260178, -0.099135, 0.9949941), (-0.07763297, -0.027056448, 0.99661475), (-0.09432892, -0.024845503, 0.99523103), (-0.01260178, -0.099135, 0.9949941), (-0.16156928, -0.034379628, 0.9862623), (-0.07763297, -0.027056448, 0.99661475), (-0.2275251, 0.18850455, 0.9553525), (0.09053187, 0.184441, 0.97866523), (-0.21196769, 0.04055886, 0.9764347), (-0.2275251, 0.18850455, 0.9553525), (-0.0047080936, 0.38096893, 0.9245758), (0.09053187, 0.184441, 0.97866523), (-0.0047080936, 0.38096893, 0.9245758), (0.16714397, 0.41086304, 0.8962446), (0.22389963, 0.4121977, 0.8831545), (0.16714397, 0.41086304, 0.8962446), (0.024284534, 0.5389778, 0.8419699), (0.22389963, 0.4121977, 0.8831545), (0.22389963, 0.4121977, 0.8831545), (0.024284534, 0.5389778, 0.8419699), (0.072863065, 0.60180104, 0.79531527), (0.072863065, 0.60180104, 0.79531527), (0.0783183, 0.57958287, 0.8111411), (0.023842763, 0.63369995, 0.77321136), (-0.01406842, 0.64227736, 0.76634324), (-0.10124068, 0.7978244, 0.5943287), (-0.064630546, 0.71945006, 0.69153064), (-0.38022053, 0.9175495, 0.11634087), (-0.4276711, 0.90195936, -0.05972252), (-0.5965688, 0.7911226, 0.1350209), (-0.09187397, -0.33620593, 0.9372965), (0.12388652, -0.18089667, 0.97566825), (0.0773809, -0.29087433, 0.95362693), (0.5899562, -0.0015790844, 0.80743366), (0.23641334, 0.45409614, 0.8590142), (0.14828181, 0.43243113, 0.88939065), (-0.045587193, 0.6975793, 0.7150558), (-0.19790466, 0.6978808, 0.6883285), (0.23641334, 0.45409614, 0.8590142), (-0.015224104, 0.57553846, 0.8176329), (0.024985341, 0.7037727, 0.7099856), (-0.101115264, 0.6720564, 0.7335639), (-0.9961066, -0.06624365, 0.058166064), (-0.98484534, 0.023799932, -0.17179422), (-0.9863752, -0.14707237, -0.073714055), (-0.27928203, 0.3613755, 0.8896119), (0.023922712, 0.30276743, 0.95276415), (0.27213457, 0.30032533, 0.9141922), (0.0857613, 0.10257194, 0.9910217), (0.17538087, -0.17119454, 0.9695019), (-0.1420941, -0.14105362, 0.97975165), (0.061646953, -0.06583159, 0.9959246), (0.14550443, -0.112756245, 0.9829113), (-0.12592243, -0.15547617, 0.97978085), (0.93007684, 0.10129267, -0.35312444), (0.99068445, -0.04349092, -0.12904574), (0.9213224, -0.12969649, -0.36652952), (0.5899562, -0.0015790844, 0.80743366), (0.582398, 0.12978964, 0.8024757), (0.23641334, 0.45409614, 0.8590142), (0.08169453, -0.16445746, 0.9829954), (0.2648737, -0.11393472, 0.9575286), (0.061646953, -0.06583159, 0.9959246), (-0.01260178, -0.099135, 0.9949941), (0.2217309, -0.14085963, 0.9648803), (-0.16156928, -0.034379628, 0.9862623), (0.2217309, -0.14085963, 0.9648803), (0.12276697, 0.0060658967, 0.9924169), (-0.16156928, -0.034379628, 0.9862623), (-0.16156928, -0.034379628, 0.9862623), (0.12276697, 0.0060658967, 0.9924169), (-0.21196769, 0.04055886, 0.9764347), (0.12276697, 0.0060658967, 0.9924169), (-0.024168864, -0.13244413, 0.99089587), (-0.21196769, 0.04055886, 0.9764347), (-0.024168864, -0.13244413, 0.99089587), (-0.14320709, -0.07245618, 0.98703694), (-0.21196769, 0.04055886, 0.9764347), (-0.14320709, -0.07245618, 0.98703694), (-0.2275251, 0.18850455, 0.9553525), (-0.21196769, 0.04055886, 0.9764347), (-0.1969143, 0.40613142, 0.8923463), (-0.0047080936, 0.38096893, 0.9245758), (-0.2275251, 0.18850455, 0.9553525), (-0.1969143, 0.40613142, 0.8923463), (-0.14044599, 0.48925024, 0.8607608), (-0.0047080936, 0.38096893, 0.9245758), (-0.14044599, 0.48925024, 0.8607608), (0.16714397, 0.41086304, 0.8962446), (-0.0047080936, 0.38096893, 0.9245758), (-0.14044599, 0.48925024, 0.8607608), (0.024284534, 0.5389778, 0.8419699), (0.16714397, 0.41086304, 0.8962446), (0.024284534, 0.5389778, 0.8419699), (0.0783183, 0.57958287, 0.8111411), (0.072863065, 0.60180104, 0.79531527), (0.12388652, -0.18089667, 0.97566825), (0.30190864, -0.14705426, 0.94192684), (0.0773809, -0.29087433, 0.95362693), (0.931049, 0.36383775, 0.027747536), (0.9115882, 0.39404604, 0.11719492), (0.9426915, 0.3039397, 0.13767104), (0.4877713, -0.78026503, -0.39149147), (0.35887057, -0.9229695, -0.1390655), (0.69222724, -0.6828688, -0.2334772), (-0.90972215, 0.2802738, -0.3063531), (-0.8585084, 0.36451405, -0.3606837), (-0.8739215, 0.398463, -0.27836725), (-0.39122057, 0.5511939, 0.73697466), (0.049126975, 0.43318087, 0.8999671), (0.0857613, 0.10257194, 0.9910217), (0.3315238, -0.08313489, 0.9397769), (0.17538087, -0.17119454, 0.9695019), (0.0857613, 0.10257194, 0.9910217), (0.33356452, -0.19506975, 0.9223246), (0.08169453, -0.16445746, 0.9829954), (0.17538087, -0.17119454, 0.9695019), (0.33356452, -0.19506975, 0.9223246), (0.2648737, -0.11393472, 0.9575286), (0.08169453, -0.16445746, 0.9829954), (0.2217309, -0.14085963, 0.9648803), (-0.01260178, -0.099135, 0.9949941), (0.14550443, -0.112756245, 0.9829113), (0.17588225, -0.13651264, 0.9748998), (0.2217309, -0.14085963, 0.9648803), (0.14550443, -0.112756245, 0.9829113), (-0.17278215, 0.5358478, 0.82644635), (0.024284534, 0.5389778, 0.8419699), (-0.14044599, 0.48925024, 0.8607608), (-0.01406842, 0.64227736, 0.76634324), (0.023842763, 0.63369995, 0.77321136), (0.0783183, 0.57958287, 0.8111411), (0.12920095, -0.19085027, 0.9730792), (-0.057124197, -0.23572528, 0.97013944), (-0.16236158, 0.034183253, 0.98613906), (0.23923798, 0.26883996, 0.9330006), (0.12527607, 0.38304296, 0.9151961), (0.28619885, 0.2774036, 0.9171355), (0.30190864, -0.14705426, 0.94192684), (-0.014484897, -0.020984115, 0.9996749), (0.0773809, -0.29087433, 0.95362693), (0.7686523, -0.2125843, 0.60330886), (0.582398, 0.12978964, 0.8024757), (0.5899562, -0.0015790844, 0.80743366), (0.0857613, 0.10257194, 0.9910217), (0.023922712, 0.30276743, 0.95276415), (-0.39122057, 0.5511939, 0.73697466), (0.049126975, 0.43318087, 0.8999671), (0.3315238, -0.08313489, 0.9397769), (0.0857613, 0.10257194, 0.9910217), (0.2648737, -0.11393472, 0.9575286), (0.14550443, -0.112756245, 0.9829113), (0.061646953, -0.06583159, 0.9959246), (0.3569377, -0.1414356, 0.9233588), (0.12276697, 0.0060658967, 0.9924169), (0.2217309, -0.14085963, 0.9648803), (0.12276697, 0.0060658967, 0.9924169), (-0.013214388, -0.21807551, 0.97584254), (-0.024168864, -0.13244413, 0.99089587), (-0.024168864, -0.13244413, 0.99089587), (-0.15051389, -0.25452447, 0.9552815), (-0.14320709, -0.07245618, 0.98703694), (-0.19460179, 0.4757022, 0.85780966), (-0.14044599, 0.48925024, 0.8607608), (-0.1969143, 0.40613142, 0.8923463), (0.0783183, 0.57958287, 0.8111411), (0.024284534, 0.5389778, 0.8419699), (-0.01406842, 0.64227736, 0.76634324), (-0.18833666, -0.27567136, 0.9426211), (0.0773809, -0.29087433, 0.95362693), (-0.014484897, -0.020984115, 0.9996749), (0.40932652, -0.5690106, 0.71321714), (0.30929923, -0.40474993, 0.8605298), (0.16122013, -0.6891975, 0.7064099), (0.582398, 0.12978964, 0.8024757), (0.6037907, 0.038052984, 0.79623413), (-0.045587193, 0.6975793, 0.7150558), (0.23641334, 0.45409614, 0.8590142), (0.582398, 0.12978964, 0.8024757), (-0.045587193, 0.6975793, 0.7150558), (-0.18735828, -0.10297738, 0.97687894), (-0.013981743, 0.043335028, 0.99896276), (-0.41622862, -0.25352228, 0.8732011), (0.6037907, 0.038052984, 0.79623413), (0.7629182, -0.26861337, 0.5880498), (0.6687691, -0.012982731, 0.7433569), (0.7303506, 0.6483591, 0.21498479), (0.46760896, 0.8685303, 0.16430795), (0.7595671, 0.6272571, 0.17206532), (0.3315238, -0.08313489, 0.9397769), (0.33356452, -0.19506975, 0.9223246), (0.17538087, -0.17119454, 0.9695019), (0.33356452, -0.19506975, 0.9223246), (0.36234456, -0.15865895, 0.91844094), (0.2648737, -0.11393472, 0.9575286), (0.22480842, -0.16182332, 0.9608717), (0.2217309, -0.14085963, 0.9648803), (0.17588225, -0.13651264, 0.9748998), (0.22480842, -0.16182332, 0.9608717), (0.3569377, -0.1414356, 0.9233588), (0.2217309, -0.14085963, 0.9648803), (0.3569377, -0.1414356, 0.9233588), (-0.013214388, -0.21807551, 0.97584254), (0.12276697, 0.0060658967, 0.9924169), (-0.013214388, -0.21807551, 0.97584254), (-0.15051389, -0.25452447, 0.9552815), (-0.024168864, -0.13244413, 0.99089587), (-0.0812308, 0.6370952, 0.7664927), (0.0813317, 0.65248305, 0.75342625), (-0.056167908, 0.79164624, 0.6083925), (0.21989535, 0.46821377, 0.8558166), (0.15229794, 0.37084228, 0.9161231), (-0.1009697, 0.5361198, 0.83808154), (0.22480842, -0.16182332, 0.9608717), (-0.013214388, -0.21807551, 0.97584254), (0.3569377, -0.1414356, 0.9233588), (-0.15051389, -0.25452447, 0.9552815), (-0.05140289, -0.16327916, 0.9852399), (-0.14320709, -0.07245618, 0.98703694), (-0.19460179, 0.4757022, 0.85780966), (-0.17278215, 0.5358478, 0.82644635), (-0.14044599, 0.48925024, 0.8607608), (-0.063274145, 0.68634343, 0.72451985), (-0.01406842, 0.64227736, 0.76634324), (0.024284534, 0.5389778, 0.8419699), (0.059466913, 0.7326687, 0.6779824), (0.024985341, 0.7037727, 0.7099856), (0.084180735, 0.60850376, 0.7890733), (0.1354116, 0.78960186, 0.59849197), (0.099326484, 0.64293486, 0.7594531), (-0.13540511, 0.7182786, 0.68245244), (0.21685927, 0.23731945, 0.9469168), (0.062324222, -0.444162, 0.8937761), (-0.036610823, -0.49364787, 0.8688909), (0.023954298, 0.34886315, 0.9368675), (-0.104688354, 0.5237872, 0.8453918), (-0.07152516, 0.39251682, 0.91695946), (-0.011004529, -0.9110386, -0.41217405), (0.45945284, -0.78982055, -0.4063086), (0.6264436, -0.7512508, -0.20782378), (0.25459546, 0.5935051, 0.76350033), (0.21989535, 0.46821377, 0.8558166), (0.099326484, 0.64293486, 0.7594531), (-0.8382794, -0.54524046, -0.00071699696), (-0.92169434, -0.38049635, -0.07551261), (-0.8632082, -0.45999706, -0.20802511), (0.016667308, 0.9787065, 0.20458676), (-0.090055265, 0.9777874, 0.18926695), (-0.0019311432, 0.9339178, 0.3574826), (-0.090055265, 0.9777874, 0.18926695), (-0.11742587, 0.9185192, 0.37753624), (-0.0019311432, 0.9339178, 0.3574826), (0.3315238, -0.08313489, 0.9397769), (0.049126975, 0.43318087, 0.8999671), (0.1224128, 0.07011393, 0.9899996), (0.2864103, -0.18956216, 0.9391674), (0.33356452, -0.19506975, 0.9223246), (0.3315238, -0.08313489, 0.9397769), (0.36234456, -0.15865895, 0.91844094), (0.17588225, -0.13651264, 0.9748998), (0.2648737, -0.11393472, 0.9575286), (0.17588225, -0.13651264, 0.9748998), (0.14550443, -0.112756245, 0.9829113), (0.2648737, -0.11393472, 0.9575286), (-0.05140289, -0.16327916, 0.9852399), (-0.032009155, 0.027427103, 0.99911124), (-0.14320709, -0.07245618, 0.98703694), (-0.14320709, -0.07245618, 0.98703694), (-0.032009155, 0.027427103, 0.99911124), (-0.2275251, 0.18850455, 0.9553525), (-0.025020812, 0.24494162, 0.9692149), (-0.1969143, 0.40613142, 0.8923463), (-0.2275251, 0.18850455, 0.9553525), (-0.46889415, -0.83141786, -0.29813167), (-0.9651873, -0.0794768, -0.2491925), (-0.7099642, -0.5525628, -0.43660668), (-0.9866532, 0.1628346, 0.00060730765), (-0.96352214, 0.2658698, 0.030630894), (-0.99596953, -0.034286868, -0.08288012), (0.2864103, -0.18956216, 0.9391674), (0.36234456, -0.15865895, 0.91844094), (0.33356452, -0.19506975, 0.9223246), (-0.4902296, -0.21730073, 0.84407073), (0.22480842, -0.16182332, 0.9608717), (0.17588225, -0.13651264, 0.9748998), (-0.4902296, -0.21730073, 0.84407073), (-0.013214388, -0.21807551, 0.97584254), (0.22480842, -0.16182332, 0.9608717), (-0.032009155, 0.027427103, 0.99911124), (-0.025020812, 0.24494162, 0.9692149), (-0.2275251, 0.18850455, 0.9553525), (-0.025020812, 0.24494162, 0.9692149), (-0.1314335, 0.40652314, 0.90413725), (-0.1969143, 0.40613142, 0.8923463), (-0.1314335, 0.40652314, 0.90413725), (-0.19460179, 0.4757022, 0.85780966), (-0.1969143, 0.40613142, 0.8923463), (0.3186479, 0.3910822, 0.863434), (0.048624907, 0.63666934, 0.7696024), (0.12510486, 0.30186772, 0.94510555), (0.10217742, 0.23066665, 0.96765316), (0.16176148, 0.37942222, 0.91097313), (0.041143876, 0.4090212, 0.91159695), (0.69222724, -0.6828688, -0.2334772), (0.6900427, -0.62094134, -0.37185043), (0.4877713, -0.78026503, -0.39149147), (-0.91879785, -0.39120173, -0.05264702), (-0.9863752, -0.14707237, -0.073714055), (-0.956032, -0.1533356, -0.24998195), (0.1224128, 0.07011393, 0.9899996), (0.2864103, -0.18956216, 0.9391674), (0.3315238, -0.08313489, 0.9397769), (0.2864103, -0.18956216, 0.9391674), (-0.046795845, -0.24273516, 0.9689632), (0.36234456, -0.15865895, 0.91844094), (-0.046795845, -0.24273516, 0.9689632), (0.17588225, -0.13651264, 0.9748998), (0.36234456, -0.15865895, 0.91844094), (-0.046795845, -0.24273516, 0.9689632), (-0.45124415, -0.28878552, 0.84438235), (0.17588225, -0.13651264, 0.9748998), (0.17588225, -0.13651264, 0.9748998), (-0.45124415, -0.28878552, 0.84438235), (-0.4902296, -0.21730073, 0.84407073), (-0.4902296, -0.21730073, 0.84407073), (-0.6873727, -0.10375703, 0.7188556), (-0.013214388, -0.21807551, 0.97584254), (-0.6873727, -0.10375703, 0.7188556), (-0.3293028, -0.011708099, 0.94415176), (-0.15051389, -0.25452447, 0.9552815), (-0.013214388, -0.21807551, 0.97584254), (-0.6873727, -0.10375703, 0.7188556), (-0.15051389, -0.25452447, 0.9552815), (-0.15051389, -0.25452447, 0.9552815), (-0.3293028, -0.011708099, 0.94415176), (-0.05140289, -0.16327916, 0.9852399), (-0.025020812, 0.24494162, 0.9692149), (0.01534161, 0.21328765, 0.97686905), (-0.1314335, 0.40652314, 0.90413725), (-0.1314335, 0.40652314, 0.90413725), (-0.17278215, 0.5358478, 0.82644635), (-0.19460179, 0.4757022, 0.85780966), (-0.063274145, 0.68634343, 0.72451985), (0.024284534, 0.5389778, 0.8419699), (-0.17278215, 0.5358478, 0.82644635), (0.9918953, 0.1111465, 0.06156539), (0.9765633, 0.20900229, 0.05140108), (0.9786324, 0.17224573, 0.112293996), (0.022580879, -0.12428294, 0.9919899), (0.62266505, -0.3998455, 0.6726157), (0.26364633, -0.4508326, 0.852784), (0.30190864, -0.14705426, 0.94192684), (0.2565452, -0.020014055, 0.966325), (0.22414061, 0.095365204, 0.9698796), (0.0039564003, 0.11590399, 0.9932525), (0.033083975, 0.1578401, 0.98691034), (0.10722754, 0.10266788, 0.98891944), (0.28071946, 0.44377977, 0.8510324), (0.6687691, -0.012982731, 0.7433569), (0.17310427, 0.63279414, 0.7547227), (-0.8658344, -0.21487446, 0.4518403), (-0.8747387, 0.05915298, 0.48097104), (-0.6873727, -0.10375703, 0.7188556), (-0.05140289, -0.16327916, 0.9852399), (-0.3293028, -0.011708099, 0.94415176), (-0.032009155, 0.027427103, 0.99911124), (0.93007684, 0.10129267, -0.35312444), (0.8029297, 0.13806711, -0.5798633), (0.8332964, 0.4042927, -0.37704715), (0.22414061, 0.095365204, 0.9698796), (0.2565452, -0.020014055, 0.966325), (0.08757645, 0.104537815, 0.9906574), (-0.015166537, 0.65454024, 0.75587493), (0.07506453, 0.64145595, 0.76347864), (-0.1493062, 0.7053834, 0.6929228), (0.099326484, 0.64293486, 0.7594531), (0.21989535, 0.46821377, 0.8558166), (-0.1009697, 0.5361198, 0.83808154), (0.12527607, 0.38304296, 0.9151961), (0.23923798, 0.26883996, 0.9330006), (0.0411087, 0.4981852, 0.86609566), (-0.89814866, -0.031243127, -0.43858042), (-0.8590629, 0.117870525, -0.49811387), (-0.90972215, 0.2802738, -0.3063531), (-0.9158193, -0.31286165, -0.25177896), (-0.67896193, -0.7316011, -0.061403584), (-0.781744, -0.58333945, -0.22043467), (0.25261262, 0.96656436, 0.044048704), (0.13255553, 0.99081033, -0.026908878), (0.060451977, 0.99370325, 0.09433652), (-0.37500748, -0.15992728, 0.9131225), (0.2864103, -0.18956216, 0.9391674), (0.1224128, 0.07011393, 0.9899996), (-0.4604737, 0.17007515, 0.8712281), (-0.37500748, -0.15992728, 0.9131225), (0.1224128, 0.07011393, 0.9899996), (-0.37500748, -0.15992728, 0.9131225), (-0.046795845, -0.24273516, 0.9689632), (0.2864103, -0.18956216, 0.9391674), (0.27325293, 0.9196915, -0.2819581), (0.32994097, 0.9398471, -0.08846733), (0.45455205, 0.8788353, -0.14502047), (-0.2818992, 0.95858043, 0.040699583), (-0.38022053, 0.9175495, 0.11634087), (-0.309174, 0.9253757, 0.21929698), (-0.032009155, 0.027427103, 0.99911124), (0.01534161, 0.21328765, 0.97686905), (-0.025020812, 0.24494162, 0.9692149), (0.87425536, 0.4388207, -0.20763896), (0.83672124, 0.41857317, -0.35312063), (0.80688834, 0.4972827, -0.31881186), (0.20621167, 0.8043316, 0.55724996), (0.059466913, 0.7326687, 0.6779824), (0.18095034, 0.6055266, 0.77498037), (0.17434353, -0.03654722, 0.9840064), (0.15873082, -0.089554355, 0.98325205), (0.12388652, -0.18089667, 0.97566825), (-0.0027750435, 0.12141987, 0.99259734), (0.023954298, 0.34886315, 0.9368675), (-0.07152516, 0.39251682, 0.91695946), (-0.14805838, -0.5870909, -0.7958662), (-0.3294147, -0.43125603, -0.83994293), (-0.30536386, -0.6192945, -0.7233444), (-0.31588024, 0.9009044, 0.29764208), (-0.29553196, 0.9381323, 0.18046756), (-0.32039356, 0.88322234, 0.34244162), (0.9299018, 0.268288, 0.25160345), (0.9917053, 0.1263945, 0.0233474), (0.9842109, 0.07599091, 0.15985686), (0.54656434, -0.80144656, -0.24279799), (0.7175917, -0.6460656, -0.26011795), (0.8341831, -0.50516784, -0.22123319), (-0.325513, 0.8379178, 0.43810382), (-0.5168071, 0.71113396, 0.47665372), (-0.3098367, 0.73103714, 0.6079358), (-0.37500748, -0.15992728, 0.9131225), (-0.6907138, -0.25312364, 0.6773795), (-0.046795845, -0.24273516, 0.9689632), (-0.046795845, -0.24273516, 0.9689632), (-0.6907138, -0.25312364, 0.6773795), (-0.45124415, -0.28878552, 0.84438235), (-0.17790091, 0.18728532, 0.9660618), (-0.1314335, 0.40652314, 0.90413725), (0.01534161, 0.21328765, 0.97686905), (-0.26450554, 0.5710066, 0.77716684), (-0.17278215, 0.5358478, 0.82644635), (-0.1314335, 0.40652314, 0.90413725), (-0.22217962, 0.42612198, 0.8769585), (-0.26450554, 0.5710066, 0.77716684), (-0.1314335, 0.40652314, 0.90413725), (-0.26450554, 0.5710066, 0.77716684), (-0.063274145, 0.68634343, 0.72451985), (-0.17278215, 0.5358478, 0.82644635), (-0.1303001, 0.72003734, -0.6815922), (-0.0812246, 0.6300587, -0.77228785), (-0.14442262, 0.6212478, -0.7701904), (0.2565452, -0.020014055, 0.966325), (0.09307465, 0.0054891855, 0.995644), (0.08757645, 0.104537815, 0.9906574), (0.24769956, -0.17423761, -0.9530405), (0.12762953, 0.0902003, -0.9877118), (-0.045954794, -0.016335793, -0.99880993), (0.34748375, 0.4804332, 0.8052571), (0.21989535, 0.46821377, 0.8558166), (0.25459546, 0.5935051, 0.76350033), (-0.11989767, -0.5240033, 0.84323484), (0.13927187, -0.4960245, 0.85706663), (0.12920095, -0.19085027, 0.9730792), (0.95632046, -0.2823347, -0.075751096), (0.93352866, -0.33231995, -0.13449113), (0.8210526, -0.54693574, -0.16350538), (-0.77534294, -0.033574942, 0.63064724), (-0.37500748, -0.15992728, 0.9131225), (-0.4604737, 0.17007515, 0.8712281), (-0.80026984, -0.14277494, 0.5823946), (-0.8229445, -0.2725443, 0.49847955), (-0.6907138, -0.25312364, 0.6773795), (-0.9407633, -0.011960006, 0.33885306), (-0.9940572, -0.10254405, 0.036538824), (-0.88255644, -0.30992982, 0.35360643), (0.059466913, 0.7326687, 0.6779824), (-0.023574412, 0.83847994, 0.54442215), (0.024985341, 0.7037727, 0.7099856), (0.26782945, 0.0053843213, 0.9634513), (0.63005215, 0.06056474, 0.7741875), (0.73160446, -0.32147673, 0.60117185), (-0.43541285, 0.37637308, 0.8177769), (-0.032009155, 0.027427103, 0.99911124), (-0.3293028, -0.011708099, 0.94415176), (-0.032009155, 0.027427103, 0.99911124), (-0.43541285, 0.37637308, 0.8177769), (0.01534161, 0.21328765, 0.97686905), (-0.20547147, 0.46045214, 0.863577), (-0.26450554, 0.5710066, 0.77716684), (-0.22217962, 0.42612198, 0.8769585), (-0.25215343, 0.6596464, 0.708015), (-0.063274145, 0.68634343, 0.72451985), (-0.26450554, 0.5710066, 0.77716684), (-0.25215343, 0.6596464, 0.708015), (-0.20693623, 0.76447463, 0.6105374), (-0.063274145, 0.68634343, 0.72451985), (0.15229794, 0.37084228, 0.9161231), (0.22976145, 0.24329102, 0.94234765), (0.3472462, 0.41306263, 0.84190226), (0.17491105, 0.19325906, 0.965431), (0.2670099, 0.19656658, 0.94343376), (0.19276795, 0.31514922, 0.9292586), (0.1054876, -0.21303132, 0.9713341), (0.18310174, -0.24384306, 0.952373), (0.20746073, -0.2056236, 0.95638853), (-0.11552037, 0.1588067, 0.9805282), (-0.0027750435, 0.12141987, 0.99259734), (-0.07152516, 0.39251682, 0.91695946), (0.28562865, 0.2665702, 0.92051977), (0.22976145, 0.24329102, 0.94234765), (0.15229794, 0.37084228, 0.9161231), (-0.13304597, 0.8137738, 0.56574816), (-0.325513, 0.8379178, 0.43810382), (-0.3098367, 0.73103714, 0.6079358), (-0.23270221, -0.11800899, -0.9653619), (-0.25729582, -0.39647165, -0.88125426), (-0.0215857, -0.57216984, -0.819851), (-0.25729582, -0.39647165, -0.88125426), (-0.10319789, -0.58678037, -0.80314326), (-0.0215857, -0.57216984, -0.819851), (0.26596016, 0.72425157, 0.63617986), (-0.09595232, 0.6099804, 0.78658575), (-0.058234498, 0.78132826, 0.6213976), (0.13180333, 0.9147989, 0.38179952), (-0.0019311432, 0.9339178, 0.3574826), (0.046126176, 0.8528811, 0.5200637), (0.32994097, 0.9398471, -0.08846733), (0.25261262, 0.96656436, 0.044048704), (0.37743863, 0.9258396, 0.019005038), (-0.36238083, 0.30236077, 0.88162243), (0.01534161, 0.21328765, 0.97686905), (-0.43541285, 0.37637308, 0.8177769), (0.01534161, 0.21328765, 0.97686905), (-0.36238083, 0.30236077, 0.88162243), (-0.17790091, 0.18728532, 0.9660618), (-0.22217962, 0.42612198, 0.8769585), (-0.1314335, 0.40652314, 0.90413725), (-0.17790091, 0.18728532, 0.9660618), (-0.25215343, 0.6596464, 0.708015), (-0.3220169, 0.68951935, 0.6487435), (-0.20693623, 0.76447463, 0.6105374), (0.23923798, 0.26883996, 0.9330006), (0.2670099, 0.19656658, 0.94343376), (0.0411087, 0.4981852, 0.86609566), (0.18310174, -0.24384306, 0.952373), (-0.057124197, -0.23572528, 0.97013944), (0.12920095, -0.19085027, 0.9730792), (0.08716038, 0.50213987, 0.86038285), (0.084180735, 0.60850376, 0.7890733), (-0.015224104, 0.57553846, 0.8176329), (0.17434353, -0.03654722, 0.9840064), (0.12388652, -0.18089667, 0.97566825), (0.07089685, 0.021663697, 0.99724835), (-0.115355425, -0.09205561, 0.98904943), (0.069934025, -0.16515385, 0.9837853), (0.07089685, 0.021663697, 0.99724835), (0.0411087, 0.4981852, 0.86609566), (0.2670099, 0.19656658, 0.94343376), (0.07665287, 0.3765971, 0.92320037), (-0.04638948, 0.6240161, 0.78003323), (-0.3098367, 0.73103714, 0.6079358), (-0.38011017, 0.50591207, 0.77431846), (-0.13304597, 0.8137738, 0.56574816), (-0.3307248, 0.8046233, 0.4931556), (-0.325513, 0.8379178, 0.43810382), (-0.3307248, 0.8046233, 0.4931556), (-0.6261619, 0.43389267, 0.6478106), (-0.325513, 0.8379178, 0.43810382), (0.27974927, 0.8973062, 0.341441), (0.48888955, 0.8121081, 0.31853953), (0.49248132, 0.830168, 0.26131052), (0.647132, 0.2797327, 0.7092037), (0.59385073, 0.17331566, 0.78568625), (0.30334, 0.5943287, 0.74482083), (-0.09868085, 0.32645795, 0.9400465), (-0.22217962, 0.42612198, 0.8769585), (-0.17790091, 0.18728532, 0.9660618), (0.99068445, -0.04349092, -0.12904574), (0.93007684, 0.10129267, -0.35312444), (0.94701487, 0.19354117, -0.25632918), (0.23170437, -0.8931248, -0.38554016), (-0.012127084, -0.7994914, -0.60055524), (0.50692546, -0.85074013, -0.13880861), (0.6687691, -0.012982731, 0.7433569), (0.7497193, -0.20978902, 0.6276221), (0.6905752, 0.02852649, 0.7226978), (0.33521402, 0.4562327, 0.82430774), (0.6905752, 0.02852649, 0.7226978), (0.0059285, 0.81032634, 0.58594877), (-0.1493062, 0.7053834, 0.6929228), (0.0411087, 0.4981852, 0.86609566), (0.07665287, 0.3765971, 0.92320037), (-0.04638948, 0.6240161, 0.78003323), (-0.38011017, 0.50591207, 0.77431846), (-0.2703541, 0.38242364, 0.8835502), (0.12760359, 0.33755198, 0.9326177), (-0.04638948, 0.6240161, 0.78003323), (-0.2703541, 0.38242364, 0.8835502), (0.0032140345, 0.8251905, 0.5648453), (-0.3098367, 0.73103714, 0.6079358), (-0.04638948, 0.6240161, 0.78003323), (0.0032140345, 0.8251905, 0.5648453), (-0.13304597, 0.8137738, 0.56574816), (-0.3098367, 0.73103714, 0.6079358), (-0.080613315, 0.22642572, 0.97068685), (-0.15882413, 0.6284913, 0.7614287), (-0.11455444, 0.5865993, 0.8017348), (0.1613725, 0.9756421, -0.14859825), (0.13255553, 0.99081033, -0.026908878), (0.32994097, 0.9398471, -0.08846733), (-0.97349536, -0.03525896, -0.22597268), (-0.9668867, 0.15470429, -0.20296964), (-0.9460484, 0.07418577, -0.31541842), (-0.95112556, 0.3084675, -0.014423577), (-0.97854805, -0.20043711, -0.047629822), (-0.9576202, 0.2513207, -0.14071745), (0.13814108, 0.8588598, 0.4932311), (0.19034062, 0.8961472, 0.40086246), (0.11040793, 0.7877665, 0.6059984), (0.78336495, 0.20648178, 0.5862633), (0.8064504, 0.36136454, 0.46803123), (0.38884154, 0.909899, 0.14451972), (-0.17790091, 0.18728532, 0.9660618), (-0.17834988, 0.32741395, 0.9278962), (-0.09868085, 0.32645795, 0.9400465), (0.3989213, -0.11630111, 0.90958), (0.22328147, -0.076789305, 0.9717246), (0.17434353, -0.03654722, 0.9840064), (-0.014484897, -0.020984115, 0.9996749), (0.22414061, 0.095365204, 0.9698796), (0.0027943084, 0.11029896, 0.9938945), (0.15873082, -0.089554355, 0.98325205), (0.2565452, -0.020014055, 0.966325), (0.30190864, -0.14705426, 0.94192684), (0.20080341, 0.9125142, 0.35636473), (0.5086808, 0.7223638, 0.46843803), (0.35264283, 0.9119024, 0.20994528), (0.93352866, -0.33231995, -0.13449113), (0.95632046, -0.2823347, -0.075751096), (0.9985195, -0.035640925, 0.04109335), (0.059466913, 0.7326687, 0.6779824), (0.046126176, 0.8528811, 0.5200637), (-0.023574412, 0.83847994, 0.54442215), (-0.9618187, 0.19691023, -0.19008182), (-0.98542255, -0.14428605, 0.090133525), (-0.96396816, -0.20500617, -0.16952217), (-0.09868085, 0.32645795, 0.9400465), (-0.20547147, 0.46045214, 0.863577), (-0.22217962, 0.42612198, 0.8769585), (-0.27584282, 0.56955904, 0.7742824), (-0.26450554, 0.5710066, 0.77716684), (-0.20547147, 0.46045214, 0.863577), (0.60114473, 0.31162354, -0.7358775), (0.47714183, 0.1923976, -0.85750735), (0.82764876, -0.24990812, -0.502537), (0.023954298, 0.34886315, 0.9368675), (0.08716038, 0.50213987, 0.86038285), (-0.015224104, 0.57553846, 0.8176329), (0.44153064, 0.2671292, 0.8565586), (0.5689974, 0.19954504, 0.79776174), (0.40194345, 0.27107918, 0.87461853), (-0.10935553, 0.41149226, 0.904829), (0.13144158, 0.42583707, 0.8952016), (0.63005215, 0.06056474, 0.7741875), (0.8960697, 0.31373283, -0.31405523), (0.60114473, 0.31162354, -0.7358775), (0.82764876, -0.24990812, -0.502537), (-0.5682979, 0.23204249, 0.7894262), (-0.6261619, 0.43389267, 0.6478106), (-0.3307248, 0.8046233, 0.4931556), (-0.6261619, 0.43389267, 0.6478106), (-0.5682979, 0.23204249, 0.7894262), (-0.7708869, -0.12024815, 0.6255188), (0.1613725, 0.9756421, -0.14859825), (0.32994097, 0.9398471, -0.08846733), (0.27325293, 0.9196915, -0.2819581), (0.13255553, 0.99081033, -0.026908878), (0.25261262, 0.96656436, 0.044048704), (0.32994097, 0.9398471, -0.08846733), (-0.07412897, -0.35409528, -0.93226683), (-0.5901023, -0.32065958, -0.7409162), (-0.52218896, -0.42145768, -0.7414122), (0.49248132, 0.830168, 0.26131052), (0.48888955, 0.8121081, 0.31853953), (0.6878133, 0.6915365, 0.2206584), (0.3029325, 0.7035765, 0.64281577), (0.3437663, 0.6905318, 0.63638866), (0.25317535, 0.57428575, 0.778523), (0.025543146, 0.26262623, 0.96455944), (-0.09868085, 0.32645795, 0.9400465), (-0.17834988, 0.32741395, 0.9278962), (0.44194674, -0.082144774, 0.8932722), (0.30709878, 0.115371935, 0.9446585), (0.12510486, 0.30186772, 0.94510555), (0.99257517, 0.06272157, 0.10421382), (0.97447985, -0.17888117, -0.1356112), (0.8318086, -0.3919076, 0.39306858), (-0.04638948, 0.6240161, 0.78003323), (0.14617077, 0.7278746, 0.6699498), (0.0032140345, 0.8251905, 0.5648453), (0.0032140345, 0.8251905, 0.5648453), (0.14617077, 0.7278746, 0.6699498), (-0.13304597, 0.8137738, 0.56574816), (-0.5682979, 0.23204249, 0.7894262), (-0.3307248, 0.8046233, 0.4931556), (-0.13304597, 0.8137738, 0.56574816), (-0.9736986, 0.2007418, -0.10776711), (-0.8734928, 0.4544141, 0.17469472), (-0.7025925, 0.69908625, -0.13282447), (-0.023574412, 0.83847994, 0.54442215), (-0.07466462, 0.77266836, 0.63040364), (0.024985341, 0.7037727, 0.7099856), (0.27325293, 0.9196915, -0.2819581), (0.45455205, 0.8788353, -0.14502047), (0.3904863, 0.8484577, -0.35726735), (-0.418116, 0.90703624, -0.04964165), (-0.38761067, 0.912261, 0.13243043), (-0.49044955, 0.84781194, -0.20167837), (0.5323394, -0.84450775, 0.058492336), (0.25655803, -0.8464801, -0.4665291), (0.48523468, -0.87437403, 0.0041459464), (0.025543146, 0.26262623, 0.96455944), (-0.028296672, 0.29320353, 0.95563126), (-0.09868085, 0.32645795, 0.9400465), (-0.028296672, 0.29320353, 0.95563126), (-0.20547147, 0.46045214, 0.863577), (-0.09868085, 0.32645795, 0.9400465), (-0.3220169, 0.68951935, 0.6487435), (-0.25215343, 0.6596464, 0.708015), (-0.26450554, 0.5710066, 0.77716684), (-0.27584282, 0.56955904, 0.7742824), (-0.3220169, 0.68951935, 0.6487435), (-0.26450554, 0.5710066, 0.77716684), (-0.30950058, 0.20240676, -0.92910755), (-0.5906848, 0.41788256, -0.690265), (-0.186059, 0.34451467, -0.92015857), (-0.015224104, 0.57553846, 0.8176329), (0.084180735, 0.60850376, 0.7890733), (0.024985341, 0.7037727, 0.7099856), (0.22414061, 0.095365204, 0.9698796), (-0.014484897, -0.020984115, 0.9996749), (0.30190864, -0.14705426, 0.94192684), (0.16608538, 0.027675416, 0.9857229), (0.28573522, 0.03348485, 0.95772344), (0.3292842, -0.021435365, 0.94398755), (0.25459546, 0.5935051, 0.76350033), (0.099326484, 0.64293486, 0.7594531), (0.1354116, 0.78960186, 0.59849197), (-0.04638948, 0.6240161, 0.78003323), (0.26540065, 0.50993603, 0.8182468), (0.14617077, 0.7278746, 0.6699498), (0.14617077, 0.7278746, 0.6699498), (-0.21504526, 0.24936065, 0.9442324), (-0.13304597, 0.8137738, 0.56574816), (-0.21504526, 0.24936065, 0.9442324), (-0.5682979, 0.23204249, 0.7894262), (-0.13304597, 0.8137738, 0.56574816), (-0.5682979, 0.23204249, 0.7894262), (-0.49719745, -0.37221593, 0.783741), (-0.7708869, -0.12024815, 0.6255188), (-0.23840603, 0.9710963, -0.011599948), (-0.070745155, 0.9956527, -0.060588934), (-0.29553196, 0.9381323, 0.18046756), (0.25261262, 0.96656436, 0.044048704), (0.060451977, 0.99370325, 0.09433652), (0.18241073, 0.9627433, 0.19962882), (-0.19740334, -0.64745516, -0.7360935), (0.2776778, -0.906496, -0.31805658), (0.350484, -0.7758478, -0.5246153), (-0.5466911, 0.02180643, 0.8370504), (-0.41132888, -0.2704142, 0.87045085), (-0.2808472, 0.018064996, 0.95958245), (0.048624907, 0.63666934, 0.7696024), (-0.09595232, 0.6099804, 0.78658575), (-0.11695605, 0.4948351, 0.8610804), (0.023954298, 0.34886315, 0.9368675), (-0.015224104, 0.57553846, 0.8176329), (-0.104688354, 0.5237872, 0.8453918), (-0.18833666, -0.27567136, 0.9426211), (-0.014484897, -0.020984115, 0.9996749), (-0.24971263, -0.09057612, 0.9640745), (0.28562865, 0.2665702, 0.92051977), (0.21989535, 0.46821377, 0.8558166), (0.5295451, 0.34683037, 0.7741387), (0.07371192, 0.98138446, 0.17734447), (0.33993483, 0.93633366, 0.08788439), (0.46760896, 0.8685303, 0.16430795), (-0.2808472, 0.018064996, 0.95958245), (-0.09750974, 0.17837381, 0.9791193), (-0.4187366, 0.323362, 0.84858507), (0.13180333, 0.9147989, 0.38179952), (0.046126176, 0.8528811, 0.5200637), (0.20621167, 0.8043316, 0.55724996), (-0.11570207, 0.5121285, 0.8510802), (-0.028296672, 0.29320353, 0.95563126), (0.025543146, 0.26262623, 0.96455944), (-0.26456767, 0.5533583, 0.78980917), (-0.27584282, 0.56955904, 0.7742824), (-0.20547147, 0.46045214, 0.863577), (-0.26456767, 0.5533583, 0.78980917), (-0.3220169, 0.68951935, 0.6487435), (-0.27584282, 0.56955904, 0.7742824), (0.6896235, -0.1462627, -0.7092437), (0.6522554, -0.18406336, -0.73531187), (0.5829381, 0.000048025166, -0.8125166), (0.041143876, 0.4090212, 0.91159695), (0.0813317, 0.65248305, 0.75342625), (-0.0812308, 0.6370952, 0.7664927), (0.3292842, -0.021435365, 0.94398755), (0.2756541, -0.074428305, 0.95837116), (0.2565452, -0.020014055, 0.966325), (-0.61686933, 0.7563009, -0.21790126), (-0.59798235, 0.801431, 0.011207629), (-0.41684034, 0.85262483, 0.31507948), (-0.21504526, 0.24936065, 0.9442324), (-0.49719745, -0.37221593, 0.783741), (-0.5682979, 0.23204249, 0.7894262), (0.060451977, 0.99370325, 0.09433652), (0.016667308, 0.9787065, 0.20458676), (0.18241073, 0.9627433, 0.19962882), (0.016667308, 0.9787065, 0.20458676), (-0.0019311432, 0.9339178, 0.3574826), (0.13180333, 0.9147989, 0.38179952), (-0.19418201, -0.25764024, 0.9465278), (0.09272371, -0.06117828, 0.99381065), (-0.2808472, 0.018064996, 0.95958245), (-0.41132888, -0.2704142, 0.87045085), (-0.19418201, -0.25764024, 0.9465278), (-0.2808472, 0.018064996, 0.95958245), (0.09272371, -0.06117828, 0.99381065), (-0.09750974, 0.17837381, 0.9791193), (-0.2808472, 0.018064996, 0.95958245), (0.32994097, 0.9398471, -0.08846733), (0.37743863, 0.9258396, 0.019005038), (0.46057546, 0.88716006, -0.028589655), (0.90839314, -0.0503038, -0.4150799), (0.88654864, -0.10568019, -0.45040348), (0.9604763, 0.03142416, -0.27658242), (0.07506453, 0.64145595, 0.76347864), (0.3797876, 0.58644396, 0.7154333), (0.31702483, 0.522555, 0.7914742), (0.3057944, 0.15064518, 0.94010407), (0.13161509, 0.20264517, 0.97036713), (0.2756541, -0.074428305, 0.95837116), (0.3292842, -0.021435365, 0.94398755), (0.2565452, -0.020014055, 0.966325), (0.16608538, 0.027675416, 0.9857229), (-0.49719745, -0.37221593, 0.783741), (-0.3958922, -0.36332467, 0.84336495), (-0.6891477, -0.20573714, 0.69480044), (-0.41712153, -0.2895944, 0.86147827), (-0.059535734, -0.24713953, 0.96714926), (-0.19418201, -0.25764024, 0.9465278), (-0.23458013, 0.4096515, 0.8815655), (-0.4187366, 0.323362, 0.84858507), (-0.09750974, 0.17837381, 0.9791193), (-0.23458013, 0.4096515, 0.8815655), (-0.41529274, 0.5222374, 0.74484897), (-0.4187366, 0.323362, 0.84858507), (0.32449275, 0.8816685, 0.3425861), (0.18241073, 0.9627433, 0.19962882), (0.13180333, 0.9147989, 0.38179952), (-0.0030211906, -0.9924018, 0.123002425), (-0.06527238, -0.8647322, 0.4979736), (0.0017964055, -0.99373937, 0.1117092), (-0.1593235, 0.29106766, 0.9433428), (-0.028296672, 0.29320353, 0.95563126), (-0.080613315, 0.22642572, 0.97068685), (-0.1593235, 0.29106766, 0.9433428), (-0.20547147, 0.46045214, 0.863577), (-0.028296672, 0.29320353, 0.95563126), (-0.2515521, 0.636077, 0.7294707), (-0.3220169, 0.68951935, 0.6487435), (-0.26456767, 0.5533583, 0.78980917), (-0.2515521, 0.636077, 0.7294707), (-0.32711035, 0.8158708, 0.47681615), (-0.3220169, 0.68951935, 0.6487435), (0.18310174, -0.24384306, 0.952373), (0.10212472, -0.44229057, 0.8910385), (-0.057124197, -0.23572528, 0.97013944), (0.10752623, -0.11405444, 0.9876385), (-0.1487316, 0.1672607, 0.9746295), (-0.14589304, -0.035335813, 0.98866916), (0.27950996, -0.040275995, 0.95929766), (0.07089685, 0.021663697, 0.99724835), (0.069934025, -0.16515385, 0.9837853), (0.17015596, 0.044459715, 0.9844137), (0.062324222, -0.444162, 0.8937761), (0.21685927, 0.23731945, 0.9469168), (-0.03136234, 0.06758903, 0.9972202), (-0.49719745, -0.37221593, 0.783741), (-0.21504526, 0.24936065, 0.9442324), (0.14617077, 0.7278746, 0.6699498), (-0.03136234, 0.06758903, 0.9972202), (-0.21504526, 0.24936065, 0.9442324), (-0.46643513, -0.2382681, 0.85186076), (-0.6891477, -0.20573714, 0.69480044), (-0.3958922, -0.36332467, 0.84336495), (-0.3958922, -0.36332467, 0.84336495), (-0.29223943, -0.3740379, 0.88016576), (-0.46643513, -0.2382681, 0.85186076), (-0.249804, -0.14131166, 0.9579295), (-0.059535734, -0.24713953, 0.96714926), (-0.41712153, -0.2895944, 0.86147827), (-0.059535734, -0.24713953, 0.96714926), (-0.16330387, -0.20224595, 0.9656233), (-0.19418201, -0.25764024, 0.9465278), (-0.16330387, -0.20224595, 0.9656233), (-0.006069032, -0.051035285, 0.99867845), (-0.19418201, -0.25764024, 0.9465278), (-0.006069032, -0.051035285, 0.99867845), (0.09272371, -0.06117828, 0.99381065), (-0.19418201, -0.25764024, 0.9465278), (-0.006069032, -0.051035285, 0.99867845), (-0.09750974, 0.17837381, 0.9791193), (0.09272371, -0.06117828, 0.99381065), (-0.051027935, 0.196945, 0.97908574), (-0.23458013, 0.4096515, 0.8815655), (-0.09750974, 0.17837381, 0.9791193), (-0.23458013, 0.4096515, 0.8815655), (-0.24380629, 0.6646074, 0.7062969), (-0.41529274, 0.5222374, 0.74484897), (-0.8590629, 0.117870525, -0.49811387), (-0.8108123, 0.1267427, -0.57141906), (-0.77704954, 0.2519485, -0.5768152), (0.25261262, 0.96656436, 0.044048704), (0.34076643, 0.92781806, 0.15176255), (0.37743863, 0.9258396, 0.019005038), (-0.19669777, 0.49190208, 0.84814054), (-0.26456767, 0.5533583, 0.78980917), (-0.20547147, 0.46045214, 0.863577), (-0.2305071, 0.76977813, 0.5952379), (-0.32711035, 0.8158708, 0.47681615), (-0.2515521, 0.636077, 0.7294707), (0.54554, -0.72752625, -0.41604286), (0.68052876, -0.6903251, -0.24562559), (0.537906, -0.8258717, -0.16909474), (0.90839314, -0.0503038, -0.4150799), (0.9298531, 0.065071344, -0.3621309), (0.9250353, -0.13516796, -0.35502043), (-0.09595232, 0.6099804, 0.78658575), (0.13144158, 0.42583707, 0.8952016), (-0.10935553, 0.41149226, 0.904829), (-0.49719745, -0.37221593, 0.783741), (-0.29223943, -0.3740379, 0.88016576), (-0.3958922, -0.36332467, 0.84336495), (-0.10503852, -0.26119384, 0.95955443), (-0.16330387, -0.20224595, 0.9656233), (-0.059535734, -0.24713953, 0.96714926), (-0.006069032, -0.051035285, 0.99867845), (-0.064561896, 0.09232654, 0.99363345), (-0.09750974, 0.17837381, 0.9791193), (-0.15882413, 0.6284913, 0.7614287), (-0.080613315, 0.22642572, 0.97068685), (-0.028296672, 0.29320353, 0.95563126), (-0.19669777, 0.49190208, 0.84814054), (-0.2515521, 0.636077, 0.7294707), (-0.26456767, 0.5533583, 0.78980917), (0.15873082, -0.089554355, 0.98325205), (0.30190864, -0.14705426, 0.94192684), (0.12388652, -0.18089667, 0.97566825), (0.26462433, 0.20451565, 0.9424157), (0.17015596, 0.044459715, 0.9844137), (0.21685927, 0.23731945, 0.9469168), (0.10752623, -0.11405444, 0.9876385), (0.06586055, 0.2137245, 0.97467136), (-0.1487316, 0.1672607, 0.9746295), (0.26540065, 0.50993603, 0.8182468), (-0.03136234, 0.06758903, 0.9972202), (0.14617077, 0.7278746, 0.6699498), (-0.03136234, 0.06758903, 0.9972202), (-0.2720994, -0.50797623, 0.817265), (-0.49719745, -0.37221593, 0.783741), (-0.49719745, -0.37221593, 0.783741), (-0.2720994, -0.50797623, 0.817265), (-0.29223943, -0.3740379, 0.88016576), (0.12727505, -0.81410795, -0.56659454), (0.7768317, -0.57160056, -0.26420677), (0.81515265, -0.53872156, -0.21285026), (-0.249804, -0.14131166, 0.9579295), (-0.10503852, -0.26119384, 0.95955443), (-0.059535734, -0.24713953, 0.96714926), (-0.10503852, -0.26119384, 0.95955443), (-0.3099596, -0.25237176, 0.91664255), (-0.16330387, -0.20224595, 0.9656233), (-0.16330387, -0.20224595, 0.9656233), (-0.13272253, -0.034356184, 0.99055755), (-0.006069032, -0.051035285, 0.99867845), (-0.13272253, -0.034356184, 0.99055755), (-0.064561896, 0.09232654, 0.99363345), (-0.006069032, -0.051035285, 0.99867845), (-0.051027935, 0.196945, 0.97908574), (-0.09750974, 0.17837381, 0.9791193), (-0.064561896, 0.09232654, 0.99363345), (0.20621167, 0.8043316, 0.55724996), (0.046126176, 0.8528811, 0.5200637), (0.059466913, 0.7326687, 0.6779824), (-0.12660424, 0.16506909, 0.9781224), (-0.1593235, 0.29106766, 0.9433428), (-0.080613315, 0.22642572, 0.97068685), (-0.12660424, 0.16506909, 0.9781224), (-0.15589239, 0.33997935, 0.927422), (-0.1593235, 0.29106766, 0.9433428), (-0.19669777, 0.49190208, 0.84814054), (-0.20547147, 0.46045214, 0.863577), (-0.1593235, 0.29106766, 0.9433428), (-0.15589239, 0.33997935, 0.927422), (-0.19669777, 0.49190208, 0.84814054), (-0.1593235, 0.29106766, 0.9433428), (-0.2537338, 0.86747384, 0.4279114), (-0.32711035, 0.8158708, 0.47681615), (-0.2305071, 0.76977813, 0.5952379), (0.31702483, 0.522555, 0.7914742), (0.3662903, 0.46227968, 0.807545), (0.28563854, 0.46243456, 0.8393836), (0.12510486, 0.30186772, 0.94510555), (0.048624907, 0.63666934, 0.7696024), (-0.11695605, 0.4948351, 0.8610804), (-0.10935553, 0.41149226, 0.904829), (0.26782945, 0.0053843213, 0.9634513), (-0.1487316, 0.1672607, 0.9746295), (-0.2720994, -0.50797623, 0.817265), (-0.26308703, -0.34385523, 0.90141493), (-0.29223943, -0.3740379, 0.88016576), (-0.26308703, -0.34385523, 0.90141493), (-0.3708847, -0.35086176, 0.8598492), (-0.29223943, -0.3740379, 0.88016576), (-0.249804, -0.14131166, 0.9579295), (-0.27896985, -0.20245492, 0.938716), (-0.10503852, -0.26119384, 0.95955443), (-0.27896985, -0.20245492, 0.938716), (-0.3099596, -0.25237176, 0.91664255), (-0.10503852, -0.26119384, 0.95955443), (-0.3099596, -0.25237176, 0.91664255), (-0.19680987, -0.09112627, 0.9761976), (-0.16330387, -0.20224595, 0.9656233), (-0.16330387, -0.20224595, 0.9656233), (-0.19680987, -0.09112627, 0.9761976), (-0.13272253, -0.034356184, 0.99055755), (-0.07296863, 0.3778567, 0.9229843), (-0.23458013, 0.4096515, 0.8815655), (-0.051027935, 0.196945, 0.97908574), (-0.07296863, 0.3778567, 0.9229843), (-0.24380629, 0.6646074, 0.7062969), (-0.23458013, 0.4096515, 0.8815655), (0.99612904, 0.08727966, -0.010440441), (0.98106885, 0.04682403, -0.18791324), (0.9777654, 0.20047794, -0.06150969), (0.08757645, 0.104537815, 0.9906574), (0.0039564003, 0.11590399, 0.9932525), (0.0027943084, 0.11029896, 0.9938945), (-0.2537338, 0.86747384, 0.4279114), (-0.2305071, 0.76977813, 0.5952379), (-0.14615607, 0.8347189, 0.5309263), (0.18310174, -0.24384306, 0.952373), (0.12920095, -0.19085027, 0.9730792), (0.20746073, -0.2056236, 0.95638853), (-0.06518985, -0.31126437, 0.9480848), (0.069934025, -0.16515385, 0.9837853), (-0.115355425, -0.09205561, 0.98904943), (0.09307465, 0.0054891855, 0.995644), (0.0039564003, 0.11590399, 0.9932525), (0.08757645, 0.104537815, 0.9906574), (0.18990594, 0.46538013, 0.86449826), (0.07472834, 0.58994323, 0.80397934), (0.084180735, 0.60850376, 0.7890733), (0.7449587, -0.6390075, -0.19158767), (0.54656434, -0.80144656, -0.24279799), (0.8341831, -0.50516784, -0.22123319), (-0.2720994, -0.50797623, 0.817265), (-0.19273907, -0.56079185, 0.80521053), (-0.26308703, -0.34385523, 0.90141493), (0.18241073, 0.9627433, 0.19962882), (0.016667308, 0.9787065, 0.20458676), (0.13180333, 0.9147989, 0.38179952), (0.18241073, 0.9627433, 0.19962882), (0.34076643, 0.92781806, 0.15176255), (0.25261262, 0.96656436, 0.044048704), (-0.064561896, 0.09232654, 0.99363345), (-0.024662118, 0.15398404, 0.98776543), (-0.051027935, 0.196945, 0.97908574), (-0.024662118, 0.15398404, 0.98776543), (-0.07296863, 0.3778567, 0.9229843), (-0.051027935, 0.196945, 0.97908574), (0.9599588, 0.18890539, -0.20686671), (0.93655956, 0.33114547, -0.11488639), (0.9777654, 0.20047794, -0.06150969), (-0.0581781, 0.09551162, 0.99372673), (-0.12660424, 0.16506909, 0.9781224), (-0.11455444, 0.5865993, 0.8017348), (-0.0581781, 0.09551162, 0.99372673), (-0.11552037, 0.1588067, 0.9805282), (-0.12660424, 0.16506909, 0.9781224), (-0.11552037, 0.1588067, 0.9805282), (-0.15589239, 0.33997935, 0.927422), (-0.12660424, 0.16506909, 0.9781224), (-0.101115264, 0.6720564, 0.7335639), (-0.2305071, 0.76977813, 0.5952379), (-0.2515521, 0.636077, 0.7294707), (-0.95371497, -0.009299656, -0.3005682), (-0.9915138, 0.05954056, 0.115564995), (-0.9736986, 0.2007418, -0.10776711), (0.26540065, 0.50993603, 0.8182468), (0.21685927, 0.23731945, 0.9469168), (-0.03136234, 0.06758903, 0.9972202), (-0.07412897, -0.35409528, -0.93226683), (-0.12523709, -0.30043563, -0.9455443), (-0.5901023, -0.32065958, -0.7409162), (-0.0812308, 0.6370952, 0.7664927), (-0.24380629, 0.6646074, 0.7062969), (-0.07296863, 0.3778567, 0.9229843), (-0.07152516, 0.39251682, 0.91695946), (-0.19669777, 0.49190208, 0.84814054), (-0.15589239, 0.33997935, 0.927422), (-0.104688354, 0.5237872, 0.8453918), (-0.2515521, 0.636077, 0.7294707), (-0.19669777, 0.49190208, 0.84814054), (-0.104688354, 0.5237872, 0.8453918), (-0.101115264, 0.6720564, 0.7335639), (-0.2515521, 0.636077, 0.7294707), (-0.08165552, -0.28599936, 0.9547443), (-0.057124197, -0.23572528, 0.97013944), (-0.06518985, -0.31126437, 0.9480848), (-0.07433573, -0.7323538, 0.6768546), (0.13927187, -0.4960245, 0.85706663), (-0.11989767, -0.5240033, 0.84323484), (0.09307465, 0.0054891855, 0.995644), (0.13161509, 0.20264517, 0.97036713), (0.0039564003, 0.11590399, 0.9932525), (0.07472834, 0.58994323, 0.80397934), (0.18095034, 0.6055266, 0.77498037), (0.059466913, 0.7326687, 0.6779824), (0.21685927, 0.23731945, 0.9469168), (-0.036610823, -0.49364787, 0.8688909), (-0.03136234, 0.06758903, 0.9972202), (-0.03136234, 0.06758903, 0.9972202), (-0.036610823, -0.49364787, 0.8688909), (-0.2720994, -0.50797623, 0.817265), (-0.38761067, 0.912261, 0.13243043), (-0.31344697, 0.9446902, 0.096495055), (-0.18741368, 0.93810004, 0.29128063), (-0.3791319, -0.2046025, 0.90243936), (-0.16767572, -0.2735583, 0.94712764), (-0.2657656, -0.030633446, 0.9635508), (-0.115355425, -0.09205561, 0.98904943), (-0.27896985, -0.20245492, 0.938716), (-0.2657656, -0.030633446, 0.9635508), (-0.3099596, -0.25237176, 0.91664255), (-0.24971263, -0.09057612, 0.9640745), (-0.19680987, -0.09112627, 0.9761976), (-0.19680987, -0.09112627, 0.9761976), (0.0027943084, 0.11029896, 0.9938945), (-0.13272253, -0.034356184, 0.99055755), (-0.13272253, -0.034356184, 0.99055755), (0.038471464, 0.11011727, 0.9931738), (-0.064561896, 0.09232654, 0.99363345), (0.038471464, 0.11011727, 0.9931738), (-0.024662118, 0.15398404, 0.98776543), (-0.064561896, 0.09232654, 0.99363345), (-0.15189363, -0.0077059036, 0.9883668), (-0.11552037, 0.1588067, 0.9805282), (-0.0581781, 0.09551162, 0.99372673), (-0.07152516, 0.39251682, 0.91695946), (-0.104688354, 0.5237872, 0.8453918), (-0.19669777, 0.49190208, 0.84814054), (0.80521214, -0.07608237, -0.5880859), (0.9213224, -0.12969649, -0.36652952), (0.8699443, -0.29174265, -0.3975969), (0.2756541, -0.074428305, 0.95837116), (0.13161509, 0.20264517, 0.97036713), (0.09307465, 0.0054891855, 0.995644), (0.2756541, -0.074428305, 0.95837116), (0.09307465, 0.0054891855, 0.995644), (0.2565452, -0.020014055, 0.966325), (-0.036610823, -0.49364787, 0.8688909), (-0.19273907, -0.56079185, 0.80521053), (-0.2720994, -0.50797623, 0.817265), (-0.26308703, -0.34385523, 0.90141493), (-0.16767572, -0.2735583, 0.94712764), (-0.3708847, -0.35086176, 0.8598492), (-0.27896985, -0.20245492, 0.938716), (-0.18833666, -0.27567136, 0.9426211), (-0.3099596, -0.25237176, 0.91664255), (-0.3099596, -0.25237176, 0.91664255), (-0.18833666, -0.27567136, 0.9426211), (-0.24971263, -0.09057612, 0.9640745), (0.0027943084, 0.11029896, 0.9938945), (0.038471464, 0.11011727, 0.9931738), (-0.13272253, -0.034356184, 0.99055755), (0.033083975, 0.1578401, 0.98691034), (-0.024662118, 0.15398404, 0.98776543), (0.038471464, 0.11011727, 0.9931738), (0.033083975, 0.1578401, 0.98691034), (-0.07296863, 0.3778567, 0.9229843), (-0.024662118, 0.15398404, 0.98776543), (0.041143876, 0.4090212, 0.91159695), (-0.0812308, 0.6370952, 0.7664927), (-0.07296863, 0.3778567, 0.9229843), (-0.09514772, 0.91167706, 0.39973986), (-0.11455444, 0.5865993, 0.8017348), (-0.28955764, 0.83459437, 0.46862406), (-0.07152516, 0.39251682, 0.91695946), (-0.15589239, 0.33997935, 0.927422), (-0.11552037, 0.1588067, 0.9805282), (-0.07466462, 0.77266836, 0.63040364), (-0.2305071, 0.76977813, 0.5952379), (-0.101115264, 0.6720564, 0.7335639), (-0.07466462, 0.77266836, 0.63040364), (-0.14615607, 0.8347189, 0.5309263), (-0.2305071, 0.76977813, 0.5952379), (0.30709878, 0.115371935, 0.9446585), (0.3186479, 0.3910822, 0.863434), (0.12510486, 0.30186772, 0.94510555), (0.31110305, 0.14118168, 0.9398311), (0.21685927, 0.23731945, 0.9469168), (0.26540065, 0.50993603, 0.8182468), (-0.16767572, -0.2735583, 0.94712764), (-0.115355425, -0.09205561, 0.98904943), (-0.2657656, -0.030633446, 0.9635508), (0.10722754, 0.10266788, 0.98891944), (0.033083975, 0.1578401, 0.98691034), (0.038471464, 0.11011727, 0.9931738), (-0.07296863, 0.3778567, 0.9229843), (0.033083975, 0.1578401, 0.98691034), (0.041143876, 0.4090212, 0.91159695), (0.26282606, -0.08450447, -0.96113557), (0.63791245, 0.060515024, -0.76772755), (0.48341665, 0.29635894, -0.8236987), (-0.028711615, 0.77819705, 0.62736356), (-0.11455444, 0.5865993, 0.8017348), (-0.09514772, 0.91167706, 0.39973986), (-0.104688354, 0.5237872, 0.8453918), (-0.015224104, 0.57553846, 0.8176329), (-0.101115264, 0.6720564, 0.7335639), (0.93007684, 0.10129267, -0.35312444), (0.8332964, 0.4042927, -0.37704715), (0.94701487, 0.19354117, -0.25632918), (0.3989213, -0.11630111, 0.90958), (0.17434353, -0.03654722, 0.9840064), (0.27950996, -0.040275995, 0.95929766), (-0.036610823, -0.49364787, 0.8688909), (-0.07433573, -0.7323538, 0.6768546), (-0.19273907, -0.56079185, 0.80521053), (-0.19273907, -0.56079185, 0.80521053), (-0.23737086, -0.15981758, 0.95818233), (-0.26308703, -0.34385523, 0.90141493), (-0.26308703, -0.34385523, 0.90141493), (-0.08165552, -0.28599936, 0.9547443), (-0.16767572, -0.2735583, 0.94712764), (-0.16767572, -0.2735583, 0.94712764), (-0.06518985, -0.31126437, 0.9480848), (-0.115355425, -0.09205561, 0.98904943), (-0.27896985, -0.20245492, 0.938716), (-0.09187397, -0.33620593, 0.9372965), (-0.18833666, -0.27567136, 0.9426211), (0.0027943084, 0.11029896, 0.9938945), (0.10722754, 0.10266788, 0.98891944), (0.038471464, 0.11011727, 0.9931738), (-0.46889415, -0.83141786, -0.29813167), (-0.011004529, -0.9110386, -0.41217405), (0.36375645, -0.89763147, -0.24887547), (0.0039564003, 0.11590399, 0.9932525), (0.10217742, 0.23066665, 0.96765316), (0.033083975, 0.1578401, 0.98691034), (-0.26308703, -0.34385523, 0.90141493), (-0.23737086, -0.15981758, 0.95818233), (-0.08165552, -0.28599936, 0.9547443), (-0.08165552, -0.28599936, 0.9547443), (-0.06518985, -0.31126437, 0.9480848), (-0.16767572, -0.2735583, 0.94712764), (-0.115355425, -0.09205561, 0.98904943), (-0.09187397, -0.33620593, 0.9372965), (-0.27896985, -0.20245492, 0.938716), (-0.24971263, -0.09057612, 0.9640745), (-0.014484897, -0.020984115, 0.9996749), (-0.19680987, -0.09112627, 0.9761976), (-0.014484897, -0.020984115, 0.9996749), (0.0027943084, 0.11029896, 0.9938945), (-0.19680987, -0.09112627, 0.9761976), (0.0027943084, 0.11029896, 0.9938945), (0.0039564003, 0.11590399, 0.9932525), (0.10722754, 0.10266788, 0.98891944), (-0.97807634, 0.20070383, -0.055540092), (-0.9350665, 0.30848765, 0.17460212), (-0.95112556, 0.3084675, -0.014423577), (0.35585794, -0.067901984, 0.9320699), (0.21663934, -0.32630387, 0.920105), (0.21065009, 0.06081783, 0.97566783), (0.11630765, 0.11799151, 0.9861797), (0.17491105, 0.19325906, 0.965431), (0.023954298, 0.34886315, 0.9368675), (0.3292842, -0.021435365, 0.94398755), (0.4585565, -0.028348925, 0.8882129), (0.2756541, -0.074428305, 0.95837116), (0.7915214, -0.15936886, 0.58999616), (0.6905752, 0.02852649, 0.7226978), (0.7497193, -0.20978902, 0.6276221), (0.2756541, -0.074428305, 0.95837116), (0.4585565, -0.028348925, 0.8882129), (0.3057944, 0.15064518, 0.94010407), (-0.19790466, 0.6978808, 0.6883285), (-0.045587193, 0.6975793, 0.7150558), (-0.45028743, 0.8040352, 0.3882893), (0.57391804, 0.44197628, 0.689402), (0.46460974, 0.47212803, 0.74915487), (0.48443997, 0.34628278, 0.8033718), (0.4461692, -0.22564271, 0.866036), (0.5291761, -0.4985117, 0.6866285), (0.4708306, 0.28275272, 0.835685), (0.3950109, -0.21165003, 0.8939634), (0.44979906, -0.21742286, 0.86626107), (0.3153758, -0.32686642, 0.8908964), (0.097564355, -0.8835147, 0.45812988), (0.2581334, -0.48780972, 0.8339118), (0.2262849, -0.55113804, 0.80314505), (0.51348805, 0.41205767, 0.7526875), (0.3472462, 0.41306263, 0.84190226), (0.42323548, 0.2717208, 0.8643145), (0.47714183, 0.1923976, -0.85750735), (0.24769956, -0.17423761, -0.9530405), (0.82764876, -0.24990812, -0.502537), (0.5361395, 0.33027858, 0.77683365), (0.3186479, 0.3910822, 0.863434), (0.5573895, 0.08463357, 0.82592624), (0.43418202, -0.21767944, 0.87412906), (0.44925606, -0.16963077, 0.8771513), (0.33870253, -0.08764067, 0.9368029), (0.69429344, -0.1504858, 0.70378304), (0.5573895, 0.08463357, 0.82592624), (0.44194674, -0.082144774, 0.8932722), (0.63005215, 0.06056474, 0.7741875), (0.86035526, -0.116338596, 0.49624005), (0.8054973, -0.23525979, 0.5438998), (0.94444144, 0.086512014, -0.31708968), (0.98106885, 0.04682403, -0.18791324), (0.9626579, -0.0268924, -0.26938185), (-0.33148786, 0.047533527, 0.9422613), (0.27213457, 0.30032533, 0.9141922), (0.29285645, -0.22085378, 0.93030035), (0.7613839, 0.121778704, 0.636761), (0.5573895, 0.08463357, 0.82592624), (0.69429344, -0.1504858, 0.70378304), (0.69429344, -0.1504858, 0.70378304), (0.44194674, -0.082144774, 0.8932722), (0.63540214, -0.3790919, 0.6727209), (-0.1864253, -0.48720965, -0.85315436), (-0.18033013, -0.39411464, -0.90119624), (-0.021990784, -0.6079759, -0.7936509), (0.4551225, -0.4610238, 0.76178783), (0.45766103, -0.59038997, 0.6648204), (0.43389198, -0.31896162, 0.84261566), (0.5899562, -0.0015790844, 0.80743366), (0.37538117, 0.23835196, 0.8956994), (0.5549209, 0.22934762, 0.7996639), (0.42323548, 0.2717208, 0.8643145), (0.3472462, 0.41306263, 0.84190226), (0.22976145, 0.24329102, 0.94234765), (0.66801757, -0.6265145, -0.40153733), (0.66396046, -0.68804663, -0.29282808), (0.70091695, -0.5494212, -0.45480964), (0.6801373, -0.060265444, -0.7306034), (0.69067633, -0.22762033, -0.68640745), (0.75422907, -0.2644921, -0.6009847), (0.9604763, 0.03142416, -0.27658242), (0.9742027, 0.03884721, -0.22230598), (0.98106885, 0.04682403, -0.18791324), (0.40377453, 0.57093114, 0.7148452), (0.17070511, 0.80760896, 0.56447095), (0.4708306, 0.28275272, 0.835685), (0.4746064, -0.16125263, 0.8653013), (0.4879689, -0.2063295, 0.8481242), (0.51347804, -0.24082421, 0.82361645), (0.99257517, 0.06272157, 0.10421382), (0.90119463, 0.3538509, 0.2502753), (0.93103486, 0.3613243, 0.0511762), (-0.7886005, -0.15360364, -0.59541184), (-0.31921285, 0.27075258, -0.9081829), (-0.7733428, 0.39109966, -0.49898082), (0.35752425, 0.2704521, 0.8938859), (0.46180364, 0.3621217, 0.8096946), (0.25520527, 0.39804116, 0.8811547), (0.18990594, 0.46538013, 0.86449826), (0.28619885, 0.2774036, 0.9171355), (0.12527607, 0.38304296, 0.9151961), (0.4551225, -0.4610238, 0.76178783), (0.42572716, -0.21335113, 0.87933934), (0.44054836, -0.18645185, 0.8781531), (0.8318086, -0.3919076, 0.39306858), (0.793357, -0.054449186, 0.6063167), (0.9491198, 0.06107513, 0.30893606), (0.11136336, -0.28162184, 0.95304114), (-0.19749816, -0.5429663, 0.8161998), (0.05473727, -0.8472051, 0.52843845), (0.35752425, 0.2704521, 0.8938859), (0.56424934, 0.364599, 0.7407362), (0.621411, 0.28880247, 0.72831416), (0.621411, 0.28880247, 0.72831416), (0.46180364, 0.3621217, 0.8096946), (0.35752425, 0.2704521, 0.8938859), (0.73073494, 0.51337385, -0.44997093), (0.79446137, 0.49406892, -0.35316715), (0.7997539, 0.41937962, -0.4295515), (0.46723258, 0.19325909, 0.8627541), (0.71012574, 0.21712741, 0.66975904), (0.56424934, 0.364599, 0.7407362), (-0.95828944, 0.28264505, 0.04234376), (-0.92447, 0.100629054, 0.367735), (-0.9968846, 0.075708196, -0.022120882), (0.34438956, 0.5497124, 0.7610599), (0.25317535, 0.57428575, 0.778523), (0.28563854, 0.46243456, 0.8393836), (0.6708148, 0.3738905, 0.64047897), (0.5155282, 0.38745424, 0.76427084), (0.5079443, 0.45772973, 0.72970957), (0.43389198, -0.31896162, 0.84261566), (0.288246, -0.07940902, 0.9542581), (0.42572716, -0.21335113, 0.87933934), (0.17070511, 0.80760896, 0.56447095), (0.35952163, 0.55715156, 0.7485495), (0.17401391, 0.7181842, 0.6737438), (0.055428933, 0.14206898, 0.9883036), (0.34167877, -0.783338, 0.51926595), (0.11033541, -0.2923358, 0.9499294), (0.014819242, -0.70623416, -0.7078232), (-0.14805838, -0.5870909, -0.7958662), (-0.012127084, -0.7994914, -0.60055524), (0.7800137, -0.4007698, 0.48058534), (0.63540214, -0.3790919, 0.6727209), (0.61079043, -0.6132706, 0.5008335), (-0.76743174, -0.63194263, -0.108153306), (-0.6854155, -0.6979322, -0.20759624), (-0.7087192, -0.7050417, -0.025164725), (0.6517776, -0.12347161, 0.74829185), (0.71012574, 0.21712741, 0.66975904), (0.46723258, 0.19325909, 0.8627541), (0.56424934, 0.364599, 0.7407362), (0.78238076, 0.2835503, 0.5545084), (0.621411, 0.28880247, 0.72831416), (0.63005215, 0.06056474, 0.7741875), (0.13144158, 0.42583707, 0.8952016), (0.48421824, 0.2921103, 0.824745), (0.44054836, -0.18645185, 0.8781531), (0.42572716, -0.21335113, 0.87933934), (0.4746064, -0.16125263, 0.8653013), (0.35952163, 0.55715156, 0.7485495), (0.53343964, 0.27986443, 0.7981968), (0.65877706, 0.11588334, 0.7433599), (0.78250587, -0.38907796, 0.48611), (0.46872672, -0.5303831, 0.7063915), (0.5850868, -0.68390495, 0.43582952), (0.78250587, -0.38907796, 0.48611), (0.6517776, -0.12347161, 0.74829185), (0.46872672, -0.5303831, 0.7063915), (0.621411, 0.28880247, 0.72831416), (0.647132, 0.2797327, 0.7092037), (0.46180364, 0.3621217, 0.8096946), (0.17070511, 0.80760896, 0.56447095), (0.17401391, 0.7181842, 0.6737438), (0.21201095, 0.6464619, 0.73289716), (0.8414048, 0.048073255, 0.5382627), (0.71012574, 0.21712741, 0.66975904), (0.6517776, -0.12347161, 0.74829185), (0.621411, 0.28880247, 0.72831416), (0.78238076, 0.2835503, 0.5545084), (0.647132, 0.2797327, 0.7092037), (0.9299018, 0.268288, 0.25160345), (0.9842109, 0.07599091, 0.15985686), (0.9362669, -0.00075243076, 0.35128856), (0.61079043, -0.6132706, 0.5008335), (0.48341167, -0.73504114, 0.47542375), (0.5315208, -0.79590696, 0.28985828), (0.83185136, -0.23328628, 0.50358784), (0.6517776, -0.12347161, 0.74829185), (0.78250587, -0.38907796, 0.48611), (0.83185136, -0.23328628, 0.50358784), (0.8414048, 0.048073255, 0.5382627), (0.6517776, -0.12347161, 0.74829185), (0.8414048, 0.048073255, 0.5382627), (0.77535903, 0.3278211, 0.5397702), (0.71012574, 0.21712741, 0.66975904), (0.71012574, 0.21712741, 0.66975904), (0.77535903, 0.3278211, 0.5397702), (0.56424934, 0.364599, 0.7407362), (0.56424934, 0.364599, 0.7407362), (0.77535903, 0.3278211, 0.5397702), (0.78238076, 0.2835503, 0.5545084), (0.83853906, -0.085656226, 0.53806627), (0.69429344, -0.1504858, 0.70378304), (0.7914296, -0.26015776, 0.5531339), (0.83853906, -0.085656226, 0.53806627), (0.7613839, 0.121778704, 0.636761), (0.69429344, -0.1504858, 0.70378304), (0.81274587, -0.11396128, 0.5713643), (0.7072956, -0.017524727, 0.70670074), (0.724455, -0.1865872, 0.6635889), (0.8255473, 0.23446113, 0.5133222), (0.83347154, 0.3270561, 0.4453755), (0.7619908, 0.3437566, 0.5488183), (0.28563854, 0.46243456, 0.8393836), (0.25317535, 0.57428575, 0.778523), (0.20326447, 0.45285785, 0.8681032), (-0.111391515, 0.12844002, -0.9854415), (-0.088106014, 0.24852572, -0.96461), (-0.1635049, 0.18375777, -0.9692777), (0.59068286, -0.7397482, 0.32228303), (0.5850868, -0.68390495, 0.43582952), (0.40924534, -0.8464372, 0.34067917), (0.7580366, -0.5256367, 0.38611734), (0.78250587, -0.38907796, 0.48611), (0.5850868, -0.68390495, 0.43582952), (0.78238076, 0.2835503, 0.5545084), (0.83698744, 0.057835933, 0.5441572), (0.647132, 0.2797327, 0.7092037), (0.9213224, -0.12969649, -0.36652952), (0.99068445, -0.04349092, -0.12904574), (0.9279927, -0.33636194, -0.16028197), (0.7613839, 0.121778704, 0.636761), (0.6477321, 0.42353454, 0.63329434), (0.5361395, 0.33027858, 0.77683365), (0.80687773, -0.03948551, 0.58939743), (0.74183, -0.0202907, 0.6702809), (0.7183273, -0.06666177, 0.69250417), (0.63457394, 0.08633792, 0.7680245), (0.6319527, 0.04173801, 0.77388227), (0.5631056, 0.111231536, 0.8188649), (0.5573895, 0.08463357, 0.82592624), (0.3186479, 0.3910822, 0.863434), (0.30709878, 0.115371935, 0.9446585), (0.5361395, 0.33027858, 0.77683365), (0.6477321, 0.42353454, 0.63329434), (0.37906346, 0.6066238, 0.69879776), (0.59068286, -0.7397482, 0.32228303), (0.7580366, -0.5256367, 0.38611734), (0.5850868, -0.68390495, 0.43582952), (0.83185136, -0.23328628, 0.50358784), (0.78250587, -0.38907796, 0.48611), (0.7580366, -0.5256367, 0.38611734), (0.77535903, 0.3278211, 0.5397702), (0.6877729, 0.38395965, 0.61607105), (0.78238076, 0.2835503, 0.5545084), (0.58896244, -0.2319599, 0.7741562), (0.57495075, 0.00039885307, 0.81818795), (0.54571533, -0.027052846, 0.83753383), (0.77444136, -0.031207774, 0.6318756), (0.82868356, 0.046178788, 0.55780905), (0.7631525, -0.024783134, 0.64574313), (0.8414048, 0.048073255, 0.5382627), (0.73827946, 0.12390171, 0.6630172), (0.77535903, 0.3278211, 0.5397702), (0.83698744, 0.057835933, 0.5441572), (0.59385073, 0.17331566, 0.78568625), (0.647132, 0.2797327, 0.7092037), (-0.010320473, 0.40468994, -0.9143957), (0.011084121, 0.38924456, -0.9210678), (0.038752053, 0.27722442, -0.9600234), (0.49719888, -0.32317707, 0.8052017), (0.63540214, -0.3790919, 0.6727209), (0.44194674, -0.082144774, 0.8932722), (0.44925606, -0.16963077, 0.8771513), (0.39945248, 0.1259264, 0.9080641), (0.33870253, -0.08764067, 0.9368029), (0.8064504, 0.36136454, 0.46803123), (0.7042605, 0.29188213, 0.6471646), (0.8546297, 0.36033016, 0.37385878), (0.44194674, -0.082144774, 0.8932722), (0.5573895, 0.08463357, 0.82592624), (0.30709878, 0.115371935, 0.9446585), (0.8414048, 0.048073255, 0.5382627), (0.83185136, -0.23328628, 0.50358784), (0.73827946, 0.12390171, 0.6630172), (0.6877729, 0.38395965, 0.61607105), (0.7726633, 0.28475356, 0.5673684), (0.78238076, 0.2835503, 0.5545084), (0.78238076, 0.2835503, 0.5545084), (0.7726633, 0.28475356, 0.5673684), (0.83698744, 0.057835933, 0.5441572), (0.47717416, 0.21026558, 0.8532837), (0.24642, 0.41090232, 0.8777451), (0.3057944, 0.15064518, 0.94010407), (0.4746064, -0.16125263, 0.8653013), (0.5023375, -0.08355959, 0.8606247), (0.4879689, -0.2063295, 0.8481242), (0.61079043, -0.6132706, 0.5008335), (0.63540214, -0.3790919, 0.6727209), (0.5503341, -0.55431485, 0.6243936), (0.38218302, 0.52420086, 0.76101875), (0.64249104, 0.4363511, 0.6299231), (0.5520378, 0.2651683, 0.7905316), (0.52420884, -0.5261892, 0.6695744), (0.59068286, -0.7397482, 0.32228303), (0.34167877, -0.783338, 0.51926595), (0.055428933, 0.14206898, 0.9883036), (0.52420884, -0.5261892, 0.6695744), (0.34167877, -0.783338, 0.51926595), (0.73827946, 0.12390171, 0.6630172), (0.6877729, 0.38395965, 0.61607105), (0.77535903, 0.3278211, 0.5397702), (0.8790072, -0.016112523, 0.47653624), (0.82868356, 0.046178788, 0.55780905), (0.80687773, -0.03948551, 0.58939743), (0.7580366, -0.5256367, 0.38611734), (0.59068286, -0.7397482, 0.32228303), (0.52420884, -0.5261892, 0.6695744), (0.7726633, 0.28475356, 0.5673684), (0.7503473, 0.075257696, 0.6567459), (0.83698744, 0.057835933, 0.5441572), (-0.088106014, 0.24852572, -0.96461), (0.0029346552, 0.22459112, -0.9744486), (-0.15126656, 0.40943748, -0.8997107), (0.86035526, -0.116338596, 0.49624005), (0.8334079, -0.03333406, 0.5516522), (0.81274587, -0.11396128, 0.5713643), (0.4842816, -0.367748, 0.793872), (0.6071203, -0.37861893, 0.6986078), (0.5385217, -0.3531282, 0.7650457), (0.45928004, -0.14568935, 0.87626284), (0.6699192, -0.3878235, 0.63308865), (0.6200667, -0.07976656, 0.78048354), (0.6200667, -0.07976656, 0.78048354), (0.55664706, -0.103725865, 0.8242482), (0.40636244, 0.09432664, 0.90883), (0.55664706, -0.103725865, 0.8242482), (0.47512138, -0.13482873, 0.8695291), (0.40636244, 0.09432664, 0.90883), (0.7257419, -0.37918338, 0.5740372), (0.6071203, -0.37861893, 0.6986078), (0.55664706, -0.103725865, 0.8242482), (0.50751424, -0.6102899, -0.6082562), (0.66801757, -0.6265145, -0.40153733), (0.70091695, -0.5494212, -0.45480964), (0.58117926, -0.5158939, 0.6293523), (0.83185136, -0.23328628, 0.50358784), (0.7580366, -0.5256367, 0.38611734), (0.58117926, -0.5158939, 0.6293523), (0.5819815, -0.3316184, 0.7425139), (0.83185136, -0.23328628, 0.50358784), (0.5819815, -0.3316184, 0.7425139), (0.73827946, 0.12390171, 0.6630172), (0.83185136, -0.23328628, 0.50358784), (0.73827946, 0.12390171, 0.6630172), (0.5032461, 0.3507359, 0.7897643), (0.6877729, 0.38395965, 0.61607105), (0.5032461, 0.3507359, 0.7897643), (0.4989241, 0.486943, 0.7169109), (0.6877729, 0.38395965, 0.61607105), (0.6877729, 0.38395965, 0.61607105), (0.4989241, 0.486943, 0.7169109), (0.7726633, 0.28475356, 0.5673684), (0.4989241, 0.486943, 0.7169109), (0.6039741, 0.35687423, 0.7126403), (0.7726633, 0.28475356, 0.5673684), (0.7726633, 0.28475356, 0.5673684), (0.6039741, 0.35687423, 0.7126403), (0.7503473, 0.075257696, 0.6567459), (0.7503473, 0.075257696, 0.6567459), (0.6974291, -0.15626511, 0.6994096), (0.83698744, 0.057835933, 0.5441572), (0.6974291, -0.15626511, 0.6994096), (0.59385073, 0.17331566, 0.78568625), (0.83698744, 0.057835933, 0.5441572), (0.4842816, -0.367748, 0.793872), (0.5385217, -0.3531282, 0.7650457), (0.5847688, -0.42664802, 0.68993986), (0.86035526, -0.116338596, 0.49624005), (0.81274587, -0.11396128, 0.5713643), (0.8054973, -0.23525979, 0.5438998), (0.54554, -0.72752625, -0.41604286), (0.617499, -0.5915019, -0.51847905), (0.68052876, -0.6903251, -0.24562559), (0.6071203, -0.37861893, 0.6986078), (0.4842816, -0.367748, 0.793872), (0.55664706, -0.103725865, 0.8242482), (0.52420884, -0.5261892, 0.6695744), (0.58117926, -0.5158939, 0.6293523), (0.7580366, -0.5256367, 0.38611734), (0.6384342, -0.03379795, 0.768934), (0.59385073, 0.17331566, 0.78568625), (0.6974291, -0.15626511, 0.6994096), (-0.15126656, 0.40943748, -0.8997107), (0.0029346552, 0.22459112, -0.9744486), (0.00073287025, 0.3308294, -0.94369024), (0.3797876, 0.58644396, 0.7154333), (0.46460974, 0.47212803, 0.74915487), (0.31702483, 0.522555, 0.7914742), (0.22976145, 0.24329102, 0.94234765), (0.2826537, 0.21204098, 0.93549204), (0.42323548, 0.2717208, 0.8643145), (0.5819815, -0.3316184, 0.7425139), (0.5769708, -0.017921997, 0.8165681), (0.73827946, 0.12390171, 0.6630172), (0.5769708, -0.017921997, 0.8165681), (0.5032461, 0.3507359, 0.7897643), (0.73827946, 0.12390171, 0.6630172), (-0.31844297, 0.76659155, 0.55761224), (-0.23401758, 0.691813, 0.6831036), (-0.13216738, 0.80042946, 0.5846747), (-0.19537881, -0.06637409, 0.97847915), (0.09335617, 0.35891667, 0.9286891), (-0.28025487, 0.3406953, 0.8974318), (0.20384642, 0.06405067, 0.97690547), (0.09335617, 0.35891667, 0.9286891), (-0.19537881, -0.06637409, 0.97847915), (0.4576426, -0.57375616, -0.6792401), (0.617499, -0.5915019, -0.51847905), (0.54554, -0.72752625, -0.41604286), (-0.52218896, -0.42145768, -0.7414122), (-0.5901023, -0.32065958, -0.7409162), (-0.832244, -0.32162237, -0.45158496), (0.51348805, 0.41205767, 0.7526875), (0.46460974, 0.47212803, 0.74915487), (0.3797876, 0.58644396, 0.7154333), (0.38470626, -0.0692315, 0.92043906), (0.5023375, -0.08355959, 0.8606247), (0.288246, -0.07940902, 0.9542581), (0.5023375, -0.08355959, 0.8606247), (0.4746064, -0.16125263, 0.8653013), (0.288246, -0.07940902, 0.9542581), (0.70696247, -0.6284262, 0.32447585), (0.6245076, -0.44971856, 0.6385479), (0.4325463, -0.90036434, 0.047412522), (0.5303081, 0.4689901, 0.706273), (0.79264647, 0.17295048, 0.5846362), (0.64249104, 0.4363511, 0.6299231), (-0.47647125, -0.552428, -0.6839579), (0.114479125, -0.723205, -0.68107945), (0.12727505, -0.81410795, -0.56659454), (0.3038638, -0.12738982, 0.9441602), (0.46003348, -0.40896958, 0.7881073), (0.58117926, -0.5158939, 0.6293523), (0.52420884, -0.5261892, 0.6695744), (0.3038638, -0.12738982, 0.9441602), (0.58117926, -0.5158939, 0.6293523), (0.58117926, -0.5158939, 0.6293523), (0.46003348, -0.40896958, 0.7881073), (0.5819815, -0.3316184, 0.7425139), (0.6241327, 0.06977065, 0.77819693), (0.7199228, 0.038375366, 0.6929924), (0.7497193, -0.20978902, 0.6276221), (0.45766103, -0.59038997, 0.6648204), (0.4551225, -0.4610238, 0.76178783), (0.46756858, -0.46228462, 0.7534405), (0.3437663, 0.6905318, 0.63638866), (0.18095034, 0.6055266, 0.77498037), (0.25317535, 0.57428575, 0.778523), (0.25317535, 0.57428575, 0.778523), (0.18095034, 0.6055266, 0.77498037), (0.20326447, 0.45285785, 0.8681032), (0.5689974, 0.19954504, 0.79776174), (0.5295451, 0.34683037, 0.7741387), (0.47717416, 0.21026558, 0.8532837), (0.43238065, 0.5242961, 0.73359436), (0.34438956, 0.5497124, 0.7610599), (0.28563854, 0.46243456, 0.8393836), (0.58060676, 0.25397056, 0.77355975), (0.5032461, 0.3507359, 0.7897643), (0.5769708, -0.017921997, 0.8165681), (0.6952787, -0.029978897, 0.7181148), (0.6974291, -0.15626511, 0.6994096), (0.7503473, 0.075257696, 0.6567459), (0.6952787, -0.029978897, 0.7181148), (0.7455583, -0.16875565, 0.6447204), (0.6974291, -0.15626511, 0.6994096), (0.7455583, -0.16875565, 0.6447204), (0.6384342, -0.03379795, 0.768934), (0.6974291, -0.15626511, 0.6994096), (0.6384342, -0.03379795, 0.768934), (0.64674646, 0.3011788, 0.7007213), (0.59385073, 0.17331566, 0.78568625), (0.607333, -0.55710804, -0.5663719), (0.25655803, -0.8464801, -0.4665291), (0.5323394, -0.84450775, 0.058492336), (0.5323394, -0.84450775, 0.058492336), (0.5278373, -0.79790884, 0.29108292), (0.5876403, -0.5747546, 0.56950504), (0.53808373, 0.46222842, 0.70484805), (0.24343874, 0.772614, 0.5863489), (0.64765865, 0.21726725, 0.73029673), (0.46003348, -0.40896958, 0.7881073), (0.5628749, -0.40672293, 0.71954733), (0.5819815, -0.3316184, 0.7425139), (0.5628749, -0.40672293, 0.71954733), (0.6410679, -0.23989049, 0.72902983), (0.5819815, -0.3316184, 0.7425139), (0.5819815, -0.3316184, 0.7425139), (0.6410679, -0.23989049, 0.72902983), (0.5769708, -0.017921997, 0.8165681), (0.58060676, 0.25397056, 0.77355975), (0.61160696, 0.36143324, 0.7037777), (0.5032461, 0.3507359, 0.7897643), (0.46120664, 0.47725657, 0.7480071), (0.4989241, 0.486943, 0.7169109), (0.5032461, 0.3507359, 0.7897643), (0.61160696, 0.36143324, 0.7037777), (0.46120664, 0.47725657, 0.7480071), (0.5032461, 0.3507359, 0.7897643), (0.5670157, 0.38976982, 0.72565323), (0.4989241, 0.486943, 0.7169109), (0.46120664, 0.47725657, 0.7480071), (0.5670157, 0.38976982, 0.72565323), (0.6039741, 0.35687423, 0.7126403), (0.4989241, 0.486943, 0.7169109), (0.5610421, 0.21991523, 0.7980408), (0.7503473, 0.075257696, 0.6567459), (0.6039741, 0.35687423, 0.7126403), (0.5670157, 0.38976982, 0.72565323), (0.5610421, 0.21991523, 0.7980408), (0.6039741, 0.35687423, 0.7126403), (0.7503473, 0.075257696, 0.6567459), (0.5610421, 0.21991523, 0.7980408), (0.6952787, -0.029978897, 0.7181148), (0.79124665, -0.017901318, 0.611235), (0.6384342, -0.03379795, 0.768934), (0.7455583, -0.16875565, 0.6447204), (0.6384342, -0.03379795, 0.768934), (0.79124665, -0.017901318, 0.611235), (0.64674646, 0.3011788, 0.7007213), (0.8029297, 0.13806711, -0.5798633), (0.5509987, 0.45174804, -0.7016581), (0.8332964, 0.4042927, -0.37704715), (0.057034962, -0.7214882, -0.6900737), (-0.021990784, -0.6079759, -0.7936509), (0.1351536, -0.7640246, -0.6308723), (0.70351964, 0.058147147, 0.70829296), (0.5769708, -0.017921997, 0.8165681), (0.6410679, -0.23989049, 0.72902983), (0.5769708, -0.017921997, 0.8165681), (0.70351964, 0.058147147, 0.70829296), (0.58060676, 0.25397056, 0.77355975), (0.6952787, -0.029978897, 0.7181148), (0.79124665, -0.017901318, 0.611235), (0.7455583, -0.16875565, 0.6447204), (-0.10362395, -0.56588596, 0.81794566), (0.06398499, -0.579523, 0.81244016), (-0.058807254, -0.4848953, 0.8725929), (0.26045316, 0.45574567, 0.8511522), (0.09335617, 0.35891667, 0.9286891), (0.20384642, 0.06405067, 0.97690547), (0.26045316, 0.45574567, 0.8511522), (0.1088793, 0.6450235, 0.75636625), (0.09335617, 0.35891667, 0.9286891), (0.1616468, 0.5185643, 0.83961976), (0.26045316, 0.45574567, 0.8511522), (0.29001746, 0.1892356, 0.9381257), (0.4325463, -0.90036434, 0.047412522), (0.6245076, -0.44971856, 0.6385479), (0.4455544, -0.8584529, 0.25404683), (0.53808373, 0.46222842, 0.70484805), (0.26259902, 0.70785326, 0.6557328), (0.24343874, 0.772614, 0.5863489), (0.7595671, 0.6272571, 0.17206532), (0.8983721, 0.31096193, 0.31021002), (0.7303506, 0.6483591, 0.21498479), (0.70351964, 0.058147147, 0.70829296), (0.61160696, 0.36143324, 0.7037777), (0.58060676, 0.25397056, 0.77355975), (0.61160696, 0.36143324, 0.7037777), (0.5670157, 0.38976982, 0.72565323), (0.46120664, 0.47725657, 0.7480071), (0.6158694, -0.76686466, -0.18062013), (0.69222724, -0.6828688, -0.2334772), (0.35887057, -0.9229695, -0.1390655), (0.30334, 0.5943287, 0.74482083), (0.64674646, 0.3011788, 0.7007213), (0.31924212, 0.796362, 0.513704), (0.63457394, 0.08633792, 0.7680245), (0.526669, 0.1348011, 0.83931416), (0.62287766, -0.043603897, 0.7811032), (0.848993, -0.47340342, -0.23473416), (0.9279927, -0.33636194, -0.16028197), (0.8157006, -0.57242763, -0.08342118), (0.3377375, 0.23690069, 0.9109399), (0.526669, 0.1348011, 0.83931416), (0.2826537, 0.21204098, 0.93549204), (0.24584846, -0.086955965, 0.96540004), (0.45928004, -0.14568935, 0.87626284), (0.40636244, 0.09432664, 0.90883), (0.70696247, -0.6284262, 0.32447585), (0.64765865, 0.21726725, 0.73029673), (0.6245076, -0.44971856, 0.6385479), (0.61160696, 0.36143324, 0.7037777), (0.68410426, 0.40645608, 0.6056359), (0.5670157, 0.38976982, 0.72565323), (0.6952787, -0.029978897, 0.7181148), (0.7904114, 0.0056089167, 0.6125508), (0.79124665, -0.017901318, 0.611235), (0.095185675, -0.91661394, 0.38827646), (0.0013304728, -0.9266607, 0.37589642), (0.017300202, -0.99442637, 0.10400387), (0.7773464, -0.4599915, -0.42911586), (0.848993, -0.47340342, -0.23473416), (0.68052876, -0.6903251, -0.24562559), (0.21601784, 0.08309092, 0.9728475), (0.56424934, 0.364599, 0.7407362), (0.35752425, 0.2704521, 0.8938859), (0.5303081, 0.4689901, 0.706273), (0.38218302, 0.52420086, 0.76101875), (0.26259902, 0.70785326, 0.6557328), (0.47717416, 0.21026558, 0.8532837), (0.5295451, 0.34683037, 0.7741387), (0.34748375, 0.4804332, 0.8052571), (0.93655956, 0.33114547, -0.11488639), (0.87425536, 0.4388207, -0.20763896), (0.8756664, 0.48078087, -0.0453676), (0.6022304, -0.43448967, 0.66972923), (0.58896244, -0.2319599, 0.7741562), (0.43389198, -0.31896162, 0.84261566), (-0.32487574, 0.3613849, -0.873989), (-0.45183706, 0.15477824, -0.8785711), (-0.3255986, 0.23396029, -0.9161048), (0.54571533, -0.027052846, 0.83753383), (0.5023375, -0.08355959, 0.8606247), (0.38470626, -0.0692315, 0.92043906), (0.70351964, 0.058147147, 0.70829296), (0.7343305, 0.19003859, 0.6516472), (0.61160696, 0.36143324, 0.7037777), (0.7904114, 0.0056089167, 0.6125508), (0.85161155, 0.12993316, 0.50781405), (0.79124665, -0.017901318, 0.611235), (0.19233075, -0.47231376, 0.86019105), (0.29001746, 0.1892356, 0.9381257), (0.20384642, 0.06405067, 0.97690547), (0.39945248, 0.1259264, 0.9080641), (0.27475986, 0.19792292, 0.94092166), (0.33870253, -0.08764067, 0.9368029), (0.5689974, 0.19954504, 0.79776174), (0.44153064, 0.2671292, 0.8565586), (0.5295451, 0.34683037, 0.7741387), (0.6601938, -0.56228054, 0.49798065), (0.62266505, -0.3998455, 0.6726157), (0.7257419, -0.37918338, 0.5740372), (0.7066259, 0.4049323, 0.58026683), (0.72817004, 0.49180785, 0.4773819), (0.5752987, 0.49384677, 0.6520327), (0.7438177, -0.039137285, 0.6672357), (0.7183273, -0.06666177, 0.69250417), (0.5875426, -0.037324887, 0.8083321), (0.5432547, -0.23483822, 0.80605537), (0.6087463, -0.17568767, 0.7736679), (0.44925606, -0.16963077, 0.8771513), (0.5023375, -0.08355959, 0.8606247), (0.6930141, -0.25431007, 0.67457974), (0.5432547, -0.23483822, 0.80605537), (0.6090845, -0.20589904, 0.76591235), (0.5628749, -0.40672293, 0.71954733), (0.46003348, -0.40896958, 0.7881073), (0.26924786, 0.27496895, 0.922983), (0.6090845, -0.20589904, 0.76591235), (0.46003348, -0.40896958, 0.7881073), (0.6090845, -0.20589904, 0.76591235), (0.6410679, -0.23989049, 0.72902983), (0.5628749, -0.40672293, 0.71954733), (0.5610421, 0.21991523, 0.7980408), (0.5670157, 0.38976982, 0.72565323), (0.6952787, -0.029978897, 0.7181148), (0.8241424, 0.12562299, 0.5522755), (0.7904114, 0.0056089167, 0.6125508), (0.6952787, -0.029978897, 0.7181148), (0.19233075, -0.47231376, 0.86019105), (0.29285645, -0.22085378, 0.93030035), (0.29001746, 0.1892356, 0.9381257), (0.24947077, -0.28938565, 0.92413217), (0.46872672, -0.5303831, 0.7063915), (0.6517776, -0.12347161, 0.74829185), (0.9028298, 0.076949954, 0.42305678), (0.82868356, 0.046178788, 0.55780905), (0.8790072, -0.016112523, 0.47653624), (-0.28208676, -0.9430109, -0.17651507), (-0.38843852, -0.8947964, -0.2201251), (-0.6685689, -0.72058904, -0.18375832), (0.58896244, -0.2319599, 0.7741562), (0.54571533, -0.027052846, 0.83753383), (0.38470626, -0.0692315, 0.92043906), (0.43389198, -0.31896162, 0.84261566), (0.58896244, -0.2319599, 0.7741562), (0.38470626, -0.0692315, 0.92043906), (0.526669, 0.1348011, 0.83931416), (0.3377375, 0.23690069, 0.9109399), (0.5036354, 0.08328612, 0.85989237), (0.7618923, -0.04150026, 0.6463729), (0.70351964, 0.058147147, 0.70829296), (0.6410679, -0.23989049, 0.72902983), (0.70351964, 0.058147147, 0.70829296), (0.7618923, -0.04150026, 0.6463729), (0.7343305, 0.19003859, 0.6516472), (0.8241424, 0.12562299, 0.5522755), (0.90195847, 0.08740707, 0.4228841), (0.7904114, 0.0056089167, 0.6125508), (0.7904114, 0.0056089167, 0.6125508), (0.90195847, 0.08740707, 0.4228841), (0.85161155, 0.12993316, 0.50781405), (0.50237906, -0.73099184, 0.46180746), (0.51933944, -0.43307647, 0.7367029), (0.5598551, -0.7281588, 0.3954075), (0.5479467, -0.12812749, 0.8266424), (0.5875426, -0.037324887, 0.8083321), (0.52417916, 0.019609185, 0.85138226), (0.53343964, 0.27986443, 0.7981968), (0.69891834, -0.071353205, 0.7116332), (0.65877706, 0.11588334, 0.7433599), (-0.101115264, 0.6720564, 0.7335639), (0.024985341, 0.7037727, 0.7099856), (-0.07466462, 0.77266836, 0.63040364), (0.5295451, 0.34683037, 0.7741387), (0.21989535, 0.46821377, 0.8558166), (0.34748375, 0.4804332, 0.8052571), (0.7497193, -0.20978902, 0.6276221), (0.6687691, -0.012982731, 0.7433569), (0.7629182, -0.26861337, 0.5880498), (0.35585794, -0.067901984, 0.9320699), (0.47512138, -0.13482873, 0.8695291), (0.46756858, -0.46228462, 0.7534405), (0.5036354, 0.08328612, 0.85989237), (0.3377375, 0.23690069, 0.9109399), (0.40194345, 0.27107918, 0.87461853), (0.21076278, 0.59047675, 0.7790484), (0.15229794, 0.37084228, 0.9161231), (0.3472462, 0.41306263, 0.84190226), (0.38218302, 0.52420086, 0.76101875), (0.5520378, 0.2651683, 0.7905316), (0.5147164, 0.28035697, 0.8102265), (0.7915214, -0.15936886, 0.58999616), (0.78336495, 0.20648178, 0.5862633), (0.6176859, 0.29864606, 0.7275127), (-0.9207175, 0.38214493, -0.07902244), (-0.95097476, 0.25195938, -0.17934175), (-0.9279822, 0.3141734, -0.20035993), (0.7618923, -0.04150026, 0.6463729), (0.6410679, -0.23989049, 0.72902983), (0.6090845, -0.20589904, 0.76591235), (0.7343305, 0.19003859, 0.6516472), (0.68410426, 0.40645608, 0.6056359), (0.61160696, 0.36143324, 0.7037777), (0.5670157, 0.38976982, 0.72565323), (0.8241424, 0.12562299, 0.5522755), (0.6952787, -0.029978897, 0.7181148), (0.07189729, -0.54036313, -0.8383545), (0.06840639, -0.5524936, -0.83070534), (0.100453675, -0.519082, -0.8488009), (0.724455, -0.1865872, 0.6635889), (0.7072956, -0.017524727, 0.70670074), (0.5875426, -0.037324887, 0.8083321), (0.5875426, -0.037324887, 0.8083321), (0.61223006, -0.13066587, 0.7798081), (0.5213032, -0.0993099, 0.8475734), (0.52417916, 0.019609185, 0.85138226), (0.5875426, -0.037324887, 0.8083321), (0.5213032, -0.0993099, 0.8475734), (0.3445099, -0.7736157, -0.53181934), (0.4275785, -0.6898094, -0.5842427), (0.47000778, -0.79117054, -0.39133346), (-0.52077544, 0.38204813, 0.7634345), (-0.28025487, 0.3406953, 0.8974318), (-0.18640007, 0.7097053, 0.6793919), (0.44153064, 0.2671292, 0.8565586), (0.28562865, 0.2665702, 0.92051977), (0.5295451, 0.34683037, 0.7741387), (0.5631056, 0.111231536, 0.8188649), (0.42323548, 0.2717208, 0.8643145), (0.2826537, 0.21204098, 0.93549204), (0.55669487, 0.25641346, 0.7901538), (0.6090845, -0.20589904, 0.76591235), (0.26924786, 0.27496895, 0.922983), (0.68410426, 0.40645608, 0.6056359), (0.83112574, 0.35790464, 0.42559874), (0.5670157, 0.38976982, 0.72565323), (0.97039586, -0.11759811, 0.2109559), (0.79264647, 0.17295048, 0.5846362), (0.88046247, -0.34468678, 0.32554084), (0.48443997, 0.34628278, 0.8033718), (0.61223626, 0.30116135, 0.7310735), (0.57391804, 0.44197628, 0.689402), (0.5432547, -0.23483822, 0.80605537), (0.43418202, -0.21767944, 0.87412906), (0.4879689, -0.2063295, 0.8481242), (0.931049, 0.36383775, 0.027747536), (0.8714515, 0.48784792, 0.050760273), (0.9115882, 0.39404604, 0.11719492), (0.9918953, 0.1111465, 0.06156539), (0.9842109, 0.07599091, 0.15985686), (0.9917053, 0.1263945, 0.0233474), (0.57372916, -0.1623492, 0.8027936), (0.724455, -0.1865872, 0.6635889), (0.5875426, -0.037324887, 0.8083321), (0.43418202, -0.21767944, 0.87412906), (0.5432547, -0.23483822, 0.80605537), (0.44925606, -0.16963077, 0.8771513), (0.5023375, -0.08355959, 0.8606247), (0.5432547, -0.23483822, 0.80605537), (0.4879689, -0.2063295, 0.8481242), (0.5631056, 0.111231536, 0.8188649), (0.2826537, 0.21204098, 0.93549204), (0.526669, 0.1348011, 0.83931416), (0.7915214, -0.15936886, 0.58999616), (0.6176859, 0.29864606, 0.7275127), (0.6905752, 0.02852649, 0.7226978), (0.25655803, -0.8464801, -0.4665291), (0.057034962, -0.7214882, -0.6900737), (0.25492045, -0.8550625, -0.4515348), (0.5726825, 0.13970612, 0.80778515), (0.7199228, 0.038375366, 0.6929924), (0.6241327, 0.06977065, 0.77819693), (-0.8246584, 0.28072074, -0.49105445), (-0.7033694, -0.21921806, -0.6761767), (-0.32959914, 0.44554067, -0.8323809), (0.7618923, -0.04150026, 0.6463729), (0.8341985, 0.088354476, 0.54434025), (0.7343305, 0.19003859, 0.6516472), (0.8341985, 0.088354476, 0.54434025), (0.79574144, 0.30151072, 0.5252493), (0.7343305, 0.19003859, 0.6516472), (0.7343305, 0.19003859, 0.6516472), (0.79574144, 0.30151072, 0.5252493), (0.68410426, 0.40645608, 0.6056359), (0.68410426, 0.40645608, 0.6056359), (0.77743036, 0.4899097, 0.39444962), (0.83112574, 0.35790464, 0.42559874), (0.5670157, 0.38976982, 0.72565323), (0.83112574, 0.35790464, 0.42559874), (0.8241424, 0.12562299, 0.5522755), (0.51933944, -0.43307647, 0.7367029), (0.50237906, -0.73099184, 0.46180746), (0.4461692, -0.22564271, 0.866036), (0.42252034, 0.103481725, 0.90042657), (0.47717416, 0.21026558, 0.8532837), (0.4585565, -0.028348925, 0.8882129), (0.5213032, -0.0993099, 0.8475734), (0.61223006, -0.13066587, 0.7798081), (0.54088074, -0.27016473, 0.7965294), (0.61223626, 0.30116135, 0.7310735), (0.48443997, 0.34628278, 0.8033718), (0.5248533, 0.1704094, 0.8339603), (0.5726825, 0.13970612, 0.80778515), (0.5520378, 0.2651683, 0.7905316), (0.7199228, 0.038375366, 0.6929924), (0.6308456, -0.057728786, 0.77375793), (0.62287766, -0.043603897, 0.7811032), (0.6497346, -0.253816, 0.71653485), (0.55669487, 0.25641346, 0.7901538), (0.7618923, -0.04150026, 0.6463729), (0.6090845, -0.20589904, 0.76591235), (0.79574144, 0.30151072, 0.5252493), (0.77743036, 0.4899097, 0.39444962), (0.68410426, 0.40645608, 0.6056359), (0.64765865, 0.21726725, 0.73029673), (0.40377453, 0.57093114, 0.7148452), (0.6245076, -0.44971856, 0.6385479), (0.724455, -0.1865872, 0.6635889), (0.57372916, -0.1623492, 0.8027936), (0.6472511, -0.33127862, 0.6865279), (0.6121905, 0.09096712, 0.7854603), (0.61223626, 0.30116135, 0.7310735), (0.5248533, 0.1704094, 0.8339603), (0.63457394, 0.08633792, 0.7680245), (0.5402955, 0.05489152, 0.83968306), (0.6319527, 0.04173801, 0.77388227), (0.51348805, 0.41205767, 0.7526875), (0.3797876, 0.58644396, 0.7154333), (0.3472462, 0.41306263, 0.84190226), (0.4551225, -0.4610238, 0.76178783), (0.43389198, -0.31896162, 0.84261566), (0.42572716, -0.21335113, 0.87933934), (0.93717116, 0.17813864, 0.2999613), (0.85161155, 0.12993316, 0.50781405), (0.90195847, 0.08740707, 0.4228841), (-0.8176909, -0.5715781, 0.06841176), (-0.74939865, -0.6407484, 0.16686325), (-0.88560915, -0.41817006, 0.20206507), (0.21601784, 0.08309092, 0.9728475), (0.24947077, -0.28938565, 0.92413217), (0.6517776, -0.12347161, 0.74829185), (0.8341985, 0.088354476, 0.54434025), (0.83304924, 0.2742929, 0.48040846), (0.79574144, 0.30151072, 0.5252493), (-0.3220169, 0.68951935, 0.6487435), (-0.32711035, 0.8158708, 0.47681615), (-0.2333105, 0.87541354, 0.42334047), (0.5155282, 0.38745424, 0.76427084), (0.39868033, 0.43680388, 0.8063848), (0.5079443, 0.45772973, 0.72970957), (0.6264436, -0.7512508, -0.20782378), (0.45945284, -0.78982055, -0.4063086), (0.81515265, -0.53872156, -0.21285026), (0.5155282, 0.38745424, 0.76427084), (0.3662903, 0.46227968, 0.807545), (0.39868033, 0.43680388, 0.8063848), (0.58896244, -0.2319599, 0.7741562), (0.5794381, -0.14437142, 0.8021275), (0.57495075, 0.00039885307, 0.81818795), (-0.9771185, -0.17707905, 0.117823794), (-0.99763674, -0.05126775, -0.045744807), (-0.98665786, -0.13022158, -0.09771668), (0.5248533, 0.1704094, 0.8339603), (0.42323548, 0.2717208, 0.8643145), (0.5631056, 0.111231536, 0.8188649), (0.6308456, -0.057728786, 0.77375793), (0.63457394, 0.08633792, 0.7680245), (0.62287766, -0.043603897, 0.7811032), (0.57345635, 0.013384477, 0.8191267), (0.5213032, -0.0993099, 0.8475734), (0.6424963, -0.18739134, 0.7430228), (0.52417916, 0.019609185, 0.85138226), (0.5213032, -0.0993099, 0.8475734), (0.57345635, 0.013384477, 0.8191267), (0.55669487, 0.25641346, 0.7901538), (0.7859484, 0.13281927, 0.60385776), (0.7618923, -0.04150026, 0.6463729), (0.7618923, -0.04150026, 0.6463729), (0.7859484, 0.13281927, 0.60385776), (0.8341985, 0.088354476, 0.54434025), (0.79574144, 0.30151072, 0.5252493), (0.8547374, 0.35883695, 0.3750466), (0.77743036, 0.4899097, 0.39444962), (0.26462433, 0.20451565, 0.9424157), (0.25456768, 0.022397261, 0.96679556), (0.17015596, 0.044459715, 0.9844137), (0.47512138, -0.13482873, 0.8695291), (0.4842816, -0.367748, 0.793872), (0.5371548, -0.50438434, 0.676063), (0.7066259, 0.4049323, 0.58026683), (0.81504124, 0.41989926, 0.39923972), (0.72817004, 0.49180785, 0.4773819), (0.5371548, -0.50438434, 0.676063), (0.4842816, -0.367748, 0.793872), (0.5847688, -0.42664802, 0.68993986), (0.5689974, 0.19954504, 0.79776174), (0.47717416, 0.21026558, 0.8532837), (0.42252034, 0.103481725, 0.90042657), (0.5402955, 0.05489152, 0.83968306), (0.5248533, 0.1704094, 0.8339603), (0.6319527, 0.04173801, 0.77388227), (0.61223626, 0.30116135, 0.7310735), (0.6708148, 0.3738905, 0.64047897), (0.57391804, 0.44197628, 0.689402), (0.8054973, -0.23525979, 0.5438998), (0.724455, -0.1865872, 0.6635889), (0.73160446, -0.32147673, 0.60117185), (0.8064504, 0.36136454, 0.46803123), (0.78336495, 0.20648178, 0.5862633), (0.7199228, 0.038375366, 0.6929924), (0.63457394, 0.08633792, 0.7680245), (0.5631056, 0.111231536, 0.8188649), (0.526669, 0.1348011, 0.83931416), (0.68817925, -0.1795562, -0.7029714), (0.76560986, -0.10898166, -0.63400674), (0.6934749, -0.32417312, -0.6434318), (0.7175917, -0.6460656, -0.26011795), (0.83682686, -0.5141604, -0.18804199), (0.8341831, -0.50516784, -0.22123319), (0.7859484, 0.13281927, 0.60385776), (0.83304924, 0.2742929, 0.48040846), (0.8341985, 0.088354476, 0.54434025), (-0.49044955, 0.84781194, -0.20167837), (-0.50847834, 0.7502318, -0.42261335), (-0.61607623, 0.71149987, -0.3379616), (-0.1864253, -0.48720965, -0.85315436), (-0.34574425, -0.25724158, -0.902379), (-0.18033013, -0.39411464, -0.90119624), (0.40932652, -0.5690106, 0.71321714), (0.4551225, -0.4610238, 0.76178783), (0.30929923, -0.40474993, 0.8605298), (0.5147164, 0.28035697, 0.8102265), (0.69891834, -0.071353205, 0.7116332), (0.53343964, 0.27986443, 0.7981968), (0.5620079, 0.36322513, 0.7431114), (0.3958961, 0.30342558, 0.86671746), (0.23804793, 0.49164066, 0.8376293), (0.62266505, -0.3998455, 0.6726157), (0.6071203, -0.37861893, 0.6986078), (0.7257419, -0.37918338, 0.5740372), (0.3950109, -0.21165003, 0.8939634), (0.4746064, -0.16125263, 0.8653013), (0.51347804, -0.24082421, 0.82361645), (0.82868356, 0.046178788, 0.55780905), (0.8732383, 0.14306416, 0.46581903), (0.8255473, 0.23446113, 0.5133222), (0.6424963, -0.18739134, 0.7430228), (0.54088074, -0.27016473, 0.7965294), (0.6497346, -0.253816, 0.71653485), (0.6424963, -0.18739134, 0.7430228), (0.5213032, -0.0993099, 0.8475734), (0.54088074, -0.27016473, 0.7965294), (-0.4797482, 0.14914988, -0.86463636), (-0.57392466, 0.27946785, -0.76974547), (-0.42159325, 0.22854634, -0.8775111), (0.83304924, 0.2742929, 0.48040846), (0.8547374, 0.35883695, 0.3750466), (0.79574144, 0.30151072, 0.5252493), (0.16645803, -0.96984106, -0.17804499), (0.21423133, -0.8084097, -0.5482506), (0.22729917, -0.9318606, -0.28279096), (0.21065009, 0.06081783, 0.97566783), (0.21663934, -0.32630387, 0.920105), (0.17015596, 0.044459715, 0.9844137), (0.25520527, 0.39804116, 0.8811547), (0.46180364, 0.3621217, 0.8096946), (0.23540291, 0.5110494, 0.8266886), (0.24584846, -0.086955965, 0.96540004), (0.21065009, 0.06081783, 0.97566783), (0.17015596, 0.044459715, 0.9844137), (0.80687773, -0.03948551, 0.58939743), (0.82868356, 0.046178788, 0.55780905), (0.74183, -0.0202907, 0.6702809), (0.7438177, -0.039137285, 0.6672357), (0.80687773, -0.03948551, 0.58939743), (0.7183273, -0.06666177, 0.69250417), (0.16645803, -0.96984106, -0.17804499), (0.35887057, -0.9229695, -0.1390655), (0.4877713, -0.78026503, -0.39149147), (0.35585794, -0.067901984, 0.9320699), (0.46756858, -0.46228462, 0.7534405), (0.4313926, -0.5462701, 0.7179759), (0.38218302, 0.52420086, 0.76101875), (0.5147164, 0.28035697, 0.8102265), (0.35952163, 0.55715156, 0.7485495), (0.7589967, 0.20110062, 0.6192596), (0.7619908, 0.3437566, 0.5488183), (0.6708148, 0.3738905, 0.64047897), (0.46180364, 0.3621217, 0.8096946), (0.3866582, 0.49182975, 0.78012747), (0.23540291, 0.5110494, 0.8266886), (0.89868915, -0.43727162, 0.033930734), (0.9279927, -0.33636194, -0.16028197), (0.9594049, -0.28178936, 0.011700911), (0.28573522, 0.03348485, 0.95772344), (0.16608538, 0.027675416, 0.9857229), (0.22328147, -0.076789305, 0.9717246), (0.4455544, -0.8584529, 0.25404683), (0.5291761, -0.4985117, 0.6866285), (0.50237906, -0.73099184, 0.46180746), (0.61699003, -0.030050602, 0.786397), (0.5402955, 0.05489152, 0.83968306), (0.6308456, -0.057728786, 0.77375793), (0.6087463, -0.17568767, 0.7736679), (0.5036354, 0.08328612, 0.85989237), (0.44925606, -0.16963077, 0.8771513), (-0.34574425, -0.25724158, -0.902379), (-0.41959354, -0.0753968, -0.9045754), (-0.18033013, -0.39411464, -0.90119624), (-0.605461, -0.4717681, 0.64097726), (-0.7638933, 0.045113526, 0.64376384), (-0.6603598, -0.3598595, 0.65910995), (0.5503341, -0.55431485, 0.6243936), (0.37219942, -0.5005989, 0.7815807), (0.48341167, -0.73504114, 0.47542375), (0.7859484, 0.13281927, 0.60385776), (0.55669487, 0.25641346, 0.7901538), (0.33469716, 0.57536525, 0.7462793), (-0.92169434, -0.38049635, -0.07551261), (-0.9925045, -0.10919387, 0.054877568), (-0.9480551, -0.3159854, 0.03667171), (0.8637933, 0.024953382, 0.50322795), (0.8790072, -0.016112523, 0.47653624), (0.8334079, -0.03333406, 0.5516522), (0.25456768, 0.022397261, 0.96679556), (0.18212533, -0.013370693, 0.98318446), (0.17015596, 0.044459715, 0.9844137), (0.5402955, 0.05489152, 0.83968306), (0.61699003, -0.030050602, 0.786397), (0.5248533, 0.1704094, 0.8339603), (0.33870253, -0.08764067, 0.9368029), (0.27475986, 0.19792292, 0.94092166), (0.28573522, 0.03348485, 0.95772344), (0.7613839, 0.121778704, 0.636761), (0.8394417, 0.30937803, 0.44679174), (0.6477321, 0.42353454, 0.63329434), (0.5155282, 0.38745424, 0.76427084), (0.7066259, 0.4049323, 0.58026683), (0.5752987, 0.49384677, 0.6520327), (0.5385217, -0.3531282, 0.7650457), (0.5479467, -0.12812749, 0.8266424), (0.5794381, -0.14437142, 0.8021275), (-0.1502784, -0.695545, -0.7025907), (0.06840639, -0.5524936, -0.83070534), (-0.19951603, -0.60166353, -0.7734302), (0.5385217, -0.3531282, 0.7650457), (0.5794381, -0.14437142, 0.8021275), (0.58896244, -0.2319599, 0.7741562), (0.55664706, -0.103725865, 0.8242482), (0.4842816, -0.367748, 0.793872), (0.47512138, -0.13482873, 0.8695291), (0.63005215, 0.06056474, 0.7741875), (0.8054973, -0.23525979, 0.5438998), (0.73160446, -0.32147673, 0.60117185), (0.98415905, -0.10507068, 0.14279798), (0.99068445, -0.04349092, -0.12904574), (0.99170935, 0.12236345, 0.03924041), (0.99068445, -0.04349092, -0.12904574), (0.93415296, 0.33030346, -0.13512185), (0.99170935, 0.12236345, 0.03924041), (0.98106885, 0.04682403, -0.18791324), (0.99612904, 0.08727966, -0.010440441), (0.99246705, 0.054656122, -0.109644346), (0.50237906, -0.73099184, 0.46180746), (0.5291761, -0.4985117, 0.6866285), (0.4461692, -0.22564271, 0.866036), (0.7619908, 0.3437566, 0.5488183), (0.81504124, 0.41989926, 0.39923972), (0.7066259, 0.4049323, 0.58026683), (0.4325463, -0.90036434, 0.047412522), (0.2974425, -0.91589993, -0.26954654), (0.23170437, -0.8931248, -0.38554016), (0.73160446, -0.32147673, 0.60117185), (0.62266505, -0.3998455, 0.6726157), (0.26782945, 0.0053843213, 0.9634513), (0.7589967, 0.20110062, 0.6192596), (0.6708148, 0.3738905, 0.64047897), (0.61223626, 0.30116135, 0.7310735), (-0.23781012, 0.25532416, -0.93715304), (-0.32487574, 0.3613849, -0.873989), (-0.58459914, 0.36610252, -0.7240254), (0.26259902, 0.70785326, 0.6557328), (0.35952163, 0.55715156, 0.7485495), (0.17070511, 0.80760896, 0.56447095), (0.5479467, -0.12812749, 0.8266424), (0.52417916, 0.019609185, 0.85138226), (0.5794381, -0.14437142, 0.8021275), (-0.025121022, -0.944091, -0.32872617), (-0.26533762, -0.9466754, -0.18276124), (0.45199344, -0.8476778, -0.27774844), (0.6708148, 0.3738905, 0.64047897), (0.5079443, 0.45772973, 0.72970957), (0.57391804, 0.44197628, 0.689402), (0.5520378, 0.2651683, 0.7905316), (0.5726825, 0.13970612, 0.80778515), (0.6241327, 0.06977065, 0.77819693), (0.9917053, 0.1263945, 0.0233474), (0.99246705, 0.054656122, -0.109644346), (0.99612904, 0.08727966, -0.010440441), (0.9286086, 0.35685587, -0.10168594), (0.3509934, 0.8128238, -0.46488836), (0.9298531, 0.065071344, -0.3621309), (0.7183273, -0.06666177, 0.69250417), (0.74183, -0.0202907, 0.6702809), (0.61223006, -0.13066587, 0.7798081), (0.080321275, -0.56148475, 0.82357955), (0.20669228, -0.64587563, 0.7349305), (-0.029292079, -0.3112522, 0.9498758), (0.11136336, -0.28162184, 0.95304114), (0.13590449, 0.104346834, 0.98521155), (-0.14152348, 0.015151654, 0.989819), (-0.14152348, 0.015151654, 0.989819), (0.13590449, 0.104346834, 0.98521155), (-0.2703541, 0.38242364, 0.8835502), (0.13590449, 0.104346834, 0.98521155), (0.12760359, 0.33755198, 0.9326177), (-0.2703541, 0.38242364, 0.8835502), (0.48341167, -0.73504114, 0.47542375), (0.37219942, -0.5005989, 0.7815807), (0.40931383, -0.7031981, 0.5813559), (0.82570726, -0.521061, -0.21610896), (0.81010336, -0.51947004, -0.2718149), (0.7611136, -0.5836421, -0.2829628), (0.4708306, 0.28275272, 0.835685), (0.17070511, 0.80760896, 0.56447095), (0.21201095, 0.6464619, 0.73289716), (0.42252034, 0.103481725, 0.90042657), (0.3292842, -0.021435365, 0.94398755), (0.28573522, 0.03348485, 0.95772344), (-0.9454336, -0.27170563, 0.17980929), (-0.9925045, -0.10919387, 0.054877568), (-0.9079555, -0.4165237, 0.046095967), (0.079860196, 0.7080619, -0.70162016), (0.7141602, 0.6879384, 0.12928985), (0.7657911, 0.57791793, -0.28208998), (0.41535625, -0.099328056, 0.90421957), (0.28573522, 0.03348485, 0.95772344), (0.22328147, -0.076789305, 0.9717246), (0.6245076, -0.44971856, 0.6385479), (0.40377453, 0.57093114, 0.7148452), (0.4708306, 0.28275272, 0.835685), (0.5503341, -0.55431485, 0.6243936), (0.49719888, -0.32317707, 0.8052017), (0.37219942, -0.5005989, 0.7815807), (0.31924212, 0.796362, 0.513704), (0.09416055, 0.853342, 0.51277804), (0.30334, 0.5943287, 0.74482083), (0.7914296, -0.26015776, 0.5531339), (0.7800137, -0.4007698, 0.48058534), (0.91270494, -0.20119324, 0.35565582), (0.20326447, 0.45285785, 0.8681032), (0.18095034, 0.6055266, 0.77498037), (0.18990594, 0.46538013, 0.86449826), (0.6497346, -0.253816, 0.71653485), (0.54088074, -0.27016473, 0.7965294), (0.6308456, -0.057728786, 0.77375793), (0.38218302, 0.52420086, 0.76101875), (0.35952163, 0.55715156, 0.7485495), (0.26259902, 0.70785326, 0.6557328), (0.91738075, 0.01338988, 0.39778554), (0.7613839, 0.121778704, 0.636761), (0.83853906, -0.085656226, 0.53806627), (0.48443997, 0.34628278, 0.8033718), (0.46460974, 0.47212803, 0.74915487), (0.5248533, 0.1704094, 0.8339603), (0.7870885, -0.54598624, 0.28703767), (0.9250203, -0.31584644, 0.21113618), (0.7800137, -0.4007698, 0.48058534), (0.69891834, -0.071353205, 0.7116332), (0.7686523, -0.2125843, 0.60330886), (0.65877706, 0.11588334, 0.7433599), (0.5972616, 0.7425547, -0.30313534), (0.48313183, 0.70233595, -0.5227884), (0.19816753, 0.8928737, -0.40435898), (0.7800512, -0.62379897, 0.048939), (0.8157006, -0.57242763, -0.08342118), (0.89868915, -0.43727162, 0.033930734), (0.7244332, 0.68780965, -0.045983385), (0.90724313, 0.38943306, 0.1589085), (0.93415296, 0.33030346, -0.13512185), (0.39555016, -0.08151908, -0.9148195), (0.8700867, -0.17603566, -0.4603918), (-0.14047794, -0.34555006, -0.9278259), (0.048624907, 0.63666934, 0.7696024), (0.3186479, 0.3910822, 0.863434), (0.37906346, 0.6066238, 0.69879776), (0.5620079, 0.36322513, 0.7431114), (0.8983721, 0.31096193, 0.31021002), (0.793357, -0.054449186, 0.6063167), (0.793357, -0.054449186, 0.6063167), (0.8983721, 0.31096193, 0.31021002), (0.9491198, 0.06107513, 0.30893606), (0.5976201, 0.584136, 0.5492134), (0.8983721, 0.31096193, 0.31021002), (0.5620079, 0.36322513, 0.7431114), (0.2047279, 0.22788744, -0.9519211), (0.6074403, 0.5816071, -0.5410632), (0.9294046, 0.26653555, -0.25527623), (0.31038076, -0.0294251, 0.9501568), (0.31110305, 0.14118168, 0.9398311), (0.13590449, 0.104346834, 0.98521155), (-0.0030211906, -0.9924018, 0.123002425), (0.0017964055, -0.99373937, 0.1117092), (0.07709324, -0.9636072, -0.25596443), (-0.81088346, 0.51771635, 0.272833), (-0.50848097, 0.80318505, 0.31038842), (-0.19833784, 0.8949851, 0.3995795), (0.34748375, 0.4804332, 0.8052571), (0.24642, 0.41090232, 0.8777451), (0.47717416, 0.21026558, 0.8532837), (0.913919, 0.2985505, -0.2749904), (0.83672124, 0.41857317, -0.35312063), (0.87425536, 0.4388207, -0.20763896), (0.44054836, -0.18645185, 0.8781531), (0.23926726, -0.14382397, 0.96024257), (0.30929923, -0.40474993, 0.8605298), (0.78336495, 0.20648178, 0.5862633), (-0.06844584, 0.94972205, 0.30552137), (0.6176859, 0.29864606, 0.7275127), (0.69891834, -0.071353205, 0.7116332), (0.7629182, -0.26861337, 0.5880498), (0.7686523, -0.2125843, 0.60330886), (0.74183, -0.0202907, 0.6702809), (0.61699003, -0.030050602, 0.786397), (0.6308456, -0.057728786, 0.77375793), (0.64249104, 0.4363511, 0.6299231), (0.38218302, 0.52420086, 0.76101875), (0.5303081, 0.4689901, 0.706273), (0.88046247, -0.34468678, 0.32554084), (0.79264647, 0.17295048, 0.5846362), (0.5303081, 0.4689901, 0.706273), (0.18095034, 0.6055266, 0.77498037), (0.07472834, 0.58994323, 0.80397934), (0.18990594, 0.46538013, 0.86449826), (0.11136336, -0.28162184, 0.95304114), (0.31038076, -0.0294251, 0.9501568), (0.13590449, 0.104346834, 0.98521155), (0.27475986, 0.19792292, 0.94092166), (0.42252034, 0.103481725, 0.90042657), (0.28573522, 0.03348485, 0.95772344), (0.9362669, -0.00075243076, 0.35128856), (0.8790072, -0.016112523, 0.47653624), (0.8637933, 0.024953382, 0.50322795), (0.61223006, -0.13066587, 0.7798081), (0.5848102, -0.1820291, 0.79048246), (0.54088074, -0.27016473, 0.7965294), (0.61223006, -0.13066587, 0.7798081), (0.6308456, -0.057728786, 0.77375793), (0.5848102, -0.1820291, 0.79048246), (0.8699443, -0.29174265, -0.3975969), (0.9213224, -0.12969649, -0.36652952), (0.9279927, -0.33636194, -0.16028197), (0.48421824, 0.2921103, 0.824745), (0.8637933, 0.024953382, 0.50322795), (0.63005215, 0.06056474, 0.7741875), (0.54629874, 0.09560602, 0.832116), (0.5620079, 0.36322513, 0.7431114), (0.793357, -0.054449186, 0.6063167), (0.31110305, 0.14118168, 0.9398311), (0.26540065, 0.50993603, 0.8182468), (0.12760359, 0.33755198, 0.9326177), (0.24343874, 0.772614, 0.5863489), (0.26259902, 0.70785326, 0.6557328), (0.17070511, 0.80760896, 0.56447095), (0.82868356, 0.046178788, 0.55780905), (0.7589967, 0.20110062, 0.6192596), (0.7631525, -0.024783134, 0.64574313), (0.3292842, -0.021435365, 0.94398755), (0.42252034, 0.103481725, 0.90042657), (0.4585565, -0.028348925, 0.8882129), (0.74183, -0.0202907, 0.6702809), (0.6308456, -0.057728786, 0.77375793), (0.61223006, -0.13066587, 0.7798081), (0.6121905, 0.09096712, 0.7854603), (0.7589967, 0.20110062, 0.6192596), (0.61223626, 0.30116135, 0.7310735), (0.61079043, -0.6132706, 0.5008335), (0.7870885, -0.54598624, 0.28703767), (0.7800137, -0.4007698, 0.48058534), (0.94052345, 0.28376985, -0.18678981), (0.8494472, 0.21180317, -0.48330003), (0.97447985, -0.17888117, -0.1356112), (0.8699443, -0.29174265, -0.3975969), (0.9279927, -0.33636194, -0.16028197), (0.848993, -0.47340342, -0.23473416), (0.3950109, -0.21165003, 0.8939634), (0.51347804, -0.24082421, 0.82361645), (0.44979906, -0.21742286, 0.86626107), (-0.1635049, 0.18375777, -0.9692777), (-0.30569237, -0.08142651, -0.94864213), (-0.111391515, 0.12844002, -0.9854415), (-0.49264413, 0.09452328, -0.8650821), (-0.60296595, 0.29914132, -0.73955834), (-0.5261304, 0.07361911, -0.84721136), (0.91270494, -0.20119324, 0.35565582), (0.83853906, -0.085656226, 0.53806627), (0.7914296, -0.26015776, 0.5531339), (0.83853906, -0.085656226, 0.53806627), (0.91270494, -0.20119324, 0.35565582), (0.91738075, 0.01338988, 0.39778554), (0.7613839, 0.121778704, 0.636761), (0.91738075, 0.01338988, 0.39778554), (0.8394417, 0.30937803, 0.44679174), (-0.028711615, 0.77819705, 0.62736356), (-0.0581781, 0.09551162, 0.99372673), (-0.11455444, 0.5865993, 0.8017348), (0.6708148, 0.3738905, 0.64047897), (0.7619908, 0.3437566, 0.5488183), (0.7066259, 0.4049323, 0.58026683), (-0.8368754, -0.54651237, 0.031046543), (-0.7835958, -0.60634196, 0.135378), (-0.8162737, -0.559295, 0.14452073), (0.8334079, -0.03333406, 0.5516522), (0.7072956, -0.017524727, 0.70670074), (0.81274587, -0.11396128, 0.5713643), (0.8334079, -0.03333406, 0.5516522), (0.80687773, -0.03948551, 0.58939743), (0.7438177, -0.039137285, 0.6672357), (0.6123733, -0.28682697, 0.7367016), (0.793357, -0.054449186, 0.6063167), (0.8318086, -0.3919076, 0.39306858), (0.54629874, 0.09560602, 0.832116), (0.3958961, 0.30342558, 0.86671746), (0.5620079, 0.36322513, 0.7431114), (0.79446137, 0.49406892, -0.35316715), (0.80688834, 0.4972827, -0.31881186), (0.83672124, 0.41857317, -0.35312063), (0.4576426, -0.57375616, -0.6792401), (0.54554, -0.72752625, -0.41604286), (0.4275785, -0.6898094, -0.5842427), (0.99170935, 0.12236345, 0.03924041), (0.93415296, 0.33030346, -0.13512185), (0.90724313, 0.38943306, 0.1589085), (0.3557596, -0.09067761, 0.9301681), (0.44194674, -0.082144774, 0.8932722), (0.06586055, 0.2137245, 0.97467136), (0.5385217, -0.3531282, 0.7650457), (0.6472511, -0.33127862, 0.6865279), (0.57372916, -0.1623492, 0.8027936), (0.9772121, 0.14118071, 0.15850712), (0.8761255, 0.4182807, 0.23967777), (0.92486155, 0.28620204, 0.25043866), (0.23926726, -0.14382397, 0.96024257), (0.44054836, -0.18645185, 0.8781531), (0.3950109, -0.21165003, 0.8939634), (0.33754775, -0.6609498, -0.67022896), (0.6900427, -0.62094134, -0.37185043), (0.56610864, -0.6372172, -0.5229485), (0.057034962, -0.7214882, -0.6900737), (-0.1864253, -0.48720965, -0.85315436), (-0.021990784, -0.6079759, -0.7936509), (0.6123733, -0.28682697, 0.7367016), (0.54629874, 0.09560602, 0.832116), (0.793357, -0.054449186, 0.6063167), (0.54629874, 0.09560602, 0.832116), (0.5549209, 0.22934762, 0.7996639), (0.3958961, 0.30342558, 0.86671746), (0.36375645, -0.89763147, -0.24887547), (0.83682686, -0.5141604, -0.18804199), (0.7175917, -0.6460656, -0.26011795), (0.913919, 0.2985505, -0.2749904), (0.91915107, 0.22936215, -0.32024097), (0.8584517, 0.30511788, -0.41226652), (0.71676046, -0.66356426, 0.21432917), (0.27994588, -0.95662403, 0.080628105), (0.4663243, -0.87188613, 0.14951973), (0.40194345, 0.27107918, 0.87461853), (0.42252034, 0.103481725, 0.90042657), (0.27475986, 0.19792292, 0.94092166), (0.49719888, -0.32317707, 0.8052017), (0.44194674, -0.082144774, 0.8932722), (0.3557596, -0.09067761, 0.9301681), (0.67618173, -0.42391613, -0.6025555), (0.7554652, -0.25161803, -0.60494685), (0.7773464, -0.4599915, -0.42911586), (-0.1635049, 0.18375777, -0.9692777), (-0.088106014, 0.24852572, -0.96461), (-0.20028117, 0.25201452, -0.94677144), (0.8334079, -0.03333406, 0.5516522), (0.8790072, -0.016112523, 0.47653624), (0.80687773, -0.03948551, 0.58939743), (0.6071203, -0.37861893, 0.6986078), (0.6472511, -0.33127862, 0.6865279), (0.5385217, -0.3531282, 0.7650457), (0.7072956, -0.017524727, 0.70670074), (0.8334079, -0.03333406, 0.5516522), (0.7438177, -0.039137285, 0.6672357), (0.51347804, -0.24082421, 0.82361645), (0.3989213, -0.11630111, 0.90958), (0.44979906, -0.21742286, 0.86626107), (0.34438956, 0.5497124, 0.7610599), (0.4429471, 0.70619273, 0.55234927), (0.23326288, 0.7135614, 0.66061985), (0.3662903, 0.46227968, 0.807545), (0.43238065, 0.5242961, 0.73359436), (0.28563854, 0.46243456, 0.8393836), (0.51347804, -0.24082421, 0.82361645), (0.4879689, -0.2063295, 0.8481242), (0.3989213, -0.11630111, 0.90958), (0.6308456, -0.057728786, 0.77375793), (0.5402955, 0.05489152, 0.83968306), (0.63457394, 0.08633792, 0.7680245), (0.21663934, -0.32630387, 0.920105), (0.35585794, -0.067901984, 0.9320699), (0.4313926, -0.5462701, 0.7179759), (0.055428933, 0.14206898, 0.9883036), (0.3038638, -0.12738982, 0.9441602), (0.52420884, -0.5261892, 0.6695744), (0.34076643, 0.92781806, 0.15176255), (0.18241073, 0.9627433, 0.19962882), (0.32449275, 0.8816685, 0.3425861), (0.46756858, -0.46228462, 0.7534405), (0.4551225, -0.4610238, 0.76178783), (0.4313926, -0.5462701, 0.7179759), (0.4746064, -0.16125263, 0.8653013), (0.3950109, -0.21165003, 0.8939634), (0.44054836, -0.18645185, 0.8781531), (0.99257517, 0.06272157, 0.10421382), (0.9491198, 0.06107513, 0.30893606), (0.90119463, 0.3538509, 0.2502753), (0.537906, -0.8258717, -0.16909474), (0.66412526, -0.7449501, -0.063141584), (0.5601152, -0.8276674, 0.03517831), (0.41535625, -0.099328056, 0.90421957), (0.4234684, -0.14581993, 0.89409786), (0.28573522, 0.03348485, 0.95772344), (0.77444136, -0.031207774, 0.6318756), (0.7631525, -0.024783134, 0.64574313), (0.61699003, -0.030050602, 0.786397), (0.38381708, -0.47765252, -0.7902737), (0.8700867, -0.17603566, -0.4603918), (0.8923967, -0.39999035, -0.20889154), (0.45766103, -0.59038997, 0.6648204), (0.6022304, -0.43448967, 0.66972923), (0.43389198, -0.31896162, 0.84261566), (-0.91557515, 0.03375247, 0.40072787), (-0.9565734, 0.11846453, 0.2663332), (-0.9467224, -0.17191997, 0.2723239), (-0.28299472, 0.75980246, -0.58533275), (-0.8246584, 0.28072074, -0.49105445), (-0.32959914, 0.44554067, -0.8323809), (0.42572716, -0.21335113, 0.87933934), (0.288246, -0.07940902, 0.9542581), (0.4746064, -0.16125263, 0.8653013), (0.94207394, 0.034368712, 0.3336397), (0.8790072, -0.016112523, 0.47653624), (0.9362669, -0.00075243076, 0.35128856), (0.8255473, 0.23446113, 0.5133222), (0.8758925, 0.23458774, 0.42164066), (0.83347154, 0.3270561, 0.4453755), (0.4461692, -0.22564271, 0.866036), (0.4708306, 0.28275272, 0.835685), (0.21201095, 0.6464619, 0.73289716), (-0.22197253, 0.3225391, 0.92016125), (-0.21605456, 0.35979885, 0.90767026), (0.055428933, 0.14206898, 0.9883036), (0.24343874, 0.772614, 0.5863489), (0.17070511, 0.80760896, 0.56447095), (0.40377453, 0.57093114, 0.7148452), (0.41535625, -0.099328056, 0.90421957), (0.22328147, -0.076789305, 0.9717246), (0.3989213, -0.11630111, 0.90958), (0.7589967, 0.20110062, 0.6192596), (0.6121905, 0.09096712, 0.7854603), (0.7631525, -0.024783134, 0.64574313), (0.7199228, 0.038375366, 0.6929924), (0.78336495, 0.20648178, 0.5862633), (0.7915214, -0.15936886, 0.58999616), (0.4234684, -0.14581993, 0.89409786), (0.33870253, -0.08764067, 0.9368029), (0.28573522, 0.03348485, 0.95772344), (0.8732383, 0.14306416, 0.46581903), (0.8758925, 0.23458774, 0.42164066), (0.8255473, 0.23446113, 0.5133222), (0.33469716, 0.57536525, 0.7462793), (0.83304924, 0.2742929, 0.48040846), (0.7859484, 0.13281927, 0.60385776), (0.5520378, 0.2651683, 0.7905316), (0.6241327, 0.06977065, 0.77819693), (0.5147164, 0.28035697, 0.8102265), (0.07279701, -0.8265557, 0.55812746), (0.11033541, -0.2923358, 0.9499294), (0.34167877, -0.783338, 0.51926595), (0.8054973, -0.23525979, 0.5438998), (0.81274587, -0.11396128, 0.5713643), (0.724455, -0.1865872, 0.6635889), (0.9362669, -0.00075243076, 0.35128856), (0.8124644, 0.33431724, 0.4776333), (0.9299018, 0.268288, 0.25160345), (0.6491441, -0.645899, 0.40177897), (0.5876403, -0.5747546, 0.56950504), (0.6123733, -0.28682697, 0.7367016), (0.4019803, 0.25786498, 0.87858844), (0.5549209, 0.22934762, 0.7996639), (0.54629874, 0.09560602, 0.832116), (0.4019803, 0.25786498, 0.87858844), (0.28216898, 0.6046376, 0.74484503), (0.5549209, 0.22934762, 0.7996639), (-0.12320392, -0.02447148, -0.99207956), (-0.06838815, -0.026529497, -0.997306), (-0.083006784, 0.021639036, -0.996314), (0.8584517, 0.30511788, -0.41226652), (0.83672124, 0.41857317, -0.35312063), (0.913919, 0.2985505, -0.2749904), (0.31038076, -0.0294251, 0.9501568), (0.3211192, -0.04697445, 0.9458731), (0.31110305, 0.14118168, 0.9398311), (0.7629182, -0.26861337, 0.5880498), (0.6037907, 0.038052984, 0.79623413), (0.7686523, -0.2125843, 0.60330886), (0.5752987, 0.49384677, 0.6520327), (0.3662903, 0.46227968, 0.807545), (0.5155282, 0.38745424, 0.76427084), (0.5875426, -0.037324887, 0.8083321), (0.7183273, -0.06666177, 0.69250417), (0.61223006, -0.13066587, 0.7798081), (0.6424963, -0.18739134, 0.7430228), (0.6497346, -0.253816, 0.71653485), (0.6930141, -0.25431007, 0.67457974), (0.5248533, 0.1704094, 0.8339603), (0.51348805, 0.41205767, 0.7526875), (0.42323548, 0.2717208, 0.8643145), (0.7257419, -0.37918338, 0.5740372), (0.6200667, -0.07976656, 0.78048354), (0.6699192, -0.3878235, 0.63308865), (0.018017918, -0.9994679, -0.027188452), (0.01866885, -0.99972093, -0.014473318), (0.028315727, -0.9993379, -0.022847934), (0.9599588, 0.18890539, -0.20686671), (0.91915107, 0.22936215, -0.32024097), (0.913919, 0.2985505, -0.2749904), (0.430587, -0.6497393, -0.62644523), (-0.14047794, -0.34555006, -0.9278259), (0.38381708, -0.47765252, -0.7902737), (0.4234684, -0.14581993, 0.89409786), (0.43418202, -0.21767944, 0.87412906), (0.33870253, -0.08764067, 0.9368029), (0.39945248, 0.1259264, 0.9080641), (0.40194345, 0.27107918, 0.87461853), (0.27475986, 0.19792292, 0.94092166), (0.5847688, -0.42664802, 0.68993986), (0.5385217, -0.3531282, 0.7650457), (0.58896244, -0.2319599, 0.7741562), (0.40636244, 0.09432664, 0.90883), (0.35585794, -0.067901984, 0.9320699), (0.21065009, 0.06081783, 0.97566783), (0.9491198, 0.06107513, 0.30893606), (0.8983721, 0.31096193, 0.31021002), (0.9728203, 0.059575886, 0.2237664), (-0.13814647, 0.616536, -0.7751121), (-0.28299472, 0.75980246, -0.58533275), (-0.32959914, 0.44554067, -0.8323809), (0.82868356, 0.046178788, 0.55780905), (0.77444136, -0.031207774, 0.6318756), (0.74183, -0.0202907, 0.6702809), (0.83347154, 0.3270561, 0.4453755), (0.81504124, 0.41989926, 0.39923972), (0.7619908, 0.3437566, 0.5488183), (0.5689974, 0.19954504, 0.79776174), (0.42252034, 0.103481725, 0.90042657), (0.40194345, 0.27107918, 0.87461853), (0.617499, -0.5915019, -0.51847905), (0.7773464, -0.4599915, -0.42911586), (0.68052876, -0.6903251, -0.24562559), (0.6491441, -0.645899, 0.40177897), (0.6992543, -0.71367687, 0.041335452), (0.5323394, -0.84450775, 0.058492336), (0.47000778, -0.79117054, -0.39133346), (0.537906, -0.8258717, -0.16909474), (0.38401255, -0.8880041, -0.25294876), (0.3211192, -0.04697445, 0.9458731), (0.29155907, -0.014391211, 0.95644456), (0.31110305, 0.14118168, 0.9398311), (0.6245076, -0.44971856, 0.6385479), (0.4708306, 0.28275272, 0.835685), (0.5291761, -0.4985117, 0.6866285), (0.54088074, -0.27016473, 0.7965294), (0.5848102, -0.1820291, 0.79048246), (0.6308456, -0.057728786, 0.77375793), (0.5847688, -0.42664802, 0.68993986), (0.6022304, -0.43448967, 0.66972923), (0.5371548, -0.50438434, 0.676063), (0.24584846, -0.086955965, 0.96540004), (0.40636244, 0.09432664, 0.90883), (0.21065009, 0.06081783, 0.97566783), (0.62287766, -0.043603897, 0.7811032), (0.526669, 0.1348011, 0.83931416), (0.5036354, 0.08328612, 0.85989237), (0.7631525, -0.024783134, 0.64574313), (0.6121905, 0.09096712, 0.7854603), (0.61699003, -0.030050602, 0.786397), (0.82868356, 0.046178788, 0.55780905), (0.8255473, 0.23446113, 0.5133222), (0.7589967, 0.20110062, 0.6192596), (0.931049, 0.36383775, 0.027747536), (0.8756664, 0.48078087, -0.0453676), (0.8714515, 0.48784792, 0.050760273), (0.54629874, 0.09560602, 0.832116), (0.6123733, -0.28682697, 0.7367016), (0.4019803, 0.25786498, 0.87858844), (0.5781508, 0.1973663, 0.79169947), (0.5899562, -0.0015790844, 0.80743366), (0.5549209, 0.22934762, 0.7996639), (0.28216898, 0.6046376, 0.74484503), (0.5781508, 0.1973663, 0.79169947), (0.5549209, 0.22934762, 0.7996639), (0.12510486, 0.30186772, 0.94510555), (0.06586055, 0.2137245, 0.97467136), (0.44194674, -0.082144774, 0.8932722), (0.817461, -0.06586828, -0.5722053), (0.88654864, -0.10568019, -0.45040348), (0.90839314, -0.0503038, -0.4150799), (0.82868356, 0.046178788, 0.55780905), (0.9028298, 0.076949954, 0.42305678), (0.8732383, 0.14306416, 0.46581903), (0.4879689, -0.2063295, 0.8481242), (0.4234684, -0.14581993, 0.89409786), (0.41535625, -0.099328056, 0.90421957), (0.5479467, -0.12812749, 0.8266424), (0.57372916, -0.1623492, 0.8027936), (0.5875426, -0.037324887, 0.8083321), (0.5385217, -0.3531282, 0.7650457), (0.57372916, -0.1623492, 0.8027936), (0.5479467, -0.12812749, 0.8266424), (0.46460974, 0.47212803, 0.74915487), (0.39868033, 0.43680388, 0.8063848), (0.31702483, 0.522555, 0.7914742), (0.7589967, 0.20110062, 0.6192596), (0.8255473, 0.23446113, 0.5133222), (0.7619908, 0.3437566, 0.5488183), (0.63540214, -0.3790919, 0.6727209), (0.49719888, -0.32317707, 0.8052017), (0.5503341, -0.55431485, 0.6243936), (0.53268355, -0.22607481, 0.81556016), (0.4019803, 0.25786498, 0.87858844), (0.6123733, -0.28682697, 0.7367016), (0.20669228, -0.64587563, 0.7349305), (0.40931383, -0.7031981, 0.5813559), (0.37219942, -0.5005989, 0.7815807), (0.80521214, -0.07608237, -0.5880859), (0.8029297, 0.13806711, -0.5798633), (0.9213224, -0.12969649, -0.36652952), (-0.50615185, 0.7918574, -0.3417193), (-0.47410974, 0.8391813, -0.26644832), (-0.68942064, 0.46358168, -0.5565889), (0.5899562, -0.0015790844, 0.80743366), (0.14828181, 0.43243113, 0.88939065), (0.37538117, 0.23835196, 0.8956994), (0.4879689, -0.2063295, 0.8481242), (0.43418202, -0.21767944, 0.87412906), (0.4234684, -0.14581993, 0.89409786), (0.4275785, -0.6898094, -0.5842427), (0.54554, -0.72752625, -0.41604286), (0.47000778, -0.79117054, -0.39133346), (0.5323394, -0.84450775, 0.058492336), (0.5876403, -0.5747546, 0.56950504), (0.6491441, -0.645899, 0.40177897), (0.88654864, -0.10568019, -0.45040348), (0.9036428, -0.047994588, -0.42558926), (0.9626579, -0.0268924, -0.26938185), (0.53268355, -0.22607481, 0.81556016), (0.6123733, -0.28682697, 0.7367016), (0.5876403, -0.5747546, 0.56950504), (0.9036428, -0.047994588, -0.42558926), (0.94444144, 0.086512014, -0.31708968), (0.9626579, -0.0268924, -0.26938185), (-0.053287975, 0.03853071, -0.9978355), (-0.09012415, -0.022122068, -0.99568474), (0.13239287, 0.092030376, -0.9869156), (0.47512138, -0.13482873, 0.8695291), (0.5371548, -0.50438434, 0.676063), (0.46756858, -0.46228462, 0.7534405), (0.5371548, -0.50438434, 0.676063), (0.45766103, -0.59038997, 0.6648204), (0.46756858, -0.46228462, 0.7534405), (-0.0581781, 0.09551162, 0.99372673), (-0.0027750435, 0.12141987, 0.99259734), (-0.15189363, -0.0077059036, 0.9883668), (0.4313926, -0.5462701, 0.7179759), (0.4551225, -0.4610238, 0.76178783), (0.40932652, -0.5690106, 0.71321714), (0.3067467, 0.30756006, 0.9007293), (0.28216898, 0.6046376, 0.74484503), (0.4019803, 0.25786498, 0.87858844), (0.17401391, 0.7181842, 0.6737438), (0.5781508, 0.1973663, 0.79169947), (0.28216898, 0.6046376, 0.74484503), (0.3067467, 0.30756006, 0.9007293), (0.17401391, 0.7181842, 0.6737438), (0.28216898, 0.6046376, 0.74484503), (0.30929923, -0.40474993, 0.8605298), (0.4551225, -0.4610238, 0.76178783), (0.44054836, -0.18645185, 0.8781531), (0.25456768, 0.022397261, 0.96679556), (0.26462433, 0.20451565, 0.9424157), (0.31110305, 0.14118168, 0.9398311), (0.29155907, -0.014391211, 0.95644456), (0.25456768, 0.022397261, 0.96679556), (0.31110305, 0.14118168, 0.9398311), (0.4585565, -0.028348925, 0.8882129), (0.47717416, 0.21026558, 0.8532837), (0.3057944, 0.15064518, 0.94010407), (0.5303081, 0.4689901, 0.706273), (0.26259902, 0.70785326, 0.6557328), (0.53808373, 0.46222842, 0.70484805), (0.44925606, -0.16963077, 0.8771513), (0.5036354, 0.08328612, 0.85989237), (0.39945248, 0.1259264, 0.9080641), (0.5847688, -0.42664802, 0.68993986), (0.58896244, -0.2319599, 0.7741562), (0.6022304, -0.43448967, 0.66972923), (0.5371548, -0.50438434, 0.676063), (0.6022304, -0.43448967, 0.66972923), (0.45766103, -0.59038997, 0.6648204), (0.6497346, -0.253816, 0.71653485), (0.6087463, -0.17568767, 0.7736679), (0.6930141, -0.25431007, 0.67457974), (0.5248533, 0.1704094, 0.8339603), (0.46460974, 0.47212803, 0.74915487), (0.51348805, 0.41205767, 0.7526875), (0.8029297, 0.13806711, -0.5798633), (0.93007684, 0.10129267, -0.35312444), (0.9213224, -0.12969649, -0.36652952), (0.6087463, -0.17568767, 0.7736679), (0.62287766, -0.043603897, 0.7811032), (0.5036354, 0.08328612, 0.85989237), (0.5794381, -0.14437142, 0.8021275), (0.52417916, 0.019609185, 0.85138226), (0.57495075, 0.00039885307, 0.81818795), (0.63005215, 0.06056474, 0.7741875), (0.8637933, 0.024953382, 0.50322795), (0.86035526, -0.116338596, 0.49624005), (0.61699003, -0.030050602, 0.786397), (0.6121905, 0.09096712, 0.7854603), (0.5248533, 0.1704094, 0.8339603), (0.014819242, -0.70623416, -0.7078232), (-0.012127084, -0.7994914, -0.60055524), (0.23170437, -0.8931248, -0.38554016), (0.5876403, -0.5747546, 0.56950504), (0.51933944, -0.43307647, 0.7367029), (0.53268355, -0.22607481, 0.81556016), (0.53268355, -0.22607481, 0.81556016), (0.3067467, 0.30756006, 0.9007293), (0.4019803, 0.25786498, 0.87858844), (0.86035526, -0.116338596, 0.49624005), (0.8637933, 0.024953382, 0.50322795), (0.8334079, -0.03333406, 0.5516522), (0.968587, 0.20850669, -0.13551457), (0.40791, -0.35522157, -0.84108686), (0.6738203, 0.21030322, -0.70833516), (0.582398, 0.12978964, 0.8024757), (0.7686523, -0.2125843, 0.60330886), (0.6037907, 0.038052984, 0.79623413), (0.31038076, -0.0294251, 0.9501568), (0.11136336, -0.28162184, 0.95304114), (0.2262849, -0.55113804, 0.80314505), (0.5752987, 0.49384677, 0.6520327), (0.43238065, 0.5242961, 0.73359436), (0.3662903, 0.46227968, 0.807545), (0.99246705, 0.054656122, -0.109644346), (0.9286086, 0.35685587, -0.10168594), (0.9298531, 0.065071344, -0.3621309), (0.6424963, -0.18739134, 0.7430228), (0.6930141, -0.25431007, 0.67457974), (0.5023375, -0.08355959, 0.8606247), (0.23170437, -0.8931248, -0.38554016), (0.50692546, -0.85074013, -0.13880861), (0.70696247, -0.6284262, 0.32447585), (0.3153758, -0.32686642, 0.8908964), (0.27950996, -0.040275995, 0.95929766), (0.069934025, -0.16515385, 0.9837853), (0.6708148, 0.3738905, 0.64047897), (0.7066259, 0.4049323, 0.58026683), (0.5155282, 0.38745424, 0.76427084), (0.28619885, 0.2774036, 0.9171355), (0.18990594, 0.46538013, 0.86449826), (0.19276795, 0.31514922, 0.9292586), (0.8318086, -0.3919076, 0.39306858), (0.6992543, -0.71367687, 0.041335452), (0.6491441, -0.645899, 0.40177897), (0.60787714, 0.20397806, 0.76738405), (0.5781508, 0.1973663, 0.79169947), (0.17401391, 0.7181842, 0.6737438), (0.60787714, 0.20397806, 0.76738405), (0.5899562, -0.0015790844, 0.80743366), (0.5781508, 0.1973663, 0.79169947), (0.60787714, 0.20397806, 0.76738405), (0.7686523, -0.2125843, 0.60330886), (0.5899562, -0.0015790844, 0.80743366), (0.99349195, -0.10428091, 0.045817617), (0.9772121, 0.14118071, 0.15850712), (0.9916238, 0.05435835, 0.117163286), (-0.22639912, 0.16232789, 0.9604129), (-0.48213178, -0.10772832, 0.86945015), (-0.6690248, 0.10474818, 0.73582166), (0.5361395, 0.33027858, 0.77683365), (0.37906346, 0.6066238, 0.69879776), (0.3186479, 0.3910822, 0.863434), (0.33521402, 0.4562327, 0.82430774), (-0.13123845, 0.79722327, 0.5892465), (0.6687691, -0.012982731, 0.7433569), (0.12760359, 0.33755198, 0.9326177), (0.26540065, 0.50993603, 0.8182468), (-0.04638948, 0.6240161, 0.78003323), (0.57495075, 0.00039885307, 0.81818795), (0.6424963, -0.18739134, 0.7430228), (0.5023375, -0.08355959, 0.8606247), (0.57495075, 0.00039885307, 0.81818795), (0.5023375, -0.08355959, 0.8606247), (0.54571533, -0.027052846, 0.83753383), (0.64765865, 0.21726725, 0.73029673), (0.24343874, 0.772614, 0.5863489), (0.40377453, 0.57093114, 0.7148452), (0.6930141, -0.25431007, 0.67457974), (0.6087463, -0.17568767, 0.7736679), (0.5432547, -0.23483822, 0.80605537), (0.5573895, 0.08463357, 0.82592624), (0.7613839, 0.121778704, 0.636761), (0.5361395, 0.33027858, 0.77683365), (0.73160446, -0.32147673, 0.60117185), (0.724455, -0.1865872, 0.6635889), (0.6472511, -0.33127862, 0.6865279), (0.5598551, -0.7281588, 0.3954075), (0.51933944, -0.43307647, 0.7367029), (0.5876403, -0.5747546, 0.56950504), (-0.38843852, -0.8947964, -0.2201251), (-0.26533762, -0.9466754, -0.18276124), (-0.6617167, -0.74652207, -0.06954076), (0.10247141, -0.0037224537, -0.99472904), (-0.03970086, 0.09020669, -0.99513143), (-0.18237467, 0.6480371, -0.73945075), (0.7800137, -0.4007698, 0.48058534), (0.7914296, -0.26015776, 0.5531339), (0.63540214, -0.3790919, 0.6727209), (0.26364633, -0.4508326, 0.852784), (0.62266505, -0.3998455, 0.6726157), (0.6601938, -0.56228054, 0.49798065), (0.6241327, 0.06977065, 0.77819693), (0.7497193, -0.20978902, 0.6276221), (0.69891834, -0.071353205, 0.7116332), (0.5147164, 0.28035697, 0.8102265), (0.6241327, 0.06977065, 0.77819693), (0.69891834, -0.071353205, 0.7116332), (0.3088494, 0.7915894, 0.5272555), (0.33469716, 0.57536525, 0.7462793), (-0.10124068, 0.7978244, 0.5943287), (-0.7005812, 0.6285856, 0.3377369), (-0.74681693, 0.593261, 0.3005094), (-0.91409624, 0.33342513, 0.23077194), (0.5631056, 0.111231536, 0.8188649), (0.6319527, 0.04173801, 0.77388227), (0.5248533, 0.1704094, 0.8339603), (0.62266505, -0.3998455, 0.6726157), (0.73160446, -0.32147673, 0.60117185), (0.6071203, -0.37861893, 0.6986078), (0.5520378, 0.2651683, 0.7905316), (0.7042605, 0.29188213, 0.6471646), (0.7199228, 0.038375366, 0.6929924), (0.53808373, 0.46222842, 0.70484805), (0.8307606, -0.141571, 0.5383255), (0.5303081, 0.4689901, 0.706273), (-0.16416463, 0.124074504, -0.9785987), (0.10247141, -0.0037224537, -0.99472904), (-0.18237467, 0.6480371, -0.73945075), (0.3989213, -0.11630111, 0.90958), (0.4879689, -0.2063295, 0.8481242), (0.41535625, -0.099328056, 0.90421957), (0.7914296, -0.26015776, 0.5531339), (0.69429344, -0.1504858, 0.70378304), (0.63540214, -0.3790919, 0.6727209), (0.64249104, 0.4363511, 0.6299231), (0.7042605, 0.29188213, 0.6471646), (0.5520378, 0.2651683, 0.7905316), (0.5036354, 0.08328612, 0.85989237), (0.40194345, 0.27107918, 0.87461853), (0.39945248, 0.1259264, 0.9080641), (0.40636244, 0.09432664, 0.90883), (0.47512138, -0.13482873, 0.8695291), (0.35585794, -0.067901984, 0.9320699), (0.7141602, 0.6879384, 0.12928985), (0.08772562, 0.92416996, -0.37177163), (0.8064504, 0.36136454, 0.46803123), (0.57495075, 0.00039885307, 0.81818795), (0.57345635, 0.013384477, 0.8191267), (0.6424963, -0.18739134, 0.7430228), (0.07782403, 0.7469551, 0.6603041), (-0.074242614, 0.9043319, 0.4203234), (-0.18640007, 0.7097053, 0.6793919), (0.73160446, -0.32147673, 0.60117185), (0.6472511, -0.33127862, 0.6865279), (0.6071203, -0.37861893, 0.6986078), (0.21201095, 0.6464619, 0.73289716), (0.17401391, 0.7181842, 0.6737438), (0.3067467, 0.30756006, 0.9007293), (0.60787714, 0.20397806, 0.76738405), (0.65877706, 0.11588334, 0.7433599), (0.7686523, -0.2125843, 0.60330886), (-0.69212383, -0.7019966, 0.16782527), (-0.67896193, -0.7316011, -0.061403584), (-0.97854805, -0.20043711, -0.047629822), (0.8267286, 0.542276, -0.14985508), (0.94052345, 0.28376985, -0.18678981), (0.93103486, 0.3613243, 0.0511762), (0.6497346, -0.253816, 0.71653485), (0.62287766, -0.043603897, 0.7811032), (0.6087463, -0.17568767, 0.7736679), (0.7199228, 0.038375366, 0.6929924), (0.7915214, -0.15936886, 0.58999616), (0.7497193, -0.20978902, 0.6276221), (0.5875426, -0.037324887, 0.8083321), (0.7072956, -0.017524727, 0.70670074), (0.7438177, -0.039137285, 0.6672357), (0.74183, -0.0202907, 0.6702809), (0.77444136, -0.031207774, 0.6318756), (0.61699003, -0.030050602, 0.786397), (0.7199228, 0.038375366, 0.6929924), (0.7042605, 0.29188213, 0.6471646), (0.8064504, 0.36136454, 0.46803123), (0.2670099, 0.19656658, 0.94343376), (0.23923798, 0.26883996, 0.9330006), (0.28619885, 0.2774036, 0.9171355), (0.51933944, -0.43307647, 0.7367029), (0.4461692, -0.22564271, 0.866036), (0.3067467, 0.30756006, 0.9007293), (0.53268355, -0.22607481, 0.81556016), (0.51933944, -0.43307647, 0.7367029), (0.3067467, 0.30756006, 0.9007293), (0.4461692, -0.22564271, 0.866036), (0.21201095, 0.6464619, 0.73289716), (0.3067467, 0.30756006, 0.9007293), (-0.025127253, -0.063643955, -0.9976562), (-0.029585337, -0.081930704, -0.99619883), (-0.007258001, -0.030426804, -0.9995106), (0.11033541, -0.2923358, 0.9499294), (-0.22197253, 0.3225391, 0.92016125), (0.055428933, 0.14206898, 0.9883036), (0.57391804, 0.44197628, 0.689402), (0.5079443, 0.45772973, 0.72970957), (0.46460974, 0.47212803, 0.74915487), (0.5079443, 0.45772973, 0.72970957), (0.39868033, 0.43680388, 0.8063848), (0.46460974, 0.47212803, 0.74915487), (0.45928004, -0.14568935, 0.87626284), (0.6200667, -0.07976656, 0.78048354), (0.40636244, 0.09432664, 0.90883), (0.6687691, -0.012982731, 0.7433569), (-0.13123845, 0.79722327, 0.5892465), (0.17310427, 0.63279414, 0.7547227), (0.288246, -0.07940902, 0.9542581), (0.43389198, -0.31896162, 0.84261566), (0.38470626, -0.0692315, 0.92043906), (0.26045316, 0.45574567, 0.8511522), (0.20384642, 0.06405067, 0.97690547), (0.29001746, 0.1892356, 0.9381257), (0.52417916, 0.019609185, 0.85138226), (0.57345635, 0.013384477, 0.8191267), (0.57495075, 0.00039885307, 0.81818795), (-0.01143896, 0.61629575, 0.7874318), (-0.0581781, 0.09551162, 0.99372673), (-0.028711615, 0.77819705, 0.62736356), (-0.8215269, 0.41721055, 0.38862428), (-0.9632271, 0.14657582, 0.22518665), (-0.92930555, 0.25243875, 0.26956633), (0.35952163, 0.55715156, 0.7485495), (0.60787714, 0.20397806, 0.76738405), (0.17401391, 0.7181842, 0.6737438), (0.35952163, 0.55715156, 0.7485495), (0.65877706, 0.11588334, 0.7433599), (0.60787714, 0.20397806, 0.76738405), (0.31702483, 0.522555, 0.7914742), (0.39868033, 0.43680388, 0.8063848), (0.3662903, 0.46227968, 0.807545), (0.93111163, -0.35407212, -0.08754509), (0.9583574, -0.26300776, -0.11125653), (0.81515265, -0.53872156, -0.21285026), (0.7257419, -0.37918338, 0.5740372), (0.55664706, -0.103725865, 0.8242482), (0.6200667, -0.07976656, 0.78048354), (0.94444144, 0.086512014, -0.31708968), (0.91915107, 0.22936215, -0.32024097), (0.9599588, 0.18890539, -0.20686671), (-0.8702511, -0.42538556, 0.2484149), (-0.8898538, -0.40453288, 0.21098225), (-0.9454336, -0.27170563, 0.17980929), (-0.98549885, 0.1268055, 0.1127491), (-0.9350665, 0.30848765, 0.17460212), (-0.97807634, 0.20070383, -0.055540092), (-0.98549885, 0.1268055, 0.1127491), (-0.97807634, 0.20070383, -0.055540092), (-0.9992325, 0.009367977, -0.03803466), (0.9430448, -0.31553745, -0.10536934), (0.96223456, -0.23068449, -0.14453192), (0.9977367, -0.06580477, -0.013827281), (0.9430448, -0.31553745, -0.10536934), (0.9977367, -0.06580477, -0.013827281), (0.95632046, -0.2823347, -0.075751096), (0.99634284, 0.079342194, -0.031714533), (0.8885122, 0.44605473, 0.10761615), (0.9555344, 0.27429387, 0.10824487), (0.70696247, -0.6284262, 0.32447585), (0.4325463, -0.90036434, 0.047412522), (0.23170437, -0.8931248, -0.38554016), (-0.9026322, -0.42681515, -0.055532932), (-0.9054966, -0.4229858, -0.03404315), (-0.99596953, -0.034286868, -0.08288012), (-0.95097476, 0.25195938, -0.17934175), (-0.8739215, 0.398463, -0.27836725), (-0.9279822, 0.3141734, -0.20035993), (-0.5367215, 0.10667408, 0.83698905), (-0.7507377, 0.21038967, 0.626202), (-0.61481446, -0.3592937, 0.7020763), (-0.7274023, -0.61863565, 0.29694417), (-0.69212383, -0.7019966, 0.16782527), (-0.97750837, -0.036065973, 0.20778996), (-0.61481446, -0.3592937, 0.7020763), (-0.3372196, -0.65068823, 0.6803586), (-0.19537881, -0.06637409, 0.97847915), (-0.9992325, 0.009367977, -0.03803466), (-0.97807634, 0.20070383, -0.055540092), (-0.9668867, 0.15470429, -0.20296964), (0.027289476, -0.9994987, 0.016045088), (0.021073312, -0.99795896, 0.060281094), (0.1715505, -0.98517466, 0.0011755495), (-0.87775177, 0.32134143, 0.35537502), (-0.8916462, -0.02422715, 0.45208427), (-0.97750837, -0.036065973, 0.20778996), (-0.97621727, -0.14019398, 0.16536482), (-0.9648999, 0.047693223, 0.25825062), (-0.9819716, 0.15203424, 0.11232699), (-0.9819716, 0.15203424, 0.11232699), (-0.91734314, 0.35172197, 0.18647535), (-0.93291295, 0.35986936, 0.012942048), (-0.18237467, 0.6480371, -0.73945075), (-0.30698523, 0.912352, -0.27087653), (-0.56604046, 0.77200174, -0.2891566), (-0.5019043, 0.5113458, -0.6975798), (-0.18237467, 0.6480371, -0.73945075), (-0.56604046, 0.77200174, -0.2891566), (0.38401255, -0.8880041, -0.25294876), (0.3445099, -0.7736157, -0.53181934), (0.47000778, -0.79117054, -0.39133346), (-0.93291295, 0.35986936, 0.012942048), (-0.91734314, 0.35172197, 0.18647535), (-0.8803778, 0.4419459, 0.1721006), (0.9883023, 0.14483581, 0.047762375), (0.8885122, 0.44605473, 0.10761615), (0.99634284, 0.079342194, -0.031714533), (-0.92704785, 0.36381298, 0.09067647), (-0.96371, 0.2455488, 0.10473212), (-0.99923784, 0.028006684, -0.027189441), (0.6350449, 0.19746819, -0.74680936), (0.8029297, 0.13806711, -0.5798633), (0.80521214, -0.07608237, -0.5880859), (-0.8176909, -0.5715781, 0.06841176), (-0.9552864, -0.29540315, 0.01284408), (-0.9359267, -0.26410508, -0.23300192), (-0.97649986, -0.1604329, 0.14390719), (-0.9771185, -0.17707905, 0.117823794), (-0.98468184, -0.07080658, 0.15933585), (0.67847437, -0.24322066, -0.69319284), (0.6801373, -0.060265444, -0.7306034), (0.75422907, -0.2644921, -0.6009847), (0.23140958, -0.7658154, 0.5999803), (0.33757836, -0.7371384, 0.5853784), (0.28556758, -0.8915055, 0.35166624), (0.000949754, -0.9982518, 0.05909686), (-0.0019894496, -0.9997337, 0.022988684), (0.27994588, -0.95662403, 0.080628105), (0.543596, -0.03596109, -0.83857626), (0.5282478, 0.10837448, -0.84214556), (0.6345588, 0.16236748, -0.7556268), (0.968587, 0.20850669, -0.13551457), (0.8994189, 0.26477715, 0.3477622), (0.9513711, -0.16029781, -0.26305407), (-0.92852044, 0.07832266, -0.3629262), (-0.9494037, -0.055369582, -0.30913848), (-0.97125167, 0.15677212, -0.17914452), (-0.9359267, -0.26410508, -0.23300192), (-0.9552864, -0.29540315, 0.01284408), (-0.9949563, -0.057375763, -0.082279444), (-0.67405987, 0.6506391, 0.3497315), (-0.48132876, 0.8258349, 0.2938015), (-0.5965688, 0.7911226, 0.1350209), (-0.8734928, 0.4544141, 0.17469472), (-0.67405987, 0.6506391, 0.3497315), (-0.5965688, 0.7911226, 0.1350209), (0.607333, -0.55710804, -0.5663719), (0.97447985, -0.17888117, -0.1356112), (0.8494472, 0.21180317, -0.48330003), (-0.96371, 0.2455488, 0.10473212), (-0.937718, 0.25628695, 0.23452504), (-0.8686785, 0.26994073, 0.41536704), (0.9513711, -0.16029781, -0.26305407), (0.96243465, -0.26563317, -0.05620066), (0.31189576, -0.6687293, -0.67492384), (-0.50847834, 0.7502318, -0.42261335), (-0.6936356, 0.61176634, -0.3802784), (-0.6664247, 0.5819242, -0.46609253), (-0.8898538, -0.40453288, 0.21098225), (-0.9467224, -0.17191997, 0.2723239), (-0.9115523, -0.40591183, 0.06563446), (0.83682686, -0.5141604, -0.18804199), (0.96223456, -0.23068449, -0.14453192), (0.8341831, -0.50516784, -0.22123319), (0.9987824, -0.010016361, 0.04830461), (0.9648092, 0.2261427, 0.134174), (0.9966044, -0.060561676, -0.055785798), (0.75197846, -0.56277436, -0.34323952), (0.81010336, -0.51947004, -0.2718149), (0.82570726, -0.521061, -0.21610896), (-0.6936356, 0.61176634, -0.3802784), (-0.9618187, 0.19691023, -0.19008182), (-0.85104406, 0.33972642, -0.40038738), (-0.07044898, -0.5397641, -0.8388633), (0.014819242, -0.70623416, -0.7078232), (0.1351536, -0.7640246, -0.6308723), (-0.9158193, -0.31286165, -0.25177896), (-0.85855085, -0.089423046, -0.50487024), (-0.9213237, 0.2280763, -0.3148711), (0.64249104, 0.4363511, 0.6299231), (0.8994189, 0.26477715, 0.3477622), (0.8546297, 0.36033016, 0.37385878), (-0.52218896, -0.42145768, -0.7414122), (-0.832244, -0.32162237, -0.45158496), (-0.8753281, -0.2974295, -0.3812299), (0.5690124, -0.5257828, -0.6322794), (0.75197846, -0.56277436, -0.34323952), (0.40776822, -0.8399432, -0.35807905), (0.9294046, 0.26653555, -0.25527623), (0.8761255, 0.4182807, 0.23967777), (0.9772121, 0.14118071, 0.15850712), (0.13256782, 0.8150782, -0.5639798), (0.18872376, 0.8095047, -0.5559546), (0.1956363, 0.8429225, -0.50120676), (0.80050635, -0.2476366, -0.5457707), (0.8136359, -0.031152692, -0.5805396), (0.88654864, -0.10568019, -0.45040348), (0.7122464, -0.13180391, -0.68944377), (0.8136359, -0.031152692, -0.5805396), (0.80050635, -0.2476366, -0.5457707), (0.24769956, -0.17423761, -0.9530405), (-0.045954794, -0.016335793, -0.99880993), (-0.19740334, -0.64745516, -0.7360935), (0.77248055, -0.44990683, -0.44817156), (0.73565453, -0.3507583, -0.57946616), (0.45992315, -0.39815387, -0.79369026), (0.12727505, -0.81410795, -0.56659454), (-0.011004529, -0.9110386, -0.41217405), (-0.73144907, -0.44305888, -0.51834464), (0.50692546, -0.85074013, -0.13880861), (0.8307606, -0.141571, 0.5383255), (0.70696247, -0.6284262, 0.32447585), (0.338831, -0.6310838, -0.6978014), (0.5690124, -0.5257828, -0.6322794), (0.40776822, -0.8399432, -0.35807905), (0.9555344, 0.27429387, 0.10824487), (0.9573712, 0.23245242, 0.17148295), (0.9985195, -0.035640925, 0.04109335), (0.9555344, 0.27429387, 0.10824487), (0.79330575, 0.5454925, 0.27037752), (0.9573712, 0.23245242, 0.17148295), (-0.9668867, 0.15470429, -0.20296964), (-0.91420937, 0.21459235, -0.34376058), (-0.9460484, 0.07418577, -0.31541842), (0.7528992, 0.05371425, -0.65594035), (0.7351592, -0.051164117, -0.6759609), (0.75380635, -0.06879378, -0.65348554), (0.6992543, -0.71367687, 0.041335452), (0.607333, -0.55710804, -0.5663719), (0.5323394, -0.84450775, 0.058492336), (0.97039586, -0.11759811, 0.2109559), (0.41798517, -0.7731486, -0.47700074), (0.96243465, -0.26563317, -0.05620066), (0.9513711, -0.16029781, -0.26305407), (0.8994189, 0.26477715, 0.3477622), (0.96243465, -0.26563317, -0.05620066), (-0.0012548297, 0.3662348, -0.9305216), (-0.13814647, 0.616536, -0.7751121), (-0.32959914, 0.44554067, -0.8323809), (-0.88237315, -0.3252089, 0.3400833), (-0.8898538, -0.40453288, 0.21098225), (-0.8702511, -0.42538556, 0.2484149), (-0.9158193, -0.31286165, -0.25177896), (-0.781744, -0.58333945, -0.22043467), (-0.7381241, -0.5247193, -0.42407846), (0.93352866, -0.33231995, -0.13449113), (0.9985195, -0.035640925, 0.04109335), (0.9987824, -0.010016361, 0.04830461), (0.67847437, -0.24322066, -0.69319284), (0.75422907, -0.2644921, -0.6009847), (0.68817925, -0.1795562, -0.7029714), (-0.38761067, 0.912261, 0.13243043), (-0.78519917, 0.42751658, 0.4479865), (-0.83049834, 0.5569198, 0.010623102), (-0.8898538, -0.40453288, 0.21098225), (-0.9115523, -0.40591183, 0.06563446), (-0.8404405, -0.5339879, 0.09228589), (0.9036428, -0.047994588, -0.42558926), (0.8136359, -0.031152692, -0.5805396), (0.8595898, 0.1279113, -0.49471623), (-0.025121022, -0.944091, -0.32872617), (0.2776778, -0.906496, -0.31805658), (-0.19740334, -0.64745516, -0.7360935), (0.9583574, -0.26300776, -0.11125653), (0.96223456, -0.23068449, -0.14453192), (0.83682686, -0.5141604, -0.18804199), (0.8595898, 0.1279113, -0.49471623), (0.73816437, 0.29486796, -0.606767), (0.8271193, 0.29346165, -0.47932655), (0.10158138, 0.21611832, -0.9710685), (0.008042317, 0.6045964, -0.79649144), (-0.037781984, 0.2687882, -0.9624581), (0.9883023, 0.14483581, 0.047762375), (0.84929305, 0.49472123, 0.18426105), (0.8885122, 0.44605473, 0.10761615), (0.68052876, -0.6903251, -0.24562559), (0.8157006, -0.57242763, -0.08342118), (0.66412526, -0.7449501, -0.063141584), (-0.3434998, 0.20149514, -0.9172827), (-0.22074991, -0.845684, -0.48588872), (-0.3738997, -0.51097745, -0.77401626), (0.70091695, -0.5494212, -0.45480964), (0.66396046, -0.68804663, -0.29282808), (0.81010336, -0.51947004, -0.2718149), (0.5829381, 0.000048025166, -0.8125166), (0.5991798, 0.08719982, -0.7958515), (0.67539114, -0.0052192016, -0.73744124), (-0.4276711, 0.90195936, -0.05972252), (-0.7025925, 0.69908625, -0.13282447), (-0.5965688, 0.7911226, 0.1350209), (0.8994189, 0.26477715, 0.3477622), (0.64249104, 0.4363511, 0.6299231), (0.97039586, -0.11759811, 0.2109559), (0.67539114, -0.0052192016, -0.73744124), (0.6896235, -0.1462627, -0.7092437), (0.5829381, 0.000048025166, -0.8125166), (0.7816238, 0.26426044, -0.565005), (0.6901161, 0.18358733, -0.7000252), (0.76785123, 0.26919043, -0.58132696), (0.81010336, -0.51947004, -0.2718149), (0.66396046, -0.68804663, -0.29282808), (0.7611136, -0.5836421, -0.2829628), (-0.9727995, -0.2294292, 0.031990424), (-0.96396816, -0.20500617, -0.16952217), (-0.6905549, -0.7060824, 0.15678449), (0.33757836, -0.7371384, 0.5853784), (0.080321275, -0.56148475, 0.82357955), (0.26364633, -0.4508326, 0.852784), (-0.9359267, -0.26410508, -0.23300192), (-0.9494037, -0.055369582, -0.30913848), (-0.8953808, -0.049045894, -0.442592), (-0.7381241, -0.5247193, -0.42407846), (-0.781744, -0.58333945, -0.22043467), (-0.8241346, -0.3330392, -0.45813447), (0.78690255, -0.11625211, -0.6060279), (0.80050635, -0.2476366, -0.5457707), (0.817461, -0.06586828, -0.5722053), (0.9583574, -0.26300776, -0.11125653), (0.99634284, 0.079342194, -0.031714533), (0.96223456, -0.23068449, -0.14453192), (-0.97349536, -0.03525896, -0.22597268), (-0.9460484, 0.07418577, -0.31541842), (-0.9420124, -0.04916158, -0.33195755), (0.7484313, -0.21400833, -0.6277347), (0.7351592, -0.051164117, -0.6759609), (0.81461394, -0.23348154, -0.5309335), (0.6830646, -0.15390755, -0.71395755), (0.64597267, -0.12957382, -0.75228304), (0.6201782, -0.030278608, -0.7838764), (-0.9494037, -0.055369582, -0.30913848), (-0.92852044, 0.07832266, -0.3629262), (-0.89475894, 0.012224607, -0.44638202), (-0.781744, -0.58333945, -0.22043467), (-0.9359267, -0.26410508, -0.23300192), (-0.8241346, -0.3330392, -0.45813447), (-0.9359267, -0.26410508, -0.23300192), (-0.9949563, -0.057375763, -0.082279444), (-0.9494037, -0.055369582, -0.30913848), (-0.8916462, -0.02422715, 0.45208427), (-0.7274023, -0.61863565, 0.29694417), (-0.97750837, -0.036065973, 0.20778996), (0.19038826, 0.93325436, -0.30461198), (0.16986059, 0.97098553, -0.16832872), (0.2601437, 0.9431217, -0.20699424), (-0.025991922, 0.84249765, -0.5380726), (0.0044798334, 0.8557751, -0.5173287), (-0.002316495, 0.71685964, -0.6972137), (-0.31435004, -0.5255507, -0.79055715), (-0.29874602, -0.24604231, -0.92207056), (0.40791, -0.35522157, -0.84108686), (0.70229757, -0.15326084, -0.69519), (0.7122464, -0.13180391, -0.68944377), (0.80050635, -0.2476366, -0.5457707), (-0.24380629, 0.6646074, 0.7062969), (-0.0812308, 0.6370952, 0.7664927), (-0.17426847, 0.8075359, 0.56348586), (0.6004834, -0.7095609, 0.36870462), (0.7193379, -0.59930456, 0.3512649), (0.6699192, -0.3878235, 0.63308865), (0.7528992, 0.05371425, -0.65594035), (0.75380635, -0.06879378, -0.65348554), (0.78690255, -0.11625211, -0.6060279), (0.8923967, -0.39999035, -0.20889154), (0.99349195, -0.10428091, 0.045817617), (0.957997, -0.2859565, 0.021691369), (-0.9915867, -0.11128689, 0.06611437), (-0.9978222, 0.05849979, 0.030472683), (-0.9632271, 0.14657582, 0.22518665), (0.78690255, -0.11625211, -0.6060279), (0.817461, -0.06586828, -0.5722053), (0.7528992, 0.05371425, -0.65594035), (0.7816238, 0.26426044, -0.565005), (0.6732018, 0.3908049, -0.6277507), (0.6901161, 0.18358733, -0.7000252), (0.9883023, 0.14483581, 0.047762375), (0.99634284, 0.079342194, -0.031714533), (0.9583574, -0.26300776, -0.11125653), (0.1351536, -0.7640246, -0.6308723), (0.014819242, -0.70623416, -0.7078232), (0.23170437, -0.8931248, -0.38554016), (0.88046247, -0.34468678, 0.32554084), (0.5303081, 0.4689901, 0.706273), (0.8307606, -0.141571, 0.5383255), (0.9626579, -0.0268924, -0.26938185), (0.98106885, 0.04682403, -0.18791324), (0.9742027, 0.03884721, -0.22230598), (0.8136359, -0.031152692, -0.5805396), (0.9036428, -0.047994588, -0.42558926), (0.88654864, -0.10568019, -0.45040348), (-0.937718, 0.25628695, 0.23452504), (-0.96371, 0.2455488, 0.10473212), (-0.96352214, 0.2658698, 0.030630894), (0.66801757, -0.6265145, -0.40153733), (0.8197586, -0.31428367, -0.4787709), (0.80277014, -0.5072369, -0.3134819), (-0.9743478, -0.16398498, 0.1541278), (-0.9632271, 0.14657582, 0.22518665), (-0.9915138, 0.05954056, 0.115564995), (0.58877265, -0.77926415, -0.21469536), (0.40776822, -0.8399432, -0.35807905), (0.75197846, -0.56277436, -0.34323952), (0.9573712, 0.23245242, 0.17148295), (0.84273946, 0.44965845, 0.2959688), (0.9648092, 0.2261427, 0.134174), (-0.26577422, -0.36665386, 0.891588), (-0.4821138, -0.4199924, 0.7688775), (-0.34260368, -0.5181747, 0.78365666), (-0.54507095, 0.61533564, -0.56943804), (0.38884154, 0.909899, 0.14451972), (0.08772562, 0.92416996, -0.37177163), (-0.99596953, -0.034286868, -0.08288012), (-0.9940572, -0.10254405, 0.036538824), (-0.9866532, 0.1628346, 0.00060730765), (-0.24783447, 0.65149343, -0.7170316), (-0.24945141, 0.89533806, -0.36897647), (-0.5183715, 0.74702173, -0.41623268), (0.7351592, -0.051164117, -0.6759609), (0.7528992, 0.05371425, -0.65594035), (0.8272044, 0.0013552457, -0.5618994), (0.84870744, -0.14025737, -0.50992495), (0.7351592, -0.051164117, -0.6759609), (0.8272044, 0.0013552457, -0.5618994), (0.27213457, 0.30032533, 0.9141922), (0.1616468, 0.5185643, 0.83961976), (0.29001746, 0.1892356, 0.9381257), (0.6699192, -0.3878235, 0.63308865), (0.7193379, -0.59930456, 0.3512649), (0.7257419, -0.37918338, 0.5740372), (-0.95097476, 0.25195938, -0.17934175), (-0.90972215, 0.2802738, -0.3063531), (-0.8739215, 0.398463, -0.27836725), (-0.57392466, 0.27946785, -0.76974547), (-0.6882561, 0.27971166, -0.6693766), (-0.5448445, 0.36678994, -0.7540621), (0.81461394, -0.23348154, -0.5309335), (0.84870744, -0.14025737, -0.50992495), (0.8867414, -0.23026726, -0.40083247), (-0.92852044, 0.07832266, -0.3629262), (-0.8753872, 0.22401635, -0.42838526), (-0.8749361, 0.10047233, -0.47370037), (-0.9668867, 0.15470429, -0.20296964), (-0.9213237, 0.2280763, -0.3148711), (-0.91420937, 0.21459235, -0.34376058), (0.77248055, -0.44990683, -0.44817156), (0.75791395, -0.3511029, -0.54981196), (0.73565453, -0.3507583, -0.57946616), (0.66801757, -0.6265145, -0.40153733), (0.80277014, -0.5072369, -0.3134819), (0.70921636, -0.66166705, -0.24332875), (0.80277014, -0.5072369, -0.3134819), (0.77248055, -0.44990683, -0.44817156), (0.68319607, -0.6140792, -0.39515814), (0.9987824, -0.010016361, 0.04830461), (0.9573712, 0.23245242, 0.17148295), (0.9648092, 0.2261427, 0.134174), (0.9772121, 0.14118071, 0.15850712), (0.99349195, -0.10428091, 0.045817617), (0.8700867, -0.17603566, -0.4603918), (0.56647444, -0.7808643, -0.26335832), (0.88046247, -0.34468678, 0.32554084), (0.50692546, -0.85074013, -0.13880861), (-0.9454336, -0.27170563, 0.17980929), (-0.8898538, -0.40453288, 0.21098225), (-0.9480551, -0.3159854, 0.03667171), (0.96243465, -0.26563317, -0.05620066), (0.8994189, 0.26477715, 0.3477622), (0.97039586, -0.11759811, 0.2109559), (0.95632046, -0.2823347, -0.075751096), (0.9977367, -0.06580477, -0.013827281), (0.9985195, -0.035640925, 0.04109335), (-0.98484534, 0.023799932, -0.17179422), (-0.94723433, 0.0141571285, -0.3202292), (-0.956032, -0.1533356, -0.24998195), (-0.5793119, 0.71455824, 0.39217898), (-0.88589257, 0.42307234, 0.19027403), (-0.81088346, 0.51771635, 0.272833), (-0.9146135, -0.3669641, -0.16976309), (-0.91879785, -0.39120173, -0.05264702), (-0.956032, -0.1533356, -0.24998195), (-0.70207876, 0.5382597, -0.46622092), (-0.68942064, 0.46358168, -0.5565889), (-0.7881963, 0.06871542, -0.6115757), (0.81461394, -0.23348154, -0.5309335), (0.8867414, -0.23026726, -0.40083247), (0.83653957, -0.29681796, -0.46054393), (0.45928004, -0.14568935, 0.87626284), (0.4313311, -0.53554904, 0.72604454), (0.6699192, -0.3878235, 0.63308865), (0.70921636, -0.66166705, -0.24332875), (0.80277014, -0.5072369, -0.3134819), (0.68319607, -0.6140792, -0.39515814), (0.56007177, -0.8041849, 0.19901338), (0.6004834, -0.7095609, 0.36870462), (0.39454177, -0.906369, 0.15110257), (0.69067633, -0.22762033, -0.68640745), (0.75791395, -0.3511029, -0.54981196), (0.75422907, -0.2644921, -0.6009847), (0.76560986, -0.10898166, -0.63400674), (0.75422907, -0.2644921, -0.6009847), (0.8197586, -0.31428367, -0.4787709), (-0.38718665, 0.78851014, 0.47784746), (-0.5688045, 0.80533934, 0.1670028), (-0.4579775, 0.75007135, 0.47712642), (-0.9668867, 0.15470429, -0.20296964), (-0.9576202, 0.2513207, -0.14071745), (-0.9213237, 0.2280763, -0.3148711), (-0.95747125, 0.12048938, -0.26216623), (-0.96396816, -0.20500617, -0.16952217), (-0.9727995, -0.2294292, 0.031990424), (0.70921636, -0.66166705, -0.24332875), (0.68319607, -0.6140792, -0.39515814), (0.66396046, -0.68804663, -0.29282808), (0.26924786, 0.27496895, 0.922983), (0.0589187, 0.6413174, 0.7650101), (0.55669487, 0.25641346, 0.7901538), (0.4455544, -0.8584529, 0.25404683), (0.39536312, -0.91615075, -0.06599754), (0.2974425, -0.91589993, -0.26954654), (-0.9386532, 0.30061942, 0.16899173), (-0.95747125, 0.12048938, -0.26216623), (-0.9727995, -0.2294292, 0.031990424), (0.9977367, -0.06580477, -0.013827281), (0.9555344, 0.27429387, 0.10824487), (0.9985195, -0.035640925, 0.04109335), (-0.8898538, -0.40453288, 0.21098225), (-0.8404405, -0.5339879, 0.09228589), (-0.9480551, -0.3159854, 0.03667171), (-0.04828888, -0.9518656, -0.30268806), (0.12484366, -0.72100294, -0.6815928), (0.112033434, -0.95767885, -0.26514092), (-0.9407633, -0.011960006, 0.33885306), (-0.937718, 0.25628695, 0.23452504), (-0.9866532, 0.1628346, 0.00060730765), (0.69067633, -0.22762033, -0.68640745), (0.7484313, -0.21400833, -0.6277347), (0.75791395, -0.3511029, -0.54981196), (0.617948, 0.03965283, -0.7852185), (0.27814472, 0.120741576, -0.9529203), (0.73565453, -0.3507583, -0.57946616), (-0.12523709, -0.30043563, -0.9455443), (-0.15455057, -0.34080482, -0.92734355), (-0.6699267, -0.33512715, -0.6624863), (-0.50102854, 0.86482495, -0.03237622), (-0.38923764, 0.8541122, 0.34494415), (-0.7258752, 0.5977276, 0.3403336), (-0.99763674, -0.05126775, -0.045744807), (-0.95371497, -0.009299656, -0.3005682), (-0.92167896, -0.12954791, -0.3656847), (0.40924534, -0.8464372, 0.34067917), (0.5850868, -0.68390495, 0.43582952), (0.19094223, -0.7970636, 0.5729141), (0.50692546, -0.85074013, -0.13880861), (0.88046247, -0.34468678, 0.32554084), (0.8307606, -0.141571, 0.5383255), (-0.30536386, -0.6192945, -0.7233444), (0.31189576, -0.6687293, -0.67492384), (0.41798517, -0.7731486, -0.47700074), (-0.8429949, 0.2013671, -0.49880934), (-0.77796745, 0.49438986, -0.38774374), (-0.6842741, 0.4033017, -0.6075498), (-0.8590629, 0.117870525, -0.49811387), (-0.85692567, -0.13305487, -0.49797067), (-0.83092785, -0.021337103, -0.555971), (0.70229757, -0.15326084, -0.69519), (0.80050635, -0.2476366, -0.5457707), (0.78690255, -0.11625211, -0.6060279), (-0.92167896, -0.12954791, -0.3656847), (-0.95371497, -0.009299656, -0.3005682), (-0.85692567, -0.13305487, -0.49797067), (0.7193379, -0.59930456, 0.3512649), (0.6601938, -0.56228054, 0.49798065), (0.7257419, -0.37918338, 0.5740372), (-0.2105749, 0.6975265, -0.68491966), (-0.1146255, 0.48534405, -0.8667768), (-0.33004627, 0.49476734, -0.80391216), (0.67063475, 0.43720013, -0.5992538), (0.76785123, 0.26919043, -0.58132696), (0.6013884, 0.34456095, -0.7208396), (0.27814472, 0.120741576, -0.9529203), (0.45992315, -0.39815387, -0.79369026), (0.73565453, -0.3507583, -0.57946616), (0.7816238, 0.26426044, -0.565005), (0.76785123, 0.26919043, -0.58132696), (0.8584517, 0.30511788, -0.41226652), (-0.15011746, 0.20696905, -0.9667619), (-0.1635049, 0.18375777, -0.9692777), (-0.20028117, 0.25201452, -0.94677144), (-0.7185482, -0.65344715, 0.23810802), (-0.8162737, -0.559295, 0.14452073), (-0.7835958, -0.60634196, 0.135378), (0.9028298, 0.076949954, 0.42305678), (0.91655725, 0.18230869, 0.35593027), (0.8732383, 0.14306416, 0.46581903), (-0.43670908, -0.36223125, 0.8234523), (-0.42388347, -0.36057454, 0.8308482), (-0.6392754, -0.20157793, 0.74208724), (0.008042317, 0.6045964, -0.79649144), (-0.04323444, 0.30183423, -0.9523796), (-0.037781984, 0.2687882, -0.9624581), (-0.04828888, -0.9518656, -0.30268806), (-0.28336734, -0.75166273, -0.5955721), (0.12484366, -0.72100294, -0.6815928), (0.7351592, -0.051164117, -0.6759609), (0.84870744, -0.14025737, -0.50992495), (0.81461394, -0.23348154, -0.5309335), (0.23485602, -0.46150556, 0.85548544), (0.25456768, 0.022397261, 0.96679556), (0.29155907, -0.014391211, 0.95644456), (-0.8241346, -0.3330392, -0.45813447), (-0.9359267, -0.26410508, -0.23300192), (-0.8953808, -0.049045894, -0.442592), (0.6203783, -0.0032598206, -0.78429604), (0.6830646, -0.15390755, -0.71395755), (0.6201782, -0.030278608, -0.7838764), (-0.01921755, -0.39628565, -0.91792613), (0.00064494426, -0.36496344, -0.93102163), (-0.07412897, -0.35409528, -0.93226683), (0.7193379, -0.59930456, 0.3512649), (0.54638356, -0.7627216, 0.34600705), (0.6601938, -0.56228054, 0.49798065), (0.8546297, 0.36033016, 0.37385878), (0.7657911, 0.57791793, -0.28208998), (0.7141602, 0.6879384, 0.12928985), (0.008042317, 0.6045964, -0.79649144), (-0.11333118, 0.652004, -0.7496978), (-0.04323444, 0.30183423, -0.9523796), (0.9200016, 0.3374467, 0.19931553), (0.84929305, 0.49472123, 0.18426105), (0.9883023, 0.14483581, 0.047762375), (-0.6884842, -0.67793065, 0.25768104), (-0.9727995, -0.2294292, 0.031990424), (-0.6905549, -0.7060824, 0.15678449), (0.66396046, -0.68804663, -0.29282808), (0.68319607, -0.6140792, -0.39515814), (0.56610864, -0.6372172, -0.5229485), (-0.82253456, 0.5144007, -0.24254641), (-0.7057637, 0.66202456, 0.25223234), (-0.5688045, 0.80533934, 0.1670028), (0.84870744, -0.14025737, -0.50992495), (0.8272044, 0.0013552457, -0.5618994), (0.91505194, -0.13129345, -0.38136873), (0.8272044, 0.0013552457, -0.5618994), (0.817461, -0.06586828, -0.5722053), (0.90839314, -0.0503038, -0.4150799), (0.94052345, 0.28376985, -0.18678981), (0.97447985, -0.17888117, -0.1356112), (0.99257517, 0.06272157, 0.10421382), (-0.9494037, -0.055369582, -0.30913848), (-0.89475894, 0.012224607, -0.44638202), (-0.8953808, -0.049045894, -0.442592), (-0.52218896, -0.42145768, -0.7414122), (-0.01921755, -0.39628565, -0.91792613), (-0.07412897, -0.35409528, -0.93226683), (0.69067633, -0.22762033, -0.68640745), (0.6801373, -0.060265444, -0.7306034), (0.6201782, -0.030278608, -0.7838764), (0.93103486, 0.3613243, 0.0511762), (0.90119463, 0.3538509, 0.2502753), (0.84308434, 0.48139495, 0.23972411), (0.94444144, 0.086512014, -0.31708968), (0.8595898, 0.1279113, -0.49471623), (0.8271193, 0.29346165, -0.47932655), (0.76785123, 0.26919043, -0.58132696), (0.7997539, 0.41937962, -0.4295515), (0.8584517, 0.30511788, -0.41226652), (0.84870744, -0.14025737, -0.50992495), (0.91505194, -0.13129345, -0.38136873), (0.8867414, -0.23026726, -0.40083247), (-0.10280776, 0.9062118, -0.4101353), (0.072007045, 0.88734347, -0.4554519), (-0.010087955, 0.84672755, -0.531931), (-0.7057637, 0.66202456, 0.25223234), (-0.9386532, 0.30061942, 0.16899173), (-0.6434348, 0.53775394, 0.54480493), (-0.6434348, 0.53775394, 0.54480493), (-0.4579775, 0.75007135, 0.47712642), (-0.5688045, 0.80533934, 0.1670028), (0.68817925, -0.1795562, -0.7029714), (0.75422907, -0.2644921, -0.6009847), (0.76560986, -0.10898166, -0.63400674), (0.98106885, 0.04682403, -0.18791324), (0.94444144, 0.086512014, -0.31708968), (0.9599588, 0.18890539, -0.20686671), (-0.6434348, 0.53775394, 0.54480493), (-0.5688045, 0.80533934, 0.1670028), (-0.7057637, 0.66202456, 0.25223234), (-0.85855085, -0.089423046, -0.50487024), (-0.9158193, -0.31286165, -0.25177896), (-0.7381241, -0.5247193, -0.42407846), (0.5690124, -0.5257828, -0.6322794), (0.76972014, -0.34309414, -0.53834695), (0.75197846, -0.56277436, -0.34323952), (0.28374514, 0.49862832, -0.8190595), (0.59347165, 0.046450734, -0.8035134), (0.19430637, 0.43361533, -0.8798994), (0.69067633, -0.22762033, -0.68640745), (0.6201782, -0.030278608, -0.7838764), (0.6430411, -0.12543626, -0.7554893), (0.9777654, 0.20047794, -0.06150969), (0.93655956, 0.33114547, -0.11488639), (0.931049, 0.36383775, 0.027747536), (0.9789346, -0.20254333, -0.025753347), (0.9883023, 0.14483581, 0.047762375), (0.9583574, -0.26300776, -0.11125653), (0.6896235, -0.1462627, -0.7092437), (0.67539114, -0.0052192016, -0.73744124), (0.75380635, -0.06879378, -0.65348554), (0.75380635, -0.06879378, -0.65348554), (0.70229757, -0.15326084, -0.69519), (0.78690255, -0.11625211, -0.6060279), (-0.9771185, -0.17707905, 0.117823794), (-0.9743478, -0.16398498, 0.1541278), (-0.9915138, 0.05954056, 0.115564995), (-0.9915138, 0.05954056, 0.115564995), (-0.85693616, 0.38781747, 0.3394968), (-0.8734928, 0.4544141, 0.17469472), (0.9200016, 0.3374467, 0.19931553), (0.7552057, 0.5495205, 0.35733962), (0.84929305, 0.49472123, 0.18426105), (-0.85693616, 0.38781747, 0.3394968), (-0.67405987, 0.6506391, 0.3497315), (-0.8734928, 0.4544141, 0.17469472), (0.6491441, -0.645899, 0.40177897), (0.6123733, -0.28682697, 0.7367016), (0.8318086, -0.3919076, 0.39306858), (0.87425536, 0.4388207, -0.20763896), (0.80688834, 0.4972827, -0.31881186), (0.8027101, 0.571138, -0.17163326), (0.26782945, 0.0053843213, 0.9634513), (0.62266505, -0.3998455, 0.6726157), (0.022580879, -0.12428294, 0.9919899), (0.968587, 0.20850669, -0.13551457), (0.8546297, 0.36033016, 0.37385878), (0.8994189, 0.26477715, 0.3477622), (0.48175472, -0.27959064, -0.83050674), (0.76972014, -0.34309414, -0.53834695), (0.5690124, -0.5257828, -0.6322794), (0.0019268726, -0.99473745, 0.10243824), (0.007696416, -0.9953648, 0.09586249), (-0.07965509, -0.81704223, 0.57104903), (0.000949754, -0.9982518, 0.05909686), (-0.12225547, -0.74193543, 0.6592309), (0.030136857, -0.9859453, 0.16432805), (0.67539114, -0.0052192016, -0.73744124), (0.70229757, -0.15326084, -0.69519), (0.75380635, -0.06879378, -0.65348554), (0.7611136, -0.5836421, -0.2829628), (0.56610864, -0.6372172, -0.5229485), (0.6900427, -0.62094134, -0.37185043), (0.82570726, -0.521061, -0.21610896), (0.7611136, -0.5836421, -0.2829628), (0.6900427, -0.62094134, -0.37185043), (0.82570726, -0.521061, -0.21610896), (0.6900427, -0.62094134, -0.37185043), (0.6158694, -0.76686466, -0.18062013), (0.9987824, -0.010016361, 0.04830461), (0.9966044, -0.060561676, -0.055785798), (0.93352866, -0.33231995, -0.13449113), (-0.6929957, 0.7194179, -0.04685013), (-0.49044955, 0.84781194, -0.20167837), (-0.61607623, 0.71149987, -0.3379616), (0.94444144, 0.086512014, -0.31708968), (0.8271193, 0.29346165, -0.47932655), (0.91915107, 0.22936215, -0.32024097), (-0.3255986, 0.23396029, -0.9161048), (-0.16416463, 0.124074504, -0.9785987), (-0.5019043, 0.5113458, -0.6975798), (0.75791395, -0.3511029, -0.54981196), (0.83653957, -0.29681796, -0.46054393), (0.73565453, -0.3507583, -0.57946616), (0.64597267, -0.12957382, -0.75228304), (0.75380635, -0.06879378, -0.65348554), (0.7351592, -0.051164117, -0.6759609), (0.338831, -0.6310838, -0.6978014), (0.40776822, -0.8399432, -0.35807905), (0.112033434, -0.95767885, -0.26514092), (0.80050635, -0.2476366, -0.5457707), (0.88654864, -0.10568019, -0.45040348), (0.817461, -0.06586828, -0.5722053), (0.98106885, 0.04682403, -0.18791324), (0.9599588, 0.18890539, -0.20686671), (0.9777654, 0.20047794, -0.06150969), (-0.7381241, -0.5247193, -0.42407846), (-0.8241346, -0.3330392, -0.45813447), (-0.66468817, -0.4325749, -0.609154), (-0.64344645, -0.47379425, -0.60124516), (-0.30950058, 0.20240676, -0.92910755), (-0.28825697, -0.7498813, -0.5954711), (-0.9576202, 0.2513207, -0.14071745), (-0.9158193, -0.31286165, -0.25177896), (-0.9213237, 0.2280763, -0.3148711), (0.6201782, -0.030278608, -0.7838764), (0.64597267, -0.12957382, -0.75228304), (0.6430411, -0.12543626, -0.7554893), (0.6896235, -0.1462627, -0.7092437), (0.75380635, -0.06879378, -0.65348554), (0.64597267, -0.12957382, -0.75228304), (-0.7025925, 0.69908625, -0.13282447), (-0.876151, 0.28557828, -0.38833538), (-0.9736986, 0.2007418, -0.10776711), (0.957997, -0.2859565, 0.021691369), (0.99349195, -0.10428091, 0.045817617), (0.9916238, 0.05435835, 0.117163286), (-0.9703805, 0.18565053, -0.15458225), (-0.90639764, -0.39457366, -0.15084717), (-0.97881943, -0.011554678, -0.20439933), (0.67539114, -0.0052192016, -0.73744124), (0.570426, 0.016073883, -0.8211916), (0.70229757, -0.15326084, -0.69519), (0.9916238, 0.05435835, 0.117163286), (0.9200016, 0.3374467, 0.19931553), (0.9883023, 0.14483581, 0.047762375), (0.9789346, -0.20254333, -0.025753347), (0.9916238, 0.05435835, 0.117163286), (0.9883023, 0.14483581, 0.047762375), (-0.8632082, -0.45999706, -0.20802511), (-0.9146135, -0.3669641, -0.16976309), (-0.8704776, -0.37641808, -0.31714052), (-0.85104406, 0.33972642, -0.40038738), (-0.95747125, 0.12048938, -0.26216623), (-0.82253456, 0.5144007, -0.24254641), (-0.89814866, -0.031243127, -0.43858042), (-0.92167896, -0.12954791, -0.3656847), (-0.85692567, -0.13305487, -0.49797067), (-0.85692567, -0.13305487, -0.49797067), (-0.95371497, -0.009299656, -0.3005682), (-0.83092785, -0.021337103, -0.555971), (-0.7881963, 0.06871542, -0.6115757), (-0.8108123, 0.1267427, -0.57141906), (-0.8590629, 0.117870525, -0.49811387), (0.66801757, -0.6265145, -0.40153733), (0.70921636, -0.66166705, -0.24332875), (0.66396046, -0.68804663, -0.29282808), (0.8272044, 0.0013552457, -0.5618994), (0.90839314, -0.0503038, -0.4150799), (0.91505194, -0.13129345, -0.38136873), (0.80521214, -0.07608237, -0.5880859), (0.59347165, 0.046450734, -0.8035134), (0.6350449, 0.19746819, -0.74680936), (0.9842109, 0.07599091, 0.15985686), (0.94207394, 0.034368712, 0.3336397), (0.9362669, -0.00075243076, 0.35128856), (-0.7881963, 0.06871542, -0.6115757), (-0.68942064, 0.46358168, -0.5565889), (-0.8108123, 0.1267427, -0.57141906), (0.9036428, -0.047994588, -0.42558926), (0.8595898, 0.1279113, -0.49471623), (0.94444144, 0.086512014, -0.31708968), (0.7611136, -0.5836421, -0.2829628), (0.66396046, -0.68804663, -0.29282808), (0.56610864, -0.6372172, -0.5229485), (0.6934749, -0.32417312, -0.6434318), (0.76560986, -0.10898166, -0.63400674), (0.8197586, -0.31428367, -0.4787709), (0.9977367, -0.06580477, -0.013827281), (0.96223456, -0.23068449, -0.14453192), (0.99634284, 0.079342194, -0.031714533), (0.53808373, 0.46222842, 0.70484805), (0.64765865, 0.21726725, 0.73029673), (0.70696247, -0.6284262, 0.32447585), (0.93111163, -0.35407212, -0.08754509), (0.9789346, -0.20254333, -0.025753347), (0.9583574, -0.26300776, -0.11125653), (0.6934749, -0.32417312, -0.6434318), (0.8197586, -0.31428367, -0.4787709), (0.66801757, -0.6265145, -0.40153733), (-0.20932508, -0.5257483, -0.82448274), (-0.28825697, -0.7498813, -0.5954711), (-0.30950058, 0.20240676, -0.92910755), (-0.88255644, -0.30992982, 0.35360643), (-0.9940572, -0.10254405, 0.036538824), (-0.9054966, -0.4229858, -0.03404315), (0.76972014, -0.34309414, -0.53834695), (0.81010336, -0.51947004, -0.2718149), (0.75197846, -0.56277436, -0.34323952), (0.8197586, -0.31428367, -0.4787709), (0.77248055, -0.44990683, -0.44817156), (0.80277014, -0.5072369, -0.3134819), (0.19180067, -0.9516986, -0.23975466), (0.54656434, -0.80144656, -0.24279799), (0.7449587, -0.6390075, -0.19158767), (0.9083771, 0.32137567, 0.2675231), (0.83347154, 0.3270561, 0.4453755), (0.8758925, 0.23458774, 0.42164066), (0.7484313, -0.21400833, -0.6277347), (0.81461394, -0.23348154, -0.5309335), (0.75791395, -0.3511029, -0.54981196), (0.112033434, -0.95767885, -0.26514092), (0.12484366, -0.72100294, -0.6815928), (0.17113908, -0.4312143, -0.88587), (0.8584517, 0.30511788, -0.41226652), (0.7997539, 0.41937962, -0.4295515), (0.83672124, 0.41857317, -0.35312063), (0.6430411, -0.12543626, -0.7554893), (0.64597267, -0.12957382, -0.75228304), (0.7351592, -0.051164117, -0.6759609), (0.95666397, 0.11851852, 0.26598394), (0.90195847, 0.08740707, 0.4228841), (0.8241424, 0.12562299, 0.5522755), (0.7528992, 0.05371425, -0.65594035), (0.817461, -0.06586828, -0.5722053), (0.8272044, 0.0013552457, -0.5618994), (-0.22538076, -0.6102402, 0.7594804), (-0.39042413, -0.7627084, 0.51560146), (-0.24327245, -0.8493921, 0.4683497), (-0.94723433, 0.0141571285, -0.3202292), (-0.97349536, -0.03525896, -0.22597268), (-0.9420124, -0.04916158, -0.33195755), (0.91655725, 0.18230869, 0.35593027), (0.8758925, 0.23458774, 0.42164066), (0.8732383, 0.14306416, 0.46581903), (0.91655725, 0.18230869, 0.35593027), (0.9083771, 0.32137567, 0.2675231), (0.8758925, 0.23458774, 0.42164066), (0.9083771, 0.32137567, 0.2675231), (0.81504124, 0.41989926, 0.39923972), (0.83347154, 0.3270561, 0.4453755), (0.8027101, 0.571138, -0.17163326), (0.8756664, 0.48078087, -0.0453676), (0.87425536, 0.4388207, -0.20763896), (0.112033434, -0.95767885, -0.26514092), (0.17113908, -0.4312143, -0.88587), (0.338831, -0.6310838, -0.6978014), (-0.51980644, 0.6201144, 0.58758783), (-0.5688045, 0.80533934, 0.1670028), (-0.38718665, 0.78851014, 0.47784746), (0.9772121, 0.14118071, 0.15850712), (0.92486155, 0.28620204, 0.25043866), (0.9916238, 0.05435835, 0.117163286), (0.6158694, -0.76686466, -0.18062013), (0.6900427, -0.62094134, -0.37185043), (0.69222724, -0.6828688, -0.2334772), (-0.021990784, -0.6079759, -0.7936509), (-0.07044898, -0.5397641, -0.8388633), (0.1351536, -0.7640246, -0.6308723), (0.2562443, 0.4214997, -0.86987174), (0.12776764, 0.48213232, -0.86673176), (0.18811478, 0.6722223, -0.71605164), (0.8197586, -0.31428367, -0.4787709), (0.75422907, -0.2644921, -0.6009847), (0.77248055, -0.44990683, -0.44817156), (0.8867414, -0.23026726, -0.40083247), (0.6713147, 0.059606586, -0.73877174), (0.83653957, -0.29681796, -0.46054393), (0.92486155, 0.28620204, 0.25043866), (0.9200016, 0.3374467, 0.19931553), (0.9916238, 0.05435835, 0.117163286), (-0.98665786, -0.13022158, -0.09771668), (-0.92167896, -0.12954791, -0.3656847), (-0.89814866, -0.031243127, -0.43858042), (0.92486155, 0.28620204, 0.25043866), (0.7552057, 0.5495205, 0.35733962), (0.9200016, 0.3374467, 0.19931553), (0.95666397, 0.11851852, 0.26598394), (0.93717116, 0.17813864, 0.2999613), (0.90195847, 0.08740707, 0.4228841), (-0.31435004, -0.5255507, -0.79055715), (0.40791, -0.35522157, -0.84108686), (0.31189576, -0.6687293, -0.67492384), (0.83653957, -0.29681796, -0.46054393), (0.6713147, 0.059606586, -0.73877174), (0.617948, 0.03965283, -0.7852185), (-0.29874602, -0.24604231, -0.92207056), (0.6738203, 0.21030322, -0.70833516), (0.40791, -0.35522157, -0.84108686), (0.75791395, -0.3511029, -0.54981196), (0.81461394, -0.23348154, -0.5309335), (0.83653957, -0.29681796, -0.46054393), (0.76972014, -0.34309414, -0.53834695), (0.70091695, -0.5494212, -0.45480964), (0.81010336, -0.51947004, -0.2718149), (0.6430411, -0.12543626, -0.7554893), (0.7351592, -0.051164117, -0.6759609), (0.7484313, -0.21400833, -0.6277347), (-0.95097476, 0.25195938, -0.17934175), (-0.98665786, -0.13022158, -0.09771668), (-0.89814866, -0.031243127, -0.43858042), (0.95667225, 0.16741559, 0.23822331), (0.9028298, 0.076949954, 0.42305678), (0.94207394, 0.034368712, 0.3336397), (0.95667225, 0.16741559, 0.23822331), (0.91655725, 0.18230869, 0.35593027), (0.9028298, 0.076949954, 0.42305678), (0.95667225, 0.16741559, 0.23822331), (0.9083771, 0.32137567, 0.2675231), (0.91655725, 0.18230869, 0.35593027), (0.8780951, 0.44791573, 0.16828656), (0.81504124, 0.41989926, 0.39923972), (0.9083771, 0.32137567, 0.2675231), (0.6717314, -0.728896, 0.13224062), (0.66412526, -0.7449501, -0.063141584), (0.7800512, -0.62379897, 0.048939), (-0.15455057, -0.34080482, -0.92734355), (-0.3209265, -0.24521452, -0.9148093), (-0.76888233, -0.20671551, -0.6050526), (0.91266817, 0.2927578, 0.28518367), (0.83112574, 0.35790464, 0.42559874), (0.8305072, 0.457607, 0.3175745), (0.91266817, 0.2927578, 0.28518367), (0.95666397, 0.11851852, 0.26598394), (0.83112574, 0.35790464, 0.42559874), (0.8157006, -0.57242763, -0.08342118), (0.9279927, -0.33636194, -0.16028197), (0.89868915, -0.43727162, 0.033930734), (0.5598551, -0.7281588, 0.3954075), (0.5876403, -0.5747546, 0.56950504), (0.5278373, -0.79790884, 0.29108292), (0.75422907, -0.2644921, -0.6009847), (0.75791395, -0.3511029, -0.54981196), (0.77248055, -0.44990683, -0.44817156), (0.69067633, -0.22762033, -0.68640745), (0.6430411, -0.12543626, -0.7554893), (0.7484313, -0.21400833, -0.6277347), (-0.95097476, 0.25195938, -0.17934175), (-0.9587795, 0.26072076, 0.11298901), (-0.98665786, -0.13022158, -0.09771668), (-0.75874835, -0.5758175, 0.3045243), (-0.84999394, -0.41160384, 0.32877436), (-0.7855146, -0.57445645, 0.2301446), (-0.9587795, 0.26072076, 0.11298901), (-0.98468184, -0.07080658, 0.15933585), (-0.98665786, -0.13022158, -0.09771668), (0.9426915, 0.3039397, 0.13767104), (0.9083771, 0.32137567, 0.2675231), (0.95667225, 0.16741559, 0.23822331), (0.9115882, 0.39404604, 0.11719492), (0.8780951, 0.44791573, 0.16828656), (0.9083771, 0.32137567, 0.2675231), (0.95666397, 0.11851852, 0.26598394), (0.9728203, 0.059575886, 0.2237664), (0.93717116, 0.17813864, 0.2999613), (0.9728203, 0.059575886, 0.2237664), (0.8983721, 0.31096193, 0.31021002), (0.93717116, 0.17813864, 0.2999613), (0.91505194, -0.13129345, -0.38136873), (0.9250353, -0.13516796, -0.35502043), (0.8867414, -0.23026726, -0.40083247), (-0.84999394, -0.41160384, 0.32877436), (-0.8702511, -0.42538556, 0.2484149), (-0.7855146, -0.57445645, 0.2301446), (0.8305072, 0.457607, 0.3175745), (0.77743036, 0.4899097, 0.39444962), (0.84308434, 0.48139495, 0.23972411), (0.36375645, -0.89763147, -0.24887547), (0.54656434, -0.80144656, -0.24279799), (0.026534816, -0.97648054, -0.21396673), (-0.84999394, -0.41160384, 0.32877436), (-0.88237315, -0.3252089, 0.3400833), (-0.8702511, -0.42538556, 0.2484149), (0.9842109, 0.07599091, 0.15985686), (0.95667225, 0.16741559, 0.23822331), (0.94207394, 0.034368712, 0.3336397), (0.9426915, 0.3039397, 0.13767104), (0.9115882, 0.39404604, 0.11719492), (0.9083771, 0.32137567, 0.2675231), (0.931049, 0.36383775, 0.027747536), (0.9426915, 0.3039397, 0.13767104), (0.9765633, 0.20900229, 0.05140108), (-0.19416271, -0.24930608, -0.948761), (-0.30569237, -0.08142651, -0.94864213), (-0.4823344, -0.25900897, -0.83682), (-0.3209265, -0.24521452, -0.9148093), (-0.19416271, -0.24930608, -0.948761), (-0.4823344, -0.25900897, -0.83682), (0.8394417, 0.30937803, 0.44679174), (0.9578458, 0.12638372, 0.2579895), (0.90724313, 0.38943306, 0.1589085), (-0.20828348, 0.23818831, -0.9486223), (0.079860196, 0.7080619, -0.70162016), (0.7657911, 0.57791793, -0.28208998), (0.3377375, 0.23690069, 0.9109399), (0.44153064, 0.2671292, 0.8565586), (0.40194345, 0.27107918, 0.87461853), (0.7800137, -0.4007698, 0.48058534), (0.9250203, -0.31584644, 0.21113618), (0.91270494, -0.20119324, 0.35565582), (0.97039586, -0.11759811, 0.2109559), (0.56647444, -0.7808643, -0.26335832), (0.41798517, -0.7731486, -0.47700074), (0.3153758, -0.32686642, 0.8908964), (0.18310174, -0.24384306, 0.952373), (0.3950109, -0.21165003, 0.8939634), (0.8546297, 0.36033016, 0.37385878), (0.7042605, 0.29188213, 0.6471646), (0.64249104, 0.4363511, 0.6299231), (0.81515265, -0.53872156, -0.21285026), (0.7768317, -0.57160056, -0.26420677), (0.93111163, -0.35407212, -0.08754509), (0.9786324, 0.17224573, 0.112293996), (0.9426915, 0.3039397, 0.13767104), (0.95667225, 0.16741559, 0.23822331), (0.6738203, 0.21030322, -0.70833516), (-0.29874602, -0.24604231, -0.92207056), (-0.20828348, 0.23818831, -0.9486223), (0.91505194, -0.13129345, -0.38136873), (0.90839314, -0.0503038, -0.4150799), (0.9250353, -0.13516796, -0.35502043), (0.90119463, 0.3538509, 0.2502753), (0.91266817, 0.2927578, 0.28518367), (0.8305072, 0.457607, 0.3175745), (0.9599588, 0.18890539, -0.20686671), (0.913919, 0.2985505, -0.2749904), (0.93655956, 0.33114547, -0.11488639), (0.5315208, -0.79590696, 0.28985828), (0.6717314, -0.728896, 0.13224062), (0.6361548, -0.68773913, 0.34974554), (0.6361548, -0.68773913, 0.34974554), (0.6717314, -0.728896, 0.13224062), (0.7870885, -0.54598624, 0.28703767), (0.91270494, -0.20119324, 0.35565582), (0.98415905, -0.10507068, 0.14279798), (0.91738075, 0.01338988, 0.39778554), (0.45836627, -0.8875529, -0.046368957), (0.38401255, -0.8880041, -0.25294876), (0.537906, -0.8258717, -0.16909474), (0.9786324, 0.17224573, 0.112293996), (0.95667225, 0.16741559, 0.23822331), (0.9842109, 0.07599091, 0.15985686), (0.66412526, -0.7449501, -0.063141584), (0.8157006, -0.57242763, -0.08342118), (0.7800512, -0.62379897, 0.048939), (-0.9454336, -0.27170563, 0.17980929), (-0.9079555, -0.4165237, 0.046095967), (-0.8122668, -0.5721191, 0.113588564), (-0.83092785, -0.021337103, -0.555971), (-0.70207876, 0.5382597, -0.46622092), (-0.7881963, 0.06871542, -0.6115757), (0.06323527, -0.9765512, -0.20578884), (-0.04695872, -0.9982071, -0.037114695), (0.009184698, -0.89453715, -0.44689944), (-0.15455057, -0.34080482, -0.92734355), (-0.76888233, -0.20671551, -0.6050526), (-0.6699267, -0.33512715, -0.6624863), (0.5291761, -0.4985117, 0.6866285), (0.4455544, -0.8584529, 0.25404683), (0.6245076, -0.44971856, 0.6385479), (0.90119463, 0.3538509, 0.2502753), (0.8305072, 0.457607, 0.3175745), (0.84308434, 0.48139495, 0.23972411), (0.9491198, 0.06107513, 0.30893606), (0.95666397, 0.11851852, 0.26598394), (0.91266817, 0.2927578, 0.28518367), (0.95666397, 0.11851852, 0.26598394), (0.9491198, 0.06107513, 0.30893606), (0.9728203, 0.059575886, 0.2237664), (0.95666397, 0.11851852, 0.26598394), (0.8241424, 0.12562299, 0.5522755), (0.83112574, 0.35790464, 0.42559874), (0.7870885, -0.54598624, 0.28703767), (0.89868915, -0.43727162, 0.033930734), (0.9250203, -0.31584644, 0.21113618), (0.91738075, 0.01338988, 0.39778554), (0.98415905, -0.10507068, 0.14279798), (0.9578458, 0.12638372, 0.2579895), (0.54172295, -0.3545518, -0.76212156), (0.70091695, -0.5494212, -0.45480964), (0.76972014, -0.34309414, -0.53834695), (0.5601152, -0.8276674, 0.03517831), (0.66412526, -0.7449501, -0.063141584), (0.6717314, -0.728896, 0.13224062), (0.99612904, 0.08727966, -0.010440441), (0.9918953, 0.1111465, 0.06156539), (0.9917053, 0.1263945, 0.0233474), (0.47000778, -0.79117054, -0.39133346), (0.54554, -0.72752625, -0.41604286), (0.537906, -0.8258717, -0.16909474), (0.8885122, 0.44605473, 0.10761615), (0.8208584, 0.53809595, 0.19142672), (0.9555344, 0.27429387, 0.10824487), (-0.058234498, 0.78132826, 0.6213976), (-0.09595232, 0.6099804, 0.78658575), (0.048624907, 0.63666934, 0.7696024), (0.6717314, -0.728896, 0.13224062), (0.7800512, -0.62379897, 0.048939), (0.7870885, -0.54598624, 0.28703767), (0.7870885, -0.54598624, 0.28703767), (0.7800512, -0.62379897, 0.048939), (0.89868915, -0.43727162, 0.033930734), (0.9918953, 0.1111465, 0.06156539), (0.99612904, 0.08727966, -0.010440441), (0.9765633, 0.20900229, 0.05140108), (-0.074242614, 0.9043319, 0.4203234), (-0.38761067, 0.912261, 0.13243043), (-0.18741368, 0.93810004, 0.29128063), (0.9594049, -0.28178936, 0.011700911), (0.99068445, -0.04349092, -0.12904574), (0.98415905, -0.10507068, 0.14279798), (0.9977367, -0.06580477, -0.013827281), (0.99634284, 0.079342194, -0.031714533), (0.9555344, 0.27429387, 0.10824487), (0.90119463, 0.3538509, 0.2502753), (0.9491198, 0.06107513, 0.30893606), (0.91266817, 0.2927578, 0.28518367), (-0.4823344, -0.25900897, -0.83682), (-0.30569237, -0.08142651, -0.94864213), (-0.7797168, -0.03955091, -0.624882), (0.89868915, -0.43727162, 0.033930734), (0.9594049, -0.28178936, 0.011700911), (0.9250203, -0.31584644, 0.21113618), (0.9250203, -0.31584644, 0.21113618), (0.98415905, -0.10507068, 0.14279798), (0.91270494, -0.20119324, 0.35565582), (0.99170935, 0.12236345, 0.03924041), (0.90724313, 0.38943306, 0.1589085), (0.9578458, 0.12638372, 0.2579895), (0.9918953, 0.1111465, 0.06156539), (0.9786324, 0.17224573, 0.112293996), (0.9842109, 0.07599091, 0.15985686), (0.9765633, 0.20900229, 0.05140108), (0.9426915, 0.3039397, 0.13767104), (0.9786324, 0.17224573, 0.112293996), (0.9115882, 0.39404604, 0.11719492), (0.8714515, 0.48784792, 0.050760273), (0.8780951, 0.44791573, 0.16828656), (0.8714515, 0.48784792, 0.050760273), (0.830922, 0.5463997, 0.10495742), (0.8780951, 0.44791573, 0.16828656), (0.9279927, -0.33636194, -0.16028197), (0.99068445, -0.04349092, -0.12904574), (0.9594049, -0.28178936, 0.011700911), (0.93103486, 0.3613243, 0.0511762), (0.84308434, 0.48139495, 0.23972411), (0.84710217, 0.51983225, 0.11041878), (0.9250203, -0.31584644, 0.21113618), (0.9594049, -0.28178936, 0.011700911), (0.98415905, -0.10507068, 0.14279798), (0.3530125, 0.85101134, 0.38879523), (0.5606399, 0.74168354, 0.36822322), (0.5086808, 0.7223638, 0.46843803), (0.6664627, 0.73642385, 0.116221525), (0.6464907, 0.64796484, 0.40273005), (0.8761255, 0.4182807, 0.23967777), (0.3530125, 0.85101134, 0.38879523), (-0.19833784, 0.8949851, 0.3995795), (0.25332546, 0.9172516, 0.307369), (0.6204998, 0.67441005, 0.40018886), (0.46501714, 0.8165149, 0.34214398), (0.6442778, 0.76190704, -0.06636116), (0.29285645, -0.22085378, 0.93030035), (0.19233075, -0.47231376, 0.86019105), (0.095185675, -0.91661394, 0.38827646), (-0.5683309, -0.7660872, -0.30018413), (-0.025121022, -0.944091, -0.32872617), (-0.19740334, -0.64745516, -0.7360935), (-0.5461902, 0.7774321, 0.31189036), (-0.5793119, 0.71455824, 0.39217898), (-0.19833784, 0.8949851, 0.3995795), (0.7595671, 0.6272571, 0.17206532), (0.70054066, 0.58831096, 0.40389735), (0.93717116, 0.17813864, 0.2999613), (0.8529486, 0.47849572, 0.20861624), (0.6204998, 0.67441005, 0.40018886), (0.6442778, 0.76190704, -0.06636116), (0.15915732, 0.86922413, 0.4681008), (-0.5461902, 0.7774321, 0.31189036), (-0.19833784, 0.8949851, 0.3995795), (0.9648092, 0.2261427, 0.134174), (0.8529486, 0.47849572, 0.20861624), (0.8960697, 0.31373283, -0.31405523), (-0.22639912, 0.16232789, 0.9604129), (-0.1420941, -0.14105362, 0.97975165), (-0.48213178, -0.10772832, 0.86945015), (0.6464907, 0.64796484, 0.40273005), (0.7552057, 0.5495205, 0.35733962), (0.8761255, 0.4182807, 0.23967777), (0.37906346, 0.6066238, 0.69879776), (0.6477321, 0.42353454, 0.63329434), (0.64088225, 0.59856194, 0.48061773), (0.6464907, 0.64796484, 0.40273005), (0.5086808, 0.7223638, 0.46843803), (0.7552057, 0.5495205, 0.35733962), (0.8208584, 0.53809595, 0.19142672), (0.79330575, 0.5454925, 0.27037752), (0.9555344, 0.27429387, 0.10824487), (0.44671834, 0.852898, -0.2701996), (0.8267286, 0.542276, -0.14985508), (0.74618113, 0.6638011, -0.050810903), (0.8332964, 0.4042927, -0.37704715), (0.7244332, 0.68780965, -0.045983385), (0.93415296, 0.33030346, -0.13512185), (0.59385073, 0.17331566, 0.78568625), (0.64674646, 0.3011788, 0.7007213), (0.30334, 0.5943287, 0.74482083), (0.7244332, 0.68780965, -0.045983385), (0.54125506, 0.8088895, 0.22965348), (0.74083424, 0.6040892, 0.29366815), (0.31527486, 0.7958481, 0.5169406), (0.64088225, 0.59856194, 0.48061773), (0.74083424, 0.6040892, 0.29366815), (0.54125506, 0.8088895, 0.22965348), (0.31527486, 0.7958481, 0.5169406), (0.74083424, 0.6040892, 0.29366815), (0.31527486, 0.7958481, 0.5169406), (0.37906346, 0.6066238, 0.69879776), (0.64088225, 0.59856194, 0.48061773), (-0.079171896, 0.98924536, 0.12298558), (-0.17983451, 0.9705822, 0.16009289), (-0.08386732, 0.951831, 0.29493073), (-0.5599974, 0.8270717, -0.048531305), (-0.54022664, 0.8414942, 0.006545372), (-0.41684034, 0.85262483, 0.31507948), (-0.38011017, 0.50591207, 0.77431846), (-0.59768534, 0.20133865, 0.77603805), (-0.2703541, 0.38242364, 0.8835502), (0.8332964, 0.4042927, -0.37704715), (0.5972616, 0.7425547, -0.30313534), (0.7244332, 0.68780965, -0.045983385), (0.37219942, -0.5005989, 0.7815807), (-0.029292079, -0.3112522, 0.9498758), (0.20669228, -0.64587563, 0.7349305), (0.12630558, 0.93891793, 0.320125), (0.00050679053, 0.95226026, 0.30528688), (0.09416055, 0.853342, 0.51277804), (0.79330575, 0.5454925, 0.27037752), (0.6025557, 0.69966674, 0.38391808), (0.7570868, 0.55058867, 0.35166964), (0.5972616, 0.7425547, -0.30313534), (0.32334125, 0.9322983, -0.16208099), (0.7244332, 0.68780965, -0.045983385), (0.32334125, 0.9322983, -0.16208099), (0.28474244, 0.9577889, 0.039526094), (0.7244332, 0.68780965, -0.045983385), (0.7244332, 0.68780965, -0.045983385), (0.28474244, 0.9577889, 0.039526094), (0.54125506, 0.8088895, 0.22965348), (0.28474244, 0.9577889, 0.039526094), (0.19090606, 0.9407036, 0.28041342), (0.54125506, 0.8088895, 0.22965348), (0.54125506, 0.8088895, 0.22965348), (0.19090606, 0.9407036, 0.28041342), (0.31527486, 0.7958481, 0.5169406), (0.90724313, 0.38943306, 0.1589085), (0.7244332, 0.68780965, -0.045983385), (0.74083424, 0.6040892, 0.29366815), (0.63791245, 0.060515024, -0.76772755), (0.607333, -0.55710804, -0.5663719), (0.8494472, 0.21180317, -0.48330003), (0.19090606, 0.9407036, 0.28041342), (-0.09636739, 0.9123693, 0.39786378), (0.31527486, 0.7958481, 0.5169406), (0.2747581, 0.95821714, 0.07954798), (-0.17572127, 0.88967335, 0.42143017), (-0.32523423, 0.94020087, 0.10121758), (-0.21142203, 0.7854323, 0.581719), (0.28071946, 0.44377977, 0.8510324), (0.17310427, 0.63279414, 0.7547227), (0.31527486, 0.7958481, 0.5169406), (-0.09636739, 0.9123693, 0.39786378), (-0.058234498, 0.78132826, 0.6213976), (0.19816753, 0.8928737, -0.40435898), (0.32334125, 0.9322983, -0.16208099), (0.5972616, 0.7425547, -0.30313534), (0.024571516, 0.9990425, -0.036199898), (0.28474244, 0.9577889, 0.039526094), (0.32334125, 0.9322983, -0.16208099), (0.28474244, 0.9577889, 0.039526094), (-0.08368573, 0.98839074, 0.12680864), (0.19090606, 0.9407036, 0.28041342), (0.19090606, 0.9407036, 0.28041342), (-0.08368573, 0.98839074, 0.12680864), (-0.09636739, 0.9123693, 0.39786378), (-0.08386732, 0.951831, 0.29493073), (-0.22315592, 0.91620046, 0.3328336), (-0.14962682, 0.8733716, 0.46350175), (0.06356487, 0.9693748, -0.23721737), (0.024571516, 0.9990425, -0.036199898), (0.32334125, 0.9322983, -0.16208099), (-0.08368573, 0.98839074, 0.12680864), (0.28474244, 0.9577889, 0.039526094), (0.024571516, 0.9990425, -0.036199898), (-0.08368573, 0.98839074, 0.12680864), (0.2050341, 0.9281498, 0.31064278), (-0.09636739, 0.9123693, 0.39786378), (-0.09636739, 0.9123693, 0.39786378), (0.26596016, 0.72425157, 0.63617986), (-0.058234498, 0.78132826, 0.6213976), (-0.20652598, 0.9519867, 0.22598301), (-0.26032758, 0.9601892, 0.10132203), (-0.31588024, 0.9009044, 0.29764208), (-0.47410974, 0.8391813, -0.26644832), (-0.23053631, 0.9663495, -0.11411248), (-0.32523423, 0.94020087, 0.10121758), (0.2050341, 0.9281498, 0.31064278), (0.26596016, 0.72425157, 0.63617986), (-0.09636739, 0.9123693, 0.39786378), (0.8124644, 0.33431724, 0.4776333), (0.8637933, 0.024953382, 0.50322795), (0.26596016, 0.72425157, 0.63617986), (0.8124644, 0.33431724, 0.4776333), (0.26596016, 0.72425157, 0.63617986), (0.2050341, 0.9281498, 0.31064278), (0.2050341, 0.9281498, 0.31064278), (-0.08368573, 0.98839074, 0.12680864), (0.024571516, 0.9990425, -0.036199898), (0.9299018, 0.268288, 0.25160345), (0.8124644, 0.33431724, 0.4776333), (0.2050341, 0.9281498, 0.31064278), (0.25317535, 0.57428575, 0.778523), (0.34438956, 0.5497124, 0.7610599), (0.23326288, 0.7135614, 0.66061985), (0.70054066, 0.58831096, 0.40389735), (0.85161155, 0.12993316, 0.50781405), (0.93717116, 0.17813864, 0.2999613), (-0.38022053, 0.9175495, 0.11634087), (-0.48132876, 0.8258349, 0.2938015), (-0.309174, 0.9253757, 0.21929698), (-0.9915867, -0.11128689, 0.06611437), (-0.9632271, 0.14657582, 0.22518665), (-0.9743478, -0.16398498, 0.1541278), (-0.49264413, 0.09452328, -0.8650821), (-0.6209948, 0.43756935, -0.65030646), (-0.60296595, 0.29914132, -0.73955834), (-0.6809156, -0.73172814, 0.03046109), (-0.67896193, -0.7316011, -0.061403584), (-0.69212383, -0.7019966, 0.16782527), (0.58098644, 0.81308, -0.036818992), (0.024571516, 0.9990425, -0.036199898), (0.06356487, 0.9693748, -0.23721737), (0.3509934, 0.8128238, -0.46488836), (0.58098644, 0.81308, -0.036818992), (0.06356487, 0.9693748, -0.23721737), (0.58098644, 0.81308, -0.036818992), (0.2050341, 0.9281498, 0.31064278), (0.024571516, 0.9990425, -0.036199898), (0.2050341, 0.9281498, 0.31064278), (0.58098644, 0.81308, -0.036818992), (0.9299018, 0.268288, 0.25160345), (-0.9992325, 0.009367977, -0.03803466), (-0.9961066, -0.06624365, 0.058166064), (-0.9565734, 0.11846453, 0.2663332), (0.6687691, -0.012982731, 0.7433569), (0.28071946, 0.44377977, 0.8510324), (0.6037907, 0.038052984, 0.79623413), (-0.97750837, -0.036065973, 0.20778996), (-0.69212383, -0.7019966, 0.16782527), (-0.97854805, -0.20043711, -0.047629822), (-0.97125167, 0.15677212, -0.17914452), (-0.9279822, 0.3141734, -0.20035993), (-0.92852044, 0.07832266, -0.3629262), (0.12630558, 0.93891793, 0.320125), (0.09416055, 0.853342, 0.51277804), (0.31924212, 0.796362, 0.513704), (-0.9350665, 0.30848765, 0.17460212), (-0.97750837, -0.036065973, 0.20778996), (-0.95112556, 0.3084675, -0.014423577), (-0.97750837, -0.036065973, 0.20778996), (-0.97854805, -0.20043711, -0.047629822), (-0.95112556, 0.3084675, -0.014423577), (0.00073287025, 0.3308294, -0.94369024), (0.028824272, 0.40822512, -0.9124261), (-0.15126656, 0.40943748, -0.8997107), (0.9286086, 0.35685587, -0.10168594), (0.9917053, 0.1263945, 0.0233474), (0.58098644, 0.81308, -0.036818992), (0.58098644, 0.81308, -0.036818992), (0.9917053, 0.1263945, 0.0233474), (0.9299018, 0.268288, 0.25160345), (0.85161155, 0.12993316, 0.50781405), (0.70054066, 0.58831096, 0.40389735), (0.64674646, 0.3011788, 0.7007213), (-0.21142203, 0.7854323, 0.581719), (-0.41684034, 0.85262483, 0.31507948), (-0.045587193, 0.6975793, 0.7150558), (0.094429635, 0.9954193, 0.014941663), (0.33993483, 0.93633366, 0.08788439), (0.07371192, 0.98138446, 0.17734447), (0.46760896, 0.8685303, 0.16430795), (0.33993483, 0.93633366, 0.08788439), (0.7595671, 0.6272571, 0.17206532), (0.31924212, 0.796362, 0.513704), (0.64674646, 0.3011788, 0.7007213), (0.70054066, 0.58831096, 0.40389735), (-0.19740334, -0.64745516, -0.7360935), (0.350484, -0.7758478, -0.5246153), (0.24769956, -0.17423761, -0.9530405), (-0.070745155, 0.9956527, -0.060588934), (0.2499385, 0.96746254, -0.03933172), (-0.10619863, 0.9663028, 0.23447953), (0.8761255, 0.4182807, 0.23967777), (0.6074403, 0.5816071, -0.5410632), (0.6664627, 0.73642385, 0.116221525), (-0.16633473, 0.8858777, 0.43307444), (-0.17572127, 0.88967335, 0.42143017), (0.17538239, 0.8461015, 0.5033421), (-0.14962682, 0.8733716, 0.46350175), (-0.30763242, 0.8334799, 0.45899191), (-0.31844297, 0.76659155, 0.55761224), (-0.3738997, -0.51097745, -0.77401626), (-0.4769235, 0.13732037, -0.8681516), (-0.3434998, 0.20149514, -0.9172827), (-0.85104406, 0.33972642, -0.40038738), (-0.9618187, 0.19691023, -0.19008182), (-0.95747125, 0.12048938, -0.26216623), (-0.6842741, 0.4033017, -0.6075498), (-0.6664247, 0.5819242, -0.46609253), (-0.78786373, 0.4057145, -0.46332115), (-0.19371775, 0.70356625, 0.6837163), (-0.36111245, 0.82862437, 0.42776096), (0.27001643, 0.8076288, 0.5242393), (-0.40582177, 0.8964418, -0.17804731), (-0.23053631, 0.9663495, -0.11411248), (-0.47410974, 0.8391813, -0.26644832), (-0.40582177, 0.8964418, -0.17804731), (-0.20690525, 0.9781105, -0.022140631), (-0.23053631, 0.9663495, -0.11411248), (0.33993483, 0.93633366, 0.08788439), (0.094429635, 0.9954193, 0.014941663), (0.14452474, 0.98440695, 0.10027794), (0.14452474, 0.98440695, 0.10027794), (0.05038137, 0.98023415, 0.1913183), (0.24459313, 0.9440391, 0.22127925), (-0.079171896, 0.98924536, 0.12298558), (-0.08386732, 0.951831, 0.29493073), (0.00050679053, 0.95226026, 0.30528688), (-0.40582177, 0.8964418, -0.17804731), (-0.4276711, 0.90195936, -0.05972252), (-0.2818992, 0.95858043, 0.040699583), (-0.20690525, 0.9781105, -0.022140631), (-0.40582177, 0.8964418, -0.17804731), (-0.2818992, 0.95858043, 0.040699583), (-0.4276711, 0.90195936, -0.05972252), (-0.38022053, 0.9175495, 0.11634087), (-0.2818992, 0.95858043, 0.040699583), (0.022599412, 0.90979797, 0.41443557), (0.3088494, 0.7915894, 0.5272555), (-0.10124068, 0.7978244, 0.5943287), (0.5606399, 0.74168354, 0.36822322), (0.6511017, 0.7073549, 0.27516472), (0.7552057, 0.5495205, 0.35733962), (0.24459313, 0.9440391, 0.22127925), (0.05038137, 0.98023415, 0.1913183), (0.12630558, 0.93891793, 0.320125), (-0.38022053, 0.9175495, 0.11634087), (-0.5965688, 0.7911226, 0.1350209), (-0.48132876, 0.8258349, 0.2938015), (-0.20491007, 0.9780425, -0.038011298), (-0.23840603, 0.9710963, -0.011599948), (-0.26032758, 0.9601892, 0.10132203), (-0.20690525, 0.9781105, -0.022140631), (-0.17983451, 0.9705822, 0.16009289), (-0.079171896, 0.98924536, 0.12298558), (0.33743116, 0.88452536, -0.32211047), (0.3376761, 0.9299915, -0.14522585), (0.19128671, 0.95489544, -0.22712131), (0.2747581, 0.95821714, 0.07954798), (-0.32523423, 0.94020087, 0.10121758), (-0.017885031, 0.99868226, -0.04810295), (-0.19833784, 0.8949851, 0.3995795), (-0.50848097, 0.80318505, 0.31038842), (-0.09890812, 0.9205776, 0.37782794), (-0.59798235, 0.801431, 0.011207629), (-0.61686933, 0.7563009, -0.21790126), (-0.67914766, 0.51451015, -0.5234862), (-0.13579999, 0.99041, -0.025425393), (-0.20491007, 0.9780425, -0.038011298), (-0.16796216, 0.9833957, 0.06871436), (0.10966958, 0.9851662, -0.13198537), (0.02477868, 0.9981206, -0.056045752), (-0.084899954, 0.9946328, -0.059140276), (0.5064183, 0.8191969, 0.2691784), (0.3530125, 0.85101134, 0.38879523), (0.25332546, 0.9172516, 0.307369), (0.6664627, 0.73642385, 0.116221525), (0.35264283, 0.9119024, 0.20994528), (0.6464907, 0.64796484, 0.40273005), (0.2641053, 0.9644322, 0.010903846), (0.3219826, 0.9467368, -0.0040760986), (0.17378636, 0.9571861, 0.23150168), (0.12630558, 0.93891793, 0.320125), (0.05038137, 0.98023415, 0.1913183), (0.00050679053, 0.95226026, 0.30528688), (0.8208584, 0.53809595, 0.19142672), (0.6878133, 0.6915365, 0.2206584), (0.79330575, 0.5454925, 0.27037752), (0.6878133, 0.6915365, 0.2206584), (0.5941745, 0.73557484, 0.325402), (0.79330575, 0.5454925, 0.27037752), (0.5941745, 0.73557484, 0.325402), (0.6025557, 0.69966674, 0.38391808), (0.79330575, 0.5454925, 0.27037752), (0.5941745, 0.73557484, 0.325402), (0.29553086, 0.86234987, 0.41111332), (0.6025557, 0.69966674, 0.38391808), (0.29553086, 0.86234987, 0.41111332), (0.3452576, 0.7805231, 0.52113426), (0.6025557, 0.69966674, 0.38391808), (0.19034062, 0.8961472, 0.40086246), (0.022599412, 0.90979797, 0.41443557), (0.03084521, 0.880475, 0.47308826), (-0.9295156, -0.31445134, 0.1926684), (-0.97621727, -0.14019398, 0.16536482), (-0.88560915, -0.41817006, 0.20206507), (0.3376761, 0.9299915, -0.14522585), (0.2499385, 0.96746254, -0.03933172), (0.19128671, 0.95489544, -0.22712131), (0.6738203, 0.21030322, -0.70833516), (0.7657911, 0.57791793, -0.28208998), (0.8546297, 0.36033016, 0.37385878), (0.5086808, 0.7223638, 0.46843803), (0.5606399, 0.74168354, 0.36822322), (0.7552057, 0.5495205, 0.35733962), (-0.79953074, 0.5149029, 0.30923405), (-0.549907, 0.7612995, 0.34354806), (-0.6929957, 0.7194179, -0.04685013), (-0.7292571, -0.15952715, 0.6653834), (-0.43673542, -0.6124493, 0.65891445), (-0.8960748, -0.16243471, 0.4131161), (-0.50615185, 0.7918574, -0.3417193), (-0.40582177, 0.8964418, -0.17804731), (-0.47410974, 0.8391813, -0.26644832), (-0.69906676, 0.6669307, -0.25789395), (-0.9041209, 0.08618358, -0.41849458), (-0.5461902, 0.7774321, 0.31189036), (-0.23053631, 0.9663495, -0.11411248), (-0.078585915, 0.99615055, -0.03883709), (-0.017885031, 0.99868226, -0.04810295), (0.2641053, 0.9644322, 0.010903846), (0.2499385, 0.96746254, -0.03933172), (0.3376761, 0.9299915, -0.14522585), (0.5466017, 0.7706189, 0.32767817), (0.84710217, 0.51983225, 0.11041878), (0.869915, 0.37368533, 0.3218806), (0.7552057, 0.5495205, 0.35733962), (0.92486155, 0.28620204, 0.25043866), (0.8761255, 0.4182807, 0.23967777), (0.23804793, 0.49164066, 0.8376293), (-0.19371775, 0.70356625, 0.6837163), (0.27001643, 0.8076288, 0.5242393), (0.17378636, 0.9571861, 0.23150168), (0.5466017, 0.7706189, 0.32767817), (0.022599412, 0.90979797, 0.41443557), (0.7408806, 0.5325881, 0.40920156), (0.869915, 0.37368533, 0.3218806), (0.83304924, 0.2742929, 0.48040846), (0.4429471, 0.70619273, 0.55234927), (0.34438956, 0.5497124, 0.7610599), (0.43238065, 0.5242961, 0.73359436), (-0.17983451, 0.9705822, 0.16009289), (-0.22315592, 0.91620046, 0.3328336), (-0.08386732, 0.951831, 0.29493073), (0.2747581, 0.95821714, 0.07954798), (-0.017885031, 0.99868226, -0.04810295), (0.10966958, 0.9851662, -0.13198537), (-0.69906676, 0.6669307, -0.25789395), (-0.19617479, 0.9391101, 0.2821128), (-0.35504547, 0.88452846, -0.30257598), (0.3989213, -0.11630111, 0.90958), (0.27950996, -0.040275995, 0.95929766), (0.44979906, -0.21742286, 0.86626107), (0.869915, 0.37368533, 0.3218806), (0.83344054, 0.48242986, 0.26951486), (0.8547374, 0.35883695, 0.3750466), (0.8547374, 0.35883695, 0.3750466), (0.83304924, 0.2742929, 0.48040846), (0.869915, 0.37368533, 0.3218806), (0.93415296, 0.33030346, -0.13512185), (0.94701487, 0.19354117, -0.25632918), (0.8332964, 0.4042927, -0.37704715), (-0.9648999, 0.047693223, 0.25825062), (-0.9637507, 0.20905967, 0.16576698), (-0.9819716, 0.15203424, 0.11232699), (0.00050679053, 0.95226026, 0.30528688), (-0.029919961, 0.90480524, 0.42477337), (0.09416055, 0.853342, 0.51277804), (-0.14962682, 0.8733716, 0.46350175), (-0.31844297, 0.76659155, 0.55761224), (-0.13216738, 0.80042946, 0.5846747), (-0.16796216, 0.9833957, 0.06871436), (-0.26032758, 0.9601892, 0.10132203), (-0.20652598, 0.9519867, 0.22598301), (0.869915, 0.37368533, 0.3218806), (0.7408806, 0.5325881, 0.40920156), (0.5466017, 0.7706189, 0.32767817), (-0.36111245, 0.82862437, 0.42776096), (-0.40095302, 0.90364987, 0.15051116), (0.07371192, 0.98138446, 0.17734447), (0.05038137, 0.98023415, 0.1913183), (-0.079171896, 0.98924536, 0.12298558), (0.00050679053, 0.95226026, 0.30528688), (-0.9079555, -0.4165237, 0.046095967), (-0.9925045, -0.10919387, 0.054877568), (-0.92169434, -0.38049635, -0.07551261), (0.1556248, 0.78612894, -0.598149), (0.35264283, 0.9119024, 0.20994528), (0.6664627, 0.73642385, 0.116221525), (-0.08386732, 0.951831, 0.29493073), (-0.14962682, 0.8733716, 0.46350175), (-0.029919961, 0.90480524, 0.42477337), (0.015296024, 0.9989333, 0.043568775), (-0.079171896, 0.98924536, 0.12298558), (0.05038137, 0.98023415, 0.1913183), (-0.078585915, 0.99615055, -0.03883709), (0.02477868, 0.9981206, -0.056045752), (-0.017885031, 0.99868226, -0.04810295), (0.3219826, 0.9467368, -0.0040760986), (0.5466017, 0.7706189, 0.32767817), (0.17378636, 0.9571861, 0.23150168), (-0.9819716, 0.15203424, 0.11232699), (-0.9637507, 0.20905967, 0.16576698), (-0.91734314, 0.35172197, 0.18647535), (0.2641053, 0.9644322, 0.010903846), (0.17378636, 0.9571861, 0.23150168), (0.21395285, 0.94366175, 0.2524414), (0.6442778, 0.76190704, -0.06636116), (0.2747581, 0.95821714, 0.07954798), (0.22105704, 0.9543122, -0.20105194), (-0.084899954, 0.9946328, -0.059140276), (0.094429635, 0.9954193, 0.014941663), (0.07371192, 0.98138446, 0.17734447), (0.2641053, 0.9644322, 0.010903846), (0.21395285, 0.94366175, 0.2524414), (0.2499385, 0.96746254, -0.03933172), (0.27001643, 0.8076288, 0.5242393), (0.5976201, 0.584136, 0.5492134), (0.23804793, 0.49164066, 0.8376293), (0.24459313, 0.9440391, 0.22127925), (0.12630558, 0.93891793, 0.320125), (0.31924212, 0.796362, 0.513704), (-0.028711615, 0.77819705, 0.62736356), (0.008604802, 0.94421047, 0.32922998), (-0.01143896, 0.61629575, 0.7874318), (0.02477868, 0.9981206, -0.056045752), (0.015296024, 0.9989333, 0.043568775), (0.094429635, 0.9954193, 0.014941663), (0.29553086, 0.86234987, 0.41111332), (0.17538239, 0.8461015, 0.5033421), (0.3452576, 0.7805231, 0.52113426), (-0.93291295, 0.35986936, 0.012942048), (-0.8803778, 0.4419459, 0.1721006), (-0.9587795, 0.26072076, 0.11298901), (0.21395285, 0.94366175, 0.2524414), (0.17378636, 0.9571861, 0.23150168), (0.31584677, 0.88301134, 0.3471768), (0.19128671, 0.95489544, -0.22712131), (0.2499385, 0.96746254, -0.03933172), (-0.070745155, 0.9956527, -0.060588934), (0.11040793, 0.7877665, 0.6059984), (0.03084521, 0.880475, 0.47308826), (-0.10124068, 0.7978244, 0.5943287), (0.11040793, 0.7877665, 0.6059984), (-0.10124068, 0.7978244, 0.5943287), (-0.01406842, 0.64227736, 0.76634324), (-0.17983451, 0.9705822, 0.16009289), (-0.2818992, 0.95858043, 0.040699583), (-0.309174, 0.9253757, 0.21929698), (0.27001643, 0.8076288, 0.5242393), (0.7303506, 0.6483591, 0.21498479), (0.5976201, 0.584136, 0.5492134), (0.33993483, 0.93633366, 0.08788439), (0.24459313, 0.9440391, 0.22127925), (0.5002851, 0.8444975, 0.19115135), (-0.22743472, 0.93119746, -0.28485948), (-0.21132989, 0.9662338, -0.14741704), (-0.17897557, 0.93098456, -0.31817535), (-0.46872184, 0.7804253, 0.41380703), (-0.7301093, 0.5938555, 0.33804742), (-0.17572127, 0.88967335, 0.42143017), (0.014806919, 0.9274452, -0.3736656), (0.10966958, 0.9851662, -0.13198537), (-0.084899954, 0.9946328, -0.059140276), (-0.49264413, 0.09452328, -0.8650821), (-0.36612034, -0.18574306, -0.91184175), (-0.2824014, -0.24968438, -0.92623276), (0.27001643, 0.8076288, 0.5242393), (0.46760896, 0.8685303, 0.16430795), (0.7303506, 0.6483591, 0.21498479), (0.74618113, 0.6638011, -0.050810903), (0.84710217, 0.51983225, 0.11041878), (0.5466017, 0.7706189, 0.32767817), (0.3219826, 0.9467368, -0.0040760986), (0.74618113, 0.6638011, -0.050810903), (0.5466017, 0.7706189, 0.32767817), (-0.9587795, 0.26072076, 0.11298901), (-0.9863728, 0.12996015, 0.100891285), (-0.97649986, -0.1604329, 0.14390719), (-0.36604598, 0.8602345, 0.3549749), (-0.48647246, 0.74353755, 0.45879897), (-0.30763242, 0.8334799, 0.45899191), (0.11630765, 0.11799151, 0.9861797), (0.023954298, 0.34886315, 0.9368675), (-0.0027750435, 0.12141987, 0.99259734), (0.31584677, 0.88301134, 0.3471768), (0.17378636, 0.9571861, 0.23150168), (0.19034062, 0.8961472, 0.40086246), (0.17378636, 0.9571861, 0.23150168), (0.022599412, 0.90979797, 0.41443557), (0.19034062, 0.8961472, 0.40086246), (-0.97649986, -0.1604329, 0.14390719), (-0.9743478, -0.16398498, 0.1541278), (-0.9771185, -0.17707905, 0.117823794), (0.003058653, 0.8196361, 0.5728763), (-0.13216738, 0.80042946, 0.5846747), (0.020863017, 0.7332546, 0.67963403), (0.014806919, 0.9274452, -0.3736656), (-0.084899954, 0.9946328, -0.059140276), (-0.52446204, 0.81458443, -0.2477736), (-0.87894833, 0.28648278, 0.38128418), (-0.9065204, 0.40756547, 0.11005034), (-0.977894, 0.19825432, 0.06647189), (0.95632046, -0.2823347, -0.075751096), (0.7449587, -0.6390075, -0.19158767), (0.9430448, -0.31553745, -0.10536934), (0.5466017, 0.7706189, 0.32767817), (0.7408806, 0.5325881, 0.40920156), (0.3088494, 0.7915894, 0.5272555), (-0.078585915, 0.99615055, -0.03883709), (-0.20690525, 0.9781105, -0.022140631), (-0.079171896, 0.98924536, 0.12298558), (0.19128671, 0.95489544, -0.22712131), (-0.070745155, 0.9956527, -0.060588934), (-0.14383577, 0.9503132, -0.27607244), (0.16986059, 0.97098553, -0.16832872), (0.3219826, 0.9467368, -0.0040760986), (0.2358237, 0.9672198, -0.094195746), (-0.078585915, 0.99615055, -0.03883709), (-0.079171896, 0.98924536, 0.12298558), (0.015296024, 0.9989333, 0.043568775), (-0.6929957, 0.7194179, -0.04685013), (-0.61607623, 0.71149987, -0.3379616), (-0.85781515, 0.49961972, -0.12055419), (-0.98524743, 0.15831314, -0.064996704), (-0.9819716, 0.15203424, 0.11232699), (-0.93291295, 0.35986936, 0.012942048), (0.022599412, 0.90979797, 0.41443557), (0.5466017, 0.7706189, 0.32767817), (0.3088494, 0.7915894, 0.5272555), (0.21601784, 0.08309092, 0.9728475), (0.6517776, -0.12347161, 0.74829185), (0.46723258, 0.19325909, 0.8627541), (0.72817004, 0.49180785, 0.4773819), (0.6463674, 0.6034796, 0.46692765), (0.5752987, 0.49384677, 0.6520327), (-0.5437034, 0.5026201, -0.6721307), (-0.5260783, 0.2280383, -0.81929255), (-0.7785315, 0.30379283, -0.54918), (-0.17572127, 0.88967335, 0.42143017), (-0.16633473, 0.8858777, 0.43307444), (-0.46872184, 0.7804253, 0.41380703), (-0.029919961, 0.90480524, 0.42477337), (-0.14962682, 0.8733716, 0.46350175), (0.003058653, 0.8196361, 0.5728763), (0.003058653, 0.8196361, 0.5728763), (-0.14962682, 0.8733716, 0.46350175), (-0.13216738, 0.80042946, 0.5846747), (-0.26032758, 0.9601892, 0.10132203), (-0.29553196, 0.9381323, 0.18046756), (-0.31588024, 0.9009044, 0.29764208), (0.74618113, 0.6638011, -0.050810903), (0.8267286, 0.542276, -0.14985508), (0.84710217, 0.51983225, 0.11041878), (0.9573712, 0.23245242, 0.17148295), (0.79330575, 0.5454925, 0.27037752), (0.84273946, 0.44965845, 0.2959688), (0.94207394, 0.034368712, 0.3336397), (0.9028298, 0.076949954, 0.42305678), (0.8790072, -0.016112523, 0.47653624), (-0.29553196, 0.9381323, 0.18046756), (-0.070745155, 0.9956527, -0.060588934), (-0.10619863, 0.9663028, 0.23447953), (-0.32523423, 0.94020087, 0.10121758), (-0.23053631, 0.9663495, -0.11411248), (-0.017885031, 0.99868226, -0.04810295), (-0.029919961, 0.90480524, 0.42477337), (0.003058653, 0.8196361, 0.5728763), (0.09416055, 0.853342, 0.51277804), (0.8756664, 0.48078087, -0.0453676), (0.8139878, 0.58068556, -0.015109397), (0.8714515, 0.48784792, 0.050760273), (0.6905752, 0.02852649, 0.7226978), (0.6176859, 0.29864606, 0.7275127), (0.0059285, 0.81032634, 0.58594877), (0.27001643, 0.8076288, 0.5242393), (0.07371192, 0.98138446, 0.17734447), (0.46760896, 0.8685303, 0.16430795), (0.7141602, 0.6879384, 0.12928985), (0.8064504, 0.36136454, 0.46803123), (0.8546297, 0.36033016, 0.37385878), (-0.40095302, 0.90364987, 0.15051116), (-0.084899954, 0.9946328, -0.059140276), (0.07371192, 0.98138446, 0.17734447), (-0.85579026, 0.25817674, 0.44829443), (-0.87775177, 0.32134143, 0.35537502), (-0.90046465, 0.30419362, 0.3108532), (0.8027101, 0.571138, -0.17163326), (0.8139878, 0.58068556, -0.015109397), (0.8756664, 0.48078087, -0.0453676), (0.26924786, 0.27496895, 0.922983), (0.46003348, -0.40896958, 0.7881073), (0.3038638, -0.12738982, 0.9441602), (0.8714515, 0.48784792, 0.050760273), (0.8139878, 0.58068556, -0.015109397), (0.830922, 0.5463997, 0.10495742), (0.830922, 0.5463997, 0.10495742), (0.77122915, 0.6152272, 0.1634046), (0.7706223, 0.5744059, 0.2760419), (0.022599412, 0.90979797, 0.41443557), (-0.10124068, 0.7978244, 0.5943287), (0.03084521, 0.880475, 0.47308826), (0.6442778, 0.76190704, -0.06636116), (0.46501714, 0.8165149, 0.34214398), (0.2747581, 0.95821714, 0.07954798), (-0.9955797, -0.093135186, -0.0121164275), (-0.81088346, 0.51771635, 0.272833), (-0.88589257, 0.42307234, 0.19027403), (0.094429635, 0.9954193, 0.014941663), (0.015296024, 0.9989333, 0.043568775), (0.14452474, 0.98440695, 0.10027794), (0.35264283, 0.9119024, 0.20994528), (0.5086808, 0.7223638, 0.46843803), (0.6464907, 0.64796484, 0.40273005), (0.02477868, 0.9981206, -0.056045752), (-0.078585915, 0.99615055, -0.03883709), (0.015296024, 0.9989333, 0.043568775), (0.19034062, 0.8961472, 0.40086246), (0.03084521, 0.880475, 0.47308826), (0.11040793, 0.7877665, 0.6059984), (-0.084899954, 0.9946328, -0.059140276), (0.02477868, 0.9981206, -0.056045752), (0.094429635, 0.9954193, 0.014941663), (-0.50615185, 0.7918574, -0.3417193), (-0.70207876, 0.5382597, -0.46622092), (-0.40582177, 0.8964418, -0.17804731), (0.8139878, 0.58068556, -0.015109397), (0.7695377, 0.6368548, 0.047199313), (0.830922, 0.5463997, 0.10495742), (0.830922, 0.5463997, 0.10495742), (0.7695377, 0.6368548, 0.047199313), (0.77122915, 0.6152272, 0.1634046), (0.8267286, 0.542276, -0.14985508), (0.93103486, 0.3613243, 0.0511762), (0.84710217, 0.51983225, 0.11041878), (0.14452474, 0.98440695, 0.10027794), (0.015296024, 0.9989333, 0.043568775), (0.05038137, 0.98023415, 0.1913183), (-0.7025925, 0.69908625, -0.13282447), (-0.40582177, 0.8964418, -0.17804731), (-0.70207876, 0.5382597, -0.46622092), (-0.40582177, 0.8964418, -0.17804731), (-0.7025925, 0.69908625, -0.13282447), (-0.4276711, 0.90195936, -0.05972252), (-0.17426847, 0.8075359, 0.56348586), (-0.0812308, 0.6370952, 0.7664927), (-0.056167908, 0.79164624, 0.6083925), (-0.9727995, -0.2294292, 0.031990424), (-0.6884842, -0.67793065, 0.25768104), (-0.84021795, 0.027527712, 0.54154986), (0.2601437, 0.9431217, -0.20699424), (0.2358237, 0.9672198, -0.094195746), (0.3376761, 0.9299915, -0.14522585), (0.2358237, 0.9672198, -0.094195746), (0.2641053, 0.9644322, 0.010903846), (0.3376761, 0.9299915, -0.14522585), (-0.17983451, 0.9705822, 0.16009289), (-0.309174, 0.9253757, 0.21929698), (-0.22315592, 0.91620046, 0.3328336), (0.3530125, 0.85101134, 0.38879523), (0.5064183, 0.8191969, 0.2691784), (0.5606399, 0.74168354, 0.36822322), (0.20080341, 0.9125142, 0.35636473), (-0.19617479, 0.9391101, 0.2821128), (0.15915732, 0.86922413, 0.4681008), (0.00050679053, 0.95226026, 0.30528688), (-0.08386732, 0.951831, 0.29493073), (-0.029919961, 0.90480524, 0.42477337), (0.6992543, -0.71367687, 0.041335452), (0.97447985, -0.17888117, -0.1356112), (0.607333, -0.55710804, -0.5663719), (0.6463674, 0.6034796, 0.46692765), (0.72817004, 0.49180785, 0.4773819), (0.7706223, 0.5744059, 0.2760419), (0.0385595, -0.28710848, -0.9571217), (-0.06887217, -0.20591082, -0.97614413), (0.026960814, -0.35389, -0.9348984), (0.3376761, 0.9299915, -0.14522585), (0.33743116, 0.88452536, -0.32211047), (0.2601437, 0.9431217, -0.20699424), (0.7408806, 0.5325881, 0.40920156), (0.83304924, 0.2742929, 0.48040846), (0.3088494, 0.7915894, 0.5272555), (0.83304924, 0.2742929, 0.48040846), (0.33469716, 0.57536525, 0.7462793), (0.3088494, 0.7915894, 0.5272555), (-0.309174, 0.9253757, 0.21929698), (-0.36604598, 0.8602345, 0.3549749), (-0.22315592, 0.91620046, 0.3328336), (0.0059285, 0.81032634, 0.58594877), (-0.13123845, 0.79722327, 0.5892465), (0.33521402, 0.4562327, 0.82430774), (-0.52446204, 0.81458443, -0.2477736), (-0.084899954, 0.9946328, -0.059140276), (-0.40095302, 0.90364987, 0.15051116), (-0.685311, 0.7282284, 0.005678225), (-0.52446204, 0.81458443, -0.2477736), (-0.40095302, 0.90364987, 0.15051116), (0.76854753, 0.5626308, -0.30460027), (0.8027101, 0.571138, -0.17163326), (0.80688834, 0.4972827, -0.31881186), (0.53602785, 0.6053474, 0.5884121), (0.5752987, 0.49384677, 0.6520327), (0.6463674, 0.6034796, 0.46692765), (0.568785, 0.71694213, 0.40308505), (0.53602785, 0.6053474, 0.5884121), (0.6463674, 0.6034796, 0.46692765), (-0.62062913, 0.5385183, 0.56992775), (-0.51980644, 0.6201144, 0.58758783), (-0.510264, 0.768923, 0.38521177), (-0.7964196, 0.20476519, -0.5690227), (-0.8753872, 0.22401635, -0.42838526), (-0.78920925, 0.29126886, -0.54065806), (0.048625186, 0.32706097, -0.9437514), (0.006958981, 0.5045976, -0.86332655), (0.21873905, 0.33852237, -0.91518074), (-0.41684034, 0.85262483, 0.31507948), (0.17310427, 0.63279414, 0.7547227), (-0.13123845, 0.79722327, 0.5892465), (-0.22315592, 0.91620046, 0.3328336), (-0.36604598, 0.8602345, 0.3549749), (-0.30763242, 0.8334799, 0.45899191), (-0.017885031, 0.99868226, -0.04810295), (0.02477868, 0.9981206, -0.056045752), (0.10966958, 0.9851662, -0.13198537), (0.8139878, 0.58068556, -0.015109397), (0.7539405, 0.6566816, -0.018521579), (0.7695377, 0.6368548, 0.047199313), (0.7695377, 0.6368548, 0.047199313), (0.6982014, 0.7013217, 0.14374499), (0.77122915, 0.6152272, 0.1634046), (0.77122915, 0.6152272, 0.1634046), (0.6982014, 0.7013217, 0.14374499), (0.7706223, 0.5744059, 0.2760419), (0.6982014, 0.7013217, 0.14374499), (0.640683, 0.7125475, 0.28600937), (0.7706223, 0.5744059, 0.2760419), (0.640683, 0.7125475, 0.28600937), (0.6463674, 0.6034796, 0.46692765), (0.7706223, 0.5744059, 0.2760419), (0.640683, 0.7125475, 0.28600937), (0.568785, 0.71694213, 0.40308505), (0.6463674, 0.6034796, 0.46692765), (-0.77796745, 0.49438986, -0.38774374), (-0.6664247, 0.5819242, -0.46609253), (-0.6842741, 0.4033017, -0.6075498), (0.0059285, 0.81032634, 0.58594877), (-0.5599974, 0.8270717, -0.048531305), (-0.13123845, 0.79722327, 0.5892465), (0.2358237, 0.9672198, -0.094195746), (0.3219826, 0.9467368, -0.0040760986), (0.2641053, 0.9644322, 0.010903846), (0.5606399, 0.74168354, 0.36822322), (0.5064183, 0.8191969, 0.2691784), (0.6511017, 0.7073549, 0.27516472), (0.8885122, 0.44605473, 0.10761615), (0.6878133, 0.6915365, 0.2206584), (0.8208584, 0.53809595, 0.19142672), (0.8027101, 0.571138, -0.17163326), (0.75970596, 0.6367116, -0.13208021), (0.8139878, 0.58068556, -0.015109397), (0.2747581, 0.95821714, 0.07954798), (0.10966958, 0.9851662, -0.13198537), (0.22105704, 0.9543122, -0.20105194), (0.75970596, 0.6367116, -0.13208021), (0.7539405, 0.6566816, -0.018521579), (0.8139878, 0.58068556, -0.015109397), (0.7539405, 0.6566816, -0.018521579), (0.67391706, 0.73878884, 0.0051735276), (0.7695377, 0.6368548, 0.047199313), (0.7695377, 0.6368548, 0.047199313), (0.67391706, 0.73878884, 0.0051735276), (0.6982014, 0.7013217, 0.14374499), (0.48888955, 0.8121081, 0.31853953), (0.29553086, 0.86234987, 0.41111332), (0.5941745, 0.73557484, 0.325402), (0.6023253, 0.7825452, 0.1575669), (0.640683, 0.7125475, 0.28600937), (0.6982014, 0.7013217, 0.14374499), (-0.09890812, 0.9205776, 0.37782794), (-0.50848097, 0.80318505, 0.31038842), (-0.52123135, 0.776415, 0.35425666), (-0.77796745, 0.49438986, -0.38774374), (-0.61607623, 0.71149987, -0.3379616), (-0.6664247, 0.5819242, -0.46609253), (0.67655736, 0.6346417, -0.37349725), (0.68598837, 0.6852006, -0.24478598), (0.75970596, 0.6367116, -0.13208021), (0.8027101, 0.571138, -0.17163326), (0.67655736, 0.6346417, -0.37349725), (0.75970596, 0.6367116, -0.13208021), (0.75970596, 0.6367116, -0.13208021), (0.67391706, 0.73878884, 0.0051735276), (0.7539405, 0.6566816, -0.018521579), (0.67391706, 0.73878884, 0.0051735276), (0.6023253, 0.7825452, 0.1575669), (0.6982014, 0.7013217, 0.14374499), (0.76854753, 0.5626308, -0.30460027), (0.67655736, 0.6346417, -0.37349725), (0.8027101, 0.571138, -0.17163326), (-0.19833784, 0.8949851, 0.3995795), (-0.09890812, 0.9205776, 0.37782794), (0.25332546, 0.9172516, 0.307369), (0.31584677, 0.88301134, 0.3471768), (0.19034062, 0.8961472, 0.40086246), (0.13814108, 0.8588598, 0.4932311), (-0.063274145, 0.68634343, 0.72451985), (0.11040793, 0.7877665, 0.6059984), (-0.01406842, 0.64227736, 0.76634324), (-0.9213237, 0.2280763, -0.3148711), (-0.8967408, 0.22459923, -0.3813282), (-0.91420937, 0.21459235, -0.34376058), (0.6023253, 0.7825452, 0.1575669), (0.568785, 0.71694213, 0.40308505), (0.640683, 0.7125475, 0.28600937), (0.16986059, 0.97098553, -0.16832872), (0.2358237, 0.9672198, -0.094195746), (0.2601437, 0.9431217, -0.20699424), (0.84308434, 0.48139495, 0.23972411), (0.77743036, 0.4899097, 0.39444962), (0.83344054, 0.48242986, 0.26951486), (-0.20989858, 0.9638512, -0.16411382), (-0.22743472, 0.93119746, -0.28485948), (-0.14383577, 0.9503132, -0.27607244), (-0.61607623, 0.71149987, -0.3379616), (-0.50847834, 0.7502318, -0.42261335), (-0.6664247, 0.5819242, -0.46609253), (0.19276795, 0.31514922, 0.9292586), (0.2670099, 0.19656658, 0.94343376), (0.28619885, 0.2774036, 0.9171355), (-0.35504547, 0.88452846, -0.30257598), (-0.073725015, 0.9225793, -0.378698), (-0.5214649, 0.24872354, -0.8162175), (-0.24380629, 0.6646074, 0.7062969), (-0.17426847, 0.8075359, 0.56348586), (-0.28955764, 0.83459437, 0.46862406), (0.68598837, 0.6852006, -0.24478598), (0.6381354, 0.7586189, -0.13145556), (0.75970596, 0.6367116, -0.13208021), (0.75970596, 0.6367116, -0.13208021), (0.6381354, 0.7586189, -0.13145556), (0.67391706, 0.73878884, 0.0051735276), (0.4429471, 0.70619273, 0.55234927), (0.53602785, 0.6053474, 0.5884121), (0.568785, 0.71694213, 0.40308505), (-0.4116224, 0.05100067, 0.9099263), (-0.19749816, -0.5429663, 0.8161998), (-0.14152348, 0.015151654, 0.989819), (0.33993483, 0.93633366, 0.08788439), (0.14452474, 0.98440695, 0.10027794), (0.24459313, 0.9440391, 0.22127925), (0.51078594, 0.7967686, 0.32288936), (0.568785, 0.71694213, 0.40308505), (0.6023253, 0.7825452, 0.1575669), (0.51078594, 0.7967686, 0.32288936), (0.4429471, 0.70619273, 0.55234927), (0.568785, 0.71694213, 0.40308505), (0.44671834, 0.852898, -0.2701996), (0.7637387, 0.51275146, -0.39215958), (0.8267286, 0.542276, -0.14985508), (0.020863017, 0.7332546, 0.67963403), (0.07036235, 0.62625414, 0.7764373), (0.30334, 0.5943287, 0.74482083), (-0.7853084, -0.58130556, 0.21301328), (-0.88255644, -0.30992982, 0.35360643), (-0.9054966, -0.4229858, -0.03404315), (-0.3209265, -0.24521452, -0.9148093), (-0.4823344, -0.25900897, -0.83682), (-0.76888233, -0.20671551, -0.6050526), (0.3897053, 0.84373677, 0.3691046), (0.4429471, 0.70619273, 0.55234927), (0.51078594, 0.7967686, 0.32288936), (-0.070745155, 0.9956527, -0.060588934), (-0.20989858, 0.9638512, -0.16411382), (-0.14383577, 0.9503132, -0.27607244), (-0.685311, 0.7282284, 0.005678225), (-0.40095302, 0.90364987, 0.15051116), (-0.36111245, 0.82862437, 0.42776096), (-0.83049834, 0.5569198, 0.010623102), (-0.9618187, 0.19691023, -0.19008182), (-0.6936356, 0.61176634, -0.3802784), (-0.016314462, 0.8976061, 0.44049644), (0.03869243, 0.87645984, 0.47991776), (0.1354116, 0.78960186, 0.59849197), (0.6381354, 0.7586189, -0.13145556), (0.5690089, 0.82010806, -0.060429882), (0.67391706, 0.73878884, 0.0051735276), (0.67391706, 0.73878884, 0.0051735276), (0.55459917, 0.83098847, 0.04333792), (0.6023253, 0.7825452, 0.1575669), (0.46915293, 0.8609888, 0.19645266), (0.51078594, 0.7967686, 0.32288936), (0.6023253, 0.7825452, 0.1575669), (0.3897053, 0.84373677, 0.3691046), (0.34856236, 0.7925001, 0.5004476), (0.4429471, 0.70619273, 0.55234927), (0.4429471, 0.70619273, 0.55234927), (0.34856236, 0.7925001, 0.5004476), (0.23326288, 0.7135614, 0.66061985), (0.008604802, 0.94421047, 0.32922998), (-0.016314462, 0.8976061, 0.44049644), (-0.01143896, 0.61629575, 0.7874318), (0.003058653, 0.8196361, 0.5728763), (0.020863017, 0.7332546, 0.67963403), (0.30334, 0.5943287, 0.74482083), (0.67655736, 0.6346417, -0.37349725), (0.5745417, 0.76015043, -0.30343544), (0.68598837, 0.6852006, -0.24478598), (0.68598837, 0.6852006, -0.24478598), (0.5745417, 0.76015043, -0.30343544), (0.6381354, 0.7586189, -0.13145556), (0.5745417, 0.76015043, -0.30343544), (0.5620369, 0.8098455, -0.16812158), (0.6381354, 0.7586189, -0.13145556), (0.67391706, 0.73878884, 0.0051735276), (0.5690089, 0.82010806, -0.060429882), (0.55459917, 0.83098847, 0.04333792), (0.55459917, 0.83098847, 0.04333792), (0.46915293, 0.8609888, 0.19645266), (0.6023253, 0.7825452, 0.1575669), (-0.056167908, 0.79164624, 0.6083925), (0.0813317, 0.65248305, 0.75342625), (0.03869243, 0.87645984, 0.47991776), (0.44671834, 0.852898, -0.2701996), (0.3219826, 0.9467368, -0.0040760986), (0.16986059, 0.97098553, -0.16832872), (0.18310174, -0.24384306, 0.952373), (0.23926726, -0.14382397, 0.96024257), (0.3950109, -0.21165003, 0.8939634), (-0.10619863, 0.9663028, 0.23447953), (0.2499385, 0.96746254, -0.03933172), (0.21395285, 0.94366175, 0.2524414), (-0.016314462, 0.8976061, 0.44049644), (0.008604802, 0.94421047, 0.32922998), (0.03869243, 0.87645984, 0.47991776), (0.09416055, 0.853342, 0.51277804), (0.003058653, 0.8196361, 0.5728763), (0.30334, 0.5943287, 0.74482083), (0.48888955, 0.8121081, 0.31853953), (0.5941745, 0.73557484, 0.325402), (0.6878133, 0.6915365, 0.2206584), (0.6381354, 0.7586189, -0.13145556), (0.5620369, 0.8098455, -0.16812158), (0.5690089, 0.82010806, -0.060429882), (0.46915293, 0.8609888, 0.19645266), (0.3897053, 0.84373677, 0.3691046), (0.51078594, 0.7967686, 0.32288936), (0.34856236, 0.7925001, 0.5004476), (0.3029325, 0.7035765, 0.64281577), (0.23326288, 0.7135614, 0.66061985), (-0.9054966, -0.4229858, -0.03404315), (-0.9940572, -0.10254405, 0.036538824), (-0.99596953, -0.034286868, -0.08288012), (0.008604802, 0.94421047, 0.32922998), (-0.09514772, 0.91167706, 0.39973986), (0.03869243, 0.87645984, 0.47991776), (-0.19617479, 0.9391101, 0.2821128), (-0.69906676, 0.6669307, -0.25789395), (-0.5461902, 0.7774321, 0.31189036), (-0.50102854, 0.86482495, -0.03237622), (-0.510264, 0.768923, 0.38521177), (-0.38923764, 0.8541122, 0.34494415), (0.29553086, 0.86234987, 0.41111332), (-0.16633473, 0.8858777, 0.43307444), (0.17538239, 0.8461015, 0.5033421), (0.95632046, -0.2823347, -0.075751096), (0.8210526, -0.54693574, -0.16350538), (0.7449587, -0.6390075, -0.19158767), (0.45945284, -0.78982055, -0.4063086), (0.12727505, -0.81410795, -0.56659454), (0.81515265, -0.53872156, -0.21285026), (0.55459917, 0.83098847, 0.04333792), (0.42914993, 0.89813405, 0.095841065), (0.46915293, 0.8609888, 0.19645266), (-0.97807634, 0.20070383, -0.055540092), (-0.9576202, 0.2513207, -0.14071745), (-0.9668867, 0.15470429, -0.20296964), (0.33521402, 0.4562327, 0.82430774), (0.6687691, -0.012982731, 0.7433569), (0.6905752, 0.02852649, 0.7226978), (-0.19617479, 0.9391101, 0.2821128), (-0.5461902, 0.7774321, 0.31189036), (0.15915732, 0.86922413, 0.4681008), (-0.49044955, 0.84781194, -0.20167837), (-0.38761067, 0.912261, 0.13243043), (-0.83049834, 0.5569198, 0.010623102), (-0.92852044, 0.07832266, -0.3629262), (-0.8749361, 0.10047233, -0.47370037), (-0.89475894, 0.012224607, -0.44638202), (0.5620369, 0.8098455, -0.16812158), (0.45455205, 0.8788353, -0.14502047), (0.5690089, 0.82010806, -0.060429882), (0.39673236, 0.87594074, 0.2744656), (0.34856236, 0.7925001, 0.5004476), (0.3897053, 0.84373677, 0.3691046), (0.34856236, 0.7925001, 0.5004476), (0.3437663, 0.6905318, 0.63638866), (0.3029325, 0.7035765, 0.64281577), (0.3219826, 0.9467368, -0.0040760986), (0.44671834, 0.852898, -0.2701996), (0.74618113, 0.6638011, -0.050810903), (-0.5599974, 0.8270717, -0.048531305), (-0.41684034, 0.85262483, 0.31507948), (-0.13123845, 0.79722327, 0.5892465), (-0.01406842, 0.64227736, 0.76634324), (-0.064630546, 0.71945006, 0.69153064), (0.023842763, 0.63369995, 0.77321136), (0.45455205, 0.8788353, -0.14502047), (0.46057546, 0.88716006, -0.028589655), (0.5690089, 0.82010806, -0.060429882), (0.5690089, 0.82010806, -0.060429882), (0.46057546, 0.88716006, -0.028589655), (0.55459917, 0.83098847, 0.04333792), (0.55459917, 0.83098847, 0.04333792), (0.46057546, 0.88716006, -0.028589655), (0.42914993, 0.89813405, 0.095841065), (0.46915293, 0.8609888, 0.19645266), (0.39673236, 0.87594074, 0.2744656), (0.3897053, 0.84373677, 0.3691046), (-0.09514772, 0.91167706, 0.39973986), (-0.17426847, 0.8075359, 0.56348586), (-0.056167908, 0.79164624, 0.6083925), (0.03869243, 0.87645984, 0.47991776), (-0.09514772, 0.91167706, 0.39973986), (-0.056167908, 0.79164624, 0.6083925), (0.64674646, 0.3011788, 0.7007213), (0.79124665, -0.017901318, 0.611235), (0.85161155, 0.12993316, 0.50781405), (0.5745417, 0.76015043, -0.30343544), (0.49790967, 0.82157475, -0.2776708), (0.5620369, 0.8098455, -0.16812158), (0.42914993, 0.89813405, 0.095841065), (0.39673236, 0.87594074, 0.2744656), (0.46915293, 0.8609888, 0.19645266), (0.32449275, 0.8816685, 0.3425861), (0.34856236, 0.7925001, 0.5004476), (0.39673236, 0.87594074, 0.2744656), (0.34856236, 0.7925001, 0.5004476), (0.20621167, 0.8043316, 0.55724996), (0.3437663, 0.6905318, 0.63638866), (0.3437663, 0.6905318, 0.63638866), (0.20621167, 0.8043316, 0.55724996), (0.18095034, 0.6055266, 0.77498037), (-0.8122668, -0.5721191, 0.113588564), (-0.9079555, -0.4165237, 0.046095967), (-0.92169434, -0.38049635, -0.07551261), (0.84273946, 0.44965845, 0.2959688), (0.8529486, 0.47849572, 0.20861624), (0.9648092, 0.2261427, 0.134174), (-0.9552864, -0.29540315, 0.01284408), (-0.97621727, -0.14019398, 0.16536482), (-0.9949563, -0.057375763, -0.082279444), (-0.12523709, -0.30043563, -0.9455443), (-0.6699267, -0.33512715, -0.6624863), (-0.5901023, -0.32065958, -0.7409162), (0.028795615, 0.21390346, -0.9764303), (0.00073287025, 0.3308294, -0.94369024), (0.0029346552, 0.22459112, -0.9744486), (0.46057546, 0.88716006, -0.028589655), (0.37743863, 0.9258396, 0.019005038), (0.42914993, 0.89813405, 0.095841065), (0.34856236, 0.7925001, 0.5004476), (0.32449275, 0.8816685, 0.3425861), (0.20621167, 0.8043316, 0.55724996), (-0.28955764, 0.83459437, 0.46862406), (-0.11455444, 0.5865993, 0.8017348), (-0.15882413, 0.6284913, 0.7614287), (-0.41684034, 0.85262483, 0.31507948), (-0.21142203, 0.7854323, 0.581719), (0.17310427, 0.63279414, 0.7547227), (0.49790967, 0.82157475, -0.2776708), (0.45455205, 0.8788353, -0.14502047), (0.5620369, 0.8098455, -0.16812158), (0.42914993, 0.89813405, 0.095841065), (0.34076643, 0.92781806, 0.15176255), (0.39673236, 0.87594074, 0.2744656), (0.34076643, 0.92781806, 0.15176255), (0.32449275, 0.8816685, 0.3425861), (0.39673236, 0.87594074, 0.2744656), (-0.10124068, 0.7978244, 0.5943287), (0.33469716, 0.57536525, 0.7462793), (-0.064630546, 0.71945006, 0.69153064), (-0.09514772, 0.91167706, 0.39973986), (-0.28955764, 0.83459437, 0.46862406), (-0.17426847, 0.8075359, 0.56348586), (-0.073725015, 0.9225793, -0.378698), (-0.35504547, 0.88452846, -0.30257598), (0.35264283, 0.9119024, 0.20994528), (-0.070745155, 0.9956527, -0.060588934), (-0.23840603, 0.9710963, -0.011599948), (-0.20989858, 0.9638512, -0.16411382), (0.32449275, 0.8816685, 0.3425861), (0.13180333, 0.9147989, 0.38179952), (0.20621167, 0.8043316, 0.55724996), (0.93352866, -0.33231995, -0.13449113), (0.82764876, -0.24990812, -0.502537), (0.64303005, -0.7089091, -0.28975874), (0.81504124, 0.41989926, 0.39923972), (0.8780951, 0.44791573, 0.16828656), (0.7706223, 0.5744059, 0.2760419), (-0.5461902, 0.7774321, 0.31189036), (-0.88589257, 0.42307234, 0.19027403), (-0.5793119, 0.71455824, 0.39217898), (-0.8590629, 0.117870525, -0.49811387), (-0.77704954, 0.2519485, -0.5768152), (-0.75076604, 0.38226932, -0.5387212), (0.37743863, 0.9258396, 0.019005038), (0.34076643, 0.92781806, 0.15176255), (0.42914993, 0.89813405, 0.095841065), (0.84710217, 0.51983225, 0.11041878), (0.84308434, 0.48139495, 0.23972411), (0.83344054, 0.48242986, 0.26951486), (0.5064183, 0.8191969, 0.2691784), (0.25332546, 0.9172516, 0.307369), (0.49248132, 0.830168, 0.26131052), (-0.19790466, 0.6978808, 0.6883285), (0.14828181, 0.43243113, 0.88939065), (0.23641334, 0.45409614, 0.8590142), (-0.80484945, -0.21449009, -0.5533637), (-0.4185895, -0.42861646, -0.80066895), (-0.8753281, -0.2974295, -0.3812299), (-0.8404405, -0.5339879, 0.09228589), (-0.9115523, -0.40591183, 0.06563446), (-0.9480551, -0.3159854, 0.03667171), (-0.78738946, -0.45226362, 0.418898), (-0.8433688, -0.53727967, -0.007722598), (-0.92447, 0.100629054, 0.367735), (-0.8585084, 0.36451405, -0.3606837), (-0.8590629, 0.117870525, -0.49811387), (-0.75076604, 0.38226932, -0.5387212), (0.3904863, 0.8484577, -0.35726735), (0.45455205, 0.8788353, -0.14502047), (0.49790967, 0.82157475, -0.2776708), (0.8394417, 0.30937803, 0.44679174), (0.64088225, 0.59856194, 0.48061773), (0.6477321, 0.42353454, 0.63329434), (-0.36238083, 0.30236077, 0.88162243), (-0.52058, 0.64099556, 0.56402236), (-0.17834988, 0.32741395, 0.9278962), (-0.03970086, 0.09020669, -0.99513143), (0.10247141, -0.0037224537, -0.99472904), (0.012923298, -0.14554134, -0.98926777), (-0.7507377, 0.21038967, 0.626202), (-0.87894833, 0.28648278, 0.38128418), (-0.84307927, -0.3533579, 0.40540788), (-0.63100797, 0.4884225, 0.6027209), (-0.549907, 0.7612995, 0.34354806), (-0.87894833, 0.28648278, 0.38128418), (-0.96865606, -0.06813151, -0.23887958), (-0.88589257, 0.42307234, 0.19027403), (-0.5461902, 0.7774321, 0.31189036), (-0.6905549, -0.7060824, 0.15678449), (-0.3447738, -0.830055, 0.43833742), (-0.2691753, -0.8897734, 0.36857548), (-0.549907, 0.7612995, 0.34354806), (-0.79953074, 0.5149029, 0.30923405), (-0.87894833, 0.28648278, 0.38128418), (-0.7507377, 0.21038967, 0.626202), (-0.63100797, 0.4884225, 0.6027209), (-0.87894833, 0.28648278, 0.38128418), (0.08454101, -0.33148712, 0.9396643), (0.06398499, -0.579523, 0.81244016), (-0.10362395, -0.56588596, 0.81794566), (-0.36746824, 0.8042082, 0.46713632), (-0.28955764, 0.83459437, 0.46862406), (-0.15882413, 0.6284913, 0.7614287), (-0.49458998, 0.7199245, 0.4869184), (-0.39122057, 0.5511939, 0.73697466), (-0.674225, 0.5169492, 0.5274318), (-0.38048968, 0.7864329, 0.4865706), (-0.325513, 0.8379178, 0.43810382), (-0.26628992, 0.6914746, 0.67153), (-0.4604737, 0.17007515, 0.8712281), (0.1224128, 0.07011393, 0.9899996), (-0.26628992, 0.6914746, 0.67153), (-0.39598778, 0.03499915, 0.9175885), (-0.31335086, 0.1311195, 0.9405418), (-0.2703703, 0.17386167, 0.94692767), (-0.8686785, 0.26994073, 0.41536704), (-0.92930555, 0.25243875, 0.26956633), (-0.96371, 0.2455488, 0.10473212), (-0.12660424, 0.16506909, 0.9781224), (-0.080613315, 0.22642572, 0.97068685), (-0.11455444, 0.5865993, 0.8017348), (-0.45183706, 0.15477824, -0.8785711), (-0.57201463, -0.07364189, -0.81693095), (-0.33650124, -0.071375996, -0.93897414), (-0.41959354, -0.0753968, -0.9045754), (-0.5772042, 0.21521193, -0.7877303), (-0.49264413, 0.09452328, -0.8650821), (-0.41529274, 0.5222374, 0.74484897), (-0.24380629, 0.6646074, 0.7062969), (-0.4546543, 0.69779533, 0.55350804), (-0.52077544, 0.38204813, 0.7634345), (-0.18640007, 0.7097053, 0.6793919), (-0.63100797, 0.4884225, 0.6027209), (-0.249804, -0.14131166, 0.9579295), (-0.2657656, -0.030633446, 0.9635508), (-0.27896985, -0.20245492, 0.938716), (-0.80403644, -0.3749718, 0.46143413), (-0.6977742, -0.31011492, 0.6457088), (-0.8658344, -0.21487446, 0.4518403), (-0.8050862, 0.25132203, 0.53728354), (-0.43541285, 0.37637308, 0.8177769), (-0.3293028, -0.011708099, 0.94415176), (-0.19917373, -0.7445797, -0.6371271), (-0.1502784, -0.695545, -0.7025907), (-0.19951603, -0.60166353, -0.7734302), (-0.8658344, -0.21487446, 0.4518403), (-0.6873727, -0.10375703, 0.7188556), (-0.4902296, -0.21730073, 0.84407073), (-0.6907138, -0.25312364, 0.6773795), (-0.81073827, -0.3234917, 0.48791033), (-0.45124415, -0.28878552, 0.84438235), (-0.74681693, 0.593261, 0.3005094), (-0.52123135, 0.776415, 0.35425666), (-0.81088346, 0.51771635, 0.272833), (-0.8229445, -0.2725443, 0.49847955), (-0.80555826, -0.32357636, 0.49636096), (-0.81073827, -0.3234917, 0.48791033), (-0.8695505, 0.077854976, 0.48766848), (-0.7292571, -0.15952715, 0.6653834), (-0.8960748, -0.16243471, 0.4131161), (-0.52123135, 0.776415, 0.35425666), (-0.50848097, 0.80318505, 0.31038842), (-0.81088346, 0.51771635, 0.272833), (-0.6685689, -0.72058904, -0.18375832), (-0.97881943, -0.011554678, -0.20439933), (-0.90639764, -0.39457366, -0.15084717), (-0.4116224, 0.05100067, 0.9099263), (-0.2703541, 0.38242364, 0.8835502), (-0.59768534, 0.20133865, 0.77603805), (-0.7301093, 0.5938555, 0.33804742), (-0.46872184, 0.7804253, 0.41380703), (-0.7005812, 0.6285856, 0.3377369), (-0.8050862, 0.25132203, 0.53728354), (-0.7186222, 0.44573912, 0.53375906), (-0.43541285, 0.37637308, 0.8177769), (0.11112244, 0.19617122, -0.9742529), (0.13239287, 0.092030376, -0.9869156), (0.17282136, 0.34837225, -0.9212868), (0.0385595, -0.28710848, -0.9571217), (-0.01921755, -0.39628565, -0.91792613), (-0.4185895, -0.42861646, -0.80066895), (0.11630765, 0.11799151, 0.9861797), (-0.0581781, 0.09551162, 0.99372673), (-0.01143896, 0.61629575, 0.7874318), (0.020526024, -0.9995826, -0.02033283), (0.37413302, -0.9235158, -0.08451581), (0.034172207, -0.9991439, -0.02331928), (-0.5634086, 0.27225077, -0.78003216), (-0.45958078, 0.4397767, -0.7716099), (-0.7867414, 0.4492771, -0.42330602), (0.350484, -0.7758478, -0.5246153), (0.82764876, -0.24990812, -0.502537), (0.24769956, -0.17423761, -0.9530405), (-0.6690248, 0.10474818, 0.73582166), (-0.48213178, -0.10772832, 0.86945015), (-0.7292571, -0.15952715, 0.6653834), (-0.6082818, 0.47891468, 0.63295656), (-0.4187366, 0.323362, 0.84858507), (-0.41529274, 0.5222374, 0.74484897), (-0.27621555, 0.0014689193, 0.9610946), (-0.55048716, 0.23695384, 0.8005104), (-0.36372912, 0.32128337, 0.8743444), (-0.46643513, -0.2382681, 0.85186076), (-0.41712153, -0.2895944, 0.86147827), (-0.73183244, -0.22271848, 0.6440635), (0.12762953, 0.0902003, -0.9877118), (-0.018525995, 0.10767494, -0.9940135), (-0.045954794, -0.016335793, -0.99880993), (0.93717116, 0.17813864, 0.2999613), (0.8983721, 0.31096193, 0.31021002), (0.7595671, 0.6272571, 0.17206532), (-0.674225, 0.5169492, 0.5274318), (-0.39122057, 0.5511939, 0.73697466), (-0.6761066, 0.44433647, 0.5877456), (-0.42159325, 0.22854634, -0.8775111), (-0.57392466, 0.27946785, -0.76974547), (-0.41890058, 0.24931513, -0.8731347), (-0.8695505, 0.077854976, 0.48766848), (-0.6690248, 0.10474818, 0.73582166), (-0.7292571, -0.15952715, 0.6653834), (-0.52123135, 0.776415, 0.35425666), (-0.74681693, 0.593261, 0.3005094), (-0.7005812, 0.6285856, 0.3377369), (-0.71980846, 0.25195467, 0.6468342), (-0.7186222, 0.44573912, 0.53375906), (-0.8050862, 0.25132203, 0.53728354), (-0.81073827, -0.3234917, 0.48791033), (-0.80555826, -0.32357636, 0.49636096), (-0.80403644, -0.3749718, 0.46143413), (-0.6903042, 0.70116806, -0.17844757), (-0.45028743, 0.8040352, 0.3882893), (-0.59798235, 0.801431, 0.011207629), (-0.6210129, -0.35817817, 0.6971739), (-0.6977742, -0.31011492, 0.6457088), (-0.80403644, -0.3749718, 0.46143413), (-0.4546543, 0.69779533, 0.55350804), (-0.52058, 0.64099556, 0.56402236), (-0.6082818, 0.47891468, 0.63295656), (0.41798517, -0.7731486, -0.47700074), (0.56647444, -0.7808643, -0.26335832), (-0.012127084, -0.7994914, -0.60055524), (-0.7301093, 0.5938555, 0.33804742), (-0.91409624, 0.33342513, 0.23077194), (-0.9842828, 0.10915529, 0.13882533), (-0.9273663, 0.33396977, 0.16868839), (-0.7301093, 0.5938555, 0.33804742), (-0.9842828, 0.10915529, 0.13882533), (-0.41813788, 0.17239003, 0.89187574), (-0.27793613, 0.4540266, 0.846529), (-0.61474097, 0.37670696, 0.6929541), (-0.7145103, 0.29147795, 0.6360155), (-0.6761066, 0.44433647, 0.5877456), (-0.27928203, 0.3613755, 0.8896119), (-0.6210129, -0.35817817, 0.6971739), (-0.19418201, -0.25764024, 0.9465278), (-0.41132888, -0.2704142, 0.87045085), (-0.8658344, -0.21487446, 0.4518403), (-0.793576, -0.052087493, 0.60623753), (-0.8747387, 0.05915298, 0.48097104), (-0.27855578, 0.0813649, -0.95696723), (-0.29988748, 0.16049077, -0.9403778), (-0.37426746, 0.10784129, -0.9210288), (-0.2824014, -0.24968438, -0.92623276), (-0.41959354, -0.0753968, -0.9045754), (-0.49264413, 0.09452328, -0.8650821), (-0.81073827, -0.3234917, 0.48791033), (-0.80403644, -0.3749718, 0.46143413), (-0.8658344, -0.21487446, 0.4518403), (-0.3617828, 0.024080645, -0.93195134), (-0.34496683, 0.14121531, -0.92793113), (-0.3621289, 0.110581025, -0.9255455), (-0.57201463, -0.07364189, -0.81693095), (-0.79149234, -0.0039183428, -0.6111664), (-0.65438944, -0.23871434, -0.7174885), (-0.77534294, -0.033574942, 0.63064724), (-0.7708869, -0.12024815, 0.6255188), (-0.80026984, -0.14277494, 0.5823946), (-0.81073827, -0.3234917, 0.48791033), (-0.6907138, -0.25312364, 0.6773795), (-0.8229445, -0.2725443, 0.49847955), (-0.3708847, -0.35086176, 0.8598492), (-0.3791319, -0.2046025, 0.90243936), (-0.46643513, -0.2382681, 0.85186076), (-0.52058, 0.64099556, 0.56402236), (-0.11570207, 0.5121285, 0.8510802), (-0.17834988, 0.32741395, 0.9278962), (-0.7507377, 0.21038967, 0.626202), (-0.52077544, 0.38204813, 0.7634345), (-0.63100797, 0.4884225, 0.6027209), (-0.6905549, -0.7060824, 0.15678449), (-0.98542255, -0.14428605, 0.090133525), (-0.6703845, -0.626253, 0.39798462), (-0.6905549, -0.7060824, 0.15678449), (-0.6703845, -0.626253, 0.39798462), (-0.3447738, -0.830055, 0.43833742), (-0.28996757, -0.8602265, 0.41943902), (-0.2691753, -0.8897734, 0.36857548), (-0.3447738, -0.830055, 0.43833742), (-0.6703845, -0.626253, 0.39798462), (-0.28996757, -0.8602265, 0.41943902), (-0.3447738, -0.830055, 0.43833742), (-0.7638933, 0.045113526, 0.64376384), (-0.59768534, 0.20133865, 0.77603805), (-0.74646616, 0.2603052, 0.61239654), (-0.5367215, 0.10667408, 0.83698905), (-0.52077544, 0.38204813, 0.7634345), (-0.7507377, 0.21038967, 0.626202), (-0.71980846, 0.25195467, 0.6468342), (-0.4187366, 0.323362, 0.84858507), (-0.6082818, 0.47891468, 0.63295656), (-0.8695505, 0.077854976, 0.48766848), (-0.9785204, 0.08765623, 0.18658555), (-0.83049834, 0.5569198, 0.010623102), (-0.46643513, -0.2382681, 0.85186076), (-0.3791319, -0.2046025, 0.90243936), (-0.249804, -0.14131166, 0.9579295), (-0.41684034, 0.85262483, 0.31507948), (-0.45028743, 0.8040352, 0.3882893), (-0.045587193, 0.6975793, 0.7150558), (-0.46643513, -0.2382681, 0.85186076), (-0.249804, -0.14131166, 0.9579295), (-0.41712153, -0.2895944, 0.86147827), (0.29285645, -0.22085378, 0.93030035), (0.27213457, 0.30032533, 0.9141922), (0.29001746, 0.1892356, 0.9381257), (0.7449587, -0.6390075, -0.19158767), (0.8341831, -0.50516784, -0.22123319), (0.9430448, -0.31553745, -0.10536934), (-0.36746824, 0.8042082, 0.46713632), (-0.15882413, 0.6284913, 0.7614287), (-0.11570207, 0.5121285, 0.8510802), (-0.674225, 0.5169492, 0.5274318), (-0.49206007, 0.7194172, 0.49022007), (-0.49458998, 0.7199245, 0.4869184), (0.9294046, 0.26653555, -0.25527623), (0.6074403, 0.5816071, -0.5410632), (0.8761255, 0.4182807, 0.23967777), (-0.36746824, 0.8042082, 0.46713632), (-0.11570207, 0.5121285, 0.8510802), (-0.52058, 0.64099556, 0.56402236), (-0.78519917, 0.42751658, 0.4479865), (-0.8695505, 0.077854976, 0.48766848), (-0.83049834, 0.5569198, 0.010623102), (-0.6082818, 0.47891468, 0.63295656), (-0.52058, 0.64099556, 0.56402236), (-0.7186222, 0.44573912, 0.53375906), (-0.41132888, -0.2704142, 0.87045085), (-0.5466911, 0.02180643, 0.8370504), (-0.6977742, -0.31011492, 0.6457088), (0.56007177, -0.8041849, 0.19901338), (0.54638356, -0.7627216, 0.34600705), (0.7193379, -0.59930456, 0.3512649), (-0.11570207, 0.5121285, 0.8510802), (0.025543146, 0.26262623, 0.96455944), (-0.17834988, 0.32741395, 0.9278962), (0.64303005, -0.7089091, -0.28975874), (0.45199344, -0.8476778, -0.27774844), (0.93352866, -0.33231995, -0.13449113), (-0.52058, 0.64099556, 0.56402236), (-0.43541285, 0.37637308, 0.8177769), (-0.7186222, 0.44573912, 0.53375906), (-0.19537881, -0.06637409, 0.97847915), (-0.28025487, 0.3406953, 0.8974318), (-0.5367215, 0.10667408, 0.83698905), (0.1351536, -0.7640246, -0.6308723), (0.23170437, -0.8931248, -0.38554016), (0.2974425, -0.91589993, -0.26954654), (-0.43673542, -0.6124493, 0.65891445), (-0.24441399, -0.83084744, 0.49995422), (-0.6703845, -0.626253, 0.39798462), (-0.9065204, 0.40756547, 0.11005034), (-0.85781515, 0.49961972, -0.12055419), (-0.977894, 0.19825432, 0.06647189), (-0.5367215, 0.10667408, 0.83698905), (-0.28025487, 0.3406953, 0.8974318), (-0.52077544, 0.38204813, 0.7634345), (-0.6977742, -0.31011492, 0.6457088), (-0.5466911, 0.02180643, 0.8370504), (-0.793576, -0.052087493, 0.60623753), (-0.5466911, 0.02180643, 0.8370504), (-0.4187366, 0.323362, 0.84858507), (-0.71980846, 0.25195467, 0.6468342), (-0.41712153, -0.2895944, 0.86147827), (-0.6210129, -0.35817817, 0.6971739), (-0.69164705, -0.3343356, 0.64019054), (-0.39122057, 0.5511939, 0.73697466), (0.023922712, 0.30276743, 0.95276415), (-0.27928203, 0.3613755, 0.8896119), (0.2262849, -0.55113804, 0.80314505), (0.3211192, -0.04697445, 0.9458731), (0.31038076, -0.0294251, 0.9501568), (-0.98542255, -0.14428605, 0.090133525), (-0.8960748, -0.16243471, 0.4131161), (-0.6703845, -0.626253, 0.39798462), (-0.64699185, 0.69672793, 0.30979314), (-0.9273663, 0.33396977, 0.16868839), (-0.8356315, 0.5443289, -0.07366125), (-0.44079724, 0.024381436, 0.89727557), (-0.31335086, 0.1311195, 0.9405418), (-0.47351477, -0.11410375, 0.87336373), (-0.57727927, 0.5212448, 0.62853193), (-0.43426287, 0.5636831, 0.7026216), (-0.47891322, 0.64898664, 0.5911502), (-0.47891322, 0.64898664, 0.5911502), (-0.23401758, 0.691813, 0.6831036), (-0.31844297, 0.76659155, 0.55761224), (-0.25319877, -0.18759899, 0.94905055), (-0.47351477, -0.11410375, 0.87336373), (-0.46531352, -0.32130724, 0.8247697), (-0.28208676, -0.9430109, -0.17651507), (0.026534816, -0.97648054, -0.21396673), (-0.38843852, -0.8947964, -0.2201251), (-0.64699185, 0.69672793, 0.30979314), (-0.17572127, 0.88967335, 0.42143017), (-0.7301093, 0.5938555, 0.33804742), (0.67655736, 0.6346417, -0.37349725), (0.525147, 0.70664555, -0.4742074), (0.5745417, 0.76015043, -0.30343544), (-0.91409624, 0.33342513, 0.23077194), (-0.7301093, 0.5938555, 0.33804742), (-0.7005812, 0.6285856, 0.3377369), (-0.38048968, 0.7864329, 0.4865706), (0.049126975, 0.43318087, 0.8999671), (-0.39122057, 0.5511939, 0.73697466), (-0.22561704, -0.21563217, 0.9500525), (-0.48851424, -0.21784805, 0.8449237), (-0.48800382, -0.07151962, 0.8699064), (-0.5466911, 0.02180643, 0.8370504), (-0.2808472, 0.018064996, 0.95958245), (-0.4187366, 0.323362, 0.84858507), (-0.6261619, 0.43389267, 0.6478106), (-0.7708869, -0.12024815, 0.6255188), (-0.77534294, -0.033574942, 0.63064724), (-0.5329692, 0.19743983, 0.8227766), (-0.36372912, 0.32128337, 0.8743444), (-0.55048716, 0.23695384, 0.8005104), (-0.418116, 0.90703624, -0.04964165), (-0.549907, 0.7612995, 0.34354806), (-0.31344697, 0.9446902, 0.096495055), (-0.9940572, -0.10254405, 0.036538824), (-0.9407633, -0.011960006, 0.33885306), (-0.9866532, 0.1628346, 0.00060730765), (-0.674225, 0.5169492, 0.5274318), (-0.6761066, 0.44433647, 0.5877456), (-0.7145103, 0.29147795, 0.6360155), (-0.3621289, 0.110581025, -0.9255455), (-0.34496683, 0.14121531, -0.92793113), (-0.29988748, 0.16049077, -0.9403778), (-0.85781515, 0.49961972, -0.12055419), (-0.9717855, 0.13265215, -0.195029), (-0.977894, 0.19825432, 0.06647189), (-0.49719745, -0.37221593, 0.783741), (-0.6891477, -0.20573714, 0.69480044), (-0.7708869, -0.12024815, 0.6255188), (-0.44635057, -0.3501747, 0.8234979), (-0.48213178, -0.10772832, 0.86945015), (-0.12592243, -0.15547617, 0.97978085), (-0.18260592, -0.107122675, 0.977333), (-0.22561704, -0.21563217, 0.9500525), (-0.48800382, -0.07151962, 0.8699064), (-0.8658344, -0.21487446, 0.4518403), (-0.6977742, -0.31011492, 0.6457088), (-0.793576, -0.052087493, 0.60623753), (-0.64401084, 0.11750589, 0.7559381), (-0.41813788, 0.17239003, 0.89187574), (-0.61474097, 0.37670696, 0.6929541), (-0.64401084, 0.11750589, 0.7559381), (-0.72044367, 0.09454905, 0.68703806), (-0.48851424, -0.21784805, 0.8449237), (-0.31344697, 0.9446902, 0.096495055), (-0.38761067, 0.912261, 0.13243043), (-0.418116, 0.90703624, -0.04964165), (-0.41712153, -0.2895944, 0.86147827), (-0.69164705, -0.3343356, 0.64019054), (-0.73183244, -0.22271848, 0.6440635), (-0.6603598, -0.3598595, 0.65910995), (-0.7638933, 0.045113526, 0.64376384), (-0.33148786, 0.047533527, 0.9422613), (-0.76888233, -0.20671551, -0.6050526), (-0.92906123, -0.23252845, -0.28770763), (-0.6699267, -0.33512715, -0.6624863), (-0.4821138, -0.4199924, 0.7688775), (-0.6256859, -0.34421992, 0.70002127), (-0.632924, -0.48116198, 0.60653955), (-0.46643513, -0.2382681, 0.85186076), (-0.73183244, -0.22271848, 0.6440635), (-0.6891477, -0.20573714, 0.69480044), (-0.7638933, 0.045113526, 0.64376384), (-0.7145103, 0.29147795, 0.6360155), (-0.33148786, 0.047533527, 0.9422613), (-0.97281104, 0.22841159, -0.03830044), (-0.8501395, 0.42886472, -0.3055127), (-0.9702638, 0.026556697, -0.24058868), (-0.36612034, -0.18574306, -0.91184175), (-0.49264413, 0.09452328, -0.8650821), (-0.5261304, 0.07361911, -0.84721136), (0.21423133, -0.8084097, -0.5482506), (0.18792379, -0.5515165, -0.81272024), (0.22413345, -0.6476677, -0.7282106), (-0.46531352, -0.32130724, 0.8247697), (-0.47351477, -0.11410375, 0.87336373), (-0.6334671, -0.1645117, 0.75607896), (-0.18260592, -0.107122675, 0.977333), (-0.48800382, -0.07151962, 0.8699064), (-0.38658652, -0.31024647, 0.8685033), (-0.41712153, -0.2895944, 0.86147827), (-0.19418201, -0.25764024, 0.9465278), (-0.6210129, -0.35817817, 0.6971739), (-0.61474097, 0.37670696, 0.6929541), (-0.7647748, 0.2532884, 0.59242254), (-0.72044367, 0.09454905, 0.68703806), (-0.64401084, 0.11750589, 0.7559381), (-0.61474097, 0.37670696, 0.6929541), (-0.72044367, 0.09454905, 0.68703806), (-0.39598778, 0.03499915, 0.9175885), (-0.5329692, 0.19743983, 0.8227766), (-0.6200124, -0.00022068113, 0.784592), (0.37906346, 0.6066238, 0.69879776), (0.31527486, 0.7958481, 0.5169406), (0.048624907, 0.63666934, 0.7696024), (-0.80555826, -0.32357636, 0.49636096), (-0.69164705, -0.3343356, 0.64019054), (-0.6210129, -0.35817817, 0.6971739), (-0.5197389, 0.49881884, 0.69357854), (-0.5168071, 0.71113396, 0.47665372), (-0.674225, 0.5169492, 0.5274318), (-0.36455342, 0.19140045, -0.91129947), (-0.4485605, 0.3430452, -0.825296), (-0.34290543, 0.34726235, -0.8728257), (-0.46531352, -0.32130724, 0.8247697), (-0.6334671, -0.1645117, 0.75607896), (-0.6256859, -0.34421992, 0.70002127), (-0.6200124, -0.00022068113, 0.784592), (-0.7523678, -0.020567412, 0.65842223), (-0.6334671, -0.1645117, 0.75607896), (-0.38658652, -0.31024647, 0.8685033), (-0.48800382, -0.07151962, 0.8699064), (-0.6922039, -0.13493402, 0.7089757), (-0.22561704, -0.21563217, 0.9500525), (-0.18260592, -0.107122675, 0.977333), (-0.1023502, -0.3648629, 0.9254186), (-0.41622862, -0.25352228, 0.8732011), (-0.48851424, -0.21784805, 0.8449237), (-0.22561704, -0.21563217, 0.9500525), (-0.44635057, -0.3501747, 0.8234979), (-0.43673542, -0.6124493, 0.65891445), (-0.7292571, -0.15952715, 0.6653834), (-0.52684134, -0.36152673, -0.76924413), (-0.70096695, -0.13765024, -0.69978404), (-0.14047794, -0.34555006, -0.9278259), (0.19233075, -0.47231376, 0.86019105), (-0.027354654, -0.51600105, 0.85615104), (0.0013304728, -0.9266607, 0.37589642), (-0.033379868, 0.203342, -0.9785386), (-0.056963813, 0.25963128, -0.9640263), (-0.15011746, 0.20696905, -0.9667619), (-0.6393449, -0.7685127, 0.02502504), (-0.97281104, 0.22841159, -0.03830044), (-0.9702638, 0.026556697, -0.24058868), (-0.923683, 0.38143834, 0.036258157), (-0.7888175, 0.6006054, -0.13053761), (-0.97281104, 0.22841159, -0.03830044), (-0.80555826, -0.32357636, 0.49636096), (-0.6210129, -0.35817817, 0.6971739), (-0.80403644, -0.3749718, 0.46143413), (-0.50114894, 0.1425418, -0.85354054), (-0.6454864, 0.2772698, -0.7116661), (-0.49457952, 0.1939813, -0.8472086), (-0.61474097, 0.37670696, 0.6929541), (-0.57727927, 0.5212448, 0.62853193), (-0.76501614, 0.39301556, 0.5101855), (-0.9717855, 0.13265215, -0.195029), (-0.77796745, 0.49438986, -0.38774374), (-0.8429949, 0.2013671, -0.49880934), (0.26928166, 0.3002263, -0.91506916), (0.43455523, 0.31527552, -0.8436606), (0.408314, 0.30564097, -0.86015314), (-0.77513856, -0.610081, -0.16419959), (-0.9717855, 0.13265215, -0.195029), (-0.8429949, 0.2013671, -0.49880934), (-0.52684134, -0.36152673, -0.76924413), (-0.14047794, -0.34555006, -0.9278259), (0.430587, -0.6497393, -0.62644523), (-0.06838815, -0.026529497, -0.997306), (-0.12320392, -0.02447148, -0.99207956), (-0.007258001, -0.030426804, -0.9995106), (-0.7897694, 0.12547955, 0.60043246), (-0.84021795, 0.027527712, 0.54154986), (-0.78738946, -0.45226362, 0.418898), (-0.61941385, 0.15405494, -0.769801), (-0.6454864, 0.2772698, -0.7116661), (-0.77704954, 0.2519485, -0.5768152), (-0.89008623, 0.20882238, 0.40514144), (-0.923683, 0.38143834, 0.036258157), (-0.97281104, 0.22841159, -0.03830044), (0.8307606, -0.141571, 0.5383255), (0.53808373, 0.46222842, 0.70484805), (0.70696247, -0.6284262, 0.32447585), (-0.46531352, -0.32130724, 0.8247697), (-0.6256859, -0.34421992, 0.70002127), (-0.4821138, -0.4199924, 0.7688775), (-0.48851424, -0.21784805, 0.8449237), (-0.72044367, 0.09454905, 0.68703806), (-0.48800382, -0.07151962, 0.8699064), (-0.47351477, -0.11410375, 0.87336373), (-0.39598778, 0.03499915, 0.9175885), (-0.6200124, -0.00022068113, 0.784592), (-0.18741368, 0.93810004, 0.29128063), (-0.31344697, 0.9446902, 0.096495055), (-0.549907, 0.7612995, 0.34354806), (-0.4546543, 0.69779533, 0.55350804), (-0.24380629, 0.6646074, 0.7062969), (-0.28955764, 0.83459437, 0.46862406), (-0.7692058, 0.4216943, 0.48010045), (-0.923683, 0.38143834, 0.036258157), (-0.89008623, 0.20882238, 0.40514144), (-0.7692058, 0.4216943, 0.48010045), (-0.73432314, 0.6527911, 0.18610004), (-0.923683, 0.38143834, 0.036258157), (-0.73432314, 0.6527911, 0.18610004), (-0.7888175, 0.6006054, -0.13053761), (-0.923683, 0.38143834, 0.036258157), (-0.33148786, 0.047533527, 0.9422613), (-0.27928203, 0.3613755, 0.8896119), (0.27213457, 0.30032533, 0.9141922), (-0.6922039, -0.13493402, 0.7089757), (-0.48800382, -0.07151962, 0.8699064), (-0.7463162, 0.13561165, 0.65163004), (-0.73432314, 0.6527911, 0.18610004), (-0.510264, 0.768923, 0.38521177), (-0.50102854, 0.86482495, -0.03237622), (0.0385595, -0.28710848, -0.9571217), (0.026960814, -0.35389, -0.9348984), (-0.01921755, -0.39628565, -0.91792613), (0.057034962, -0.7214882, -0.6900737), (0.1351536, -0.7640246, -0.6308723), (0.25492045, -0.8550625, -0.4515348), (-0.0581781, 0.09551162, 0.99372673), (0.11630765, 0.11799151, 0.9861797), (-0.0027750435, 0.12141987, 0.99259734), (-0.41622862, -0.25352228, 0.8732011), (-0.22561704, -0.21563217, 0.9500525), (-0.43670908, -0.36223125, 0.8234523), (-0.28388658, -0.23799437, -0.92885256), (-0.80484945, -0.21449009, -0.5533637), (-0.5239205, 0.36621252, -0.7690226), (-0.72044367, 0.09454905, 0.68703806), (-0.7647748, 0.2532884, 0.59242254), (-0.7463162, 0.13561165, 0.65163004), (-0.61474097, 0.37670696, 0.6929541), (-0.76501614, 0.39301556, 0.5101855), (-0.7647748, 0.2532884, 0.59242254), (0.64249104, 0.4363511, 0.6299231), (0.79264647, 0.17295048, 0.5846362), (0.97039586, -0.11759811, 0.2109559), (-0.85579026, 0.25817674, 0.44829443), (-0.90046465, 0.30419362, 0.3108532), (-0.9565734, 0.11846453, 0.2663332), (-0.29988748, 0.16049077, -0.9403778), (-0.34496683, 0.14121531, -0.92793113), (-0.33700928, 0.12191287, -0.9335748), (-0.41132888, -0.2704142, 0.87045085), (-0.6977742, -0.31011492, 0.6457088), (-0.6210129, -0.35817817, 0.6971739), (-0.8747387, 0.05915298, 0.48097104), (-0.8050862, 0.25132203, 0.53728354), (-0.6873727, -0.10375703, 0.7188556), (-0.9496979, -0.29839867, 0.09503771), (-0.977894, 0.19825432, 0.06647189), (-0.9717855, 0.13265215, -0.195029), (-0.6790735, 0.11326302, 0.72527975), (-0.5329692, 0.19743983, 0.8227766), (-0.55048716, 0.23695384, 0.8005104), (-0.4028432, -0.9129921, 0.06451829), (-0.84307927, -0.3533579, 0.40540788), (-0.9496979, -0.29839867, 0.09503771), (-0.49458998, 0.7199245, 0.4869184), (-0.325513, 0.8379178, 0.43810382), (-0.38048968, 0.7864329, 0.4865706), (-0.7692058, 0.4216943, 0.48010045), (-0.62062913, 0.5385183, 0.56992775), (-0.73432314, 0.6527911, 0.18610004), (-0.62062913, 0.5385183, 0.56992775), (-0.510264, 0.768923, 0.38521177), (-0.73432314, 0.6527911, 0.18610004), (-0.41813788, 0.17239003, 0.89187574), (-0.64401084, 0.11750589, 0.7559381), (-0.48851424, -0.21784805, 0.8449237), (-0.8768057, -0.2520362, 0.40949917), (-0.84327686, -0.078225106, 0.5317564), (-0.9467224, -0.17191997, 0.2723239), (-0.9467224, -0.17191997, 0.2723239), (-0.84327686, -0.078225106, 0.5317564), (-0.91557515, 0.03375247, 0.40072787), (-0.8268261, 0.13315643, 0.54646873), (-0.9565734, 0.11846453, 0.2663332), (-0.91557515, 0.03375247, 0.40072787), (-0.8268261, 0.13315643, 0.54646873), (-0.85579026, 0.25817674, 0.44829443), (-0.9565734, 0.11846453, 0.2663332), (-0.49458998, 0.7199245, 0.4869184), (-0.49206007, 0.7194172, 0.49022007), (-0.325513, 0.8379178, 0.43810382), (-0.45124415, -0.28878552, 0.84438235), (-0.81073827, -0.3234917, 0.48791033), (-0.4902296, -0.21730073, 0.84407073), (-0.61474097, 0.37670696, 0.6929541), (-0.43426287, 0.5636831, 0.7026216), (-0.57727927, 0.5212448, 0.62853193), (0.48523468, -0.87437403, 0.0041459464), (0.5278373, -0.79790884, 0.29108292), (0.5323394, -0.84450775, 0.058492336), (-0.48800382, -0.07151962, 0.8699064), (-0.72044367, 0.09454905, 0.68703806), (-0.7463162, 0.13561165, 0.65163004), (-0.9632271, 0.14657582, 0.22518665), (-0.85693616, 0.38781747, 0.3394968), (-0.9915138, 0.05954056, 0.115564995), (-0.325513, 0.8379178, 0.43810382), (-0.6261619, 0.43389267, 0.6478106), (-0.26628992, 0.6914746, 0.67153), (-0.89008623, 0.20882238, 0.40514144), (-0.70793456, 0.36136737, 0.60682976), (-0.7692058, 0.4216943, 0.48010045), (-0.70793456, 0.36136737, 0.60682976), (-0.62062913, 0.5385183, 0.56992775), (-0.7692058, 0.4216943, 0.48010045), (-0.27928203, 0.3613755, 0.8896119), (-0.6761066, 0.44433647, 0.5877456), (-0.39122057, 0.5511939, 0.73697466), (-0.5197389, 0.49881884, 0.69357854), (-0.3098367, 0.73103714, 0.6079358), (-0.5168071, 0.71113396, 0.47665372), (-0.52446204, 0.81458443, -0.2477736), (-0.685311, 0.7282284, 0.005678225), (-0.69545215, 0.46235192, -0.55007005), (-0.31335086, 0.1311195, 0.9405418), (-0.39598778, 0.03499915, 0.9175885), (-0.47351477, -0.11410375, 0.87336373), (-0.9273663, 0.33396977, 0.16868839), (-0.64699185, 0.69672793, 0.30979314), (-0.7301093, 0.5938555, 0.33804742), (-0.85781515, 0.49961972, -0.12055419), (-0.77796745, 0.49438986, -0.38774374), (-0.9717855, 0.13265215, -0.195029), (-0.75941294, -0.23023722, 0.6085086), (-0.70793456, 0.36136737, 0.60682976), (-0.89008623, 0.20882238, 0.40514144), (-0.74646616, 0.2603052, 0.61239654), (-0.674225, 0.5169492, 0.5274318), (-0.7638933, 0.045113526, 0.64376384), (-0.43426287, 0.5636831, 0.7026216), (-0.23401758, 0.691813, 0.6831036), (-0.47891322, 0.64898664, 0.5911502), (-0.5168071, 0.71113396, 0.47665372), (-0.49206007, 0.7194172, 0.49022007), (-0.674225, 0.5169492, 0.5274318), (0.40791, -0.35522157, -0.84108686), (0.9513711, -0.16029781, -0.26305407), (0.31189576, -0.6687293, -0.67492384), (-0.84327686, -0.078225106, 0.5317564), (-0.8268261, 0.13315643, 0.54646873), (-0.91557515, 0.03375247, 0.40072787), (-0.07412897, -0.35409528, -0.93226683), (-0.15455057, -0.34080482, -0.92734355), (-0.12523709, -0.30043563, -0.9455443), (-0.87894833, 0.28648278, 0.38128418), (-0.79953074, 0.5149029, 0.30923405), (-0.9065204, 0.40756547, 0.11005034), (-0.9785204, 0.08765623, 0.18658555), (-0.8695505, 0.077854976, 0.48766848), (-0.8960748, -0.16243471, 0.4131161), (-0.24441399, -0.83084744, 0.49995422), (-0.28996757, -0.8602265, 0.41943902), (-0.6703845, -0.626253, 0.39798462), (-0.5329692, 0.19743983, 0.8227766), (-0.6790735, 0.11326302, 0.72527975), (-0.6200124, -0.00022068113, 0.784592), (-0.81073827, -0.3234917, 0.48791033), (-0.8658344, -0.21487446, 0.4518403), (-0.4902296, -0.21730073, 0.84407073), (-0.3293028, -0.011708099, 0.94415176), (-0.6873727, -0.10375703, 0.7188556), (-0.8050862, 0.25132203, 0.53728354), (-0.03970086, 0.09020669, -0.99513143), (-0.28388658, -0.23799437, -0.92885256), (-0.5239205, 0.36621252, -0.7690226), (-0.88237315, -0.3252089, 0.3400833), (-0.84492964, -0.18322386, 0.5025166), (-0.8768057, -0.2520362, 0.40949917), (-0.84492964, -0.18322386, 0.5025166), (-0.84327686, -0.078225106, 0.5317564), (-0.8768057, -0.2520362, 0.40949917), (-0.786772, 0.24996437, 0.5643648), (-0.85579026, 0.25817674, 0.44829443), (-0.8268261, 0.13315643, 0.54646873), (-0.46262383, -0.77043957, -0.43863684), (-0.28390387, -0.8107465, -0.5119459), (-0.32875413, -0.90028757, -0.28531218), (-0.77534294, -0.033574942, 0.63064724), (-0.80026984, -0.14277494, 0.5823946), (-0.37500748, -0.15992728, 0.9131225), (-0.55048716, 0.23695384, 0.8005104), (-0.27621555, 0.0014689193, 0.9610946), (-0.6482716, 0.06548023, 0.7585883), (-0.6760816, 0.41045448, 0.6119157), (-0.62062913, 0.5385183, 0.56992775), (-0.70793456, 0.36136737, 0.60682976), (-0.74646616, 0.2603052, 0.61239654), (-0.59768534, 0.20133865, 0.77603805), (-0.5197389, 0.49881884, 0.69357854), (-0.84327686, -0.078225106, 0.5317564), (-0.7586589, 0.035847884, 0.65050095), (-0.8268261, 0.13315643, 0.54646873), (-0.786772, 0.24996437, 0.5643648), (-0.87775177, 0.32134143, 0.35537502), (-0.85579026, 0.25817674, 0.44829443), (-0.71980846, 0.25195467, 0.6468342), (-0.8050862, 0.25132203, 0.53728354), (-0.8747387, 0.05915298, 0.48097104), (-0.33148786, 0.047533527, 0.9422613), (0.29285645, -0.22085378, 0.93030035), (-0.12225547, -0.74193543, 0.6592309), (-0.46872184, 0.7804253, 0.41380703), (-0.52123135, 0.776415, 0.35425666), (-0.7005812, 0.6285856, 0.3377369), (-0.6392754, -0.20157793, 0.74208724), (-0.41622862, -0.25352228, 0.8732011), (-0.43670908, -0.36223125, 0.8234523), (-0.5197389, 0.49881884, 0.69357854), (-0.674225, 0.5169492, 0.5274318), (-0.74646616, 0.2603052, 0.61239654), (-0.41959354, -0.0753968, -0.9045754), (-0.5250064, -0.008820472, -0.8510526), (-0.5772042, 0.21521193, -0.7877303), (0.286093, 0.52348936, -0.8025645), (0.048625186, 0.32706097, -0.9437514), (0.26928166, 0.3002263, -0.91506916), (-0.7523678, -0.020567412, 0.65842223), (-0.6200124, -0.00022068113, 0.784592), (-0.6790735, 0.11326302, 0.72527975), (-0.5197389, 0.49881884, 0.69357854), (-0.38011017, 0.50591207, 0.77431846), (-0.3098367, 0.73103714, 0.6079358), (-0.7708869, -0.12024815, 0.6255188), (-0.6891477, -0.20573714, 0.69480044), (-0.73183244, -0.22271848, 0.6440635), (0.39536312, -0.91615075, -0.06599754), (0.25655803, -0.8464801, -0.4665291), (0.25492045, -0.8550625, -0.4515348), (-0.29067472, -0.048566073, -0.9555885), (-0.025127253, -0.063643955, -0.9976562), (-0.116042994, -0.19989781, -0.97292084), (-0.6790735, 0.11326302, 0.72527975), (-0.55048716, 0.23695384, 0.8005104), (-0.7012919, 0.16784412, 0.69283336), (-0.7012919, 0.16784412, 0.69283336), (-0.55048716, 0.23695384, 0.8005104), (-0.6482716, 0.06548023, 0.7585883), (-0.51980644, 0.6201144, 0.58758783), (-0.62062913, 0.5385183, 0.56992775), (-0.6760816, 0.41045448, 0.6119157), (-0.793576, -0.052087493, 0.60623753), (-0.71980846, 0.25195467, 0.6468342), (-0.8747387, 0.05915298, 0.48097104), (-0.39042413, -0.7627084, 0.51560146), (-0.22538076, -0.6102402, 0.7594804), (-0.108233176, -0.8826765, 0.45734861), (-0.12320392, -0.02447148, -0.99207956), (-0.111391515, 0.12844002, -0.9854415), (-0.30569237, -0.08142651, -0.94864213), (-0.41959354, -0.0753968, -0.9045754), (-0.2824014, -0.24968438, -0.92623276), (-0.18033013, -0.39411464, -0.90119624), (-0.84492964, -0.18322386, 0.5025166), (-0.88237315, -0.3252089, 0.3400833), (-0.84999394, -0.41160384, 0.32877436), (-0.84492964, -0.18322386, 0.5025166), (-0.7523678, -0.020567412, 0.65842223), (-0.84327686, -0.078225106, 0.5317564), (-0.84327686, -0.078225106, 0.5317564), (-0.7523678, -0.020567412, 0.65842223), (-0.7586589, 0.035847884, 0.65050095), (-0.7708869, -0.12024815, 0.6255188), (-0.73183244, -0.22271848, 0.6440635), (-0.80026984, -0.14277494, 0.5823946), (0.83112574, 0.35790464, 0.42559874), (0.77743036, 0.4899097, 0.39444962), (0.8305072, 0.457607, 0.3175745), (-0.12262393, 0.13243152, -0.9835777), (-0.088106014, 0.24852572, -0.96461), (-0.111391515, 0.12844002, -0.9854415), (0.49790967, 0.82157475, -0.2776708), (0.5745417, 0.76015043, -0.30343544), (0.4524603, 0.78021014, -0.43191645), (-0.4546543, 0.69779533, 0.55350804), (-0.36746824, 0.8042082, 0.46713632), (-0.52058, 0.64099556, 0.56402236), (-0.64583063, 0.6116625, 0.45691553), (-0.67405987, 0.6506391, 0.3497315), (-0.85693616, 0.38781747, 0.3394968), (-0.7814114, -0.07591856, 0.61938065), (-0.6760816, 0.41045448, 0.6119157), (-0.75941294, -0.23023722, 0.6085086), (-0.81088346, 0.51771635, 0.272833), (-0.91409624, 0.33342513, 0.23077194), (-0.74681693, 0.593261, 0.3005094), (-0.38923764, 0.8541122, 0.34494415), (-0.4579775, 0.75007135, 0.47712642), (-0.7258752, 0.5977276, 0.3403336), (-0.84999394, -0.41160384, 0.32877436), (-0.7570338, -0.37951505, 0.5318534), (-0.84492964, -0.18322386, 0.5025166), (-0.7586589, 0.035847884, 0.65050095), (-0.7012919, 0.16784412, 0.69283336), (-0.8268261, 0.13315643, 0.54646873), (-0.7012919, 0.16784412, 0.69283336), (-0.786772, 0.24996437, 0.5643648), (-0.8268261, 0.13315643, 0.54646873), (-0.7012919, 0.16784412, 0.69283336), (-0.71068764, 0.22491847, 0.6665844), (-0.786772, 0.24996437, 0.5643648), (-0.5466911, 0.02180643, 0.8370504), (-0.71980846, 0.25195467, 0.6468342), (-0.793576, -0.052087493, 0.60623753), (-0.8229445, -0.2725443, 0.49847955), (-0.69164705, -0.3343356, 0.64019054), (-0.80555826, -0.32357636, 0.49636096), (-0.49458998, 0.7199245, 0.4869184), (-0.38048968, 0.7864329, 0.4865706), (-0.39122057, 0.5511939, 0.73697466), (-0.45958078, 0.4397767, -0.7716099), (-0.15011746, 0.20696905, -0.9667619), (-0.24783447, 0.65149343, -0.7170316), (-0.3943634, 0.88826734, -0.2354964), (-0.06844584, 0.94972205, 0.30552137), (0.38884154, 0.909899, 0.14451972), (-0.3886515, -0.233583, 0.89128506), (-0.41813788, 0.17239003, 0.89187574), (-0.48851424, -0.21784805, 0.8449237), (-0.84021795, 0.027527712, 0.54154986), (-0.7897694, 0.12547955, 0.60043246), (-0.7142646, 0.40940645, 0.56763774), (-0.6514288, 0.5422923, 0.5306219), (-0.57727927, 0.5212448, 0.62853193), (-0.47891322, 0.64898664, 0.5911502), (-0.76501614, 0.39301556, 0.5101855), (-0.57727927, 0.5212448, 0.62853193), (-0.6514288, 0.5422923, 0.5306219), (-0.8215269, 0.41721055, 0.38862428), (-0.85693616, 0.38781747, 0.3394968), (-0.9632271, 0.14657582, 0.22518665), (-0.8215269, 0.41721055, 0.38862428), (-0.64583063, 0.6116625, 0.45691553), (-0.85693616, 0.38781747, 0.3394968), (-0.48647246, 0.74353755, 0.45879897), (-0.67405987, 0.6506391, 0.3497315), (-0.64583063, 0.6116625, 0.45691553), (0.96223456, -0.23068449, -0.14453192), (0.9430448, -0.31553745, -0.10536934), (0.8341831, -0.50516784, -0.22123319), (-0.7814114, -0.07591856, 0.61938065), (-0.6121347, 0.47716904, 0.630556), (-0.6760816, 0.41045448, 0.6119157), (-0.6760816, 0.41045448, 0.6119157), (-0.6121347, 0.47716904, 0.630556), (-0.51980644, 0.6201144, 0.58758783), (-0.38718665, 0.78851014, 0.47784746), (-0.4579775, 0.75007135, 0.47712642), (-0.38923764, 0.8541122, 0.34494415), (-0.71980846, 0.25195467, 0.6468342), (-0.6082818, 0.47891468, 0.63295656), (-0.7186222, 0.44573912, 0.53375906), (-0.4769235, 0.13732037, -0.8681516), (-0.57752246, 0.52907157, -0.6217323), (-0.35297173, 0.4074013, -0.84227973), (-0.7570338, -0.37951505, 0.5318534), (-0.7695996, -0.15904443, 0.61840224), (-0.84492964, -0.18322386, 0.5025166), (-0.7695996, -0.15904443, 0.61840224), (-0.7523678, -0.020567412, 0.65842223), (-0.84492964, -0.18322386, 0.5025166), (-0.71068764, 0.22491847, 0.6665844), (-0.7781167, 0.078086026, 0.6232472), (-0.786772, 0.24996437, 0.5643648), (-0.6434348, 0.53775394, 0.54480493), (-0.84021795, 0.027527712, 0.54154986), (-0.7142646, 0.40940645, 0.56763774), (-0.6482716, 0.06548023, 0.7585883), (-0.7678991, -0.35828537, 0.53100157), (-0.7781167, 0.078086026, 0.6232472), (-0.36604598, 0.8602345, 0.3549749), (-0.48132876, 0.8258349, 0.2938015), (-0.48647246, 0.74353755, 0.45879897), (0.14657785, 0.22254784, -0.96384), (0.17509228, 0.4221398, -0.8894609), (0.16279149, 0.2844107, -0.9447802), (-0.34422785, 0.03356996, -0.93828577), (-0.5722468, 0.097871296, -0.8142203), (-0.517247, -0.039887037, -0.8549062), (-0.87894833, 0.28648278, 0.38128418), (-0.977894, 0.19825432, 0.06647189), (-0.9496979, -0.29839867, 0.09503771), (-0.73183244, -0.22271848, 0.6440635), (-0.69164705, -0.3343356, 0.64019054), (-0.8229445, -0.2725443, 0.49847955), (-0.47351477, -0.11410375, 0.87336373), (-0.6200124, -0.00022068113, 0.784592), (-0.6334671, -0.1645117, 0.75607896), (-0.6082818, 0.47891468, 0.63295656), (-0.41529274, 0.5222374, 0.74484897), (-0.4546543, 0.69779533, 0.55350804), (-0.84999394, -0.41160384, 0.32877436), (-0.7189797, -0.56101197, 0.4102848), (-0.7570338, -0.37951505, 0.5318534), (0.11391259, -0.11598364, -0.98669744), (0.210738, -0.6023462, -0.76991475), (0.009184698, -0.89453715, -0.44689944), (-0.5634086, 0.27225077, -0.78003216), (-0.1635049, 0.18375777, -0.9692777), (-0.45958078, 0.4397767, -0.7716099), (0.10158138, 0.21611832, -0.9710685), (-0.037781984, 0.2687882, -0.9624581), (0.033716384, 0.22987214, -0.97263664), (-0.33148786, 0.047533527, 0.9422613), (-0.7145103, 0.29147795, 0.6360155), (-0.27928203, 0.3613755, 0.8896119), (-0.81373185, 0.13665476, 0.5649477), (-0.937718, 0.25628695, 0.23452504), (-0.9407633, -0.011960006, 0.33885306), (-0.088106014, 0.24852572, -0.96461), (-0.031519674, 0.1370371, -0.9900643), (0.028795615, 0.21390346, -0.9764303), (-0.80026984, -0.14277494, 0.5823946), (-0.73183244, -0.22271848, 0.6440635), (-0.8229445, -0.2725443, 0.49847955), (-0.14152348, 0.015151654, 0.989819), (-0.2703541, 0.38242364, 0.8835502), (-0.4116224, 0.05100067, 0.9099263), (-0.36111245, 0.82862437, 0.42776096), (-0.61154205, 0.7756096, 0.15635297), (-0.685311, 0.7282284, 0.005678225), (-0.5168071, 0.71113396, 0.47665372), (-0.325513, 0.8379178, 0.43810382), (-0.49206007, 0.7194172, 0.49022007), (-0.7142646, 0.40940645, 0.56763774), (-0.7258752, 0.5977276, 0.3403336), (-0.4579775, 0.75007135, 0.47712642), (-0.7897694, 0.12547955, 0.60043246), (-0.92447, 0.100629054, 0.367735), (-0.7258752, 0.5977276, 0.3403336), (-0.7142646, 0.40940645, 0.56763774), (-0.7897694, 0.12547955, 0.60043246), (-0.7258752, 0.5977276, 0.3403336), (-0.78738946, -0.45226362, 0.418898), (-0.92447, 0.100629054, 0.367735), (-0.7897694, 0.12547955, 0.60043246), (-0.6974708, -0.03832063, -0.7155879), (-0.5600202, -0.14395519, -0.8158764), (-0.60574687, -0.27905473, -0.74511695), (-0.7523678, -0.020567412, 0.65842223), (-0.6790735, 0.11326302, 0.72527975), (-0.7586589, 0.035847884, 0.65050095), (-0.7586589, 0.035847884, 0.65050095), (-0.6790735, 0.11326302, 0.72527975), (-0.7012919, 0.16784412, 0.69283336), (-0.50882804, -0.1622441, -0.8454413), (-0.50114894, 0.1425418, -0.85354054), (-0.4191183, 0.009174447, -0.90788525), (0.8700867, -0.17603566, -0.4603918), (0.99349195, -0.10428091, 0.045817617), (0.8923967, -0.39999035, -0.20889154), (-0.81373185, 0.13665476, 0.5649477), (-0.8686785, 0.26994073, 0.41536704), (-0.937718, 0.25628695, 0.23452504), (-0.21357302, -0.96831006, 0.1294688), (0.0121184485, -0.99971867, 0.020386532), (0.112033434, -0.95767885, -0.26514092), (-0.76501614, 0.39301556, 0.5101855), (-0.8215269, 0.41721055, 0.38862428), (-0.92930555, 0.25243875, 0.26956633), (-0.6514288, 0.5422923, 0.5306219), (-0.64583063, 0.6116625, 0.45691553), (-0.8215269, 0.41721055, 0.38862428), (-0.50102854, 0.86482495, -0.03237622), (-0.7888175, 0.6006054, -0.13053761), (-0.73432314, 0.6527911, 0.18610004), (0.6522554, -0.18406336, -0.73531187), (0.64597267, -0.12957382, -0.75228304), (0.6830646, -0.15390755, -0.71395755), (-0.7814114, -0.07591856, 0.61938065), (-0.83901477, 0.5282562, 0.1303828), (-0.6121347, 0.47716904, 0.630556), (-0.83901477, 0.5282562, 0.1303828), (-0.51980644, 0.6201144, 0.58758783), (-0.6121347, 0.47716904, 0.630556), (-0.34290543, 0.34726235, -0.8728257), (-0.4485605, 0.3430452, -0.825296), (-0.39270934, 0.42883065, -0.8135624), (-0.632924, -0.48116198, 0.60653955), (-0.6256859, -0.34421992, 0.70002127), (-0.7570338, -0.37951505, 0.5318534), (-0.7570338, -0.37951505, 0.5318534), (-0.6256859, -0.34421992, 0.70002127), (-0.7695996, -0.15904443, 0.61840224), (-0.88255644, -0.30992982, 0.35360643), (-0.6922039, -0.13493402, 0.7089757), (-0.9407633, -0.011960006, 0.33885306), (-0.9407633, -0.011960006, 0.33885306), (-0.6922039, -0.13493402, 0.7089757), (-0.81373185, 0.13665476, 0.5649477), (-0.76501614, 0.39301556, 0.5101855), (-0.92930555, 0.25243875, 0.26956633), (-0.8686785, 0.26994073, 0.41536704), (-0.6514288, 0.5422923, 0.5306219), (-0.8215269, 0.41721055, 0.38862428), (-0.76501614, 0.39301556, 0.5101855), (-0.64583063, 0.6116625, 0.45691553), (-0.47891322, 0.64898664, 0.5911502), (-0.48647246, 0.74353755, 0.45879897), (-0.4546543, 0.69779533, 0.55350804), (-0.28955764, 0.83459437, 0.46862406), (-0.36746824, 0.8042082, 0.46713632), (-0.26628992, 0.6914746, 0.67153), (-0.6261619, 0.43389267, 0.6478106), (-0.4604737, 0.17007515, 0.8712281), (0.049126975, 0.43318087, 0.8999671), (-0.26628992, 0.6914746, 0.67153), (0.1224128, 0.07011393, 0.9899996), (-0.36111245, 0.82862437, 0.42776096), (-0.45028743, 0.8040352, 0.3882893), (-0.61154205, 0.7756096, 0.15635297), (-0.43541285, 0.37637308, 0.8177769), (-0.52058, 0.64099556, 0.56402236), (-0.36238083, 0.30236077, 0.88162243), (-0.3906986, -0.59437746, 0.7029012), (-0.42388347, -0.36057454, 0.8308482), (-0.43670908, -0.36223125, 0.8234523), (-0.4604737, 0.17007515, 0.8712281), (-0.6261619, 0.43389267, 0.6478106), (-0.77534294, -0.033574942, 0.63064724), (0.6264436, -0.7512508, -0.20782378), (0.81515265, -0.53872156, -0.21285026), (0.83682686, -0.5141604, -0.18804199), (-0.6434348, 0.53775394, 0.54480493), (-0.7142646, 0.40940645, 0.56763774), (-0.4579775, 0.75007135, 0.47712642), (-0.61474097, 0.37670696, 0.6929541), (-0.27793613, 0.4540266, 0.846529), (-0.43426287, 0.5636831, 0.7026216), (-0.026487285, 0.39081672, -0.92008734), (-0.14442262, 0.6212478, -0.7701904), (-0.0812246, 0.6300587, -0.77228785), (-0.7012919, 0.16784412, 0.69283336), (-0.6482716, 0.06548023, 0.7585883), (-0.71068764, 0.22491847, 0.6665844), (-0.71068764, 0.22491847, 0.6665844), (-0.6482716, 0.06548023, 0.7585883), (-0.7781167, 0.078086026, 0.6232472), (-0.6168156, -0.46475965, 0.63524574), (-0.6922039, -0.13493402, 0.7089757), (-0.88255644, -0.30992982, 0.35360643), (-0.7463162, 0.13561165, 0.65163004), (-0.8686785, 0.26994073, 0.41536704), (-0.81373185, 0.13665476, 0.5649477), (-0.47891322, 0.64898664, 0.5911502), (-0.64583063, 0.6116625, 0.45691553), (-0.6514288, 0.5422923, 0.5306219), (0.36375645, -0.89763147, -0.24887547), (0.6264436, -0.7512508, -0.20782378), (0.83682686, -0.5141604, -0.18804199), (-0.3886515, -0.233583, 0.89128506), (-0.48851424, -0.21784805, 0.8449237), (-0.41622862, -0.25352228, 0.8732011), (-0.36111245, 0.82862437, 0.42776096), (-0.19371775, 0.70356625, 0.6837163), (-0.45028743, 0.8040352, 0.3882893), (0.43238065, 0.5242961, 0.73359436), (0.5752987, 0.49384677, 0.6520327), (0.53602785, 0.6053474, 0.5884121), (-0.20028117, 0.25201452, -0.94677144), (-0.088106014, 0.24852572, -0.96461), (-0.15126656, 0.40943748, -0.8997107), (-0.28388658, -0.23799437, -0.92885256), (-0.4185895, -0.42861646, -0.80066895), (-0.80484945, -0.21449009, -0.5533637), (-0.5634086, 0.27225077, -0.78003216), (-0.7797168, -0.03955091, -0.624882), (-0.30569237, -0.08142651, -0.94864213), (-0.52924967, -0.0066861566, -0.84843975), (-0.6974708, -0.03832063, -0.7155879), (-0.5260783, 0.2280383, -0.81929255), (-0.6256859, -0.34421992, 0.70002127), (-0.6334671, -0.1645117, 0.75607896), (-0.7695996, -0.15904443, 0.61840224), (-0.7695996, -0.15904443, 0.61840224), (-0.6334671, -0.1645117, 0.75607896), (-0.7523678, -0.020567412, 0.65842223), (0.68319607, -0.6140792, -0.39515814), (0.31522903, -0.4526997, -0.83408254), (0.56610864, -0.6372172, -0.5229485), (-0.36238083, 0.30236077, 0.88162243), (-0.17834988, 0.32741395, 0.9278962), (-0.17790091, 0.18728532, 0.9660618), (-0.7638933, 0.045113526, 0.64376384), (-0.674225, 0.5169492, 0.5274318), (-0.7145103, 0.29147795, 0.6360155), (-0.78786373, 0.4057145, -0.46332115), (-0.6664247, 0.5819242, -0.46609253), (-0.83901477, 0.5282562, 0.1303828), (-0.41684034, 0.85262483, 0.31507948), (-0.59798235, 0.801431, 0.011207629), (-0.45028743, 0.8040352, 0.3882893), (-0.48647246, 0.74353755, 0.45879897), (-0.47891322, 0.64898664, 0.5911502), (-0.31844297, 0.76659155, 0.55761224), (-0.6922039, -0.13493402, 0.7089757), (-0.7463162, 0.13561165, 0.65163004), (-0.81373185, 0.13665476, 0.5649477), (-0.7463162, 0.13561165, 0.65163004), (-0.7647748, 0.2532884, 0.59242254), (-0.8686785, 0.26994073, 0.41536704), (-0.7647748, 0.2532884, 0.59242254), (-0.76501614, 0.39301556, 0.5101855), (-0.8686785, 0.26994073, 0.41536704), (-0.14047794, -0.34555006, -0.9278259), (-0.35552448, -0.07765679, -0.93143535), (0.39555016, -0.08151908, -0.9148195), (0.34579414, 0.44626126, -0.8253953), (0.3598295, 0.42234465, -0.8319541), (0.32244653, 0.31922922, -0.8911347), (-0.068017855, 0.740212, -0.6689243), (-0.016308533, 0.5921141, -0.8056891), (-0.036941852, 0.6243847, -0.780243), (0.6074403, 0.5816071, -0.5410632), (0.2047279, 0.22788744, -0.9519211), (-0.42210728, 0.0786697, -0.903126), (0.057944402, 0.7179774, -0.6936505), (-0.047764473, 0.39057004, -0.9193332), (-0.18074352, 0.637146, -0.74925077), (-0.08430674, 0.9387543, -0.3341147), (-0.0015518905, 0.91320086, -0.40750656), (-0.025991922, 0.84249765, -0.5380726), (0.07123869, 0.94643617, -0.31493425), (0.13312438, 0.85884887, -0.4946276), (0.0044798334, 0.8557751, -0.5173287), (0.16940975, 0.71426123, -0.67906636), (0.11332498, 0.614508, -0.78072876), (-0.045859024, 0.72708166, -0.6850177), (-0.42388347, -0.36057454, 0.8308482), (-0.19532515, -0.64201677, 0.7413924), (-0.07068588, -0.2992179, 0.951563), (0.48313183, 0.70233595, -0.5227884), (0.5509987, 0.45174804, -0.7016581), (0.14990771, 0.73515755, -0.6611135), (0.2955777, 0.73814315, -0.6064474), (0.3108681, 0.6961003, -0.6471516), (0.18872376, 0.8095047, -0.5559546), (0.3744099, 0.48020983, -0.7932312), (0.5723133, 0.28664815, -0.76830345), (0.43455523, 0.31527552, -0.8436606), (-0.2657656, -0.030633446, 0.9635508), (-0.249804, -0.14131166, 0.9579295), (-0.3791319, -0.2046025, 0.90243936), (-0.9618187, 0.19691023, -0.19008182), (-0.9785204, 0.08765623, 0.18658555), (-0.98542255, -0.14428605, 0.090133525), (-0.9109413, -0.076090276, -0.4054579), (-0.84268403, -0.31728688, -0.43498573), (-0.74905336, -0.25794122, -0.6102337), (-0.41133305, 0.61813056, -0.66986537), (-0.32487574, 0.3613849, -0.873989), (-0.35297173, 0.4074013, -0.84227973), (-0.35504547, 0.88452846, -0.30257598), (-0.5214649, 0.24872354, -0.8162175), (-0.6335783, -0.2852761, -0.7191634), (-0.74905336, -0.25794122, -0.6102337), (-0.65319806, -0.5175418, -0.552705), (-0.6335783, -0.2852761, -0.7191634), (-0.7033694, -0.21921806, -0.6761767), (-0.6476901, -0.30382887, -0.69870275), (-0.45989716, -0.35804984, -0.81258535), (0.33754775, -0.6609498, -0.67022896), (0.4877713, -0.78026503, -0.39149147), (0.6900427, -0.62094134, -0.37185043), (-0.74905336, -0.25794122, -0.6102337), (-0.84268403, -0.31728688, -0.43498573), (-0.65319806, -0.5175418, -0.552705), (-0.9041209, 0.08618358, -0.41849458), (-0.69906676, 0.6669307, -0.25789395), (-0.6335783, -0.2852761, -0.7191634), (-0.9632474, 0.021751193, -0.26773366), (-0.88449687, -0.09426643, -0.45692357), (-0.73144907, -0.44305888, -0.51834464), (-0.65319806, -0.5175418, -0.552705), (-0.46374768, -0.64550054, -0.6068503), (-0.6335783, -0.2852761, -0.7191634), (-0.9632474, 0.021751193, -0.26773366), (-0.935459, -0.19494183, -0.29481196), (-0.9109413, -0.076090276, -0.4054579), (-0.88449687, -0.09426643, -0.45692357), (-0.9632474, 0.021751193, -0.26773366), (-0.9109413, -0.076090276, -0.4054579), (-0.9109413, -0.076090276, -0.4054579), (-0.935459, -0.19494183, -0.29481196), (-0.84268403, -0.31728688, -0.43498573), (-0.52892244, -0.6011978, -0.599001), (-0.9041209, 0.08618358, -0.41849458), (-0.6335783, -0.2852761, -0.7191634), (-0.46374768, -0.64550054, -0.6068503), (-0.52892244, -0.6011978, -0.599001), (-0.6335783, -0.2852761, -0.7191634), (-0.84268403, -0.31728688, -0.43498573), (-0.60823876, -0.6036918, -0.51536554), (-0.65319806, -0.5175418, -0.552705), (-0.65319806, -0.5175418, -0.552705), (-0.60823876, -0.6036918, -0.51536554), (-0.46374768, -0.64550054, -0.6068503), (-0.9866532, 0.1628346, 0.00060730765), (-0.937718, 0.25628695, 0.23452504), (-0.96352214, 0.2658698, 0.030630894), (-0.98215955, 0.061957043, -0.17754953), (-0.9632474, 0.021751193, -0.26773366), (-0.962484, 0.012088223, -0.2710689), (-0.52892244, -0.6011978, -0.599001), (-0.96865606, -0.06813151, -0.23887958), (-0.9041209, 0.08618358, -0.41849458), (-0.5461902, 0.7774321, 0.31189036), (-0.9041209, 0.08618358, -0.41849458), (-0.96865606, -0.06813151, -0.23887958), (-0.9632474, 0.021751193, -0.26773366), (-0.98215955, 0.061957043, -0.17754953), (-0.935459, -0.19494183, -0.29481196), (-0.935459, -0.19494183, -0.29481196), (-0.7586787, -0.5206985, -0.39150938), (-0.84268403, -0.31728688, -0.43498573), (-0.84268403, -0.31728688, -0.43498573), (-0.7586787, -0.5206985, -0.39150938), (-0.60823876, -0.6036918, -0.51536554), (-0.37058988, 0.86662453, -0.33410332), (-0.61204326, 0.7573711, -0.22757864), (-0.30698523, 0.912352, -0.27087653), (-0.46374768, -0.64550054, -0.6068503), (-0.55350083, -0.65157896, -0.51873076), (-0.52892244, -0.6011978, -0.599001), (-0.52892244, -0.6011978, -0.599001), (-0.55350083, -0.65157896, -0.51873076), (-0.96865606, -0.06813151, -0.23887958), (-0.55350083, -0.65157896, -0.51873076), (-0.91111124, -0.32730713, -0.25049207), (-0.96865606, -0.06813151, -0.23887958), (-0.98215955, 0.061957043, -0.17754953), (-0.9662683, -0.16070734, -0.20124346), (-0.935459, -0.19494183, -0.29481196), (-0.60823876, -0.6036918, -0.51536554), (-0.55350083, -0.65157896, -0.51873076), (-0.46374768, -0.64550054, -0.6068503), (-0.96371, 0.2455488, 0.10473212), (-0.9978222, 0.05849979, 0.030472683), (-0.99923784, 0.028006684, -0.027189441), (-0.98215955, 0.061957043, -0.17754953), (-0.962484, 0.012088223, -0.2710689), (-0.9651873, -0.0794768, -0.2491925), (-0.61783475, -0.6698624, -0.41178223), (-0.91111124, -0.32730713, -0.25049207), (-0.55350083, -0.65157896, -0.51873076), (-0.60823876, -0.6036918, -0.51536554), (-0.61783475, -0.6698624, -0.41178223), (-0.55350083, -0.65157896, -0.51873076), (-0.8768057, -0.2520362, 0.40949917), (-0.9467224, -0.17191997, 0.2723239), (-0.8898538, -0.40453288, 0.21098225), (-0.9703805, 0.18565053, -0.15458225), (-0.98215955, 0.061957043, -0.17754953), (-0.9651873, -0.0794768, -0.2491925), (-0.9662683, -0.16070734, -0.20124346), (-0.8575242, -0.42855495, -0.28459257), (-0.935459, -0.19494183, -0.29481196), (-0.935459, -0.19494183, -0.29481196), (-0.8575242, -0.42855495, -0.28459257), (-0.7586787, -0.5206985, -0.39150938), (-0.8753281, -0.2974295, -0.3812299), (-0.4185895, -0.42861646, -0.80066895), (-0.52218896, -0.42145768, -0.7414122), (-0.7586787, -0.5206985, -0.39150938), (-0.61783475, -0.6698624, -0.41178223), (-0.60823876, -0.6036918, -0.51536554), (-0.01678469, 0.78437483, -0.62006), (0.16940975, 0.71426123, -0.67906636), (-0.045859024, 0.72708166, -0.6850177), (-0.9065204, 0.40756547, 0.11005034), (-0.79953074, 0.5149029, 0.30923405), (-0.6929957, 0.7194179, -0.04685013), (-0.46889415, -0.83141786, -0.29813167), (-0.90639764, -0.39457366, -0.15084717), (-0.9651873, -0.0794768, -0.2491925), (-0.9955797, -0.093135186, -0.0121164275), (-0.88589257, 0.42307234, 0.19027403), (-0.91111124, -0.32730713, -0.25049207), (-0.61783475, -0.6698624, -0.41178223), (-0.9955797, -0.093135186, -0.0121164275), (-0.91111124, -0.32730713, -0.25049207), (-0.95828944, 0.28264505, 0.04234376), (-0.7258752, 0.5977276, 0.3403336), (-0.92447, 0.100629054, 0.367735), (0.29109535, 0.5765429, -0.7634539), (0.2597133, 0.47594517, -0.8402531), (0.16940975, 0.71426123, -0.67906636), (-0.5270803, 0.73401916, -0.42825484), (-0.41133305, 0.61813056, -0.66986537), (-0.5445979, 0.68211156, -0.48799285), (-0.98665786, -0.13022158, -0.09771668), (-0.99763674, -0.05126775, -0.045744807), (-0.92167896, -0.12954791, -0.3656847), (-0.29382858, -0.9395531, -0.17579779), (-0.90639764, -0.39457366, -0.15084717), (-0.46889415, -0.83141786, -0.29813167), (-0.9789096, 0.15556262, -0.13242397), (-0.98215955, 0.061957043, -0.17754953), (-0.9703805, 0.18565053, -0.15458225), (-0.9789096, 0.15556262, -0.13242397), (-0.9662683, -0.16070734, -0.20124346), (-0.98215955, 0.061957043, -0.17754953), (-0.018422125, 0.59804493, -0.8012509), (0.029149108, 0.5269579, -0.84939134), (-0.050011877, 0.7380568, -0.6728827), (-0.18226822, -0.98070323, 0.07070641), (-0.39556265, -0.87511915, 0.27874118), (-0.23905218, -0.9347137, 0.26299092), (-0.90639764, -0.39457366, -0.15084717), (-0.9703805, 0.18565053, -0.15458225), (-0.9651873, -0.0794768, -0.2491925), (-0.64423424, -0.7619847, 0.06589081), (-0.15419765, -0.9878645, 0.018619632), (-0.3956094, -0.8877723, -0.23527326), (-0.036941852, 0.6243847, -0.780243), (-0.016308533, 0.5921141, -0.8056891), (-0.118845195, 0.721646, -0.6819844), (-0.092187375, 0.38006347, -0.9203549), (0.033716384, 0.22987214, -0.97263664), (-0.037781984, 0.2687882, -0.9624581), (-0.71958065, -0.324478, -0.6139361), (-0.7464215, -0.30342624, -0.59227306), (-0.60574687, -0.27905473, -0.74511695), (-0.7464215, -0.30342624, -0.59227306), (-0.8256427, -0.14369272, -0.5455883), (-0.6974708, -0.03832063, -0.7155879), (-0.8256427, -0.14369272, -0.5455883), (-0.85292757, 0.11255104, -0.50975174), (-0.6974708, -0.03832063, -0.7155879), (-0.85292757, 0.11255104, -0.50975174), (-0.7785315, 0.30379283, -0.54918), (-0.6974708, -0.03832063, -0.7155879), (-0.97881943, -0.011554678, -0.20439933), (-0.9789096, 0.15556262, -0.13242397), (-0.9703805, 0.18565053, -0.15458225), (-0.61783475, -0.6698624, -0.41178223), (-0.92629343, -0.3501626, -0.1391643), (-0.9955797, -0.093135186, -0.0121164275), (0.6732018, 0.3908049, -0.6277507), (0.6314147, 0.4272624, -0.64711857), (0.5393348, 0.34356913, -0.7688162), (-0.71958065, -0.324478, -0.6139361), (-0.78383344, -0.36284107, -0.5039361), (-0.7464215, -0.30342624, -0.59227306), (-0.7464215, -0.30342624, -0.59227306), (-0.8675953, -0.29435962, -0.40078765), (-0.8256427, -0.14369272, -0.5455883), (-0.39085448, 0.76808643, -0.5072237), (-0.5437034, 0.5026201, -0.6721307), (-0.6759483, 0.57811683, -0.45702812), (-0.8546207, 0.31179705, -0.41521806), (-0.7785315, 0.30379283, -0.54918), (-0.85292757, 0.11255104, -0.50975174), (-0.6965884, -0.63127613, -0.34096196), (-0.61783475, -0.6698624, -0.41178223), (-0.7586787, -0.5206985, -0.39150938), (-0.8575242, -0.42855495, -0.28459257), (-0.6965884, -0.63127613, -0.34096196), (-0.7586787, -0.5206985, -0.39150938), (-0.92629343, -0.3501626, -0.1391643), (-0.81088346, 0.51771635, 0.272833), (-0.9955797, -0.093135186, -0.0121164275), (0.2597133, 0.47594517, -0.8402531), (0.15169112, 0.5053217, -0.84949386), (0.11332498, 0.614508, -0.78072876), (-0.048447844, 0.3842212, -0.92196894), (0.12537716, 0.5362219, -0.8347135), (0.05108447, 0.40225464, -0.9141015), (0.968587, 0.20850669, -0.13551457), (0.6738203, 0.21030322, -0.70833516), (0.8546297, 0.36033016, 0.37385878), (-0.8487459, -0.30743566, -0.43024844), (-0.8675953, -0.29435962, -0.40078765), (-0.7464215, -0.30342624, -0.59227306), (-0.78383344, -0.36284107, -0.5039361), (-0.8487459, -0.30743566, -0.43024844), (-0.7464215, -0.30342624, -0.59227306), (-0.8675953, -0.29435962, -0.40078765), (-0.929005, -0.11855679, -0.35056219), (-0.8256427, -0.14369272, -0.5455883), (-0.929005, -0.11855679, -0.35056219), (-0.88819516, 0.18824868, -0.41913196), (-0.85292757, 0.11255104, -0.50975174), (-0.8256427, -0.14369272, -0.5455883), (-0.929005, -0.11855679, -0.35056219), (-0.85292757, 0.11255104, -0.50975174), (-0.7867414, 0.4492771, -0.42330602), (-0.6759483, 0.57811683, -0.45702812), (-0.7785315, 0.30379283, -0.54918), (-0.8546207, 0.31179705, -0.41521806), (-0.7867414, 0.4492771, -0.42330602), (-0.7785315, 0.30379283, -0.54918), (-0.92629343, -0.3501626, -0.1391643), (-0.99375284, 0.07372748, 0.08378266), (-0.81088346, 0.51771635, 0.272833), (-0.048447844, 0.3842212, -0.92196894), (0.10364011, 0.56799906, -0.8164777), (0.12537716, 0.5362219, -0.8347135), (-0.01678469, 0.78437483, -0.62006), (-0.1303001, 0.72003734, -0.6815922), (-0.002316495, 0.71685964, -0.6972137), (-0.6476901, -0.30382887, -0.69870275), (-0.8496658, -0.27734563, -0.4484946), (-0.71958065, -0.324478, -0.6139361), (-0.929005, -0.11855679, -0.35056219), (-0.92665523, 0.005695453, -0.3758691), (-0.88819516, 0.18824868, -0.41913196), (-0.88819516, 0.18824868, -0.41913196), (-0.8546207, 0.31179705, -0.41521806), (-0.85292757, 0.11255104, -0.50975174), (0.0059285, 0.81032634, 0.58594877), (0.6176859, 0.29864606, 0.7275127), (-0.06844584, 0.94972205, 0.30552137), (-0.6965884, -0.63127613, -0.34096196), (-0.92629343, -0.3501626, -0.1391643), (-0.61783475, -0.6698624, -0.41178223), (-0.6929957, 0.7194179, -0.04685013), (-0.418116, 0.90703624, -0.04964165), (-0.49044955, 0.84781194, -0.20167837), (-0.9026322, -0.42681515, -0.055532932), (-0.9295156, -0.31445134, 0.1926684), (-0.74939865, -0.6407484, 0.16686325), (0.12537716, 0.5362219, -0.8347135), (0.10364011, 0.56799906, -0.8164777), (0.18872376, 0.8095047, -0.5559546), (0.16940975, 0.71426123, -0.67906636), (0.2597133, 0.47594517, -0.8402531), (0.11332498, 0.614508, -0.78072876), (-0.8496658, -0.27734563, -0.4484946), (-0.8487459, -0.30743566, -0.43024844), (-0.71958065, -0.324478, -0.6139361), (-0.71958065, -0.324478, -0.6139361), (-0.8487459, -0.30743566, -0.43024844), (-0.78383344, -0.36284107, -0.5039361), (-0.7867414, 0.4492771, -0.42330602), (-0.8546207, 0.31179705, -0.41521806), (-0.88819516, 0.18824868, -0.41913196), (-0.9467224, -0.17191997, 0.2723239), (-0.9565734, 0.11846453, 0.2663332), (-0.9961066, -0.06624365, 0.058166064), (-0.8877702, -0.38046023, -0.2590639), (-0.6965884, -0.63127613, -0.34096196), (-0.8575242, -0.42855495, -0.28459257), (-0.9662683, -0.16070734, -0.20124346), (-0.8877702, -0.38046023, -0.2590639), (-0.8575242, -0.42855495, -0.28459257), (-0.01678469, 0.78437483, -0.62006), (-0.045859024, 0.72708166, -0.6850177), (-0.1303001, 0.72003734, -0.6815922), (-0.7033694, -0.21921806, -0.6761767), (-0.890766, -0.23448007, -0.38930064), (-0.8496658, -0.27734563, -0.4484946), (-0.6476901, -0.30382887, -0.69870275), (-0.7033694, -0.21921806, -0.6761767), (-0.8496658, -0.27734563, -0.4484946), (-0.8487459, -0.30743566, -0.43024844), (-0.9098015, -0.27690834, -0.30916518), (-0.8675953, -0.29435962, -0.40078765), (-0.7867414, 0.4492771, -0.42330602), (-0.5183715, 0.74702173, -0.41623268), (-0.6759483, 0.57811683, -0.45702812), (-0.6965884, -0.63127613, -0.34096196), (-0.95078194, -0.29127824, -0.10569102), (-0.92629343, -0.3501626, -0.1391643), (-0.92629343, -0.3501626, -0.1391643), (-0.95078194, -0.29127824, -0.10569102), (-0.99375284, 0.07372748, 0.08378266), (-0.95747125, 0.12048938, -0.26216623), (-0.9618187, 0.19691023, -0.19008182), (-0.96396816, -0.20500617, -0.16952217), (-0.85781515, 0.49961972, -0.12055419), (-0.61607623, 0.71149987, -0.3379616), (-0.77796745, 0.49438986, -0.38774374), (-0.99923784, 0.028006684, -0.027189441), (-0.9915867, -0.11128689, 0.06611437), (-0.97649986, -0.1604329, 0.14390719), (0.0813317, 0.65248305, 0.75342625), (0.1354116, 0.78960186, 0.59849197), (0.03869243, 0.87645984, 0.47991776), (0.11033541, -0.2923358, 0.9499294), (0.07279701, -0.8265557, 0.55812746), (-0.27621555, 0.0014689193, 0.9610946), (0.12537716, 0.5362219, -0.8347135), (0.13256782, 0.8150782, -0.5639798), (0.1381764, 0.3608774, -0.92232037), (-0.8473476, -0.1441894, -0.5110883), (-0.890766, -0.23448007, -0.38930064), (-0.7033694, -0.21921806, -0.6761767), (-0.8496658, -0.27734563, -0.4484946), (-0.9070742, -0.28032398, -0.31406164), (-0.8487459, -0.30743566, -0.43024844), (-0.8675953, -0.29435962, -0.40078765), (-0.9098015, -0.27690834, -0.30916518), (-0.929005, -0.11855679, -0.35056219), (-0.9789096, 0.15556262, -0.13242397), (-0.8877702, -0.38046023, -0.2590639), (-0.9662683, -0.16070734, -0.20124346), (-0.8768057, -0.2520362, 0.40949917), (-0.8898538, -0.40453288, 0.21098225), (-0.88237315, -0.3252089, 0.3400833), (-0.028296672, 0.29320353, 0.95563126), (-0.11570207, 0.5121285, 0.8510802), (-0.15882413, 0.6284913, 0.7614287), (-0.83437866, 0.2550955, -0.48860872), (-0.64344645, -0.47379425, -0.60124516), (-0.8719043, -0.32641268, -0.3650173), (-0.83437866, 0.2550955, -0.48860872), (-0.5906848, 0.41788256, -0.690265), (-0.64680445, 0.22478433, -0.72877705), (-0.83437866, 0.2550955, -0.48860872), (-0.68113655, 0.48901352, -0.54490244), (-0.5906848, 0.41788256, -0.690265), (-0.68113655, 0.48901352, -0.54490244), (-0.52435285, 0.53870404, -0.65943307), (-0.5906848, 0.41788256, -0.690265), (-0.786772, 0.24996437, 0.5643648), (-0.7781167, 0.078086026, 0.6232472), (-0.8916462, -0.02422715, 0.45208427), (-0.8473476, -0.1441894, -0.5110883), (-0.91927904, -0.15964879, -0.35977545), (-0.890766, -0.23448007, -0.38930064), (-0.8496658, -0.27734563, -0.4484946), (-0.890766, -0.23448007, -0.38930064), (-0.9070742, -0.28032398, -0.31406164), (-0.92665523, 0.005695453, -0.3758691), (-0.7797168, -0.03955091, -0.624882), (-0.88819516, 0.18824868, -0.41913196), (-0.5634086, 0.27225077, -0.78003216), (-0.7867414, 0.4492771, -0.42330602), (-0.88819516, 0.18824868, -0.41913196), (-0.7797168, -0.03955091, -0.624882), (-0.5634086, 0.27225077, -0.78003216), (-0.88819516, 0.18824868, -0.41913196), (-0.87775177, 0.32134143, 0.35537502), (-0.786772, 0.24996437, 0.5643648), (-0.8916462, -0.02422715, 0.45208427), (-0.7781167, 0.078086026, 0.6232472), (-0.77879447, -0.46195912, 0.42435), (-0.8916462, -0.02422715, 0.45208427), (-0.99375284, 0.07372748, 0.08378266), (-0.91409624, 0.33342513, 0.23077194), (-0.81088346, 0.51771635, 0.272833), (-0.77879447, -0.46195912, 0.42435), (-0.7274023, -0.61863565, 0.29694417), (-0.8916462, -0.02422715, 0.45208427), (-0.9070742, -0.28032398, -0.31406164), (-0.9098015, -0.27690834, -0.30916518), (-0.8487459, -0.30743566, -0.43024844), (-0.9098015, -0.27690834, -0.30916518), (-0.92906123, -0.23252845, -0.28770763), (-0.929005, -0.11855679, -0.35056219), (-0.929005, -0.11855679, -0.35056219), (-0.76888233, -0.20671551, -0.6050526), (-0.92665523, 0.005695453, -0.3758691), (-0.76888233, -0.20671551, -0.6050526), (-0.7797168, -0.03955091, -0.624882), (-0.92665523, 0.005695453, -0.3758691), (-0.61552185, 0.1700669, -0.76955193), (-0.69748336, 0.38816905, -0.6023635), (-0.67914766, 0.51451015, -0.5234862), (-0.6965884, -0.63127613, -0.34096196), (-0.708216, -0.60963166, -0.356061), (-0.95078194, -0.29127824, -0.10569102), (-0.95078194, -0.29127824, -0.10569102), (-0.91409624, 0.33342513, 0.23077194), (-0.99375284, 0.07372748, 0.08378266), (0.045180514, 0.12160821, -0.9915494), (-0.30950058, 0.20240676, -0.92910755), (-0.186059, 0.34451467, -0.92015857), (-0.7033694, -0.21921806, -0.6761767), (-0.8246584, 0.28072074, -0.49105445), (-0.8473476, -0.1441894, -0.5110883), (-0.929005, -0.11855679, -0.35056219), (-0.92906123, -0.23252845, -0.28770763), (-0.76888233, -0.20671551, -0.6050526), (0.9648092, 0.2261427, 0.134174), (0.8960697, 0.31373283, -0.31405523), (0.9966044, -0.060561676, -0.055785798), (-0.04828888, -0.9518656, -0.30268806), (-0.013975418, -0.46513107, -0.88513154), (-0.28336734, -0.75166273, -0.5955721), (-0.26205632, -0.9085785, 0.32528675), (-0.116680495, -0.99159163, 0.0559605), (-0.014720315, -0.9977732, 0.0650545), (-0.6685689, -0.72058904, -0.18375832), (-0.96611804, -0.24154912, -0.090939395), (-0.8752313, -0.34873527, -0.33519235), (-0.8752313, -0.34873527, -0.33519235), (-0.96611804, -0.24154912, -0.090939395), (-0.97881943, -0.011554678, -0.20439933), (0.13312438, 0.85884887, -0.4946276), (0.31501457, 0.79353833, -0.52063674), (0.16517043, 0.7992805, -0.5778143), (0.17509228, 0.4221398, -0.8894609), (-0.047764473, 0.39057004, -0.9193332), (0.057944402, 0.7179774, -0.6936505), (-0.85706246, 0.35247052, -0.3757772), (-0.68113655, 0.48901352, -0.54490244), (-0.83437866, 0.2550955, -0.48860872), (-0.85706246, 0.35247052, -0.3757772), (-0.70865, 0.5702388, -0.41550317), (-0.68113655, 0.48901352, -0.54490244), (-0.61204326, 0.7573711, -0.22757864), (-0.8246584, 0.28072074, -0.49105445), (-0.41892388, 0.85465974, -0.30669102), (-0.8473476, -0.1441894, -0.5110883), (-0.8246584, 0.28072074, -0.49105445), (-0.91927904, -0.15964879, -0.35977545), (-0.91927904, -0.15964879, -0.35977545), (-0.9070742, -0.28032398, -0.31406164), (-0.890766, -0.23448007, -0.38930064), (-0.9098015, -0.27690834, -0.30916518), (-0.8942517, -0.262909, -0.3622056), (-0.92906123, -0.23252845, -0.28770763), (-0.3202161, 0.6611132, -0.6785212), (-0.28299472, 0.75980246, -0.58533275), (-0.13814647, 0.616536, -0.7751121), (-0.983754, -0.106783405, 0.14431019), (-0.97621727, -0.14019398, 0.16536482), (-0.9295156, -0.31445134, 0.1926684), (-0.983754, -0.106783405, 0.14431019), (-0.9648999, 0.047693223, 0.25825062), (-0.97621727, -0.14019398, 0.16536482), (-0.38843852, -0.8947964, -0.2201251), (-0.76160926, -0.627711, -0.16102831), (-0.6685689, -0.72058904, -0.18375832), (-0.6685689, -0.72058904, -0.18375832), (-0.76160926, -0.627711, -0.16102831), (-0.96611804, -0.24154912, -0.090939395), (-0.96611804, -0.24154912, -0.090939395), (-0.95780903, 0.28258267, -0.052428976), (-0.97881943, -0.011554678, -0.20439933), (-0.95780903, 0.28258267, -0.052428976), (-0.9789096, 0.15556262, -0.13242397), (-0.97881943, -0.011554678, -0.20439933), (-0.9789096, 0.15556262, -0.13242397), (-0.8986108, -0.35312408, -0.26038826), (-0.8877702, -0.38046023, -0.2590639), (-0.8719043, -0.32641268, -0.3650173), (-0.85706246, 0.35247052, -0.3757772), (-0.83437866, 0.2550955, -0.48860872), (-0.9070742, -0.28032398, -0.31406164), (-0.8942517, -0.262909, -0.3622056), (-0.9098015, -0.27690834, -0.30916518), (-0.9572948, 0.27988225, -0.07247413), (-0.9789096, 0.15556262, -0.13242397), (-0.95780903, 0.28258267, -0.052428976), (-0.9572948, 0.27988225, -0.07247413), (-0.8986108, -0.35312408, -0.26038826), (-0.9789096, 0.15556262, -0.13242397), (-0.8877702, -0.38046023, -0.2590639), (-0.708216, -0.60963166, -0.356061), (-0.6965884, -0.63127613, -0.34096196), (-0.6064609, 0.21697047, -0.7649372), (-0.61025804, -0.067189895, -0.78934824), (-0.6499544, 0.18372133, -0.7374319), (-0.510264, 0.768923, 0.38521177), (-0.38718665, 0.78851014, 0.47784746), (-0.38923764, 0.8541122, 0.34494415), (-0.8719043, -0.32641268, -0.3650173), (-0.9166517, 0.29328796, -0.27153596), (-0.85706246, 0.35247052, -0.3757772), (-0.04828888, -0.9518656, -0.30268806), (0.07709324, -0.9636072, -0.25596443), (0.19736668, -0.4973135, -0.84482294), (-0.30698523, 0.912352, -0.27087653), (-0.61204326, 0.7573711, -0.22757864), (-0.41892388, 0.85465974, -0.30669102), (-0.9070742, -0.28032398, -0.31406164), (-0.832244, -0.32162237, -0.45158496), (-0.8942517, -0.262909, -0.3622056), (-0.92906123, -0.23252845, -0.28770763), (-0.8942517, -0.262909, -0.3622056), (-0.6699267, -0.33512715, -0.6624863), (-0.9026322, -0.42681515, -0.055532932), (-0.983754, -0.106783405, 0.14431019), (-0.9295156, -0.31445134, 0.1926684), (-0.8986108, -0.35312408, -0.26038826), (-0.708216, -0.60963166, -0.356061), (-0.8877702, -0.38046023, -0.2590639), (-0.708216, -0.60963166, -0.356061), (-0.79385674, -0.54880345, -0.26192784), (-0.95078194, -0.29127824, -0.10569102), (-0.66636115, 0.58046716, -0.46799642), (-0.54507095, 0.61533564, -0.56943804), (-0.6499544, 0.18372133, -0.7374319), (-0.60296595, 0.29914132, -0.73955834), (-0.66636115, 0.58046716, -0.46799642), (-0.6499544, 0.18372133, -0.7374319), (-0.83249086, 0.5022283, -0.23393516), (-0.70865, 0.5702388, -0.41550317), (-0.85706246, 0.35247052, -0.3757772), (-0.9533801, 0.14730272, -0.26337883), (-0.8246584, 0.28072074, -0.49105445), (-0.61204326, 0.7573711, -0.22757864), (-0.8246584, 0.28072074, -0.49105445), (-0.94944113, -0.14137727, -0.28031063), (-0.91927904, -0.15964879, -0.35977545), (-0.31921285, 0.27075258, -0.9081829), (-0.25921842, -0.44357708, -0.85793084), (-0.3434998, 0.20149514, -0.9172827), (-0.30536386, -0.6192945, -0.7233444), (0.41798517, -0.7731486, -0.47700074), (-0.012127084, -0.7994914, -0.60055524), (-0.50847834, 0.7502318, -0.42261335), (-0.83049834, 0.5569198, 0.010623102), (-0.6936356, 0.61176634, -0.3802784), (-0.9618187, 0.19691023, -0.19008182), (-0.83049834, 0.5569198, 0.010623102), (-0.9785204, 0.08765623, 0.18658555), (-0.9696845, -0.24435441, -0.0017626535), (-0.9842828, 0.10915529, 0.13882533), (-0.95078194, -0.29127824, -0.10569102), (-0.79385674, -0.54880345, -0.26192784), (-0.9696845, -0.24435441, -0.0017626535), (-0.95078194, -0.29127824, -0.10569102), (-0.95078194, -0.29127824, -0.10569102), (-0.9842828, 0.10915529, 0.13882533), (-0.91409624, 0.33342513, 0.23077194), (-0.83249086, 0.5022283, -0.23393516), (-0.85706246, 0.35247052, -0.3757772), (-0.9166517, 0.29328796, -0.27153596), (-0.83249086, 0.5022283, -0.23393516), (-0.56604046, 0.77200174, -0.2891566), (-0.70865, 0.5702388, -0.41550317), (-0.8246584, 0.28072074, -0.49105445), (-0.9533801, 0.14730272, -0.26337883), (-0.94944113, -0.14137727, -0.28031063), (-0.832244, -0.32162237, -0.45158496), (-0.5901023, -0.32065958, -0.7409162), (-0.8942517, -0.262909, -0.3622056), (-0.8986108, -0.35312408, -0.26038826), (-0.79385674, -0.54880345, -0.26192784), (-0.708216, -0.60963166, -0.356061), (-0.9637507, 0.20905967, 0.16576698), (-0.96352214, 0.2658698, 0.030630894), (-0.92704785, 0.36381298, 0.09067647), (-0.94944113, -0.14137727, -0.28031063), (-0.8753281, -0.2974295, -0.3812299), (-0.91927904, -0.15964879, -0.35977545), (-0.91927904, -0.15964879, -0.35977545), (-0.8753281, -0.2974295, -0.3812299), (-0.9070742, -0.28032398, -0.31406164), (-0.9070742, -0.28032398, -0.31406164), (-0.8753281, -0.2974295, -0.3812299), (-0.832244, -0.32162237, -0.45158496), (0.5075693, 0.34588322, -0.78913766), (0.60190797, 0.20999849, -0.7704592), (0.5723133, 0.28664815, -0.76830345), (-0.15011746, 0.20696905, -0.9667619), (-0.20028117, 0.25201452, -0.94677144), (-0.16355607, 0.3226008, -0.9322972), (-0.92704785, 0.36381298, 0.09067647), (-0.99923784, 0.028006684, -0.027189441), (-0.9863728, 0.12996015, 0.100891285), (-0.9863728, 0.12996015, 0.100891285), (-0.99923784, 0.028006684, -0.027189441), (-0.97649986, -0.1604329, 0.14390719), (-0.91734314, 0.35172197, 0.18647535), (-0.9637507, 0.20905967, 0.16576698), (-0.8803778, 0.4419459, 0.1721006), (-0.76160926, -0.627711, -0.16102831), (-0.7643055, -0.6348301, -0.11326072), (-0.96611804, -0.24154912, -0.090939395), (-0.8960748, -0.16243471, 0.4131161), (-0.98542255, -0.14428605, 0.090133525), (-0.9785204, 0.08765623, 0.18658555), (-0.49044955, 0.84781194, -0.20167837), (-0.83049834, 0.5569198, 0.010623102), (-0.50847834, 0.7502318, -0.42261335), (-0.8141717, 0.48869303, -0.313534), (-0.83249086, 0.5022283, -0.23393516), (-0.9166517, 0.29328796, -0.27153596), (-0.9533801, 0.14730272, -0.26337883), (-0.94697726, -0.13446452, -0.2918103), (-0.94944113, -0.14137727, -0.28031063), (0.5276262, 0.6106719, -0.5905003), (0.44767228, 0.5346178, -0.71677977), (0.43665907, 0.5151251, -0.7375467), (0.030136857, -0.9859453, 0.16432805), (0.095185675, -0.91661394, 0.38827646), (0.014048632, -0.9980274, 0.06118804), (-0.9065204, 0.40756547, 0.11005034), (-0.6929957, 0.7194179, -0.04685013), (-0.85781515, 0.49961972, -0.12055419), (-0.6594454, -0.59160066, -0.4638323), (-0.59974366, -0.5252451, -0.6036763), (-0.5134359, -0.702168, -0.49329883), (-0.77879447, -0.46195912, 0.42435), (-0.6048664, -0.77761734, 0.17160381), (-0.7274023, -0.61863565, 0.29694417), (-0.98674804, -0.10533072, -0.123425305), (-0.95780903, 0.28258267, -0.052428976), (-0.96611804, -0.24154912, -0.090939395), (-0.95780903, 0.28258267, -0.052428976), (-0.98674804, -0.10533072, -0.123425305), (-0.9572948, 0.27988225, -0.07247413), (-0.97281104, 0.22841159, -0.03830044), (-0.7888175, 0.6006054, -0.13053761), (-0.8501395, 0.42886472, -0.3055127), (-0.99596953, -0.034286868, -0.08288012), (-0.96352214, 0.2658698, 0.030630894), (-0.9637507, 0.20905967, 0.16576698), (-0.74939865, -0.6407484, 0.16686325), (-0.9295156, -0.31445134, 0.1926684), (-0.88560915, -0.41817006, 0.20206507), (-0.7733428, 0.39109966, -0.49898082), (-0.90947163, 0.29718208, -0.2907646), (-0.9166517, 0.29328796, -0.27153596), (-0.90947163, 0.29718208, -0.2907646), (-0.8141717, 0.48869303, -0.313534), (-0.9166517, 0.29328796, -0.27153596), (-0.8141717, 0.48869303, -0.313534), (-0.56604046, 0.77200174, -0.2891566), (-0.83249086, 0.5022283, -0.23393516), (-0.7025925, 0.69908625, -0.13282447), (-0.8734928, 0.4544141, 0.17469472), (-0.5965688, 0.7911226, 0.1350209), (-0.8607815, 0.36090496, -0.35889122), (-0.9533801, 0.14730272, -0.26337883), (-0.61204326, 0.7573711, -0.22757864), (-0.8607815, 0.36090496, -0.35889122), (-0.94697726, -0.13446452, -0.2918103), (-0.9533801, 0.14730272, -0.26337883), (0.18243186, 0.23967527, -0.95355874), (0.05108447, 0.40225464, -0.9141015), (0.12537716, 0.5362219, -0.8347135), (0.026558898, 0.6994312, -0.7142062), (0.058695275, 0.47261247, -0.87931365), (-0.062222015, 0.7140513, -0.6973227), (-0.6936356, 0.61176634, -0.3802784), (-0.85104406, 0.33972642, -0.40038738), (-0.82253456, 0.5144007, -0.24254641), (-0.82253456, 0.5144007, -0.24254641), (-0.95747125, 0.12048938, -0.26216623), (-0.9386532, 0.30061942, 0.16899173), (-0.82253456, 0.5144007, -0.24254641), (-0.9386532, 0.30061942, 0.16899173), (-0.7057637, 0.66202456, 0.25223234), (-0.6936356, 0.61176634, -0.3802784), (-0.82253456, 0.5144007, -0.24254641), (-0.5688045, 0.80533934, 0.1670028), (-0.6936356, 0.61176634, -0.3802784), (-0.5688045, 0.80533934, 0.1670028), (-0.6664247, 0.5819242, -0.46609253), (-0.98674804, -0.10533072, -0.123425305), (-0.79385674, -0.54880345, -0.26192784), (-0.8986108, -0.35312408, -0.26038826), (-0.9572948, 0.27988225, -0.07247413), (-0.98674804, -0.10533072, -0.123425305), (-0.8986108, -0.35312408, -0.26038826), (-0.7781167, 0.078086026, 0.6232472), (-0.7678991, -0.35828537, 0.53100157), (-0.77879447, -0.46195912, 0.42435), (-0.20693623, 0.76447463, 0.6105374), (0.13814108, 0.8588598, 0.4932311), (-0.063274145, 0.68634343, 0.72451985), (-0.9915138, 0.05954056, 0.115564995), (-0.8734928, 0.4544141, 0.17469472), (-0.9736986, 0.2007418, -0.10776711), (-0.60296595, 0.29914132, -0.73955834), (-0.6209948, 0.43756935, -0.65030646), (-0.66636115, 0.58046716, -0.46799642), (-0.94697726, -0.13446452, -0.2918103), (-0.8753281, -0.2974295, -0.3812299), (-0.94944113, -0.14137727, -0.28031063), (0.44767228, 0.5346178, -0.71677977), (0.4639848, 0.49263775, -0.7362243), (0.37224162, 0.51884145, -0.76957107), (0.32334125, 0.9322983, -0.16208099), (0.19816753, 0.8928737, -0.40435898), (0.06356487, 0.9693748, -0.23721737), (0.43665907, 0.5151251, -0.7375467), (0.44767228, 0.5346178, -0.71677977), (0.3598295, 0.42234465, -0.8319541), (-0.98542255, -0.14428605, 0.090133525), (-0.6905549, -0.7060824, 0.15678449), (-0.96396816, -0.20500617, -0.16952217), (-0.7025925, 0.69908625, -0.13282447), (-0.70207876, 0.5382597, -0.46622092), (-0.876151, 0.28557828, -0.38833538), (-0.3434998, 0.20149514, -0.9172827), (-0.35297173, 0.4074013, -0.84227973), (-0.2773278, 0.31339413, -0.9082255), (-0.98674804, -0.10533072, -0.123425305), (-0.9269565, -0.36643094, -0.080498934), (-0.79385674, -0.54880345, -0.26192784), (-0.79385674, -0.54880345, -0.26192784), (-0.9269565, -0.36643094, -0.080498934), (-0.9696845, -0.24435441, -0.0017626535), (-0.983754, -0.106783405, 0.14431019), (-0.9637507, 0.20905967, 0.16576698), (-0.9648999, 0.047693223, 0.25825062), (-0.99763674, -0.05126775, -0.045744807), (-0.9771185, -0.17707905, 0.117823794), (-0.9915138, 0.05954056, 0.115564995), (-0.37058988, 0.86662453, -0.33410332), (-0.8607815, 0.36090496, -0.35889122), (-0.61204326, 0.7573711, -0.22757864), (-0.5239205, 0.36621252, -0.7690226), (-0.80484945, -0.21449009, -0.5533637), (-0.8607815, 0.36090496, -0.35889122), (-0.94697726, -0.13446452, -0.2918103), (-0.80484945, -0.21449009, -0.5533637), (-0.8753281, -0.2974295, -0.3812299), (0.37224162, 0.51884145, -0.76957107), (0.3744099, 0.48020983, -0.7932312), (0.3598295, 0.42234465, -0.8319541), (-0.6151021, -0.36844856, -0.69706166), (-0.7150186, -0.268906, -0.64532006), (-0.5837123, -0.15642041, -0.79675126), (-0.30002457, -0.8907839, 0.34130514), (-0.12225547, -0.74193543, 0.6592309), (0.000949754, -0.9982518, 0.05909686), (-0.24945141, 0.89533806, -0.36897647), (-0.10280776, 0.9062118, -0.4101353), (-0.162098, 0.86294246, -0.47859636), (-0.9736986, 0.2007418, -0.10776711), (-0.876151, 0.28557828, -0.38833538), (-0.95371497, -0.009299656, -0.3005682), (-0.89814866, -0.031243127, -0.43858042), (-0.90972215, 0.2802738, -0.3063531), (-0.95097476, 0.25195938, -0.17934175), (-0.26533762, -0.9466754, -0.18276124), (-0.7643055, -0.6348301, -0.11326072), (-0.6617167, -0.74652207, -0.06954076), (-0.8803778, 0.4419459, 0.1721006), (-0.92704785, 0.36381298, 0.09067647), (-0.9587795, 0.26072076, 0.11298901), (0.095185675, -0.91661394, 0.38827646), (-0.12225547, -0.74193543, 0.6592309), (0.29285645, -0.22085378, 0.93030035), (-0.6310019, 0.6940629, -0.34657374), (-0.5599974, 0.8270717, -0.048531305), (-0.66636115, 0.58046716, -0.46799642), (-0.58459914, 0.36610252, -0.7240254), (-0.8141717, 0.48869303, -0.313534), (-0.90947163, 0.29718208, -0.2907646), (-0.8141717, 0.48869303, -0.313534), (-0.5019043, 0.5113458, -0.6975798), (-0.56604046, 0.77200174, -0.2891566), (-0.8953808, -0.049045894, -0.442592), (-0.89475894, 0.012224607, -0.44638202), (-0.8749361, 0.10047233, -0.47370037), (-0.9587795, 0.26072076, 0.11298901), (-0.92704785, 0.36381298, 0.09067647), (-0.9863728, 0.12996015, 0.100891285), (0.27765667, 0.85034305, -0.4470163), (0.31501457, 0.79353833, -0.52063674), (0.13312438, 0.85884887, -0.4946276), (-0.531796, -0.7782102, -0.33403903), (-0.55329823, -0.76914936, -0.31979728), (-0.67246896, -0.67827183, -0.29619727), (-0.9207175, 0.38214493, -0.07902244), (-0.9279822, 0.3141734, -0.20035993), (-0.97125167, 0.15677212, -0.17914452), (-0.7643055, -0.6348301, -0.11326072), (-0.93653274, -0.228499, -0.26588485), (-0.96611804, -0.24154912, -0.090939395), (-0.9842828, 0.10915529, 0.13882533), (-0.9696845, -0.24435441, -0.0017626535), (-0.9269565, -0.36643094, -0.080498934), (0.8124644, 0.33431724, 0.4776333), (0.9362669, -0.00075243076, 0.35128856), (0.8637933, 0.024953382, 0.50322795), (-0.9915867, -0.11128689, 0.06611437), (-0.9743478, -0.16398498, 0.1541278), (-0.97649986, -0.1604329, 0.14390719), (-0.98468184, -0.07080658, 0.15933585), (-0.9771185, -0.17707905, 0.117823794), (-0.98665786, -0.13022158, -0.09771668), (0.3866582, 0.49182975, 0.78012747), (0.30334, 0.5943287, 0.74482083), (0.07036235, 0.62625414, 0.7764373), (-0.38718665, 0.78851014, 0.47784746), (-0.510264, 0.768923, 0.38521177), (-0.51980644, 0.6201144, 0.58758783), (-0.19790466, 0.6978808, 0.6883285), (-0.45028743, 0.8040352, 0.3882893), (-0.19371775, 0.70356625, 0.6837163), (0.079860196, 0.7080619, -0.70162016), (-0.20828348, 0.23818831, -0.9486223), (-0.6064609, 0.21697047, -0.7649372), (-0.74934393, -0.09182422, -0.6557836), (-0.73919106, -0.041877124, -0.67219275), (-0.60925305, 0.04657931, -0.79160666), (-0.60925305, 0.04657931, -0.79160666), (-0.73919106, -0.041877124, -0.67219275), (-0.6826508, 0.16212206, -0.71253365), (0.114479125, -0.723205, -0.68107945), (0.430587, -0.6497393, -0.62644523), (0.7768317, -0.57160056, -0.26420677), (-0.081094764, 0.5405266, -0.83740944), (0.029149108, 0.5269579, -0.84939134), (-0.018422125, 0.59804493, -0.8012509), (-0.5683309, -0.7660872, -0.30018413), (-0.7643055, -0.6348301, -0.11326072), (-0.26533762, -0.9466754, -0.18276124), (-0.9269565, -0.36643094, -0.080498934), (-0.989107, -0.1390666, -0.048247807), (-0.9842828, 0.10915529, 0.13882533), (-0.68942064, 0.46358168, -0.5565889), (-0.70207876, 0.5382597, -0.46622092), (-0.50615185, 0.7918574, -0.3417193), (-0.26628992, 0.6914746, 0.67153), (0.049126975, 0.43318087, 0.8999671), (-0.38048968, 0.7864329, 0.4865706), (-0.99923784, 0.028006684, -0.027189441), (-0.9978222, 0.05849979, 0.030472683), (-0.9915867, -0.11128689, 0.06611437), (0.27325293, 0.9196915, -0.2819581), (0.27765667, 0.85034305, -0.4470163), (0.13312438, 0.85884887, -0.4946276), (-0.7150186, -0.268906, -0.64532006), (-0.82524836, -0.18554752, -0.53342044), (-0.74934393, -0.09182422, -0.6557836), (-0.6826508, 0.16212206, -0.71253365), (-0.73242754, 0.22174348, -0.6437233), (-0.57392466, 0.27946785, -0.76974547), (0.4639848, 0.49263775, -0.7362243), (0.6013884, 0.34456095, -0.7208396), (0.5075693, 0.34588322, -0.78913766), (-0.91879785, -0.39120173, -0.05264702), (-0.9115523, -0.40591183, 0.06563446), (-0.9863752, -0.14707237, -0.073714055), (-0.96611804, -0.24154912, -0.090939395), (-0.9825095, -0.081955574, -0.16720721), (-0.98674804, -0.10533072, -0.123425305), (-0.98674804, -0.10533072, -0.123425305), (-0.9825095, -0.081955574, -0.16720721), (-0.9269565, -0.36643094, -0.080498934), (-0.9115523, -0.40591183, 0.06563446), (-0.9467224, -0.17191997, 0.2723239), (-0.9961066, -0.06624365, 0.058166064), (-0.88560915, -0.41817006, 0.20206507), (-0.9552864, -0.29540315, 0.01284408), (-0.8176909, -0.5715781, 0.06841176), (-0.068017855, 0.740212, -0.6689243), (-0.1458709, 0.5580752, -0.8168683), (-0.016308533, 0.5921141, -0.8056891), (-0.78802264, -0.15717258, -0.59524536), (-0.73919106, -0.041877124, -0.67219275), (-0.74934393, -0.09182422, -0.6557836), (-0.73242754, 0.22174348, -0.6437233), (-0.6882561, 0.27971166, -0.6693766), (-0.57392466, 0.27946785, -0.76974547), (0.19128671, 0.95489544, -0.22712131), (-0.033282995, 0.92988116, -0.36635125), (0.26162243, 0.82304573, -0.5041323), (-0.9494037, -0.055369582, -0.30913848), (-0.9949563, -0.057375763, -0.082279444), (-0.97125167, 0.15677212, -0.17914452), (-0.9350665, 0.30848765, 0.17460212), (-0.87775177, 0.32134143, 0.35537502), (-0.97750837, -0.036065973, 0.20778996), (-0.5683309, -0.7660872, -0.30018413), (-0.93653274, -0.228499, -0.26588485), (-0.7643055, -0.6348301, -0.11326072), (-0.9825095, -0.081955574, -0.16720721), (-0.96611804, -0.24154912, -0.090939395), (-0.93653274, -0.228499, -0.26588485), (-0.9825095, -0.081955574, -0.16720721), (-0.989107, -0.1390666, -0.048247807), (-0.9269565, -0.36643094, -0.080498934), (-0.6310019, 0.6940629, -0.34657374), (-0.54022664, 0.8414942, 0.006545372), (-0.5599974, 0.8270717, -0.048531305), (-0.67914766, 0.51451015, -0.5234862), (-0.6209948, 0.43756935, -0.65030646), (-0.5772042, 0.21521193, -0.7877303), (-0.61686933, 0.7563009, -0.21790126), (-0.6310019, 0.6940629, -0.34657374), (-0.6209948, 0.43756935, -0.65030646), (0.20822914, -0.5669927, -0.7969691), (0.210738, -0.6023462, -0.76991475), (0.21006387, -0.05363533, -0.9762154), (-0.9454336, -0.27170563, 0.17980929), (-0.9480551, -0.3159854, 0.03667171), (-0.9925045, -0.10919387, 0.054877568), (-0.9565734, 0.11846453, 0.2663332), (-0.98549885, 0.1268055, 0.1127491), (-0.9992325, 0.009367977, -0.03803466), (0.16517043, 0.7992805, -0.5778143), (0.31501457, 0.79353833, -0.52063674), (0.16940975, 0.71426123, -0.67906636), (0.47113773, 0.16328445, -0.8668145), (0.45866528, 0.42802495, -0.7787303), (0.49125332, 0.43814486, -0.75279427), (0.19736668, -0.4973135, -0.84482294), (0.20822914, -0.5669927, -0.7969691), (0.21027443, -0.1021264, -0.97229356), (-0.7918555, 0.07912391, -0.6055611), (-0.6826508, 0.16212206, -0.71253365), (-0.73919106, -0.041877124, -0.67219275), (0.35397157, 0.67445713, -0.64792866), (0.34579414, 0.44626126, -0.8253953), (0.29109535, 0.5765429, -0.7634539), (-0.5683309, -0.7660872, -0.30018413), (-0.718267, -0.45763367, -0.52408385), (-0.93653274, -0.228499, -0.26588485), (-0.98549885, 0.1268055, 0.1127491), (-0.9565734, 0.11846453, 0.2663332), (-0.9350665, 0.30848765, 0.17460212), (-0.61686933, 0.7563009, -0.21790126), (-0.6209948, 0.43756935, -0.65030646), (-0.67914766, 0.51451015, -0.5234862), (-0.989107, -0.1390666, -0.048247807), (-0.9273663, 0.33396977, 0.16868839), (-0.9842828, 0.10915529, 0.13882533), (-0.90046465, 0.30419362, 0.3108532), (-0.87775177, 0.32134143, 0.35537502), (-0.9350665, 0.30848765, 0.17460212), (0.6901161, 0.18358733, -0.7000252), (0.6732018, 0.3908049, -0.6277507), (0.5723133, 0.28664815, -0.76830345), (0.37566808, 0.37820473, -0.8460702), (0.46731856, 0.24578078, -0.8492379), (0.49125332, 0.43814486, -0.75279427), (-0.081094764, 0.5405266, -0.83740944), (0.028824272, 0.40822512, -0.9124261), (0.029149108, 0.5269579, -0.84939134), (-0.82524836, -0.18554752, -0.53342044), (-0.78802264, -0.15717258, -0.59524536), (-0.74934393, -0.09182422, -0.6557836), (-0.73242754, 0.22174348, -0.6437233), (-0.6826508, 0.16212206, -0.71253365), (-0.7918555, 0.07912391, -0.6055611), (0.14990771, 0.73515755, -0.6611135), (0.28374514, 0.49862832, -0.8190595), (0.024488019, 0.69203335, -0.72145), (0.020526024, -0.9995826, -0.02033283), (0.034172207, -0.9991439, -0.02331928), (0.009447279, -0.9999306, -0.007029228), (0.058695275, 0.47261247, -0.87931365), (0.15446487, 0.34763104, -0.92482066), (0.15140519, 0.22772746, -0.9618818), (-0.9825095, -0.081955574, -0.16720721), (-0.97887933, 0.084881194, -0.18598504), (-0.989107, -0.1390666, -0.048247807), (-0.9565734, 0.11846453, 0.2663332), (-0.90046465, 0.30419362, 0.3108532), (-0.9350665, 0.30848765, 0.17460212), (-0.781744, -0.58333945, -0.22043467), (-0.8176909, -0.5715781, 0.06841176), (-0.9359267, -0.26410508, -0.23300192), (0.072007045, 0.88734347, -0.4554519), (0.1956363, 0.8429225, -0.50120676), (0.18811478, 0.6722223, -0.71605164), (0.17015596, 0.044459715, 0.9844137), (0.18212533, -0.013370693, 0.98318446), (0.24584846, -0.086955965, 0.96540004), (-0.081094764, 0.5405266, -0.83740944), (-0.083525784, 0.57211065, -0.8159123), (-0.16550025, 0.5419755, -0.82393706), (-0.76888865, -0.33222634, -0.5462929), (-0.78802264, -0.15717258, -0.59524536), (-0.82524836, -0.18554752, -0.53342044), (-0.78802264, -0.15717258, -0.59524536), (-0.76920867, -0.1183283, -0.62794614), (-0.73919106, -0.041877124, -0.67219275), (-0.73919106, -0.041877124, -0.67219275), (-0.76920867, -0.1183283, -0.62794614), (-0.7918555, 0.07912391, -0.6055611), (0.023388105, -0.9994483, -0.023585396), (0.020526024, -0.9995826, -0.02033283), (0.009447279, -0.9999306, -0.007029228), (-0.05660824, 0.62712705, -0.7768572), (-0.083525784, 0.57211065, -0.8159123), (-0.09934344, 0.6775954, -0.7286943), (-0.10812697, 0.7790866, -0.6175214), (-0.118845195, 0.721646, -0.6819844), (-0.09934344, 0.6775954, -0.7286943), (-0.04323444, 0.30183423, -0.9523796), (-0.11333118, 0.652004, -0.7496978), (0.038752053, 0.27722442, -0.9600234), (0.058695275, 0.47261247, -0.87931365), (0.12776764, 0.48213232, -0.86673176), (0.15446487, 0.34763104, -0.92482066), (0.0044798334, 0.8557751, -0.5173287), (-0.01678469, 0.78437483, -0.62006), (-0.002316495, 0.71685964, -0.6972137), (0.15169112, 0.5053217, -0.84949386), (0.2597133, 0.47594517, -0.8402531), (0.20963658, 0.2887644, -0.93416685), (0.008042317, 0.6045964, -0.79649144), (0.072007045, 0.88734347, -0.4554519), (-0.10280776, 0.9062118, -0.4101353), (-0.83901477, 0.5282562, 0.1303828), (-0.5688045, 0.80533934, 0.1670028), (-0.51980644, 0.6201144, 0.58758783), (-0.068017855, 0.740212, -0.6689243), (-0.18074352, 0.637146, -0.74925077), (-0.1458709, 0.5580752, -0.8168683), (-0.79149234, -0.0039183428, -0.6111664), (-0.88355577, -0.19945122, -0.42373145), (-0.65438944, -0.23871434, -0.7174885), (-0.65438944, -0.23871434, -0.7174885), (-0.88355577, -0.19945122, -0.42373145), (-0.6916753, -0.32801783, -0.6434203), (-0.5134359, -0.702168, -0.49329883), (-0.6305556, -0.69784814, -0.33971688), (-0.6594454, -0.59160066, -0.4638323), (-0.76888865, -0.33222634, -0.5462929), (-0.79639435, -0.28260437, -0.5346875), (-0.78802264, -0.15717258, -0.59524536), (-0.24783447, 0.65149343, -0.7170316), (-0.11333118, 0.652004, -0.7496978), (-0.24945141, 0.89533806, -0.36897647), (-0.016308533, 0.5921141, -0.8056891), (-0.1458709, 0.5580752, -0.8168683), (0.008991361, 0.51579136, -0.85666704), (-0.1303001, 0.72003734, -0.6815922), (-0.045859024, 0.72708166, -0.6850177), (-0.0812246, 0.6300587, -0.77228785), (-0.718267, -0.45763367, -0.52408385), (-0.19740334, -0.64745516, -0.7360935), (-0.517247, -0.039887037, -0.8549062), (-0.718267, -0.45763367, -0.52408385), (-0.79014504, -0.027286656, -0.6123122), (-0.93653274, -0.228499, -0.26588485), (-0.97887933, 0.084881194, -0.18598504), (-0.9825095, -0.081955574, -0.16720721), (-0.93653274, -0.228499, -0.26588485), (-0.76888233, -0.20671551, -0.6050526), (-0.4823344, -0.25900897, -0.83682), (-0.7797168, -0.03955091, -0.624882), (-0.9480551, -0.3159854, 0.03667171), (-0.9115523, -0.40591183, 0.06563446), (-0.91879785, -0.39120173, -0.05264702), (-0.41133305, 0.61813056, -0.66986537), (-0.5270803, 0.73401916, -0.42825484), (-0.8466037, 0.36471546, -0.38761413), (-0.6594454, -0.59160066, -0.4638323), (-0.8222364, -0.42166245, -0.3822671), (-0.76888865, -0.33222634, -0.5462929), (-0.82928324, -0.40800634, -0.3818639), (-0.79639435, -0.28260437, -0.5346875), (-0.76888865, -0.33222634, -0.5462929), (-0.79639435, -0.28260437, -0.5346875), (-0.76920867, -0.1183283, -0.62794614), (-0.78802264, -0.15717258, -0.59524536), (-0.89639854, -0.048468642, -0.44059113), (-0.7918555, 0.07912391, -0.6055611), (-0.76920867, -0.1183283, -0.62794614), (-0.7918555, 0.07912391, -0.6055611), (-0.8356123, 0.15548944, -0.52685404), (-0.73242754, 0.22174348, -0.6437233), (-0.8356123, 0.15548944, -0.52685404), (-0.6882561, 0.27971166, -0.6693766), (-0.73242754, 0.22174348, -0.6437233), (-0.76300794, 0.29622775, -0.5745156), (-0.6004371, 0.28098938, -0.748679), (-0.6882561, 0.27971166, -0.6693766), (0.8584517, 0.30511788, -0.41226652), (0.8271193, 0.29346165, -0.47932655), (0.7816238, 0.26426044, -0.565005), (0.21006387, -0.05363533, -0.9762154), (0.210738, -0.6023462, -0.76991475), (0.11391259, -0.11598364, -0.98669744), (0.008042317, 0.6045964, -0.79649144), (0.13256782, 0.8150782, -0.5639798), (0.072007045, 0.88734347, -0.4554519), (-0.718267, -0.45763367, -0.52408385), (-0.517247, -0.039887037, -0.8549062), (-0.79014504, -0.027286656, -0.6123122), (-0.97887933, 0.084881194, -0.18598504), (-0.8356315, 0.5443289, -0.07366125), (-0.9273663, 0.33396977, 0.16868839), (-0.989107, -0.1390666, -0.048247807), (-0.97887933, 0.084881194, -0.18598504), (-0.9273663, 0.33396977, 0.16868839), (-0.6903042, 0.70116806, -0.17844757), (-0.59798235, 0.801431, 0.011207629), (-0.67914766, 0.51451015, -0.5234862), (-0.6808411, 0.71377933, -0.16423881), (-0.8466037, 0.36471546, -0.38761413), (-0.5270803, 0.73401916, -0.42825484), (-0.002316495, 0.71685964, -0.6972137), (-0.036941852, 0.6243847, -0.780243), (-0.07168215, 0.71143377, -0.69908786), (-0.4898299, -0.69162935, -0.53076875), (-0.5814458, -0.7018243, -0.4115377), (-0.5134359, -0.702168, -0.49329883), (-0.5134359, -0.702168, -0.49329883), (-0.5814458, -0.7018243, -0.4115377), (-0.6305556, -0.69784814, -0.33971688), (-0.76888865, -0.33222634, -0.5462929), (-0.8222364, -0.42166245, -0.3822671), (-0.82928324, -0.40800634, -0.3818639), (-0.79639435, -0.28260437, -0.5346875), (-0.89639854, -0.048468642, -0.44059113), (-0.76920867, -0.1183283, -0.62794614), (-0.89639854, -0.048468642, -0.44059113), (-0.8356123, 0.15548944, -0.52685404), (-0.7918555, 0.07912391, -0.6055611), (-0.8088002, 0.26916793, -0.5228679), (-0.6882561, 0.27971166, -0.6693766), (-0.8356123, 0.15548944, -0.52685404), (-0.7008725, -0.1302158, -0.7013001), (-0.6004371, 0.28098938, -0.748679), (-0.76300794, 0.29622775, -0.5745156), (-0.033379868, 0.203342, -0.9785386), (0.038752053, 0.27722442, -0.9600234), (-0.056963813, 0.25963128, -0.9640263), (-0.11333118, 0.652004, -0.7496978), (-0.24783447, 0.65149343, -0.7170316), (-0.056963813, 0.25963128, -0.9640263), (0.13256782, 0.8150782, -0.5639798), (0.008042317, 0.6045964, -0.79649144), (0.1381764, 0.3608774, -0.92232037), (-0.5722468, 0.097871296, -0.8142203), (-0.79014504, -0.027286656, -0.6123122), (-0.517247, -0.039887037, -0.8549062), (-0.79014504, -0.027286656, -0.6123122), (-0.8962231, 0.16548714, -0.41158003), (-0.93653274, -0.228499, -0.26588485), (-0.93653274, -0.228499, -0.26588485), (-0.8962231, 0.16548714, -0.41158003), (-0.97887933, 0.084881194, -0.18598504), (-0.6903042, 0.70116806, -0.17844757), (-0.67914766, 0.51451015, -0.5234862), (-0.69748336, 0.38816905, -0.6023635), (-0.72782624, 0.45022333, -0.5172696), (-0.6903042, 0.70116806, -0.17844757), (-0.69748336, 0.38816905, -0.6023635), (-0.41276112, 0.84235007, -0.3465178), (-0.5270803, 0.73401916, -0.42825484), (-0.5445979, 0.68211156, -0.48799285), (-0.8466037, 0.36471546, -0.38761413), (-0.79149234, -0.0039183428, -0.6111664), (-0.6073499, 0.29867643, -0.73615116), (-0.88355577, -0.19945122, -0.42373145), (-0.5901218, -0.7327302, -0.33891392), (-0.5519659, -0.55248076, -0.6245789), (-0.46262383, -0.77043957, -0.43863684), (-0.5814458, -0.7018243, -0.4115377), (-0.4898299, -0.69162935, -0.53076875), (-0.6305556, -0.69784814, -0.33971688), (-0.68597525, -0.6691164, -0.2858695), (-0.6594454, -0.59160066, -0.4638323), (-0.6594454, -0.59160066, -0.4638323), (-0.68597525, -0.6691164, -0.2858695), (-0.8222364, -0.42166245, -0.3822671), (-0.82928324, -0.40800634, -0.3818639), (-0.8604629, -0.37459627, -0.34537098), (-0.79639435, -0.28260437, -0.5346875), (-0.79639435, -0.28260437, -0.5346875), (-0.8604629, -0.37459627, -0.34537098), (-0.89639854, -0.048468642, -0.44059113), (-0.92286676, 0.08096408, -0.37651277), (-0.8356123, 0.15548944, -0.52685404), (-0.89639854, -0.048468642, -0.44059113), (-0.76300794, 0.29622775, -0.5745156), (-0.6882561, 0.27971166, -0.6693766), (-0.8088002, 0.26916793, -0.5228679), (0.3904863, 0.8484577, -0.35726735), (0.27765667, 0.85034305, -0.4470163), (0.27325293, 0.9196915, -0.2819581), (-0.11333118, 0.652004, -0.7496978), (-0.056963813, 0.25963128, -0.9640263), (0.038752053, 0.27722442, -0.9600234), (-0.7827907, 0.16993253, -0.5986331), (-0.5722468, 0.097871296, -0.8142203), (-0.61941385, 0.15405494, -0.769801), (-0.7827907, 0.16993253, -0.5986331), (-0.79014504, -0.027286656, -0.6123122), (-0.5722468, 0.097871296, -0.8142203), (-0.8356315, 0.5443289, -0.07366125), (-0.97887933, 0.084881194, -0.18598504), (-0.8962231, 0.16548714, -0.41158003), (-0.29589933, -0.874036, -0.3853629), (-0.5519659, -0.55248076, -0.6245789), (-0.5901218, -0.7327302, -0.33891392), (0.78336495, 0.20648178, 0.5862633), (0.38884154, 0.909899, 0.14451972), (-0.06844584, 0.94972205, 0.30552137), (0.80688834, 0.4972827, -0.31881186), (0.79446137, 0.49406892, -0.35316715), (0.73073494, 0.51337385, -0.44997093), (-0.41892388, 0.85465974, -0.30669102), (-0.8246584, 0.28072074, -0.49105445), (-0.28299472, 0.75980246, -0.58533275), (0.007696416, -0.9953648, 0.09586249), (0.023388105, -0.9994483, -0.023585396), (0.009447279, -0.9999306, -0.007029228), (-0.8604629, -0.37459627, -0.34537098), (-0.9249707, -0.0568904, -0.37575614), (-0.89639854, -0.048468642, -0.44059113), (-0.947807, 0.012181557, -0.31861192), (-0.92286676, 0.08096408, -0.37651277), (-0.89639854, -0.048468642, -0.44059113), (-0.8356123, 0.15548944, -0.52685404), (-0.8967408, 0.22459923, -0.3813282), (-0.8088002, 0.26916793, -0.5228679), (-0.8967408, 0.22459923, -0.3813282), (-0.8550972, 0.2941393, -0.42695528), (-0.8088002, 0.26916793, -0.5228679), (-0.8550972, 0.2941393, -0.42695528), (-0.76300794, 0.29622775, -0.5745156), (-0.8088002, 0.26916793, -0.5228679), (-0.24332595, 0.7578463, -0.6053606), (-0.07168215, 0.71143377, -0.69908786), (-0.118845195, 0.721646, -0.6819844), (0.4663243, -0.87188613, 0.14951973), (0.27994588, -0.95662403, 0.080628105), (0.08504002, -0.9952657, 0.04705802), (-0.77704954, 0.2519485, -0.5768152), (-0.7827907, 0.16993253, -0.5986331), (-0.61941385, 0.15405494, -0.769801), (-0.7827907, 0.16993253, -0.5986331), (-0.8962231, 0.16548714, -0.41158003), (-0.79014504, -0.027286656, -0.6123122), (-0.72782624, 0.45022333, -0.5172696), (-0.69748336, 0.38816905, -0.6023635), (-0.61620134, 0.17304784, -0.76834255), (-0.73440963, 0.5367182, -0.4154229), (-0.5445979, 0.68211156, -0.48799285), (-0.8095361, 0.31446472, -0.4957451), (-0.73440963, 0.5367182, -0.4154229), (-0.5774891, 0.7744335, -0.25837776), (-0.5445979, 0.68211156, -0.48799285), (-0.5774891, 0.7744335, -0.25837776), (-0.41276112, 0.84235007, -0.3465178), (-0.5445979, 0.68211156, -0.48799285), (-0.5270803, 0.73401916, -0.42825484), (-0.41276112, 0.84235007, -0.3465178), (-0.6808411, 0.71377933, -0.16423881), (-0.8466037, 0.36471546, -0.38761413), (-0.88355577, -0.19945122, -0.42373145), (-0.79149234, -0.0039183428, -0.6111664), (-0.8222364, -0.42166245, -0.3822671), (-0.8704776, -0.37641808, -0.31714052), (-0.82928324, -0.40800634, -0.3818639), (-0.92286676, 0.08096408, -0.37651277), (-0.8967408, 0.22459923, -0.3813282), (-0.8356123, 0.15548944, -0.52685404), (-0.73298496, -0.22978713, -0.6402585), (-0.85538065, 0.029034914, -0.5171857), (-0.68396926, -0.01969998, -0.7292447), (-0.85538065, 0.029034914, -0.5171857), (-0.7617474, 0.19508657, -0.6178042), (-0.68396926, -0.01969998, -0.7292447), (0.4781159, 0.22117768, -0.8499916), (0.50816506, 0.27141392, -0.8173755), (0.5282478, 0.10837448, -0.84214556), (-0.6454864, 0.2772698, -0.7116661), (-0.61941385, 0.15405494, -0.769801), (-0.49457952, 0.1939813, -0.8472086), (-0.7603008, 0.3814994, -0.5257383), (-0.8962231, 0.16548714, -0.41158003), (-0.7827907, 0.16993253, -0.5986331), (-0.69545215, 0.46235192, -0.55007005), (-0.72782624, 0.45022333, -0.5172696), (-0.61620134, 0.17304784, -0.76834255), (-0.8501395, 0.42886472, -0.3055127), (-0.73440963, 0.5367182, -0.4154229), (-0.8095361, 0.31446472, -0.4957451), (-0.9968846, 0.075708196, -0.022120882), (-0.88355577, -0.19945122, -0.42373145), (-0.8466037, 0.36471546, -0.38761413), (-0.68597525, -0.6691164, -0.2858695), (-0.81451195, -0.49344668, -0.3050911), (-0.8222364, -0.42166245, -0.3822671), (-0.8222364, -0.42166245, -0.3822671), (-0.81451195, -0.49344668, -0.3050911), (-0.8704776, -0.37641808, -0.31714052), (-0.82928324, -0.40800634, -0.3818639), (-0.8704776, -0.37641808, -0.31714052), (-0.8604629, -0.37459627, -0.34537098), (-0.9249707, -0.0568904, -0.37575614), (-0.947807, 0.012181557, -0.31861192), (-0.89639854, -0.048468642, -0.44059113), (-0.7008725, -0.1302158, -0.7013001), (-0.66468817, -0.4325749, -0.609154), (-0.5387095, -0.35279298, -0.7650681), (-0.73298496, -0.22978713, -0.6402585), (-0.5387095, -0.35279298, -0.7650681), (-0.66468817, -0.4325749, -0.609154), (-0.73298496, -0.22978713, -0.6402585), (-0.8953808, -0.049045894, -0.442592), (-0.85538065, 0.029034914, -0.5171857), (-0.78920925, 0.29126886, -0.54065806), (-0.6454864, 0.2772698, -0.7116661), (-0.7964196, 0.20476519, -0.5690227), (0.56750274, 0.4867326, -0.6641024), (0.6013884, 0.34456095, -0.7208396), (0.4639848, 0.49263775, -0.7362243), (-0.8108123, 0.1267427, -0.57141906), (-0.7603008, 0.3814994, -0.5257383), (-0.7827907, 0.16993253, -0.5986331), (-0.7603008, 0.3814994, -0.5257383), (-0.8356315, 0.5443289, -0.07366125), (-0.8962231, 0.16548714, -0.41158003), (-0.75187176, 0.619942, -0.22441213), (-0.72782624, 0.45022333, -0.5172696), (-0.69545215, 0.46235192, -0.55007005), (-0.75187176, 0.619942, -0.22441213), (-0.6903042, 0.70116806, -0.17844757), (-0.72782624, 0.45022333, -0.5172696), (-0.75187176, 0.619942, -0.22441213), (-0.61154205, 0.7756096, 0.15635297), (-0.6903042, 0.70116806, -0.17844757), (-0.7888175, 0.6006054, -0.13053761), (-0.73440963, 0.5367182, -0.4154229), (-0.8501395, 0.42886472, -0.3055127), (-0.9978222, 0.05849979, 0.030472683), (-0.92930555, 0.25243875, 0.26956633), (-0.9632271, 0.14657582, 0.22518665), (-0.64699185, 0.69672793, 0.30979314), (-0.8356315, 0.5443289, -0.07366125), (-0.32523423, 0.94020087, 0.10121758), (-0.7888175, 0.6006054, -0.13053761), (-0.5774891, 0.7744335, -0.25837776), (-0.73440963, 0.5367182, -0.4154229), (-0.9968846, 0.075708196, -0.022120882), (-0.8433688, -0.53727967, -0.007722598), (-0.88355577, -0.19945122, -0.42373145), (-0.88355577, -0.19945122, -0.42373145), (-0.8433688, -0.53727967, -0.007722598), (-0.5901218, -0.7327302, -0.33891392), (-0.6854155, -0.6979322, -0.20759624), (-0.70957524, -0.66149926, -0.24273777), (-0.68597525, -0.6691164, -0.2858695), (-0.6305556, -0.69784814, -0.33971688), (-0.6854155, -0.6979322, -0.20759624), (-0.68597525, -0.6691164, -0.2858695), (-0.68597525, -0.6691164, -0.2858695), (-0.70957524, -0.66149926, -0.24273777), (-0.81451195, -0.49344668, -0.3050911), (-0.81451195, -0.49344668, -0.3050911), (-0.8632082, -0.45999706, -0.20802511), (-0.8704776, -0.37641808, -0.31714052), (-0.94723433, 0.0141571285, -0.3202292), (-0.947807, 0.012181557, -0.31861192), (-0.9249707, -0.0568904, -0.37575614), (-0.947807, 0.012181557, -0.31861192), (-0.9420124, -0.04916158, -0.33195755), (-0.92286676, 0.08096408, -0.37651277), (-0.91420937, 0.21459235, -0.34376058), (-0.8967408, 0.22459923, -0.3813282), (-0.92286676, 0.08096408, -0.37651277), (-0.8550972, 0.2941393, -0.42695528), (-0.85855085, -0.089423046, -0.50487024), (-0.76300794, 0.29622775, -0.5745156), (-0.85855085, -0.089423046, -0.50487024), (-0.7008725, -0.1302158, -0.7013001), (-0.76300794, 0.29622775, -0.5745156), (-0.8749361, 0.10047233, -0.47370037), (-0.7617474, 0.19508657, -0.6178042), (-0.85538065, 0.029034914, -0.5171857), (-0.8749361, 0.10047233, -0.47370037), (-0.7964196, 0.20476519, -0.5690227), (-0.7617474, 0.19508657, -0.6178042), (-0.78920925, 0.29126886, -0.54065806), (-0.75076604, 0.38226932, -0.5387212), (-0.6454864, 0.2772698, -0.7116661), (-0.75076604, 0.38226932, -0.5387212), (-0.77704954, 0.2519485, -0.5768152), (-0.6454864, 0.2772698, -0.7116661), (-0.77704954, 0.2519485, -0.5768152), (-0.8108123, 0.1267427, -0.57141906), (-0.7827907, 0.16993253, -0.5986331), (-0.47410974, 0.8391813, -0.26644832), (-0.8356315, 0.5443289, -0.07366125), (-0.7603008, 0.3814994, -0.5257383), (-0.95828944, 0.28264505, 0.04234376), (-0.8466037, 0.36471546, -0.38761413), (-0.6808411, 0.71377933, -0.16423881), (-0.95828944, 0.28264505, 0.04234376), (-0.9968846, 0.075708196, -0.022120882), (-0.8466037, 0.36471546, -0.38761413), (-0.947807, 0.012181557, -0.31861192), (-0.94723433, 0.0141571285, -0.3202292), (-0.9420124, -0.04916158, -0.33195755), (-0.85855085, -0.089423046, -0.50487024), (-0.66468817, -0.4325749, -0.609154), (-0.7008725, -0.1302158, -0.7013001), (-0.8108123, 0.1267427, -0.57141906), (-0.68942064, 0.46358168, -0.5565889), (-0.7603008, 0.3814994, -0.5257383), (-0.68942064, 0.46358168, -0.5565889), (-0.47410974, 0.8391813, -0.26644832), (-0.7603008, 0.3814994, -0.5257383), (0.4781159, 0.22117768, -0.8499916), (0.5511319, 0.09759865, -0.82869065), (0.46731856, 0.24578078, -0.8492379), (-0.01921755, -0.39628565, -0.91792613), (-0.52218896, -0.42145768, -0.7414122), (-0.4185895, -0.42861646, -0.80066895), (-0.61686933, 0.7563009, -0.21790126), (-0.54022664, 0.8414942, 0.006545372), (-0.6310019, 0.6940629, -0.34657374), (-0.50102854, 0.86482495, -0.03237622), (-0.5774891, 0.7744335, -0.25837776), (-0.7888175, 0.6006054, -0.13053761), (-0.50102854, 0.86482495, -0.03237622), (-0.41276112, 0.84235007, -0.3465178), (-0.5774891, 0.7744335, -0.25837776), (-0.50102854, 0.86482495, -0.03237622), (-0.6808411, 0.71377933, -0.16423881), (-0.41276112, 0.84235007, -0.3465178), (-0.5239205, 0.36621252, -0.7690226), (-0.18237467, 0.6480371, -0.73945075), (-0.03970086, 0.09020669, -0.99513143), (-0.70957524, -0.66149926, -0.24273777), (-0.8632082, -0.45999706, -0.20802511), (-0.81451195, -0.49344668, -0.3050911), (-0.8604629, -0.37459627, -0.34537098), (-0.956032, -0.1533356, -0.24998195), (-0.9249707, -0.0568904, -0.37575614), (-0.956032, -0.1533356, -0.24998195), (-0.94723433, 0.0141571285, -0.3202292), (-0.9249707, -0.0568904, -0.37575614), (-0.9420124, -0.04916158, -0.33195755), (-0.9460484, 0.07418577, -0.31541842), (-0.92286676, 0.08096408, -0.37651277), (-0.9460484, 0.07418577, -0.31541842), (-0.91420937, 0.21459235, -0.34376058), (-0.92286676, 0.08096408, -0.37651277), (-0.9213237, 0.2280763, -0.3148711), (-0.8550972, 0.2941393, -0.42695528), (-0.8967408, 0.22459923, -0.3813282), (-0.8953808, -0.049045894, -0.442592), (-0.8749361, 0.10047233, -0.47370037), (-0.85538065, 0.029034914, -0.5171857), (-0.8585084, 0.36451405, -0.3606837), (-0.75076604, 0.38226932, -0.5387212), (-0.78920925, 0.29126886, -0.54065806), (-0.42388347, -0.36057454, 0.8308482), (-0.41622862, -0.25352228, 0.8732011), (-0.6392754, -0.20157793, 0.74208724), (-0.9637507, 0.20905967, 0.16576698), (-0.92704785, 0.36381298, 0.09067647), (-0.8803778, 0.4419459, 0.1721006), (-0.685311, 0.7282284, 0.005678225), (-0.61154205, 0.7756096, 0.15635297), (-0.75187176, 0.619942, -0.22441213), (-0.96371, 0.2455488, 0.10473212), (-0.92930555, 0.25243875, 0.26956633), (-0.9978222, 0.05849979, 0.030472683), (-0.7258752, 0.5977276, 0.3403336), (-0.6808411, 0.71377933, -0.16423881), (-0.50102854, 0.86482495, -0.03237622), (-0.6808411, 0.71377933, -0.16423881), (-0.7258752, 0.5977276, 0.3403336), (-0.95828944, 0.28264505, 0.04234376), (-0.92447, 0.100629054, 0.367735), (-0.8433688, -0.53727967, -0.007722598), (-0.9968846, 0.075708196, -0.022120882), (0.0385595, -0.28710848, -0.9571217), (-0.4185895, -0.42861646, -0.80066895), (-0.28388658, -0.23799437, -0.92885256), (0.0385595, -0.28710848, -0.9571217), (-0.28388658, -0.23799437, -0.92885256), (0.012923298, -0.14554134, -0.98926777), (0.012923298, -0.14554134, -0.98926777), (-0.28388658, -0.23799437, -0.92885256), (-0.03970086, 0.09020669, -0.99513143), (-0.6854155, -0.6979322, -0.20759624), (-0.6305556, -0.69784814, -0.33971688), (-0.6827181, -0.6939659, -0.22870846), (-0.8704776, -0.37641808, -0.31714052), (-0.9146135, -0.3669641, -0.16976309), (-0.8604629, -0.37459627, -0.34537098), (-0.8604629, -0.37459627, -0.34537098), (-0.9146135, -0.3669641, -0.16976309), (-0.956032, -0.1533356, -0.24998195), (-0.85855085, -0.089423046, -0.50487024), (-0.7381241, -0.5247193, -0.42407846), (-0.66468817, -0.4325749, -0.609154), (-0.66468817, -0.4325749, -0.609154), (-0.8241346, -0.3330392, -0.45813447), (-0.73298496, -0.22978713, -0.6402585), (-0.8241346, -0.3330392, -0.45813447), (-0.8953808, -0.049045894, -0.442592), (-0.73298496, -0.22978713, -0.6402585), (0.3108681, 0.6961003, -0.6471516), (0.45866528, 0.42802495, -0.7787303), (0.32035834, 0.3855358, -0.8652934), (0.45866528, 0.42802495, -0.7787303), (0.4020785, 0.14382389, -0.9042386), (0.32035834, 0.3855358, -0.8652934), (0.44767228, 0.5346178, -0.71677977), (0.5592899, 0.5717881, -0.600211), (0.4639848, 0.49263775, -0.7362243), (0.6522554, -0.18406336, -0.73531187), (0.6896235, -0.1462627, -0.7092437), (0.64597267, -0.12957382, -0.75228304), (0.408314, 0.30564097, -0.86015314), (0.46731856, 0.24578078, -0.8492379), (0.37566808, 0.37820473, -0.8460702), (-0.21260926, 0.8038561, -0.5555293), (-0.025991922, 0.84249765, -0.5380726), (-0.07168215, 0.71143377, -0.69908786), (0.6074403, 0.5816071, -0.5410632), (0.1556248, 0.78612894, -0.598149), (0.6664627, 0.73642385, 0.116221525), (-0.018631304, 0.80536604, -0.59248483), (-0.10812697, 0.7790866, -0.6175214), (-0.050011877, 0.7380568, -0.6728827), (-0.081094764, 0.5405266, -0.83740944), (-0.16550025, 0.5419755, -0.82393706), (-0.15126656, 0.40943748, -0.8997107), (0.54656434, -0.80144656, -0.24279799), (0.36375645, -0.89763147, -0.24887547), (0.7175917, -0.6460656, -0.26011795), (-0.002316495, 0.71685964, -0.6972137), (-0.1303001, 0.72003734, -0.6815922), (-0.14442262, 0.6212478, -0.7701904), (0.072007045, 0.88734347, -0.4554519), (0.13256782, 0.8150782, -0.5639798), (0.1956363, 0.8429225, -0.50120676), (-0.5183715, 0.74702173, -0.41623268), (-0.24945141, 0.89533806, -0.36897647), (-0.39085448, 0.76808643, -0.5072237), (0.67655736, 0.6346417, -0.37349725), (0.5276262, 0.6106719, -0.5905003), (0.525147, 0.70664555, -0.4742074), (0.5276262, 0.6106719, -0.5905003), (0.46776986, 0.64959544, -0.59934723), (0.525147, 0.70664555, -0.4742074), (0.39555016, -0.08151908, -0.9148195), (-0.35552448, -0.07765679, -0.93143535), (0.2047279, 0.22788744, -0.9519211), (0.9294046, 0.26653555, -0.25527623), (0.39555016, -0.08151908, -0.9148195), (0.2047279, 0.22788744, -0.9519211), (-0.30698523, 0.912352, -0.27087653), (-0.41892388, 0.85465974, -0.30669102), (-0.56604046, 0.77200174, -0.2891566), (-0.11333118, 0.652004, -0.7496978), (0.008042317, 0.6045964, -0.79649144), (-0.10280776, 0.9062118, -0.4101353), (0.26928166, 0.3002263, -0.91506916), (0.408314, 0.30564097, -0.86015314), (0.37566808, 0.37820473, -0.8460702), (0.055503555, 0.4034958, -0.91329646), (0.617948, 0.03965283, -0.7852185), (0.6713147, 0.059606586, -0.73877174), (0.38884154, 0.909899, 0.14451972), (0.8064504, 0.36136454, 0.46803123), (0.08772562, 0.92416996, -0.37177163), (0.9772121, 0.14118071, 0.15850712), (0.8700867, -0.17603566, -0.4603918), (0.9294046, 0.26653555, -0.25527623), (-0.26533762, -0.9466754, -0.18276124), (0.19180067, -0.9516986, -0.23975466), (0.45199344, -0.8476778, -0.27774844), (0.525147, 0.70664555, -0.4742074), (0.46776986, 0.64959544, -0.59934723), (0.40869328, 0.75290745, -0.51584905), (0.49125332, 0.43814486, -0.75279427), (0.45866528, 0.42802495, -0.7787303), (0.4408085, 0.61214834, -0.65647733), (0.50816506, 0.27141392, -0.8173755), (0.4781159, 0.22117768, -0.8499916), (0.408314, 0.30564097, -0.86015314), (-0.092187375, 0.38006347, -0.9203549), (0.011084121, 0.38924456, -0.9210678), (0.008991361, 0.51579136, -0.85666704), (0.9250353, -0.13516796, -0.35502043), (0.9298531, 0.065071344, -0.3621309), (0.7748288, 0.1384044, -0.61683416), (0.02013158, -0.96043855, 0.27776363), (-0.15062818, -0.7382632, 0.65747905), (0.10620119, -0.7190725, 0.68677205), (0.73816437, 0.29486796, -0.606767), (0.6732018, 0.3908049, -0.6277507), (0.8271193, 0.29346165, -0.47932655), (0.7748288, 0.1384044, -0.61683416), (0.6713147, 0.059606586, -0.73877174), (0.9250353, -0.13516796, -0.35502043), (0.6314147, 0.4272624, -0.64711857), (0.73816437, 0.29486796, -0.606767), (0.6345588, 0.16236748, -0.7556268), (0.6732018, 0.3908049, -0.6277507), (0.73816437, 0.29486796, -0.606767), (0.6314147, 0.4272624, -0.64711857), (-0.22366236, -0.9744662, -0.01976656), (-0.531796, -0.7782102, -0.33403903), (-0.22378458, -0.96625596, -0.12755404), (0.6201782, -0.030278608, -0.7838764), (0.6801373, -0.060265444, -0.7306034), (0.6203783, -0.0032598206, -0.78429604), (0.3744099, 0.48020983, -0.7932312), (0.2713146, 0.43590143, -0.85812485), (0.3598295, 0.42234465, -0.8319541), (0.18595472, 0.67574537, -0.71329457), (0.3744099, 0.48020983, -0.7932312), (0.18954842, 0.57325786, -0.79714924), (-0.110312045, 0.87773156, -0.46628153), (-0.018631304, 0.80536604, -0.59248483), (-0.050011877, 0.7380568, -0.6728827), (-0.08430674, 0.9387543, -0.3341147), (-0.025991922, 0.84249765, -0.5380726), (-0.17897557, 0.93098456, -0.31817535), (0.40869328, 0.75290745, -0.51584905), (0.35397157, 0.67445713, -0.64792866), (0.31501457, 0.79353833, -0.52063674), (0.49125332, 0.43814486, -0.75279427), (0.46731856, 0.24578078, -0.8492379), (0.47113773, 0.16328445, -0.8668145), (0.4639848, 0.49263775, -0.7362243), (0.5075693, 0.34588322, -0.78913766), (0.3744099, 0.48020983, -0.7932312), (0.46776986, 0.64959544, -0.59934723), (0.35397157, 0.67445713, -0.64792866), (0.40869328, 0.75290745, -0.51584905), (0.67655736, 0.6346417, -0.37349725), (0.5592899, 0.5717881, -0.600211), (0.5276262, 0.6106719, -0.5905003), (0.5393348, 0.34356913, -0.7688162), (0.50816506, 0.27141392, -0.8173755), (0.408314, 0.30564097, -0.86015314), (0.3744099, 0.48020983, -0.7932312), (0.43455523, 0.31527552, -0.8436606), (0.21873905, 0.33852237, -0.91518074), (0.32244653, 0.31922922, -0.8911347), (0.3598295, 0.42234465, -0.8319541), (0.2713146, 0.43590143, -0.85812485), (0.1956363, 0.8429225, -0.50120676), (0.3108681, 0.6961003, -0.6471516), (0.18811478, 0.6722223, -0.71605164), (0.37566808, 0.37820473, -0.8460702), (0.49125332, 0.43814486, -0.75279427), (0.286093, 0.52348936, -0.8025645), (0.26162243, 0.82304573, -0.5041323), (0.31240472, 0.6546717, -0.6883373), (0.35641447, 0.6908685, -0.6290225), (0.7748288, 0.1384044, -0.61683416), (0.12859565, 0.5401502, -0.8316856), (0.6713147, 0.059606586, -0.73877174), (0.12859565, 0.5401502, -0.8316856), (0.055503555, 0.4034958, -0.91329646), (0.6713147, 0.059606586, -0.73877174), (-0.42210728, 0.0786697, -0.903126), (0.1556248, 0.78612894, -0.598149), (0.6074403, 0.5816071, -0.5410632), (0.76785123, 0.26919043, -0.58132696), (0.6901161, 0.18358733, -0.7000252), (0.6013884, 0.34456095, -0.7208396), (-0.28299472, 0.75980246, -0.58533275), (-0.47269213, 0.7379392, -0.48167187), (-0.41892388, 0.85465974, -0.30669102), (-0.38761067, 0.912261, 0.13243043), (-0.39848554, 0.6507947, 0.64627826), (-0.78519917, 0.42751658, 0.4479865), (-0.47269213, 0.7379392, -0.48167187), (-0.68113655, 0.48901352, -0.54490244), (-0.70865, 0.5702388, -0.41550317), (-0.116680495, -0.99159163, 0.0559605), (0.022487015, -0.99720454, 0.07125508), (-0.014720315, -0.9977732, 0.0650545), (0.35397157, 0.67445713, -0.64792866), (0.46776986, 0.64959544, -0.59934723), (0.43665907, 0.5151251, -0.7375467), (0.21873905, 0.33852237, -0.91518074), (0.43455523, 0.31527552, -0.8436606), (0.26928166, 0.3002263, -0.91506916), (0.6013884, 0.34456095, -0.7208396), (0.6901161, 0.18358733, -0.7000252), (0.60190797, 0.20999849, -0.7704592), (-0.57201463, -0.07364189, -0.81693095), (-0.45183706, 0.15477824, -0.8785711), (-0.6073499, 0.29867643, -0.73615116), (-0.6907138, -0.25312364, 0.6773795), (-0.37500748, -0.15992728, 0.9131225), (-0.80026984, -0.14277494, 0.5823946), (0.7997539, 0.41937962, -0.4295515), (0.67063475, 0.43720013, -0.5992538), (0.73073494, 0.51337385, -0.44997093), (0.43455523, 0.31527552, -0.8436606), (0.5393348, 0.34356913, -0.7688162), (0.408314, 0.30564097, -0.86015314), (0.70229757, -0.15326084, -0.69519), (0.543596, -0.03596109, -0.83857626), (0.7122464, -0.13180391, -0.68944377), (-0.5019043, 0.5113458, -0.6975798), (-0.16416463, 0.124074504, -0.9785987), (-0.18237467, 0.6480371, -0.73945075), (0.73073494, 0.51337385, -0.44997093), (0.5592899, 0.5717881, -0.600211), (0.67655736, 0.6346417, -0.37349725), (-0.068017855, 0.740212, -0.6689243), (0.057944402, 0.7179774, -0.6936505), (-0.18074352, 0.637146, -0.74925077), (-0.10280776, 0.9062118, -0.4101353), (-0.010087955, 0.84672755, -0.531931), (-0.162098, 0.86294246, -0.47859636), (0.17509228, 0.4221398, -0.8894609), (0.040301405, 0.5460094, -0.83680904), (0.16279149, 0.2844107, -0.9447802), (0.286093, 0.52348936, -0.8025645), (0.49125332, 0.43814486, -0.75279427), (0.4408085, 0.61214834, -0.65647733), (0.5295331, 0.42740732, -0.7327467), (0.12859565, 0.5401502, -0.8316856), (0.7748288, 0.1384044, -0.61683416), (-0.0015518905, 0.91320086, -0.40750656), (0.0044798334, 0.8557751, -0.5173287), (-0.025991922, 0.84249765, -0.5380726), (0.12859565, 0.5401502, -0.8316856), (-0.0058580027, 0.4264949, -0.9044709), (0.055503555, 0.4034958, -0.91329646), (0.5592899, 0.5717881, -0.600211), (0.56750274, 0.4867326, -0.6641024), (0.4639848, 0.49263775, -0.7362243), (0.1956363, 0.8429225, -0.50120676), (0.18872376, 0.8095047, -0.5559546), (0.3108681, 0.6961003, -0.6471516), (0.08504002, -0.9952657, 0.04705802), (0.27994588, -0.95662403, 0.080628105), (-0.3181498, -0.9068677, -0.27635422), (0.5592899, 0.5717881, -0.600211), (0.44767228, 0.5346178, -0.71677977), (0.5276262, 0.6106719, -0.5905003), (-0.15478157, 0.8718699, -0.46463478), (-0.10812697, 0.7790866, -0.6175214), (-0.018631304, 0.80536604, -0.59248483), (0.008991361, 0.51579136, -0.85666704), (0.011084121, 0.38924456, -0.9210678), (-0.083525784, 0.57211065, -0.8159123), (0.7870885, -0.54598624, 0.28703767), (0.61079043, -0.6132706, 0.5008335), (0.6361548, -0.68773913, 0.34974554), (-0.030848743, 0.96463877, -0.26176423), (0.07123869, 0.94643617, -0.31493425), (-0.0015518905, 0.91320086, -0.40750656), (-0.11333118, 0.652004, -0.7496978), (-0.10280776, 0.9062118, -0.4101353), (-0.24945141, 0.89533806, -0.36897647), (0.5509987, 0.45174804, -0.7016581), (0.8029297, 0.13806711, -0.5798633), (0.6350449, 0.19746819, -0.74680936), (0.43665907, 0.5151251, -0.7375467), (0.34579414, 0.44626126, -0.8253953), (0.35397157, 0.67445713, -0.64792866), (0.3744099, 0.48020983, -0.7932312), (0.5075693, 0.34588322, -0.78913766), (0.5723133, 0.28664815, -0.76830345), (0.37224162, 0.51884145, -0.76957107), (0.4639848, 0.49263775, -0.7362243), (0.3744099, 0.48020983, -0.7932312), (0.9298531, 0.065071344, -0.3621309), (0.5295331, 0.42740732, -0.7327467), (0.7748288, 0.1384044, -0.61683416), (0.4524603, 0.78021014, -0.43191645), (0.31501457, 0.79353833, -0.52063674), (0.3904863, 0.8484577, -0.35726735), (0.045180514, 0.12160821, -0.9915494), (0.21006387, -0.05363533, -0.9762154), (0.11391259, -0.11598364, -0.98669744), (0.7554652, -0.25161803, -0.60494685), (0.59347165, 0.046450734, -0.8035134), (0.80521214, -0.07608237, -0.5880859), (0.10966958, 0.9851662, -0.13198537), (0.014806919, 0.9274452, -0.3736656), (0.22105704, 0.9543122, -0.20105194), (0.014806919, 0.9274452, -0.3736656), (0.6442778, 0.76190704, -0.06636116), (0.22105704, 0.9543122, -0.20105194), (0.040301405, 0.5460094, -0.83680904), (0.17509228, 0.4221398, -0.8894609), (0.057944402, 0.7179774, -0.6936505), (0.024488019, 0.69203335, -0.72145), (0.12859565, 0.5401502, -0.8316856), (0.5295331, 0.42740732, -0.7327467), (-0.118845195, 0.721646, -0.6819844), (-0.05660824, 0.62712705, -0.7768572), (-0.09934344, 0.6775954, -0.7286943), (-0.025991922, 0.84249765, -0.5380726), (-0.002316495, 0.71685964, -0.6972137), (-0.07168215, 0.71143377, -0.69908786), (0.48313183, 0.70233595, -0.5227884), (0.8332964, 0.4042927, -0.37704715), (0.5509987, 0.45174804, -0.7016581), (0.20080341, 0.9125142, 0.35636473), (0.35264283, 0.9119024, 0.20994528), (-0.35504547, 0.88452846, -0.30257598), (-0.685311, 0.7282284, 0.005678225), (-0.75187176, 0.619942, -0.22441213), (-0.69545215, 0.46235192, -0.55007005), (0.46976778, 0.6359933, -0.61223423), (0.6442778, 0.76190704, -0.06636116), (0.014806919, 0.9274452, -0.3736656), (-0.24166635, 0.6070067, -0.7570602), (0.46976778, 0.6359933, -0.61223423), (0.014806919, 0.9274452, -0.3736656), (0.46976778, 0.6359933, -0.61223423), (0.8960697, 0.31373283, -0.31405523), (0.6442778, 0.76190704, -0.06636116), (0.4408085, 0.61214834, -0.65647733), (0.45866528, 0.42802495, -0.7787303), (0.3108681, 0.6961003, -0.6471516), (0.35397157, 0.67445713, -0.64792866), (0.16940975, 0.71426123, -0.67906636), (0.31501457, 0.79353833, -0.52063674), (0.35397157, 0.67445713, -0.64792866), (0.29109535, 0.5765429, -0.7634539), (0.16940975, 0.71426123, -0.67906636), (0.08504002, -0.9952657, 0.04705802), (-0.3181498, -0.9068677, -0.27635422), (-0.4417603, -0.8870125, 0.13437492), (-0.0012548297, 0.3662348, -0.9305216), (-0.186059, 0.34451467, -0.92015857), (-0.13814647, 0.616536, -0.7751121), (-0.23781012, 0.25532416, -0.93715304), (-0.31921285, 0.27075258, -0.9081829), (-0.3434998, 0.20149514, -0.9172827), (-0.083525784, 0.57211065, -0.8159123), (-0.010320473, 0.40468994, -0.9143957), (-0.16550025, 0.5419755, -0.82393706), (0.08504002, -0.9952657, 0.04705802), (-0.4417603, -0.8870125, 0.13437492), (0.003719424, -0.99974513, 0.022267066), (-0.14442262, 0.6212478, -0.7701904), (0.040301405, 0.5460094, -0.83680904), (-0.036941852, 0.6243847, -0.780243), (-0.7099642, -0.5525628, -0.43660668), (-0.962484, 0.012088223, -0.2710689), (-0.73144907, -0.44305888, -0.51834464), (0.014806919, 0.9274452, -0.3736656), (-0.52446204, 0.81458443, -0.2477736), (-0.24166635, 0.6070067, -0.7570602), (-0.24166635, 0.6070067, -0.7570602), (0.2746507, 0.31602055, -0.9081288), (0.46976778, 0.6359933, -0.61223423), (0.46976778, 0.6359933, -0.61223423), (0.2746507, 0.31602055, -0.9081288), (0.8960697, 0.31373283, -0.31405523), (0.3108681, 0.6961003, -0.6471516), (0.32035834, 0.3855358, -0.8652934), (0.18811478, 0.6722223, -0.71605164), (0.12776764, 0.48213232, -0.86673176), (0.058695275, 0.47261247, -0.87931365), (0.026558898, 0.6994312, -0.7142062), (-0.52446204, 0.81458443, -0.2477736), (-0.69545215, 0.46235192, -0.55007005), (-0.24166635, 0.6070067, -0.7570602), (-0.69545215, 0.46235192, -0.55007005), (-0.39447707, 0.26462227, -0.87997895), (-0.24166635, 0.6070067, -0.7570602), (-0.39447707, 0.26462227, -0.87997895), (0.2746507, 0.31602055, -0.9081288), (-0.24166635, 0.6070067, -0.7570602), (0.2746507, 0.31602055, -0.9081288), (0.60114473, 0.31162354, -0.7358775), (0.8960697, 0.31373283, -0.31405523), (-0.186059, 0.34451467, -0.92015857), (0.123662375, 0.14202784, -0.9821078), (0.045180514, 0.12160821, -0.9915494), (0.2597133, 0.47594517, -0.8402531), (0.34579414, 0.44626126, -0.8253953), (0.32244653, 0.31922922, -0.8911347), (-0.56604046, 0.77200174, -0.2891566), (-0.41892388, 0.85465974, -0.30669102), (-0.47269213, 0.7379392, -0.48167187), (-0.13814647, 0.616536, -0.7751121), (-0.186059, 0.34451467, -0.92015857), (-0.3202161, 0.6611132, -0.6785212), (-0.61620134, 0.17304784, -0.76834255), (-0.39447707, 0.26462227, -0.87997895), (-0.69545215, 0.46235192, -0.55007005), (0.48341665, 0.29635894, -0.8236987), (0.47714183, 0.1923976, -0.85750735), (0.60114473, 0.31162354, -0.7358775), (-0.14383577, 0.9503132, -0.27607244), (-0.110312045, 0.87773156, -0.46628153), (-0.033282995, 0.92988116, -0.36635125), (-0.033282995, 0.92988116, -0.36635125), (-0.110312045, 0.87773156, -0.46628153), (-0.020538136, 0.8360052, -0.54833704), (-0.26676506, 0.8414944, -0.46981245), (-0.17897557, 0.93098456, -0.31817535), (-0.21260926, 0.8038561, -0.5555293), (-0.010320473, 0.40468994, -0.9143957), (-0.083525784, 0.57211065, -0.8159123), (0.011084121, 0.38924456, -0.9210678), (0.6345588, 0.16236748, -0.7556268), (0.8136359, -0.031152692, -0.5805396), (0.7122464, -0.13180391, -0.68944377), (0.11391259, -0.11598364, -0.98669744), (-0.20932508, -0.5257483, -0.82448274), (-0.30950058, 0.20240676, -0.92910755), (-0.010087955, 0.84672755, -0.531931), (0.18811478, 0.6722223, -0.71605164), (0.026558898, 0.6994312, -0.7142062), (-0.081094764, 0.5405266, -0.83740944), (-0.15126656, 0.40943748, -0.8997107), (0.028824272, 0.40822512, -0.9124261), (-0.002316495, 0.71685964, -0.6972137), (-0.14442262, 0.6212478, -0.7701904), (-0.036941852, 0.6243847, -0.780243), (-0.036941852, 0.6243847, -0.780243), (0.040301405, 0.5460094, -0.83680904), (-0.068017855, 0.740212, -0.6689243), (0.3445099, -0.7736157, -0.53181934), (0.28217152, -0.5634503, -0.7764684), (0.4275785, -0.6898094, -0.5842427), (0.2746507, 0.31602055, -0.9081288), (0.30369085, 0.3361797, -0.89149034), (0.60114473, 0.31162354, -0.7358775), (0.60114473, 0.31162354, -0.7358775), (0.30369085, 0.3361797, -0.89149034), (0.48341665, 0.29635894, -0.8236987), (0.1381764, 0.3608774, -0.92232037), (0.10158138, 0.21611832, -0.9710685), (0.14657785, 0.22254784, -0.96384), (-0.016308533, 0.5921141, -0.8056891), (-0.05660824, 0.62712705, -0.7768572), (-0.118845195, 0.721646, -0.6819844), (-0.15478157, 0.8718699, -0.46463478), (-0.26676506, 0.8414944, -0.46981245), (-0.10812697, 0.7790866, -0.6175214), (-0.35552448, -0.07765679, -0.93143535), (-0.14047794, -0.34555006, -0.9278259), (-0.70096695, -0.13765024, -0.69978404), (-0.07044898, -0.5397641, -0.8388633), (-0.021990784, -0.6079759, -0.7936509), (-0.18033013, -0.39411464, -0.90119624), (0.93111163, -0.35407212, -0.08754509), (0.7768317, -0.57160056, -0.26420677), (0.9789346, -0.20254333, -0.025753347), (0.9298531, 0.065071344, -0.3621309), (0.3509934, 0.8128238, -0.46488836), (0.5295331, 0.42740732, -0.7327467), (-0.26676506, 0.8414944, -0.46981245), (-0.21260926, 0.8038561, -0.5555293), (-0.24332595, 0.7578463, -0.6053606), (-0.016308533, 0.5921141, -0.8056891), (0.008991361, 0.51579136, -0.85666704), (-0.05660824, 0.62712705, -0.7768572), (0.3445099, -0.7736157, -0.53181934), (0.21423133, -0.8084097, -0.5482506), (0.22413345, -0.6476677, -0.7282106), (-0.050011877, 0.7380568, -0.6728827), (-0.10812697, 0.7790866, -0.6175214), (-0.09934344, 0.6775954, -0.7286943), (-0.45958078, 0.4397767, -0.7716099), (-0.24783447, 0.65149343, -0.7170316), (-0.5183715, 0.74702173, -0.41623268), (-0.09934344, 0.6775954, -0.7286943), (-0.083525784, 0.57211065, -0.8159123), (-0.081094764, 0.5405266, -0.83740944), (0.430587, -0.6497393, -0.62644523), (0.38381708, -0.47765252, -0.7902737), (0.8923967, -0.39999035, -0.20889154), (0.058695275, 0.47261247, -0.87931365), (0.02167344, 0.25035143, -0.9679124), (-0.1146255, 0.48534405, -0.8667768), (-0.2703703, 0.17386167, 0.94692767), (-0.5329692, 0.19743983, 0.8227766), (-0.39598778, 0.03499915, 0.9175885), (-0.045859024, 0.72708166, -0.6850177), (0.11332498, 0.614508, -0.78072876), (-0.0812246, 0.6300587, -0.77228785), (0.15169112, 0.5053217, -0.84949386), (-0.026487285, 0.39081672, -0.92008734), (-0.0812246, 0.6300587, -0.77228785), (0.11332498, 0.614508, -0.78072876), (0.15169112, 0.5053217, -0.84949386), (-0.0812246, 0.6300587, -0.77228785), (0.48341665, 0.29635894, -0.8236987), (0.5637194, 0.2707861, -0.7803175), (0.47714183, 0.1923976, -0.85750735), (0.47714183, 0.1923976, -0.85750735), (0.5637194, 0.2707861, -0.7803175), (0.4402426, 0.19567104, -0.87629867), (-0.015475897, 0.36934543, -0.92916334), (0.051902797, 0.43488026, -0.8989913), (-0.03810094, 0.40693915, -0.9126603), (0.63791245, 0.060515024, -0.76772755), (0.26282606, -0.08450447, -0.96113557), (0.607333, -0.55710804, -0.5663719), (0.14990771, 0.73515755, -0.6611135), (0.5509987, 0.45174804, -0.7016581), (0.28374514, 0.49862832, -0.8190595), (0.5075693, 0.34588322, -0.78913766), (0.6013884, 0.34456095, -0.7208396), (0.60190797, 0.20999849, -0.7704592), (-0.55329823, -0.76914936, -0.31979728), (-0.5528094, -0.8246835, -0.11957864), (-0.67246896, -0.67827183, -0.29619727), (-0.068017855, 0.740212, -0.6689243), (0.040301405, 0.5460094, -0.83680904), (0.057944402, 0.7179774, -0.6936505), (-0.062222015, 0.7140513, -0.6973227), (-0.1146255, 0.48534405, -0.8667768), (-0.2105749, 0.6975265, -0.68491966), (0.06356487, 0.9693748, -0.23721737), (0.19816753, 0.8928737, -0.40435898), (0.3509934, 0.8128238, -0.46488836), (0.058695275, 0.47261247, -0.87931365), (-0.1146255, 0.48534405, -0.8667768), (-0.062222015, 0.7140513, -0.6973227), (0.50237906, -0.73099184, 0.46180746), (0.39536312, -0.91615075, -0.06599754), (0.4455544, -0.8584529, 0.25404683), (0.19430637, 0.43361533, -0.8798994), (-0.0058580027, 0.4264949, -0.9044709), (0.12859565, 0.5401502, -0.8316856), (0.9250353, -0.13516796, -0.35502043), (0.6713147, 0.059606586, -0.73877174), (0.8867414, -0.23026726, -0.40083247), (0.34579414, 0.44626126, -0.8253953), (0.2597133, 0.47594517, -0.8402531), (0.29109535, 0.5765429, -0.7634539), (0.48313183, 0.70233595, -0.5227884), (0.14990771, 0.73515755, -0.6611135), (0.19816753, 0.8928737, -0.40435898), (-0.30536386, -0.6192945, -0.7233444), (-0.31435004, -0.5255507, -0.79055715), (0.31189576, -0.6687293, -0.67492384), (-0.39085448, 0.76808643, -0.5072237), (-0.162098, 0.86294246, -0.47859636), (-0.2105749, 0.6975265, -0.68491966), (0.17282136, 0.34837225, -0.9212868), (-0.11170251, 0.39677772, -0.91109276), (0.11112244, 0.19617122, -0.9742529), (0.3904863, 0.8484577, -0.35726735), (0.31501457, 0.79353833, -0.52063674), (0.27765667, 0.85034305, -0.4470163), (-0.17897557, 0.93098456, -0.31817535), (-0.025991922, 0.84249765, -0.5380726), (-0.21260926, 0.8038561, -0.5555293), (0.26282606, -0.08450447, -0.96113557), (0.30369085, 0.3361797, -0.89149034), (0.2746507, 0.31602055, -0.9081288), (0.83653957, -0.29681796, -0.46054393), (0.617948, 0.03965283, -0.7852185), (0.73565453, -0.3507583, -0.57946616), (0.5637194, 0.2707861, -0.7803175), (0.6672254, 0.2849614, -0.6881912), (0.5884947, 0.29931146, -0.751057), (-0.020538136, 0.8360052, -0.54833704), (-0.110312045, 0.87773156, -0.46628153), (-0.050011877, 0.7380568, -0.6728827), (0.10729069, 0.7225492, -0.6829431), (-0.020538136, 0.8360052, -0.54833704), (-0.050011877, 0.7380568, -0.6728827), (0.14288545, 0.4129683, -0.89946705), (0.18595472, 0.67574537, -0.71329457), (0.006958981, 0.5045976, -0.86332655), (0.8637933, 0.024953382, 0.50322795), (0.48421824, 0.2921103, 0.824745), (0.26596016, 0.72425157, 0.63617986), (0.21006387, -0.05363533, -0.9762154), (0.045180514, 0.12160821, -0.9915494), (0.123662375, 0.14202784, -0.9821078), (0.13312438, 0.85884887, -0.4946276), (0.16517043, 0.7992805, -0.5778143), (-0.01678469, 0.78437483, -0.62006), (0.67063475, 0.43720013, -0.5992538), (0.7997539, 0.41937962, -0.4295515), (0.76785123, 0.26919043, -0.58132696), (-0.11358019, 0.66861093, -0.73488706), (-0.11170251, 0.39677772, -0.91109276), (0.17282136, 0.34837225, -0.9212868), (-0.11358019, 0.66861093, -0.73488706), (-0.20008604, 0.66337967, -0.72103614), (-0.11170251, 0.39677772, -0.91109276), (-0.20008604, 0.66337967, -0.72103614), (-0.24067296, 0.5120365, -0.82455754), (-0.31404108, 0.56351835, -0.7640845), (-0.11170251, 0.39677772, -0.91109276), (-0.20008604, 0.66337967, -0.72103614), (-0.31404108, 0.56351835, -0.7640845), (0.8136359, -0.031152692, -0.5805396), (0.73816437, 0.29486796, -0.606767), (0.8595898, 0.1279113, -0.49471623), (-0.39848554, 0.6507947, 0.64627826), (-0.38761067, 0.912261, 0.13243043), (-0.074242614, 0.9043319, 0.4203234), (-0.3202161, 0.6611132, -0.6785212), (-0.186059, 0.34451467, -0.92015857), (-0.52435285, 0.53870404, -0.65943307), (-0.3943634, 0.88826734, -0.2354964), (0.38884154, 0.909899, 0.14451972), (-0.54507095, 0.61533564, -0.56943804), (0.4524603, 0.78021014, -0.43191645), (0.40869328, 0.75290745, -0.51584905), (0.31501457, 0.79353833, -0.52063674), (0.15814334, -0.18266132, -0.970374), (-0.013975418, -0.46513107, -0.88513154), (0.19736668, -0.4973135, -0.84482294), (0.3744099, 0.48020983, -0.7932312), (0.18595472, 0.67574537, -0.71329457), (0.2713146, 0.43590143, -0.85812485), (-0.2105749, 0.6975265, -0.68491966), (-0.33004627, 0.49476734, -0.80391216), (-0.39085448, 0.76808643, -0.5072237), (-0.162098, 0.86294246, -0.47859636), (-0.062222015, 0.7140513, -0.6973227), (-0.2105749, 0.6975265, -0.68491966), (0.29217985, 0.25723913, -0.9211184), (0.2562443, 0.4214997, -0.86987174), (0.18811478, 0.6722223, -0.71605164), (-0.26676506, 0.8414944, -0.46981245), (-0.24332595, 0.7578463, -0.6053606), (-0.10812697, 0.7790866, -0.6175214), (0.8529486, 0.47849572, 0.20861624), (0.6442778, 0.76190704, -0.06636116), (0.8960697, 0.31373283, -0.31405523), (0.19128671, 0.95489544, -0.22712131), (0.26162243, 0.82304573, -0.5041323), (0.33743116, 0.88452536, -0.32211047), (0.18872376, 0.8095047, -0.5559546), (0.10364011, 0.56799906, -0.8164777), (0.2955777, 0.73814315, -0.6064474), (0.5884947, 0.29931146, -0.751057), (0.47919208, 0.34708163, -0.8061695), (0.4402426, 0.19567104, -0.87629867), (0.13736925, 0.6488698, -0.74839664), (0.17282136, 0.34837225, -0.9212868), (0.32198107, 0.21313697, -0.92244285), (0.47919208, 0.34708163, -0.8061695), (0.13736925, 0.6488698, -0.74839664), (0.32198107, 0.21313697, -0.92244285), (0.13736925, 0.6488698, -0.74839664), (-0.11358019, 0.66861093, -0.73488706), (0.17282136, 0.34837225, -0.9212868), (-0.47269213, 0.7379392, -0.48167187), (-0.3202161, 0.6611132, -0.6785212), (-0.52435285, 0.53870404, -0.65943307), (-0.33004627, 0.49476734, -0.80391216), (-0.5437034, 0.5026201, -0.6721307), (-0.39085448, 0.76808643, -0.5072237), (0.58098644, 0.81308, -0.036818992), (0.3509934, 0.8128238, -0.46488836), (0.9286086, 0.35685587, -0.10168594), (0.286093, 0.52348936, -0.8025645), (0.4408085, 0.61214834, -0.65647733), (0.2955777, 0.73814315, -0.6064474), (0.5295331, 0.42740732, -0.7327467), (0.3509934, 0.8128238, -0.46488836), (0.024488019, 0.69203335, -0.72145), (0.6672254, 0.2849614, -0.6881912), (0.6906337, 0.37421668, -0.6188594), (0.5884947, 0.29931146, -0.751057), (0.6906337, 0.37421668, -0.6188594), (0.52642345, 0.58867615, -0.6134646), (0.5884947, 0.29931146, -0.751057), (0.5884947, 0.29931146, -0.751057), (0.52642345, 0.58867615, -0.6134646), (0.47919208, 0.34708163, -0.8061695), (-0.13191254, 0.5249462, -0.84085107), (-0.24067296, 0.5120365, -0.82455754), (-0.20008604, 0.66337967, -0.72103614), (-0.5239205, 0.36621252, -0.7690226), (-0.8607815, 0.36090496, -0.35889122), (-0.37058988, 0.86662453, -0.33410332), (0.80688834, 0.4972827, -0.31881186), (0.73073494, 0.51337385, -0.44997093), (0.76854753, 0.5626308, -0.30460027), (0.6345588, 0.16236748, -0.7556268), (0.5282478, 0.10837448, -0.84214556), (0.5393348, 0.34356913, -0.7688162), (0.5723133, 0.28664815, -0.76830345), (0.5393348, 0.34356913, -0.7688162), (0.43455523, 0.31527552, -0.8436606), (0.13736925, 0.6488698, -0.74839664), (-0.09496189, 0.7699185, -0.6310371), (-0.11358019, 0.66861093, -0.73488706), (-0.09496189, 0.7699185, -0.6310371), (-0.20008604, 0.66337967, -0.72103614), (-0.11358019, 0.66861093, -0.73488706), (-0.03861277, 0.4395541, -0.89738584), (-0.24067296, 0.5120365, -0.82455754), (-0.13191254, 0.5249462, -0.84085107), (0.12776764, 0.48213232, -0.86673176), (0.026558898, 0.6994312, -0.7142062), (0.18811478, 0.6722223, -0.71605164), (0.3509934, 0.8128238, -0.46488836), (0.19816753, 0.8928737, -0.40435898), (0.14990771, 0.73515755, -0.6611135), (-0.09934344, 0.6775954, -0.7286943), (-0.081094764, 0.5405266, -0.83740944), (-0.018422125, 0.59804493, -0.8012509), (-0.09274275, 0.62684506, -0.7736045), (-0.13191254, 0.5249462, -0.84085107), (-0.20008604, 0.66337967, -0.72103614), (-0.10812697, 0.7790866, -0.6175214), (-0.24332595, 0.7578463, -0.6053606), (-0.118845195, 0.721646, -0.6819844), (0.8494472, 0.21180317, -0.48330003), (0.7637387, 0.51275146, -0.39215958), (0.6906337, 0.37421668, -0.6188594), (0.7637387, 0.51275146, -0.39215958), (0.52642345, 0.58867615, -0.6134646), (0.6906337, 0.37421668, -0.6188594), (0.0032559184, 0.65821654, -0.75282156), (-0.09274275, 0.62684506, -0.7736045), (-0.20008604, 0.66337967, -0.72103614), (0.051902797, 0.43488026, -0.8989913), (-0.015475897, 0.36934543, -0.92916334), (-0.03861277, 0.4395541, -0.89738584), (-0.010087955, 0.84672755, -0.531931), (0.026558898, 0.6994312, -0.7142062), (-0.062222015, 0.7140513, -0.6973227), (-0.52435285, 0.53870404, -0.65943307), (-0.68113655, 0.48901352, -0.54490244), (-0.47269213, 0.7379392, -0.48167187), (0.94052345, 0.28376985, -0.18678981), (0.7637387, 0.51275146, -0.39215958), (0.8494472, 0.21180317, -0.48330003), (0.52642345, 0.58867615, -0.6134646), (0.096723534, 0.8818396, -0.46152312), (0.13736925, 0.6488698, -0.74839664), (0.47919208, 0.34708163, -0.8061695), (0.52642345, 0.58867615, -0.6134646), (0.13736925, 0.6488698, -0.74839664), (0.13736925, 0.6488698, -0.74839664), (0.096723534, 0.8818396, -0.46152312), (-0.09496189, 0.7699185, -0.6310371), (-0.20008604, 0.66337967, -0.72103614), (-0.09496189, 0.7699185, -0.6310371), (0.0032559184, 0.65821654, -0.75282156), (-0.22743472, 0.93119746, -0.28485948), (-0.17897557, 0.93098456, -0.31817535), (-0.26676506, 0.8414944, -0.46981245), (-0.1458709, 0.5580752, -0.8168683), (-0.092187375, 0.38006347, -0.9203549), (0.008991361, 0.51579136, -0.85666704), (0.0414112, 0.4943381, -0.86828274), (-0.13191254, 0.5249462, -0.84085107), (-0.09274275, 0.62684506, -0.7736045), (0.28374514, 0.49862832, -0.8190595), (0.6350449, 0.19746819, -0.74680936), (0.59347165, 0.046450734, -0.8035134), (-0.22743472, 0.93119746, -0.28485948), (-0.26676506, 0.8414944, -0.46981245), (-0.15478157, 0.8718699, -0.46463478), (-0.0015518905, 0.91320086, -0.40750656), (0.07123869, 0.94643617, -0.31493425), (0.0044798334, 0.8557751, -0.5173287), (0.28374514, 0.49862832, -0.8190595), (0.5509987, 0.45174804, -0.7016581), (0.6350449, 0.19746819, -0.74680936), (0.6345588, 0.16236748, -0.7556268), (0.73816437, 0.29486796, -0.606767), (0.8136359, -0.031152692, -0.5805396), (-0.21260926, 0.8038561, -0.5555293), (-0.07168215, 0.71143377, -0.69908786), (-0.24332595, 0.7578463, -0.6053606), (0.8267286, 0.542276, -0.14985508), (0.7637387, 0.51275146, -0.39215958), (0.94052345, 0.28376985, -0.18678981), (0.44671834, 0.852898, -0.2701996), (0.096723534, 0.8818396, -0.46152312), (0.52642345, 0.58867615, -0.6134646), (0.0414112, 0.4943381, -0.86828274), (-0.03861277, 0.4395541, -0.89738584), (-0.13191254, 0.5249462, -0.84085107), (0.44671834, 0.852898, -0.2701996), (0.52642345, 0.58867615, -0.6134646), (0.7637387, 0.51275146, -0.39215958), (0.096723534, 0.8818396, -0.46152312), (0.09075296, 0.77630776, -0.623787), (-0.09496189, 0.7699185, -0.6310371), (-0.09496189, 0.7699185, -0.6310371), (0.09075296, 0.77630776, -0.623787), (0.0032559184, 0.65821654, -0.75282156), (0.0032559184, 0.65821654, -0.75282156), (0.0414112, 0.4943381, -0.86828274), (-0.09274275, 0.62684506, -0.7736045), (0.007324897, 0.46016207, -0.8878048), (-0.03861277, 0.4395541, -0.89738584), (0.0414112, 0.4943381, -0.86828274), (-0.162098, 0.86294246, -0.47859636), (-0.010087955, 0.84672755, -0.531931), (-0.062222015, 0.7140513, -0.6973227), (-0.22743472, 0.93119746, -0.28485948), (-0.15478157, 0.8718699, -0.46463478), (-0.14383577, 0.9503132, -0.27607244), (0.07123869, 0.94643617, -0.31493425), (0.27325293, 0.9196915, -0.2819581), (0.13312438, 0.85884887, -0.4946276), (0.60190797, 0.20999849, -0.7704592), (0.6901161, 0.18358733, -0.7000252), (0.5723133, 0.28664815, -0.76830345), (-0.6310019, 0.6940629, -0.34657374), (-0.66636115, 0.58046716, -0.46799642), (-0.6209948, 0.43756935, -0.65030646), (0.44671834, 0.852898, -0.2701996), (0.19038826, 0.93325436, -0.30461198), (0.096723534, 0.8818396, -0.46152312), (0.19038826, 0.93325436, -0.30461198), (0.15173763, 0.87474906, -0.4602062), (0.096723534, 0.8818396, -0.46152312), (0.096723534, 0.8818396, -0.46152312), (0.15173763, 0.87474906, -0.4602062), (0.09075296, 0.77630776, -0.623787), (0.007324897, 0.46016207, -0.8878048), (0.051902797, 0.43488026, -0.8989913), (-0.03861277, 0.4395541, -0.89738584), (0.007324897, 0.46016207, -0.8878048), (-0.03810094, 0.40693915, -0.9126603), (0.051902797, 0.43488026, -0.8989913), (-0.43625435, -0.7146312, 0.5467946), (-0.27621555, 0.0014689193, 0.9610946), (0.07279701, -0.8265557, 0.55812746), (-0.05660824, 0.62712705, -0.7768572), (0.008991361, 0.51579136, -0.85666704), (-0.083525784, 0.57211065, -0.8159123), (0.5972616, 0.7425547, -0.30313534), (0.8332964, 0.4042927, -0.37704715), (0.48313183, 0.70233595, -0.5227884), (0.0044798334, 0.8557751, -0.5173287), (0.13312438, 0.85884887, -0.4946276), (-0.01678469, 0.78437483, -0.62006), (0.26282606, -0.08450447, -0.96113557), (0.2746507, 0.31602055, -0.9081288), (-0.23270221, -0.11800899, -0.9653619), (0.4524603, 0.78021014, -0.43191645), (0.525147, 0.70664555, -0.4742074), (0.40869328, 0.75290745, -0.51584905), (0.16279149, 0.2844107, -0.9447802), (0.040301405, 0.5460094, -0.83680904), (0.052944217, 0.12859267, -0.9902832), (-0.09934344, 0.6775954, -0.7286943), (-0.018422125, 0.59804493, -0.8012509), (-0.050011877, 0.7380568, -0.6728827), (-0.3708847, -0.35086176, 0.8598492), (-0.46643513, -0.2382681, 0.85186076), (-0.29223943, -0.3740379, 0.88016576), (-0.026487285, 0.39081672, -0.92008734), (0.052944217, 0.12859267, -0.9902832), (0.040301405, 0.5460094, -0.83680904), (0.44671834, 0.852898, -0.2701996), (0.16986059, 0.97098553, -0.16832872), (0.19038826, 0.93325436, -0.30461198), (0.14881547, 0.56270427, -0.8131531), (0.0414112, 0.4943381, -0.86828274), (0.0032559184, 0.65821654, -0.75282156), (0.48523468, -0.87437403, 0.0041459464), (0.25655803, -0.8464801, -0.4665291), (0.39536312, -0.91615075, -0.06599754), (0.24584846, -0.086955965, 0.96540004), (0.21733269, -0.6318195, 0.7440233), (0.4313311, -0.53554904, 0.72604454), (0.26928166, 0.3002263, -0.91506916), (0.37566808, 0.37820473, -0.8460702), (0.286093, 0.52348936, -0.8025645), (0.56750274, 0.4867326, -0.6641024), (0.67063475, 0.43720013, -0.5992538), (0.6013884, 0.34456095, -0.7208396), (-0.026487285, 0.39081672, -0.92008734), (0.040301405, 0.5460094, -0.83680904), (-0.14442262, 0.6212478, -0.7701904), (0.09075296, 0.77630776, -0.623787), (0.21945956, 0.6290666, -0.7457296), (0.0032559184, 0.65821654, -0.75282156), (0.21945956, 0.6290666, -0.7457296), (0.14881547, 0.56270427, -0.8131531), (0.0032559184, 0.65821654, -0.75282156), (0.14881547, 0.56270427, -0.8131531), (0.007324897, 0.46016207, -0.8878048), (0.0414112, 0.4943381, -0.86828274), (-0.050011877, 0.7380568, -0.6728827), (0.029149108, 0.5269579, -0.84939134), (0.10729069, 0.7225492, -0.6829431), (0.072007045, 0.88734347, -0.4554519), (0.18811478, 0.6722223, -0.71605164), (-0.010087955, 0.84672755, -0.531931), (0.46776986, 0.64959544, -0.59934723), (0.5276262, 0.6106719, -0.5905003), (0.43665907, 0.5151251, -0.7375467), (0.49790967, 0.82157475, -0.2776708), (0.4524603, 0.78021014, -0.43191645), (0.3904863, 0.8484577, -0.35726735), (0.5745417, 0.76015043, -0.30343544), (0.525147, 0.70664555, -0.4742074), (0.4524603, 0.78021014, -0.43191645), (-0.058234498, 0.78132826, 0.6213976), (0.048624907, 0.63666934, 0.7696024), (0.31527486, 0.7958481, 0.5169406), (0.15173763, 0.87474906, -0.4602062), (0.2932695, 0.7946761, -0.5314912), (0.09075296, 0.77630776, -0.623787), (-0.048447844, 0.3842212, -0.92196894), (0.05108447, 0.40225464, -0.9141015), (0.006958981, 0.5045976, -0.86332655), (0.19430637, 0.43361533, -0.8798994), (0.59347165, 0.046450734, -0.8035134), (0.29509443, 0.13193615, -0.94631505), (0.18595472, 0.67574537, -0.71329457), (0.18954842, 0.57325786, -0.79714924), (0.006958981, 0.5045976, -0.86332655), (0.18595472, 0.67574537, -0.71329457), (0.14288545, 0.4129683, -0.89946705), (0.2713146, 0.43590143, -0.85812485), (0.3744099, 0.48020983, -0.7932312), (0.21873905, 0.33852237, -0.91518074), (0.18954842, 0.57325786, -0.79714924), (0.73073494, 0.51337385, -0.44997093), (0.67063475, 0.43720013, -0.5992538), (0.56750274, 0.4867326, -0.6641024), (-0.24945141, 0.89533806, -0.36897647), (-0.162098, 0.86294246, -0.47859636), (-0.39085448, 0.76808643, -0.5072237), (0.2597133, 0.47594517, -0.8402531), (0.32244653, 0.31922922, -0.8911347), (0.20963658, 0.2887644, -0.93416685), (0.6314147, 0.4272624, -0.64711857), (0.6345588, 0.16236748, -0.7556268), (0.5393348, 0.34356913, -0.7688162), (-0.4417603, -0.8870125, 0.13437492), (-0.3181498, -0.9068677, -0.27635422), (-0.7753093, -0.56586474, -0.2805219), (0.26162243, 0.82304573, -0.5041323), (-0.020538136, 0.8360052, -0.54833704), (0.10729069, 0.7225492, -0.6829431), (0.5592899, 0.5717881, -0.600211), (0.73073494, 0.51337385, -0.44997093), (0.56750274, 0.4867326, -0.6641024), (0.20963658, 0.2887644, -0.93416685), (0.32244653, 0.31922922, -0.8911347), (0.2012353, 0.21173255, -0.9563857), (0.26162243, 0.82304573, -0.5041323), (0.10729069, 0.7225492, -0.6829431), (0.31240472, 0.6546717, -0.6883373), (-0.47269213, 0.7379392, -0.48167187), (-0.28299472, 0.75980246, -0.58533275), (-0.3202161, 0.6611132, -0.6785212), (-0.66636115, 0.58046716, -0.46799642), (-0.5599974, 0.8270717, -0.048531305), (-0.06844584, 0.94972205, 0.30552137), (0.5723133, 0.28664815, -0.76830345), (0.6732018, 0.3908049, -0.6277507), (0.5393348, 0.34356913, -0.7688162), (-0.3943634, 0.88826734, -0.2354964), (-0.54507095, 0.61533564, -0.56943804), (-0.66636115, 0.58046716, -0.46799642), (0.13256782, 0.8150782, -0.5639798), (0.12537716, 0.5362219, -0.8347135), (0.18872376, 0.8095047, -0.5559546), (0.20963658, 0.2887644, -0.93416685), (-0.026487285, 0.39081672, -0.92008734), (0.15169112, 0.5053217, -0.84949386), (0.16517043, 0.7992805, -0.5778143), (0.16940975, 0.71426123, -0.67906636), (-0.01678469, 0.78437483, -0.62006), (0.350484, -0.7758478, -0.5246153), (0.2776778, -0.906496, -0.31805658), (0.64303005, -0.7089091, -0.28975874), (0.09075296, 0.77630776, -0.623787), (0.2932695, 0.7946761, -0.5314912), (0.21945956, 0.6290666, -0.7457296), (0.06716894, 0.6019166, -0.7957291), (0.007324897, 0.46016207, -0.8878048), (0.14881547, 0.56270427, -0.8131531), (0.06716894, 0.6019166, -0.7957291), (-0.03812943, 0.48790538, -0.87206334), (0.007324897, 0.46016207, -0.8878048), (-0.03812943, 0.48790538, -0.87206334), (-0.03810094, 0.40693915, -0.9126603), (0.007324897, 0.46016207, -0.8878048), (-0.03812943, 0.48790538, -0.87206334), (0.00073287025, 0.3308294, -0.94369024), (-0.03810094, 0.40693915, -0.9126603), (-0.110312045, 0.87773156, -0.46628153), (-0.15478157, 0.8718699, -0.46463478), (-0.018631304, 0.80536604, -0.59248483), (-0.14383577, 0.9503132, -0.27607244), (-0.15478157, 0.8718699, -0.46463478), (-0.110312045, 0.87773156, -0.46628153), (0.43665907, 0.5151251, -0.7375467), (0.3598295, 0.42234465, -0.8319541), (0.34579414, 0.44626126, -0.8253953), (0.3509934, 0.8128238, -0.46488836), (0.14990771, 0.73515755, -0.6611135), (0.024488019, 0.69203335, -0.72145), (-0.61552185, 0.1700669, -0.76955193), (-0.67914766, 0.51451015, -0.5234862), (-0.5772042, 0.21521193, -0.7877303), (0.5991798, 0.08719982, -0.7958515), (0.50915235, 0.09582394, -0.8553254), (0.5511319, 0.09759865, -0.82869065), (0.408314, 0.30564097, -0.86015314), (0.4781159, 0.22117768, -0.8499916), (0.46731856, 0.24578078, -0.8492379), (0.19038826, 0.93325436, -0.30461198), (0.2601437, 0.9431217, -0.20699424), (0.33743116, 0.88452536, -0.32211047), (0.19038826, 0.93325436, -0.30461198), (0.2932695, 0.7946761, -0.5314912), (0.15173763, 0.87474906, -0.4602062), (0.31240472, 0.6546717, -0.6883373), (0.21945956, 0.6290666, -0.7457296), (0.2932695, 0.7946761, -0.5314912), (0.35641447, 0.6908685, -0.6290225), (0.31240472, 0.6546717, -0.6883373), (0.2932695, 0.7946761, -0.5314912), (0.31240472, 0.6546717, -0.6883373), (0.14881547, 0.56270427, -0.8131531), (0.21945956, 0.6290666, -0.7457296), (0.31240472, 0.6546717, -0.6883373), (0.10729069, 0.7225492, -0.6829431), (0.14881547, 0.56270427, -0.8131531), (0.10729069, 0.7225492, -0.6829431), (0.06716894, 0.6019166, -0.7957291), (0.14881547, 0.56270427, -0.8131531), (-0.07168215, 0.71143377, -0.69908786), (-0.036941852, 0.6243847, -0.780243), (-0.118845195, 0.721646, -0.6819844), (0.2955777, 0.73814315, -0.6064474), (0.4408085, 0.61214834, -0.65647733), (0.3108681, 0.6961003, -0.6471516), (-0.41133305, 0.61813056, -0.66986537), (-0.8466037, 0.36471546, -0.38761413), (-0.6073499, 0.29867643, -0.73615116), (0.28374514, 0.49862832, -0.8190595), (0.12859565, 0.5401502, -0.8316856), (0.024488019, 0.69203335, -0.72145), (0.76854753, 0.5626308, -0.30460027), (0.73073494, 0.51337385, -0.44997093), (0.67655736, 0.6346417, -0.37349725), (-0.23781012, 0.25532416, -0.93715304), (-0.3434998, 0.20149514, -0.9172827), (-0.2773278, 0.31339413, -0.9082255), (0.19038826, 0.93325436, -0.30461198), (0.33743116, 0.88452536, -0.32211047), (0.2932695, 0.7946761, -0.5314912), (0.029149108, 0.5269579, -0.84939134), (-0.03812943, 0.48790538, -0.87206334), (0.06716894, 0.6019166, -0.7957291), (0.44767228, 0.5346178, -0.71677977), (0.37224162, 0.51884145, -0.76957107), (0.3598295, 0.42234465, -0.8319541), (-0.033282995, 0.92988116, -0.36635125), (-0.020538136, 0.8360052, -0.54833704), (0.26162243, 0.82304573, -0.5041323), (0.28374514, 0.49862832, -0.8190595), (0.19430637, 0.43361533, -0.8798994), (0.12859565, 0.5401502, -0.8316856), (0.4455544, -0.8584529, 0.25404683), (0.2974425, -0.91589993, -0.26954654), (0.4325463, -0.90036434, 0.047412522), (-0.66636115, 0.58046716, -0.46799642), (-0.06844584, 0.94972205, 0.30552137), (-0.3943634, 0.88826734, -0.2354964), (-0.7753093, -0.56586474, -0.2805219), (-0.3181498, -0.9068677, -0.27635422), (-0.5572152, -0.351299, -0.7523964), (0.26162243, 0.82304573, -0.5041323), (0.2932695, 0.7946761, -0.5314912), (0.33743116, 0.88452536, -0.32211047), (0.26162243, 0.82304573, -0.5041323), (0.35641447, 0.6908685, -0.6290225), (0.2932695, 0.7946761, -0.5314912), (-0.03812943, 0.48790538, -0.87206334), (0.029149108, 0.5269579, -0.84939134), (0.00073287025, 0.3308294, -0.94369024), (-0.54507095, 0.61533564, -0.56943804), (0.08772562, 0.92416996, -0.37177163), (-0.6064609, 0.21697047, -0.7649372), (-0.09514772, 0.91167706, 0.39973986), (0.008604802, 0.94421047, 0.32922998), (-0.028711615, 0.77819705, 0.62736356), (0.47113773, 0.16328445, -0.8668145), (0.46731856, 0.24578078, -0.8492379), (0.50915235, 0.09582394, -0.8553254), (0.10729069, 0.7225492, -0.6829431), (0.029149108, 0.5269579, -0.84939134), (0.06716894, 0.6019166, -0.7957291), (0.045180514, 0.12160821, -0.9915494), (0.11391259, -0.11598364, -0.98669744), (-0.30950058, 0.20240676, -0.92910755), (-0.048447844, 0.3842212, -0.92196894), (0.048625186, 0.32706097, -0.9437514), (0.10364011, 0.56799906, -0.8164777), (-0.6826508, 0.16212206, -0.71253365), (-0.57392466, 0.27946785, -0.76974547), (-0.4797482, 0.14914988, -0.86463636), (-0.61154205, 0.7756096, 0.15635297), (-0.45028743, 0.8040352, 0.3882893), (-0.6903042, 0.70116806, -0.17844757), (-0.6882561, 0.27971166, -0.6693766), (-0.6004371, 0.28098938, -0.748679), (-0.5448445, 0.36678994, -0.7540621), (-0.34496683, 0.14121531, -0.92793113), (-0.41890058, 0.24931513, -0.8731347), (-0.33700928, 0.12191287, -0.9335748), (-0.3989333, 0.3694526, -0.83925974), (-0.6004371, 0.28098938, -0.748679), (-0.36365452, -0.011067656, -0.93146807), (-0.5448445, 0.36678994, -0.7540621), (-0.6004371, 0.28098938, -0.748679), (-0.3989333, 0.3694526, -0.83925974), (-0.53398204, -0.15472639, -0.8312177), (-0.6004371, 0.28098938, -0.748679), (-0.7008725, -0.1302158, -0.7013001), (-0.39270934, 0.42883065, -0.8135624), (-0.3989333, 0.3694526, -0.83925974), (-0.31404108, 0.56351835, -0.7640845), (-0.45931622, 0.3505242, -0.81618714), (-0.3989333, 0.3694526, -0.83925974), (-0.39270934, 0.42883065, -0.8135624), (-0.4349633, -0.1718754, -0.8838925), (-0.25499034, -0.09963885, -0.9617963), (-0.39905477, -0.2708017, -0.87602615), (-0.18640007, 0.7097053, 0.6793919), (0.1088793, 0.6450235, 0.75636625), (0.07782403, 0.7469551, 0.6603041), (0.11391259, -0.11598364, -0.98669744), (0.009184698, -0.89453715, -0.44689944), (-0.20932508, -0.5257483, -0.82448274), (-0.4349633, -0.1718754, -0.8838925), (-0.4191183, 0.009174447, -0.90788525), (-0.25499034, -0.09963885, -0.9617963), (-0.4191183, 0.009174447, -0.90788525), (-0.28837988, 0.011091355, -0.9574519), (-0.25499034, -0.09963885, -0.9617963), (0.562021, -0.3577581, -0.74574894), (0.59347165, 0.046450734, -0.8035134), (0.7554652, -0.25161803, -0.60494685), (-0.28837988, 0.011091355, -0.9574519), (-0.4191183, 0.009174447, -0.90788525), (-0.4007811, 0.13810778, -0.9057046), (0.44232258, -0.20159446, -0.8739053), (0.29509443, 0.13193615, -0.94631505), (0.59347165, 0.046450734, -0.8035134), (0.562021, -0.3577581, -0.74574894), (0.44232258, -0.20159446, -0.8739053), (0.59347165, 0.046450734, -0.8035134), (-0.1457211, 0.30843896, -0.9400163), (-0.18829814, 0.36235172, -0.91282254), (-0.015475897, 0.36934543, -0.92916334), (-0.4007811, 0.13810778, -0.9057046), (-0.61941385, 0.15405494, -0.769801), (-0.34422785, 0.03356996, -0.93828577), (0.44232258, -0.20159446, -0.8739053), (0.20527723, -0.031486247, -0.9781973), (0.29509443, 0.13193615, -0.94631505), (0.20527723, -0.031486247, -0.9781973), (0.023939839, 0.26049238, -0.965179), (0.29509443, 0.13193615, -0.94631505), (-0.32487574, 0.3613849, -0.873989), (-0.41133305, 0.61813056, -0.66986537), (-0.6073499, 0.29867643, -0.73615116), (0.4576426, -0.57375616, -0.6792401), (0.28350383, -0.32622147, -0.9017788), (0.562021, -0.3577581, -0.74574894), (0.562021, -0.3577581, -0.74574894), (0.28350383, -0.32622147, -0.9017788), (0.44232258, -0.20159446, -0.8739053), (0.06840639, -0.5524936, -0.83070534), (-0.17055202, -0.42532206, -0.8888268), (-0.19951603, -0.60166353, -0.7734302), (0.67847437, -0.24322066, -0.69319284), (0.48963374, -0.0033477307, -0.87192184), (0.6801373, -0.060265444, -0.7306034), (-0.6151021, -0.36844856, -0.69706166), (-0.5837123, -0.15642041, -0.79675126), (-0.40486556, -0.25596416, -0.877819), (-0.41131172, -0.2484772, -0.8769731), (-0.34574425, -0.25724158, -0.902379), (-0.1864253, -0.48720965, -0.85315436), (-0.47647125, -0.552428, -0.6839579), (0.12727505, -0.81410795, -0.56659454), (-0.73144907, -0.44305888, -0.51834464), (0.06323527, -0.9765512, -0.20578884), (0.20822914, -0.5669927, -0.7969691), (0.07709324, -0.9636072, -0.25596443), (-0.8607815, 0.36090496, -0.35889122), (-0.80484945, -0.21449009, -0.5533637), (-0.94697726, -0.13446452, -0.2918103), (0.28350383, -0.32622147, -0.9017788), (0.20527723, -0.031486247, -0.9781973), (0.44232258, -0.20159446, -0.8739053), (-0.6974708, -0.03832063, -0.7155879), (-0.60574687, -0.27905473, -0.74511695), (-0.7464215, -0.30342624, -0.59227306), (-0.5600202, -0.14395519, -0.8158764), (-0.6974708, -0.03832063, -0.7155879), (-0.52924967, -0.0066861566, -0.84843975), (-0.33700928, 0.12191287, -0.9335748), (-0.37859672, 0.17345048, -0.90916425), (-0.37426746, 0.10784129, -0.9210288), (-0.47643602, -0.66600466, -0.5739743), (-0.33532056, -0.60767734, -0.7199226), (-0.38279048, -0.7019322, -0.60063523), (-0.61620134, 0.17304784, -0.76834255), (-0.48875123, -0.11636698, -0.8646277), (-0.23270221, -0.11800899, -0.9653619), (-0.59974366, -0.5252451, -0.6036763), (-0.5078925, -0.48971283, -0.70867944), (-0.47643602, -0.66600466, -0.5739743), (-0.5134359, -0.702168, -0.49329883), (-0.59974366, -0.5252451, -0.6036763), (-0.47643602, -0.66600466, -0.5739743), (0.4275785, -0.6898094, -0.5842427), (0.28217152, -0.5634503, -0.7764684), (0.4576426, -0.57375616, -0.6792401), (0.28217152, -0.5634503, -0.7764684), (0.121600136, -0.30828056, -0.9434917), (0.28350383, -0.32622147, -0.9017788), (0.4576426, -0.57375616, -0.6792401), (0.28217152, -0.5634503, -0.7764684), (0.28350383, -0.32622147, -0.9017788), (0.023939839, 0.26049238, -0.965179), (0.055503555, 0.4034958, -0.91329646), (-0.0058580027, 0.4264949, -0.9044709), (-0.5134359, -0.702168, -0.49329883), (-0.47643602, -0.66600466, -0.5739743), (-0.4898299, -0.69162935, -0.53076875), (-0.59974366, -0.5252451, -0.6036763), (-0.6151021, -0.36844856, -0.69706166), (-0.5078925, -0.48971283, -0.70867944), (-0.24419631, 0.23059884, -0.94190884), (-0.34290543, 0.34726235, -0.8728257), (-0.18829814, 0.36235172, -0.91282254), (-0.24312341, 0.15431035, -0.9576425), (-0.42461792, 0.13781334, -0.89482236), (-0.37859672, 0.17345048, -0.90916425), (-0.03861277, 0.4395541, -0.89738584), (-0.18829814, 0.36235172, -0.91282254), (-0.24067296, 0.5120365, -0.82455754), (-0.50882804, -0.1622441, -0.8454413), (-0.5387095, -0.35279298, -0.7650681), (-0.73298496, -0.22978713, -0.6402585), (0.121600136, -0.30828056, -0.9434917), (0.06590964, -0.04857751, -0.9966424), (0.28350383, -0.32622147, -0.9017788), (0.28350383, -0.32622147, -0.9017788), (0.06590964, -0.04857751, -0.9966424), (0.20527723, -0.031486247, -0.9781973), (0.06590964, -0.04857751, -0.9966424), (0.27814472, 0.120741576, -0.9529203), (0.023939839, 0.26049238, -0.965179), (0.20527723, -0.031486247, -0.9781973), (0.06590964, -0.04857751, -0.9966424), (0.023939839, 0.26049238, -0.965179), (0.20822914, -0.5669927, -0.7969691), (0.06323527, -0.9765512, -0.20578884), (0.210738, -0.6023462, -0.76991475), (0.009184698, -0.89453715, -0.44689944), (0.210738, -0.6023462, -0.76991475), (0.06323527, -0.9765512, -0.20578884), (0.06840639, -0.5524936, -0.83070534), (-0.1502784, -0.695545, -0.7025907), (-0.11591684, -0.48975104, -0.8641222), (-0.34422785, 0.03356996, -0.93828577), (-0.19740334, -0.64745516, -0.7360935), (-0.045954794, -0.016335793, -0.99880993), (-0.3738997, -0.51097745, -0.77401626), (-0.22074991, -0.845684, -0.48588872), (-0.026100839, -0.9985556, -0.04696286), (-0.6064609, 0.21697047, -0.7649372), (-0.6499544, 0.18372133, -0.7374319), (-0.54507095, 0.61533564, -0.56943804), (-0.047764473, 0.39057004, -0.9193332), (-0.1458709, 0.5580752, -0.8168683), (-0.18074352, 0.637146, -0.74925077), (0.023939839, 0.26049238, -0.965179), (0.27814472, 0.120741576, -0.9529203), (0.055503555, 0.4034958, -0.91329646), (0.27814472, 0.120741576, -0.9529203), (0.617948, 0.03965283, -0.7852185), (0.055503555, 0.4034958, -0.91329646), (-0.28837988, 0.011091355, -0.9574519), (-0.12840469, 0.074718386, -0.98890316), (-0.09012415, -0.022122068, -0.99568474), (-0.28837988, 0.011091355, -0.9574519), (-0.4007811, 0.13810778, -0.9057046), (-0.12840469, 0.074718386, -0.98890316), (-0.12840469, 0.074718386, -0.98890316), (-0.4007811, 0.13810778, -0.9057046), (-0.22370958, 0.14205189, -0.9642485), (-0.5387095, -0.35279298, -0.7650681), (-0.39905477, -0.2708017, -0.87602615), (-0.53398204, -0.15472639, -0.8312177), (-0.5387095, -0.35279298, -0.7650681), (-0.4349633, -0.1718754, -0.8838925), (-0.39905477, -0.2708017, -0.87602615), (-0.27855578, 0.0813649, -0.95696723), (-0.37426746, 0.10784129, -0.9210288), (-0.25582063, 0.0029492744, -0.9667198), (0.13239287, 0.092030376, -0.9869156), (0.12762953, 0.0902003, -0.9877118), (0.301215, 0.11390896, -0.9467281), (-0.5183715, 0.74702173, -0.41623268), (-0.39085448, 0.76808643, -0.5072237), (-0.6759483, 0.57811683, -0.45702812), (-0.33700928, 0.12191287, -0.9335748), (-0.36455342, 0.19140045, -0.91129947), (-0.37859672, 0.17345048, -0.90916425), (-0.25499034, -0.09963885, -0.9617963), (-0.178465, 0.05809405, -0.9822297), (-0.36365452, -0.011067656, -0.93146807), (0.3445099, -0.7736157, -0.53181934), (0.22413345, -0.6476677, -0.7282106), (0.28217152, -0.5634503, -0.7764684), (-0.4191183, 0.009174447, -0.90788525), (-0.49457952, 0.1939813, -0.8472086), (-0.4007811, 0.13810778, -0.9057046), (-0.29988748, 0.16049077, -0.9403778), (-0.33700928, 0.12191287, -0.9335748), (-0.37426746, 0.10784129, -0.9210288), (-0.6151021, -0.36844856, -0.69706166), (-0.40486556, -0.25596416, -0.877819), (-0.5078925, -0.48971283, -0.70867944), (-0.17055202, -0.42532206, -0.8888268), (0.06840639, -0.5524936, -0.83070534), (0.07189729, -0.54036313, -0.8383545), (0.13239287, 0.092030376, -0.9869156), (0.32198107, 0.21313697, -0.92244285), (0.17282136, 0.34837225, -0.9212868), (0.13239287, 0.092030376, -0.9869156), (0.301215, 0.11390896, -0.9467281), (0.32198107, 0.21313697, -0.92244285), (-0.4007811, 0.13810778, -0.9057046), (-0.49457952, 0.1939813, -0.8472086), (-0.61941385, 0.15405494, -0.769801), (0.22413345, -0.6476677, -0.7282106), (0.18792379, -0.5515165, -0.81272024), (0.28217152, -0.5634503, -0.7764684), (0.18792379, -0.5515165, -0.81272024), (0.121600136, -0.30828056, -0.9434917), (0.28217152, -0.5634503, -0.7764684), (-0.76160926, -0.627711, -0.16102831), (-0.38843852, -0.8947964, -0.2201251), (-0.6617167, -0.74652207, -0.06954076), (-0.45931622, 0.3505242, -0.81618714), (-0.5448445, 0.36678994, -0.7540621), (-0.3989333, 0.3694526, -0.83925974), (-0.06887217, -0.20591082, -0.97614413), (0.10247141, -0.0037224537, -0.99472904), (-0.16416463, 0.124074504, -0.9785987), (0.10247141, -0.0037224537, -0.99472904), (-0.06887217, -0.20591082, -0.97614413), (0.0385595, -0.28710848, -0.9571217), (-0.37859672, 0.17345048, -0.90916425), (-0.24419631, 0.23059884, -0.94190884), (-0.2925239, 0.2883632, -0.91174364), (-0.24312341, 0.15431035, -0.9576425), (-0.37859672, 0.17345048, -0.90916425), (-0.2925239, 0.2883632, -0.91174364), (-0.12607706, 0.021398008, -0.9917896), (-0.42461792, 0.13781334, -0.89482236), (-0.24312341, 0.15431035, -0.9576425), (0.301215, 0.11390896, -0.9467281), (0.47714183, 0.1923976, -0.85750735), (0.4402426, 0.19567104, -0.87629867), (-0.4460384, 0.01791578, -0.8948345), (-0.12607706, 0.021398008, -0.9917896), (-0.29067472, -0.048566073, -0.9555885), (-0.4460384, 0.01791578, -0.8948345), (-0.42461792, 0.13781334, -0.89482236), (-0.12607706, 0.021398008, -0.9917896), (-0.07412897, -0.35409528, -0.93226683), (-0.058581006, -0.31790063, -0.94631255), (-0.15455057, -0.34080482, -0.92734355), (-0.5519659, -0.55248076, -0.6245789), (-0.65438944, -0.23871434, -0.7174885), (-0.6916753, -0.32801783, -0.6434203), (-0.5519659, -0.55248076, -0.6245789), (-0.4478257, -0.48930687, -0.74835217), (-0.65438944, -0.23871434, -0.7174885), (-0.61941385, 0.15405494, -0.769801), (-0.5722468, 0.097871296, -0.8142203), (-0.34422785, 0.03356996, -0.93828577), (0.121600136, -0.30828056, -0.9434917), (0.10695584, -0.21860866, -0.96993333), (0.06590964, -0.04857751, -0.9966424), (0.45992315, -0.39815387, -0.79369026), (0.27814472, 0.120741576, -0.9529203), (0.06590964, -0.04857751, -0.9966424), (0.10695584, -0.21860866, -0.96993333), (0.45992315, -0.39815387, -0.79369026), (0.06590964, -0.04857751, -0.9966424), (-0.04323444, 0.30183423, -0.9523796), (-0.092187375, 0.38006347, -0.9203549), (-0.037781984, 0.2687882, -0.9624581), (0.06840639, -0.5524936, -0.83070534), (-0.11591684, -0.48975104, -0.8641222), (-0.009388099, -0.44137946, -0.8972714), (0.1556248, 0.78612894, -0.598149), (-0.42210728, 0.0786697, -0.903126), (-0.5214649, 0.24872354, -0.8162175), (0.7122464, -0.13180391, -0.68944377), (0.543596, -0.03596109, -0.83857626), (0.6345588, 0.16236748, -0.7556268), (-0.04323444, 0.30183423, -0.9523796), (0.038752053, 0.27722442, -0.9600234), (0.011084121, 0.38924456, -0.9210678), (-0.12607706, 0.021398008, -0.9917896), (-0.06838815, -0.026529497, -0.997306), (-0.007258001, -0.030426804, -0.9995106), (-0.029585337, -0.081930704, -0.99619883), (-0.12607706, 0.021398008, -0.9917896), (-0.007258001, -0.030426804, -0.9995106), (-0.40486556, -0.25596416, -0.877819), (-0.3617828, 0.024080645, -0.93195134), (-0.26913658, -0.10200753, -0.9576847), (-0.047764473, 0.39057004, -0.9193332), (0.14657785, 0.22254784, -0.96384), (0.033716384, 0.22987214, -0.97263664), (0.100453675, -0.519082, -0.8488009), (-0.009388099, -0.44137946, -0.8972714), (0.070584066, -0.42509133, -0.90239424), (0.21423133, -0.8084097, -0.5482506), (0.3445099, -0.7736157, -0.53181934), (0.22729917, -0.9318606, -0.28279096), (-0.06382644, 0.3577436, -0.93163604), (-0.1457211, 0.30843896, -0.9400163), (-0.03810094, 0.40693915, -0.9126603), (0.06538382, -0.29093295, -0.95450664), (-0.116042994, -0.19989781, -0.97292084), (-0.025127253, -0.063643955, -0.9976562), (-0.3617828, 0.024080645, -0.93195134), (-0.60925305, 0.04657931, -0.79160666), (-0.4797482, 0.14914988, -0.86463636), (0.18792379, -0.5515165, -0.81272024), (0.31522903, -0.4526997, -0.83408254), (0.121600136, -0.30828056, -0.9434917), (0.121600136, -0.30828056, -0.9434917), (0.31522903, -0.4526997, -0.83408254), (0.10695584, -0.21860866, -0.96993333), (-0.23270221, -0.11800899, -0.9653619), (-0.39447707, 0.26462227, -0.87997895), (-0.61620134, 0.17304784, -0.76834255), (-0.009388099, -0.44137946, -0.8972714), (-0.116042994, -0.19989781, -0.97292084), (0.06538382, -0.29093295, -0.95450664), (0.570426, 0.016073883, -0.8211916), (0.5282478, 0.10837448, -0.84214556), (0.543596, -0.03596109, -0.83857626), (-0.03810094, 0.40693915, -0.9126603), (-0.1457211, 0.30843896, -0.9400163), (-0.015475897, 0.36934543, -0.92916334), (0.31522903, -0.4526997, -0.83408254), (0.45992315, -0.39815387, -0.79369026), (0.10695584, -0.21860866, -0.96993333), (-0.8942517, -0.262909, -0.3622056), (-0.5901023, -0.32065958, -0.7409162), (-0.6699267, -0.33512715, -0.6624863), (-0.3617828, 0.024080645, -0.93195134), (-0.4797482, 0.14914988, -0.86463636), (-0.34496683, 0.14121531, -0.92793113), (0.5282478, 0.10837448, -0.84214556), (0.50816506, 0.27141392, -0.8173755), (0.5393348, 0.34356913, -0.7688162), (-0.53398204, -0.15472639, -0.8312177), (-0.39905477, -0.2708017, -0.87602615), (-0.36365452, -0.011067656, -0.93146807), (-0.29067472, -0.048566073, -0.9555885), (-0.029585337, -0.081930704, -0.99619883), (-0.025127253, -0.063643955, -0.9976562), (-0.3285507, -0.3739227, -0.8673155), (-0.1864253, -0.48720965, -0.85315436), (-0.10319789, -0.58678037, -0.80314326), (-0.19917373, -0.7445797, -0.6371271), (-0.19951603, -0.60166353, -0.7734302), (-0.4478257, -0.48930687, -0.74835217), (-0.6004371, 0.28098938, -0.748679), (-0.53398204, -0.15472639, -0.8312177), (-0.36365452, -0.011067656, -0.93146807), (0.028824272, 0.40822512, -0.9124261), (0.00073287025, 0.3308294, -0.94369024), (0.029149108, 0.5269579, -0.84939134), (-0.5837123, -0.15642041, -0.79675126), (-0.74934393, -0.09182422, -0.6557836), (-0.60925305, 0.04657931, -0.79160666), (-0.19740334, -0.64745516, -0.7360935), (-0.718267, -0.45763367, -0.52408385), (-0.5683309, -0.7660872, -0.30018413), (0.070584066, -0.42509133, -0.90239424), (0.06538382, -0.29093295, -0.95450664), (0.03708555, -0.31716135, -0.9476462), (0.070584066, -0.42509133, -0.90239424), (-0.058581006, -0.31790063, -0.94631255), (-0.17055202, -0.42532206, -0.8888268), (0.8983721, 0.31096193, 0.31021002), (0.5976201, 0.584136, 0.5492134), (0.7303506, 0.6483591, 0.21498479), (-0.59974366, -0.5252451, -0.6036763), (-0.76888865, -0.33222634, -0.5462929), (-0.6151021, -0.36844856, -0.69706166), (-0.33973318, -0.7328524, -0.5894987), (-0.46262383, -0.77043957, -0.43863684), (-0.4898299, -0.69162935, -0.53076875), (0.057034962, -0.7214882, -0.6900737), (-0.10319789, -0.58678037, -0.80314326), (-0.1864253, -0.48720965, -0.85315436), (-0.22561704, -0.21563217, 0.9500525), (-0.1023502, -0.3648629, 0.9254186), (-0.43670908, -0.36223125, 0.8234523), (-0.38252926, -0.26465142, -0.8852293), (-0.06887217, -0.20591082, -0.97614413), (-0.33650124, -0.071375996, -0.93897414), (-0.19917373, -0.7445797, -0.6371271), (-0.4478257, -0.48930687, -0.74835217), (-0.5519659, -0.55248076, -0.6245789), (-0.28390387, -0.8107465, -0.5119459), (-0.19917373, -0.7445797, -0.6371271), (-0.5519659, -0.55248076, -0.6245789), (-0.29067472, -0.048566073, -0.9555885), (-0.12607706, 0.021398008, -0.9917896), (-0.029585337, -0.081930704, -0.99619883), (0.6672254, 0.2849614, -0.6881912), (0.5637194, 0.2707861, -0.7803175), (0.48341665, 0.29635894, -0.8236987), (0.570426, 0.016073883, -0.8211916), (0.5511319, 0.09759865, -0.82869065), (0.5282478, 0.10837448, -0.84214556), (-0.12225547, -0.74193543, 0.6592309), (0.095185675, -0.91661394, 0.38827646), (0.030136857, -0.9859453, 0.16432805), (-0.24561794, -0.2976989, -0.9225222), (-0.4106273, -0.3069961, -0.8585678), (-0.12623727, -0.311118, -0.94194996), (-0.3181498, -0.9068677, -0.27635422), (0.27994588, -0.95662403, 0.080628105), (-0.122704074, -0.99235946, -0.0128960395), (-0.5837123, -0.15642041, -0.79675126), (-0.3617828, 0.024080645, -0.93195134), (-0.40486556, -0.25596416, -0.877819), (-0.28390387, -0.8107465, -0.5119459), (-0.5519659, -0.55248076, -0.6245789), (-0.29589933, -0.874036, -0.3853629), (-0.2493699, -0.23882127, -0.9384983), (-0.009388099, -0.44137946, -0.8972714), (-0.11591684, -0.48975104, -0.8641222), (0.6801373, -0.060265444, -0.7306034), (0.48963374, -0.0033477307, -0.87192184), (0.6203783, -0.0032598206, -0.78429604), (-0.007258001, -0.030426804, -0.9995106), (-0.12320392, -0.02447148, -0.99207956), (-0.008142604, -0.14506552, -0.9893885), (-0.48875123, -0.11636698, -0.8646277), (-0.41131172, -0.2484772, -0.8769731), (-0.3285507, -0.3739227, -0.8673155), (-0.25499034, -0.09963885, -0.9617963), (-0.053287975, 0.03853071, -0.9978355), (-0.178465, 0.05809405, -0.9822297), (0.21423133, -0.8084097, -0.5482506), (0.33754775, -0.6609498, -0.67022896), (0.18792379, -0.5515165, -0.81272024), (0.33754775, -0.6609498, -0.67022896), (0.31522903, -0.4526997, -0.83408254), (0.18792379, -0.5515165, -0.81272024), (-0.65438944, -0.23871434, -0.7174885), (-0.4478257, -0.48930687, -0.74835217), (-0.4106273, -0.3069961, -0.8585678), (0.9966044, -0.060561676, -0.055785798), (0.82764876, -0.24990812, -0.502537), (0.93352866, -0.33231995, -0.13449113), (-0.17055202, -0.42532206, -0.8888268), (-0.058581006, -0.31790063, -0.94631255), (-0.2173031, -0.3030445, -0.9278703), (-0.047764473, 0.39057004, -0.9193332), (0.17509228, 0.4221398, -0.8894609), (0.14657785, 0.22254784, -0.96384), (-0.018525995, 0.10767494, -0.9940135), (0.12762953, 0.0902003, -0.9877118), (0.13239287, 0.092030376, -0.9869156), (-0.65438944, -0.23871434, -0.7174885), (-0.38252926, -0.26465142, -0.8852293), (-0.57201463, -0.07364189, -0.81693095), (0.27344394, -0.3065479, -0.91173285), (0.48175472, -0.27959064, -0.83050674), (0.5690124, -0.5257828, -0.6322794), (0.12776764, 0.48213232, -0.86673176), (0.2562443, 0.4214997, -0.86987174), (0.25229448, 0.26211938, -0.9314724), (-0.25499034, -0.09963885, -0.9617963), (-0.09012415, -0.022122068, -0.99568474), (-0.053287975, 0.03853071, -0.9978355), (0.6934749, -0.32417312, -0.6434318), (0.66801757, -0.6265145, -0.40153733), (0.50751424, -0.6102899, -0.6082562), (0.27994588, -0.95662403, 0.080628105), (-0.0019894496, -0.9997337, 0.022988684), (-0.122704074, -0.99235946, -0.0128960395), (0.50915235, 0.09582394, -0.8553254), (0.5991798, 0.08719982, -0.7958515), (0.5829381, 0.000048025166, -0.8125166), (0.5511319, 0.09759865, -0.82869065), (0.4781159, 0.22117768, -0.8499916), (0.5282478, 0.10837448, -0.84214556), (-0.32645038, -0.4114171, -0.8509795), (-0.2493699, -0.23882127, -0.9384983), (-0.11591684, -0.48975104, -0.8641222), (-0.12607706, 0.021398008, -0.9917896), (-0.24312341, 0.15431035, -0.9576425), (-0.06838815, -0.026529497, -0.997306), (-0.24312341, 0.15431035, -0.9576425), (-0.083006784, 0.021639036, -0.996314), (-0.06838815, -0.026529497, -0.997306), (0.6830646, -0.15390755, -0.71395755), (0.6043643, -0.127131, -0.78649956), (0.6522554, -0.18406336, -0.73531187), (0.4745776, 0.045600533, -0.87903166), (0.50915235, 0.09582394, -0.8553254), (0.5829381, 0.000048025166, -0.8125166), (0.028795615, 0.21390346, -0.9764303), (-0.10175319, 0.24021214, -0.9653726), (-0.06382644, 0.3577436, -0.93163604), (-0.41890058, 0.24931513, -0.8731347), (-0.4485605, 0.3430452, -0.825296), (-0.36455342, 0.19140045, -0.91129947), (-0.5078925, -0.48971283, -0.70867944), (-0.40486556, -0.25596416, -0.877819), (-0.32645038, -0.4114171, -0.8509795), (-0.88589257, 0.42307234, 0.19027403), (-0.96865606, -0.06813151, -0.23887958), (-0.91111124, -0.32730713, -0.25049207), (0.50751424, -0.6102899, -0.6082562), (0.44234326, -0.4691546, -0.7643471), (0.6934749, -0.32417312, -0.6434318), (0.44234326, -0.4691546, -0.7643471), (0.68817925, -0.1795562, -0.7029714), (0.6934749, -0.32417312, -0.6434318), (-0.6759483, 0.57811683, -0.45702812), (-0.5437034, 0.5026201, -0.6721307), (-0.7785315, 0.30379283, -0.54918), (0.6203783, -0.0032598206, -0.78429604), (0.6043643, -0.127131, -0.78649956), (0.6830646, -0.15390755, -0.71395755), (0.6043643, -0.127131, -0.78649956), (0.5829381, 0.000048025166, -0.8125166), (0.6522554, -0.18406336, -0.73531187), (0.18811478, 0.6722223, -0.71605164), (0.32035834, 0.3855358, -0.8652934), (0.29217985, 0.25723913, -0.9211184), (-0.12262393, 0.13243152, -0.9835777), (-0.031519674, 0.1370371, -0.9900643), (-0.088106014, 0.24852572, -0.96461), (-0.031519674, 0.1370371, -0.9900643), (-0.10175319, 0.24021214, -0.9653726), (0.028795615, 0.21390346, -0.9764303), (-0.88449687, -0.09426643, -0.45692357), (-0.9109413, -0.076090276, -0.4054579), (-0.52684134, -0.36152673, -0.76924413), (-0.38252926, -0.26465142, -0.8852293), (-0.24561794, -0.2976989, -0.9225222), (-0.06887217, -0.20591082, -0.97614413), (-0.2204727, -0.36659873, -0.90387905), (-0.17055202, -0.42532206, -0.8888268), (-0.2173031, -0.3030445, -0.9278703), (0.44234326, -0.4691546, -0.7643471), (0.67847437, -0.24322066, -0.69319284), (0.68817925, -0.1795562, -0.7029714), (0.6043643, -0.127131, -0.78649956), (0.4745776, 0.045600533, -0.87903166), (0.5829381, 0.000048025166, -0.8125166), (0.4745776, 0.045600533, -0.87903166), (0.43094832, 0.054697257, -0.9007173), (0.50915235, 0.09582394, -0.8553254), (-0.5078925, -0.48971283, -0.70867944), (-0.32645038, -0.4114171, -0.8509795), (-0.33532056, -0.60767734, -0.7199226), (-0.09012415, -0.022122068, -0.99568474), (-0.12840469, 0.074718386, -0.98890316), (0.13239287, 0.092030376, -0.9869156), (-0.23270221, -0.11800899, -0.9653619), (-0.0215857, -0.57216984, -0.819851), (0.26282606, -0.08450447, -0.96113557), (0.50751424, -0.6102899, -0.6082562), (0.54172295, -0.3545518, -0.76212156), (0.44234326, -0.4691546, -0.7643471), (0.44234326, -0.4691546, -0.7643471), (0.44686517, -0.28640127, -0.84751743), (0.67847437, -0.24322066, -0.69319284), (0.67847437, -0.24322066, -0.69319284), (0.44686517, -0.28640127, -0.84751743), (0.48963374, -0.0033477307, -0.87192184), (0.48963374, -0.0033477307, -0.87192184), (0.4432448, -0.1269271, -0.88736886), (0.6203783, -0.0032598206, -0.78429604), (0.4432448, -0.1269271, -0.88736886), (0.45658067, -0.10562036, -0.88339037), (0.6043643, -0.127131, -0.78649956), (0.6203783, -0.0032598206, -0.78429604), (0.4432448, -0.1269271, -0.88736886), (0.6043643, -0.127131, -0.78649956), (0.6043643, -0.127131, -0.78649956), (0.45658067, -0.10562036, -0.88339037), (0.4745776, 0.045600533, -0.87903166), (0.45658067, -0.10562036, -0.88339037), (0.3988621, 0.003490603, -0.9170042), (0.4745776, 0.045600533, -0.87903166), (0.3988621, 0.003490603, -0.9170042), (0.39526573, 0.09353829, -0.91379184), (0.4745776, 0.045600533, -0.87903166), (0.39526573, 0.09353829, -0.91379184), (0.43094832, 0.054697257, -0.9007173), (0.4745776, 0.045600533, -0.87903166), (-0.06887217, -0.20591082, -0.97614413), (-0.12623727, -0.311118, -0.94194996), (0.026960814, -0.35389, -0.9348984), (0.000949754, -0.9982518, 0.05909686), (0.030136857, -0.9859453, 0.16432805), (-0.0019894496, -0.9997337, 0.022988684), (-0.4106273, -0.3069961, -0.8585678), (-0.2204727, -0.36659873, -0.90387905), (-0.12623727, -0.311118, -0.94194996), (-0.33973318, -0.7328524, -0.5894987), (-0.19917373, -0.7445797, -0.6371271), (-0.28390387, -0.8107465, -0.5119459), (-0.1457211, 0.30843896, -0.9400163), (-0.24419631, 0.23059884, -0.94190884), (-0.18829814, 0.36235172, -0.91282254), (-0.34290543, 0.34726235, -0.8728257), (-0.39270934, 0.42883065, -0.8135624), (-0.24067296, 0.5120365, -0.82455754), (0.54172295, -0.3545518, -0.76212156), (0.35518685, -0.40684536, -0.8416169), (0.44234326, -0.4691546, -0.7643471), (0.48963374, -0.0033477307, -0.87192184), (0.30466545, -0.070919074, -0.94981545), (0.4432448, -0.1269271, -0.88736886), (0.50915235, 0.09582394, -0.8553254), (0.43094832, 0.054697257, -0.9007173), (0.47113773, 0.16328445, -0.8668145), (-0.32523423, 0.94020087, 0.10121758), (-0.8356315, 0.5443289, -0.07366125), (-0.47410974, 0.8391813, -0.26644832), (-0.6685689, -0.72058904, -0.18375832), (-0.90639764, -0.39457366, -0.15084717), (-0.29382858, -0.9395531, -0.17579779), (-0.7733428, 0.39109966, -0.49898082), (-0.31921285, 0.27075258, -0.9081829), (-0.58459914, 0.36610252, -0.7240254), (0.07189729, -0.54036313, -0.8383545), (0.100453675, -0.519082, -0.8488009), (-0.17055202, -0.42532206, -0.8888268), (-0.57752246, 0.52907157, -0.6217323), (-0.8095361, 0.31446472, -0.4957451), (-0.5445979, 0.68211156, -0.48799285), (-0.37426746, 0.10784129, -0.9210288), (-0.42461792, 0.13781334, -0.89482236), (-0.4460384, 0.01791578, -0.8948345), (0.44234326, -0.4691546, -0.7643471), (0.27937138, -0.2339865, -0.9312368), (0.44686517, -0.28640127, -0.84751743), (0.44686517, -0.28640127, -0.84751743), (0.27937138, -0.2339865, -0.9312368), (0.48963374, -0.0033477307, -0.87192184), (0.27937138, -0.2339865, -0.9312368), (0.30466545, -0.070919074, -0.94981545), (0.48963374, -0.0033477307, -0.87192184), (-0.33650124, -0.071375996, -0.93897414), (-0.06887217, -0.20591082, -0.97614413), (-0.16416463, 0.124074504, -0.9785987), (0.03708555, -0.31716135, -0.9476462), (-0.008142604, -0.14506552, -0.9893885), (-0.15455057, -0.34080482, -0.92734355), (0.048625186, 0.32706097, -0.9437514), (0.21873905, 0.33852237, -0.91518074), (0.26928166, 0.3002263, -0.91506916), (-0.33004627, 0.49476734, -0.80391216), (-0.1146255, 0.48534405, -0.8667768), (-0.21524914, 0.2844518, -0.9342136), (-0.32487574, 0.3613849, -0.873989), (-0.6073499, 0.29867643, -0.73615116), (-0.45183706, 0.15477824, -0.8785711), (0.4432448, -0.1269271, -0.88736886), (0.3073639, -0.24747081, -0.9188501), (0.45658067, -0.10562036, -0.88339037), (0.39526573, 0.09353829, -0.91379184), (0.41395766, 0.025656864, -0.90993446), (0.43094832, 0.054697257, -0.9007173), (0.5991798, 0.08719982, -0.7958515), (0.570426, 0.016073883, -0.8211916), (0.67539114, -0.0052192016, -0.73744124), (-0.3255986, 0.23396029, -0.9161048), (-0.33650124, -0.071375996, -0.93897414), (-0.16416463, 0.124074504, -0.9785987), (0.026960814, -0.35389, -0.9348984), (-0.2204727, -0.36659873, -0.90387905), (0.00064494426, -0.36496344, -0.93102163), (0.03708555, -0.31716135, -0.9476462), (-0.15455057, -0.34080482, -0.92734355), (-0.058581006, -0.31790063, -0.94631255), (-0.19951603, -0.60166353, -0.7734302), (-0.17055202, -0.42532206, -0.8888268), (-0.4106273, -0.3069961, -0.8585678), (-0.69212383, -0.7019966, 0.16782527), (-0.7274023, -0.61863565, 0.29694417), (-0.64145756, -0.7467345, 0.17583956), (-0.33973318, -0.7328524, -0.5894987), (-0.1502784, -0.695545, -0.7025907), (-0.19917373, -0.7445797, -0.6371271), (0.44234326, -0.4691546, -0.7643471), (0.35518685, -0.40684536, -0.8416169), (0.27937138, -0.2339865, -0.9312368), (-0.2204727, -0.36659873, -0.90387905), (-0.2173031, -0.3030445, -0.9278703), (0.00064494426, -0.36496344, -0.93102163), (-0.2173031, -0.3030445, -0.9278703), (-0.058581006, -0.31790063, -0.94631255), (0.00064494426, -0.36496344, -0.93102163), (-0.058581006, -0.31790063, -0.94631255), (0.070584066, -0.42509133, -0.90239424), (0.03708555, -0.31716135, -0.9476462), (0.27344394, -0.3065479, -0.91173285), (0.3173099, -0.29556534, -0.9010858), (0.48175472, -0.27959064, -0.83050674), (0.48175472, -0.27959064, -0.83050674), (0.3173099, -0.29556534, -0.9010858), (0.54172295, -0.3545518, -0.76212156), (0.54172295, -0.3545518, -0.76212156), (0.3173099, -0.29556534, -0.9010858), (0.35518685, -0.40684536, -0.8416169), (0.30466545, -0.070919074, -0.94981545), (0.3073639, -0.24747081, -0.9188501), (0.4432448, -0.1269271, -0.88736886), (0.45658067, -0.10562036, -0.88339037), (0.3073639, -0.24747081, -0.9188501), (0.3988621, 0.003490603, -0.9170042), (0.4145546, 0.06267971, -0.9078633), (0.47113773, 0.16328445, -0.8668145), (0.43094832, 0.054697257, -0.9007173), (-0.5183715, 0.74702173, -0.41623268), (-0.7867414, 0.4492771, -0.42330602), (-0.45958078, 0.4397767, -0.7716099), (0.4020785, 0.14382389, -0.9042386), (0.45866528, 0.42802495, -0.7787303), (0.47113773, 0.16328445, -0.8668145), (-0.0058580027, 0.4264949, -0.9044709), (0.29509443, 0.13193615, -0.94631505), (0.023939839, 0.26049238, -0.965179), (0.048625186, 0.32706097, -0.9437514), (0.286093, 0.52348936, -0.8025645), (0.10364011, 0.56799906, -0.8164777), (-0.7150186, -0.268906, -0.64532006), (-0.6151021, -0.36844856, -0.69706166), (-0.76888865, -0.33222634, -0.5462929), (-0.5528094, -0.8246835, -0.11957864), (-0.5601452, -0.8271655, 0.045107294), (-0.51276404, -0.8585206, 0.003921195), (-0.5250064, -0.008820472, -0.8510526), (-0.61552185, 0.1700669, -0.76955193), (-0.5772042, 0.21521193, -0.7877303), (-0.33532056, -0.60767734, -0.7199226), (-0.11591684, -0.48975104, -0.8641222), (-0.1502784, -0.695545, -0.7025907), (-0.018525995, 0.10767494, -0.9940135), (-0.22370958, 0.14205189, -0.9642485), (-0.045954794, -0.016335793, -0.99880993), (0.3173099, -0.29556534, -0.9010858), (0.27550882, -0.42752373, -0.86099845), (0.35518685, -0.40684536, -0.8416169), (0.35518685, -0.40684536, -0.8416169), (0.23789412, -0.2319795, -0.94318175), (0.27937138, -0.2339865, -0.9312368), (0.23789412, -0.2319795, -0.94318175), (0.30466545, -0.070919074, -0.94981545), (0.27937138, -0.2339865, -0.9312368), (0.45792538, -0.02600122, -0.8886103), (0.41395766, 0.025656864, -0.90993446), (0.39526573, 0.09353829, -0.91379184), (-0.28837988, 0.011091355, -0.9574519), (-0.09012415, -0.022122068, -0.99568474), (-0.25499034, -0.09963885, -0.9617963), (-0.23781012, 0.25532416, -0.93715304), (-0.2773278, 0.31339413, -0.9082255), (-0.32487574, 0.3613849, -0.873989), (-0.111391515, 0.12844002, -0.9854415), (-0.12320392, -0.02447148, -0.99207956), (-0.12262393, 0.13243152, -0.9835777), (-0.7008725, -0.1302158, -0.7013001), (-0.5387095, -0.35279298, -0.7650681), (-0.53398204, -0.15472639, -0.8312177), (0.5690124, -0.5257828, -0.6322794), (0.338831, -0.6310838, -0.6978014), (0.27344394, -0.3065479, -0.91173285), (0.24212751, -0.14632814, -0.95914674), (0.29054785, -0.1259078, -0.94854057), (0.3073639, -0.24747081, -0.9188501), (0.3073639, -0.24747081, -0.9188501), (0.29054785, -0.1259078, -0.94854057), (0.3988621, 0.003490603, -0.9170042), (0.29054785, -0.1259078, -0.94854057), (0.39526573, 0.09353829, -0.91379184), (0.3988621, 0.003490603, -0.9170042), (0.41395766, 0.025656864, -0.90993446), (0.4669785, 0.0578778, -0.8823725), (0.43094832, 0.054697257, -0.9007173), (0.4669785, 0.0578778, -0.8823725), (0.4145546, 0.06267971, -0.9078633), (0.43094832, 0.054697257, -0.9007173), (0.4145546, 0.06267971, -0.9078633), (0.4020785, 0.14382389, -0.9042386), (0.47113773, 0.16328445, -0.8668145), (-0.5250064, -0.008820472, -0.8510526), (-0.34574425, -0.25724158, -0.902379), (-0.41131172, -0.2484772, -0.8769731), (-0.57752246, 0.52907157, -0.6217323), (-0.5445979, 0.68211156, -0.48799285), (-0.41133305, 0.61813056, -0.66986537), (-0.10175319, 0.24021214, -0.9653726), (-0.2925239, 0.2883632, -0.91174364), (-0.1457211, 0.30843896, -0.9400163), (0.0019268726, -0.99473745, 0.10243824), (0.028315727, -0.9993379, -0.022847934), (0.007696416, -0.9953648, 0.09586249), (0.27344394, -0.3065479, -0.91173285), (0.08770266, -0.2816537, -0.95549953), (0.3173099, -0.29556534, -0.9010858), (0.3173099, -0.29556534, -0.9010858), (0.115605384, -0.44868007, -0.8861838), (0.27550882, -0.42752373, -0.86099845), (0.27550882, -0.42752373, -0.86099845), (0.20929283, -0.41594085, -0.8849801), (0.35518685, -0.40684536, -0.8416169), (0.23789412, -0.2319795, -0.94318175), (0.22328077, -0.06575357, -0.9725338), (0.30466545, -0.070919074, -0.94981545), (0.30466545, -0.070919074, -0.94981545), (0.29431212, -0.29600066, -0.90871555), (0.3073639, -0.24747081, -0.9188501), (0.7768317, -0.57160056, -0.26420677), (0.12727505, -0.81410795, -0.56659454), (0.114479125, -0.723205, -0.68107945), (-0.58459914, 0.36610252, -0.7240254), (-0.90947163, 0.29718208, -0.2907646), (-0.7733428, 0.39109966, -0.49898082), (0.5511319, 0.09759865, -0.82869065), (0.570426, 0.016073883, -0.8211916), (0.5991798, 0.08719982, -0.7958515), (0.3173099, -0.29556534, -0.9010858), (0.08770266, -0.2816537, -0.95549953), (0.115605384, -0.44868007, -0.8861838), (0.115605384, -0.44868007, -0.8861838), (0.20929283, -0.41594085, -0.8849801), (0.27550882, -0.42752373, -0.86099845), (0.35518685, -0.40684536, -0.8416169), (0.20929283, -0.41594085, -0.8849801), (0.23789412, -0.2319795, -0.94318175), (0.30466545, -0.070919074, -0.94981545), (0.22328077, -0.06575357, -0.9725338), (0.29431212, -0.29600066, -0.90871555), (0.29431212, -0.29600066, -0.90871555), (0.30303118, -0.31536493, -0.8992869), (0.3073639, -0.24747081, -0.9188501), (0.3073639, -0.24747081, -0.9188501), (0.30303118, -0.31536493, -0.8992869), (0.24212751, -0.14632814, -0.95914674), (0.45792538, -0.02600122, -0.8886103), (0.39526573, 0.09353829, -0.91379184), (0.29054785, -0.1259078, -0.94854057), (0.45792538, -0.02600122, -0.8886103), (0.4669785, 0.0578778, -0.8823725), (0.41395766, 0.025656864, -0.90993446), (0.00073287025, 0.3308294, -0.94369024), (-0.06382644, 0.3577436, -0.93163604), (-0.03810094, 0.40693915, -0.9126603), (-0.083006784, 0.021639036, -0.996314), (-0.24312341, 0.15431035, -0.9576425), (-0.10175319, 0.24021214, -0.9653726), (-0.24312341, 0.15431035, -0.9576425), (-0.2925239, 0.2883632, -0.91174364), (-0.10175319, 0.24021214, -0.9653726), (0.48523468, -0.87437403, 0.0041459464), (0.50237906, -0.73099184, 0.46180746), (0.5598551, -0.7281588, 0.3954075), (0.27344394, -0.3065479, -0.91173285), (0.09779052, -0.21011047, -0.97277474), (0.08770266, -0.2816537, -0.95549953), (0.30303118, -0.31536493, -0.8992869), (0.27742988, -0.13990736, -0.95050436), (0.24212751, -0.14632814, -0.95914674), (-0.12623727, -0.311118, -0.94194996), (-0.2204727, -0.36659873, -0.90387905), (0.026960814, -0.35389, -0.9348984), (-0.056963813, 0.25963128, -0.9640263), (-0.24783447, 0.65149343, -0.7170316), (-0.15011746, 0.20696905, -0.9667619), (-0.69748336, 0.38816905, -0.6023635), (-0.61552185, 0.1700669, -0.76955193), (-0.61620134, 0.17304784, -0.76834255), (0.17113908, -0.4312143, -0.88587), (0.1592148, -0.06533839, -0.98507947), (0.27344394, -0.3065479, -0.91173285), (0.115605384, -0.44868007, -0.8861838), (0.08770266, -0.2816537, -0.95549953), (0.09779052, -0.21011047, -0.97277474), (0.2394268, -0.16157873, -0.9573751), (0.24212751, -0.14632814, -0.95914674), (0.27742988, -0.13990736, -0.95050436), (0.2394268, -0.16157873, -0.9573751), (0.30979037, -0.24047649, -0.91989183), (0.29054785, -0.1259078, -0.94854057), (0.24212751, -0.14632814, -0.95914674), (0.2394268, -0.16157873, -0.9573751), (0.29054785, -0.1259078, -0.94854057), (0.30979037, -0.24047649, -0.91989183), (0.42303747, -0.07429075, -0.9030615), (0.45792538, -0.02600122, -0.8886103), (0.29054785, -0.1259078, -0.94854057), (0.30979037, -0.24047649, -0.91989183), (0.45792538, -0.02600122, -0.8886103), (0.45792538, -0.02600122, -0.8886103), (0.42303747, -0.07429075, -0.9030615), (0.4669785, 0.0578778, -0.8823725), (0.4669785, 0.0578778, -0.8823725), (0.3546787, 0.099869505, -0.92963916), (0.4145546, 0.06267971, -0.9078633), (0.3546787, 0.099869505, -0.92963916), (0.4020785, 0.14382389, -0.9042386), (0.4145546, 0.06267971, -0.9078633), (-0.12320392, -0.02447148, -0.99207956), (-0.031519674, 0.1370371, -0.9900643), (-0.12262393, 0.13243152, -0.9835777), (-0.008142604, -0.14506552, -0.9893885), (-0.12320392, -0.02447148, -0.99207956), (-0.19416271, -0.24930608, -0.948761), (0.2047279, 0.22788744, -0.9519211), (-0.35552448, -0.07765679, -0.93143535), (-0.42210728, 0.0786697, -0.903126), (0.08454101, -0.33148712, 0.9396643), (-0.44635057, -0.3501747, 0.8234979), (-0.1420328, -0.21302138, 0.9666689), (-0.64680445, 0.22478433, -0.72877705), (-0.5906848, 0.41788256, -0.690265), (-0.30950058, 0.20240676, -0.92910755), (0.18243186, 0.23967527, -0.95355874), (0.2012353, 0.21173255, -0.9563857), (0.14288545, 0.4129683, -0.89946705), (0.70091695, -0.5494212, -0.45480964), (0.54172295, -0.3545518, -0.76212156), (0.50751424, -0.6102899, -0.6082562), (-0.50114894, 0.1425418, -0.85354054), (-0.7617474, 0.19508657, -0.6178042), (-0.6454864, 0.2772698, -0.7116661), (0.4020785, 0.14382389, -0.9042386), (0.2988152, 0.141766, -0.9437223), (0.32035834, 0.3855358, -0.8652934), (0.20929283, -0.41594085, -0.8849801), (0.18867166, -0.33733153, -0.92228544), (0.23789412, -0.2319795, -0.94318175), (0.22328077, -0.06575357, -0.9725338), (0.17934446, -0.20787655, -0.9615731), (0.29431212, -0.29600066, -0.90871555), (0.42303747, -0.07429075, -0.9030615), (0.35222095, 0.08164166, -0.93234915), (0.4669785, 0.0578778, -0.8823725), (0.35222095, 0.08164166, -0.93234915), (0.3546787, 0.099869505, -0.92963916), (0.4669785, 0.0578778, -0.8823725), (0.4020785, 0.14382389, -0.9042386), (0.3546787, 0.099869505, -0.92963916), (0.2988152, 0.141766, -0.9437223), (0.030136857, -0.9859453, 0.16432805), (0.014048632, -0.9980274, 0.06118804), (-0.0019894496, -0.9997337, 0.022988684), (-0.5250064, -0.008820472, -0.8510526), (-0.41959354, -0.0753968, -0.9045754), (-0.34574425, -0.25724158, -0.902379), (-0.33700928, 0.12191287, -0.9335748), (-0.41890058, 0.24931513, -0.8731347), (-0.36455342, 0.19140045, -0.91129947), (-0.15455057, -0.34080482, -0.92734355), (-0.19416271, -0.24930608, -0.948761), (-0.3209265, -0.24521452, -0.9148093), (0.05108447, 0.40225464, -0.9141015), (0.18243186, 0.23967527, -0.95355874), (0.14288545, 0.4129683, -0.89946705), (0.56647444, -0.7808643, -0.26335832), (0.50692546, -0.85074013, -0.13880861), (-0.012127084, -0.7994914, -0.60055524), (-0.22370958, 0.14205189, -0.9642485), (-0.4007811, 0.13810778, -0.9057046), (-0.34422785, 0.03356996, -0.93828577), (-0.57392466, 0.27946785, -0.76974547), (-0.5448445, 0.36678994, -0.7540621), (-0.45931622, 0.3505242, -0.81618714), (-0.40486556, -0.25596416, -0.877819), (-0.26913658, -0.10200753, -0.9576847), (-0.2493699, -0.23882127, -0.9384983), (-0.41890058, 0.24931513, -0.8731347), (-0.57392466, 0.27946785, -0.76974547), (-0.45931622, 0.3505242, -0.81618714), (0.27344394, -0.3065479, -0.91173285), (0.1592148, -0.06533839, -0.98507947), (0.09779052, -0.21011047, -0.97277474), (0.115605384, -0.44868007, -0.8861838), (0.18867166, -0.33733153, -0.92228544), (0.20929283, -0.41594085, -0.8849801), (0.18867166, -0.33733153, -0.92228544), (0.045546394, -0.17691545, -0.9831716), (0.23789412, -0.2319795, -0.94318175), (0.23789412, -0.2319795, -0.94318175), (0.045546394, -0.17691545, -0.9831716), (0.22328077, -0.06575357, -0.9725338), (0.30979037, -0.24047649, -0.91989183), (0.229689, -0.106977716, -0.96736693), (0.42303747, -0.07429075, -0.9030615), (0.229689, -0.106977716, -0.96736693), (0.2586206, 0.030488396, -0.96549773), (0.42303747, -0.07429075, -0.9030615), (0.42303747, -0.07429075, -0.9030615), (0.2586206, 0.030488396, -0.96549773), (0.35222095, 0.08164166, -0.93234915), (-0.5019043, 0.5113458, -0.6975798), (-0.32487574, 0.3613849, -0.873989), (-0.3255986, 0.23396029, -0.9161048), (-0.58459914, 0.36610252, -0.7240254), (-0.32487574, 0.3613849, -0.873989), (-0.5019043, 0.5113458, -0.6975798), (-0.4485605, 0.3430452, -0.825296), (-0.45931622, 0.3505242, -0.81618714), (-0.39270934, 0.42883065, -0.8135624), (0.16279149, 0.2844107, -0.9447802), (0.2012353, 0.21173255, -0.9563857), (0.18243186, 0.23967527, -0.95355874), (-0.18829814, 0.36235172, -0.91282254), (-0.03861277, 0.4395541, -0.89738584), (-0.015475897, 0.36934543, -0.92916334), (-0.4191183, 0.009174447, -0.90788525), (-0.50114894, 0.1425418, -0.85354054), (-0.49457952, 0.1939813, -0.8472086), (0.115605384, -0.44868007, -0.8861838), (0.2539496, -0.62522864, -0.7379694), (0.18867166, -0.33733153, -0.92228544), (0.30303118, -0.31536493, -0.8992869), (0.29431212, -0.29600066, -0.90871555), (0.27742988, -0.13990736, -0.95050436), (-0.06887217, -0.20591082, -0.97614413), (-0.24561794, -0.2976989, -0.9225222), (-0.12623727, -0.311118, -0.94194996), (0.052944217, 0.12859267, -0.9902832), (0.2012353, 0.21173255, -0.9563857), (0.16279149, 0.2844107, -0.9447802), (0.052944217, 0.12859267, -0.9902832), (0.20963658, 0.2887644, -0.93416685), (0.2012353, 0.21173255, -0.9563857), (-0.48875123, -0.11636698, -0.8646277), (-0.61620134, 0.17304784, -0.76834255), (-0.61552185, 0.1700669, -0.76955193), (0.026534816, -0.97648054, -0.21396673), (0.19180067, -0.9516986, -0.23975466), (-0.38843852, -0.8947964, -0.2201251), (0.2539496, -0.62522864, -0.7379694), (0.27259728, -0.5077363, -0.8172481), (0.18867166, -0.33733153, -0.92228544), (0.18867166, -0.33733153, -0.92228544), (0.17934446, -0.20787655, -0.9615731), (0.045546394, -0.17691545, -0.9831716), (0.17934446, -0.20787655, -0.9615731), (0.22328077, -0.06575357, -0.9725338), (0.045546394, -0.17691545, -0.9831716), (0.17934446, -0.20787655, -0.9615731), (0.31911698, -0.24791844, -0.91471356), (0.29431212, -0.29600066, -0.90871555), (0.2586206, 0.030488396, -0.96549773), (0.3611067, 0.11531819, -0.92536676), (0.35222095, 0.08164166, -0.93234915), (0.3611067, 0.11531819, -0.92536676), (0.3546787, 0.099869505, -0.92963916), (0.35222095, 0.08164166, -0.93234915), (-0.19416271, -0.24930608, -0.948761), (-0.12320392, -0.02447148, -0.99207956), (-0.30569237, -0.08142651, -0.94864213), (0.32244653, 0.31922922, -0.8911347), (0.2713146, 0.43590143, -0.85812485), (0.2012353, 0.21173255, -0.9563857), (-0.39905477, -0.2708017, -0.87602615), (-0.25499034, -0.09963885, -0.9617963), (-0.36365452, -0.011067656, -0.93146807), (-0.38252926, -0.26465142, -0.8852293), (-0.4106273, -0.3069961, -0.8585678), (-0.24561794, -0.2976989, -0.9225222), (0.31911698, -0.24791844, -0.91471356), (0.27742988, -0.13990736, -0.95050436), (0.29431212, -0.29600066, -0.90871555), (0.2394268, -0.16157873, -0.9573751), (0.20625925, -0.24539277, -0.9472273), (0.30979037, -0.24047649, -0.91989183), (0.30979037, -0.24047649, -0.91989183), (0.20625925, -0.24539277, -0.9472273), (0.229689, -0.106977716, -0.96736693), (0.29217985, 0.25723913, -0.9211184), (0.2988152, 0.141766, -0.9437223), (0.3546787, 0.099869505, -0.92963916), (0.3611067, 0.11531819, -0.92536676), (0.29217985, 0.25723913, -0.9211184), (0.3546787, 0.099869505, -0.92963916), (-0.6073499, 0.29867643, -0.73615116), (-0.79149234, -0.0039183428, -0.6111664), (-0.57201463, -0.07364189, -0.81693095), (0.1381764, 0.3608774, -0.92232037), (0.18243186, 0.23967527, -0.95355874), (0.12537716, 0.5362219, -0.8347135), (-0.23270221, -0.11800899, -0.9653619), (-0.48875123, -0.11636698, -0.8646277), (-0.25729582, -0.39647165, -0.88125426), (-0.21306917, -0.86168283, -0.46054745), (-0.25921842, -0.44357708, -0.85793084), (-0.31921285, 0.27075258, -0.9081829), (-0.88449687, -0.09426643, -0.45692357), (-0.47647125, -0.552428, -0.6839579), (-0.73144907, -0.44305888, -0.51834464), (0.27259728, -0.5077363, -0.8172481), (0.21193959, -0.1806687, -0.9604376), (0.18867166, -0.33733153, -0.92228544), (0.21193959, -0.1806687, -0.9604376), (0.2020847, -0.20872298, -0.956868), (0.18867166, -0.33733153, -0.92228544), (0.2020847, -0.20872298, -0.956868), (0.23381187, -0.29924056, -0.9250877), (0.18867166, -0.33733153, -0.92228544), (0.18867166, -0.33733153, -0.92228544), (0.23381187, -0.29924056, -0.9250877), (0.17934446, -0.20787655, -0.9615731), (0.23381187, -0.29924056, -0.9250877), (0.31911698, -0.24791844, -0.91471356), (0.17934446, -0.20787655, -0.9615731), (-0.12320392, -0.02447148, -0.99207956), (-0.083006784, 0.021639036, -0.996314), (-0.031519674, 0.1370371, -0.9900643), (-0.026487285, 0.39081672, -0.92008734), (0.20963658, 0.2887644, -0.93416685), (0.052944217, 0.12859267, -0.9902832), (0.05108447, 0.40225464, -0.9141015), (0.14288545, 0.4129683, -0.89946705), (0.006958981, 0.5045976, -0.86332655), (-0.29067472, -0.048566073, -0.9555885), (-0.37426746, 0.10784129, -0.9210288), (-0.4460384, 0.01791578, -0.8948345), (-0.70096695, -0.13765024, -0.69978404), (-0.52684134, -0.36152673, -0.76924413), (-0.9109413, -0.076090276, -0.4054579), (0.09779052, -0.21011047, -0.97277474), (0.11831923, -0.48616317, -0.86582094), (0.115605384, -0.44868007, -0.8861838), (0.115605384, -0.44868007, -0.8861838), (0.11831923, -0.48616317, -0.86582094), (0.2539496, -0.62522864, -0.7379694), (0.229689, -0.106977716, -0.96736693), (0.32153416, -0.05182157, -0.9454788), (0.2586206, 0.030488396, -0.96549773), (0.2586206, 0.030488396, -0.96549773), (0.32153416, -0.05182157, -0.9454788), (0.3611067, 0.11531819, -0.92536676), (0.12302004, -0.71925884, -0.6837637), (0.2539496, -0.62522864, -0.7379694), (0.11831923, -0.48616317, -0.86582094), (0.2539496, -0.62522864, -0.7379694), (0.12302004, -0.71925884, -0.6837637), (0.27259728, -0.5077363, -0.8172481), (0.23381187, -0.29924056, -0.9250877), (0.2140091, -0.27211654, -0.93816453), (0.31911698, -0.24791844, -0.91471356), (0.2140091, -0.27211654, -0.93816453), (0.21883464, -0.060886547, -0.97386044), (0.27742988, -0.13990736, -0.95050436), (0.31911698, -0.24791844, -0.91471356), (0.2140091, -0.27211654, -0.93816453), (0.27742988, -0.13990736, -0.95050436), (0.21883464, -0.060886547, -0.97386044), (0.2394268, -0.16157873, -0.9573751), (0.27742988, -0.13990736, -0.95050436), (0.100453675, -0.519082, -0.8488009), (0.070584066, -0.42509133, -0.90239424), (-0.17055202, -0.42532206, -0.8888268), (-0.45183706, 0.15477824, -0.8785711), (-0.33650124, -0.071375996, -0.93897414), (-0.3255986, 0.23396029, -0.9161048), (0.17113908, -0.4312143, -0.88587), (0.1269265, -0.14001004, -0.98198104), (0.1592148, -0.06533839, -0.98507947), (0.12302004, -0.71925884, -0.6837637), (0.113891765, -0.5101478, -0.85251266), (0.27259728, -0.5077363, -0.8172481), (0.27259728, -0.5077363, -0.8172481), (0.113891765, -0.5101478, -0.85251266), (0.21193959, -0.1806687, -0.9604376), (0.2020847, -0.20872298, -0.956868), (0.2140091, -0.27211654, -0.93816453), (0.23381187, -0.29924056, -0.9250877), (0.20625925, -0.24539277, -0.9472273), (0.22654325, -0.16096741, -0.96060795), (0.229689, -0.106977716, -0.96736693), (0.32153416, -0.05182157, -0.9454788), (0.38769013, 0.057622116, -0.91998696), (0.3611067, 0.11531819, -0.92536676), (-0.48875123, -0.11636698, -0.8646277), (-0.61552185, 0.1700669, -0.76955193), (-0.5250064, -0.008820472, -0.8510526), (0.56610864, -0.6372172, -0.5229485), (0.31522903, -0.4526997, -0.83408254), (0.33754775, -0.6609498, -0.67022896), (0.14657785, 0.22254784, -0.96384), (0.18243186, 0.23967527, -0.95355874), (0.1381764, 0.3608774, -0.92232037), (-0.2493699, -0.23882127, -0.9384983), (-0.116042994, -0.19989781, -0.97292084), (-0.009388099, -0.44137946, -0.8972714), (-0.22370958, 0.14205189, -0.9642485), (-0.34422785, 0.03356996, -0.93828577), (-0.045954794, -0.016335793, -0.99880993), (0.12484366, -0.72100294, -0.6815928), (-0.013975418, -0.46513107, -0.88513154), (0.17113908, -0.4312143, -0.88587), (0.17113908, -0.4312143, -0.88587), (-0.013975418, -0.46513107, -0.88513154), (0.1269265, -0.14001004, -0.98198104), (0.23643403, -0.075179614, -0.96873474), (0.2394268, -0.16157873, -0.9573751), (0.21883464, -0.060886547, -0.97386044), (0.2394268, -0.16157873, -0.9573751), (0.23643403, -0.075179614, -0.96873474), (0.20625925, -0.24539277, -0.9472273), (0.229689, -0.106977716, -0.96736693), (0.22654325, -0.16096741, -0.96060795), (0.32153416, -0.05182157, -0.9454788), (0.25229448, 0.26211938, -0.9314724), (0.29217985, 0.25723913, -0.9211184), (0.3611067, 0.11531819, -0.92536676), (0.14657785, 0.22254784, -0.96384), (0.16279149, 0.2844107, -0.9447802), (0.18243186, 0.23967527, -0.95355874), (0.4402426, 0.19567104, -0.87629867), (0.47919208, 0.34708163, -0.8061695), (0.32198107, 0.21313697, -0.92244285), (0.30369085, 0.3361797, -0.89149034), (0.26282606, -0.08450447, -0.96113557), (0.48341665, 0.29635894, -0.8236987), (0.1269265, -0.14001004, -0.98198104), (0.15264235, -0.07391854, -0.98551327), (0.1592148, -0.06533839, -0.98507947), (0.15264235, -0.07391854, -0.98551327), (0.09779052, -0.21011047, -0.97277474), (0.1592148, -0.06533839, -0.98507947), (0.113891765, -0.5101478, -0.85251266), (0.16005045, -0.29527286, -0.94191176), (0.21193959, -0.1806687, -0.9604376), (0.2020847, -0.20872298, -0.956868), (0.16005045, -0.29527286, -0.94191176), (0.2140091, -0.27211654, -0.93816453), (0.32153416, -0.05182157, -0.9454788), (0.21315373, 0.016073449, -0.97688645), (0.38769013, 0.057622116, -0.91998696), (0.25229448, 0.26211938, -0.9314724), (0.3611067, 0.11531819, -0.92536676), (0.38769013, 0.057622116, -0.91998696), (-0.32645038, -0.4114171, -0.8509795), (-0.40486556, -0.25596416, -0.877819), (-0.2493699, -0.23882127, -0.9384983), (-0.3285507, -0.3739227, -0.8673155), (-0.41131172, -0.2484772, -0.8769731), (-0.1864253, -0.48720965, -0.85315436), (-0.6974708, -0.03832063, -0.7155879), (-0.7785315, 0.30379283, -0.54918), (-0.5260783, 0.2280383, -0.81929255), (0.12484366, -0.72100294, -0.6815928), (-0.28336734, -0.75166273, -0.5955721), (-0.013975418, -0.46513107, -0.88513154), (0.09779052, -0.21011047, -0.97277474), (0.15264235, -0.07391854, -0.98551327), (0.11831923, -0.48616317, -0.86582094), (0.21193959, -0.1806687, -0.9604376), (0.16005045, -0.29527286, -0.94191176), (0.2020847, -0.20872298, -0.956868), (0.16005045, -0.29527286, -0.94191176), (0.15164913, -0.29037514, -0.9448199), (0.2140091, -0.27211654, -0.93816453), (0.22654325, -0.16096741, -0.96060795), (0.21594265, -0.1049174, -0.9707528), (0.32153416, -0.05182157, -0.9454788), (0.21594265, -0.1049174, -0.9707528), (0.21315373, 0.016073449, -0.97688645), (0.32153416, -0.05182157, -0.9454788), (0.21315373, 0.016073449, -0.97688645), (0.25229448, 0.26211938, -0.9314724), (0.38769013, 0.057622116, -0.91998696), (-0.68396926, -0.01969998, -0.7292447), (-0.7617474, 0.19508657, -0.6178042), (-0.50114894, 0.1425418, -0.85354054), (0.03708555, -0.31716135, -0.9476462), (0.06538382, -0.29093295, -0.95450664), (-0.008142604, -0.14506552, -0.9893885), (-0.42461792, 0.13781334, -0.89482236), (-0.37426746, 0.10784129, -0.9210288), (-0.37859672, 0.17345048, -0.90916425), (0.20625925, -0.24539277, -0.9472273), (0.22710767, -0.17097966, -0.958743), (0.22654325, -0.16096741, -0.96060795), (-0.20028117, 0.25201452, -0.94677144), (-0.15126656, 0.40943748, -0.8997107), (-0.16355607, 0.3226008, -0.9322972), (-0.16355607, 0.3226008, -0.9322972), (-0.15126656, 0.40943748, -0.8997107), (-0.16550025, 0.5419755, -0.82393706), (-0.48875123, -0.11636698, -0.8646277), (-0.5250064, -0.008820472, -0.8510526), (-0.41131172, -0.2484772, -0.8769731), (-0.68396926, -0.01969998, -0.7292447), (-0.50114894, 0.1425418, -0.85354054), (-0.50882804, -0.1622441, -0.8454413), (-0.12840469, 0.074718386, -0.98890316), (-0.22370958, 0.14205189, -0.9642485), (-0.018525995, 0.10767494, -0.9940135), (0.15264235, -0.07391854, -0.98551327), (0.11138217, -0.49888042, -0.85948384), (0.11831923, -0.48616317, -0.86582094), (0.11831923, -0.48616317, -0.86582094), (0.11138217, -0.49888042, -0.85948384), (0.12302004, -0.71925884, -0.6837637), (0.113891765, -0.5101478, -0.85251266), (0.0027308958, -0.48916447, -0.8721872), (0.16005045, -0.29527286, -0.94191176), (0.15164913, -0.29037514, -0.9448199), (0.12237842, -0.28496084, -0.9506949), (0.2140091, -0.27211654, -0.93816453), (0.2140091, -0.27211654, -0.93816453), (0.12237842, -0.28496084, -0.9506949), (0.21883464, -0.060886547, -0.97386044), (0.23643403, -0.075179614, -0.96873474), (0.22710767, -0.17097966, -0.958743), (0.20625925, -0.24539277, -0.9472273), (0.22654325, -0.16096741, -0.96060795), (0.19603218, -0.15235467, -0.96868956), (0.21594265, -0.1049174, -0.9707528), (0.6158694, -0.76686466, -0.18062013), (0.58877265, -0.77926415, -0.21469536), (0.82570726, -0.521061, -0.21610896), (0.15446487, 0.34763104, -0.92482066), (0.12776764, 0.48213232, -0.86673176), (0.25229448, 0.26211938, -0.9314724), (-0.73298496, -0.22978713, -0.6402585), (-0.68396926, -0.01969998, -0.7292447), (-0.50882804, -0.1622441, -0.8454413), (-0.07965509, -0.81704223, 0.57104903), (0.007696416, -0.9953648, 0.09586249), (-0.06814306, -0.79468393, 0.60318655), (-0.4106273, -0.3069961, -0.8585678), (-0.17055202, -0.42532206, -0.8888268), (-0.2204727, -0.36659873, -0.90387905), (0.11138217, -0.49888042, -0.85948384), (0.044887494, -0.7088133, -0.7039665), (0.12302004, -0.71925884, -0.6837637), (0.044887494, -0.7088133, -0.7039665), (0.0027308958, -0.48916447, -0.8721872), (0.113891765, -0.5101478, -0.85251266), (0.12302004, -0.71925884, -0.6837637), (0.044887494, -0.7088133, -0.7039665), (0.113891765, -0.5101478, -0.85251266), (0.0027308958, -0.48916447, -0.8721872), (0.06712593, -0.45300895, -0.88897514), (0.16005045, -0.29527286, -0.94191176), (0.12237842, -0.28496084, -0.9506949), (0.18499437, -0.16636124, -0.9685561), (0.21883464, -0.060886547, -0.97386044), (0.18499437, -0.16636124, -0.9685561), (0.23643403, -0.075179614, -0.96873474), (0.21883464, -0.060886547, -0.97386044), (0.2713146, 0.43590143, -0.85812485), (0.14288545, 0.4129683, -0.89946705), (0.2012353, 0.21173255, -0.9563857), (-0.31921285, 0.27075258, -0.9081829), (-0.23781012, 0.25532416, -0.93715304), (-0.58459914, 0.36610252, -0.7240254), (0.028795615, 0.21390346, -0.9764303), (-0.06382644, 0.3577436, -0.93163604), (0.00073287025, 0.3308294, -0.94369024), (0.16005045, -0.29527286, -0.94191176), (0.20845388, -0.23236741, -0.9500276), (0.15164913, -0.29037514, -0.9448199), (0.22710767, -0.17097966, -0.958743), (0.19603218, -0.15235467, -0.96868956), (0.22654325, -0.16096741, -0.96060795), (0.15140519, 0.22772746, -0.9618818), (0.25229448, 0.26211938, -0.9314724), (0.21315373, 0.016073449, -0.97688645), (0.15140519, 0.22772746, -0.9618818), (0.15446487, 0.34763104, -0.92482066), (0.25229448, 0.26211938, -0.9314724), (-0.34422785, 0.03356996, -0.93828577), (-0.517247, -0.039887037, -0.8549062), (-0.19740334, -0.64745516, -0.7360935), (-0.70096695, -0.13765024, -0.69978404), (-0.42210728, 0.0786697, -0.903126), (-0.35552448, -0.07765679, -0.93143535), (0.06712593, -0.45300895, -0.88897514), (0.06984887, -0.37664604, -0.9237202), (0.16005045, -0.29527286, -0.94191176), (0.16005045, -0.29527286, -0.94191176), (0.06984887, -0.37664604, -0.9237202), (0.20845388, -0.23236741, -0.9500276), (0.15164913, -0.29037514, -0.9448199), (0.14527135, -0.27996665, -0.94895464), (0.12237842, -0.28496084, -0.9506949), (0.19603218, -0.15235467, -0.96868956), (0.12083914, -0.07984847, -0.98945546), (0.21594265, -0.1049174, -0.9707528), (0.12083914, -0.07984847, -0.98945546), (0.21315373, 0.016073449, -0.97688645), (0.21594265, -0.1049174, -0.9707528), (-0.65438944, -0.23871434, -0.7174885), (-0.4106273, -0.3069961, -0.8585678), (-0.38252926, -0.26465142, -0.8852293), (0.033716384, 0.22987214, -0.97263664), (-0.092187375, 0.38006347, -0.9203549), (-0.047764473, 0.39057004, -0.9193332), (-0.59974366, -0.5252451, -0.6036763), (-0.6594454, -0.59160066, -0.4638323), (-0.76888865, -0.33222634, -0.5462929), (-0.48875123, -0.11636698, -0.8646277), (-0.3285507, -0.3739227, -0.8673155), (-0.25729582, -0.39647165, -0.88125426), (-0.18829814, 0.36235172, -0.91282254), (-0.34290543, 0.34726235, -0.8728257), (-0.24067296, 0.5120365, -0.82455754), (-0.8095361, 0.31446472, -0.4957451), (-0.7309083, 0.2947873, -0.615527), (-0.77669567, -0.038613975, -0.6286914), (-0.24067296, 0.5120365, -0.82455754), (-0.39270934, 0.42883065, -0.8135624), (-0.31404108, 0.56351835, -0.7640845), (0.14527135, -0.27996665, -0.94895464), (0.18499437, -0.16636124, -0.9685561), (0.12237842, -0.28496084, -0.9506949), (0.18499437, -0.16636124, -0.9685561), (0.26555917, -0.18379782, -0.94641256), (0.22710767, -0.17097966, -0.958743), (0.23643403, -0.075179614, -0.96873474), (0.18499437, -0.16636124, -0.9685561), (0.22710767, -0.17097966, -0.958743), (0.26555917, -0.18379782, -0.94641256), (0.25290772, -0.11843117, -0.96021444), (0.19603218, -0.15235467, -0.96868956), (0.22710767, -0.17097966, -0.958743), (0.26555917, -0.18379782, -0.94641256), (0.19603218, -0.15235467, -0.96868956), (0.20822914, -0.5669927, -0.7969691), (0.19736668, -0.4973135, -0.84482294), (0.07709324, -0.9636072, -0.25596443), (-0.7309083, 0.2947873, -0.615527), (-0.4769235, 0.13732037, -0.8681516), (-0.77669567, -0.038613975, -0.6286914), (-0.36455342, 0.19140045, -0.91129947), (-0.24419631, 0.23059884, -0.94190884), (-0.37859672, 0.17345048, -0.90916425), (-0.013975418, -0.46513107, -0.88513154), (0.15814334, -0.18266132, -0.970374), (0.1269265, -0.14001004, -0.98198104), (0.1269265, -0.14001004, -0.98198104), (0.15814334, -0.18266132, -0.970374), (0.15264235, -0.07391854, -0.98551327), (0.15164913, -0.29037514, -0.9448199), (0.20845388, -0.23236741, -0.9500276), (0.14527135, -0.27996665, -0.94895464), (0.25290772, -0.11843117, -0.96021444), (0.09073597, -0.06614157, -0.9936761), (0.19603218, -0.15235467, -0.96868956), (0.19603218, -0.15235467, -0.96868956), (0.09073597, -0.06614157, -0.9936761), (0.12083914, -0.07984847, -0.98945546), (0.12083914, -0.07984847, -0.98945546), (0.13051134, -0.003078109, -0.991442), (0.21315373, 0.016073449, -0.97688645), (0.21315373, 0.016073449, -0.97688645), (0.13051134, -0.003078109, -0.991442), (0.15140519, 0.22772746, -0.9618818), (-0.4898299, -0.69162935, -0.53076875), (-0.38279048, -0.7019322, -0.60063523), (-0.33973318, -0.7328524, -0.5894987), (-0.025127253, -0.063643955, -0.9976562), (-0.007258001, -0.030426804, -0.9995106), (-0.008142604, -0.14506552, -0.9893885), (-0.4478257, -0.48930687, -0.74835217), (-0.19951603, -0.60166353, -0.7734302), (-0.4106273, -0.3069961, -0.8585678), (0.29217985, 0.25723913, -0.9211184), (0.25229448, 0.26211938, -0.9314724), (0.2562443, 0.4214997, -0.86987174), (0.06712593, -0.45300895, -0.88897514), (-0.091528945, -0.42932364, -0.89850074), (0.06984887, -0.37664604, -0.9237202), (0.14527135, -0.27996665, -0.94895464), (0.100035414, -0.3158449, -0.9435226), (0.18499437, -0.16636124, -0.9685561), (0.09073597, -0.06614157, -0.9936761), (0.13051134, -0.003078109, -0.991442), (0.12083914, -0.07984847, -0.98945546), (-0.24419631, 0.23059884, -0.94190884), (-0.36455342, 0.19140045, -0.91129947), (-0.34290543, 0.34726235, -0.8728257), (0.079860196, 0.7080619, -0.70162016), (0.08772562, 0.92416996, -0.37177163), (0.7141602, 0.6879384, 0.12928985), (-0.9166517, 0.29328796, -0.27153596), (-0.7886005, -0.15360364, -0.59541184), (-0.7733428, 0.39109966, -0.49898082), (-0.9166517, 0.29328796, -0.27153596), (-0.8719043, -0.32641268, -0.3650173), (-0.7886005, -0.15360364, -0.59541184), (-0.3434998, 0.20149514, -0.9172827), (-0.25921842, -0.44357708, -0.85793084), (-0.22074991, -0.845684, -0.48588872), (0.8700867, -0.17603566, -0.4603918), (0.38381708, -0.47765252, -0.7902737), (-0.14047794, -0.34555006, -0.9278259), (0.008042317, 0.6045964, -0.79649144), (0.10158138, 0.21611832, -0.9710685), (0.1381764, 0.3608774, -0.92232037), (0.20845388, -0.23236741, -0.9500276), (0.100035414, -0.3158449, -0.9435226), (0.14527135, -0.27996665, -0.94895464), (0.26555917, -0.18379782, -0.94641256), (0.20293063, -0.18321125, -0.9619006), (0.25290772, -0.11843117, -0.96021444), (0.1715505, -0.98517466, 0.0011755495), (0.6551739, -0.75468516, 0.03460465), (0.37413302, -0.9235158, -0.08451581), (-0.29067472, -0.048566073, -0.9555885), (-0.25582063, 0.0029492744, -0.9667198), (-0.37426746, 0.10784129, -0.9210288), (0.54172295, -0.3545518, -0.76212156), (0.76972014, -0.34309414, -0.53834695), (0.48175472, -0.27959064, -0.83050674), (-0.025127253, -0.063643955, -0.9976562), (-0.008142604, -0.14506552, -0.9893885), (0.06538382, -0.29093295, -0.95450664), (0.2776778, -0.906496, -0.31805658), (0.45199344, -0.8476778, -0.27774844), (0.64303005, -0.7089091, -0.28975874), (-0.117647916, -0.59550667, 0.7946891), (-0.07965509, -0.81704223, 0.57104903), (-0.06814306, -0.79468393, 0.60318655), (-0.64680445, 0.22478433, -0.72877705), (-0.64344645, -0.47379425, -0.60124516), (-0.83437866, 0.2550955, -0.48860872), (-0.29874602, -0.24604231, -0.92207056), (-0.31435004, -0.5255507, -0.79055715), (-0.5175812, -0.33996534, -0.78519636), (-0.5175812, -0.33996534, -0.78519636), (-0.57116044, -0.09936705, -0.8148018), (-0.29874602, -0.24604231, -0.92207056), (-0.15455057, -0.34080482, -0.92734355), (-0.008142604, -0.14506552, -0.9893885), (-0.19416271, -0.24930608, -0.948761), (0.15814334, -0.18266132, -0.970374), (0.21027443, -0.1021264, -0.97229356), (0.15264235, -0.07391854, -0.98551327), (0.15264235, -0.07391854, -0.98551327), (0.12264485, -0.022786612, -0.992189), (0.11138217, -0.49888042, -0.85948384), (-0.03094371, -0.4968134, -0.8673055), (0.044887494, -0.7088133, -0.7039665), (0.11138217, -0.49888042, -0.85948384), (0.12264485, -0.022786612, -0.992189), (-0.03094371, -0.4968134, -0.8673055), (0.11138217, -0.49888042, -0.85948384), (-0.03094371, -0.4968134, -0.8673055), (0.0027308958, -0.48916447, -0.8721872), (0.044887494, -0.7088133, -0.7039665), (0.0027308958, -0.48916447, -0.8721872), (-0.091528945, -0.42932364, -0.89850074), (0.06712593, -0.45300895, -0.88897514), (0.06984887, -0.37664604, -0.9237202), (0.100035414, -0.3158449, -0.9435226), (0.20845388, -0.23236741, -0.9500276), (0.100035414, -0.3158449, -0.9435226), (0.10646347, -0.24571732, -0.9634774), (0.18499437, -0.16636124, -0.9685561), (0.13051134, -0.003078109, -0.991442), (0.02167344, 0.25035143, -0.9679124), (0.15140519, 0.22772746, -0.9618818), (0.7997539, 0.41937962, -0.4295515), (0.79446137, 0.49406892, -0.35316715), (0.83672124, 0.41857317, -0.35312063), (-0.41133305, 0.61813056, -0.66986537), (-0.35297173, 0.4074013, -0.84227973), (-0.57752246, 0.52907157, -0.6217323), (0.20384642, 0.06405067, 0.97690547), (-0.027354654, -0.51600105, 0.85615104), (0.19233075, -0.47231376, 0.86019105), (0.006958981, 0.5045976, -0.86332655), (0.048625186, 0.32706097, -0.9437514), (-0.048447844, 0.3842212, -0.92196894), (-0.41890058, 0.24931513, -0.8731347), (-0.45931622, 0.3505242, -0.81618714), (-0.4485605, 0.3430452, -0.825296), (-0.010320473, 0.40468994, -0.9143957), (-0.16355607, 0.3226008, -0.9322972), (-0.16550025, 0.5419755, -0.82393706), (0.6551739, -0.75468516, 0.03460465), (0.4316533, -0.89022344, 0.14552557), (0.71676046, -0.66356426, 0.21432917), (0.4402426, 0.19567104, -0.87629867), (0.5637194, 0.2707861, -0.7803175), (0.5884947, 0.29931146, -0.751057), (0.15264235, -0.07391854, -0.98551327), (0.21027443, -0.1021264, -0.97229356), (0.12264485, -0.022786612, -0.992189), (0.10646347, -0.24571732, -0.9634774), (0.20293063, -0.18321125, -0.9619006), (0.26555917, -0.18379782, -0.94641256), (0.18499437, -0.16636124, -0.9685561), (0.10646347, -0.24571732, -0.9634774), (0.26555917, -0.18379782, -0.94641256), (0.20293063, -0.18321125, -0.9619006), (0.10306871, -0.047130626, -0.9935569), (0.25290772, -0.11843117, -0.96021444), (0.25290772, -0.11843117, -0.96021444), (0.10306871, -0.047130626, -0.9935569), (0.09073597, -0.06614157, -0.9936761), (0.09073597, -0.06614157, -0.9936761), (0.014233156, -0.038436607, -0.9991597), (0.13051134, -0.003078109, -0.991442), (-0.9632474, 0.021751193, -0.26773366), (-0.73144907, -0.44305888, -0.51834464), (-0.962484, 0.012088223, -0.2710689), (-0.26913658, -0.10200753, -0.9576847), (-0.25582063, 0.0029492744, -0.9667198), (-0.2493699, -0.23882127, -0.9384983), (-0.49264413, 0.09452328, -0.8650821), (-0.5772042, 0.21521193, -0.7877303), (-0.6209948, 0.43756935, -0.65030646), (-0.46262383, -0.77043957, -0.43863684), (-0.33973318, -0.7328524, -0.5894987), (-0.28390387, -0.8107465, -0.5119459), (-0.43180045, -0.75701654, -0.4903819), (-0.3738997, -0.51097745, -0.77401626), (-0.026100839, -0.9985556, -0.04696286), (-0.3738997, -0.51097745, -0.77401626), (-0.43180045, -0.75701654, -0.4903819), (-0.4769235, 0.13732037, -0.8681516), (0.4316533, -0.89022344, 0.14552557), (0.27994588, -0.95662403, 0.080628105), (0.71676046, -0.66356426, 0.21432917), (-0.31435004, -0.5255507, -0.79055715), (-0.30536386, -0.6192945, -0.7233444), (-0.5175812, -0.33996534, -0.78519636), (-0.29874602, -0.24604231, -0.92207056), (-0.57116044, -0.09936705, -0.8148018), (-0.20828348, 0.23818831, -0.9486223), (-0.5837123, -0.15642041, -0.79675126), (-0.7150186, -0.268906, -0.64532006), (-0.74934393, -0.09182422, -0.6557836), (-0.6603598, -0.3598595, 0.65910995), (-0.33148786, 0.047533527, 0.9422613), (-0.12225547, -0.74193543, 0.6592309), (-0.20475966, -0.4630914, -0.86233395), (0.0027308958, -0.48916447, -0.8721872), (-0.03094371, -0.4968134, -0.8673055), (-0.20475966, -0.4630914, -0.86233395), (-0.091528945, -0.42932364, -0.89850074), (0.0027308958, -0.48916447, -0.8721872), (0.06984887, -0.37664604, -0.9237202), (-0.091528945, -0.42932364, -0.89850074), (0.100035414, -0.3158449, -0.9435226), (-0.091528945, -0.42932364, -0.89850074), (-0.16301912, -0.3773506, -0.9116092), (0.100035414, -0.3158449, -0.9435226), (0.100035414, -0.3158449, -0.9435226), (-0.16301912, -0.3773506, -0.9116092), (0.10646347, -0.24571732, -0.9634774), (0.014233156, -0.038436607, -0.9991597), (0.02167344, 0.25035143, -0.9679124), (0.13051134, -0.003078109, -0.991442), (-0.25582063, 0.0029492744, -0.9667198), (-0.29067472, -0.048566073, -0.9555885), (-0.2493699, -0.23882127, -0.9384983), (-0.34496683, 0.14121531, -0.92793113), (-0.42159325, 0.22854634, -0.8775111), (-0.41890058, 0.24931513, -0.8731347), (-0.04323444, 0.30183423, -0.9523796), (0.011084121, 0.38924456, -0.9210678), (-0.092187375, 0.38006347, -0.9203549), (-0.20828348, 0.23818831, -0.9486223), (-0.57116044, -0.09936705, -0.8148018), (-0.6064609, 0.21697047, -0.7649372), (-0.4797482, 0.14914988, -0.86463636), (-0.42159325, 0.22854634, -0.8775111), (-0.34496683, 0.14121531, -0.92793113), (-0.7593494, -0.55912864, -0.33281165), (-0.9702638, 0.026556697, -0.24058868), (-0.8095361, 0.31446472, -0.4957451), (0.35047135, -0.81921977, 0.45392588), (0.20669228, -0.64587563, 0.7349305), (0.23140958, -0.7658154, 0.5999803), (0.5511319, 0.09759865, -0.82869065), (0.50915235, 0.09582394, -0.8553254), (0.46731856, 0.24578078, -0.8492379), (-0.88449687, -0.09426643, -0.45692357), (-0.52684134, -0.36152673, -0.76924413), (-0.47647125, -0.552428, -0.6839579), (0.10646347, -0.24571732, -0.9634774), (-0.07691046, -0.1672752, -0.98290575), (0.20293063, -0.18321125, -0.9619006), (0.20293063, -0.18321125, -0.9619006), (-0.07691046, -0.1672752, -0.98290575), (0.10306871, -0.047130626, -0.9935569), (-0.2925239, 0.2883632, -0.91174364), (-0.24419631, 0.23059884, -0.94190884), (-0.1457211, 0.30843896, -0.9400163), (-0.57201463, -0.07364189, -0.81693095), (-0.38252926, -0.26465142, -0.8852293), (-0.33650124, -0.071375996, -0.93897414), (-0.10175319, 0.24021214, -0.9653726), (-0.1457211, 0.30843896, -0.9400163), (-0.06382644, 0.3577436, -0.93163604), (-0.74905336, -0.25794122, -0.6102337), (-0.42210728, 0.0786697, -0.903126), (-0.70096695, -0.13765024, -0.69978404), (0.22342522, -0.88933504, 0.398954), (-0.010869834, -0.9999349, -0.0034638424), (0.031846683, -0.9613535, 0.27346903), (-0.61025804, -0.067189895, -0.78934824), (-0.57116044, -0.09936705, -0.8148018), (-0.5175812, -0.33996534, -0.78519636), (0.15814334, -0.18266132, -0.970374), (0.19736668, -0.4973135, -0.84482294), (0.21027443, -0.1021264, -0.97229356), (-0.20475966, -0.4630914, -0.86233395), (-0.31957003, -0.3970884, -0.8603464), (-0.091528945, -0.42932364, -0.89850074), (-0.31957003, -0.3970884, -0.8603464), (-0.16301912, -0.3773506, -0.9116092), (-0.091528945, -0.42932364, -0.89850074), (0.10646347, -0.24571732, -0.9634774), (-0.16116115, -0.27056426, -0.9491164), (-0.07691046, -0.1672752, -0.98290575), (-0.10337351, 0.05660706, -0.99303055), (0.02167344, 0.25035143, -0.9679124), (0.014233156, -0.038436607, -0.9991597), (-0.47643602, -0.66600466, -0.5739743), (-0.38279048, -0.7019322, -0.60063523), (-0.4898299, -0.69162935, -0.53076875), (-0.8095361, 0.31446472, -0.4957451), (-0.9702638, 0.026556697, -0.24058868), (-0.8501395, 0.42886472, -0.3055127), (-0.3617828, 0.024080645, -0.93195134), (-0.25582063, 0.0029492744, -0.9667198), (-0.26913658, -0.10200753, -0.9576847), (0.39536312, -0.91615075, -0.06599754), (0.25492045, -0.8550625, -0.4515348), (0.2974425, -0.91589993, -0.26954654), (-0.5006188, -0.13615242, -0.8548937), (-0.61025804, -0.067189895, -0.78934824), (-0.5175812, -0.33996534, -0.78519636), (-0.61025804, -0.067189895, -0.78934824), (-0.6064609, 0.21697047, -0.7649372), (-0.57116044, -0.09936705, -0.8148018), (0.08772562, 0.92416996, -0.37177163), (0.079860196, 0.7080619, -0.70162016), (-0.6064609, 0.21697047, -0.7649372), (-0.16301912, -0.3773506, -0.9116092), (-0.16116115, -0.27056426, -0.9491164), (0.10646347, -0.24571732, -0.9634774), (-0.10337351, 0.05660706, -0.99303055), (-0.21524914, 0.2844518, -0.9342136), (0.02167344, 0.25035143, -0.9679124), (-0.21524914, 0.2844518, -0.9342136), (-0.1146255, 0.48534405, -0.8667768), (0.02167344, 0.25035143, -0.9679124), (-0.38279048, -0.7019322, -0.60063523), (-0.33532056, -0.60767734, -0.7199226), (-0.1502784, -0.695545, -0.7025907), (-0.50882804, -0.1622441, -0.8454413), (-0.4191183, 0.009174447, -0.90788525), (-0.4349633, -0.1718754, -0.8838925), (-0.7964196, 0.20476519, -0.5690227), (-0.6454864, 0.2772698, -0.7116661), (-0.7617474, 0.19508657, -0.6178042), (-0.38279048, -0.7019322, -0.60063523), (-0.1502784, -0.695545, -0.7025907), (-0.33973318, -0.7328524, -0.5894987), (-0.5482103, -0.82992446, -0.10339648), (-0.8448375, -0.17937076, -0.5040592), (-0.83901477, 0.5282562, 0.1303828), (-0.45989716, -0.35804984, -0.81258535), (-0.31957003, -0.3970884, -0.8603464), (-0.20475966, -0.4630914, -0.86233395), (-0.07691046, -0.1672752, -0.98290575), (-0.06674746, -0.023915961, -0.99748325), (0.10306871, -0.047130626, -0.9935569), (0.09073597, -0.06614157, -0.9936761), (-0.10337351, 0.05660706, -0.99303055), (0.014233156, -0.038436607, -0.9991597), (-0.32645038, -0.4114171, -0.8509795), (-0.11591684, -0.48975104, -0.8641222), (-0.33532056, -0.60767734, -0.7199226), (-0.3617828, 0.024080645, -0.93195134), (-0.27855578, 0.0813649, -0.95696723), (-0.25582063, 0.0029492744, -0.9667198), (-0.083006784, 0.021639036, -0.996314), (-0.10175319, 0.24021214, -0.9653726), (-0.031519674, 0.1370371, -0.9900643), (0.026960814, -0.35389, -0.9348984), (0.00064494426, -0.36496344, -0.93102163), (-0.01921755, -0.39628565, -0.91792613), (-0.04828888, -0.9518656, -0.30268806), (-0.0030211906, -0.9924018, 0.123002425), (0.07709324, -0.9636072, -0.25596443), (-0.3617828, 0.024080645, -0.93195134), (-0.3621289, 0.110581025, -0.9255455), (-0.27855578, 0.0813649, -0.95696723), (-0.22894391, -0.13346641, -0.9642465), (-0.03094371, -0.4968134, -0.8673055), (0.12264485, -0.022786612, -0.992189), (-0.22894391, -0.13346641, -0.9642465), (-0.20475966, -0.4630914, -0.86233395), (-0.03094371, -0.4968134, -0.8673055), (-0.16301912, -0.3773506, -0.9116092), (-0.43151477, -0.32820368, -0.8402841), (-0.16116115, -0.27056426, -0.9491164), (-0.43151477, -0.32820368, -0.8402841), (-0.07691046, -0.1672752, -0.98290575), (-0.16116115, -0.27056426, -0.9491164), (0.10306871, -0.047130626, -0.9935569), (-0.06674746, -0.023915961, -0.99748325), (0.09073597, -0.06614157, -0.9936761), (0.09073597, -0.06614157, -0.9936761), (-0.06674746, -0.023915961, -0.99748325), (-0.10337351, 0.05660706, -0.99303055), (0.123662375, 0.14202784, -0.9821078), (-0.186059, 0.34451467, -0.92015857), (-0.0012548297, 0.3662348, -0.9305216), (-0.75941294, -0.23023722, 0.6085086), (-0.9000499, -0.37269938, 0.22584301), (-0.40434313, -0.8780339, 0.25605318), (0.68319607, -0.6140792, -0.39515814), (0.45992315, -0.39815387, -0.79369026), (0.31522903, -0.4526997, -0.83408254), (0.68319607, -0.6140792, -0.39515814), (0.77248055, -0.44990683, -0.44817156), (0.45992315, -0.39815387, -0.79369026), (-0.7570338, -0.37951505, 0.5318534), (-0.7189797, -0.56101197, 0.4102848), (-0.632924, -0.48116198, 0.60653955), (-0.20448917, -0.41327986, -0.88734657), (-0.3294147, -0.43125603, -0.83994293), (-0.14805838, -0.5870909, -0.7958662), (-0.5006188, -0.13615242, -0.8548937), (-0.5175812, -0.33996534, -0.78519636), (-0.3294147, -0.43125603, -0.83994293), (0.21027443, -0.1021264, -0.97229356), (0.123662375, 0.14202784, -0.9821078), (0.12264485, -0.022786612, -0.992189), (-0.22894391, -0.13346641, -0.9642465), (-0.45989716, -0.35804984, -0.81258535), (-0.20475966, -0.4630914, -0.86233395), (-0.43151477, -0.32820368, -0.8402841), (-0.16301912, -0.3773506, -0.9116092), (-0.31957003, -0.3970884, -0.8603464), (-0.88355577, -0.19945122, -0.42373145), (-0.5519659, -0.55248076, -0.6245789), (-0.6916753, -0.32801783, -0.6434203), (-0.009388099, -0.44137946, -0.8972714), (0.06538382, -0.29093295, -0.95450664), (0.070584066, -0.42509133, -0.90239424), (-0.47647125, -0.552428, -0.6839579), (-0.52684134, -0.36152673, -0.76924413), (0.114479125, -0.723205, -0.68107945), (-0.7309083, 0.2947873, -0.615527), (-0.8095361, 0.31446472, -0.4957451), (-0.57752246, 0.52907157, -0.6217323), (-0.8429949, 0.2013671, -0.49880934), (-0.6842741, 0.4033017, -0.6075498), (-0.78786373, 0.4057145, -0.46332115), (-0.6499544, 0.18372133, -0.7374319), (-0.61025804, -0.067189895, -0.78934824), (-0.5006188, -0.13615242, -0.8548937), (-0.64344645, -0.47379425, -0.60124516), (-0.64680445, 0.22478433, -0.72877705), (-0.30950058, 0.20240676, -0.92910755), (0.21027443, -0.1021264, -0.97229356), (0.21006387, -0.05363533, -0.9762154), (0.123662375, 0.14202784, -0.9821078), (-0.0012548297, 0.3662348, -0.9305216), (0.12264485, -0.022786612, -0.992189), (0.123662375, 0.14202784, -0.9821078), (-0.0012548297, 0.3662348, -0.9305216), (-0.22894391, -0.13346641, -0.9642465), (0.12264485, -0.022786612, -0.992189), (-0.43151477, -0.32820368, -0.8402841), (-0.38162208, -0.2051452, -0.90126574), (-0.07691046, -0.1672752, -0.98290575), (-0.31369328, -0.068289764, -0.9470655), (-0.06674746, -0.023915961, -0.99748325), (-0.07691046, -0.1672752, -0.98290575), (-0.38162208, -0.2051452, -0.90126574), (-0.31369328, -0.068289764, -0.9470655), (-0.07691046, -0.1672752, -0.98290575), (-0.31369328, -0.068289764, -0.9470655), (-0.28486884, 0.0949687, -0.9538505), (-0.06674746, -0.023915961, -0.99748325), (-0.28486884, 0.0949687, -0.9538505), (-0.10337351, 0.05660706, -0.99303055), (-0.06674746, -0.023915961, -0.99748325), (-0.10337351, 0.05660706, -0.99303055), (-0.28486884, 0.0949687, -0.9538505), (-0.21524914, 0.2844518, -0.9342136), (-0.27855578, 0.0813649, -0.95696723), (-0.3621289, 0.110581025, -0.9255455), (-0.29988748, 0.16049077, -0.9403778), (-0.47643602, -0.66600466, -0.5739743), (-0.5078925, -0.48971283, -0.70867944), (-0.33532056, -0.60767734, -0.7199226), (-0.8448375, -0.17937076, -0.5040592), (-0.8429949, 0.2013671, -0.49880934), (-0.78786373, 0.4057145, -0.46332115), (-0.78786373, 0.4057145, -0.46332115), (-0.83901477, 0.5282562, 0.1303828), (-0.8448375, -0.17937076, -0.5040592), (0.028795615, 0.21390346, -0.9764303), (0.0029346552, 0.22459112, -0.9744486), (-0.088106014, 0.24852572, -0.96461), (0.20822914, -0.5669927, -0.7969691), (0.21006387, -0.05363533, -0.9762154), (0.21027443, -0.1021264, -0.97229356), (-0.45989716, -0.35804984, -0.81258535), (-0.43151477, -0.32820368, -0.8402841), (-0.31957003, -0.3970884, -0.8603464), (-0.074242614, 0.9043319, 0.4203234), (-0.18741368, 0.93810004, 0.29128063), (-0.18640007, 0.7097053, 0.6793919), (0.2988152, 0.141766, -0.9437223), (0.29217985, 0.25723913, -0.9211184), (0.32035834, 0.3855358, -0.8652934), (-0.033379868, 0.203342, -0.9785386), (-0.010320473, 0.40468994, -0.9143957), (0.038752053, 0.27722442, -0.9600234), (-0.35504547, 0.88452846, -0.30257598), (-0.6335783, -0.2852761, -0.7191634), (-0.69906676, 0.6669307, -0.25789395), (0.301215, 0.11390896, -0.9467281), (0.4402426, 0.19567104, -0.87629867), (0.32198107, 0.21313697, -0.92244285), (-0.0012548297, 0.3662348, -0.9305216), (-0.32959914, 0.44554067, -0.8323809), (-0.22894391, -0.13346641, -0.9642465), (-0.7033694, -0.21921806, -0.6761767), (-0.45989716, -0.35804984, -0.81258535), (-0.22894391, -0.13346641, -0.9642465), (-0.6476901, -0.30382887, -0.69870275), (-0.43151477, -0.32820368, -0.8402841), (-0.45989716, -0.35804984, -0.81258535), (-0.6476901, -0.30382887, -0.69870275), (-0.71958065, -0.324478, -0.6139361), (-0.43151477, -0.32820368, -0.8402841), (-0.60574687, -0.27905473, -0.74511695), (-0.43151477, -0.32820368, -0.8402841), (-0.71958065, -0.324478, -0.6139361), (-0.60574687, -0.27905473, -0.74511695), (-0.38162208, -0.2051452, -0.90126574), (-0.43151477, -0.32820368, -0.8402841), (-0.053287975, 0.03853071, -0.9978355), (0.11112244, 0.19617122, -0.9742529), (-0.11170251, 0.39677772, -0.91109276), (-0.033379868, 0.203342, -0.9785386), (-0.16355607, 0.3226008, -0.9322972), (-0.010320473, 0.40468994, -0.9143957), (0.21873905, 0.33852237, -0.91518074), (0.006958981, 0.5045976, -0.86332655), (0.18954842, 0.57325786, -0.79714924), (-0.36612034, -0.18574306, -0.91184175), (-0.3294147, -0.43125603, -0.83994293), (-0.20448917, -0.41327986, -0.88734657), (-0.36612034, -0.18574306, -0.91184175), (-0.5006188, -0.13615242, -0.8548937), (-0.3294147, -0.43125603, -0.83994293), (-0.21374576, -0.5730615, 0.7911469), (-0.43670908, -0.36223125, 0.8234523), (-0.1023502, -0.3648629, 0.9254186), (-0.2389058, -0.8600432, 0.4508321), (-0.2691753, -0.8897734, 0.36857548), (-0.28996757, -0.8602265, 0.41943902), (-0.32959914, 0.44554067, -0.8323809), (-0.7033694, -0.21921806, -0.6761767), (-0.22894391, -0.13346641, -0.9642465), (-0.37058988, 0.86662453, -0.33410332), (-0.18237467, 0.6480371, -0.73945075), (-0.5239205, 0.36621252, -0.7690226), (-0.58459914, 0.36610252, -0.7240254), (-0.5019043, 0.5113458, -0.6975798), (-0.8141717, 0.48869303, -0.313534), (-0.60574687, -0.27905473, -0.74511695), (-0.5600202, -0.14395519, -0.8158764), (-0.38162208, -0.2051452, -0.90126574), (-0.5600202, -0.14395519, -0.8158764), (-0.31369328, -0.068289764, -0.9470655), (-0.38162208, -0.2051452, -0.90126574), (-0.28486884, 0.0949687, -0.9538505), (-0.5260783, 0.2280383, -0.81929255), (-0.21524914, 0.2844518, -0.9342136), (-0.5260783, 0.2280383, -0.81929255), (-0.33004627, 0.49476734, -0.80391216), (-0.21524914, 0.2844518, -0.9342136), (-0.6617167, -0.74652207, -0.06954076), (-0.7643055, -0.6348301, -0.11326072), (-0.76160926, -0.627711, -0.16102831), (-0.3989333, 0.3694526, -0.83925974), (-0.11170251, 0.39677772, -0.91109276), (-0.31404108, 0.56351835, -0.7640845), (-0.3989333, 0.3694526, -0.83925974), (-0.178465, 0.05809405, -0.9822297), (-0.11170251, 0.39677772, -0.91109276), (0.13590449, 0.104346834, 0.98521155), (0.31110305, 0.14118168, 0.9398311), (0.12760359, 0.33755198, 0.9326177), (-0.7150186, -0.268906, -0.64532006), (-0.76888865, -0.33222634, -0.5462929), (-0.82524836, -0.18554752, -0.53342044), (0.028315727, -0.9993379, -0.022847934), (0.023388105, -0.9994483, -0.023585396), (0.007696416, -0.9953648, 0.09586249), (-0.07044898, -0.5397641, -0.8388633), (-0.14805838, -0.5870909, -0.7958662), (0.014819242, -0.70623416, -0.7078232), (-0.07044898, -0.5397641, -0.8388633), (-0.20448917, -0.41327986, -0.88734657), (-0.14805838, -0.5870909, -0.7958662), (-0.2824014, -0.24968438, -0.92623276), (-0.36612034, -0.18574306, -0.91184175), (-0.20448917, -0.41327986, -0.88734657), (-0.5261304, 0.07361911, -0.84721136), (-0.5006188, -0.13615242, -0.8548937), (-0.36612034, -0.18574306, -0.91184175), (-0.5261304, 0.07361911, -0.84721136), (-0.60296595, 0.29914132, -0.73955834), (-0.6499544, 0.18372133, -0.7374319), (-0.5006188, -0.13615242, -0.8548937), (-0.5261304, 0.07361911, -0.84721136), (-0.6499544, 0.18372133, -0.7374319), (-0.6826508, 0.16212206, -0.71253365), (-0.4797482, 0.14914988, -0.86463636), (-0.60925305, 0.04657931, -0.79160666), (-0.2493699, -0.23882127, -0.9384983), (-0.29067472, -0.048566073, -0.9555885), (-0.116042994, -0.19989781, -0.97292084), (-0.52924967, -0.0066861566, -0.84843975), (-0.31369328, -0.068289764, -0.9470655), (-0.5600202, -0.14395519, -0.8158764), (-0.10319789, -0.58678037, -0.80314326), (-0.25729582, -0.39647165, -0.88125426), (-0.3285507, -0.3739227, -0.8673155), (-0.178465, 0.05809405, -0.9822297), (-0.053287975, 0.03853071, -0.9978355), (-0.11170251, 0.39677772, -0.91109276), (0.00064494426, -0.36496344, -0.93102163), (-0.058581006, -0.31790063, -0.94631255), (-0.07412897, -0.35409528, -0.93226683), (-0.21357302, -0.96831006, 0.1294688), (-0.39042413, -0.7627084, 0.51560146), (-0.108233176, -0.8826765, 0.45734861), (-0.5572152, -0.351299, -0.7523964), (-0.3181498, -0.9068677, -0.27635422), (-0.122704074, -0.99235946, -0.0128960395), (0.10158138, 0.21611832, -0.9710685), (0.033716384, 0.22987214, -0.97263664), (0.14657785, 0.22254784, -0.96384), (-0.23270221, -0.11800899, -0.9653619), (0.2746507, 0.31602055, -0.9081288), (-0.39447707, 0.26462227, -0.87997895), (-0.52924967, -0.0066861566, -0.84843975), (-0.28486884, 0.0949687, -0.9538505), (-0.31369328, -0.068289764, -0.9470655), (-0.28486884, 0.0949687, -0.9538505), (-0.52924967, -0.0066861566, -0.84843975), (-0.5260783, 0.2280383, -0.81929255), (-0.5260783, 0.2280383, -0.81929255), (-0.5437034, 0.5026201, -0.6721307), (-0.33004627, 0.49476734, -0.80391216), (-0.5837123, -0.15642041, -0.79675126), (-0.60925305, 0.04657931, -0.79160666), (-0.3617828, 0.024080645, -0.93195134), (-0.15011746, 0.20696905, -0.9667619), (-0.16355607, 0.3226008, -0.9322972), (-0.033379868, 0.203342, -0.9785386), (0.033512466, -0.99864507, 0.03981041), (0.08725533, -0.99402946, 0.065514036), (-0.20263019, -0.9791539, 0.0140940165), (0.08725533, -0.99402946, 0.065514036), (-0.33103532, -0.93041146, -0.1573221), (-0.20263019, -0.9791539, 0.0140940165), (0.121575005, -0.9695442, 0.21261156), (0.006804497, -0.9989128, -0.04611737), (-0.33103532, -0.93041146, -0.1573221), (0.08725533, -0.99402946, 0.065514036), (0.121575005, -0.9695442, 0.21261156), (-0.33103532, -0.93041146, -0.1573221), (0.21733269, -0.6318195, 0.7440233), (0.24584846, -0.086955965, 0.96540004), (0.1851918, -0.4577911, 0.8695581), (0.1431319, -0.98959625, -0.014576037), (-0.23883659, -0.9710531, 0.0036044419), (-0.010869834, -0.9999349, -0.0034638424), (0.034194745, -0.9785811, 0.20300213), (0.05473727, -0.8472051, 0.52843845), (-0.159454, -0.9361927, 0.31323737), (-0.34695187, -0.9353557, -0.068805404), (-0.2339844, -0.90481925, -0.35574332), (-0.03535235, -0.98411596, -0.17397165), (0.5601152, -0.8276674, 0.03517831), (0.45909035, -0.8802036, 0.120322585), (0.45836627, -0.8875529, -0.046368957), (-0.6398279, -0.7319674, 0.23418805), (-0.5307812, -0.747741, 0.39894196), (-0.46071714, -0.8289963, 0.31702507), (-0.23883659, -0.9710531, 0.0036044419), (-0.2350271, -0.95302093, 0.19108506), (-0.48336235, -0.8633284, 0.14499962), (0.45909035, -0.8802036, 0.120322585), (0.39635664, -0.8777787, 0.2690837), (0.38774744, -0.9145859, 0.1148242), (-0.5601452, -0.8271655, 0.045107294), (-0.48336235, -0.8633284, 0.14499962), (-0.6398279, -0.7319674, 0.23418805), (-0.019062374, -0.99864316, 0.048461862), (-0.30002457, -0.8907839, 0.34130514), (0.000949754, -0.9982518, 0.05909686), (0.0016377692, -0.9999862, -0.00500398), (0.01866885, -0.99972093, -0.014473318), (0.018017918, -0.9994679, -0.027188452), (-0.117647916, -0.59550667, 0.7946891), (-0.124401025, -0.61770743, 0.7765061), (-0.07965509, -0.81704223, 0.57104903), (-0.34695187, -0.9353557, -0.068805404), (-0.13667946, -0.98715717, -0.0827012), (-0.2339844, -0.90481925, -0.35574332), (-0.7107045, -0.7010767, 0.058227845), (-0.20263019, -0.9791539, 0.0140940165), (-0.33103532, -0.93041146, -0.1573221), (0.23485602, -0.46150556, 0.85548544), (0.09865782, -0.93955153, 0.3278866), (0.07655345, -0.9436843, 0.32186893), (-0.2339844, -0.90481925, -0.35574332), (-0.13667946, -0.98715717, -0.0827012), (-0.03535235, -0.98411596, -0.17397165), (-0.9651873, -0.0794768, -0.2491925), (-0.962484, 0.012088223, -0.2710689), (-0.7099642, -0.5525628, -0.43660668), (-0.13667946, -0.98715717, -0.0827012), (0.23030971, -0.96841, 0.09560048), (-0.03535235, -0.98411596, -0.17397165), (0.033512466, -0.99864507, 0.03981041), (-0.20263019, -0.9791539, 0.0140940165), (-0.03217884, -0.99915063, 0.025742287), (-0.6482716, 0.06548023, 0.7585883), (-0.27621555, 0.0014689193, 0.9610946), (-0.43625435, -0.7146312, 0.5467946), (-0.7099642, -0.5525628, -0.43660668), (-0.011004529, -0.9110386, -0.41217405), (-0.46889415, -0.83141786, -0.29813167), (-0.84307927, -0.3533579, 0.40540788), (-0.4028432, -0.9129921, 0.06451829), (-0.40861017, -0.8758809, 0.25665218), (-0.26577422, -0.36665386, 0.891588), (-0.34260368, -0.5181747, 0.78365666), (-0.17811333, -0.52131015, 0.8345726), (0.75197846, -0.56277436, -0.34323952), (0.82570726, -0.521061, -0.21610896), (0.58877265, -0.77926415, -0.21469536), (0.48341167, -0.73504114, 0.47542375), (0.35047135, -0.81921977, 0.45392588), (0.39635664, -0.8777787, 0.2690837), (0.026534816, -0.97648054, -0.21396673), (-0.29382858, -0.9395531, -0.17579779), (0.36375645, -0.89763147, -0.24887547), (0.034194745, -0.9785811, 0.20300213), (-0.159454, -0.9361927, 0.31323737), (-0.019062374, -0.99864316, 0.048461862), (-0.28208676, -0.9430109, -0.17651507), (-0.6685689, -0.72058904, -0.18375832), (-0.29382858, -0.9395531, -0.17579779), (0.026534816, -0.97648054, -0.21396673), (-0.28208676, -0.9430109, -0.17651507), (-0.29382858, -0.9395531, -0.17579779), (-0.24327245, -0.8493921, 0.4683497), (-0.39042413, -0.7627084, 0.51560146), (-0.47257355, -0.86729425, 0.15644449), (0.18834533, -0.9816834, -0.02870062), (0.16645803, -0.96984106, -0.17804499), (0.22729917, -0.9318606, -0.28279096), (0.18834533, -0.9816834, -0.02870062), (-0.18226822, -0.98070323, 0.07070641), (0.16645803, -0.96984106, -0.17804499), (-0.18226822, -0.98070323, 0.07070641), (-0.13667946, -0.98715717, -0.0827012), (-0.34695187, -0.9353557, -0.068805404), (0.6361548, -0.68773913, 0.34974554), (0.61079043, -0.6132706, 0.5008335), (0.5315208, -0.79590696, 0.28985828), (-0.52684134, -0.36152673, -0.76924413), (0.430587, -0.6497393, -0.62644523), (0.114479125, -0.723205, -0.68107945), (0.23485602, -0.46150556, 0.85548544), (0.2581334, -0.48780972, 0.8339118), (0.09865782, -0.93955153, 0.3278866), (0.23030971, -0.96841, 0.09560048), (0.08725533, -0.99402946, 0.065514036), (0.033512466, -0.99864507, 0.03981041), (0.21423133, -0.8084097, -0.5482506), (0.16645803, -0.96984106, -0.17804499), (0.4877713, -0.78026503, -0.39149147), (0.006126636, -0.99937457, -0.034827586), (0.030837217, -0.99924517, -0.02362711), (0.0019268726, -0.99473745, 0.10243824), (-0.7107045, -0.7010767, 0.058227845), (-0.33103532, -0.93041146, -0.1573221), (-0.7037521, -0.69388527, -0.15250051), (0.10620119, -0.7190725, 0.68677205), (0.22342522, -0.88933504, 0.398954), (0.031846683, -0.9613535, 0.27346903), (0.1431319, -0.98959625, -0.014576037), (-0.2350271, -0.95302093, 0.19108506), (-0.23883659, -0.9710531, 0.0036044419), (-0.20263019, -0.9791539, 0.0140940165), (-0.2095609, -0.95568526, 0.20676035), (-0.03217884, -0.99915063, 0.025742287), (0.2581334, -0.48780972, 0.8339118), (0.3211192, -0.04697445, 0.9458731), (0.2262849, -0.55113804, 0.80314505), (-0.20263019, -0.9791539, 0.0140940165), (-0.7107045, -0.7010767, 0.058227845), (-0.2095609, -0.95568526, 0.20676035), (0.07655345, -0.9436843, 0.32186893), (0.09865782, -0.93955153, 0.3278866), (0.006804497, -0.9989128, -0.04611737), (-0.6398279, -0.7319674, 0.23418805), (-0.46071714, -0.8289963, 0.31702507), (-0.51276404, -0.8585206, 0.003921195), (-0.6048664, -0.77761734, 0.17160381), (-0.5058531, -0.8509476, 0.14142407), (-0.47079736, -0.87728095, -0.0934236), (-0.78738946, -0.45226362, 0.418898), (-0.43382677, -0.8982189, 0.07068976), (-0.8433688, -0.53727967, -0.007722598), (0.16645803, -0.96984106, -0.17804499), (-0.23905218, -0.9347137, 0.26299092), (0.02013158, -0.96043855, 0.27776363), (0.1851918, -0.4577911, 0.8695581), (0.24584846, -0.086955965, 0.96540004), (0.18212533, -0.013370693, 0.98318446), (-0.19749816, -0.5429663, 0.8161998), (-0.4116224, 0.05100067, 0.9099263), (-0.50571656, -0.4274882, 0.74933606), (-0.6809156, -0.73172814, 0.03046109), (-0.69212383, -0.7019966, 0.16782527), (-0.8176909, -0.5715781, 0.06841176), (-0.10319789, -0.58678037, -0.80314326), (0.057034962, -0.7214882, -0.6900737), (0.25655803, -0.8464801, -0.4665291), (0.23326288, 0.7135614, 0.66061985), (0.3029325, 0.7035765, 0.64281577), (0.25317535, 0.57428575, 0.778523), (0.63791245, 0.060515024, -0.76772755), (0.8494472, 0.21180317, -0.48330003), (0.6672254, 0.2849614, -0.6881912), (-0.69212383, -0.7019966, 0.16782527), (-0.64145756, -0.7467345, 0.17583956), (-0.74939865, -0.6407484, 0.16686325), (0.32855552, -0.8865062, 0.32581905), (0.121575005, -0.9695442, 0.21261156), (0.08725533, -0.99402946, 0.065514036), (0.32855552, -0.8865062, 0.32581905), (0.4313311, -0.53554904, 0.72604454), (0.121575005, -0.9695442, 0.21261156), (0.121575005, -0.9695442, 0.21261156), (0.4313311, -0.53554904, 0.72604454), (0.21733269, -0.6318195, 0.7440233), (0.068673454, -0.97672313, 0.20321368), (0.21733269, -0.6318195, 0.7440233), (0.1851918, -0.4577911, 0.8695581), (0.121575005, -0.9695442, 0.21261156), (0.21733269, -0.6318195, 0.7440233), (0.068673454, -0.97672313, 0.20321368), (-0.46071714, -0.8289963, 0.31702507), (-0.014720315, -0.9977732, 0.0650545), (-0.51276404, -0.8585206, 0.003921195), (0.2581334, -0.48780972, 0.8339118), (0.097564355, -0.8835147, 0.45812988), (0.09865782, -0.93955153, 0.3278866), (-0.03535235, -0.98411596, -0.17397165), (0.23030971, -0.96841, 0.09560048), (0.033512466, -0.99864507, 0.03981041), (0.22342522, -0.88933504, 0.398954), (0.39850566, -0.9167941, -0.02611196), (-0.010869834, -0.9999349, -0.0034638424), (-0.60385144, -0.7970696, -0.0065802378), (-0.9026322, -0.42681515, -0.055532932), (-0.74939865, -0.6407484, 0.16686325), (0.26601398, -0.9502803, -0.161876), (0.18834533, -0.9816834, -0.02870062), (0.22729917, -0.9318606, -0.28279096), (0.18834533, -0.9816834, -0.02870062), (0.16976298, -0.97839105, 0.118031725), (-0.18226822, -0.98070323, 0.07070641), (0.16976298, -0.97839105, 0.118031725), (-0.13667946, -0.98715717, -0.0827012), (-0.18226822, -0.98070323, 0.07070641), (-0.2095609, -0.95568526, 0.20676035), (-0.7107045, -0.7010767, 0.058227845), (-0.49190903, -0.73603976, 0.4650494), (0.16976298, -0.97839105, 0.118031725), (0.32656154, -0.9211749, 0.21164702), (-0.13667946, -0.98715717, -0.0827012), (0.32656154, -0.9211749, 0.21164702), (0.23030971, -0.96841, 0.09560048), (-0.13667946, -0.98715717, -0.0827012), (-0.15062818, -0.7382632, 0.65747905), (-0.23905218, -0.9347137, 0.26299092), (-0.39556265, -0.87511915, 0.27874118), (-0.69212383, -0.7019966, 0.16782527), (-0.74939865, -0.6407484, 0.16686325), (-0.8176909, -0.5715781, 0.06841176), (-0.64145756, -0.7467345, 0.17583956), (-0.60385144, -0.7970696, -0.0065802378), (-0.74939865, -0.6407484, 0.16686325), (-0.9026322, -0.42681515, -0.055532932), (-0.60385144, -0.7970696, -0.0065802378), (-0.65860057, -0.7337375, -0.166957), (0.39454177, -0.906369, 0.15110257), (0.08725533, -0.99402946, 0.065514036), (0.23030971, -0.96841, 0.09560048), (0.39454177, -0.906369, 0.15110257), (0.32855552, -0.8865062, 0.32581905), (0.08725533, -0.99402946, 0.065514036), (0.16645803, -0.96984106, -0.17804499), (0.02013158, -0.96043855, 0.27776363), (0.35887057, -0.9229695, -0.1390655), (0.40931383, -0.7031981, 0.5813559), (0.20669228, -0.64587563, 0.7349305), (0.35047135, -0.81921977, 0.45392588), (-0.4417603, -0.8870125, 0.13437492), (-0.7753093, -0.56586474, -0.2805219), (-0.81981546, -0.5627086, 0.10612065), (-0.67246896, -0.67827183, -0.29619727), (-0.5528094, -0.8246835, -0.11957864), (-0.51276404, -0.8585206, 0.003921195), (0.48341167, -0.73504114, 0.47542375), (0.40931383, -0.7031981, 0.5813559), (0.35047135, -0.81921977, 0.45392588), (0.2581334, -0.48780972, 0.8339118), (0.23485602, -0.46150556, 0.85548544), (0.29155907, -0.014391211, 0.95644456), (-0.22378458, -0.96625596, -0.12755404), (0.018017918, -0.9994679, -0.027188452), (0.006126636, -0.99937457, -0.034827586), (-0.64145756, -0.7467345, 0.17583956), (-0.7274023, -0.61863565, 0.29694417), (-0.60385144, -0.7970696, -0.0065802378), (-0.7853084, -0.58130556, 0.21301328), (-0.9054966, -0.4229858, -0.03404315), (-0.6925401, -0.71979254, 0.047820363), (-0.55329823, -0.76914936, -0.31979728), (-0.010869834, -0.9999349, -0.0034638424), (-0.5528094, -0.8246835, -0.11957864), (-0.531796, -0.7782102, -0.33403903), (-0.3956094, -0.8877723, -0.23527326), (-0.55329823, -0.76914936, -0.31979728), (-0.6175987, -0.74905723, -0.23976015), (-0.3956094, -0.8877723, -0.23527326), (-0.531796, -0.7782102, -0.33403903), (-0.39042413, -0.7627084, 0.51560146), (-0.64423424, -0.7619847, 0.06589081), (-0.47257355, -0.86729425, 0.15644449), (-0.5814458, -0.7018243, -0.4115377), (-0.6827181, -0.6939659, -0.22870846), (-0.6305556, -0.69784814, -0.33971688), (-0.7274023, -0.61863565, 0.29694417), (-0.6048664, -0.77761734, 0.17160381), (-0.60385144, -0.7970696, -0.0065802378), (-0.60385144, -0.7970696, -0.0065802378), (-0.6048664, -0.77761734, 0.17160381), (-0.47079736, -0.87728095, -0.0934236), (-0.47079736, -0.87728095, -0.0934236), (-0.38475475, -0.9144228, -0.12567703), (-0.60385144, -0.7970696, -0.0065802378), (-0.60385144, -0.7970696, -0.0065802378), (-0.38475475, -0.9144228, -0.12567703), (-0.65860057, -0.7337375, -0.166957), (0.1851918, -0.4577911, 0.8695581), (0.07655345, -0.9436843, 0.32186893), (0.068673454, -0.97672313, 0.20321368), (-0.64423424, -0.7619847, 0.06589081), (-0.6175987, -0.74905723, -0.23976015), (-0.47257355, -0.86729425, 0.15644449), (-0.22378458, -0.96625596, -0.12755404), (0.006126636, -0.99937457, -0.034827586), (-0.22366236, -0.9744662, -0.01976656), (0.0679254, -0.9975989, -0.013508956), (-0.15419765, -0.9878645, 0.018619632), (0.14860037, -0.98714, -0.058927853), (-0.38475475, -0.9144228, -0.12567703), (-0.4792485, -0.87767565, -0.002500139), (-0.65860057, -0.7337375, -0.166957), (-0.65860057, -0.7337375, -0.166957), (-0.4792485, -0.87767565, -0.002500139), (-0.6925401, -0.71979254, 0.047820363), (0.56007177, -0.8041849, 0.19901338), (0.23030971, -0.96841, 0.09560048), (0.32656154, -0.9211749, 0.21164702), (0.56007177, -0.8041849, 0.19901338), (0.39454177, -0.906369, 0.15110257), (0.23030971, -0.96841, 0.09560048), (0.0013304728, -0.9266607, 0.37589642), (0.095185675, -0.91661394, 0.38827646), (0.19233075, -0.47231376, 0.86019105), (-0.22366236, -0.9744662, -0.01976656), (0.006126636, -0.99937457, -0.034827586), (-0.06595685, -0.9892057, 0.13085008), (-0.22366236, -0.9744662, -0.01976656), (-0.06595685, -0.9892057, 0.13085008), (-0.24327245, -0.8493921, 0.4683497), (-0.51276404, -0.8585206, 0.003921195), (0.0016377692, -0.9999862, -0.00500398), (-0.22378458, -0.96625596, -0.12755404), (0.40776822, -0.8399432, -0.35807905), (0.14860037, -0.98714, -0.058927853), (0.112033434, -0.95767885, -0.26514092), (0.14860037, -0.98714, -0.058927853), (-0.21357302, -0.96831006, 0.1294688), (0.112033434, -0.95767885, -0.26514092), (-0.4792485, -0.87767565, -0.002500139), (-0.50821346, -0.7876195, 0.34838864), (-0.6925401, -0.71979254, 0.047820363), (-0.6925401, -0.71979254, 0.047820363), (-0.50821346, -0.7876195, 0.34838864), (-0.7853084, -0.58130556, 0.21301328), (-0.23905218, -0.9347137, 0.26299092), (-0.15062818, -0.7382632, 0.65747905), (0.02013158, -0.96043855, 0.27776363), (0.8394417, 0.30937803, 0.44679174), (0.90724313, 0.38943306, 0.1589085), (0.74083424, 0.6040892, 0.29366815), (-0.06595685, -0.9892057, 0.13085008), (0.0019268726, -0.99473745, 0.10243824), (-0.122768484, -0.83002585, 0.5440451), (-0.75941294, -0.23023722, 0.6085086), (-0.38980994, -0.83125573, 0.39631054), (-0.7814114, -0.07591856, 0.61938065), (-0.50821346, -0.7876195, 0.34838864), (-0.703814, -0.5486282, 0.45127913), (-0.7853084, -0.58130556, 0.21301328), (0.02013158, -0.96043855, 0.27776363), (0.031846683, -0.9613535, 0.27346903), (-0.15419765, -0.9878645, 0.018619632), (0.39635664, -0.8777787, 0.2690837), (0.35047135, -0.81921977, 0.45392588), (0.28556758, -0.8915055, 0.35166624), (0.35047135, -0.81921977, 0.45392588), (0.23140958, -0.7658154, 0.5999803), (0.28556758, -0.8915055, 0.35166624), (-0.06595685, -0.9892057, 0.13085008), (0.006126636, -0.99937457, -0.034827586), (0.0019268726, -0.99473745, 0.10243824), (-0.124401025, -0.61770743, 0.7765061), (-0.22538076, -0.6102402, 0.7594804), (-0.122768484, -0.83002585, 0.5440451), (0.11136336, -0.28162184, 0.95304114), (-0.14152348, 0.015151654, 0.989819), (-0.19749816, -0.5429663, 0.8161998), (-0.38475475, -0.9144228, -0.12567703), (-0.30213463, -0.9440203, 0.13244025), (-0.4792485, -0.87767565, -0.002500139), (-0.4792485, -0.87767565, -0.002500139), (-0.30213463, -0.9440203, 0.13244025), (-0.50821346, -0.7876195, 0.34838864), (0.02073968, -0.9961454, 0.085230306), (0.024746506, -0.99675536, 0.076593235), (0.023948837, -0.9976528, 0.0641504), (0.006126636, -0.99937457, -0.034827586), (0.018017918, -0.9994679, -0.027188452), (0.030837217, -0.99924517, -0.02362711), (-0.014720315, -0.9977732, 0.0650545), (0.027289476, -0.9994987, 0.016045088), (0.0016377692, -0.9999862, -0.00500398), (-0.6168156, -0.46475965, 0.63524574), (-0.703814, -0.5486282, 0.45127913), (-0.50821346, -0.7876195, 0.34838864), (-0.38658652, -0.31024647, 0.8685033), (-0.6922039, -0.13493402, 0.7089757), (-0.6168156, -0.46475965, 0.63524574), (0.031846683, -0.9613535, 0.27346903), (0.02013158, -0.96043855, 0.27776363), (0.10620119, -0.7190725, 0.68677205), (-0.5599974, 0.8270717, -0.048531305), (0.0059285, 0.81032634, 0.58594877), (-0.06844584, 0.94972205, 0.30552137), (-0.12225547, -0.74193543, 0.6592309), (-0.30002457, -0.8907839, 0.34130514), (-0.6603598, -0.3598595, 0.65910995), (-0.47079736, -0.87728095, -0.0934236), (-0.5058531, -0.8509476, 0.14142407), (-0.38475475, -0.9144228, -0.12567703), (0.607333, -0.55710804, -0.5663719), (-0.0215857, -0.57216984, -0.819851), (0.25655803, -0.8464801, -0.4665291), (0.39635664, -0.8777787, 0.2690837), (0.28556758, -0.8915055, 0.35166624), (0.2938304, -0.941104, 0.16729282), (0.38401255, -0.8880041, -0.25294876), (0.22729917, -0.9318606, -0.28279096), (0.3445099, -0.7736157, -0.53181934), (0.28071946, 0.44377977, 0.8510324), (-0.21142203, 0.7854323, 0.581719), (-0.045587193, 0.6975793, 0.7150558), (0.6037907, 0.038052984, 0.79623413), (0.28071946, 0.44377977, 0.8510324), (-0.045587193, 0.6975793, 0.7150558), (-0.8162737, -0.559295, 0.14452073), (-0.7855146, -0.57445645, 0.2301446), (-0.8122668, -0.5721191, 0.113588564), (-0.38658652, -0.31024647, 0.8685033), (-0.1023502, -0.3648629, 0.9254186), (-0.18260592, -0.107122675, 0.977333), (-0.7855146, -0.57445645, 0.2301446), (-0.8702511, -0.42538556, 0.2484149), (-0.8122668, -0.5721191, 0.113588564), (-0.108233176, -0.8826765, 0.45734861), (-0.06527238, -0.8647322, 0.4979736), (0.0029111963, -0.99552965, 0.094404675), (-0.159454, -0.9361927, 0.31323737), (-0.50571656, -0.4274882, 0.74933606), (-0.605461, -0.4717681, 0.64097726), (0.01866885, -0.99972093, -0.014473318), (0.027289476, -0.9994987, 0.016045088), (0.020526024, -0.9995826, -0.02033283), (-0.5058531, -0.8509476, 0.14142407), (-0.2939913, -0.95255744, 0.078761786), (-0.38475475, -0.9144228, -0.12567703), (-0.2939913, -0.95255744, 0.078761786), (-0.30213463, -0.9440203, 0.13244025), (-0.38475475, -0.9144228, -0.12567703), (-0.30213463, -0.9440203, 0.13244025), (-0.27254277, -0.79909873, 0.5358746), (-0.50821346, -0.7876195, 0.34838864), (-0.30282402, -0.64145917, 0.70486003), (-0.6168156, -0.46475965, 0.63524574), (-0.50821346, -0.7876195, 0.34838864), (-0.30282402, -0.64145917, 0.70486003), (-0.38658652, -0.31024647, 0.8685033), (-0.6168156, -0.46475965, 0.63524574), (-0.49190903, -0.73603976, 0.4650494), (-0.42841226, -0.885001, 0.1823081), (-0.26205632, -0.9085785, 0.32528675), (0.38401255, -0.8880041, -0.25294876), (0.26601398, -0.9502803, -0.161876), (0.22729917, -0.9318606, -0.28279096), (-0.42841226, -0.885001, 0.1823081), (-0.116680495, -0.99159163, 0.0559605), (-0.26205632, -0.9085785, 0.32528675), (-0.9717855, 0.13265215, -0.195029), (-0.77513856, -0.610081, -0.16419959), (-0.9496979, -0.29839867, 0.09503771), (0.6732018, 0.3908049, -0.6277507), (0.7816238, 0.26426044, -0.565005), (0.8271193, 0.29346165, -0.47932655), (-0.4821138, -0.4199924, 0.7688775), (-0.26577422, -0.36665386, 0.891588), (-0.46531352, -0.32130724, 0.8247697), (-0.06527238, -0.8647322, 0.4979736), (-0.124401025, -0.61770743, 0.7765061), (-0.117647916, -0.59550667, 0.7946891), (0.023948837, -0.9976528, 0.0641504), (0.021073312, -0.99795896, 0.060281094), (0.027289476, -0.9994987, 0.016045088), (-0.50821346, -0.7876195, 0.34838864), (-0.27254277, -0.79909873, 0.5358746), (-0.30282402, -0.64145917, 0.70486003), (0.39635664, -0.8777787, 0.2690837), (0.2938304, -0.941104, 0.16729282), (0.38774744, -0.9145859, 0.1148242), (0.46180364, 0.3621217, 0.8096946), (0.647132, 0.2797327, 0.7092037), (0.3866582, 0.49182975, 0.78012747), (0.46872672, -0.5303831, 0.7063915), (0.24947077, -0.28938565, 0.92413217), (0.0765499, -0.5684397, 0.81915593), (0.19094223, -0.7970636, 0.5729141), (0.46872672, -0.5303831, 0.7063915), (0.0765499, -0.5684397, 0.81915593), (-0.122768484, -0.83002585, 0.5440451), (0.0019268726, -0.99473745, 0.10243824), (-0.07965509, -0.81704223, 0.57104903), (-0.124401025, -0.61770743, 0.7765061), (-0.122768484, -0.83002585, 0.5440451), (-0.07965509, -0.81704223, 0.57104903), (-0.49838474, -0.6881475, 0.5273193), (-0.46071714, -0.8289963, 0.31702507), (-0.5307812, -0.747741, 0.39894196), (0.01866885, -0.99972093, -0.014473318), (0.020526024, -0.9995826, -0.02033283), (0.028315727, -0.9993379, -0.022847934), (0.0029111963, -0.99552965, 0.094404675), (-0.06527238, -0.8647322, 0.4979736), (-0.0030211906, -0.9924018, 0.123002425), (-0.7678991, -0.35828537, 0.53100157), (-0.5058531, -0.8509476, 0.14142407), (-0.77879447, -0.46195912, 0.42435), (0.19094223, -0.7970636, 0.5729141), (0.5850868, -0.68390495, 0.43582952), (0.46872672, -0.5303831, 0.7063915), (-0.88255644, -0.30992982, 0.35360643), (-0.7853084, -0.58130556, 0.21301328), (-0.703814, -0.5486282, 0.45127913), (-0.6925401, -0.71979254, 0.047820363), (-0.9054966, -0.4229858, -0.03404315), (-0.65860057, -0.7337375, -0.166957), (-0.06527238, -0.8647322, 0.4979736), (-0.108233176, -0.8826765, 0.45734861), (-0.124401025, -0.61770743, 0.7765061), (0.0029111963, -0.99552965, 0.094404675), (-0.0030211906, -0.9924018, 0.123002425), (-0.04828888, -0.9518656, -0.30268806), (-0.13594027, -0.94230294, 0.30591714), (-0.30213463, -0.9440203, 0.13244025), (-0.2939913, -0.95255744, 0.078761786), (-0.13594027, -0.94230294, 0.30591714), (-0.27254277, -0.79909873, 0.5358746), (-0.30213463, -0.9440203, 0.13244025), (-0.30282402, -0.64145917, 0.70486003), (-0.1023502, -0.3648629, 0.9254186), (-0.38658652, -0.31024647, 0.8685033), (-0.9054966, -0.4229858, -0.03404315), (-0.9026322, -0.42681515, -0.055532932), (-0.65860057, -0.7337375, -0.166957), (0.29304424, -0.9096085, 0.29451203), (0.32656154, -0.9211749, 0.21164702), (0.16976298, -0.97839105, 0.118031725), (0.29304424, -0.9096085, 0.29451203), (0.54638356, -0.7627216, 0.34600705), (0.32656154, -0.9211749, 0.21164702), (0.39850566, -0.9167941, -0.02611196), (0.1431319, -0.98959625, -0.014576037), (-0.010869834, -0.9999349, -0.0034638424), (0.4313311, -0.53554904, 0.72604454), (0.45928004, -0.14568935, 0.87626284), (0.24584846, -0.086955965, 0.96540004), (-0.84307927, -0.3533579, 0.40540788), (-0.61481446, -0.3592937, 0.7020763), (-0.7507377, 0.21038967, 0.626202), (-0.75874835, -0.5758175, 0.3045243), (-0.7189797, -0.56101197, 0.4102848), (-0.84999394, -0.41160384, 0.32877436), (-0.27254277, -0.79909873, 0.5358746), (-0.21374576, -0.5730615, 0.7911469), (-0.30282402, -0.64145917, 0.70486003), (-0.30282402, -0.64145917, 0.70486003), (-0.21374576, -0.5730615, 0.7911469), (-0.1023502, -0.3648629, 0.9254186), (0.45199344, -0.8476778, -0.27774844), (0.7449587, -0.6390075, -0.19158767), (0.8210526, -0.54693574, -0.16350538), (0.021073312, -0.99795896, 0.060281094), (0.030126652, -0.9971683, 0.06890416), (0.1715505, -0.98517466, 0.0011755495), (0.0016377692, -0.9999862, -0.00500398), (0.018017918, -0.9994679, -0.027188452), (-0.22378458, -0.96625596, -0.12755404), (0.54638356, -0.7627216, 0.34600705), (0.56007177, -0.8041849, 0.19901338), (0.32656154, -0.9211749, 0.21164702), (0.3153758, -0.32686642, 0.8908964), (0.44979906, -0.21742286, 0.86626107), (0.27950996, -0.040275995, 0.95929766), (-0.7087192, -0.7050417, -0.025164725), (-0.7835958, -0.60634196, 0.135378), (-0.8368754, -0.54651237, 0.031046543), (-0.6854155, -0.6979322, -0.20759624), (-0.7068969, -0.7067872, -0.027361292), (-0.7087192, -0.7050417, -0.025164725), (-0.7835958, -0.60634196, 0.135378), (-0.6799398, -0.6921568, 0.24207596), (-0.7185482, -0.65344715, 0.23810802), (-0.7855146, -0.57445645, 0.2301446), (-0.7189797, -0.56101197, 0.4102848), (-0.75874835, -0.5758175, 0.3045243), (0.027289476, -0.9994987, 0.016045088), (0.1715505, -0.98517466, 0.0011755495), (0.020526024, -0.9995826, -0.02033283), (-0.19749816, -0.5429663, 0.8161998), (-0.50571656, -0.4274882, 0.74933606), (-0.159454, -0.9361927, 0.31323737), (-0.43625435, -0.7146312, 0.5467946), (-0.2939913, -0.95255744, 0.078761786), (-0.5058531, -0.8509476, 0.14142407), (-0.43625435, -0.7146312, 0.5467946), (-0.13594027, -0.94230294, 0.30591714), (-0.2939913, -0.95255744, 0.078761786), (-0.5814458, -0.7018243, -0.4115377), (-0.4976273, -0.83177394, -0.24600643), (-0.6827181, -0.6939659, -0.22870846), (0.030126652, -0.9971683, 0.06890416), (0.4316533, -0.89022344, 0.14552557), (0.1715505, -0.98517466, 0.0011755495), (0.43238065, 0.5242961, 0.73359436), (0.53602785, 0.6053474, 0.5884121), (0.4429471, 0.70619273, 0.55234927), (-0.7068969, -0.7067872, -0.027361292), (-0.6799398, -0.6921568, 0.24207596), (-0.7087192, -0.7050417, -0.025164725), (-0.8162737, -0.559295, 0.14452073), (-0.7185482, -0.65344715, 0.23810802), (-0.7855146, -0.57445645, 0.2301446), (-0.014720315, -0.9977732, 0.0650545), (0.023948837, -0.9976528, 0.0641504), (0.027289476, -0.9994987, 0.016045088), (-0.43625435, -0.7146312, 0.5467946), (-0.5058531, -0.8509476, 0.14142407), (-0.7678991, -0.35828537, 0.53100157), (0.05473727, -0.8472051, 0.52843845), (-0.19749816, -0.5429663, 0.8161998), (-0.159454, -0.9361927, 0.31323737), (0.6004834, -0.7095609, 0.36870462), (0.32855552, -0.8865062, 0.32581905), (0.39454177, -0.906369, 0.15110257), (0.6004834, -0.7095609, 0.36870462), (0.4313311, -0.53554904, 0.72604454), (0.32855552, -0.8865062, 0.32581905), (-0.7185482, -0.65344715, 0.23810802), (-0.7118987, -0.61793506, 0.33370107), (-0.7855146, -0.57445645, 0.2301446), (-0.7118987, -0.61793506, 0.33370107), (-0.7189797, -0.56101197, 0.4102848), (-0.7855146, -0.57445645, 0.2301446), (-0.7638933, 0.045113526, 0.64376384), (-0.605461, -0.4717681, 0.64097726), (-0.59768534, 0.20133865, 0.77603805), (0.07279701, -0.8265557, 0.55812746), (-0.13594027, -0.94230294, 0.30591714), (-0.43625435, -0.7146312, 0.5467946), (-0.27254277, -0.79909873, 0.5358746), (-0.3906986, -0.59437746, 0.7029012), (-0.21374576, -0.5730615, 0.7911469), (-0.3906986, -0.59437746, 0.7029012), (-0.43670908, -0.36223125, 0.8234523), (-0.21374576, -0.5730615, 0.7911469), (0.09865782, -0.93955153, 0.3278866), (0.034194745, -0.9785811, 0.20300213), (0.006804497, -0.9989128, -0.04611737), (-0.48336235, -0.8633284, 0.14499962), (-0.2350271, -0.95302093, 0.19108506), (-0.5307812, -0.747741, 0.39894196), (0.6004834, -0.7095609, 0.36870462), (0.56007177, -0.8041849, 0.19901338), (0.7193379, -0.59930456, 0.3512649), (-0.6827181, -0.6939659, -0.22870846), (-0.6229518, -0.77887183, -0.07273163), (-0.7068969, -0.7067872, -0.027361292), (-0.6878509, -0.7258215, 0.00665161), (-0.6508188, -0.7563654, 0.06592578), (-0.7068969, -0.7067872, -0.027361292), (-0.7068969, -0.7067872, -0.027361292), (-0.6508188, -0.7563654, 0.06592578), (-0.6799398, -0.6921568, 0.24207596), (-0.26533762, -0.9466754, -0.18276124), (-0.025121022, -0.944091, -0.32872617), (-0.5683309, -0.7660872, -0.30018413), (-0.6703845, -0.626253, 0.39798462), (-0.8960748, -0.16243471, 0.4131161), (-0.43673542, -0.6124493, 0.65891445), (-0.6482716, 0.06548023, 0.7585883), (-0.43625435, -0.7146312, 0.5467946), (-0.7678991, -0.35828537, 0.53100157), (-0.08821485, -0.86301666, 0.49741387), (-0.27254277, -0.79909873, 0.5358746), (-0.13594027, -0.94230294, 0.30591714), (-0.27254277, -0.79909873, 0.5358746), (-0.08821485, -0.86301666, 0.49741387), (-0.3906986, -0.59437746, 0.7029012), (0.034194745, -0.9785811, 0.20300213), (-0.019062374, -0.99864316, 0.048461862), (0.006804497, -0.9989128, -0.04611737), (-0.42841226, -0.885001, 0.1823081), (-0.7107045, -0.7010767, 0.058227845), (-0.7037521, -0.69388527, -0.15250051), (-0.010869834, -0.9999349, -0.0034638424), (-0.23883659, -0.9710531, 0.0036044419), (-0.5528094, -0.8246835, -0.11957864), (-0.4976273, -0.83177394, -0.24600643), (-0.6229518, -0.77887183, -0.07273163), (-0.6827181, -0.6939659, -0.22870846), (-0.6229518, -0.77887183, -0.07273163), (-0.6878509, -0.7258215, 0.00665161), (-0.7068969, -0.7067872, -0.027361292), (0.45909035, -0.8802036, 0.120322585), (0.38774744, -0.9145859, 0.1148242), (0.45836627, -0.8875529, -0.046368957), (0.6158694, -0.76686466, -0.18062013), (0.14860037, -0.98714, -0.058927853), (0.58877265, -0.77926415, -0.21469536), (-0.6335783, -0.2852761, -0.7191634), (-0.5214649, 0.24872354, -0.8162175), (-0.74905336, -0.25794122, -0.6102337), (-0.08821485, -0.86301666, 0.49741387), (-0.13594027, -0.94230294, 0.30591714), (0.07279701, -0.8265557, 0.55812746), (-0.5601452, -0.8271655, 0.045107294), (-0.6398279, -0.7319674, 0.23418805), (-0.51276404, -0.8585206, 0.003921195), (-0.36396325, -0.82038134, 0.44102755), (-0.2095609, -0.95568526, 0.20676035), (-0.49190903, -0.73603976, 0.4650494), (-0.6508188, -0.7563654, 0.06592578), (-0.6580869, -0.66145664, 0.35971776), (-0.6799398, -0.6921568, 0.24207596), (0.031846683, -0.9613535, 0.27346903), (-0.010869834, -0.9999349, -0.0034638424), (-0.3956094, -0.8877723, -0.23527326), (-0.19532515, -0.64201677, 0.7413924), (-0.42388347, -0.36057454, 0.8308482), (-0.3906986, -0.59437746, 0.7029012), (-0.46262383, -0.77043957, -0.43863684), (-0.32875413, -0.90028757, -0.28531218), (-0.4976273, -0.83177394, -0.24600643), (-0.6799398, -0.6921568, 0.24207596), (-0.56712216, -0.75656706, 0.32554364), (-0.7185482, -0.65344715, 0.23810802), (-0.56712216, -0.75656706, 0.32554364), (-0.5885097, -0.7303421, 0.34678054), (-0.7185482, -0.65344715, 0.23810802), (-0.7185482, -0.65344715, 0.23810802), (-0.5885097, -0.7303421, 0.34678054), (-0.7118987, -0.61793506, 0.33370107), (0.19430637, 0.43361533, -0.8798994), (0.29509443, 0.13193615, -0.94631505), (-0.0058580027, 0.4264949, -0.9044709), (0.5315208, -0.79590696, 0.28985828), (0.39635664, -0.8777787, 0.2690837), (0.45909035, -0.8802036, 0.120322585), (0.5601152, -0.8276674, 0.03517831), (0.5315208, -0.79590696, 0.28985828), (0.45909035, -0.8802036, 0.120322585), (-0.40434313, -0.8780339, 0.25605318), (-0.9000499, -0.37269938, 0.22584301), (-0.6393449, -0.7685127, 0.02502504), (0.18470784, -0.91912574, 0.34798115), (-0.08821485, -0.86301666, 0.49741387), (0.07279701, -0.8265557, 0.55812746), (-0.08821485, -0.86301666, 0.49741387), (-0.19532515, -0.64201677, 0.7413924), (-0.3906986, -0.59437746, 0.7029012), (-0.6760816, 0.41045448, 0.6119157), (-0.70793456, 0.36136737, 0.60682976), (-0.75941294, -0.23023722, 0.6085086), (-0.7593494, -0.55912864, -0.33281165), (-0.6393449, -0.7685127, 0.02502504), (-0.9702638, 0.026556697, -0.24058868), (-0.32875413, -0.90028757, -0.28531218), (-0.33804324, -0.91606545, -0.21575676), (-0.4976273, -0.83177394, -0.24600643), (-0.33804324, -0.91606545, -0.21575676), (-0.43701094, -0.89626706, -0.075675555), (-0.4976273, -0.83177394, -0.24600643), (-0.4976273, -0.83177394, -0.24600643), (-0.43701094, -0.89626706, -0.075675555), (-0.6229518, -0.77887183, -0.07273163), (-0.6229518, -0.77887183, -0.07273163), (-0.6508188, -0.7563654, 0.06592578), (-0.6878509, -0.7258215, 0.00665161), (-0.6508188, -0.7563654, 0.06592578), (-0.5466242, -0.7643983, 0.3419024), (-0.6580869, -0.66145664, 0.35971776), (-0.5885097, -0.7303421, 0.34678054), (-0.61182463, -0.61704814, 0.49489605), (-0.7118987, -0.61793506, 0.33370107), (-0.61182463, -0.61704814, 0.49489605), (-0.7189797, -0.56101197, 0.4102848), (-0.7118987, -0.61793506, 0.33370107), (-0.61182463, -0.61704814, 0.49489605), (-0.632924, -0.48116198, 0.60653955), (-0.7189797, -0.56101197, 0.4102848), (-0.8433688, -0.53727967, -0.007722598), (-0.44687837, -0.8631273, -0.23518318), (-0.5901218, -0.7327302, -0.33891392), (-0.19833784, 0.8949851, 0.3995795), (-0.5793119, 0.71455824, 0.39217898), (-0.81088346, 0.51771635, 0.272833), (-0.43180045, -0.75701654, -0.4903819), (-0.16532998, -0.98608816, -0.017210905), (-0.7593494, -0.55912864, -0.33281165), (-0.77669567, -0.038613975, -0.6286914), (-0.43180045, -0.75701654, -0.4903819), (-0.7593494, -0.55912864, -0.33281165), (-0.6229518, -0.77887183, -0.07273163), (-0.43701094, -0.89626706, -0.075675555), (-0.6508188, -0.7563654, 0.06592578), (-0.43701094, -0.89626706, -0.075675555), (-0.4747759, -0.8723341, 0.11670934), (-0.6508188, -0.7563654, 0.06592578), (-0.6508188, -0.7563654, 0.06592578), (-0.4747759, -0.8723341, 0.11670934), (-0.5466242, -0.7643983, 0.3419024), (-0.21357302, -0.96831006, 0.1294688), (-0.108233176, -0.8826765, 0.45734861), (0.0121184485, -0.99971867, 0.020386532), (-0.47257355, -0.86729425, 0.15644449), (-0.6175987, -0.74905723, -0.23976015), (-0.22366236, -0.9744662, -0.01976656), (0.34167877, -0.783338, 0.51926595), (0.18470784, -0.91912574, 0.34798115), (0.07279701, -0.8265557, 0.55812746), (0.18470784, -0.91912574, 0.34798115), (0.19094223, -0.7970636, 0.5729141), (-0.08821485, -0.86301666, 0.49741387), (-0.08821485, -0.86301666, 0.49741387), (0.19094223, -0.7970636, 0.5729141), (-0.19532515, -0.64201677, 0.7413924), (0.9513711, -0.16029781, -0.26305407), (0.40791, -0.35522157, -0.84108686), (0.968587, 0.20850669, -0.13551457), (-0.7593494, -0.55912864, -0.33281165), (-0.16532998, -0.98608816, -0.017210905), (-0.6393449, -0.7685127, 0.02502504), (0.33757836, -0.7371384, 0.5853784), (0.54638356, -0.7627216, 0.34600705), (0.29304424, -0.9096085, 0.29451203), (-0.5466242, -0.7643983, 0.3419024), (-0.56712216, -0.75656706, 0.32554364), (-0.6799398, -0.6921568, 0.24207596), (-0.6580869, -0.66145664, 0.35971776), (-0.5466242, -0.7643983, 0.3419024), (-0.6799398, -0.6921568, 0.24207596), (0.112033434, -0.95767885, -0.26514092), (0.0029111963, -0.99552965, 0.094404675), (-0.04828888, -0.9518656, -0.30268806), (-0.22366236, -0.9744662, -0.01976656), (-0.6175987, -0.74905723, -0.23976015), (-0.531796, -0.7782102, -0.33403903), (-0.75941294, -0.23023722, 0.6085086), (-0.89008623, 0.20882238, 0.40514144), (-0.9000499, -0.37269938, 0.22584301), (0.40924534, -0.8464372, 0.34067917), (0.18470784, -0.91912574, 0.34798115), (0.34167877, -0.783338, 0.51926595), (0.19094223, -0.7970636, 0.5729141), (0.0765499, -0.5684397, 0.81915593), (-0.19532515, -0.64201677, 0.7413924), (-0.2095609, -0.95568526, 0.20676035), (-0.2350271, -0.95302093, 0.19108506), (0.1431319, -0.98959625, -0.014576037), (-0.026100839, -0.9985556, -0.04696286), (-0.16532998, -0.98608816, -0.017210905), (-0.43180045, -0.75701654, -0.4903819), (-0.33804324, -0.91606545, -0.21575676), (-0.35353875, -0.9302596, -0.098120555), (-0.43701094, -0.89626706, -0.075675555), (-0.31651884, -0.9479183, 0.035593044), (-0.4747759, -0.8723341, 0.11670934), (-0.43701094, -0.89626706, -0.075675555), (-0.4747759, -0.8723341, 0.11670934), (-0.35485107, -0.9076044, 0.22435464), (-0.5466242, -0.7643983, 0.3419024), (-0.56712216, -0.75656706, 0.32554364), (-0.46385267, -0.7507316, 0.47036457), (-0.5885097, -0.7303421, 0.34678054), (-0.5885097, -0.7303421, 0.34678054), (-0.46385267, -0.7507316, 0.47036457), (-0.61182463, -0.61704814, 0.49489605), (-0.159454, -0.9361927, 0.31323737), (-0.605461, -0.4717681, 0.64097726), (-0.30002457, -0.8907839, 0.34130514), (0.030837217, -0.99924517, -0.02362711), (0.018017918, -0.9994679, -0.027188452), (0.028315727, -0.9993379, -0.022847934), (0.028315727, -0.9993379, -0.022847934), (0.020526024, -0.9995826, -0.02033283), (0.023388105, -0.9994483, -0.023585396), (0.40924534, -0.8464372, 0.34067917), (0.19094223, -0.7970636, 0.5729141), (0.18470784, -0.91912574, 0.34798115), (-0.36396325, -0.82038134, 0.44102755), (-0.5307812, -0.747741, 0.39894196), (-0.2350271, -0.95302093, 0.19108506), (-0.36396325, -0.82038134, 0.44102755), (-0.49838474, -0.6881475, 0.5273193), (-0.5307812, -0.747741, 0.39894196), (-0.026100839, -0.9985556, -0.04696286), (-0.036600333, -0.99914795, 0.01907254), (-0.16532998, -0.98608816, -0.017210905), (0.97039586, -0.11759811, 0.2109559), (0.88046247, -0.34468678, 0.32554084), (0.56647444, -0.7808643, -0.26335832), (-0.26533762, -0.9466754, -0.18276124), (-0.38843852, -0.8947964, -0.2201251), (0.19180067, -0.9516986, -0.23975466), (-0.35353875, -0.9302596, -0.098120555), (-0.31651884, -0.9479183, 0.035593044), (-0.43701094, -0.89626706, -0.075675555), (-0.35485107, -0.9076044, 0.22435464), (-0.3679222, -0.86143965, 0.35007873), (-0.5466242, -0.7643983, 0.3419024), (-0.46385267, -0.7507316, 0.47036457), (-0.47278392, -0.67255586, 0.5693365), (-0.61182463, -0.61704814, 0.49489605), (-0.49311554, -0.5438694, 0.6790015), (-0.632924, -0.48116198, 0.60653955), (-0.61182463, -0.61704814, 0.49489605), (-0.47278392, -0.67255586, 0.5693365), (-0.49311554, -0.5438694, 0.6790015), (-0.61182463, -0.61704814, 0.49489605), (-0.632924, -0.48116198, 0.60653955), (-0.49311554, -0.5438694, 0.6790015), (-0.4821138, -0.4199924, 0.7688775), (-0.9496979, -0.29839867, 0.09503771), (-0.84307927, -0.3533579, 0.40540788), (-0.87894833, 0.28648278, 0.38128418), (-0.97281104, 0.22841159, -0.03830044), (-0.9000499, -0.37269938, 0.22584301), (-0.89008623, 0.20882238, 0.40514144), (0.59068286, -0.7397482, 0.32228303), (0.40924534, -0.8464372, 0.34067917), (0.34167877, -0.783338, 0.51926595), (0.18212533, -0.013370693, 0.98318446), (0.25456768, 0.022397261, 0.96679556), (0.1851918, -0.4577911, 0.8695581), (-0.605461, -0.4717681, 0.64097726), (-0.50571656, -0.4274882, 0.74933606), (-0.59768534, 0.20133865, 0.77603805), (-0.2095609, -0.95568526, 0.20676035), (-0.36396325, -0.82038134, 0.44102755), (-0.2350271, -0.95302093, 0.19108506), (0.5315208, -0.79590696, 0.28985828), (0.48341167, -0.73504114, 0.47542375), (0.39635664, -0.8777787, 0.2690837), (-0.16077583, -0.9825876, 0.09312808), (-0.6393449, -0.7685127, 0.02502504), (-0.16532998, -0.98608816, -0.017210905), (-0.036600333, -0.99914795, 0.01907254), (-0.16077583, -0.9825876, 0.09312808), (-0.16532998, -0.98608816, -0.017210905), (-0.16077583, -0.9825876, 0.09312808), (-0.40434313, -0.8780339, 0.25605318), (-0.6393449, -0.7685127, 0.02502504), (0.6004834, -0.7095609, 0.36870462), (0.6699192, -0.3878235, 0.63308865), (0.4313311, -0.53554904, 0.72604454), (-0.56712216, -0.75656706, 0.32554364), (-0.43118927, -0.80069447, 0.41588956), (-0.46385267, -0.7507316, 0.47036457), (-0.03217884, -0.99915063, 0.025742287), (-0.2095609, -0.95568526, 0.20676035), (0.13036995, -0.99122345, -0.02190324), (-0.83901477, 0.5282562, 0.1303828), (-0.7814114, -0.07591856, 0.61938065), (-0.5482103, -0.82992446, -0.10339648), (-0.29589933, -0.874036, -0.3853629), (-0.33804324, -0.91606545, -0.21575676), (-0.32875413, -0.90028757, -0.28531218), (-0.31651884, -0.9479183, 0.035593044), (-0.35485107, -0.9076044, 0.22435464), (-0.4747759, -0.8723341, 0.11670934), (-0.5466242, -0.7643983, 0.3419024), (-0.3679222, -0.86143965, 0.35007873), (-0.43118927, -0.80069447, 0.41588956), (-0.5466242, -0.7643983, 0.3419024), (-0.43118927, -0.80069447, 0.41588956), (-0.56712216, -0.75656706, 0.32554364), (0.6601938, -0.56228054, 0.49798065), (0.33757836, -0.7371384, 0.5853784), (0.26364633, -0.4508326, 0.852784), (0.1715505, -0.98517466, 0.0011755495), (0.4316533, -0.89022344, 0.14552557), (0.6551739, -0.75468516, 0.03460465), (-0.22378458, -0.96625596, -0.12755404), (-0.531796, -0.7782102, -0.33403903), (-0.67246896, -0.67827183, -0.29619727), (-0.5901218, -0.7327302, -0.33891392), (-0.44687837, -0.8631273, -0.23518318), (-0.33804324, -0.91606545, -0.21575676), (-0.29589933, -0.874036, -0.3853629), (-0.5901218, -0.7327302, -0.33891392), (-0.33804324, -0.91606545, -0.21575676), (-0.33804324, -0.91606545, -0.21575676), (-0.44687837, -0.8631273, -0.23518318), (-0.35353875, -0.9302596, -0.098120555), (-0.49311554, -0.5438694, 0.6790015), (-0.34260368, -0.5181747, 0.78365666), (-0.4821138, -0.4199924, 0.7688775), (-0.092187375, 0.38006347, -0.9203549), (-0.1458709, 0.5580752, -0.8168683), (-0.047764473, 0.39057004, -0.9193332), (-0.5214649, 0.24872354, -0.8162175), (-0.073725015, 0.9225793, -0.378698), (0.1556248, 0.78612894, -0.598149), (0.2938304, -0.941104, 0.16729282), (0.16976298, -0.97839105, 0.118031725), (0.18834533, -0.9816834, -0.02870062), (0.2938304, -0.941104, 0.16729282), (0.29304424, -0.9096085, 0.29451203), (0.16976298, -0.97839105, 0.118031725), (-0.25921842, -0.44357708, -0.85793084), (-0.029483957, -0.9972649, -0.06777361), (-0.22074991, -0.845684, -0.48588872), (-0.0063741, -0.9999288, -0.010094445), (-0.026100839, -0.9985556, -0.04696286), (-0.22074991, -0.845684, -0.48588872), (-0.029483957, -0.9972649, -0.06777361), (-0.0063741, -0.9999288, -0.010094445), (-0.22074991, -0.845684, -0.48588872), (-0.0063741, -0.9999288, -0.010094445), (-0.036600333, -0.99914795, 0.01907254), (-0.026100839, -0.9985556, -0.04696286), (-0.38980994, -0.83125573, 0.39631054), (-0.40434313, -0.8780339, 0.25605318), (-0.16077583, -0.9825876, 0.09312808), (-0.40434313, -0.8780339, 0.25605318), (-0.38980994, -0.83125573, 0.39631054), (-0.75941294, -0.23023722, 0.6085086), (-0.76743174, -0.63194263, -0.108153306), (-0.8632082, -0.45999706, -0.20802511), (-0.70957524, -0.66149926, -0.24273777), (-0.35353875, -0.9302596, -0.098120555), (-0.44687837, -0.8631273, -0.23518318), (-0.8433688, -0.53727967, -0.007722598), (-0.31651884, -0.9479183, 0.035593044), (-0.26918742, -0.9422576, 0.19922018), (-0.35485107, -0.9076044, 0.22435464), (-0.3469631, -0.6725009, 0.653727), (-0.49311554, -0.5438694, 0.6790015), (-0.47278392, -0.67255586, 0.5693365), (-0.3469631, -0.6725009, 0.653727), (-0.34260368, -0.5181747, 0.78365666), (-0.49311554, -0.5438694, 0.6790015), (-0.61481446, -0.3592937, 0.7020763), (-0.19537881, -0.06637409, 0.97847915), (-0.5367215, 0.10667408, 0.83698905), (-0.24385032, -0.9625065, 0.11882046), (-0.16077583, -0.9825876, 0.09312808), (-0.036600333, -0.99914795, 0.01907254), (-0.8433688, -0.53727967, -0.007722598), (-0.43382677, -0.8982189, 0.07068976), (-0.35353875, -0.9302596, -0.098120555), (-0.2490839, -0.9684093, 0.011860104), (-0.26918742, -0.9422576, 0.19922018), (-0.31651884, -0.9479183, 0.035593044), (-0.26918742, -0.9422576, 0.19922018), (-0.26991585, -0.9098636, 0.31510907), (-0.35485107, -0.9076044, 0.22435464), (-0.35485107, -0.9076044, 0.22435464), (-0.26991585, -0.9098636, 0.31510907), (-0.3679222, -0.86143965, 0.35007873), (-0.46385267, -0.7507316, 0.47036457), (-0.3469631, -0.6725009, 0.653727), (-0.47278392, -0.67255586, 0.5693365), (-0.24327245, -0.8493921, 0.4683497), (-0.47257355, -0.86729425, 0.15644449), (-0.22366236, -0.9744662, -0.01976656), (-0.49190903, -0.73603976, 0.4650494), (-0.7107045, -0.7010767, 0.058227845), (-0.42841226, -0.885001, 0.1823081), (0.121575005, -0.9695442, 0.21261156), (0.068673454, -0.97672313, 0.20321368), (0.006804497, -0.9989128, -0.04611737), (-0.39556265, -0.87511915, 0.27874118), (-0.18226822, -0.98070323, 0.07070641), (-0.34695187, -0.9353557, -0.068805404), (-0.24385032, -0.9625065, 0.11882046), (-0.38980994, -0.83125573, 0.39631054), (-0.16077583, -0.9825876, 0.09312808), (-0.49190903, -0.73603976, 0.4650494), (-0.49838474, -0.6881475, 0.5273193), (-0.36396325, -0.82038134, 0.44102755), (-0.6048664, -0.77761734, 0.17160381), (-0.77879447, -0.46195912, 0.42435), (-0.5058531, -0.8509476, 0.14142407), (0.19128671, 0.95489544, -0.22712131), (-0.14383577, 0.9503132, -0.27607244), (-0.033282995, 0.92988116, -0.36635125), (-0.35353875, -0.9302596, -0.098120555), (-0.2490839, -0.9684093, 0.011860104), (-0.31651884, -0.9479183, 0.035593044), (-0.2946536, -0.865872, 0.4042832), (-0.3679222, -0.86143965, 0.35007873), (-0.26991585, -0.9098636, 0.31510907), (-0.3679222, -0.86143965, 0.35007873), (-0.2946536, -0.865872, 0.4042832), (-0.43118927, -0.80069447, 0.41588956), (-0.32565445, -0.79961514, 0.504544), (-0.3469631, -0.6725009, 0.653727), (-0.46385267, -0.7507316, 0.47036457), (-0.23883659, -0.9710531, 0.0036044419), (-0.48336235, -0.8633284, 0.14499962), (-0.5601452, -0.8271655, 0.045107294), (-0.5528094, -0.8246835, -0.11957864), (-0.23883659, -0.9710531, 0.0036044419), (-0.5601452, -0.8271655, 0.045107294), (0.6717314, -0.728896, 0.13224062), (0.5315208, -0.79590696, 0.28985828), (0.5601152, -0.8276674, 0.03517831), (-0.2946536, -0.865872, 0.4042832), (-0.32565445, -0.79961514, 0.504544), (-0.43118927, -0.80069447, 0.41588956), (-0.43118927, -0.80069447, 0.41588956), (-0.32565445, -0.79961514, 0.504544), (-0.46385267, -0.7507316, 0.47036457), (0.23140958, -0.7658154, 0.5999803), (0.20669228, -0.64587563, 0.7349305), (0.080321275, -0.56148475, 0.82357955), (-0.21306917, -0.86168283, -0.46054745), (-0.029483957, -0.9972649, -0.06777361), (-0.25921842, -0.44357708, -0.85793084), (-0.43382677, -0.8982189, 0.07068976), (-0.2490839, -0.9684093, 0.011860104), (-0.35353875, -0.9302596, -0.098120555), (-0.70957524, -0.66149926, -0.24273777), (-0.6854155, -0.6979322, -0.20759624), (-0.76743174, -0.63194263, -0.108153306), (0.13036995, -0.99122345, -0.02190324), (-0.2095609, -0.95568526, 0.20676035), (0.1431319, -0.98959625, -0.014576037), (0.38401255, -0.8880041, -0.25294876), (0.34086612, -0.93966603, -0.028946167), (0.26601398, -0.9502803, -0.161876), (0.34086612, -0.93966603, -0.028946167), (0.18834533, -0.9816834, -0.02870062), (0.26601398, -0.9502803, -0.161876), (-0.78519917, 0.42751658, 0.4479865), (-0.6690248, 0.10474818, 0.73582166), (-0.8695505, 0.077854976, 0.48766848), (-0.00007516441, -0.9999615, 0.00877765), (-0.0063741, -0.9999288, -0.010094445), (-0.029483957, -0.9972649, -0.06777361), (-0.05544408, -0.99768007, 0.03950329), (-0.036600333, -0.99914795, 0.01907254), (-0.0063741, -0.9999288, -0.010094445), (-0.05544408, -0.99768007, 0.03950329), (-0.24385032, -0.9625065, 0.11882046), (-0.036600333, -0.99914795, 0.01907254), (0.34086612, -0.93966603, -0.028946167), (0.2938304, -0.941104, 0.16729282), (0.18834533, -0.9816834, -0.02870062), (0.23140958, -0.7658154, 0.5999803), (0.080321275, -0.56148475, 0.82357955), (0.33757836, -0.7371384, 0.5853784), (-0.77669567, -0.038613975, -0.6286914), (-0.4769235, 0.13732037, -0.8681516), (-0.43180045, -0.75701654, -0.4903819), (-0.2691753, -0.8897734, 0.36857548), (-0.26991585, -0.9098636, 0.31510907), (-0.26918742, -0.9422576, 0.19922018), (-0.2691753, -0.8897734, 0.36857548), (-0.2946536, -0.865872, 0.4042832), (-0.26991585, -0.9098636, 0.31510907), (0.29155907, -0.014391211, 0.95644456), (0.3211192, -0.04697445, 0.9458731), (0.2581334, -0.48780972, 0.8339118), (0.030837217, -0.99924517, -0.02362711), (0.028315727, -0.9993379, -0.022847934), (0.0019268726, -0.99473745, 0.10243824), (0.18990594, 0.46538013, 0.86449826), (0.12527607, 0.38304296, 0.9151961), (0.20326447, 0.45285785, 0.8681032), (-0.2691753, -0.8897734, 0.36857548), (-0.2389058, -0.8600432, 0.4508321), (-0.2946536, -0.865872, 0.4042832), (-0.2389058, -0.8600432, 0.4508321), (-0.32565445, -0.79961514, 0.504544), (-0.2946536, -0.865872, 0.4042832), (-0.23355275, -0.7596737, 0.6069175), (-0.22181655, -0.6241467, 0.7491585), (-0.3469631, -0.6725009, 0.653727), (-0.3469631, -0.6725009, 0.653727), (-0.22181655, -0.6241467, 0.7491585), (-0.34260368, -0.5181747, 0.78365666), (0.6601938, -0.56228054, 0.49798065), (0.54638356, -0.7627216, 0.34600705), (0.33757836, -0.7371384, 0.5853784), (-0.00007516441, -0.9999615, 0.00877765), (-0.029483957, -0.9972649, -0.06777361), (-0.21306917, -0.86168283, -0.46054745), (0.35264283, 0.9119024, 0.20994528), (0.1556248, 0.78612894, -0.598149), (-0.073725015, 0.9225793, -0.378698), (-0.32565445, -0.79961514, 0.504544), (-0.23355275, -0.7596737, 0.6069175), (-0.3469631, -0.6725009, 0.653727), (0.024746506, -0.99675536, 0.076593235), (0.030126652, -0.9971683, 0.06890416), (0.021073312, -0.99795896, 0.060281094), (-0.6603598, -0.3598595, 0.65910995), (-0.30002457, -0.8907839, 0.34130514), (-0.605461, -0.4717681, 0.64097726), (0.19736668, -0.4973135, -0.84482294), (-0.013975418, -0.46513107, -0.88513154), (-0.04828888, -0.9518656, -0.30268806), (-0.7886005, -0.15360364, -0.59541184), (-0.14161843, -0.9853782, -0.09473155), (-0.21306917, -0.86168283, -0.46054745), (-0.14161843, -0.9853782, -0.09473155), (-0.00007516441, -0.9999615, 0.00877765), (-0.21306917, -0.86168283, -0.46054745), (-0.38980994, -0.83125573, 0.39631054), (-0.24385032, -0.9625065, 0.11882046), (-0.7814114, -0.07591856, 0.61938065), (-0.24385032, -0.9625065, 0.11882046), (-0.5482103, -0.82992446, -0.10339648), (-0.7814114, -0.07591856, 0.61938065), (-0.8429949, 0.2013671, -0.49880934), (-0.8448375, -0.17937076, -0.5040592), (-0.77513856, -0.610081, -0.16419959), (0.37219942, -0.5005989, 0.7815807), (0.10752623, -0.11405444, 0.9876385), (-0.029292079, -0.3112522, 0.9498758), (-0.18829687, 0.5858822, 0.7882172), (-0.43426287, 0.5636831, 0.7026216), (-0.27793613, 0.4540266, 0.846529), (-0.26205632, -0.9085785, 0.32528675), (-0.014720315, -0.9977732, 0.0650545), (-0.46071714, -0.8289963, 0.31702507), (-0.64344645, -0.47379425, -0.60124516), (-0.3129412, -0.93847406, -0.14606252), (-0.8719043, -0.32641268, -0.3650173), (-0.3129412, -0.93847406, -0.14606252), (-0.14161843, -0.9853782, -0.09473155), (-0.8719043, -0.32641268, -0.3650173), (-0.8719043, -0.32641268, -0.3650173), (-0.14161843, -0.9853782, -0.09473155), (-0.7886005, -0.15360364, -0.59541184), (-0.5482103, -0.82992446, -0.10339648), (-0.4028432, -0.9129921, 0.06451829), (-0.77513856, -0.610081, -0.16419959), (-0.77513856, -0.610081, -0.16419959), (-0.4028432, -0.9129921, 0.06451829), (-0.9496979, -0.29839867, 0.09503771), (-0.23355275, -0.7596737, 0.6069175), (-0.32565445, -0.79961514, 0.504544), (-0.2389058, -0.8600432, 0.4508321), (-0.22181655, -0.6241467, 0.7491585), (-0.17811333, -0.52131015, 0.8345726), (-0.34260368, -0.5181747, 0.78365666), (-0.15419765, -0.9878645, 0.018619632), (0.031846683, -0.9613535, 0.27346903), (-0.3956094, -0.8877723, -0.23527326), (-0.22378458, -0.96625596, -0.12755404), (-0.67246896, -0.67827183, -0.29619727), (-0.51276404, -0.8585206, 0.003921195), (-0.28825697, -0.7498813, -0.5954711), (-0.012272794, -0.9998831, -0.009117118), (-0.64344645, -0.47379425, -0.60124516), (-0.012272794, -0.9998831, -0.009117118), (-0.3129412, -0.93847406, -0.14606252), (-0.64344645, -0.47379425, -0.60124516), (-0.012272794, -0.9998831, -0.009117118), (0.03328505, -0.9994098, 0.008494632), (-0.3129412, -0.93847406, -0.14606252), (0.03328505, -0.9994098, 0.008494632), (-0.14161843, -0.9853782, -0.09473155), (-0.3129412, -0.93847406, -0.14606252), (0.091580875, -0.99579614, -0.001738124), (-0.0063741, -0.9999288, -0.010094445), (-0.00007516441, -0.9999615, 0.00877765), (0.091580875, -0.99579614, -0.001738124), (-0.05544408, -0.99768007, 0.03950329), (-0.0063741, -0.9999288, -0.010094445), (-0.24385032, -0.9625065, 0.11882046), (-0.124281384, -0.99189967, 0.026251238), (-0.5482103, -0.82992446, -0.10339648), (-0.46889415, -0.83141786, -0.29813167), (0.36375645, -0.89763147, -0.24887547), (-0.29382858, -0.9395531, -0.17579779), (-0.24327245, -0.8493921, 0.4683497), (-0.06595685, -0.9892057, 0.13085008), (-0.122768484, -0.83002585, 0.5440451), (-0.14161843, -0.9853782, -0.09473155), (0.032578103, -0.99935764, -0.014938284), (-0.00007516441, -0.9999615, 0.00877765), (0.032578103, -0.99935764, -0.014938284), (-0.01959772, -0.9990661, 0.038509145), (-0.00007516441, -0.9999615, 0.00877765), (0.091580875, -0.99579614, -0.001738124), (-0.11186356, -0.9922051, 0.054914556), (-0.05544408, -0.99768007, 0.03950329), (-0.05544408, -0.99768007, 0.03950329), (-0.017160283, -0.9984152, 0.05359795), (-0.24385032, -0.9625065, 0.11882046), (-0.017160283, -0.9984152, 0.05359795), (-0.124281384, -0.99189967, 0.026251238), (-0.24385032, -0.9625065, 0.11882046), (-0.124281384, -0.99189967, 0.026251238), (-0.4028432, -0.9129921, 0.06451829), (-0.5482103, -0.82992446, -0.10339648), (-0.28996757, -0.8602265, 0.41943902), (-0.24441399, -0.83084744, 0.49995422), (-0.2389058, -0.8600432, 0.4508321), (-0.24441399, -0.83084744, 0.49995422), (-0.23355275, -0.7596737, 0.6069175), (-0.2389058, -0.8600432, 0.4508321), (-0.052310307, -0.581549, 0.8118279), (-0.17811333, -0.52131015, 0.8345726), (-0.22181655, -0.6241467, 0.7491585), (0.03328505, -0.9994098, 0.008494632), (0.032578103, -0.99935764, -0.014938284), (-0.14161843, -0.9853782, -0.09473155), (-0.23355275, -0.7596737, 0.6069175), (-0.09245229, -0.63309336, 0.76853454), (-0.22181655, -0.6241467, 0.7491585), (-0.09245229, -0.63309336, 0.76853454), (-0.052310307, -0.581549, 0.8118279), (-0.22181655, -0.6241467, 0.7491585), (0.16645803, -0.96984106, -0.17804499), (-0.18226822, -0.98070323, 0.07070641), (-0.23905218, -0.9347137, 0.26299092), (-0.20932508, -0.5257483, -0.82448274), (-0.04695872, -0.9982071, -0.037114695), (-0.28825697, -0.7498813, -0.5954711), (-0.04695872, -0.9982071, -0.037114695), (-0.012272794, -0.9998831, -0.009117118), (-0.28825697, -0.7498813, -0.5954711), (-0.012272794, -0.9998831, -0.009117118), (0.33744797, -0.9344135, 0.1140193), (0.03328505, -0.9994098, 0.008494632), (-0.00007516441, -0.9999615, 0.00877765), (0.1944106, -0.9459771, 0.25948364), (0.091580875, -0.99579614, -0.001738124), (-0.124281384, -0.99189967, 0.026251238), (-0.40861017, -0.8758809, 0.25665218), (-0.4028432, -0.9129921, 0.06451829), (0.61079043, -0.6132706, 0.5008335), (0.5503341, -0.55431485, 0.6243936), (0.48341167, -0.73504114, 0.47542375), (-0.22538076, -0.6102402, 0.7594804), (-0.24327245, -0.8493921, 0.4683497), (-0.122768484, -0.83002585, 0.5440451), (0.009184698, -0.89453715, -0.44689944), (-0.04695872, -0.9982071, -0.037114695), (-0.20932508, -0.5257483, -0.82448274), (-0.031441275, -0.9234549, 0.38241678), (-0.00007516441, -0.9999615, 0.00877765), (-0.01959772, -0.9990661, 0.038509145), (-0.031441275, -0.9234549, 0.38241678), (0.1944106, -0.9459771, 0.25948364), (-0.00007516441, -0.9999615, 0.00877765), (0.17509162, -0.79327476, 0.58314496), (0.091580875, -0.99579614, -0.001738124), (0.1944106, -0.9459771, 0.25948364), (-0.11186356, -0.9922051, 0.054914556), (-0.122704074, -0.99235946, -0.0128960395), (-0.05544408, -0.99768007, 0.03950329), (-0.122704074, -0.99235946, -0.0128960395), (-0.017160283, -0.9984152, 0.05359795), (-0.05544408, -0.99768007, 0.03950329), (-0.017160283, -0.9984152, 0.05359795), (-0.0042249686, -0.9995606, 0.029340724), (-0.124281384, -0.99189967, 0.026251238), (-0.40861017, -0.8758809, 0.25665218), (-0.61481446, -0.3592937, 0.7020763), (-0.84307927, -0.3533579, 0.40540788), (0.17509162, -0.79327476, 0.58314496), (0.1944106, -0.9459771, 0.25948364), (-0.031441275, -0.9234549, 0.38241678), (-0.20275766, -0.9521517, 0.22868437), (-0.40861017, -0.8758809, 0.25665218), (-0.124281384, -0.99189967, 0.026251238), (-0.6799398, -0.6921568, 0.24207596), (-0.7835958, -0.60634196, 0.135378), (-0.7087192, -0.7050417, -0.025164725), (-0.43673542, -0.6124493, 0.65891445), (-0.23355275, -0.7596737, 0.6069175), (-0.24441399, -0.83084744, 0.49995422), (-0.108233176, -0.8826765, 0.45734861), (-0.22538076, -0.6102402, 0.7594804), (-0.124401025, -0.61770743, 0.7765061), (0.15513189, -0.94719785, 0.28062493), (0.33744797, -0.9344135, 0.1140193), (-0.012272794, -0.9998831, -0.009117118), (0.032578103, -0.99935764, -0.014938284), (0.03328505, -0.9994098, 0.008494632), (0.33744797, -0.9344135, 0.1140193), (0.33676922, -0.94128096, -0.024012605), (0.032578103, -0.99935764, -0.014938284), (0.33744797, -0.9344135, 0.1140193), (-0.20275766, -0.9521517, 0.22868437), (-0.61481446, -0.3592937, 0.7020763), (-0.40861017, -0.8758809, 0.25665218), (0.38774744, -0.9145859, 0.1148242), (0.2938304, -0.941104, 0.16729282), (0.34086612, -0.93966603, -0.028946167), (-0.43673542, -0.6124493, 0.65891445), (-0.09245229, -0.63309336, 0.76853454), (-0.23355275, -0.7596737, 0.6069175), (0.0121184485, -0.99971867, 0.020386532), (-0.108233176, -0.8826765, 0.45734861), (0.0029111963, -0.99552965, 0.094404675), (-0.51276404, -0.8585206, 0.003921195), (-0.014720315, -0.9977732, 0.0650545), (0.0016377692, -0.9999862, -0.00500398), (0.09865782, -0.93955153, 0.3278866), (0.097564355, -0.8835147, 0.45812988), (0.034194745, -0.9785811, 0.20300213), (0.5485582, -0.73056126, 0.40664992), (0.33744797, -0.9344135, 0.1140193), (0.15513189, -0.94719785, 0.28062493), (0.5485582, -0.73056126, 0.40664992), (0.726555, -0.66086936, 0.18806772), (0.33744797, -0.9344135, 0.1140193), (0.726555, -0.66086936, 0.18806772), (0.33676922, -0.94128096, -0.024012605), (0.33744797, -0.9344135, 0.1140193), (-0.0042249686, -0.9995606, 0.029340724), (-0.20275766, -0.9521517, 0.22868437), (-0.124281384, -0.99189967, 0.026251238), (-0.20275766, -0.9521517, 0.22868437), (-0.3372196, -0.65068823, 0.6803586), (-0.61481446, -0.3592937, 0.7020763), (-0.5906848, 0.41788256, -0.690265), (-0.52435285, 0.53870404, -0.65943307), (-0.186059, 0.34451467, -0.92015857), (-0.76743174, -0.63194263, -0.108153306), (-0.7087192, -0.7050417, -0.025164725), (-0.8368754, -0.54651237, 0.031046543), (-0.09245229, -0.63309336, 0.76853454), (-0.16668814, -0.5649306, 0.8081265), (-0.052310307, -0.581549, 0.8118279), (-0.052310307, -0.581549, 0.8118279), (-0.10362395, -0.56588596, 0.81794566), (-0.058807254, -0.4848953, 0.8725929), (0.07655345, -0.9436843, 0.32186893), (0.1851918, -0.4577911, 0.8695581), (0.23485602, -0.46150556, 0.85548544), (0.28556758, -0.8915055, 0.35166624), (0.33757836, -0.7371384, 0.5853784), (0.29304424, -0.9096085, 0.29451203), (0.15513189, -0.94719785, 0.28062493), (-0.012272794, -0.9998831, -0.009117118), (-0.04695872, -0.9982071, -0.037114695), (0.017300202, -0.99442637, 0.10400387), (-0.20275766, -0.9521517, 0.22868437), (-0.0042249686, -0.9995606, 0.029340724), (-0.74905336, -0.25794122, -0.6102337), (-0.5214649, 0.24872354, -0.8162175), (-0.42210728, 0.0786697, -0.903126), (-0.4976273, -0.83177394, -0.24600643), (-0.5814458, -0.7018243, -0.4115377), (-0.46262383, -0.77043957, -0.43863684), (-0.43673542, -0.6124493, 0.65891445), (-0.16668814, -0.5649306, 0.8081265), (-0.09245229, -0.63309336, 0.76853454), (-0.16668814, -0.5649306, 0.8081265), (-0.10362395, -0.56588596, 0.81794566), (-0.052310307, -0.581549, 0.8118279), (-0.058807254, -0.4848953, 0.8725929), (0.06398499, -0.579523, 0.81244016), (-0.02700468, -0.34321782, 0.9388675), (0.21207587, -0.72225165, 0.6583134), (0.5485582, -0.73056126, 0.40664992), (0.15513189, -0.94719785, 0.28062493), (0.21207587, -0.72225165, 0.6583134), (0.34696487, -0.8291016, 0.43841296), (0.5485582, -0.73056126, 0.40664992), (0.34696487, -0.8291016, 0.43841296), (0.40765372, -0.88385177, 0.22940056), (0.5485582, -0.73056126, 0.40664992), (0.40765372, -0.88385177, 0.22940056), (0.726555, -0.66086936, 0.18806772), (0.5485582, -0.73056126, 0.40664992), (0.003719424, -0.99974513, 0.022267066), (-0.01959772, -0.9990661, 0.038509145), (0.032578103, -0.99935764, -0.014938284), (-0.703814, -0.5486282, 0.45127913), (-0.6168156, -0.46475965, 0.63524574), (-0.88255644, -0.30992982, 0.35360643), (0.1851918, -0.4577911, 0.8695581), (0.25456768, 0.022397261, 0.96679556), (0.23485602, -0.46150556, 0.85548544), (-0.43673542, -0.6124493, 0.65891445), (-0.44635057, -0.3501747, 0.8234979), (-0.16668814, -0.5649306, 0.8081265), (-0.44635057, -0.3501747, 0.8234979), (-0.10362395, -0.56588596, 0.81794566), (-0.16668814, -0.5649306, 0.8081265), (0.0121184485, -0.99971867, 0.020386532), (0.0029111963, -0.99552965, 0.094404675), (0.112033434, -0.95767885, -0.26514092), (-0.64423424, -0.7619847, 0.06589081), (-0.39042413, -0.7627084, 0.51560146), (-0.21357302, -0.96831006, 0.1294688), (0.0017964055, -0.99373937, 0.1117092), (0.15513189, -0.94719785, 0.28062493), (-0.04695872, -0.9982071, -0.037114695), (0.0013304728, -0.9266607, 0.37589642), (-0.3372196, -0.65068823, 0.6803586), (-0.20275766, -0.9521517, 0.22868437), (0.14860037, -0.98714, -0.058927853), (-0.15419765, -0.9878645, 0.018619632), (-0.21357302, -0.96831006, 0.1294688), (0.068673454, -0.97672313, 0.20321368), (0.07655345, -0.9436843, 0.32186893), (0.006804497, -0.9989128, -0.04611737), (0.6158694, -0.76686466, -0.18062013), (0.35887057, -0.9229695, -0.1390655), (0.14860037, -0.98714, -0.058927853), (-0.8448375, -0.17937076, -0.5040592), (-0.5482103, -0.82992446, -0.10339648), (-0.77513856, -0.610081, -0.16419959), (0.017764445, -0.84842795, 0.5290127), (0.15513189, -0.94719785, 0.28062493), (0.0017964055, -0.99373937, 0.1117092), (0.017764445, -0.84842795, 0.5290127), (0.21207587, -0.72225165, 0.6583134), (0.15513189, -0.94719785, 0.28062493), (0.003719424, -0.99974513, 0.022267066), (-0.031441275, -0.9234549, 0.38241678), (-0.01959772, -0.9990661, 0.038509145), (-0.031441275, -0.9234549, 0.38241678), (-0.37073785, -0.72790265, 0.5768112), (0.17509162, -0.79327476, 0.58314496), (-0.0145859895, -0.9972507, 0.07265274), (-0.017160283, -0.9984152, 0.05359795), (-0.122704074, -0.99235946, -0.0128960395), (-0.0145859895, -0.9972507, 0.07265274), (0.015888618, -0.9996126, 0.02285264), (-0.017160283, -0.9984152, 0.05359795), (0.015888618, -0.9996126, 0.02285264), (-0.0042249686, -0.9995606, 0.029340724), (-0.017160283, -0.9984152, 0.05359795), (0.0013304728, -0.9266607, 0.37589642), (-0.20275766, -0.9521517, 0.22868437), (0.017300202, -0.99442637, 0.10400387), (-0.027354654, -0.51600105, 0.85615104), (-0.3372196, -0.65068823, 0.6803586), (0.0013304728, -0.9266607, 0.37589642), (-0.3372196, -0.65068823, 0.6803586), (-0.027354654, -0.51600105, 0.85615104), (-0.19537881, -0.06637409, 0.97847915), (0.35887057, -0.9229695, -0.1390655), (0.0679254, -0.9975989, -0.013508956), (0.14860037, -0.98714, -0.058927853), (0.020526024, -0.9995826, -0.02033283), (0.1715505, -0.98517466, 0.0011755495), (0.37413302, -0.9235158, -0.08451581), (-0.44635057, -0.3501747, 0.8234979), (0.08454101, -0.33148712, 0.9396643), (-0.10362395, -0.56588596, 0.81794566), (0.097564355, -0.8835147, 0.45812988), (0.2262849, -0.55113804, 0.80314505), (0.034194745, -0.9785811, 0.20300213), (0.2262849, -0.55113804, 0.80314505), (0.05473727, -0.8472051, 0.52843845), (0.034194745, -0.9785811, 0.20300213), (0.06323527, -0.9765512, -0.20578884), (0.0017964055, -0.99373937, 0.1117092), (-0.04695872, -0.9982071, -0.037114695), (-0.034598537, -0.64615273, 0.7624236), (0.21207587, -0.72225165, 0.6583134), (0.017764445, -0.84842795, 0.5290127), (0.08018335, -0.994079, 0.073333), (0.40765372, -0.88385177, 0.22940056), (0.34696487, -0.8291016, 0.43841296), (0.08018335, -0.994079, 0.073333), (0.050805133, -0.998426, -0.023756439), (0.40765372, -0.88385177, 0.22940056), (0.003719424, -0.99974513, 0.022267066), (0.032578103, -0.99935764, -0.014938284), (0.33676922, -0.94128096, -0.024012605), (0.015888618, -0.9996126, 0.02285264), (0.017300202, -0.99442637, 0.10400387), (-0.0042249686, -0.9995606, 0.029340724), (0.45836627, -0.8875529, -0.046368957), (0.34086612, -0.93966603, -0.028946167), (0.38401255, -0.8880041, -0.25294876), (-0.7037521, -0.69388527, -0.15250051), (-0.116680495, -0.99159163, 0.0559605), (-0.42841226, -0.885001, 0.1823081), (-0.014720315, -0.9977732, 0.0650545), (0.022487015, -0.99720454, 0.07125508), (0.023948837, -0.9976528, 0.0641504), (0.27344394, -0.3065479, -0.91173285), (0.338831, -0.6310838, -0.6978014), (0.17113908, -0.4312143, -0.88587), (0.06483762, -0.9114089, 0.40636167), (0.34696487, -0.8291016, 0.43841296), (0.21207587, -0.72225165, 0.6583134), (0.06483762, -0.9114089, 0.40636167), (0.08018335, -0.994079, 0.073333), (0.34696487, -0.8291016, 0.43841296), (0.034172207, -0.9991439, -0.02331928), (0.050805133, -0.998426, -0.023756439), (0.08018335, -0.994079, 0.073333), (-0.21783043, -0.90318173, 0.3698818), (-0.031441275, -0.9234549, 0.38241678), (0.003719424, -0.99974513, 0.022267066), (-0.21783043, -0.90318173, 0.3698818), (-0.37073785, -0.72790265, 0.5768112), (-0.031441275, -0.9234549, 0.38241678), (-0.16228446, -0.3235335, 0.9321962), (-0.26577422, -0.36665386, 0.891588), (-0.17811333, -0.52131015, 0.8345726), (0.2938304, -0.941104, 0.16729282), (0.28556758, -0.8915055, 0.35166624), (0.29304424, -0.9096085, 0.29451203), (0.35887057, -0.9229695, -0.1390655), (0.02013158, -0.96043855, 0.27776363), (0.0679254, -0.9975989, -0.013508956), (0.21207587, -0.72225165, 0.6583134), (-0.034598537, -0.64615273, 0.7624236), (0.06483762, -0.9114089, 0.40636167), (-0.3956094, -0.8877723, -0.23527326), (-0.010869834, -0.9999349, -0.0034638424), (-0.55329823, -0.76914936, -0.31979728), (-0.49190903, -0.73603976, 0.4650494), (-0.26205632, -0.9085785, 0.32528675), (-0.49838474, -0.6881475, 0.5273193), (-0.48336235, -0.8633284, 0.14499962), (-0.5307812, -0.747741, 0.39894196), (-0.6398279, -0.7319674, 0.23418805), (-0.15419765, -0.9878645, 0.018619632), (-0.64423424, -0.7619847, 0.06589081), (-0.21357302, -0.96831006, 0.1294688), (-0.64423424, -0.7619847, 0.06589081), (-0.3956094, -0.8877723, -0.23527326), (-0.6175987, -0.74905723, -0.23976015), (0.009447279, -0.9999306, -0.007029228), (0.08018335, -0.994079, 0.073333), (0.06483762, -0.9114089, 0.40636167), (0.014048632, -0.9980274, 0.06118804), (0.015888618, -0.9996126, 0.02285264), (-0.0145859895, -0.9972507, 0.07265274), (0.0679254, -0.9975989, -0.013508956), (0.02013158, -0.96043855, 0.27776363), (-0.15419765, -0.9878645, 0.018619632), (-0.034598537, -0.64615273, 0.7624236), (-0.06814306, -0.79468393, 0.60318655), (0.06483762, -0.9114089, 0.40636167), (0.009447279, -0.9999306, -0.007029228), (0.034172207, -0.9991439, -0.02331928), (0.08018335, -0.994079, 0.073333), (0.014048632, -0.9980274, 0.06118804), (0.017300202, -0.99442637, 0.10400387), (0.015888618, -0.9996126, 0.02285264), (-0.49838474, -0.6881475, 0.5273193), (-0.26205632, -0.9085785, 0.32528675), (-0.46071714, -0.8289963, 0.31702507), (0.022487015, -0.99720454, 0.07125508), (0.02073968, -0.9961454, 0.085230306), (0.023948837, -0.9976528, 0.0641504), (0.05473727, -0.8472051, 0.52843845), (0.2262849, -0.55113804, 0.80314505), (0.11136336, -0.28162184, 0.95304114), (0.007696416, -0.9953648, 0.09586249), (0.06483762, -0.9114089, 0.40636167), (-0.06814306, -0.79468393, 0.60318655), (0.007696416, -0.9953648, 0.09586249), (0.009447279, -0.9999306, -0.007029228), (0.06483762, -0.9114089, 0.40636167), (0.003719424, -0.99974513, 0.022267066), (-0.4417603, -0.8870125, 0.13437492), (-0.21783043, -0.90318173, 0.3698818), (-0.21783043, -0.90318173, 0.3698818), (-0.4417603, -0.8870125, 0.13437492), (-0.37073785, -0.72790265, 0.5768112), (-0.0019894496, -0.9997337, 0.022988684), (0.014048632, -0.9980274, 0.06118804), (-0.0145859895, -0.9972507, 0.07265274), (0.07709324, -0.9636072, -0.25596443), (0.0017964055, -0.99373937, 0.1117092), (0.06323527, -0.9765512, -0.20578884), (-0.034598537, -0.64615273, 0.7624236), (-0.117647916, -0.59550667, 0.7946891), (-0.06814306, -0.79468393, 0.60318655), (0.095185675, -0.91661394, 0.38827646), (0.017300202, -0.99442637, 0.10400387), (0.014048632, -0.9980274, 0.06118804), (-0.19537881, -0.06637409, 0.97847915), (-0.027354654, -0.51600105, 0.85615104), (0.20384642, 0.06405067, 0.97690547), (-0.159454, -0.9361927, 0.31323737), (-0.30002457, -0.8907839, 0.34130514), (-0.019062374, -0.99864316, 0.048461862), (0.58877265, -0.77926415, -0.21469536), (0.14860037, -0.98714, -0.058927853), (0.40776822, -0.8399432, -0.35807905), (0.0016377692, -0.9999862, -0.00500398), (0.027289476, -0.9994987, 0.016045088), (0.01866885, -0.99972093, -0.014473318), (-0.06527238, -0.8647322, 0.4979736), (0.017764445, -0.84842795, 0.5290127), (0.0017964055, -0.99373937, 0.1117092), (-0.06527238, -0.8647322, 0.4979736), (-0.117647916, -0.59550667, 0.7946891), (-0.034598537, -0.64615273, 0.7624236), (0.017764445, -0.84842795, 0.5290127), (-0.06527238, -0.8647322, 0.4979736), (-0.034598537, -0.64615273, 0.7624236), (-0.4417603, -0.8870125, 0.13437492), (-0.81981546, -0.5627086, 0.10612065), (-0.37073785, -0.72790265, 0.5768112), (-0.0019894496, -0.9997337, 0.022988684), (-0.0145859895, -0.9972507, 0.07265274), (-0.122704074, -0.99235946, -0.0128960395), (-0.2691753, -0.8897734, 0.36857548), (-0.26918742, -0.9422576, 0.19922018), (-0.3442996, -0.9250297, 0.160555), (-0.26918742, -0.9422576, 0.19922018), (-0.2490839, -0.9684093, 0.011860104), (-0.3442996, -0.9250297, 0.160555), (-0.2490839, -0.9684093, 0.011860104), (-0.43382677, -0.8982189, 0.07068976), (-0.3442996, -0.9250297, 0.160555), (-0.43382677, -0.8982189, 0.07068976), (-0.78738946, -0.45226362, 0.418898), (-0.3442996, -0.9250297, 0.160555), (-0.78738946, -0.45226362, 0.418898), (-0.6884842, -0.67793065, 0.25768104), (-0.3442996, -0.9250297, 0.160555), (-0.6884842, -0.67793065, 0.25768104), (-0.6905549, -0.7060824, 0.15678449), (-0.3442996, -0.9250297, 0.160555), (-0.6905549, -0.7060824, 0.15678449), (-0.2691753, -0.8897734, 0.36857548), (-0.3442996, -0.9250297, 0.160555)] point3f[] points = [(-2.797426, 1.296793, 0.39759), (-2.923197, 1.185342, 0.611808), (-2.914882, 1.3542941, 0.560228), (-2.789629, -0.043612, 0.539863), (-2.771338, -0.01865, 0.366535), (-2.817234, -0.181467, 0.45102), (-0.381067, 0.602936, 0.756899), (-0.424354, 0.524894, 0.927961), (-0.362926, 0.468229, 1.105235), (-2.244658, 2.742511, -1.873737), (-2.21685, 2.600308, -1.6219699), (-2.042592, 2.6921449, -1.96064), (-0.583778, 0.451399, 1.100881), (-0.472989, 0.35523, 1.257956), (-1.768475, -2.675615, 1.770851), (-1.6080201, -2.595114, 1.793244), (-1.747579, -2.575689, 1.667), (0.601627, 0.842898, 0.715502), (0.349542, 0.808113, 0.736018), (0.536965, 0.808682, 0.93179), (-1.572322, 1.750916, 1.076749), (-1.597057, 1.706382, 1.247565), (-1.509903, 1.717247, 0.961898), (-2.684129, -1.338585, 0.418679), (-2.7293339, -1.273612, 0.719567), (-2.783097, -1.171813, 0.48191), (-2.077255, 1.594772, -1.546623), (-2.109752, 1.646729, -1.7265589), (-2.000989, 1.692816, -1.755746), (-2.887676, -0.897739, 0.629924), (-2.9197469, -0.743979, 0.773712), (-2.91118, -0.826621, 0.526426), (3.017159, -1.6020839, 0.772403), (2.973258, -1.6308789, 0.907696), (3.015253, -1.740813, 0.940817), (-0.676618, 2.710425, -0.268578), (-0.911037, 2.5545979, -0.244329), (-0.750894, 2.638691, -0.135753), (0.313259, 0.776728, 0.942715), (-2.584714, -1.488826, 0.344231), (-2.684285, -1.319801, 0.246599), (-2.147716, 2.362573, -0.988948), (-2.243933, 2.386199, -1.023801), (-2.110773, 2.191322, -0.631032), (-1.887704, 2.055048, -0.745137), (-1.931145, 1.939529, -0.445634), (-1.864957, 1.862776, -0.495497), (-1.9075689, 2.51865, -1.914513), (-1.994811, 2.468487, -1.629887), (-1.889735, 2.316638, -1.573853), (-1.358846, -2.97611, -0.437032), (-1.245957, -3.048273, -0.558834), (-1.391432, -3.064601, -0.42507), (-2.0524411, 2.389758, -1.208825), (-2.170173, 2.4546819, -1.254389), (-1.965196, 2.305372, -1.165966), (-2.098644, 2.499253, -1.504998), (-2.108131, 2.023642, -0.309101), (-2.16792, 2.053616, -0.330833), (-2.01829, 1.882357, -0.18931), (-2.239659, 2.226605, -0.670883), (-0.506364, -0.681153, -0.94033), (-0.65153, -0.569195, -0.879964), (-0.454018, -0.434306, -0.886126), (0.063107, 0.709603, 0.923403), (-0.132724, 0.59719, 1.005332), (0.022836, 0.548427, 1.245478), (-3.055172, 0.832882, 0.858204), (-2.9573221, 1.00113, 0.92883), (-3.02482, 0.874223, 0.678209), (0.360279, 0.724173, -0.018477), (0.132609, 0.748725, 0.298799), (0.549107, 0.825099, 0.285718), (-2.17186, -3.039875, 0.028011), (-2.148739, -2.915381, 0.02207), (-2.085018, -3.008918, -0.149352), (-3.004069, 0.27856, 1.294898), (-3.045026, 0.424178, 1.37042), (-3.035511, 0.447598, 1.232614), (-2.708142, -1.179865, 0.948877), (-2.776276, -1.103042, 0.843102), (0.24318, 0.791972, 0.500291), (0.449116, 0.826614, 0.481134), (-0.826688, -2.505084, -0.628168), (-0.834603, -2.430793, -0.40677), (-0.752352, -2.436202, -0.45645), (-2.400165, 1.802286, 0.378982), (-2.495794, 1.813385, 0.666626), (-2.281528, 1.843688, 0.635267), (-2.0509, 0.191802, -0.321942), (-2.16827, 0.239134, -0.259612), (-2.028661, 0.350632, -0.29064), (-2.907983, -0.425301, 0.597506), (-2.831235, -0.168944, 0.606641), (0.551524, 0.763568, 0.01658), (-2.869566, 1.5965481, 1.103812), (-2.666581, 1.5821381, 1.412451), (-2.796455, 1.659944, 1.097043), (0.624837, -0.559444, 2.21746), (0.836035, -0.574858, 2.182207), (0.79723, -0.475009, 2.085921), (-2.594308, 1.7875841, 0.849303), (-2.414164, 1.8069019, 1.043285), (-3.107608, 0.642583, 0.830349), (-3.066869, 0.671996, 0.600991), (0.769672, 0.861115, 0.538839), (-2.298028, 2.5425181, -1.463836), (-0.267013, 0.641637, 0.725652), (-2.584984, 1.7507191, 1.097944), (-2.60323, 1.698177, 1.24865), (0.712545, 0.821653, 0.163161), (0.817134, 0.851599, 0.348504), (-2.62217, -1.385167, 0.722799), (-2.599553, -1.470965, 0.507023), (-2.021676, 2.067577, -0.491284), (-1.865154, 2.200676, -1.259658), (-2.935667, 0.907379, 0.296914), (-2.885014, 1.046725, 0.346065), (-2.832598, 0.946193, 0.155578), (0.934812, 0.796876, 0.096684), (1.128769, -0.47756, -0.863835), (1.284665, -0.608521, -0.920492), (1.093332, -0.560299, -0.979111), (-2.090793, 1.859633, -0.019622), (-2.222446, 1.9574599, -0.158073), (0.237978, 0.672239, 1.165216), (-2.313284, 1.858295, -0.044639), (-2.283589, 1.8141091, 0.153641), (0.77364, 0.789277, 1.05581), (0.503531, 0.761743, 1.095193), (0.6114, 0.697509, 1.231679), (-2.880406, -0.612398, 0.377583), (-2.915061, -0.582274, 0.630256), (-2.890872, -0.438849, 0.443209), (-2.350066, 2.335338, -1.014961), (-2.873908, 0.043708, 0.567874), (-2.957665, 0.10454, 0.706695), (-2.959106, 0.143477, 0.471538), (0.409596, 0.652196, 1.271519), (0.489175, 0.566713, 1.401667), (-1.360092, 1.708665, 0.533289), (-1.341005, 1.908142, 0.436157), (-1.428338, 1.722219, 0.577827), (-3.062669, 0.323094, 0.996271), (-3.105459, 0.478047, 1.004536), (-3.081425, 0.310407, 0.80779), (-2.5704021, 0.618911, 2.150872), (-2.494343, 0.735938, 2.190731), (-2.5926561, 0.800765, 2.14936), (-2.416263, 0.873449, 2.163186), (-2.525429, 0.975874, 2.104153), (-2.191369, 2.843097, -2.165254), (-2.300055, 2.795768, -1.9774339), (-2.14859, 2.829414, -2.072785), (-2.49161, 1.524577, 1.6419101), (-2.491452, 1.635185, 1.469032), (-1.223469, 2.11758, 0.303008), (-1.40506, 2.023747, 0.345839), (-1.622609, 1.800875, 0.83427), (-3.026278, 0.184404, 0.741837), (-2.457358, 0.535995, 2.150136), (-2.471593, 1.1680009, 1.9974489), (-2.42426, 1.423776, 1.788671), (-2.572185, 1.1582, 1.9585409), (-1.715273, 1.787302, 1.117008), (-1.734409, 1.710289, 1.378235), (-2.305484, 2.141966, -0.563484), (-0.578125, -2.658853, 2.055657), (-0.576321, -2.8013349, 2.117072), (-0.387815, -2.611253, 2.113343), (-2.997708, 0.874569, 0.486029), (-1.444842, -1.59815, -0.536647), (-1.534431, -1.285759, -0.732757), (-1.372412, -1.381363, -0.669857), (-1.889518, 0.705338, -0.283395), (-2.157156, 0.793795, -0.291955), (-2.071795, 0.995624, -0.274834), (-1.590855, 1.91001, 0.387403), (-1.6394401, 1.8231089, 0.580062), (-1.517449, 1.807577, 0.565197), (-2.362592, 0.604484, 2.188244), (-2.373217, 1.1250091, 2.033027), (2.418658, -0.747187, -0.046698), (2.335415, -0.713294, -0.239655), (2.322553, -0.507735, -0.099986), (-2.782127, -1.105992, 0.314632), (-2.806026, -1.034906, 0.557443), (-0.355297, 0.620497, 0.242045), (-0.268913, 0.664341, 0.500415), (-2.8986511, -0.712812, 0.483291), (-3.110947, 0.468618, 0.777404), (-1.911016, 1.735368, -0.145795), (0.984047, 0.855015, 0.527927), (0.910728, 0.85238, 0.734072), (-2.295049, 1.360033, 1.86374), (-1.432087, -2.509264, 0.655263), (-1.342939, -2.44827, 0.747748), (-1.366871, -2.302748, 0.639117), (1.0114, 0.832353, 0.311084), (-2.396581, 0.264155, 2.124165), (-2.288883, 0.431614, 2.200614), (-2.240193, 0.798106, 2.131337), (-2.312612, 0.999366, 2.092067), (0.07926, -0.916852, -1.477078), (0.148443, -0.777016, -1.4106), (0.298499, -0.991644, -1.468876), (-0.927801, 1.566932, 0.123668), (-0.809698, 1.6235061, -0.022254), (-0.733819, 1.6794469, 0.054114), (-3.028802, 0.604946, 0.426713), (-2.871101, 1.1563671, 0.48613), (-2.80676, 1.136994, 0.242199), (-0.86358, -2.231545, -0.377865), (-0.875094, -2.079175, -0.401942), (-0.740317, -2.200213, -0.363419), (-0.619829, -0.880612, -0.948314), (-0.800217, -0.861734, -0.897701), (-2.253637, 0.325378, 2.186129), (-2.344237, 1.573252, 1.630398), (-2.23623, 1.498914, 1.732177), (-2.816652, 0.819499, 0.095995), (-2.917635, 0.736385, 0.241724), (-2.858759, -0.898698, 0.253884), (-1.775769, 0.95073, -0.23028), (-1.939052, 1.210717, -0.248724), (-1.793659, 1.211957, -0.192128), (-2.166629, 0.496891, 2.195765), (-2.239434, 1.236544, 1.943205), (-2.32971, 0.177871, 2.095579), (-2.223673, 0.210226, 2.131421), (-1.795224, 2.4339051, -2.4139), (-1.793145, 2.607368, -2.371896), (-1.771004, 2.400717, -2.380224), (-2.825625, -0.723523, 0.228096), (-0.568594, 2.253367, -0.591833), (-0.266867, 2.329586, -0.69536), (-0.470565, 2.082469, -0.533482), (2.398621, -0.499727, 0.100575), (2.328195, -0.262341, 0.166749), (2.406766, -0.427716, 0.260554), (2.691473, -2.300404, -0.077568), (2.793169, -2.336001, 0.034549), (2.736212, -2.472881, 0.101147), (-0.692513, 2.058609, -0.493419), (-1.960738, 1.422082, -0.701448), (-1.877322, 1.518219, -0.74939), (-1.848452, 1.4754751, -0.465816), (0.824759, 0.090326, 1.723379), (0.940509, 0.263966, 1.611966), (0.706156, 0.247828, 1.670161), (2.515983, -2.486771, -0.095811), (2.307846, -0.184688, 0.360487), (2.393166, -0.36953, 0.4394), (2.861166, -2.1697469, 0.03291), (-1.459561, 1.065699, -0.007049), (-1.345916, 1.082889, 0.137739), (-1.352919, 0.930868, 0.015841), (0.021162, 0.733517, 0.728453), (0.819003, 0.826661, 0.908301), (-2.107968, -0.597899, 1.748814), (-2.151614, -0.367525, 1.6551831), (-2.271241, -0.591089, 1.671888), (-2.137814, 0.310797, 2.17328), (0.728944, -2.319798, 2.190718), (0.756547, -2.40794, 2.15628), (0.819217, -2.2838721, 2.201693), (-2.081192, 1.3827469, 1.785411), (2.661701, -2.66012, 0.644217), (2.386753, -2.8140569, 0.417619), (2.546117, -2.714278, 0.322694), (2.971706, -2.013358, 0.135174), (2.976329, -2.171047, 0.220824), (2.476621, -1.1713359, 0.083948), (2.498715, -0.930318, 0.21529), (2.52845, -1.3144441, 0.336694), (-1.735008, -2.756216, 0.979867), (-1.545936, -2.695396, 0.826773), (-1.777429, -2.901757, 0.849847), (-2.7907891, -0.214912, 0.29932), (-2.70729, -0.023272, 0.208199), (-2.6742291, -0.116518, 0.089831), (-2.338403, -1.748199, 0.470228), (-2.420743, -1.617096, 0.262368), (-2.314959, -1.7432411, 0.247722), (-2.022293, -0.440259, 1.727356), (-2.040701, -0.112741, 1.583981), (-2.219183, -0.191923, 1.564122), (-2.108525, -0.059953, 1.563504), (0.408209, -0.791483, 2.340321), (0.623833, -0.844498, 2.327183), (0.448264, -0.678411, 2.300777), (1.050959, -0.79498, 2.233429), (1.2116311, -0.684878, 2.1232991), (1.055084, -0.588231, 2.100957), (0.932754, -1.99921, 2.256121), (0.780561, -1.902866, 2.326103), (0.804097, -2.018008, 2.283561), (-2.05891, 0.695087, 2.070416), (-2.067901, 0.510871, 2.1622), (2.551779, -1.435537, 0.466034), (2.52958, -1.2611849, 0.652372), (-3.008356, 0.694553, 1.521433), (-2.948802, 0.84392, 1.588807), (-2.950411, 0.897116, 1.305855), (-2.878586, 1.439822, 0.455547), (-2.759243, 1.482586, 0.324024), (0.64237, 0.724858, -0.070846), (0.846769, 0.708674, 1.208181), (-1.9321721, -0.258142, 1.689419), (-1.922027, 1.762306, -1.563203), (-1.944165, 1.835441, -1.9401879), (-1.8553929, 1.9577551, -1.662933), (0.688831, -2.615212, 1.924891), (0.648305, -2.5246959, 2.029832), (0.392963, -2.555835, 1.9636121), (0.968167, 0.43424, 1.501976), (0.915966, 0.593105, 1.368822), (0.813384, 0.395924, 1.53961), (-1.321162, 1.241988, 0.271719), (-1.252037, 1.367955, 0.229859), (-1.269881, 1.42127, 0.394922), (-3.105224, 0.64165, 0.949718), (-1.327136, 1.465883, -0.015204), (-1.104396, 1.643507, -0.168569), (-1.080894, 1.507005, -0.026508), (2.466902, -0.615548, 0.541631), (2.483582, -0.662544, 0.30941), (2.51505, -0.926983, 0.397227), (0.105508, 0.702792, 0.111892), (-2.866488, -0.933684, 0.384367), (1.167721, 0.757278, 0.112917), (0.075012, -2.867533, 1.237512), (-0.0545, -2.840314, 1.639498), (-0.16094, -2.87726, 1.176965), (0.997416, -2.349014, 2.135562), (1.043564, -2.647722, 1.866245), (0.913762, -2.544903, 2.027294), (0.871427, -2.733633, 1.89295), (3.110947, -1.9451101, 0.479046), (3.073191, -1.753567, 0.400848), (3.082873, -1.685153, 0.518765), (2.889559, -2.355345, 0.18801), (-1.908743, 1.932464, -2.116245), (-1.902696, 2.016924, -2.227927), (-1.810322, 2.191043, -2.212136), (-2.064415, -0.712823, 1.75923), (-2.049192, -0.895664, 1.804874), (-1.956545, -0.766335, 1.827534), (1.3487101, -0.271802, 1.875461), (1.502071, -0.239985, 1.783929), (1.275414, -0.115648, 1.736102), (0.814377, -0.954921, 2.34708), (0.866153, -0.741776, 2.253521), (0.987106, -2.209605, 2.174727), (0.88216, -2.130716, 2.201726), (-2.040117, 1.257148, 1.8185539), (-1.960531, 1.5825579, 1.589697), (2.446289, -1.000444, -0.025455), (2.463425, -1.041582, 0.092588), (2.3622031, -1.147656, -0.207992), (-0.560217, 0.621061, 0.72489), (1.222187, 0.78274, 0.337442), (1.448464, 0.690945, 0.512422), (1.446151, 0.671312, 0.282203), (-1.890277, -1.2644, 1.7469909), (-1.932476, -1.026644, 1.828656), (-2.152987, -1.136227, 1.6878979), (-2.130774, -0.965453, 1.750687), (-1.893815, -0.493804, 1.7663109), (2.408617, -1.377133, -0.096325), (2.503078, -1.42229, 0.163995), (0.65606, -2.077566, 2.244227), (0.639436, -1.987337, 2.298017), (0.500952, -1.954252, 2.292551), (1.060716, -0.363513, 1.9591019), (0.88003, -0.341408, 1.880904), (0.962177, -0.45287, 2.001064), (0.841871, -1.493238, 2.317021), (0.982334, -1.514874, 2.307535), (0.896996, -1.35361, 2.3181639), (-0.326348, 2.412355, -0.394883), (-0.592731, 2.256251, -0.170415), (-0.54338, 2.178581, -0.15426), (0.488262, -2.100975, 2.22447), (0.500919, -2.23299, 2.221163), (-0.30338, 2.67787, -0.410519), (-0.53216, 2.503458, -0.195588), (-0.534678, 2.40441, -0.235664), (-1.389778, -2.176423, 0.697044), (-1.510283, -2.197303, 0.473546), (-1.139832, 0.769987, 0.876579), (-1.192884, 0.924496, 0.736714), (-1.2416921, 0.916957, 0.976689), (-2.68275, 0.485646, -0.09014), (-2.503715, 0.41709, -0.168108), (-2.633403, 0.244143, -0.033739), (-1.8298631, -1.047321, 1.831987), (-1.837156, -0.762947, 1.8675799), (-1.694546, -0.390589, 1.772719), (2.41067, -2.326101, 1.362375), (2.429509, -2.460109, 1.316312), (2.58792, -2.301821, 1.294412), (-0.104583, 2.416353, -0.782455), (0.086009, 2.582944, -0.982068), (0.116504, 2.3145251, -0.818641), (0.613622, -2.174525, 2.250138), (-1.816339, 2.154588, -2.281841), (2.038075, 0.135772, 1.045711), (2.01201, 0.08525, 1.173745), (2.17959, -0.132332, 1.11421), (-1.736987, -0.585463, 1.831213), (-1.758455, -0.219788, 1.699788), (-1.883965, 0.008811, 1.566391), (2.217456, -2.489835, 1.332113), (2.197227, -2.42043, 1.338712), (2.097883, -2.39411, 1.320178), (-1.580517, 1.2526929, -0.052951), (-1.453328, 1.233981, 0.040428), (-2.914474, 1.132699, 1.064405), (-2.96719, 1.138816, 0.883999), (-2.944984, 1.026841, 0.626821), (-0.150044, 0.386654, 1.382888), (1.6945391, -2.833834, -0.101969), (1.8369269, -2.919074, 0.048422), (1.5636511, -2.9424481, -0.024448), (-1.8175471, -1.897038, -0.121824), (-1.713071, -1.969422, -0.035814), (-1.918522, -1.942035, 0.068482), (-1.689069, -1.307562, 1.782193), (-1.726964, -1.187461, 1.794853), (-1.712184, -0.854432, 1.868324), (-1.692085, -0.726705, 1.877386), (1.063339, -0.197208, 1.807955), (-1.651358, -0.02893, 1.583147), (0.980102, -0.951403, 2.309768), (-2.074901, 2.605587, -2.233799), (-1.975705, 2.222556, -2.292192), (-2.040438, 2.212854, -2.164767), (-1.646554, -1.050967, 1.831301), (-1.596902, -0.554615, 1.810525), (-1.700048, 0.122506, 1.512452), (0.663984, -2.230243, 2.250554), (0.519528, -1.017144, 2.353081), (-2.327887, 1.5951071, -1.053456), (-2.316851, 1.66365, -1.089347), (-2.25801, 1.536583, -1.093377), (2.370466, -2.047261, 1.296462), (2.303216, -1.9479849, 1.256075), (2.225037, -2.153468, 1.310117), (0.844203, -0.197113, 1.76624), (-1.9635329, -2.954709, -0.229574), (-2.071963, -2.914282, -0.139287), (-1.998349, -2.795882, -0.141786), (-1.609225, -0.884265, 1.8516281), (1.099966, -2.543994, 1.92297), (-1.192927, -1.704286, 1.648836), (-1.239641, -1.933161, 1.531345), (-1.110316, -1.967921, 1.6452091), (-2.097347, 1.8222201, 0.125086), (-0.60755, 0.602743, 0.837403), (-1.495223, -2.821912, -0.363403), (-1.827501, -2.80728, -0.237463), (-1.361412, -2.688442, -0.342311), (-1.692189, -1.459699, 1.711444), (-1.5362561, -1.422153, 1.741225), (-1.5568011, -0.720419, 1.8661461), (-1.5441799, -0.260611, 1.724261), (0.885962, -1.690094, 2.291829), (0.885634, -0.028724, 1.730608), (0.720872, -0.033189, 1.77022), (-1.826349, 1.495813, -0.247728), (-1.8123391, 1.502223, -0.114021), (-1.854862, 1.3338699, -0.240941), (1.154046, -0.245279, 1.8798339), (0.56607, -2.362116, 2.192233), (0.770333, -0.400403, 1.941658), (-2.175324, 1.662465, -1.732203), (-2.117475, 1.794665, -1.95313), (-2.009633, 0.506709, -0.297762), (-1.808385, 0.51399, -0.292341), (-1.541347, -1.128958, 1.8633311), (-1.5316651, -0.09668, 1.640368), (0.669537, -1.334169, 2.392891), (0.591194, -1.169104, 2.367352), (0.435495, -1.247702, 2.384033), (3.103574, -1.943881, 0.684661), (3.108949, -1.778292, 0.61983), (3.083469, -1.782829, 0.802626), (-1.443652, -2.760211, 1.910851), (-1.61923, -2.776293, 1.916126), (-0.788017, 0.475015, 1.169034), (-0.560173, 0.233389, 1.377079), (-1.935187, 0.977161, -0.26497), (-1.9653001, 1.340875, -0.445236), (-2.061695, 1.353632, -0.541427), (-1.526856, -1.598814, 1.616452), (-1.491706, -1.186342, 1.84796), (-1.476319, -0.994727, 1.877274), (-1.531558, -0.421538, 1.781946), (-1.499765, 0.17501, 1.4566851), (2.503755, -2.115292, 1.342329), (2.308813, -2.229382, 1.343232), (1.533525, -0.753801, 1.985981), (1.5013499, -0.543375, 1.942979), (1.35435, -0.523159, 1.961823), (-1.44046, -2.623751, 1.829586), (2.167425, -2.912991, 0.653554), (2.101517, -2.95242, 0.453042), (-1.538772, -2.476944, 1.604004), (-1.720682, -2.952054, -0.321307), (-1.456455, -1.292847, 1.7971721), (-1.449009, -0.771503, 1.846653), (0.360786, -2.405348, 2.104087), (1.204758, -0.537931, 2.014323), (1.214547, -0.37649, 1.962359), (2.525677, -1.934541, 1.271399), (2.5217881, -1.7515321, 1.134481), (1.512815, -0.956047, 2.04171), (1.390279, -0.7721, 2.012831), (2.394639, -1.742157, 1.141929), (2.398942, -1.8589239, 1.183813), (2.507057, -1.630611, 1.003769), (2.798534, -2.502455, 0.261623), (2.955727, -2.348854, 0.350318), (2.948613, -2.3914561, 0.485586), (1.488513, -0.390308, 1.894439), (-0.96707, -2.5676541, -0.66006), (-0.82684, -2.595455, -0.912057), (-1.016523, -2.679045, -0.803062), (-1.370604, 0.991, 1.165599), (-1.237317, 0.826955, 1.082936), (0.331627, -2.004744, 2.2773309), (0.167666, -1.945572, 2.241848), (0.19301, -2.111659, 2.174814), (-0.487221, -2.841772, 2.1971369), (-0.519213, -2.95189, 2.164424), (-1.332373, -1.156551, 1.834435), (-1.407521, -0.589284, 1.821341), (-1.411343, -0.418849, 1.772377), (-1.36134, -0.034732, 1.5951741), (-1.323166, 0.13105, 1.46767), (0.443139, -1.791028, 2.311996), (0.669187, -1.638679, 2.328292), (0.473115, -1.623971, 2.340832), (1.48098, -0.11329, 1.676427), (1.462048, 0.08859, 1.565007), (1.280716, 0.223036, 1.544424), (2.246387, -0.138764, 0.879493), (2.164495, 0.019692, 0.813774), (-1.361194, -1.363585, 1.789261), (-1.3912671, -0.207942, 1.6773651), (0.783513, -1.244998, 2.333882), (1.032223, -0.122165, 1.713302), (-1.437777, -2.472519, 1.612562), (-1.298674, -2.556047, 1.71036), (-1.321442, -2.422632, 1.544629), (-1.291223, -0.959646, 1.878059), (-1.346216, -0.854464, 1.87148), (-1.283532, -0.764671, 1.842155), (1.194266, 0.140783, 1.5953901), (0.668803, -0.679768, 2.280917), (0.587691, 0.051325, 1.76115), (-1.8083141, 1.767992, -0.703208), (-1.819109, 1.865276, -0.655856), (-1.823659, 1.664675, -0.528938), (-1.329699, -2.68875, 1.842394), (3.044425, -1.885671, 0.92407), (-2.043123, 1.439557, -0.876228), (-2.087852, 1.486927, -1.093032), (-1.991652, 1.546356, -1.206893), (-1.298701, -0.225877, 1.675527), (2.544829, -2.222896, 1.341711), (-2.429338, 1.736856, 1.2983301), (-2.344589, 1.6912811, 1.4378409), (-1.491411, 1.39683, 0.014954), (-1.342174, 1.331831, 0.120203), (-2.2351341, -2.997628, 0.341338), (-2.214134, -2.9104729, 0.218995), (-2.193366, -3.035574, 0.227965), (-1.275871, -0.549381, 1.831182), (-1.234666, -0.374581, 1.757642), (2.070737, -2.686686, 1.220509), (1.974319, -2.599246, 1.275143), (0.553673, -1.52246, 2.391947), (0.418137, -1.522544, 2.384159), (0.531603, -2.706481, 1.965857), (0.412365, -2.611186, 1.964303), (0.072968, -2.7100239, 2.120764), (-1.226185, -2.474025, 1.6284261), (-1.198405, -2.228851, 1.566695), (-1.347302, -2.338701, 1.424341), (-1.227102, -1.387567, 1.7689099), (-1.311077, -1.472339, 1.730552), (-1.230916, -0.152234, 1.670084), (-1.169556, -0.04417, 1.613481), (-1.9800329, 1.2844269, -0.316565), (-1.882882, 1.368847, -0.397531), (-1.093566, -2.369701, 1.622452), (-1.145885, -1.113555, 1.7950549), (-1.158101, -1.009116, 1.830238), (-1.111323, -0.613232, 1.7826381), (-1.147293, -0.76795, 1.7938781), (-2.99506, 1.414683, 0.952757), (-2.969383, 1.44774, 0.653283), (-3.005772, 1.331038, 0.772848), (1.038653, -2.47331, 2.038505), (-1.079459, 2.328788, 0.153373), (-1.114363, -2.660839, 1.771129), (-1.108098, -0.902188, 1.802894), (-1.164937, 0.424132, 1.1688089), (-1.291994, 0.303155, 1.325856), (0.228732, 2.882003, -1.065065), (0.26291, 2.759097, -1.125072), (0.185616, 2.851037, -1.105916), (0.674789, -0.227995, 1.814856), (-2.030942, 1.8014469, -2.009494), (-2.001508, 1.7417569, -1.909358), (-1.197096, 1.965917, 0.372296), (-2.943542, 1.576927, 0.582147), (-2.8354921, 1.622532, 0.466553), (-1.078117, -2.526242, 1.674922), (-2.07331, 2.292409, -0.901341), (2.031682, -1.263002, -0.647625), (1.906011, -1.130179, -0.744185), (2.027025, -1.063005, -0.687643), (-1.130366, -1.546885, 1.740804), (-1.13302, -1.257405, 1.757328), (-1.090323, -0.430173, 1.759017), (-1.100443, -0.234012, 1.717175), (-1.047157, 0.329099, 1.288307), (-0.121026, 2.203177, -0.646682), (0.043213, 2.12412, -0.598064), (-0.587419, 1.782515, -0.248539), (-0.457863, 1.901885, -0.381641), (-0.299338, 1.873633, -0.255384), (-1.142873, 1.8765869, 0.348307), (-1.079616, 2.075609, 0.29087), (-1.040172, -1.329623, 1.775885), (-0.990085, 0.083998, 1.497967), (-0.944007, 0.262357, 1.361095), (-1.308136, 1.310562, 0.41925), (-1.375731, 1.405477, 0.632047), (2.791071, -2.550886, 0.477591), (2.618968, -1.939728, 1.276366), (-1.00966, -1.624974, 1.736621), (-1.010334, -1.16568, 1.7619331), (-1.023503, -0.111485, 1.641645), (-1.901947, 1.548869, -0.979141), (0.952589, -1.8226609, 2.288968), (0.683887, -1.780916, 2.32787), (-0.990588, 2.299023, 0.19083), (-1.338055, -2.2733011, 0.711283), (-1.005641, -2.1649451, 1.6552889), (-1.01275, -0.940003, 1.76508), (-0.988868, -0.465488, 1.734764), (-3.026754, 0.700451, 1.252483), (-1.82955, 2.145891, -1.932222), (0.635633, -0.350549, 1.835474), (-0.980209, -2.6888719, 1.748837), (-0.889383, -2.091486, 1.669512), (-0.897631, -1.887848, 1.718895), (-0.910947, -1.284212, 1.780478), (-1.8106611, 2.345863, -2.050673), (-1.845878, -2.605309, 1.447819), (-1.7088051, -2.52129, 1.429755), (0.517398, -0.180098, 1.825734), (0.297029, -0.109266, 1.80197), (0.360745, -0.19997, 1.816843), (-0.887532, -2.55793, 1.678069), (-0.855868, -2.388093, 1.635458), (-0.863759, -1.656501, 1.7374849), (-0.904542, -1.063517, 1.8038859), (-0.907445, -0.82427, 1.790875), (-0.919793, -0.320776, 1.686475), (-1.277701, 1.051916, 0.332376), (-1.268507, 1.098612, 0.590563), (0.313493, 2.370376, -0.85017), (0.253352, 2.266853, -0.812581), (0.281352, 2.371194, -0.933305), (-0.583749, 1.743111, -0.127984), (-0.507641, 1.8185251, 0.011661), (-0.796291, -1.406135, 1.7439201), (-0.781873, -0.57974, 1.8070121), (-0.889345, -0.133236, 1.5931721), (-0.747982, 0.092019, 1.465163), (-0.852102, 0.205221, 1.389901), (-0.782293, 0.345521, 1.289469), (-0.956442, 0.501736, 1.113682), (-2.748018, 1.734174, 0.87661), (-2.807972, 1.71046, 0.68185), (-2.890195, 1.6658161, 0.864912), (-0.962461, 2.173729, 0.209609), (-0.844366, 2.4039211, 0.116525), (-0.821133, 2.5157871, 0.024701), (0.545558, 0.359787, 1.59726), (0.674953, 0.521481, 1.452902), (0.415901, 0.475504, 1.492651), (-0.897394, -2.716628, 1.7226319), (3.061994, -1.8868561, 0.297918), (3.060936, -1.990902, 0.293611), (-0.809838, 2.35949, 0.112597), (-0.738544, -1.667887, 1.718838), (-0.790158, -1.16293, 1.790251), (-0.799758, -0.965179, 1.808318), (-0.79976, -0.852768, 1.796255), (-0.755543, -0.703177, 1.833405), (-0.767141, -0.414755, 1.757107), (-0.778937, -0.152802, 1.6091), (0.67459, -1.469944, 2.3730779), (2.334418, -0.293163, 0.724255), (2.419981, -0.51182, 0.753757), (1.474436, -3.019894, -0.016691), (1.492349, -2.990878, -0.092167), (-0.775955, -2.552281, 1.693152), (-0.701846, -2.391279, 1.5947111), (-0.705158, -2.247888, 1.585659), (-0.70768, -1.9798391, 1.645155), (-0.652161, -1.343277, 1.714685), (-0.615954, -0.047636, 1.58736), (1.066776, -0.004532, 1.661252), (1.010045, 0.128692, 1.655125), (0.543472, -1.381137, 2.4139), (-0.795843, 2.255562, 0.048144), (-0.730696, -1.09332, 1.7802429), (-0.651933, -0.961097, 1.7661121), (-0.659169, -0.865334, 1.811693), (-0.67293, -0.253187, 1.693035), (-0.705457, 2.494782, 0.020055), (-0.496298, 2.648474, -0.166088), (-1.464544, 1.707551, 0.709616), (-1.546587, 1.7753019, 0.707482), (-0.637153, -1.701174, 1.668429), (-0.659387, -1.118245, 1.737714), (0.31806, -0.591584, 2.242726), (0.438636, -0.513391, 2.174463), (-0.602872, -0.779144, 1.830797), (0.3752, 0.271927, 1.634724), (0.370879, 0.067575, 1.745233), (-0.553943, -2.23519, 1.530882), (-0.540215, -1.911903, 1.582528), (-0.49888, -0.636088, 1.856771), (-0.564079, -0.530856, 1.849963), (-2.216843, 1.584054, -1.5151241), (-2.225642, 1.672735, -1.60649), (-3.051877, 0.517982, 1.524023), (-0.561394, -1.206392, 1.735544), (-0.495251, -0.327989, 1.769027), (2.772041, -1.837621, 1.193545), (2.694757, -1.718708, 1.136185), (1.5407209, -2.907083, -0.129118), (-0.49903, -1.62812, 1.638139), (-0.499437, -1.40285, 1.711017), (-0.528567, -0.992503, 1.813619), (-0.498889, -0.789955, 1.8333299), (-0.462805, -0.496049, 1.8142691), (2.502203, -0.882251, 0.585715), (2.463603, -0.696084, 0.774506), (2.047467, -2.334712, 1.373032), (0.397167, -1.031376, 2.351902), (-0.633435, 2.599859, -0.044633), (-0.529136, 2.725137, -0.150518), (-0.430581, -1.210548, 1.9721), (-0.424865, -1.044392, 2.014144), (2.989277, -1.844383, 0.164812), (3.01448, -1.687626, 0.289002), (1.105776, 0.827611, 0.634544), (-0.449143, -1.968012, 1.562037), (-0.451263, -2.229641, 1.534594), (2.285528, -0.314264, -0.020956), (2.174206, -0.065954, 0.073062), (1.111426, 0.648952, 1.256707), (1.080538, 0.48376, 1.451671), (2.532418, -1.446547, 0.795448), (2.49995, -1.075266, 0.849444), (-1.924647, 1.6823261, -1.391603), (-1.863613, 1.6964071, -1.232654), (-0.437862, -2.392004, 1.797405), (-0.522989, -2.541168, 1.974093), (-0.387693, -2.499699, 2.037278), (-0.410845, -1.729857, 1.6502941), (-0.353753, -0.458726, 1.832298), (-0.324842, 0.078533, 1.5656071), (-0.363647, -0.236025, 1.751964), (0.655034, 0.388316, -0.486346), (0.707726, 0.262547, -0.635779), (0.598592, 0.232025, -0.629056), (0.724065, -1.054928, 2.363045), (-2.074561, 1.168547, -0.253528), (-1.8230419, 1.686063, -0.845976), (-0.363558, -2.1439, 1.630649), (-0.342949, -1.9081919, 1.689192), (-0.291851, -1.694077, 1.871094), (-3.041729, 0.428561, 1.728791), (-3.063204, 0.402854, 1.579782), (-3.025146, 0.321419, 1.7116311), (2.132756, -2.131578, 1.40686), (-0.391401, -0.676225, 1.862956), (-0.173472, -0.033286, 1.692126), (-0.325974, 0.231569, 1.42664), (-0.238534, -2.416794, 1.928323), (-1.553061, 1.5599871, -0.019166), (-1.334366, 1.5969269, -0.086604), (2.669095, -1.600704, 1.011094), (1.02172, 0.753592, 1.108331), (1.307284, 0.756336, 0.590238), (-0.303923, -0.57289, 1.8412659), (-0.228215, -2.551941, 2.140043), (-0.246559, -2.371209, 1.820892), (-0.320271, -2.307628, 1.697116), (-1.8908429, 1.475455, 1.602658), (-0.243384, -0.292954, 1.805586), (-0.066986, 1.985924, -0.388459), (0.10339, 2.066008, -0.475859), (-0.303309, 2.8397021, -0.334793), (-0.387651, 2.842675, -0.264616), (-0.292977, 2.9536061, -0.403507), (-0.376006, -2.712931, 2.197382), (-0.203153, -2.651818, 2.194519), (-0.223156, -2.489384, 2.069515), (0.051628, -0.232245, 1.78051), (0.067418, -0.409941, 1.843902), (0.208564, -0.363901, 1.831527), (-2.860316, -0.50576, 0.287159), (-0.738093, 0.59746, 0.927031), (-0.063451, 3.01888, -0.627731), (0.063764, 2.98679, -0.825058), (-0.018845, 3.081411, -0.741663), (-0.223003, -0.479009, 1.8545561), (1.123321, -1.747113, 2.224128), (-2.01581, 2.830017, -2.2109709), (-1.4240301, -2.368615, 1.041317), (-1.416728, -2.159388, 1.129006), (-1.368023, -2.259211, 0.851541), (-0.163643, 0.158087, 1.578148), (-1.742459, 1.3328481, -0.092566), (1.346233, -0.862483, 2.085413), (1.39733, -1.063846, 2.116004), (-0.123306, -2.347668, 1.9097359), (-0.192001, -2.137976, 1.8826699), (-0.869873, -1.4962571, -0.642402), (-0.740337, -1.567323, -0.662838), (-0.745255, -1.737757, -0.5595), (1.328517, 0.495877, 1.317594), (1.2276471, 0.524065, 1.362795), (1.33833, 0.350818, 1.464637), (-0.137038, -0.321163, 1.8118579), (2.71085, -2.119083, 1.262497), (2.69525, -1.998601, 1.272268), (-0.02938, -2.493771, 2.01751), (-2.9878159, 1.537153, 0.71187), (-2.975538, 1.5520439, 0.921872), (-2.9357781, 1.63129, 0.691125), (1.343994, 0.671498, 0.068394), (-1.451538, -2.44546, 1.4215419), (-1.6230769, -2.520424, 1.258028), (-1.124488, 1.449255, 0.128069), (-0.050411, -0.205062, 1.775835), (-0.807256, -2.929132, -1.132101), (-0.952018, -2.857809, -1.037897), (-0.687977, -2.772033, -1.129939), (1.07928, -1.350765, 2.27524), (1.001925, -1.178813, 2.27996), (0.051758, -2.601285, 2.090629), (-0.048171, -2.415431, 1.942055), (-0.004429, -2.338211, 2.002661), (-0.491081, 0.617959, 0.370686), (1.054978, 0.812655, 0.890113), (-2.149861, 1.248678, -0.279771), (-0.225077, -1.077466, 2.28863), (-0.15157, -1.2262781, 2.305599), (-0.093613, -1.069796, 2.35386), (0.380352, -1.45296, 2.384107), (1.3057129, -0.679672, 2.062008), (0.00471, -0.917741, 2.334764), (-0.129177, -0.887047, 2.288575), (-0.082995, -0.448309, 1.843462), (0.004341, 0.221857, 1.577353), (1.863282, -1.549712, -0.793984), (1.7292199, -1.600486, -0.898098), (1.6951799, -1.445946, -0.940598), (0.920362, -1.072545, 2.323629), (-1.019854, 2.4847121, -0.108179), (-0.039886, -1.30994, 2.308541), (-0.007714, -1.106647, 2.36615), (0.02212, -2.240024, 2.07675), (-0.061722, -2.111789, 2.054939), (-0.024853, -1.623791, 2.228432), (0.062501, -1.5736489, 2.265134), (0.062545, -0.735084, 2.297713), (-0.101074, -0.722967, 2.21765), (1.231361, 0.711993, 1.066361), (0.210214, -3.057932, -0.784838), (0.137532, -3.039239, -0.703413), (-0.275513, -3.068537, -0.871595), (0.064993, -0.083226, 1.757694), (0.112649, 0.379859, 1.513128), (0.137438, -2.4966521, 1.979584), (0.043505, -1.9781361, 2.159296), (0.098089, -2.234566, 2.092926), (0.082397, -1.787222, 2.21405), (0.089945, -1.3461909, 2.324822), (0.062365, -1.09121, 2.34252), (0.127306, -0.816639, 2.3320851), (0.096512, -0.62417, 2.224582), (-2.6609821, 1.467254, 0.182778), (-2.643863, 1.275808, 0.109681), (1.204087, 0.779054, 0.848994), (0.154283, 0.231893, 1.6201429), (0.176664, 0.501022, 1.4063311), (2.628557, -2.602011, 0.151763), (2.411736, -1.5429239, -0.030003), (0.121337, -1.5745289, 2.252737), (0.176232, -0.99971, 2.35588), (0.184754, -2.433378, 2.04377), (0.197885, -1.4824669, 2.315069), (0.217429, -1.214062, 2.373168), (0.159638, -0.223837, 1.8024161), (0.208208, -0.012667, 1.762702), (1.666837, 0.026392, 1.532248), (0.254807, -2.26433, 2.142982), (0.261369, -1.653189, 2.276556), (0.274958, -1.355778, 2.360724), (0.224038, -0.713243, 2.309263), (0.237722, -0.855181, 2.331729), (2.465905, -0.700324, 0.149531), (0.367657, -0.285017, 1.812238), (-0.854813, -1.353892, -0.688201), (-1.59436, -2.47808, 1.527384), (0.21706, -1.820964, 2.261654), (0.33294, -1.049117, 2.369412), (0.371572, -0.398592, 1.9637389), (0.037614, -0.526568, 2.07003), (0.422902, -0.358353, 1.836755), (-2.862895, -0.280966, 0.761552), (1.277148, -2.582328, 1.8155761), (1.264961, -2.7041879, 1.844305), (1.112257, -0.967441, 2.254222), (-0.153018, 2.896143, -0.513956), (-1.173949, 2.327577, 0.08901), (1.8834801, -0.387611, 1.63957), (1.720763, -0.371449, 1.732945), (1.829183, -0.538956, 1.7539749), (-0.583653, 1.922634, 0.136146), (-0.343767, 1.9347141, 0.000086), (-0.380588, 1.984185, 0.038649), (1.090996, -2.044724, 2.164065), (1.07436, -1.9014521, 2.225213), (0.059924, -3.003757, 2.069808), (0.293644, -2.974437, 2.041754), (-0.037162, -2.961928, 2.153554), (1.652626, -0.486657, 1.851407), (1.627296, -0.598695, 1.91797), (2.867787, -1.82278, 1.141326), (2.836872, -1.955335, 1.193009), (1.362503, -1.48718, 2.137689), (1.399917, -1.377292, 2.164222), (1.238093, -1.343402, 2.233718), (2.857224, -2.077587, 1.168326), (2.273984, -1.8362501, 1.330076), (2.178235, -1.9685221, 1.437518), (2.428742, -0.872695, -0.083754), (-0.910028, -2.91132, 1.7785649), (-1.063568, -2.962054, 1.8255401), (2.952224, -1.863122, 1.073413), (2.751848, -2.280741, 1.179314), (-0.896647, 1.886142, -0.36484), (-0.674436, 1.875148, -0.382659), (1.237329, -2.3109279, 2.008057), (1.4525061, -2.359153, 1.855878), (1.44382, -2.20496, 1.9731), (1.741869, -2.5080929, -0.599314), (1.658854, -2.647521, -0.374477), (1.557523, -2.612938, -0.643455), (1.757247, -1.9571741, -0.834474), (1.914427, -1.9903619, -0.667684), (1.903293, -2.119391, -0.602949), (-0.262367, 2.040353, -0.068329), (-0.49981, 2.055177, -0.02493), (1.256027, -1.955683, 2.084528), (1.338103, -1.759714, 2.104939), (1.19179, -1.8425729, 2.162332), (-1.351045, 1.260988, 0.712739), (-1.237967, -2.968861, -0.47394), (-2.17882, 1.123748, 1.9783859), (1.271396, -2.157487, 2.045305), (1.144705, -2.144336, 2.141196), (-1.305222, 1.56319, 0.511529), (-0.271618, -2.931958, 2.230647), (-0.40661, -2.966158, 2.198851), (-0.24594, -2.988259, 2.179348), (-2.12369, 0.973453, 1.994877), (2.018086, -0.019684, -0.22084), (2.195715, -0.211161, -0.069009), (2.145221, -0.257624, -0.259844), (-1.984897, 0.530052, 2.089141), (-1.63747, -2.395073, 0.244334), (-1.574597, -2.272965, 0.355049), (-1.614771, -2.23472, 0.153255), (1.481855, 0.334604, 1.433718), (2.042186, -0.52527, 1.566816), (1.84664, -0.145708, 1.526713), (1.8259649, -0.262753, 1.584654), (1.386484, -2.081561, 2.018917), (-0.81308, 1.993403, 0.123986), (-2.088238, 0.002759, 1.623527), (-0.282847, 2.064845, -0.52218), (2.9176059, -2.285926, 0.989669), (2.747039, -2.457957, 1.027774), (-2.478534, -1.623896, 0.53305), (-2.005661, 0.375428, 2.1242), (-2.001055, 0.880319, 1.883227), (-0.737938, 2.196784, -0.048069), (-1.948763, 0.295401, 2.013738), (-2.056701, 0.253334, 2.110606), (-2.033216, 0.163926, 1.985687), (-0.64157, 1.978298, 0.14751), (-1.900911, 0.492669, 1.984576), (2.473105, -1.388916, 0.987966), (2.483711, -2.627658, 1.082653), (2.639247, -2.629735, 0.887884), (-1.852213, 0.39465, 1.873387), (-1.906654, 0.64673, 1.930115), (2.986662, -1.955279, 1.029932), (2.946254, -2.132607, 1.033546), (2.201642, -1.783431, 1.468255), (2.116183, -1.743685, 1.574475), (2.09092, -1.9457719, 1.567443), (2.229016, -0.609467, 1.363502), (2.249306, -0.35662, 1.164217), (2.147727, -0.439396, 1.376232), (-0.786931, -0.662544, -0.884301), (-0.899328, -0.439831, -0.819263), (-1.956848, 0.125998, 1.756422), (-2.096686, 0.076077, 1.876776), (-1.876763, 0.223019, 1.76659), (-1.949813, 1.201391, 1.7159309), (3.049182, -2.156989, 0.438508), (2.935868, -1.703973, 1.02061), (2.215407, -1.383594, 1.464972), (2.156417, -1.214089, 1.5510969), (2.096145, -1.486761, 1.6025801), (1.827767, -1.10675, 1.844988), (1.813491, -0.887891, 1.833233), (1.7112169, -0.868995, 1.930318), (2.8606591, -1.658388, 1.0426), (-1.86729, 0.810735, 1.730406), (1.6033909, -2.065097, 1.898871), (1.663066, -1.862987, 1.872148), (1.552001, -1.9760101, 1.955464), (2.123083, -1.031123, 1.5807121), (2.214101, -0.908789, 1.470394), (2.05334, -0.931128, 1.68647), (-1.7928901, 0.544667, 1.786255), (-0.200112, -0.143262, -0.835875), (-0.006118, -0.138762, -0.822882), (-0.127792, -0.295531, -0.878619), (1.391402, -1.2285221, 2.175099), (0.156677, 2.752366, -0.847815), (0.228926, 2.797696, -0.983019), (-1.904216, 0.981781, 1.661262), (1.176347, -0.824418, 2.200567), (1.480806, -1.856698, 1.98102), (2.601516, -2.453442, 1.188877), (-0.116729, 2.331357, -0.462702), (0.214671, 2.452425, -0.726642), (0.039513, 2.602351, -0.688594), (-1.881178, 0.103841, 1.5835121), (2.366335, -1.2547901, 1.229848), (-1.843092, 1.107851, 1.5302529), (-0.884764, -0.273205, -0.768282), (-0.657701, -0.175228, -0.768531), (2.273693, -1.598314, 1.371514), (1.756285, -2.359294, 1.6133981), (1.928295, -2.297297, 1.539677), (1.834715, -2.166514, 1.679039), (1.455158, -2.780685, 1.769348), (1.543538, -2.8066611, 1.697384), (1.580986, -2.667908, 1.699715), (1.7091689, -2.559441, 1.594358), (1.432728, -2.6427279, 1.784136), (1.541185, -2.487234, 1.691288), (1.76719, -2.630771, 1.509157), (1.658668, -2.477518, -0.72944), (-1.7762411, 0.275229, 1.6495681), (-1.707242, 0.39416, 1.685426), (-1.729768, 0.686069, 1.6943691), (-1.777559, 0.867377, 1.619969), (-1.81833, 1.036378, 1.53115), (-1.830212, 1.230866, 1.5417709), (1.6475921, -2.213298, 1.787224), (-1.7842491, 1.4053841, 1.548668), (-0.849594, -0.105801, -0.74159), (-1.625437, 0.531248, 1.672723), (-1.59051, -2.906045, 1.936909), (-1.369976, -2.880815, 1.915516), (-0.648681, -1.755893, -0.677822), (1.4571509, -2.010985, 2.007345), (0.021786, 2.011401, -0.329235), (-0.177087, 1.953933, -0.128725), (-0.192131, 1.904009, -0.215742), (0.142251, 2.250358, -0.506789), (0.233141, 2.247971, -0.584069), (-2.043089, 1.892534, -2.105247), (-1.953223, 1.9416571, -2.170135), (-1.613251, 0.219232, 1.522886), (-0.243635, 2.557388, -0.479151), (-0.046844, 2.832161, -0.66651), (1.345127, -2.474734, 1.810955), (1.614833, 0.257028, 1.404286), (-1.608643, 0.644896, 1.640448), (-1.662496, 1.236765, 1.360311), (-1.732707, 1.310938, 1.480974), (-1.697391, 1.613793, 1.442472), (-0.997067, 1.5963221, 0.241513), (0.010822, 2.129195, -0.311387), (-0.232612, 2.0993, -0.184037), (-0.043741, 2.044503, -0.209523), (-1.566273, 0.304366, 1.553306), (-1.520795, 0.423443, 1.561244), (-1.552516, 0.778251, 1.527039), (-1.660236, 0.904529, 1.53988), (-1.5732031, 1.089033, 1.341462), (-1.664065, 1.150953, 1.380233), (-1.676283, 1.4524, 1.415174), (2.931556, -1.699563, 0.165804), (-0.900992, 1.680167, -0.206039), (-1.4986091, 0.530373, 1.566257), (-1.336365, -1.572717, 1.64263), (-1.139173, -2.85969, 1.844043), (-0.392183, 1.825515, -0.108835), (-0.125332, 2.195257, -0.341161), (-1.418155, 1.6033471, 0.759135), (1.4194369, -3.001851, -0.288558), (1.640475, -1.028982, 1.995964), (1.687106, -1.2602661, 1.985307), (1.204424, -2.87517, 1.843951), (-1.460281, 0.884881, 1.381874), (-1.6040621, 1.403253, 1.332227), (-1.161036, -3.005338, 1.804518), (-1.50788, -3.013345, 1.858913), (-1.4686639, -3.031281, 1.775017), (1.5513439, -2.254642, 1.86805), (-1.384096, -2.481483, -0.258597), (-1.186335, -2.512754, -0.34501), (-1.40915, 0.621828, 1.446414), (-1.5746989, 1.5981519, 1.257133), (-1.314426, -2.969667, 1.902252), (1.252118, -1.205707, 2.215042), (1.8290169, -2.678711, 1.348966), (1.998803, -0.099867, 1.339278), (1.839145, 0.053857, 1.415053), (2.129122, -1.5611861, 1.547737), (2.01161, -1.72824, 1.652593), (1.515489, -1.636785, 2.024484), (1.5834839, -1.403654, 2.036873), (1.611525, -1.607089, 1.944648), (-1.422611, 0.304672, 1.413596), (-1.521021, 1.304027, 1.221558), (2.391244, -0.986338, 1.177179), (-2.180166, 1.493671, -1.046959), (-2.202405, 1.444461, -0.805432), (1.5455229, -1.199085, 2.0815), (-1.317888, 0.420451, 1.349188), (-1.528209, 1.462456, 1.199843), (-0.710061, 1.7773039, 0.125622), (1.87879, -1.924135, 1.725428), (1.851166, -1.7500939, 1.7552459), (-0.210404, 2.940654, -0.425571), (-1.375545, -1.486951, -0.591909), (1.996156, -1.469758, 1.68295), (1.866359, -1.584188, 1.729763), (2.170523, -2.804737, 0.025013), (2.429278, -2.631456, 0.008823), (2.409782, -2.738386, 0.142183), (-1.738136, -2.764936, 1.835624), (-1.454725, 1.098498, 1.192926), (0.284682, 2.295154, -0.716908), (0.225247, 2.17932, -0.588245), (1.973423, -0.658315, 1.6991401), (2.241964, -0.074676, 0.586447), (1.998634, -1.940006, 1.6546769), (-0.069245, 2.661802, -0.624008), (-0.489572, -2.361399, -0.829811), (-0.349972, -2.353082, -1.018638), (-0.370871, -2.504668, -0.989158), (-1.312716, 0.591896, 1.333756), (-1.311551, 0.775617, 1.272838), (1.202598, -1.040267, 2.187382), (1.8359101, -1.446188, 1.801676), (1.82968, -0.722586, 1.820637), (1.9122059, -1.249256, 1.799331), (1.712451, -1.38814, 1.92075), (2.020027, -2.070675, 1.595712), (1.98725, -0.849473, 1.752281), (1.89456, -1.010257, 1.784186), (-1.484945, 1.590528, 1.064612), (-2.9829621, 0.230013, 1.050133), (-1.21054, 0.635789, 1.141559), (1.630331, -0.159867, 1.638502), (1.756973, -2.01303, 1.801964), (-2.977168, 1.2770131, 0.930798), (-2.973375, 1.154913, 0.756022), (1.720672, -1.69003, 1.81994), (1.7026219, -1.588063, 1.8454931), (-1.244815, 0.481107, 1.21565), (0.604168, -2.834118, 1.954684), (1.6232021, -2.353014, 1.705678), (1.694829, -2.250546, -0.810372), (1.839141, -2.203193, -0.664049), (1.747411, -2.355057, -0.751948), (-1.615765, -2.572676, 1.1367381), (-1.831101, -2.663886, 1.202022), (-0.876976, 2.02702, -0.436108), (2.32044, -0.789661, 1.257975), (-2.273819, -0.652413, -0.532106), (-2.359582, -0.429572, -0.418859), (-2.237494, -0.496849, -0.519386), (1.6262159, -3.026843, 0.219379), (1.840086, -2.981559, 0.202319), (2.087308, -0.774578, 1.630717), (3.00663, -2.299002, 0.668255), (3.071623, -2.137846, 0.594483), (1.998222, -1.057492, 1.729082), (-0.821717, 2.178941, -0.487007), (-0.671279, -2.959799, 2.027949), (-0.735642, -2.869843, 1.973523), (-0.805923, -2.97656, 1.855688), (-2.801946, -1.102268, 0.667931), (2.364177, -1.6214609, 1.195002), (0.868958, -2.894847, 1.898734), (-1.644977, -1.628662, -0.518662), (-1.3983951, -1.7364249, -0.426588), (-1.399627, -2.908562, -0.412276), (-1.214201, -2.78504, -0.416542), (-2.168886, 1.35912, -0.538392), (2.619075, -1.538029, 0.300059), (2.261868, -2.615063, 1.262134), (-0.230226, -2.788445, 2.224282), (-0.354749, -2.858823, 2.231314), (2.369808, -2.5951629, 1.223982), (1.4611189, -2.883954, -0.442119), (1.555014, -2.698639, -0.523465), (1.543764, -2.796004, -0.320026), (-2.777358, -1.211898, 0.638515), (0.14358, 2.960144, -1.044093), (0.124002, 2.997822, -0.9651), (1.147176, -1.573205, 2.234486), (-1.890226, 1.7032111, 1.442132), (3.04331, -2.093062, 0.872272), (2.940175, -2.364823, 0.859057), (3.03264, -2.191436, 0.807222), (2.966646, -1.5657179, 0.381473), (2.937572, -1.612082, 0.256698), (2.828498, -1.528839, 0.332159), (2.940364, -2.407099, 0.683576), (3.014537, -1.562561, 0.583657), (3.075173, -1.6697631, 0.707922), (-1.881909, 2.230261, -2.350719), (-1.826896, 2.618345, -2.406153), (-1.853438, 2.725062, -2.3623471), (-0.03277, -2.8568, 2.16082), (0.00334, -3.069312, -0.928042), (-2.462807, 2.349334, -1.28649), (-2.351014, 2.438208, -1.259047), (-0.164022, 3.039601, -0.54356), (1.928796, -1.373247, 1.7716739), (-1.174696, 1.7169061, 0.420459), (-0.664016, 2.394414, -0.560067), (-0.310339, 2.803222, -0.691513), (-0.413538, 2.533065, -0.683972), (-2.546093, -1.5418689, 0.700851), (-1.126069, 1.619105, 0.366011), (-1.78871, 2.507668, -2.277021), (-1.8342121, 2.672334, -2.2592201), (-1.833109, 2.485331, -2.057367), (1.675238, -2.70709, -0.221943), (-0.483634, -2.997731, 0.755175), (-0.723156, -3.02481, 1.446027), (-0.521397, -3.04223, 0.715199), (-0.597214, -0.302367, -0.83689), (1.545783, 0.442368, 1.297681), (1.438339, 0.452982, 1.341375), (1.285772, -1.547101, 2.17341), (-1.842345, 2.15828, -2.322436), (-2.863362, -0.628258, 1.011575), (-2.88559, -0.525933, 0.90471), (-2.888233, -0.788754, 0.909749), (-0.565096, -2.516035, -0.941218), (2.456167, -1.135075, 1.044013), (2.31079, -0.600809, 1.208623), (-2.285499, -0.047987, 1.632053), (2.48469, -1.568818, 0.962921), (-1.1536419, 1.4629769, 0.286061), (-1.002633, 1.831284, 0.318278), (-1.041132, 1.8895919, 0.268024), (-1.09515, -0.692487, -0.837728), (-1.3745611, -0.652033, -0.813206), (-1.376986, -0.54277, -0.826577), (0.214952, -2.907743, 2.075499), (0.255711, -2.873746, 0.309233), (0.0098, -2.881851, 0.469093), (0.102218, -2.867352, -0.113113), (-1.426288, 1.470716, 0.81872), (-0.590875, -2.6230469, -1.066547), (2.210986, -2.860022, 0.183501), (0.377875, -2.853702, 2.021513), (-0.994506, 1.990047, 0.201292), (2.306647, -1.270267, -0.269903), (-0.841138, 1.8192, 0.234679), (-2.6770859, 1.7005019, 0.367434), (-2.489223, 1.73702, 0.219341), (-2.6630921, 1.626793, 0.228374), (2.33696, -0.988208, -0.307777), (-2.189244, 0.582875, -0.285198), (-0.800048, 1.9195011, 0.227306), (0.302831, 2.690937, -1.074198), (0.289406, 2.570737, -1.079032), (-0.845493, 2.078957, 0.069338), (-1.77562, 2.333213, -2.314166), (-0.465076, 2.829201, -0.255224), (-2.246502, 1.401619, -0.568315), (-0.72972, -2.318642, -0.355492), (-1.069249, 0.575777, 0.962448), (-2.374022, 2.143769, -0.663209), (-2.41014, 2.282791, -1.02051), (-2.430413, 2.103336, -0.772821), (0.133605, 2.118911, -0.421763), (-0.960389, -2.440804, -0.393138), (0.054109, 3.040509, -0.934877), (-2.858685, 0.048196, 0.801938), (-1.20119, 0.90987, 0.385103), (-1.395275, -1.03181, -0.806761), (-1.438589, -0.879483, -0.818203), (-1.29058, -0.778791, -0.815431), (-2.848246, 1.337804, 1.491319), (-2.911559, 1.338347, 1.299523), (-2.899616, 1.137277, 1.569558), (-1.882951, 1.963652, -1.9518089), (-2.814635, -0.950703, 0.95852), (-2.910635, -0.44627, 0.762065), (-1.82743, 1.7233989, -1.1033471), (-1.814868, 1.8776901, -1.295325), (-1.796106, 1.87118, -0.980982), (-1.803213, 2.02612, -1.305822), (-1.807665, 1.99905, -0.975393), (-3.016277, 0.239092, 1.496735), (-1.745059, -2.875574, 1.873804), (-1.849717, -2.850765, 1.77202), (-1.812568, -2.956094, 1.820591), (-2.7442799, 0.024886, 1.043401), (-2.781367, -0.070858, 0.791061), (-1.736843, -2.991566, 1.8602359), (-0.042894, -2.8851619, 0.871193), (-0.360791, -2.898752, 0.860697), (-2.745627, -0.185874, 0.993407), (-2.69964, -0.073482, 1.051153), (-3.07868, 0.585194, 1.110594), (-3.039609, 0.803347, 1.069302), (-1.059685, -2.561968, -0.412608), (-2.986701, 0.920938, 1.049454), (-1.824999, 2.147684, -1.569586), (-2.9077501, 1.057723, 1.280837), (2.913661, -1.894439, 0.087123), (-3.042548, 0.275347, 0.536209), (1.646215, -2.153192, -0.91318), (2.079129, -2.7740831, 1.1409531), (1.8345461, -2.846821, 1.151556), (2.020439, -2.88115, 0.97888), (-0.67591, -3.0399399, 1.5396969), (-1.007009, -3.034983, 1.390763), (1.8825431, -0.957147, -0.758929), (2.091605, -0.910836, -0.626635), (0.303606, 2.52597, -0.910889), (0.325002, 2.516797, -1.011584), (-3.057189, 0.40546, 0.509234), (-3.025026, 0.590763, 1.694981), (-2.926122, 0.757717, 1.7846639), (-1.510674, -2.575044, 1.006306), (-1.845758, 1.67385, -0.310979), (1.415793, -2.881545, -0.627736), (-1.404675, -2.469532, 0.927486), (-0.633779, -1.960426, -0.560228), (1.3409231, -2.885475, -0.737948), (1.233124, -3.01845, -0.686938), (0.709002, -0.437814, -0.917225), (0.953742, -0.498158, -0.935055), (0.778135, -0.529734, -1.079686), (2.190087, -1.22124, -0.473476), (2.209628, -1.026715, -0.521163), (2.138323, -1.129266, -0.591369), (1.980991, -2.263466, -0.381908), (2.105554, -2.168207, -0.301435), (2.005261, -2.371209, -0.230815), (1.155284, -2.975066, -0.812166), (-2.803885, -0.410453, 0.201943), (2.172598, -1.48609, -0.44724), (2.076486, -1.700731, -0.569459), (2.017282, -1.497461, -0.623658), (-0.385597, -2.62571, -1.071773), (-2.739052, -1.001554, 1.089186), (-2.869787, 0.138974, 0.292933), (-1.4365699, -2.394709, 1.224215), (-2.855135, -0.943415, 0.679654), (2.320754, -0.85929, -0.333058), (2.223507, -0.801986, -0.443804), (0.407463, -0.318028, -0.883687), (0.33138, -0.410294, -0.91704), (0.175273, -0.292446, -0.895844), (-1.784338, -3.05774, -0.31436), (-1.8812981, -3.062684, -0.261625), (1.802436, -1.2578421, -0.840104), (1.90418, -1.380488, -0.773764), (2.237498, -0.523897, -0.252537), (2.093551, -0.479762, -0.422121), (2.144745, -0.367207, -0.33549), (-1.447974, -2.12971, 0.901075), (-2.9183679, 0.426269, 0.200708), (-2.943294, 0.257527, 0.287026), (2.098793, -1.3670111, -0.519395), (-2.8320951, -0.588807, 0.221092), (2.067028, -1.880357, -0.527896), (2.20197, -1.818183, -0.387356), (1.675844, -1.7746539, -0.88565), (1.845297, -1.696341, -0.759347), (1.804728, -1.835047, -0.770554), (-2.968242, 0.505902, 0.304043), (-0.999883, 0.670595, -0.107947), (-1.015361, 0.725734, 0.102553), (-0.812146, 0.68162, 0.073664), (0.497985, 0.65181, -0.219237), (0.816635, 0.701586, -0.119698), (0.578075, 0.511371, -0.356898), (0.214469, 2.488344, -1.017046), (0.236356, 2.66024, -1.11334), (0.204406, -0.51317, 2.128285), (1.485753, -2.932108, 1.636462), (1.623368, -2.82266, 1.549106), (-2.919543, 1.185281, 1.234714), (-2.9208999, 1.133478, 1.428527), (2.158506, -0.649755, -0.408691), (1.866288, -2.3103461, -0.591183), (1.866318, -2.399117, -0.501595), (-2.965709, 1.286441, 1.102367), (1.363828, -3.003236, -0.529437), (-2.190782, -1.306437, 1.585678), (-1.9546621, -1.432478, 1.6300809), (-0.038712, 3.030381, -0.864839), (-0.322105, -0.573228, -0.949563), (-0.090092, -0.544993, -1.046517), (-0.360108, -0.65663, -1.07893), (2.28901, -1.504387, -0.313014), (2.274093, -1.68345, -0.324311), (-2.525896, -0.266118, -0.206326), (-2.321112, -0.091908, -0.303375), (2.306034, -1.831676, -0.164802), (2.113911, -2.01449, -0.420419), (1.8147581, -2.489635, -0.455736), (1.844947, -2.514383, -0.28174), (0.222853, 2.182333, -0.672017), (-2.441799, 2.547426, -1.603858), (-2.482147, 2.525748, -1.653655), (2.230774, -2.01756, -0.198214), (1.342922, -2.934377, 1.783766), (1.567608, -2.931301, 1.386792), (1.440757, -2.987949, 1.5287969), (-1.774462, -2.6370091, 0.557559), (-1.6461949, -2.554713, 0.50305), (-1.355156, -2.415214, 0.828323), (0.459233, -3.060595, -0.84684), (0.730197, -3.022381, -0.873497), (0.933736, -3.041989, -0.776845), (2.231145, -2.099026, -0.151426), (2.216098, -2.214251, -0.18847), (-0.898488, -1.147527, -0.765459), (-0.759856, -1.319477, -0.71746), (-1.95175, -2.587472, 0.242197), (-1.822492, -2.550881, 0.347772), (-1.640586, -2.463553, 0.351227), (-2.981841, 1.254758, 0.687964), (-2.185534, 0.124337, 2.042168), (-1.9396629, -2.921829, 1.1001871), (-1.9093621, -2.761656, 1.192004), (-1.85608, -2.82861, 1.069221), (-0.116526, -0.691149, -1.329502), (-0.079052, -0.814629, -1.423931), (-0.260046, -0.829467, -1.385256), (2.053163, -0.205431, -0.350581), (2.000278, -0.297508, -0.453329), (-2.454974, -1.57023, 0.914458), (2.41496, -0.733534, 1.043432), (-2.536311, 0.2627, 2.014817), (-2.488142, 0.341684, 2.089419), (0.040846, -0.377879, -0.8919), (0.437509, -3.022034, -0.911964), (0.546049, -2.964319, 1.9791529), (1.605873, -1.899156, -0.944987), (-0.854882, -1.844228, -0.49511), (-0.992772, -1.6191981, -0.613203), (1.675774, -2.889144, 1.239567), (-0.013689, -0.48503, -0.940028), (-1.839836, 2.297248, -1.7736909), (-1.40764, -2.568525, 0.838234), (-1.427122, -2.594627, 0.768661), (2.348792, -1.627458, -0.187561), (-1.2953839, 1.063286, 0.833933), (0.269069, -0.478126, -1.05259), (0.549926, -0.471194, -1.03943), (0.344552, -0.536359, -1.176035), (1.490023, -2.666276, -0.760859), (2.795264, -1.8013949, 0.038943), (2.803992, -2.05074, -0.056265), (2.67875, -1.946493, -0.079507), (1.95328, -1.824389, -0.681346), (-2.912468, 1.48982, 1.170009), (2.146587, 0.040686, 0.214508), (1.365551, -2.63928, -0.865557), (0.332601, -2.852077, -0.461894), (-0.099768, -2.862759, -0.510087), (0.228072, -2.8816981, -0.567981), (-0.903952, -2.995987, 1.7633929), (-0.960779, -3.026942, 1.683192), (-2.783999, 0.18107, 0.148068), (-1.029175, -3.046155, -1.033715), (-0.887027, -3.063066, -1.10517), (-2.263316, 1.690633, -1.372275), (-2.297074, 1.5929539, -1.248226), (-2.69031, -1.177475, 0.151474), (-0.764871, -3.022621, -1.177456), (2.330599, -0.427315, 1.032898), (0.827093, -2.968357, -0.898074), (-1.465302, 1.3577499, 1.032322), (0.764116, -2.957036, -0.533399), (1.005504, -2.987766, -0.447775), (0.85225, -2.90516, -0.460164), (-1.829546, -2.737521, 0.646775), (0.604103, -0.718143, -1.3164129), (0.416592, -0.692799, -1.336751), (0.640652, -0.601013, -1.226022), (2.361152, -1.871563, -0.042436), (2.45121, -0.775328, 0.945551), (2.843697, -2.501437, 0.760548), (-0.881812, -0.999303, -0.819458), (-0.748643, -1.201273, -0.835831), (-1.4161379, 1.269011, 0.881904), (-1.391147, 1.11522, 1.008294), (-2.5961561, -1.291314, 1.131204), (-2.676237, -1.162236, 1.142705), (-2.604044, -1.334996, 0.994316), (-1.007826, -0.869752, -0.827829), (-0.792079, -0.995956, -0.845868), (2.785507, -2.505425, 0.909611), (-0.367445, -3.07431, -0.99604), (-0.659257, -3.07063, -1.012013), (-0.656181, -3.069516, -1.13241), (1.4404299, -2.525711, -0.827361), (-1.874318, 2.132048, -0.979674), (-0.718076, -1.047297, -0.915083), (-2.060806, 2.576241, -1.759735), (-1.89767, 2.782274, -2.295655), (-1.92452, 2.7548661, -2.181483), (-1.9231839, 1.722816, -0.02225), (-2.238288, 1.344491, -0.381144), (-2.397774, 2.701915, -1.829999), (-1.144201, 0.752357, 0.122874), (-1.1338971, 0.845769, 0.506385), (2.953304, -1.529248, 0.746729), (2.853528, -1.551299, 0.916828), (-2.254355, 1.839313, 0.958456), (-2.233763, 1.78214, 1.245953), (-0.365664, 2.910274, -0.48356), (-1.8164749, 1.760954, 1.296019), (-2.045816, 1.7800651, 1.271813), (2.914845, -1.506708, 0.487293), (2.8759851, -1.483356, 0.669906), (2.839778, -1.494493, 0.808428), (2.710062, -1.5237141, 0.888715), (-0.690608, 2.639298, -0.09002), (2.740355, -1.469918, 0.568658), (2.699679, -1.47388, 0.707732), (2.748741, -1.493956, 0.422936), (2.606811, -1.5019231, 0.740925), (-0.695747, 2.577432, -0.474395), (2.5763369, -1.46211, 0.557884), (-0.638188, -0.047585, -0.700113), (-1.817148, 1.8387849, 0.78262), (-0.602625, 0.651152, 0.460977), (-1.769309, -2.868403, 0.960441), (-2.733605, 1.7271149, 0.566884), (-1.777244, 1.826303, 0.962374), (-1.962453, 1.82457, 1.102746), (-0.93354, 0.646848, 0.845691), (-0.741886, 0.614541, -0.067048), (-0.680124, 0.642635, 0.12814), (-0.551082, 0.586499, 0.103482), (-2.162625, 1.8264229, 0.336363), (-1.082397, 2.382028, -0.233397), (-1.976742, 1.811413, 0.346402), (-2.044291, 1.844265, 0.63192), (-1.798121, 1.8312659, 0.504542), (-0.778855, 0.706653, 0.454431), (-1.047808, 0.76717, 0.431169), (-0.831584, 0.693263, 0.673807), (-1.997159, 2.190297, -0.76946), (-0.834309, 0.564332, 1.034413), (-3.039351, 0.372341, 1.134239), (-1.874169, -2.671824, 1.582199), (-1.381148, -1.841145, 1.433189), (-1.383738, -1.9902179, 1.319982), (-2.349465, 2.7819529, -2.041887), (-2.437537, 2.687738, -1.95443), (-1.052419, 0.709701, 0.734815), (-1.102168, 0.638124, 0.893329), (-2.11487, 1.7215891, 1.417456), (-1.715546, 1.8478279, 0.377071), (-1.93469, 2.800529, -2.336885), (-2.074391, 1.850517, 0.901448), (-1.945637, 1.754388, 0.096085), (0.591441, -0.369653, 1.889041), (-2.35532, 1.989671, -0.359152), (-1.857296, 1.76847, 0.178658), (-0.432929, 2.391779, -0.669196), (-2.9010649, 1.056718, 1.100147), (-2.142203, 1.655421, 1.5318689), (-1.751682, 1.8256271, 0.233248), (-1.915095, -2.827578, 1.639844), (-1.952378, -2.775533, 1.475591), (-2.005137, -2.918291, 1.394622), (-0.345298, 0.584353, 0.064606), (-0.897791, 0.726973, 0.261328), (-1.924474, -2.743984, 1.327279), (1.888761, 0.215878, 1.20971), (-0.361265, -0.852662, -1.347361), (-0.407549, -1.028172, -1.398669), (-0.495786, -0.992858, -1.290601), (2.121406, 0.100574, 0.48016), (-2.785026, -0.364289, 1.078533), (-2.831253, -0.324845, 0.942457), (2.019804, 0.203877, 0.933556), (-2.499402, 2.294234, -1.364363), (2.023624, 0.224125, 0.74841), (-1.06301, -2.185298, -0.397786), (-0.984919, -1.94548, -0.454394), (-1.632867, 1.949787, 0.22634), (2.050183, 0.071384, -0.030411), (1.739542, 0.275544, 1.297245), (1.722254, 0.400772, 1.154492), (-2.019267, -2.734026, 0.470101), (-2.02528, -2.645647, 0.364032), (1.267257, -0.445594, -0.856564), (1.2164071, -0.304723, -0.805893), (1.422007, -0.39479, -0.827867), (1.992096, 0.271143, 0.432199), (1.894542, 0.34933, 0.894392), (1.823611, 0.378666, 1.043731), (1.989795, 0.256773, 0.237718), (1.846767, 0.418005, 0.552643), (1.735886, 0.487212, 0.877404), (1.910228, 0.216115, -0.068021), (1.936941, 0.284661, 0.127028), (-2.7456121, -0.299749, 0.115321), (-2.044578, 2.836514, -2.274026), (-2.058551, 2.803322, -2.299088), (1.84185, 0.405872, 0.30452), (1.609534, 0.536601, 1.056893), (-1.222621, 0.818065, 0.127245), (-2.978549, 0.196787, 1.669128), (1.490105, 0.574815, 1.098285), (0.587443, -0.429695, 2.058417), (1.689989, 0.545142, 0.459713), (1.6361251, 0.58284, 0.681709), (1.536006, 0.621027, 0.91167), (1.348642, 0.590213, 1.199306), (1.705325, 0.444072, 0.057989), (1.6460049, 0.546348, 0.254985), (1.436105, 0.690083, 0.772682), (1.354677, 0.681583, 0.978993), (1.518613, 0.594467, 0.103541), (-1.001339, -0.248055, -0.775963), (-2.740763, 1.183042, 0.158921), (-0.629214, -2.123563, -0.425961), (-0.694029, -1.952328, -0.463992), (-1.6207969, -2.131418, 0.256634), (-0.253518, -0.627047, 1.958533), (-1.938671, -2.975718, 1.654422), (-2.478059, 2.576941, -1.809528), (-1.549299, -2.034385, 0.982501), (-1.65881, -2.011731, 0.965943), (-0.057066, -0.507602, 1.9380441), (-0.622804, -2.465357, 1.764652), (-0.707888, -2.6301231, 1.880904), (-0.611235, -2.393618, 1.6370361), (-0.496199, -2.32133, 1.5686979), (-2.219307, -0.745721, 1.723382), (-1.399693, -2.31306, -0.237491), (-1.189786, -2.359833, -0.334744), (-0.893725, 2.34855, -0.418741), (-0.14118, -0.647752, 2.128143), (-0.379842, -1.304126, 1.998525), (-0.286458, -1.2572501, 2.206185), (-0.418174, -0.888677, 1.980622), (-1.6563079, -1.751852, -0.34334), (-0.425535, -1.479031, 1.769361), (-0.29621, -1.519143, 1.971454), (-1.321802, -2.161865, 1.407773), (-0.346401, -0.780952, 2.01842), (-1.59483, 0.587458, -0.228823), (-0.196165, -2.8826709, 0.240293), (-0.440703, -2.890816, 0.377738), (-0.612464, -2.8803701, 0.042553), (-0.551656, -0.863235, -1.045345), (-0.242639, -0.78267, 2.155889), (-2.298244, -0.429489, 1.596784), (-0.13905, -1.920238, 1.992748), (-0.830097, -2.703397, 1.7832761), (-2.127501, -0.395949, -0.53596), (-0.28822, -0.968712, 2.213471), (-1.274348, 2.275244, -0.041838), (-0.187679, -1.441938, 2.179035), (-2.429159, 1.90434, -0.507321), (-2.3908901, 1.893119, -0.302884), (-2.689981, 0.928785, 2.028895), (-0.830084, -2.80424, 1.8357329), (-0.328067, -1.137852, 2.201627), (-1.8953869, -0.80123, -0.696669), (-1.897294, -0.587188, -0.666958), (-1.770783, -0.640796, -0.703091), (-2.11248, -0.982311, -0.630219), (-2.101266, -0.686263, -0.601655), (-2.015766, -0.762236, -0.639343), (-1.5336809, -2.301158, -0.098801), (-1.436607, -2.009382, -0.299725), (-1.4507279, -2.029031, 1.110538), (-1.571946, -1.937727, 1.17948), (-0.703081, -2.7761, 2.001317), (-1.406975, -2.2788181, 1.210534), (-0.588948, -2.535236, 1.874095), (-1.520051, -1.872328, 1.329432), (-0.129013, -1.707607, 2.127212), (-2.413484, 1.745988, -0.032674), (-2.688176, 1.167942, 1.859685), (-2.623621, 1.402891, 1.687505), (1.701091, 0.347035, -0.142388), (-2.630688, 0.469679, 2.03898), (-2.686815, 0.619869, 2.082106), (-2.7904959, 0.462426, 2.000781), (-1.988611, -2.904873, 1.247281), (-2.6777601, 0.415969, 2.03146), (-2.7007399, 0.777828, 2.083838), (-2.781052, 0.689848, 2.006857), (-0.709843, -1.364322, -0.837726), (-2.439854, -1.120317, 1.4949269), (-2.391562, -1.308942, 1.412748), (-2.181674, -2.868934, 0.090403), (-2.2324991, -2.963275, 0.121725), (1.930941, -2.706902, -0.128009), (2.091246, -2.7627301, -0.053142), (-2.422653, -0.984781, 1.560014), (-2.741848, 0.277297, 1.989833), (-2.799156, 0.886817, 1.935441), (-2.3376951, -0.805185, 1.6466401), (-1.8829579, -0.306425, -0.641687), (-1.962007, -0.122497, -0.514701), (-1.752772, -0.107006, -0.623958), (-2.537091, -0.784631, 1.446623), (-2.885717, 0.372787, 1.926501), (-2.643001, 0.254106, 2.005035), (-1.998669, 2.01526, -2.219956), (-1.569013, -2.976854, 1.919124), (-0.277862, -0.332486, -0.896402), (-0.19768, -0.470855, -0.915267), (-2.201205, -2.834752, 0.300621), (-2.118744, -2.737699, 0.187061), (-2.6348019, 0.701828, -0.128215), (-2.672576, 0.953581, -0.008223), (-2.560401, 0.843929, -0.118597), (-2.814617, 1.121611, 1.756335), (1.469239, -0.546727, -0.854276), (1.632556, -0.486465, -0.774935), (1.599543, -0.647786, -0.831211), (-1.968305, -3.012633, 1.239043), (-1.463153, -2.334914, 0.529827), (-2.523839, 1.039217, -0.106905), (-2.203555, -2.941885, 0.408176), (-2.180046, -2.8385491, 0.384819), (-2.133183, -2.730007, 0.3277), (-2.865201, 0.672652, 1.909708), (-0.685557, -2.130421, -0.383569), (-0.644597, -2.344864, -0.377197), (-1.946911, -0.435422, -0.61505), (-2.002044, -2.9777179, 1.416803), (-2.490516, -0.614415, 1.480405), (-1.944703, -3.022501, 1.4125891), (-2.813803, -0.85176, 1.057123), (-2.788812, -0.739079, 1.134565), (-2.769131, -0.526417, 1.158781), (-2.093203, -2.874583, 0.491272), (-1.611846, 1.895297, 0.083597), (-2.101573, -2.9954, 0.542329), (-2.6871629, -0.954993, 1.231294), (-2.686625, -0.290567, 1.183778), (-2.013247, -1.879092, -0.010712), (-2.363041, -0.26517, 1.505887), (-2.023153, -2.887638, 0.602152), (-2.671359, -0.642624, 1.2984691), (-1.04333, 2.087162, -0.355096), (-1.639135, -0.958176, -0.786605), (-1.552746, -1.131839, -0.796849), (-2.549502, -0.495328, 1.408636), (0.743183, -3.035306, -0.606538), (-1.021587, -0.608333, -0.845316), (1.533602, 0.504671, -0.058121), (-2.774333, 1.4659, 1.456005), (-1.8991389, -2.9775171, 0.768712), (-2.583271, -1.168905, 1.3127999), (-2.602622, -0.340076, 1.3001211), (-0.075583, 3.077411, -0.752535), (-1.477422, -2.437875, 0.548734), (-2.771635, 1.302497, 1.657419), (-1.882851, -2.883308, 0.724839), (-2.575748, -1.020738, 1.387008), (-2.499273, -0.158561, 1.344674), (-2.422367, -0.120063, 1.4524469), (0.561943, -0.175544, -0.84117), (0.545079, -0.021331, -0.803669), (0.77726, -0.107354, -0.766864), (-2.306316, 1.101325, -0.208024), (-2.477306, 1.21697, -0.125146), (-2.367047, 1.294955, -0.173502), (-2.494297, -1.355929, 1.232289), (-0.598024, -3.009166, -1.169989), (-0.391701, -3.025836, -1.108024), (0.417335, -0.196821, -0.856523), (-2.98069, 0.507989, 1.82846), (-1.152065, -0.466849, -0.811916), (-1.4040821, 2.156295, 0.129569), (-0.486425, -1.239306, -1.34606), (-0.372176, -1.361865, -1.415449), (-0.373704, -1.562919, -1.36217), (-2.507617, 0.619688, -0.185877), (1.058222, -3.045429, -0.559066), (0.925596, -3.04709, -0.693008), (-1.844036, 0.103817, -0.48614), (-2.442922, 0.136578, 1.990497), (0.748009, 0.115512, -0.734313), (-2.87769, 0.244305, 1.8796949), (-0.418339, -1.18624, -1.409052), (1.836228, -2.624754, -0.188632), (-1.869789, 2.47421, -2.403193), (1.330834, 0.155208, -0.561988), (1.544405, -0.023641, -0.545314), (1.344693, -0.009651, -0.623066), (0.338627, 0.14368, -0.671979), (0.178301, 0.217133, -0.601688), (0.405532, 0.293498, -0.556469), (-1.956594, 2.666821, -2.366805), (0.458744, 0.109916, -0.727055), (0.359971, -0.036565, -0.830208), (0.308453, 0.050676, -0.764346), (0.962954, 0.684372, -0.149377), (1.051199, 0.443749, -0.459367), (0.930975, 0.31073, -0.5935), (0.852767, 0.412527, -0.499211), (2.801279, -1.621812, 0.184918), (0.968236, -0.627301, -1.13086), (1.646129, -0.300407, -0.674947), (1.825513, -0.489611, -0.642206), (-2.13817, 2.352806, -1.992628), (-1.725522, -2.699163, -0.207103), (-2.293869, 2.728098, -2.102609), (-2.231756, 2.644752, -2.087335), (-0.346657, -2.002774, -1.178237), (-0.21022, -2.267295, -1.149001), (-2.12449, 1.974236, -1.922236), (-2.068435, 1.9909489, -2.114337), (-2.315784, 2.487584, -1.84736), (-2.179667, 2.133255, -1.759521), (-2.4201279, 2.551719, -1.8600559), (-2.273745, 2.348516, -1.7367151), (-2.187484, 1.889433, -1.6321061), (-2.175688, 1.7890999, -1.776283), (-2.302776, 2.174111, -1.4740009), (-0.574737, -2.427886, -0.718781), (-2.44193, 2.411054, -1.669592), (-2.497709, 2.41771, -1.599628), (-2.249427, 1.932689, -1.308351), (-2.441148, 2.243877, -1.415334), (-2.275584, 2.047319, -1.355629), (0.852682, 0.566212, -0.31867), (1.192365, 0.349654, -0.501135), (1.13971, 0.214005, -0.597628), (-1.742526, -2.622678, -0.106239), (-1.977797, -2.719254, -0.050992), (-2.205935, 1.5422571, -1.329607), (-2.269095, 1.7837, -1.14131), (-0.502467, 0.184835, -0.575932), (-0.678276, 0.054645, -0.665508), (-0.51207, 0.280129, -0.488951), (1.68146, -3.031807, 0.501044), (1.511721, -2.97606, 0.411714), (1.528837, -3.028714, 0.28578), (1.093707, -3.02396, -0.392203), (1.153559, -3.040289, -0.179442), (0.971044, -3.027305, -0.06133), (0.065562, 0.313895, -0.520629), (0.17239, -0.152736, -0.837206), (-0.390555, -1.807268, -1.210324), (-0.492695, -1.4928579, -1.278077), (-0.568537, -1.328599, -1.256504), (-0.578439, -1.19257, -1.231074), (-2.47726, 2.167546, -1.21678), (2.066904, -0.716942, -0.568311), (1.939088, -0.708497, -0.670554), (-0.476383, -1.678968, -1.16803), (-0.576768, -1.450156, -1.157192), (-0.263432, -0.672085, -1.225039), (-0.437394, -0.804875, -1.2202129), (-0.558724, -0.99149, -1.16388), (-2.359483, 1.97096, -1.019592), (0.959813, 0.181626, -0.676222), (1.095029, -0.371966, -0.827154), (0.925234, -0.410728, -0.834668), (0.958545, -0.330478, -0.791925), (-0.542316, -1.7025781, -1.049526), (-0.658048, -1.334521, -1.051669), (-0.63317, -1.131235, -1.107481), (-2.479784, 2.154152, -1.078913), (-0.466159, -1.922932, -1.060897), (-0.659962, -1.2243071, -1.02912), (-2.302921, 1.859594, -0.949763), (-0.491387, -1.967664, -0.939784), (-0.633814, -1.531716, -0.937712), (-2.4621239, 2.028228, -0.90295), (0.646723, -0.359065, -0.857159), (-0.430879, -2.250872, -0.948973), (-0.572072, -1.8082759, -0.852881), (-1.099345, -2.968267, -0.913076), (-1.152158, -3.024205, -0.797227), (-1.022395, -2.961832, -1.033432), (-0.972454, -2.75184, -0.905409), (-0.856114, -2.714227, -1.019012), (-0.515138, -2.087156, -0.795146), (-2.585167, -0.054479, 1.240011), (-1.160948, 2.1355119, -0.268501), (-1.276753, 2.188332, -0.143433), (-2.3755531, 1.86376, -0.799524), (-0.553505, -2.891796, -1.148529), (0.399116, -2.955712, -0.950165), (0.802925, -2.86493, 1.09798), (0.884226, -2.832903, 1.393616), (0.567681, -2.864182, 1.067204), (-2.370594, 1.596942, -0.615928), (1.213985, 0.567255, -0.214691), (1.051118, 0.535331, -0.334709), (-1.13051, -2.852556, -0.786585), (-0.697327, -2.511826, -0.834853), (-0.690337, -1.525875, -0.775571), (-0.713293, -2.622865, -1.028191), (-2.28083, 1.5120499, -0.752038), (-2.36606, 1.651793, -0.737798), (-2.333081, 1.761395, -0.701438), (-2.330749, 1.7073469, -0.7184), (0.026829, 2.9207091, -0.984654), (-0.064355, 2.737936, -0.911768), (-0.185081, 2.791914, -0.812036), (-1.18944, -2.941447, -0.653488), (0.07838, -3.010794, -0.986046), (-2.422281, 1.8544891, -0.701361), (-0.260571, 2.930918, -0.659274), (-1.091944, -2.73498, -0.66212), (-0.540173, -2.327683, -0.649375), (-0.561745, -2.131516, -0.655746), (-1.604397, -3.058793, -0.388331), (-2.440072, 1.861732, -0.606188), (1.840735, -0.307884, -0.572874), (1.953423, -0.412345, -0.526863), (-0.444685, -0.230412, -0.856082), (-2.318151, 1.488722, -0.508874), (-1.138268, -2.714756, -0.509726), (-0.580999, -2.203273, -0.517514), (1.713971, 0.224984, -0.270159), (1.743029, 0.101579, -0.361994), (1.4942219, 0.200531, -0.466023), (-1.207471, -3.028588, 1.6530039), (-2.438807, -1.4497709, -0.154148), (-2.305375, -1.417321, -0.315649), (-2.216362, -1.548456, -0.240166), (-2.6873841, 0.037613, 1.203273), (-2.350943, 1.678555, -0.517749), (-1.210612, -2.857553, -0.50264), (-0.584752, -2.340306, -0.497423), (0.849009, -0.249982, -0.803318), (0.256225, -0.623982, -1.295336), (0.069082, -0.653211, -1.316687), (1.809435, -0.067103, -0.44676), (1.689014, -0.033512, -0.485106), (-2.395457, 1.736164, -0.457802), (-2.264141, -1.209784, -0.491935), (-2.413019, -1.091404, -0.399732), (-2.291501, -1.033702, -0.548257), (-0.682969, -3.006869, 1.942453), (-0.016986, -0.59905, -1.227184), (-0.639498, 2.70458, -0.406823), (1.141654, 0.683649, -0.068283), (0.83305, -2.884975, -0.092795), (0.766996, -2.999676, 0.152656), (0.641176, -2.916429, 0.250802), (-2.393192, 1.528661, -0.29896), (-2.44489, -0.894557, -0.409524), (-2.536038, -0.72472, -0.318296), (-2.375764, -0.766541, -0.487652), (-2.484229, -0.597999, -0.365649), (-0.457606, 0.040728, -0.66244), (-2.4109, 1.738778, -0.304612), (-2.523213, -1.039646, -0.291872), (-2.591031, -0.523414, -0.216232), (-2.368395, 1.6264601, -0.3023), (0.151014, -0.004989, -0.749025), (-2.563495, -0.880148, -0.253354), (-0.375327, 0.519172, -0.119951), (-0.642439, 0.515368, -0.177506), (-0.184408, -3.021854, -1.061711), (-0.326949, -2.915752, -1.109587), (1.3243101, -0.949272, -1.101538), (1.198904, -0.762963, -1.1142809), (1.345276, -0.803566, -1.028363), (-0.00012, -2.82301, -1.045933), (-2.652298, -0.676137, -0.188605), (1.307301, 0.393487, -0.398329), (-2.319307, 1.35666, -0.227295), (1.438684, -0.733123, -0.938661), (1.5829439, -0.944232, -0.940075), (2.630834, -1.671978, 0.12742), (-0.278938, -2.86985, -0.385402), (0.348979, -0.845425, -1.406307), (-2.4194, 1.65851, -0.164412), (-0.203773, 0.028921, -0.730345), (-0.419172, -0.107405, -0.793878), (-2.505658, -1.207177, -0.221765), (-2.66552, -0.82912, -0.167138), (-0.10918, -2.873079, -0.122754), (-0.031561, 0.190885, -0.630484), (-0.272656, 0.199908, -0.565215), (-0.060947, 0.382286, -0.386099), (0.972673, 0.072779, -0.724688), (-1.558816, -2.132085, -0.074938), (-1.494356, -2.012767, -0.24529), (-2.329841, -1.59332, -0.032207), (-2.645625, -1.071557, -0.115746), (-0.006801, 0.041903, -0.725977), (-2.429566, 1.4600949, -0.115169), (-1.607895, -2.425949, -0.00199), (-2.557388, -1.345163, -0.060378), (-2.628689, -1.173995, -0.036957), (-2.7333841, -0.809637, -0.061134), (-2.701382, -0.497086, -0.071936), (-2.572753, -0.035537, -0.021523), (-2.375949, 0.035501, -0.192077), (-1.6727769, -2.503112, 0.067959), (0.389962, 0.491155, -0.396275), (-2.012143, -1.704813, -0.21362), (-2.214634, -1.728567, 0.030464), (-2.65898, -0.300691, -0.072624), (-2.582664, 0.076107, 0.024031), (-2.463123, 1.582824, -0.040889), (-1.376258, 2.148894, -0.04739), (-1.862296, -2.590595, 0.078859), (-1.508561, -2.498893, -0.177901), (-1.631704, -2.029977, 0.016187), (-1.5778201, -1.934083, -0.171301), (-2.496645, -1.4607921, 0.025546), (-2.7364821, -1.05604, 0.056326), (-2.7593741, -0.556422, 0.032767), (-2.565085, 1.31773, -0.001965), (-2.79313, -0.930821, 0.096197), (-2.7659721, -0.73991, 0.057555), (0.189183, 0.482778, -0.330016), (-0.541603, -3.053923, 0.649167), (-1.493971, 1.867182, -0.040273), (-2.1029, -2.754028, 0.067174), (-2.025629, -2.6513739, 0.122564), (-2.824632, 0.381719, 0.052296), (-2.857681, 0.59407, 0.082461), (-2.760139, 0.579766, -0.050178), (-2.792655, 0.70261, -0.000166), (1.710503, -0.823747, -0.850906), (1.8282399, -0.761725, -0.757408), (-2.536954, 1.613769, 0.083707), (-2.617038, -1.36979, 0.130077), (1.9158211, -0.090244, -0.384005), (-1.550784, 2.019005, 0.114631), (-2.528629, -1.4996591, 0.181424), (1.730271, -1.02619, -0.868946), (0.976255, -0.74068, -1.209453), (1.143989, -0.887903, -1.178053), (1.8979731, 0.082571, -0.268823), (0.312094, 0.606607, -0.252989), (-0.112898, 0.438655, -0.323467), (1.548497, 0.302851, -0.342175), (2.383391, -1.979159, -0.079242), (1.411592, 0.453216, -0.248546), (1.223048, -0.651175, -1.000313), (2.454498, -1.619806, 0.09744), (1.32989, -3.037907, 0.151463), (1.288159, -2.963926, 0.206319), (1.235688, -2.985416, 0.215344), (0.826692, -2.852257, -0.264679), (0.617987, -2.867218, 0.155545), (1.3916969, -0.155422, -0.651505), (1.4362919, -0.246152, -0.71582), (1.370368, -0.308473, -0.802219), (-0.168407, 0.520638, -0.185934), (-0.76528, 0.410922, -0.367245), (-0.774903, 0.509829, -0.273102), (2.5090709, -1.825521, 0.010653), (0.474765, -2.838605, 1.531199), (0.585497, 0.080435, -0.728875), (2.518209, -1.6175771, 0.180314), (2.523689, -2.040056, -0.132117), (-0.74115, -3.046529, 0.971509), (0.022471, 0.60025, -0.086925), (-1.812232, 1.609122, -0.005913), (-1.7769611, 1.720259, 0.099532), (-0.717451, -3.060607, 0.558227), (-0.822596, -3.068455, 0.242795), (-1.710904, 1.495195, -0.016292), (-1.680084, 1.652933, 0.033053), (-0.345867, -2.756155, -1.111677), (-0.439547, 0.42235, -0.302075), (0.187282, 0.624467, -0.149113), (2.265427, -2.586229, -0.12211), (-1.6116791, 1.321925, -0.030397), (-1.579076, 1.106405, -0.103665), (-1.60782, 0.955762, -0.166207), (-1.335126, -0.009773, -0.682593), (-1.245453, 0.059121, -0.641595), (-1.154453, -0.064749, -0.694309), (0.661345, -2.9950929, 0.390694), (-1.737397, 0.411465, -0.316664), (-1.507259, 0.958241, -0.100642), (-0.67459, 0.330878, -0.418854), (1.17568, -0.216507, -0.739192), (-1.475255, 0.570285, -0.235178), (-1.424099, 0.458885, -0.373564), (-1.5549719, 0.221511, -0.527866), (-1.750677, 0.296881, -0.39588), (0.141174, -2.905385, -0.998874), (0.773805, -0.813845, -1.2890639), (-1.416473, 0.76773, -0.105721), (-1.363083, 0.682178, -0.133776), (-1.593717, 0.736094, -0.18924), (-1.29047, 0.788107, 0.006389), (-1.327554, 0.309988, -0.518101), (-1.253884, 0.592571, -0.277708), (-1.290563, 0.186554, -0.580826), (-1.240809, 0.420704, -0.454363), (-1.134102, 0.482464, -0.404496), (-1.189314, 0.685173, -0.136423), (-1.118655, 0.311273, -0.531069), (-1.016426, 0.559127, -0.323928), (-1.028915, 0.151252, -0.589703), (-0.997725, 0.625487, -0.222037), (-2.366839, -0.088379, 1.5483041), (0.826352, -0.028457, -0.750734), (-0.940381, 0.325706, -0.488893), (1.128747, -2.9649959, 1.849998), (-0.923985, 0.457469, -0.404531), (-0.859139, 0.581542, -0.234324), (2.678977, -2.087495, -0.125871), (-0.796559, -3.00144, 0.983024), (1.072488, -0.038325, -0.721422), (-0.818741, 0.232159, -0.549001), (-0.82615, 0.054327, -0.672119), (1.624326, -1.199495, -0.961112), (-0.861301, -2.996435, 1.037102), (-2.4150171, 0.152968, -0.125695), (-2.1700711, -0.104441, -0.401577), (-2.285286, 0.401548, -0.256755), (-2.373735, 0.280234, -0.203526), (-2.344724, 0.667587, -0.262331), (-2.409584, 0.812672, -0.219538), (2.581462, -2.294098, -0.146276), (-1.424528, -0.160594, -0.713339), (-1.537394, 0.014558, -0.649239), (2.45709, -2.280087, -0.194506), (2.4514, -2.178835, -0.182616), (2.425011, -2.405632, -0.180534), (-1.249383, -1.508162, -0.586452), (1.5695491, -2.071599, -0.983729), (-2.049675, -1.20367, -0.627403), (-1.12493, 1.897028, -0.288355), (-1.6938751, -0.445943, -0.711403), (-2.117587, -1.516988, -0.379032), (-1.908432, -1.485171, -0.555509), (-1.911965, -1.602623, -0.432258), (-1.34502, 1.816894, -0.148791), (-2.140412, -1.383036, -0.495514), (2.15304, -2.518274, -0.1854), (-1.6459451, -0.233302, -0.683444), (-1.5243039, -0.483225, -0.79972), (-1.661408, -0.57995, -0.767265), (2.22413, -2.344101, -0.208871), (-1.6516709, -1.449019, -0.643207), (-1.9033921, -3.071282, -0.146087), (-2.219355, 0.990927, -0.251706), (-1.8358209, -0.952714, -0.709251), (-1.5424299, -0.320245, -0.738436), (-1.514801, -0.745461, -0.82672), (-1.662742, -0.770987, -0.780605), (-1.099958, -1.302804, -0.703528), (-1.491469, -1.825125, -0.314514), (2.022174, -2.463557, -0.196819), (-1.886121, -1.140781, -0.698808), (-1.288974, -1.245772, -0.725548), (-1.175868, -0.20408, -0.760911), (-1.35727, -1.116527, -0.797335), (-1.15658, 1.785116, -0.233169), (-1.125344, -1.129019, -0.76155), (-1.886768, -1.7876871, -0.218829), (-1.289302, -2.160265, -0.350419), (-1.196965, -2.017515, -0.427209), (-1.269194, -1.818892, -0.463061), (-1.131126, -1.901906, -0.477519), (-1.006299, -3.067039, 1.139735), (-1.746542, -1.2184939, -0.717521), (-1.133951, -0.917964, -0.81737), (-1.104885, -1.47491, -0.657327), (1.209445, -2.838104, -0.842665), (0.535944, -0.927718, -1.4026489), (-1.957247, -1.375149, -0.612239), (1.589278, -1.7271249, -0.995093), (1.5601029, -1.5021629, -1.019258), (-1.3678191, -0.377232, -0.807502), (1.487122, -2.358035, -0.938867), (-1.161369, -1.632379, -0.579306), (1.4478459, -1.248519, -1.053097), (1.474612, -2.235308, -1.027603), (1.4564819, -1.928339, -1.034991), (1.460423, -1.73014, -1.077643), (1.385814, -1.604581, -1.119691), (1.304076, -1.459506, -1.133448), (1.302416, -2.36525, -0.999115), (1.279638, -2.018361, -1.089257), (1.349084, -2.189355, -1.074774), (-0.172415, -0.94497, -1.45831), (1.255929, -1.826855, -1.137776), (1.296563, -1.345999, -1.127801), (-2.888285, 0.137894, 1.016773), (1.233672, -2.589413, -0.931294), (1.165104, -1.070522, -1.174503), (0.617217, -2.965796, 0.578516), (0.525529, -2.88641, 0.582616), (1.210097, -2.467062, -1.005278), (1.103227, -2.224164, -1.134241), (1.137834, -1.4152269, -1.199056), (1.133715, -1.707121, -1.1797), (1.165949, -1.612785, -1.205845), (1.102632, -1.213578, -1.224147), (1.100284, -2.646259, -0.940102), (1.001276, -2.610511, -0.95023), (1.080721, -2.44187, -1.0533609), (1.087241, -2.107917, -1.143372), (0.979558, -1.9269941, -1.18911), (1.06434, -1.8835621, -1.189332), (0.881515, -2.751532, -0.905596), (0.925867, -1.793941, -1.246341), (0.84983, -2.866293, -0.909791), (0.891317, -1.680393, -1.253057), (0.934286, -1.578382, -1.284928), (1.024601, -1.437643, -1.2798309), (0.967787, -0.997808, -1.257021), (0.940417, -0.88254, -1.26169), (0.912052, -2.372973, -1.108249), (0.890153, -2.075996, -1.179804), (0.978538, -1.231755, -1.292517), (0.947764, -2.211229, -1.166064), (0.867052, -1.4592, -1.326116), (0.872218, -1.288243, -1.320394), (0.849525, -2.580288, -1.014801), (0.823322, -2.487205, -1.104504), (0.806452, -1.9928169, -1.243054), (0.748099, -1.020954, -1.337587), (0.704122, -1.5927141, -1.322512), (0.725315, -2.3967519, -1.157896), (0.697487, -2.297132, -1.164168), (0.759627, -2.191475, -1.197073), (0.66456, -2.677001, -0.948052), (0.66535, -1.251585, -1.375425), (0.635101, -2.597471, -1.035625), (0.626288, -2.031491, -1.278336), (0.638981, -1.828295, -1.32365), (0.489582, -2.877115, -0.959619), (0.60541, -2.499588, -1.140713), (0.583374, -1.452891, -1.37964), (0.656587, -1.090946, -1.399428), (0.496936, -1.7457061, -1.33886), (0.355043, -2.753392, -0.979605), (0.527423, -2.33719, -1.202026), (0.496866, -1.097075, -1.443), (0.463886, -2.18401, -1.2574561), (0.459445, -1.278726, -1.4433889), (0.436119, -1.629559, -1.381496), (0.348549, -2.675231, -0.988779), (0.321046, -2.530158, -1.138816), (0.427686, -2.000839, -1.331866), (0.377635, -1.417671, -1.433239), (-0.131749, -2.890754, -0.631116), (0.342862, -2.606674, -1.08105), (0.345705, -2.4183211, -1.1865261), (0.331804, -1.850667, -1.378168), (0.295788, -2.195628, -1.2900879), (0.248509, -2.26766, -1.2800369), (0.304731, -2.030781, -1.321491), (0.328885, -1.235652, -1.460561), (0.251114, -1.690369, -1.404897), (0.272633, -1.50301, -1.450784), (0.082977, -1.3037419, -1.4840391), (0.224432, -1.100331, -1.483997), (0.122187, -2.337348, -1.233527), (0.179752, -2.035342, -1.354831), (0.142951, -1.638494, -1.461055), (-0.392166, -2.90366, 0.689222), (0.072953, -2.978423, -0.662057), (0.124698, 2.766668, -1.068432), (-0.022522, -2.683317, -1.049937), (0.042201, -2.610879, -1.058462), (0.09359, -1.8853819, -1.418885), (-0.568775, -2.885643, 1.358284), (0.031358, -1.4381549, -1.499027), (0.037793, -1.162397, -1.511906), (-2.016132, -3.06015, -0.187932), (-0.01538, -2.483896, -1.133214), (-0.000444, -1.96, -1.381329), (2.232928, -2.771715, 1.061001), (-0.047128, -1.5855241, -1.482163), (1.051827, -2.9723191, 0.240992), (0.832822, -3.04571, 0.258955), (1.0566111, -3.04441, 0.128259), (-0.100304, -2.082324, -1.300743), (-0.037636, -1.760077, -1.450621), (-0.068221, -1.0750461, -1.5048931), (-0.174918, 2.597103, -0.821845), (-1.844241, -3.029808, 1.002017), (-1.904731, -3.010172, 1.03275), (-0.137324, -1.325619, -1.50624), (-0.176441, -2.5461879, -1.061411), (-0.204933, -1.72463, -1.405647), (-2.120677, -3.034539, 0.452357), (-0.250031, -1.4987199, -1.467276), (-0.256612, -1.346739, -1.479862), (-0.255866, -1.141487, -1.477563), (-2.553102, 0.13741, 1.929844), (-1.720748, -1.8842089, 1.213887), (1.248055, -3.036676, 0.925328), (1.293219, -3.019556, 1.5425351), (1.202913, -3.020223, 1.327843), (1.015718, -3.01813, 1.513672), (1.163904, -3.006521, 1.768527), (0.013209, -3.021145, 1.811198), (0.805669, -2.980216, 1.905029), (0.870894, -3.053855, 0.427021), (0.799998, -3.048713, 0.531105), (-0.04935, -3.019253, 2.034959), (-0.475459, -3.010295, 2.086475), (1.566056, -2.950148, 0.620026), (1.535857, -2.9812741, 0.788033), (1.375068, -3.027822, 0.94328), (2.473262, -2.7637749, 0.701371), (0.617158, -2.933441, 0.740419), (0.741979, -2.961071, 0.908742), (0.629706, -2.88741, 0.878563), (0.789554, -3.028224, 0.815316), (0.710491, -3.021523, 0.686391), (2.328296, -2.7896771, 0.891593), (-0.381844, -3.027353, 1.802729), (0.292506, -2.8791971, 0.683823), (0.579581, -2.977423, -0.579345), (1.633338, -3.020988, 0.77078), (1.07822, -2.931526, 1.295423), (0.347676, -3.013304, 1.964288), (0.560383, -3.018236, 1.888459), (1.478972, -3.006713, 1.1829929), (1.20621, -3.03852, 0.918531), (-1.9012, -3.013937, 1.639458), (0.93257, -2.886714, -0.348173), (1.871062, -3.014435, 0.45382), (0.548982, -2.855396, -0.052015), (0.295535, -2.857742, -0.240705), (1.033845, -2.907798, 1.418863), (1.009884, -3.023715, 1.024139), (-2.531905, -0.039546, 1.427645), (-2.744, 0.074352, 1.27916), (-1.6293969, -2.104028, 0.409351), (1.332932, -2.9881701, 1.7148111), (0.871481, -3.021065, 1.8022721), (0.923112, -3.008261, 0.322065), (-2.8943691, 0.174665, 1.200127), (1.97172, -2.980916, 0.341127), (1.8064849, -3.011779, 0.70171), (1.03468, -2.9378119, 1.201576), (1.619652, -2.977925, 1.075482), (-2.928179, 0.149134, 1.376538), (-0.758324, -2.977885, 0.681106), (-2.945477, 0.140756, 1.572022), (0.975299, -2.944129, -0.211695), (-2.760645, 0.046686, 1.432256), (1.310121, -3.037048, -0.059524), (1.237335, -3.034353, -0.521841), (-2.846008, 0.066613, 1.548928), (0.628039, -2.84615, -0.356855), (-2.829424, 0.093441, 1.745626), (0.574588, -2.876946, -0.508339), (-1.9252241, -3.03246, 0.681328), (-2.927428, 0.193607, 1.774585), (-2.724647, 0.025285, 1.642925), (0.220992, -2.832017, 1.61709), (2.016097, -2.9556, 0.711745), (0.591884, -3.051575, -0.715738), (-2.570162, -0.019277, 1.579642), (-2.645042, 0.058965, 1.832722), (-2.708379, 0.14946, 1.9246321), (0.950662, -2.853067, 1.244336), (0.853429, -2.928713, 1.052128), (-2.472128, -0.010612, 1.76441), (1.871441, -2.963561, 0.856315), (-0.26142, -2.846441, 1.602221), (-2.371919, -1.683495, 0.785971), (-2.114796, -1.8878391, 0.20283), (-2.415578, -1.5312591, 1.118284), (-2.177921, -1.9008031, 0.412301), (-2.245625, -1.835395, 0.544212), (-2.245175, -1.8347011, 0.669198), (-2.34042, 0.055735, 1.9324), (0.940802, -3.005429, 1.034509), (-2.250237, -1.8083351, 0.813104), (-2.202347, -1.729512, 1.060326), (-2.298004, -1.6267359, 1.152743), (-2.214938, 0.037141, 1.878434), (-1.911929, -1.985013, 0.229235), (-2.074886, -1.967408, 0.482806), (-2.146355, -1.876089, 0.853788), (-2.308239, -1.5124099, 1.319785), (-1.692277, -2.041829, 0.164264), (-2.095845, -3.065062, 0.051515), (-2.073591, -1.962429, 0.675139), (-1.782086, -2.050939, 0.383915), (-1.915195, -2.031823, 0.583213), (-1.998287, -1.970968, 0.7853), (-2.119477, -1.661129, 1.307669), (-1.925799, -3.073554, 0.172611), (-2.006536, -1.924099, 0.924672), (-2.167758, -1.549579, 1.418635), (-2.185642, -1.453785, 1.501829), (-2.026257, -3.059896, 0.409377), (-2.014313, -1.804783, 1.1538839), (0.998699, -3.019938, 0.786637), (-1.570495, -3.072589, -0.306459), (-1.676314, -3.075303, 0.05075), (-1.778381, -2.057877, 0.722672), (-1.976125, -1.602006, 1.485111), (-1.8035641, -3.053022, 0.737153), (-1.675406, -2.099298, 0.597964), (-1.82154, -2.000502, 0.879457), (-1.867283, -1.8992469, 1.0879099), (-1.879256, -1.768618, 1.335747), (-1.440765, -3.073873, -0.013212), (-1.6392801, -3.068869, 0.622456), (-1.661152, -1.7461829, 1.464957), (-1.755118, -1.563839, 1.609457), (-1.231907, -3.068867, -0.454026), (-1.101347, -3.067225, -0.819331), (-0.909513, -3.069048, -0.887423), (-1.133131, -3.069759, -0.442915), (-1.460031, -3.070368, 0.620319), (-1.813252, -3.039977, 1.33796), (-1.186134, -3.069569, 0.023575), (-1.213382, -3.073714, 0.202381), (-1.492452, -3.081411, 0.694945), (-1.561489, -3.048604, 1.129082), (-1.499126, -1.7174959, 1.540559), (-0.974059, -3.053498, -0.421663), (-1.38546, -3.067946, 0.38156), (-1.157894, -3.065622, 0.317284), (-1.215172, -2.991603, 0.383463), (-1.647656, -3.036914, 1.513698), (-1.782951, -3.026053, 1.743437), (-0.737774, -3.060347, -0.762945), (-0.981256, -3.059537, -0.015952), (-0.808807, -2.986356, -0.542374), (-0.917068, -2.966561, -0.234886), (-1.378471, -1.687855, 1.559114), (-0.59304, -2.989886, -0.710649), (-0.665923, -2.910299, -0.588505), (-0.852759, -2.872542, -0.233611), (-0.421662, -3.057344, -0.796848), (-0.899091, -2.960458, 0.492115), (-1.205809, -3.035929, 1.283017), (-1.405383, -3.034881, 1.448312), (-0.371914, -2.9768019, -0.71871), (-0.559558, -2.867682, -0.503998), (-0.656141, -2.8855019, 0.038378), (-0.443132, -2.877124, -0.6307), (-0.875724, -3.056252, 0.402321), (-1.533386, -2.119018, 0.740775)] }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/nestedScenegraphInstancesOff.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (660.7930685989429, 435.6262857330999, 378.9703110039463) double3 target = (100.6614831852921, -99.13605187232162, -8.691718734297892) } 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.009999999776482582 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 "threeCubes" ( instanceable = false prepend references = @./threeCubes.usda@ ) { float3 xformOp:rotateXYZ = (0, 0, 0) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, -221.09611) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/CubeInstance.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 = { bool "rtx:materialflattener:loading" = 0 } } defaultPrim = "CubeInstance" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "CubeInstance" { def Xform "Cube" { double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (3, 3, 3) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Mesh "Cube_01" { 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.rtx.tests/data/usd/hydra/simpleSphereLightPrefixed.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500, 500, 500) double3 target = (-0.00000397803842133726, 0.000007956076785831101, -0.000003978038307650422) } dictionary Right = { double3 position = (-50000, 0, 0) double radius = 500 } dictionary Top = { double3 position = (0, 50000, 0) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { float3 "rtx:debugView:pixelDebug:textColor" = (0, 1e18, 0) float3 "rtx:dynamicDiffuseGI:probeCounts" = (6, 6, 6) float3 "rtx:dynamicDiffuseGI:probeGridOrigin" = (-210, -250, -10) float3 "rtx:dynamicDiffuseGI:volumeSize" = (600, 440, 300) float3 "rtx:fog:fogColor" = (0.75, 0.75, 0.75) float3 "rtx:lightspeed:material:overrideAlbedo" = (0.5, 0.5, 0.5) float3 "rtx:lightspeed:material:overrideEmissiveColor" = (0.5, 0.5, 0.5) float3 "rtx:post:backgroundZeroAlpha:backgroundDefaultColor" = (0, 0, 0) float3 "rtx:post:colorcorr:contrast" = (1, 1, 1) float3 "rtx:post:colorcorr:gain" = (1, 1, 1) float3 "rtx:post:colorcorr:gamma" = (1, 1, 1) float3 "rtx:post:colorcorr:offset" = (0, 0, 0) float3 "rtx:post:colorcorr:saturation" = (1, 1, 1) float3 "rtx:post:colorgrad:blackpoint" = (0, 0, 0) float3 "rtx:post:colorgrad:contrast" = (1, 1, 1) float3 "rtx:post:colorgrad:gain" = (1, 1, 1) float3 "rtx:post:colorgrad:gamma" = (1, 1, 1) float3 "rtx:post:colorgrad:lift" = (0, 0, 0) float3 "rtx:post:colorgrad:multiply" = (1, 1, 1) float3 "rtx:post:colorgrad:offset" = (0, 0, 0) float3 "rtx:post:colorgrad:whitepoint" = (1, 1, 1) float3 "rtx:post:lensDistortion:lensFocalLengthArray" = (10, 30, 50) float3 "rtx:post:lensFlares:anisoFlareFalloffX" = (450, 475, 500) float3 "rtx:post:lensFlares:anisoFlareFalloffY" = (10, 10, 10) float3 "rtx:post:lensFlares:cutoffPoint" = (2, 2, 2) float3 "rtx:post:lensFlares:haloFlareFalloff" = (10, 10, 10) float3 "rtx:post:lensFlares:haloFlareRadius" = (75, 75, 75) float3 "rtx:post:lensFlares:isotropicFlareFalloff" = (50, 50, 50) float3 "rtx:post:tonemap:whitepoint" = (1, 1, 1) float3 "rtx:raytracing:inscattering:singleScatteringAlbedo" = (0.9, 0.9, 0.9) float3 "rtx:raytracing:inscattering:transmittanceColor" = (0.5, 0.5, 0.5) float3 "rtx:sceneDb:ambientLightColor" = (0.1, 0.1, 0.1) } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { 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"] } def SphereLight "SphereLight" ( prepend apiSchemas = ["ShapingAPI"] ) { color3f inputs:color = (0, 0.88148147, 0.019588318) float inputs:intensity = 30000 float inputs:radius = 50 float inputs:shaping:cone:angle = 180 float inputs:shaping:cone:softness float inputs:shaping:focus color3f inputs:shaping:focusTint asset inputs:shaping:ies:file double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-119.99076333584401, 46.819738668772516, 73.1710257845586) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/guideRepr.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (66.06305156595162, 66.06305156595167, 66.06305156595162) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { int "rtx:post:aa:op" = 0 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 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 "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 purpose = "guide" 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.rtx.tests/data/usd/hydra/CubeWorld.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 = { bool "rtx:materialflattener:loading" = 0 } } defaultPrim = "CubeWorld" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "CubeWorld" { 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 Xform "CubeInstance" ( references = @./CubeInstance.usda@ ) { 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.rtx.tests/data/usd/hydra/cubeYellow.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50050.000000000015, -1.1113332476497817e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (500.00000000000006, 499.99999999999994, 499.99999999999994) double3 target = (0, 0, 0) } dictionary Right = { double3 position = (0, -50050, -1.1113332476497817e-11) double radius = 500 } dictionary Top = { double3 position = (0, 0, 50050) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 30 upAxis = "Z" ) def Xform "World" { def Xform "Xform" { 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] 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.rtx.tests/data/usd/hydra/cone_sbdv.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } int refinementOverrideImplVersion = 0 dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 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] 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" ) bool refinementEnableOverride = 1 int refinementLevel = 2 uniform token subdivisionScheme = "catmullClark" 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.rtx.tests/data/usd/hydra/dome_emission_direction.mdl
mdl 1.4; import ::df::*; import ::base::*; import ::math::*; import ::state::*; import ::anno::*; import ::tex::*; export material dome_emission_direction ( uniform color tint = color(1.0), uniform float Intensity=1000 [[ anno::soft_range(float(0.0f), float(1000.0f)) ]], uniform float Exposure=0 ) = let { color col = color(state::position()); } in material( surface: material_surface( emission: material_emission ( df::diffuse_edf(), intensity: tint*col*Intensity*math::exp2(Exposure) ) ) ); // export material dome_emission_direction // ( // color tint = color(1.0), // float intensity_scale = 1.0 // ) = material // ( // surface: material_surface // ( // emission: material_emission // ( // emission: df::diffuse_edf(), // intensity: tint * color(state::position()) * intensity_scale // ) // ) // ); //
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/LightLinkSimple.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (-450.0435097166573, 417.946004657155, 1117.897145879241) double3 target = (143.1801017392904, 161.63531937281348, -19.90590930704586) } 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 = { token "rtx:rendermode" = "PathTracing" } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Mesh "Plane" { int[] faceVertexCounts = [4] int[] faceVertexIndices = [0, 2, 3, 1] normal3f[] normals = [(0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, 0, -50), (50, 0, -50), (-50, 0, 50), (50, 0, 50)] float2[] primvars:st = [(1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (50, 50, 50) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def DiskLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { prepend rel collection:lightLink:excludes = </World/Cube> uniform bool collection:lightLink:includeRoot = 1 delete rel collection:lightLink:includes = </World/Cube> float exposure = 4.1 float intensity = 60000 float radius = 50 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus = 20 color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateXYZ = (-30.0301, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 482.53, 725.108) 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] 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 = (22.027015686035156, -27.185077667236328, -4.458839271137549e-7) double3 xformOp:scale = (0.9999995231628418, 1.0000001192092896, 0.999998927116394) double3 xformOp:translate = (0, 100, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/dome_gridspherejulia.mdl
mdl 1.4; import ::df::*; import ::base::*; import ::math::*; import ::state::*; import ::anno::*; import ::tex::*; float2 XYZtoUV(float3 p) { p=math::normalize(p); return float2(math::atan2(p.x,-p.y)/math::acos(-1)*0.5+0.5,math::asin(-p.z)/math::acos(-1)+0.5); } color DrawSphereGrid(float3 p,float2 gridsize,float ThicknessExp,color GridColor) { float2 uv=XYZtoUV(p); // float chess4=(math::frac((uv.x-0.5)*2)>0.5)^(math::frac((uv.y-0.5)*1)>0.5); uv=(uv-float2(0.5))*gridsize; // uv*=math::exp2(ScaleExp*0.1); float2 p2f=math::frac(uv); float2 p2w=math::floor(uv)/gridsize; float chess=(math::frac(uv.x/2)>0.5)^(math::frac(uv.y/2)>0.5); // float3 cv=float3(p2f.x,p2f.y,chess); // float2 dv=math::abs(math::frac(uv)*2-1)*math::exp2(7-ThicknessExp*0.1)/math::pow(math::abs(uv/p.z),.5); float2 dv=math::abs(math::frac(uv+0.5)*2-1)*math::exp2(11-ThicknessExp*0.1)*float2(math::length(float2(p.x,p.y)),0.5)/gridsize; float grid=math::max(math::saturate(1-dv.x),math::saturate(1-dv.y)); color c=color(1); c=math::lerp(color(p2f.x,p2f.y,1),color(p2w.x,p2w.y,0),chess); c=math::lerp(c,GridColor,grid); return c; } color DrawJulia(float3 p,uniform float ScaleExp,uniform float HorizonFactor,uniform float2 OffsetTop,uniform float2 OffsetBottom) { float pz=math::abs(p.z)+math::exp2(ScaleExp*0.1+HorizonFactor*0.1-3); float2 uv=float2(p.x/pz,p.y/pz); float2 u=uv*math::exp2(ScaleExp*0.1-2); float2 z=u; float2 c=p.z>0?OffsetTop:OffsetBottom; color col=color(1); bool stop=false; for(int i=0;i<50&&!stop;i++){ z=((float2((z.x)*(z.x)-(z.y)*(z.y),2*(z.x)*(z.y))+c)); stop=math::length(z)>2; // g=math::lerp(g,g+1,1-math::smoothstep(0,2,math::length(z))); color ncol=color(0.5)+color(0.5*math::sin(2*math::log2(float(i+1)*math::sqrt(float3(3,5,7))))); ncol=ncol+color(.1/math::length(z-float2(1.+0.8*math::sin(float(i)),0))); col=math::lerp(col,ncol,1-math::smoothstep(0,2,math::length(z))); } // c=color(g); // c=color(math::length(z.x)); return col; } export material dome_gridspherejulia ( color emissive_color = color(1.0), uniform float Intensity=1000 [[ anno::soft_range(float(0.0f), float(1000.0f)) ]], uniform float Exposure=0, color GridColor = color(0.9), uniform int GridX=90, uniform int GridY=45, uniform float ScaleExp=0, uniform float ThicknessExp=0, uniform float HorizonFactor=0, uniform float2 OffsetTop=float2(0.025,0.644), uniform float2 OffsetBottom=float2(-0.191,0.672) ) = let { //base::texture_coordinate_info uvw = base::coordinate_source(base::texture_coordinate_object,0); //float3 p = float3(uvw.position.x,uvw.position.y,uvw.position.z); float3 p = state::position(); color col_1=emissive_color*DrawSphereGrid(p,float2(GridX,GridY),ThicknessExp,GridColor); color col_2=emissive_color*DrawJulia(p,ScaleExp,HorizonFactor,OffsetTop,OffsetBottom); float s = math::max(0, p.z - 0.3) / 0.17; float ss = math::saturate(s*s / 10); // When this material was written the RTX Renderer was off by a factor of pi internally. // https://nvidia-omniverse.atlassian.net/browse/OM-30721 // To keep golden images, we divide here by pi now. color col= math::lerp(col_1, col_2, ss) / math::PI; //Other examples: //color col= math::lerp(col_1, col_2, p.y); //color col= col_1; //color col= color(p.y, p.y, p.y); //color col= color(p.z, p.z, p.z); } in material( surface: material_surface( emission: material_emission ( df::diffuse_edf(), intensity: col*Intensity*math::exp2(Exposure) ) ) );
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/tetmesh_teddy.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50000.000000000015, -1.1102230246251565e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (942.2120576819515, 454.25928512248873, 889.7481450495046) double radius = 3657.768558747764 double3 target = (-12.07827857149553, -13.723247407373501, 505.3555535078069) } dictionary Right = { double3 position = (0, -50000, -1.1102230246251565e-11) double radius = 500 } dictionary Top = { double3 position = (0, 0, 50000) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 int "rtx:post:aa:op" = 0 } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def Xform "World" { def Xform "softbody_teddy" ( prepend apiSchemas = ["PhysxSoftBodyAPI", "PhysxCollisionAPI"] ) { float physxSoftBody:damping = 0 float physxSoftBody:dynamicFriction = 0.5 float physxSoftBody:poissons = 0.45 float physxSoftBody:relaxationFactor = 0.25 int physxSoftBody:solverPositionIterationCount = 20 int physxSoftBody:solverVelocityIterationCount = 1 custom int physxSoftBody:tetMakerResolution = 7 float physxSoftBody:youngs = 20000 double3 xformOp:translate = (0, 0, 500) uniform token[] xformOpOrder = ["xformOp:translate"] def TetrahedralMesh "sim_tetmesh" ( prepend apiSchemas = ["PhysxSoftBodySimulationAPI"] ) { int[] indices = [7, 6, 4, 5, 6, 7, 8, 5, 5, 7, 8, 9, 0, 5, 6, 10, 11, 5, 1, 10, 12, 11, 1, 10, 2, 13, 12, 10, 14, 15, 8, 11, 8, 5, 10, 6, 11, 15, 8, 10, 11, 5, 8, 9, 5, 11, 8, 10, 8, 14, 11, 9, 15, 11, 12, 10, 15, 13, 10, 12, 13, 15, 16, 12, 12, 15, 16, 17, 15, 14, 17, 11, 11, 15, 12, 17, 16, 12, 18, 13, 24, 7, 8, 25, 7, 24, 8, 9, 7, 25, 24, 23, 26, 25, 23, 24, 25, 26, 27, 24, 24, 26, 27, 28, 24, 14, 8, 9, 8, 24, 25, 29, 14, 24, 8, 29, 15, 14, 8, 29, 30, 24, 14, 29, 31, 15, 16, 32, 15, 31, 14, 29, 31, 15, 14, 17, 31, 30, 14, 29, 15, 31, 16, 17, 15, 32, 31, 29, 33, 34, 27, 30, 27, 24, 29, 25, 30, 34, 27, 29, 30, 24, 27, 28, 24, 30, 27, 29, 27, 33, 30, 28, 34, 30, 31, 29, 34, 32, 29, 31, 32, 34, 35, 31, 31, 34, 35, 36, 34, 33, 36, 30, 30, 34, 31, 36, 16, 31, 32, 37, 35, 31, 37, 32, 45, 26, 27, 46, 26, 45, 27, 28, 26, 46, 45, 44, 47, 46, 44, 45, 46, 47, 48, 45, 45, 47, 48, 49, 45, 33, 27, 28, 27, 45, 46, 50, 33, 45, 27, 50, 34, 33, 27, 50, 51, 45, 33, 50, 52, 34, 35, 53, 34, 52, 33, 50, 52, 34, 33, 36, 52, 51, 33, 50, 34, 52, 35, 36, 34, 53, 52, 50, 54, 55, 48, 51, 48, 45, 50, 46, 51, 55, 48, 50, 51, 45, 48, 49, 45, 51, 48, 50, 48, 54, 51, 49, 55, 51, 52, 50, 55, 53, 50, 52, 53, 55, 56, 52, 52, 55, 56, 57, 55, 54, 57, 51, 51, 55, 52, 57, 35, 52, 53, 58, 56, 52, 58, 53, 65, 47, 48, 66, 47, 65, 48, 49, 47, 66, 65, 64, 67, 66, 64, 65, 66, 67, 68, 65, 65, 54, 48, 49, 48, 65, 66, 69, 54, 65, 48, 69, 55, 54, 48, 69, 70, 55, 56, 71, 55, 70, 54, 69, 70, 55, 54, 57, 55, 70, 56, 57, 55, 71, 70, 69, 68, 65, 69, 66, 72, 71, 69, 70, 71, 72, 73, 70, 56, 70, 71, 74, 73, 70, 74, 71, 100, 98, 96, 97, 98, 100, 101, 97, 97, 100, 101, 102, 84, 97, 98, 103, 85, 97, 84, 103, 86, 85, 84, 103, 104, 97, 85, 103, 105, 86, 87, 106, 86, 105, 85, 103, 105, 86, 85, 88, 105, 104, 85, 103, 86, 105, 87, 88, 86, 106, 105, 103, 6, 104, 4, 85, 85, 105, 88, 6, 104, 6, 105, 85, 107, 108, 101, 104, 101, 97, 103, 98, 104, 108, 101, 103, 104, 97, 101, 102, 97, 104, 101, 103, 101, 107, 104, 102, 108, 104, 105, 103, 108, 106, 103, 105, 106, 108, 109, 105, 105, 108, 109, 110, 108, 107, 110, 104, 104, 108, 105, 110, 3, 107, 102, 104, 3, 7, 107, 104, 7, 3, 4, 104, 7, 107, 104, 110, 104, 6, 4, 7, 7, 104, 6, 110, 104, 105, 6, 110, 110, 8, 6, 7, 105, 89, 87, 88, 87, 105, 106, 111, 89, 105, 87, 111, 90, 89, 87, 111, 112, 105, 89, 111, 113, 90, 91, 114, 90, 113, 89, 111, 113, 90, 89, 92, 113, 112, 89, 111, 90, 113, 91, 92, 90, 114, 113, 111, 6, 89, 105, 88, 105, 112, 89, 6, 10, 6, 0, 89, 112, 6, 10, 89, 89, 13, 2, 10, 13, 112, 10, 89, 89, 113, 92, 13, 112, 13, 113, 89, 115, 116, 109, 112, 109, 105, 111, 106, 112, 116, 109, 111, 112, 105, 109, 110, 105, 112, 109, 111, 109, 115, 112, 110, 116, 112, 113, 111, 116, 114, 111, 113, 114, 116, 117, 113, 113, 116, 117, 118, 116, 115, 118, 112, 112, 116, 113, 118, 112, 105, 110, 6, 8, 115, 110, 112, 6, 8, 112, 10, 8, 6, 112, 110, 8, 15, 115, 112, 15, 8, 10, 112, 15, 115, 112, 118, 112, 13, 10, 15, 15, 112, 13, 118, 112, 113, 13, 118, 118, 16, 13, 15, 113, 93, 91, 92, 91, 113, 114, 119, 93, 113, 91, 119, 94, 93, 91, 119, 120, 113, 93, 119, 94, 121, 93, 119, 121, 120, 93, 119, 94, 122, 121, 119, 13, 93, 113, 92, 113, 120, 93, 13, 120, 13, 18, 93, 123, 124, 117, 120, 117, 113, 119, 114, 120, 124, 117, 119, 120, 113, 117, 118, 113, 120, 117, 119, 117, 123, 120, 118, 124, 120, 121, 119, 124, 122, 119, 121, 122, 124, 125, 121, 121, 124, 125, 126, 124, 123, 126, 120, 120, 124, 121, 126, 120, 113, 118, 13, 16, 123, 118, 120, 13, 16, 120, 18, 16, 13, 120, 118, 16, 19, 123, 120, 19, 16, 18, 120, 19, 123, 120, 126, 125, 121, 127, 122, 100, 99, 95, 132, 134, 100, 101, 135, 100, 134, 99, 132, 134, 100, 99, 102, 134, 133, 99, 132, 100, 134, 101, 102, 100, 135, 134, 132, 99, 134, 102, 20, 133, 20, 134, 99, 136, 137, 131, 133, 133, 137, 131, 132, 137, 133, 134, 132, 137, 135, 132, 134, 135, 137, 138, 134, 134, 137, 138, 139, 137, 136, 139, 133, 133, 137, 134, 139, 21, 136, 133, 139, 21, 133, 20, 139, 133, 134, 20, 139, 139, 22, 20, 21, 134, 107, 101, 102, 101, 134, 135, 140, 107, 134, 101, 140, 108, 107, 101, 140, 141, 134, 107, 140, 142, 108, 109, 143, 108, 142, 107, 140, 142, 108, 107, 110, 142, 141, 107, 140, 108, 142, 109, 110, 108, 143, 142, 140, 3, 7, 23, 107, 3, 107, 20, 102, 20, 107, 134, 102, 134, 141, 107, 20, 23, 20, 3, 107, 141, 20, 23, 107, 107, 25, 7, 23, 25, 107, 7, 110, 25, 141, 23, 107, 107, 142, 110, 25, 8, 110, 25, 7, 141, 25, 142, 107, 144, 145, 138, 141, 138, 134, 140, 135, 141, 145, 138, 140, 141, 134, 138, 139, 134, 141, 138, 140, 138, 144, 141, 139, 145, 141, 142, 140, 145, 143, 140, 142, 143, 145, 146, 142, 142, 145, 146, 147, 145, 144, 147, 141, 141, 145, 142, 147, 141, 134, 139, 20, 22, 144, 139, 141, 20, 22, 141, 23, 22, 20, 141, 139, 22, 26, 144, 141, 26, 22, 23, 141, 26, 144, 141, 147, 141, 25, 23, 26, 26, 141, 25, 147, 141, 142, 25, 147, 147, 27, 25, 26, 142, 115, 109, 110, 109, 142, 143, 148, 115, 142, 109, 148, 116, 115, 109, 148, 149, 142, 115, 148, 150, 116, 117, 151, 116, 150, 115, 148, 150, 116, 115, 118, 150, 149, 115, 148, 116, 150, 117, 118, 116, 151, 150, 148, 8, 15, 29, 115, 8, 115, 25, 110, 25, 115, 142, 110, 142, 149, 115, 25, 29, 25, 8, 115, 149, 25, 29, 115, 115, 32, 15, 29, 32, 115, 15, 118, 32, 149, 29, 115, 115, 150, 118, 32, 16, 118, 32, 15, 149, 32, 150, 115, 152, 153, 146, 149, 146, 142, 148, 143, 149, 153, 146, 148, 149, 142, 146, 147, 142, 149, 146, 148, 146, 152, 149, 147, 153, 149, 150, 148, 153, 151, 148, 150, 151, 153, 154, 150, 150, 153, 154, 155, 153, 152, 155, 149, 149, 153, 150, 155, 149, 142, 147, 25, 27, 152, 147, 149, 25, 27, 149, 29, 27, 25, 149, 147, 27, 34, 152, 149, 34, 27, 29, 149, 34, 152, 149, 155, 149, 32, 29, 34, 34, 149, 32, 155, 149, 150, 32, 155, 155, 35, 32, 34, 150, 123, 117, 118, 117, 150, 151, 156, 123, 150, 117, 156, 124, 123, 117, 156, 157, 150, 123, 156, 158, 124, 125, 159, 124, 158, 123, 156, 158, 124, 123, 126, 158, 157, 123, 156, 124, 158, 125, 126, 124, 159, 158, 156, 16, 19, 37, 123, 16, 123, 32, 118, 32, 123, 150, 118, 150, 157, 123, 32, 37, 32, 16, 123, 157, 32, 37, 123, 123, 38, 19, 37, 38, 123, 19, 126, 38, 157, 37, 123, 123, 158, 126, 38, 157, 38, 158, 123, 160, 161, 154, 157, 154, 150, 156, 151, 157, 161, 154, 156, 157, 150, 154, 155, 150, 157, 154, 156, 154, 160, 157, 155, 161, 157, 158, 156, 161, 159, 156, 158, 159, 161, 162, 158, 158, 161, 162, 163, 161, 160, 163, 157, 157, 161, 158, 163, 157, 150, 155, 32, 35, 160, 155, 157, 32, 35, 157, 37, 35, 32, 157, 155, 35, 39, 160, 157, 39, 35, 37, 157, 39, 160, 157, 163, 157, 38, 37, 39, 39, 157, 38, 163, 157, 158, 38, 163, 163, 40, 38, 39, 158, 128, 125, 126, 125, 158, 159, 164, 128, 158, 125, 164, 129, 128, 125, 164, 165, 158, 128, 164, 38, 128, 158, 126, 158, 165, 128, 38, 167, 168, 162, 165, 162, 158, 164, 159, 165, 168, 162, 164, 165, 158, 162, 163, 158, 165, 162, 164, 162, 167, 165, 163, 165, 158, 163, 38, 40, 167, 163, 165, 40, 38, 165, 163, 137, 136, 131, 171, 173, 137, 138, 174, 137, 173, 136, 171, 173, 137, 136, 139, 173, 172, 136, 171, 137, 173, 138, 139, 137, 174, 173, 171, 41, 136, 21, 139, 136, 173, 139, 41, 22, 139, 41, 21, 172, 41, 173, 136, 175, 176, 170, 172, 172, 176, 170, 171, 176, 172, 173, 171, 176, 174, 171, 173, 174, 176, 177, 173, 173, 176, 177, 178, 176, 175, 178, 172, 172, 176, 173, 178, 42, 175, 172, 178, 42, 172, 41, 178, 172, 173, 41, 178, 178, 43, 41, 42, 173, 144, 138, 139, 138, 173, 174, 179, 144, 173, 138, 179, 145, 144, 138, 179, 180, 173, 144, 179, 181, 145, 146, 182, 145, 181, 144, 179, 181, 145, 144, 147, 181, 180, 144, 179, 145, 181, 146, 147, 145, 182, 181, 179, 22, 26, 44, 144, 22, 144, 41, 139, 41, 144, 173, 139, 173, 180, 144, 41, 44, 41, 22, 144, 180, 41, 44, 144, 144, 46, 26, 44, 46, 144, 26, 147, 46, 180, 44, 144, 144, 181, 147, 46, 27, 147, 46, 26, 180, 46, 181, 144, 183, 184, 177, 180, 177, 173, 179, 174, 180, 184, 177, 179, 180, 173, 177, 178, 173, 180, 177, 179, 177, 183, 180, 178, 184, 180, 181, 179, 184, 182, 179, 181, 182, 184, 185, 181, 181, 184, 185, 186, 184, 183, 186, 180, 180, 184, 181, 186, 180, 173, 178, 41, 43, 183, 178, 180, 41, 43, 180, 44, 43, 41, 180, 178, 43, 47, 183, 180, 47, 43, 44, 180, 47, 183, 180, 186, 180, 46, 44, 47, 47, 180, 46, 186, 180, 181, 46, 186, 186, 48, 46, 47, 181, 152, 146, 147, 146, 181, 182, 187, 152, 181, 146, 187, 153, 152, 146, 187, 188, 181, 152, 187, 189, 153, 154, 190, 153, 189, 152, 187, 189, 153, 152, 155, 189, 188, 152, 187, 153, 189, 154, 155, 153, 190, 189, 187, 27, 34, 50, 152, 27, 152, 46, 147, 46, 152, 181, 147, 181, 188, 152, 46, 50, 46, 27, 152, 188, 46, 50, 152, 152, 53, 34, 50, 53, 152, 34, 155, 53, 188, 50, 152, 152, 189, 155, 53, 35, 155, 53, 34, 188, 53, 189, 152, 191, 192, 185, 188, 185, 181, 187, 182, 188, 192, 185, 187, 188, 181, 185, 186, 181, 188, 185, 187, 185, 191, 188, 186, 192, 188, 189, 187, 192, 190, 187, 189, 190, 192, 193, 189, 189, 192, 193, 194, 192, 191, 194, 188, 188, 192, 189, 194, 188, 181, 186, 46, 48, 191, 186, 188, 46, 48, 188, 50, 48, 46, 188, 186, 48, 55, 191, 188, 55, 48, 50, 188, 55, 191, 188, 194, 188, 53, 50, 55, 55, 188, 53, 194, 188, 189, 53, 194, 194, 56, 53, 55, 189, 160, 154, 155, 154, 189, 190, 195, 160, 189, 154, 195, 161, 160, 154, 195, 196, 189, 160, 195, 197, 161, 162, 198, 161, 197, 160, 195, 197, 161, 160, 163, 197, 196, 160, 195, 161, 197, 162, 163, 161, 198, 197, 195, 35, 39, 58, 160, 35, 160, 53, 155, 53, 160, 189, 155, 189, 196, 160, 53, 58, 53, 35, 160, 196, 53, 58, 160, 160, 59, 39, 58, 59, 160, 39, 163, 59, 196, 58, 160, 160, 197, 163, 59, 40, 163, 59, 39, 196, 59, 197, 160, 199, 200, 193, 196, 193, 189, 195, 190, 196, 200, 193, 195, 196, 189, 193, 194, 189, 196, 193, 195, 193, 199, 196, 194, 200, 196, 197, 195, 200, 198, 195, 197, 198, 200, 201, 197, 197, 200, 201, 202, 200, 199, 202, 196, 196, 200, 197, 202, 196, 189, 194, 53, 56, 199, 194, 196, 53, 56, 196, 58, 56, 53, 196, 194, 56, 60, 199, 196, 60, 56, 58, 196, 60, 199, 196, 202, 196, 59, 58, 60, 60, 196, 59, 202, 196, 197, 59, 202, 202, 61, 59, 60, 197, 167, 162, 163, 162, 197, 198, 203, 167, 197, 162, 203, 168, 167, 162, 203, 204, 197, 167, 203, 40, 167, 59, 163, 59, 167, 197, 163, 197, 204, 167, 59, 206, 207, 201, 204, 201, 197, 203, 198, 204, 207, 201, 203, 204, 197, 201, 202, 197, 204, 201, 203, 201, 206, 204, 202, 204, 197, 202, 59, 61, 206, 202, 204, 61, 59, 204, 202, 176, 175, 170, 210, 212, 176, 177, 213, 176, 212, 175, 210, 212, 176, 175, 178, 212, 211, 175, 210, 176, 212, 177, 178, 176, 213, 212, 210, 62, 175, 42, 178, 175, 212, 178, 62, 43, 178, 62, 42, 211, 62, 212, 175, 211, 214, 209, 210, 214, 211, 212, 210, 214, 213, 210, 212, 213, 214, 215, 212, 212, 214, 215, 216, 211, 214, 212, 216, 211, 212, 62, 216, 212, 183, 177, 178, 177, 212, 213, 217, 183, 212, 177, 217, 184, 183, 177, 217, 218, 212, 183, 217, 219, 184, 185, 220, 184, 219, 183, 217, 219, 184, 183, 186, 219, 218, 183, 217, 184, 219, 185, 186, 184, 220, 219, 217, 43, 47, 64, 183, 43, 183, 62, 178, 62, 183, 212, 178, 212, 218, 183, 62, 64, 62, 43, 183, 218, 62, 64, 183, 183, 66, 47, 64, 66, 183, 47, 186, 66, 218, 64, 183, 183, 219, 186, 66, 48, 186, 66, 47, 218, 66, 219, 183, 221, 222, 215, 218, 215, 212, 217, 213, 218, 222, 215, 217, 218, 212, 215, 216, 212, 218, 215, 217, 215, 221, 218, 216, 222, 218, 219, 217, 222, 220, 217, 219, 220, 222, 223, 219, 219, 222, 223, 224, 222, 221, 224, 218, 218, 222, 219, 224, 218, 212, 216, 62, 63, 221, 216, 218, 62, 63, 218, 64, 63, 62, 218, 216, 63, 67, 221, 218, 67, 63, 64, 218, 67, 221, 218, 224, 218, 66, 64, 67, 67, 218, 66, 224, 218, 219, 66, 224, 224, 68, 66, 67, 219, 191, 185, 186, 185, 219, 220, 225, 191, 219, 185, 225, 192, 191, 185, 225, 226, 219, 191, 225, 227, 192, 193, 228, 192, 227, 191, 225, 227, 192, 191, 194, 227, 226, 191, 225, 192, 227, 193, 194, 192, 228, 227, 225, 48, 55, 69, 191, 48, 191, 66, 186, 66, 191, 219, 186, 219, 226, 191, 66, 69, 66, 48, 191, 226, 66, 69, 191, 191, 71, 55, 69, 71, 191, 55, 194, 71, 226, 69, 191, 191, 227, 194, 71, 56, 194, 71, 55, 226, 71, 227, 191, 229, 230, 223, 226, 223, 219, 225, 220, 226, 230, 223, 225, 226, 219, 223, 224, 219, 226, 223, 225, 223, 229, 226, 224, 230, 226, 227, 225, 230, 228, 225, 227, 228, 230, 231, 227, 227, 230, 231, 232, 230, 229, 232, 226, 226, 230, 227, 232, 226, 219, 224, 66, 68, 229, 224, 226, 66, 68, 226, 69, 68, 66, 226, 224, 68, 72, 229, 226, 72, 68, 69, 226, 72, 229, 226, 232, 226, 71, 69, 72, 72, 226, 71, 232, 226, 227, 71, 232, 232, 73, 71, 72, 227, 199, 193, 194, 193, 227, 228, 233, 199, 227, 193, 233, 200, 199, 193, 233, 234, 227, 199, 233, 235, 200, 201, 236, 200, 235, 199, 233, 235, 200, 199, 202, 235, 234, 199, 233, 200, 235, 201, 202, 200, 236, 235, 233, 56, 60, 74, 199, 56, 199, 71, 194, 71, 199, 227, 194, 227, 234, 199, 71, 74, 71, 56, 199, 234, 71, 74, 199, 199, 75, 60, 74, 75, 199, 60, 202, 75, 234, 74, 199, 199, 235, 202, 75, 61, 202, 75, 60, 234, 75, 235, 199, 237, 238, 231, 234, 231, 227, 233, 228, 234, 238, 231, 233, 234, 227, 231, 232, 227, 234, 231, 233, 231, 237, 234, 232, 238, 234, 235, 233, 238, 236, 233, 235, 236, 238, 239, 235, 235, 238, 239, 240, 238, 237, 240, 234, 234, 238, 235, 240, 234, 227, 232, 71, 73, 237, 232, 234, 71, 73, 234, 74, 73, 71, 234, 232, 73, 76, 237, 234, 76, 73, 74, 234, 76, 237, 234, 240, 234, 75, 74, 76, 76, 234, 75, 240, 234, 235, 75, 240, 235, 206, 201, 202, 201, 235, 236, 241, 206, 235, 201, 241, 207, 206, 201, 241, 242, 235, 206, 241, 61, 206, 75, 202, 75, 206, 235, 202, 235, 242, 206, 75, 239, 235, 241, 236, 242, 244, 239, 241, 242, 235, 239, 240, 235, 242, 239, 241, 242, 235, 240, 75, 246, 214, 215, 247, 214, 246, 215, 216, 214, 247, 246, 245, 248, 247, 245, 246, 247, 248, 249, 246, 246, 221, 215, 216, 215, 246, 247, 250, 221, 246, 215, 250, 222, 221, 215, 250, 251, 246, 221, 250, 252, 222, 223, 253, 222, 252, 221, 250, 252, 222, 221, 224, 252, 251, 221, 250, 222, 252, 223, 224, 222, 253, 252, 250, 77, 221, 67, 224, 221, 252, 224, 77, 68, 224, 77, 67, 251, 77, 252, 221, 249, 246, 250, 247, 251, 255, 249, 250, 246, 251, 249, 250, 255, 251, 252, 250, 255, 253, 250, 252, 253, 255, 256, 252, 252, 255, 256, 257, 251, 255, 252, 257, 251, 252, 77, 257, 252, 229, 223, 224, 223, 252, 253, 258, 229, 252, 223, 258, 230, 229, 223, 258, 259, 252, 229, 258, 260, 230, 231, 261, 230, 260, 229, 258, 260, 230, 229, 232, 260, 259, 229, 258, 230, 260, 231, 232, 230, 261, 260, 258, 68, 72, 78, 229, 68, 229, 77, 224, 77, 229, 252, 224, 252, 259, 229, 77, 78, 77, 68, 229, 259, 77, 78, 229, 229, 79, 72, 78, 79, 229, 72, 232, 79, 259, 78, 229, 229, 260, 232, 79, 73, 232, 79, 72, 259, 79, 260, 229, 262, 263, 256, 259, 256, 252, 258, 253, 259, 263, 256, 258, 259, 252, 256, 257, 252, 259, 256, 258, 256, 262, 259, 257, 263, 259, 260, 258, 263, 261, 258, 260, 261, 263, 264, 260, 260, 263, 264, 265, 263, 262, 265, 259, 259, 263, 260, 265, 259, 252, 257, 77, 259, 260, 79, 265, 260, 237, 231, 232, 231, 260, 261, 266, 237, 260, 231, 266, 238, 237, 231, 266, 267, 260, 237, 266, 268, 238, 239, 269, 238, 268, 237, 266, 268, 238, 237, 240, 268, 267, 237, 266, 238, 268, 239, 240, 238, 269, 268, 266, 73, 237, 79, 232, 79, 237, 260, 232, 260, 267, 237, 79, 270, 271, 264, 267, 264, 260, 266, 261, 267, 271, 264, 266, 267, 260, 264, 265, 260, 267, 264, 266, 264, 270, 267, 265, 271, 267, 268, 266, 271, 269, 266, 268, 269, 271, 272, 268, 267, 260, 265, 79, 239, 268, 269, 273, 272, 268, 273, 269, 275, 276, 277, 274, 255, 254, 249, 278, 280, 255, 256, 281, 255, 280, 254, 278, 280, 255, 254, 257, 280, 279, 254, 278, 255, 280, 256, 257, 255, 281, 280, 278, 282, 283, 277, 279, 277, 274, 278, 275, 279, 283, 277, 278, 274, 279, 277, 278, 283, 279, 280, 278, 283, 281, 278, 280, 281, 283, 284, 280, 280, 283, 284, 285, 283, 282, 285, 279, 279, 283, 280, 285, 279, 280, 80, 285, 280, 262, 256, 257, 256, 280, 281, 286, 262, 280, 256, 286, 263, 262, 256, 286, 287, 280, 262, 286, 288, 263, 264, 289, 263, 288, 262, 286, 288, 263, 262, 265, 288, 287, 262, 286, 263, 288, 264, 265, 263, 289, 288, 286, 280, 287, 262, 80, 287, 81, 288, 262, 290, 291, 284, 287, 284, 280, 286, 281, 287, 291, 284, 286, 287, 280, 284, 285, 280, 287, 284, 286, 284, 290, 287, 285, 291, 287, 288, 286, 291, 289, 286, 288, 289, 291, 292, 288, 288, 291, 292, 293, 291, 290, 293, 287, 287, 291, 288, 293, 287, 280, 285, 80, 287, 288, 81, 293, 288, 270, 264, 265, 264, 288, 289, 294, 270, 288, 264, 294, 271, 270, 264, 294, 295, 288, 270, 294, 298, 299, 292, 295, 292, 288, 294, 289, 295, 299, 292, 294, 295, 288, 292, 293, 288, 295, 292, 294, 292, 298, 295, 293, 299, 295, 296, 294, 299, 297, 294, 296, 297, 299, 300, 296, 295, 288, 293, 81, 301, 276, 277, 302, 277, 301, 302, 305, 282, 301, 277, 305, 283, 282, 277, 305, 306, 301, 282, 305, 307, 283, 284, 308, 283, 307, 282, 305, 307, 283, 282, 285, 307, 306, 282, 305, 283, 307, 284, 285, 283, 308, 307, 305, 282, 307, 285, 82, 306, 82, 307, 282, 309, 310, 304, 306, 304, 301, 305, 302, 306, 310, 304, 305, 301, 306, 304, 305, 310, 306, 307, 305, 310, 308, 305, 307, 308, 310, 311, 307, 307, 310, 311, 312, 310, 309, 312, 306, 306, 310, 307, 312, 306, 307, 82, 312, 307, 290, 284, 285, 284, 307, 308, 313, 290, 307, 284, 313, 291, 290, 284, 313, 314, 307, 290, 313, 315, 291, 292, 316, 291, 315, 290, 313, 315, 291, 290, 293, 315, 314, 290, 313, 291, 315, 292, 293, 291, 316, 315, 313, 82, 290, 307, 285, 307, 314, 290, 82, 290, 315, 293, 83, 314, 83, 315, 290, 317, 318, 311, 314, 311, 307, 313, 308, 314, 318, 311, 313, 314, 307, 311, 312, 307, 314, 311, 313, 311, 317, 314, 312, 318, 314, 315, 313, 318, 316, 313, 315, 316, 318, 319, 315, 315, 318, 319, 320, 318, 317, 320, 314, 314, 318, 315, 320, 314, 307, 312, 82, 314, 315, 83, 320, 315, 298, 292, 293, 292, 315, 316, 321, 298, 315, 292, 321, 299, 298, 292, 321, 322, 315, 298, 321, 323, 299, 300, 324, 299, 323, 298, 321, 323, 322, 298, 321, 299, 324, 323, 321, 83, 298, 315, 293, 315, 322, 298, 83, 325, 326, 319, 322, 319, 315, 321, 316, 322, 326, 319, 321, 322, 315, 319, 320, 315, 322, 319, 321, 319, 325, 322, 320, 326, 322, 323, 321, 326, 324, 321, 323, 324, 326, 327, 323, 322, 315, 320, 83, 310, 309, 304, 329, 330, 310, 311, 331, 310, 330, 309, 329, 330, 310, 309, 312, 310, 330, 311, 312, 310, 331, 330, 329, 332, 331, 329, 330, 331, 332, 333, 330, 330, 317, 311, 312, 311, 330, 331, 334, 317, 330, 311, 334, 318, 317, 311, 334, 335, 330, 317, 334, 336, 318, 319, 337, 318, 336, 317, 334, 336, 318, 317, 320, 336, 335, 317, 334, 318, 336, 319, 320, 318, 337, 336, 334, 333, 330, 334, 331, 335, 338, 333, 334, 330, 335, 333, 334, 338, 335, 336, 334, 338, 337, 334, 336, 337, 338, 339, 336, 336, 325, 319, 320, 319, 336, 337, 340, 325, 336, 319, 340, 326, 325, 319, 340, 339, 336, 340, 337, 349, 350, 346, 348, 346, 349, 348, 347, 350, 349, 352, 348, 84, 349, 347, 348, 84, 86, 349, 348, 86, 349, 348, 352, 354, 355, 351, 353, 351, 354, 353, 352, 355, 354, 357, 353, 87, 354, 352, 353, 87, 90, 354, 353, 90, 354, 353, 357, 359, 360, 356, 358, 356, 359, 358, 357, 360, 359, 362, 358, 91, 359, 357, 358, 91, 94, 359, 358, 94, 359, 358, 362, 370, 345, 346, 371, 345, 370, 344, 368, 370, 345, 344, 347, 370, 369, 344, 368, 345, 370, 346, 347, 345, 371, 370, 368, 98, 369, 96, 344, 344, 370, 347, 98, 369, 98, 370, 344, 372, 373, 366, 369, 366, 364, 368, 365, 369, 373, 366, 368, 369, 364, 366, 367, 364, 369, 366, 368, 366, 372, 369, 367, 373, 369, 370, 368, 373, 371, 368, 370, 371, 373, 374, 370, 370, 373, 374, 375, 373, 372, 375, 369, 369, 373, 370, 375, 95, 372, 367, 369, 95, 100, 372, 369, 100, 95, 96, 369, 100, 372, 369, 375, 369, 98, 96, 100, 100, 369, 98, 375, 369, 370, 98, 375, 375, 101, 98, 100, 370, 349, 346, 347, 346, 370, 371, 376, 349, 370, 346, 376, 350, 349, 346, 376, 377, 370, 349, 376, 378, 350, 351, 379, 350, 378, 349, 376, 378, 350, 349, 352, 378, 377, 349, 376, 350, 378, 351, 352, 350, 379, 378, 376, 84, 86, 103, 349, 84, 349, 98, 347, 98, 349, 370, 347, 370, 377, 349, 98, 103, 98, 84, 349, 377, 98, 103, 349, 349, 106, 86, 103, 106, 349, 86, 352, 106, 377, 103, 349, 349, 378, 352, 106, 87, 352, 106, 86, 377, 106, 378, 349, 380, 381, 374, 377, 374, 370, 376, 371, 377, 381, 374, 376, 377, 370, 374, 375, 370, 377, 374, 376, 374, 380, 377, 375, 381, 377, 378, 376, 381, 379, 376, 378, 379, 381, 382, 378, 378, 381, 382, 383, 381, 380, 383, 377, 377, 381, 378, 383, 377, 370, 375, 98, 101, 380, 375, 377, 98, 101, 377, 103, 101, 98, 377, 375, 101, 108, 380, 377, 108, 101, 103, 377, 108, 380, 377, 383, 377, 106, 103, 108, 108, 377, 106, 383, 377, 378, 106, 383, 383, 109, 106, 108, 378, 354, 351, 352, 351, 378, 379, 384, 354, 378, 351, 384, 355, 354, 351, 384, 385, 378, 354, 384, 386, 355, 356, 387, 355, 386, 354, 384, 386, 355, 354, 357, 386, 385, 354, 384, 355, 386, 356, 357, 355, 387, 386, 384, 87, 90, 111, 354, 87, 354, 106, 352, 106, 354, 378, 352, 378, 385, 354, 106, 111, 106, 87, 354, 385, 106, 111, 354, 354, 114, 90, 111, 114, 354, 90, 357, 114, 385, 111, 354, 354, 386, 357, 114, 91, 357, 114, 90, 385, 114, 386, 354, 388, 389, 382, 385, 382, 378, 384, 379, 385, 389, 382, 384, 385, 378, 382, 383, 378, 385, 382, 384, 382, 388, 385, 383, 389, 385, 386, 384, 389, 387, 384, 386, 387, 389, 390, 386, 386, 389, 390, 391, 389, 388, 391, 385, 385, 389, 386, 391, 385, 378, 383, 106, 109, 388, 383, 385, 106, 109, 385, 111, 109, 106, 385, 383, 109, 116, 388, 385, 116, 109, 111, 385, 116, 388, 385, 391, 385, 114, 111, 116, 116, 385, 114, 391, 385, 386, 114, 391, 391, 117, 114, 116, 386, 359, 356, 357, 356, 386, 387, 392, 359, 386, 356, 392, 360, 359, 356, 392, 393, 386, 359, 392, 394, 360, 361, 395, 360, 394, 359, 392, 394, 360, 359, 362, 394, 393, 359, 392, 360, 394, 361, 362, 360, 395, 394, 392, 91, 94, 119, 359, 91, 359, 114, 357, 114, 359, 386, 357, 386, 393, 359, 114, 119, 114, 91, 359, 393, 114, 119, 359, 359, 122, 94, 119, 122, 359, 94, 362, 122, 393, 119, 359, 359, 394, 362, 122, 393, 122, 394, 359, 396, 397, 390, 393, 390, 386, 392, 387, 393, 397, 390, 392, 393, 386, 390, 391, 386, 393, 390, 392, 390, 396, 393, 391, 397, 393, 394, 392, 397, 395, 392, 394, 395, 397, 398, 394, 394, 397, 398, 399, 397, 396, 399, 393, 393, 397, 394, 399, 393, 386, 391, 114, 117, 396, 391, 393, 114, 117, 393, 119, 117, 114, 393, 391, 117, 124, 396, 393, 124, 117, 119, 393, 124, 396, 393, 399, 393, 122, 119, 124, 124, 393, 122, 399, 393, 394, 122, 399, 399, 125, 122, 124, 394, 363, 361, 362, 361, 394, 395, 400, 363, 394, 361, 400, 401, 394, 363, 400, 122, 363, 394, 362, 394, 401, 363, 122, 401, 122, 127, 363, 404, 405, 398, 401, 398, 394, 400, 395, 401, 405, 398, 400, 401, 394, 398, 399, 394, 401, 398, 400, 398, 404, 401, 399, 405, 401, 402, 400, 405, 403, 400, 402, 405, 404, 406, 401, 401, 405, 402, 406, 401, 394, 399, 122, 125, 404, 399, 401, 122, 125, 401, 127, 125, 122, 401, 399, 125, 129, 404, 401, 129, 125, 127, 401, 129, 404, 401, 406, 407, 372, 366, 367, 366, 407, 408, 411, 372, 407, 366, 411, 373, 372, 366, 411, 412, 407, 372, 411, 413, 373, 374, 414, 373, 413, 372, 411, 413, 373, 372, 375, 413, 412, 372, 411, 373, 413, 374, 375, 373, 414, 413, 411, 95, 100, 132, 372, 95, 372, 130, 367, 130, 372, 407, 367, 407, 412, 372, 130, 132, 130, 95, 372, 412, 130, 132, 372, 372, 135, 100, 132, 135, 372, 100, 375, 135, 412, 132, 372, 372, 413, 375, 135, 101, 375, 135, 100, 412, 135, 413, 372, 415, 416, 409, 412, 409, 407, 411, 408, 412, 416, 409, 411, 412, 407, 409, 410, 407, 412, 409, 411, 409, 415, 412, 410, 416, 412, 413, 411, 416, 414, 411, 413, 414, 416, 417, 413, 413, 416, 417, 418, 416, 415, 418, 412, 412, 416, 413, 418, 412, 407, 410, 130, 131, 415, 410, 412, 130, 131, 412, 132, 131, 130, 412, 410, 131, 137, 415, 412, 137, 131, 132, 412, 137, 415, 412, 418, 412, 135, 132, 137, 137, 412, 135, 418, 412, 413, 135, 418, 418, 138, 135, 137, 413, 380, 374, 375, 374, 413, 414, 419, 380, 413, 374, 419, 381, 380, 374, 419, 420, 413, 380, 419, 421, 381, 382, 422, 381, 421, 380, 419, 421, 381, 380, 383, 421, 420, 380, 419, 381, 421, 382, 383, 381, 422, 421, 419, 101, 108, 140, 380, 101, 380, 135, 375, 135, 380, 413, 375, 413, 420, 380, 135, 140, 135, 101, 380, 420, 135, 140, 380, 380, 143, 108, 140, 143, 380, 108, 383, 143, 420, 140, 380, 380, 421, 383, 143, 109, 383, 143, 108, 420, 143, 421, 380, 423, 424, 417, 420, 417, 413, 419, 414, 420, 424, 417, 419, 420, 413, 417, 418, 413, 420, 417, 419, 417, 423, 420, 418, 424, 420, 421, 419, 424, 422, 419, 421, 422, 424, 425, 421, 421, 424, 425, 426, 424, 423, 426, 420, 420, 424, 421, 426, 420, 413, 418, 135, 138, 423, 418, 420, 135, 138, 420, 140, 138, 135, 420, 418, 138, 145, 423, 420, 145, 138, 140, 420, 145, 423, 420, 426, 420, 143, 140, 145, 145, 420, 143, 426, 420, 421, 143, 426, 426, 146, 143, 145, 421, 388, 382, 383, 382, 421, 422, 427, 388, 421, 382, 427, 389, 388, 382, 427, 428, 421, 388, 427, 429, 389, 390, 430, 389, 429, 388, 427, 429, 389, 388, 391, 429, 428, 388, 427, 389, 429, 390, 391, 389, 430, 429, 427, 109, 116, 148, 388, 109, 388, 143, 383, 143, 388, 421, 383, 421, 428, 388, 143, 148, 143, 109, 388, 428, 143, 148, 388, 388, 151, 116, 148, 151, 388, 116, 391, 151, 428, 148, 388, 388, 429, 391, 151, 117, 391, 151, 116, 428, 151, 429, 388, 431, 432, 425, 428, 425, 421, 427, 422, 428, 432, 425, 427, 428, 421, 425, 426, 421, 428, 425, 427, 425, 431, 428, 426, 432, 428, 429, 427, 432, 430, 427, 429, 430, 432, 433, 429, 429, 432, 433, 434, 432, 431, 434, 428, 428, 432, 429, 434, 428, 421, 426, 143, 146, 431, 426, 428, 143, 146, 428, 148, 146, 143, 428, 426, 146, 153, 431, 428, 153, 146, 148, 428, 153, 431, 428, 434, 428, 151, 148, 153, 153, 428, 151, 434, 428, 429, 151, 434, 434, 154, 151, 153, 429, 396, 390, 391, 390, 429, 430, 435, 396, 429, 390, 435, 397, 396, 390, 435, 436, 429, 396, 435, 437, 397, 398, 438, 397, 437, 396, 435, 437, 397, 396, 399, 437, 436, 396, 435, 397, 437, 398, 399, 397, 438, 437, 435, 117, 124, 156, 396, 117, 396, 151, 391, 151, 396, 429, 391, 429, 436, 396, 151, 156, 151, 117, 396, 436, 151, 156, 396, 396, 159, 124, 156, 159, 396, 124, 399, 159, 436, 156, 396, 396, 437, 399, 159, 125, 399, 159, 124, 436, 159, 437, 396, 439, 440, 433, 436, 433, 429, 435, 430, 436, 440, 433, 435, 436, 429, 433, 434, 429, 436, 433, 435, 433, 439, 436, 434, 440, 436, 437, 435, 440, 438, 435, 437, 438, 440, 441, 437, 437, 440, 441, 442, 440, 439, 442, 436, 436, 440, 437, 442, 436, 429, 434, 151, 154, 439, 434, 436, 151, 154, 436, 156, 154, 151, 436, 434, 154, 161, 439, 436, 161, 154, 156, 436, 161, 439, 436, 442, 436, 159, 156, 161, 161, 436, 159, 442, 436, 437, 159, 442, 442, 162, 159, 161, 437, 404, 398, 399, 398, 437, 438, 443, 404, 437, 398, 443, 405, 404, 398, 443, 444, 437, 404, 443, 405, 445, 404, 443, 445, 405, 404, 406, 445, 444, 404, 443, 405, 446, 445, 443, 125, 129, 164, 404, 125, 404, 159, 399, 159, 404, 437, 399, 437, 444, 404, 159, 164, 159, 125, 404, 444, 159, 164, 404, 404, 166, 129, 164, 166, 404, 129, 406, 166, 444, 164, 404, 404, 445, 406, 166, 444, 166, 445, 404, 447, 448, 441, 444, 441, 437, 443, 438, 444, 448, 441, 443, 444, 437, 441, 442, 437, 444, 441, 443, 441, 447, 444, 442, 448, 444, 445, 443, 448, 446, 443, 445, 448, 447, 449, 444, 444, 448, 445, 449, 444, 437, 442, 159, 162, 447, 442, 444, 159, 162, 444, 164, 162, 159, 444, 442, 162, 168, 447, 444, 168, 162, 164, 444, 168, 447, 444, 449, 444, 166, 164, 168, 168, 444, 166, 449, 444, 445, 166, 449, 450, 415, 409, 410, 415, 450, 409, 453, 416, 415, 409, 453, 454, 450, 415, 453, 455, 416, 417, 456, 416, 455, 415, 453, 455, 416, 415, 418, 455, 454, 415, 453, 416, 455, 417, 418, 416, 456, 455, 453, 131, 137, 171, 415, 131, 415, 169, 410, 169, 415, 450, 410, 450, 454, 415, 169, 171, 169, 131, 415, 454, 169, 171, 415, 415, 174, 137, 171, 174, 415, 137, 418, 174, 454, 171, 415, 415, 455, 418, 174, 138, 418, 174, 137, 454, 174, 455, 415, 457, 458, 451, 454, 454, 458, 451, 453, 454, 450, 451, 452, 450, 454, 451, 453, 451, 457, 454, 452, 458, 454, 455, 453, 458, 456, 453, 455, 456, 458, 459, 455, 455, 458, 459, 460, 458, 457, 460, 454, 454, 458, 455, 460, 454, 450, 452, 169, 170, 457, 452, 454, 169, 170, 454, 171, 170, 169, 454, 452, 170, 176, 457, 454, 176, 170, 171, 454, 176, 457, 454, 460, 454, 174, 171, 176, 176, 454, 174, 460, 454, 455, 174, 460, 460, 177, 174, 176, 455, 423, 417, 418, 417, 455, 456, 461, 423, 455, 417, 461, 424, 423, 417, 461, 462, 455, 423, 461, 463, 424, 425, 464, 424, 463, 423, 461, 463, 424, 423, 426, 463, 462, 423, 461, 424, 463, 425, 426, 424, 464, 463, 461, 138, 145, 179, 423, 138, 423, 174, 418, 174, 423, 455, 418, 455, 462, 423, 174, 179, 174, 138, 423, 462, 174, 179, 423, 423, 182, 145, 179, 182, 423, 145, 426, 182, 462, 179, 423, 423, 463, 426, 182, 146, 426, 182, 145, 462, 182, 463, 423, 465, 466, 459, 462, 459, 455, 461, 456, 462, 466, 459, 461, 462, 455, 459, 460, 455, 462, 459, 461, 459, 465, 462, 460, 466, 462, 463, 461, 466, 464, 461, 463, 464, 466, 467, 463, 463, 466, 467, 468, 466, 465, 468, 462, 462, 466, 463, 468, 462, 455, 460, 174, 177, 465, 460, 462, 174, 177, 462, 179, 177, 174, 462, 460, 177, 184, 465, 462, 184, 177, 179, 462, 184, 465, 462, 468, 462, 182, 179, 184, 184, 462, 182, 468, 462, 463, 182, 468, 468, 185, 182, 184, 463, 431, 425, 426, 425, 463, 464, 469, 431, 463, 425, 469, 432, 431, 425, 469, 470, 463, 431, 469, 471, 432, 433, 472, 432, 471, 431, 469, 471, 432, 431, 434, 471, 470, 431, 469, 432, 471, 433, 434, 432, 472, 471, 469, 146, 153, 187, 431, 146, 431, 182, 426, 182, 431, 463, 426, 463, 470, 431, 182, 187, 182, 146, 431, 470, 182, 187, 431, 431, 190, 153, 187, 190, 431, 153, 434, 190, 470, 187, 431, 431, 471, 434, 190, 154, 434, 190, 153, 470, 190, 471, 431, 473, 474, 467, 470, 467, 463, 469, 464, 470, 474, 467, 469, 470, 463, 467, 468, 463, 470, 467, 469, 467, 473, 470, 468, 474, 470, 471, 469, 474, 472, 469, 471, 472, 474, 475, 471, 471, 474, 475, 476, 474, 473, 476, 470, 470, 474, 471, 476, 470, 463, 468, 182, 185, 473, 468, 470, 182, 185, 470, 187, 185, 182, 470, 468, 185, 192, 473, 470, 192, 185, 187, 470, 192, 473, 470, 476, 470, 190, 187, 192, 192, 470, 190, 476, 470, 471, 190, 476, 476, 193, 190, 192, 471, 439, 433, 434, 433, 471, 472, 477, 439, 471, 433, 477, 440, 439, 433, 477, 478, 471, 439, 477, 479, 440, 441, 480, 440, 479, 439, 477, 479, 440, 439, 442, 479, 478, 439, 477, 440, 479, 441, 442, 440, 480, 479, 477, 154, 161, 195, 439, 154, 439, 190, 434, 190, 439, 471, 434, 471, 478, 439, 190, 195, 190, 154, 439, 478, 190, 195, 439, 439, 198, 161, 195, 198, 439, 161, 442, 198, 478, 195, 439, 439, 479, 442, 198, 162, 442, 198, 161, 478, 198, 479, 439, 481, 482, 475, 478, 475, 471, 477, 472, 478, 482, 475, 477, 478, 471, 475, 476, 471, 478, 475, 477, 475, 481, 478, 476, 482, 478, 479, 477, 482, 480, 477, 479, 480, 482, 483, 479, 479, 482, 483, 484, 482, 481, 484, 478, 478, 482, 479, 484, 478, 471, 476, 190, 193, 481, 476, 478, 190, 193, 478, 195, 193, 190, 478, 476, 193, 200, 481, 478, 200, 193, 195, 478, 200, 481, 478, 484, 478, 198, 195, 200, 200, 478, 198, 484, 478, 479, 198, 484, 484, 201, 198, 200, 479, 447, 441, 442, 441, 479, 480, 485, 447, 479, 441, 485, 448, 447, 441, 485, 486, 479, 447, 485, 448, 487, 447, 485, 487, 448, 447, 449, 487, 486, 447, 485, 162, 168, 203, 447, 162, 447, 198, 442, 198, 447, 479, 442, 479, 486, 447, 198, 203, 198, 162, 447, 486, 198, 203, 447, 447, 205, 168, 203, 205, 447, 168, 449, 205, 486, 203, 447, 447, 487, 449, 205, 486, 205, 487, 447, 489, 490, 483, 486, 483, 479, 485, 480, 486, 490, 483, 485, 486, 479, 483, 484, 479, 486, 483, 485, 483, 489, 486, 484, 490, 486, 487, 485, 490, 489, 491, 486, 486, 490, 487, 491, 486, 479, 484, 198, 201, 489, 484, 486, 198, 201, 486, 203, 201, 198, 486, 484, 201, 207, 489, 486, 207, 201, 203, 486, 207, 489, 486, 491, 486, 205, 203, 207, 207, 486, 205, 491, 486, 487, 205, 491, 493, 494, 495, 492, 492, 494, 495, 496, 492, 457, 451, 452, 451, 492, 493, 497, 457, 492, 451, 497, 458, 457, 451, 497, 498, 492, 457, 497, 499, 458, 459, 500, 458, 499, 457, 497, 499, 458, 457, 460, 499, 498, 457, 497, 458, 499, 459, 460, 458, 500, 499, 497, 170, 176, 210, 457, 170, 457, 208, 452, 208, 457, 492, 452, 492, 498, 457, 208, 210, 208, 170, 457, 498, 208, 210, 457, 457, 213, 176, 210, 213, 457, 176, 460, 213, 498, 210, 457, 457, 499, 460, 213, 177, 460, 213, 176, 498, 213, 499, 457, 501, 502, 495, 498, 495, 492, 497, 493, 498, 502, 495, 497, 498, 492, 495, 496, 492, 498, 495, 497, 495, 501, 498, 496, 502, 498, 499, 497, 502, 500, 497, 499, 500, 502, 503, 499, 499, 502, 503, 504, 502, 501, 504, 498, 498, 502, 499, 504, 498, 492, 496, 208, 209, 501, 496, 498, 208, 209, 498, 210, 209, 208, 498, 496, 209, 214, 501, 498, 214, 209, 210, 498, 214, 501, 498, 504, 498, 213, 210, 214, 214, 498, 213, 504, 498, 499, 213, 504, 504, 215, 213, 214, 499, 465, 459, 460, 459, 499, 500, 505, 465, 499, 459, 505, 466, 465, 459, 505, 506, 499, 465, 505, 507, 466, 467, 508, 466, 507, 465, 505, 507, 466, 465, 468, 507, 506, 465, 505, 466, 507, 467, 468, 466, 508, 507, 505, 177, 184, 217, 465, 177, 465, 213, 460, 213, 465, 499, 460, 499, 506, 465, 213, 217, 213, 177, 465, 506, 213, 217, 465, 465, 220, 184, 217, 220, 465, 184, 468, 220, 506, 217, 465, 465, 507, 468, 220, 185, 468, 220, 184, 506, 220, 507, 465, 509, 510, 503, 506, 503, 499, 505, 500, 506, 510, 503, 505, 506, 499, 503, 504, 499, 506, 503, 505, 503, 509, 506, 504, 510, 506, 507, 505, 510, 508, 505, 507, 508, 510, 511, 507, 507, 510, 511, 512, 510, 509, 512, 506, 506, 510, 507, 512, 506, 499, 504, 213, 215, 509, 504, 506, 213, 215, 506, 217, 215, 213, 506, 504, 215, 222, 509, 506, 222, 215, 217, 506, 222, 509, 506, 512, 506, 220, 217, 222, 222, 506, 220, 512, 506, 507, 220, 512, 512, 223, 220, 222, 507, 473, 467, 468, 467, 507, 508, 513, 473, 507, 467, 513, 474, 473, 467, 513, 514, 507, 473, 513, 515, 474, 475, 516, 474, 515, 473, 513, 515, 474, 473, 476, 515, 514, 473, 513, 474, 515, 475, 476, 474, 516, 515, 513, 185, 192, 225, 473, 185, 473, 220, 468, 220, 473, 507, 468, 507, 514, 473, 220, 225, 220, 185, 473, 514, 220, 225, 473, 473, 228, 192, 225, 228, 473, 192, 476, 228, 514, 225, 473, 473, 515, 476, 228, 193, 476, 228, 192, 514, 228, 515, 473, 517, 518, 511, 514, 511, 507, 513, 508, 514, 518, 511, 513, 514, 507, 511, 512, 507, 514, 511, 513, 511, 517, 514, 512, 518, 514, 515, 513, 518, 516, 513, 515, 516, 518, 519, 515, 515, 518, 519, 520, 518, 517, 520, 514, 514, 518, 515, 520, 514, 507, 512, 220, 223, 517, 512, 514, 220, 223, 514, 225, 223, 220, 514, 512, 223, 230, 517, 514, 230, 223, 225, 514, 230, 517, 514, 520, 514, 228, 225, 230, 230, 514, 228, 520, 514, 515, 228, 520, 520, 231, 228, 230, 515, 481, 475, 476, 475, 515, 516, 521, 481, 515, 475, 521, 482, 481, 475, 521, 522, 515, 481, 521, 523, 482, 483, 524, 482, 523, 481, 521, 523, 482, 481, 484, 523, 522, 481, 521, 482, 523, 483, 484, 482, 524, 523, 521, 193, 200, 233, 481, 193, 481, 228, 476, 228, 481, 515, 476, 515, 522, 481, 228, 233, 228, 193, 481, 522, 228, 233, 481, 481, 236, 200, 233, 236, 481, 200, 484, 236, 522, 233, 481, 481, 523, 484, 236, 201, 484, 236, 200, 522, 236, 523, 481, 525, 526, 519, 522, 519, 515, 521, 516, 522, 526, 519, 521, 522, 515, 519, 520, 515, 522, 519, 521, 519, 525, 522, 520, 526, 522, 523, 521, 526, 524, 521, 523, 524, 526, 527, 523, 523, 526, 527, 528, 526, 525, 528, 522, 522, 526, 523, 528, 522, 515, 520, 228, 231, 525, 520, 522, 228, 231, 522, 233, 231, 228, 522, 520, 231, 238, 525, 522, 238, 231, 233, 522, 238, 525, 522, 528, 522, 236, 233, 238, 238, 522, 236, 528, 522, 523, 236, 528, 528, 239, 236, 238, 523, 489, 483, 484, 483, 523, 524, 529, 489, 523, 483, 529, 490, 489, 483, 529, 530, 523, 489, 529, 490, 531, 489, 529, 531, 490, 489, 491, 531, 530, 489, 529, 490, 532, 531, 529, 201, 207, 241, 489, 201, 489, 236, 484, 236, 489, 523, 484, 523, 530, 489, 236, 241, 236, 201, 489, 530, 236, 241, 489, 489, 243, 207, 241, 243, 489, 207, 491, 243, 530, 241, 489, 489, 531, 491, 243, 530, 243, 531, 489, 533, 534, 527, 530, 527, 523, 529, 524, 530, 534, 527, 529, 530, 523, 527, 528, 523, 530, 527, 529, 527, 533, 530, 528, 534, 530, 531, 529, 534, 532, 529, 531, 532, 534, 535, 531, 531, 534, 535, 536, 534, 533, 536, 530, 530, 534, 531, 536, 530, 523, 528, 236, 239, 533, 528, 530, 236, 239, 530, 241, 239, 236, 530, 528, 239, 244, 533, 530, 244, 239, 241, 530, 244, 533, 530, 536, 530, 243, 241, 244, 244, 530, 243, 536, 530, 531, 243, 536, 537, 494, 495, 538, 494, 537, 495, 496, 537, 501, 495, 496, 495, 537, 538, 540, 501, 537, 495, 540, 502, 501, 495, 540, 541, 537, 501, 540, 542, 502, 503, 543, 502, 542, 501, 540, 542, 502, 501, 504, 542, 541, 501, 540, 502, 542, 503, 504, 502, 543, 542, 540, 209, 214, 245, 501, 501, 247, 214, 245, 247, 501, 214, 504, 247, 541, 245, 501, 501, 542, 504, 247, 215, 504, 247, 214, 541, 247, 542, 501, 539, 537, 540, 538, 541, 544, 539, 540, 537, 541, 539, 540, 544, 541, 542, 540, 544, 543, 540, 542, 543, 544, 545, 542, 542, 544, 545, 546, 541, 544, 542, 546, 541, 247, 245, 248, 248, 541, 247, 546, 541, 542, 247, 546, 546, 249, 247, 248, 542, 509, 503, 504, 503, 542, 543, 547, 509, 542, 503, 547, 510, 509, 503, 547, 548, 542, 509, 547, 549, 510, 511, 550, 510, 549, 509, 547, 549, 510, 509, 512, 549, 548, 509, 547, 510, 549, 511, 512, 510, 550, 549, 547, 215, 222, 250, 509, 215, 509, 247, 504, 247, 509, 542, 504, 542, 548, 509, 247, 250, 247, 215, 509, 548, 247, 250, 509, 509, 253, 222, 250, 253, 509, 222, 512, 253, 548, 250, 509, 509, 549, 512, 253, 223, 512, 253, 222, 548, 253, 549, 509, 551, 552, 545, 548, 545, 542, 547, 543, 548, 552, 545, 547, 548, 542, 545, 546, 542, 548, 545, 547, 545, 551, 548, 546, 552, 548, 549, 547, 552, 550, 547, 549, 550, 552, 553, 549, 549, 552, 553, 554, 552, 551, 554, 548, 548, 552, 549, 554, 548, 542, 546, 247, 249, 551, 546, 548, 247, 249, 548, 250, 249, 247, 548, 546, 249, 255, 551, 548, 255, 249, 250, 548, 255, 551, 548, 554, 548, 253, 250, 255, 255, 548, 253, 554, 548, 549, 253, 554, 554, 256, 253, 255, 549, 517, 511, 512, 511, 549, 550, 555, 517, 549, 511, 555, 518, 517, 511, 555, 556, 549, 517, 555, 557, 518, 519, 558, 518, 557, 517, 555, 557, 518, 517, 520, 557, 556, 517, 555, 518, 557, 519, 520, 518, 558, 557, 555, 223, 230, 258, 517, 223, 517, 253, 512, 253, 517, 549, 512, 549, 556, 517, 253, 258, 253, 223, 517, 556, 253, 258, 517, 517, 261, 230, 258, 261, 517, 230, 520, 261, 556, 258, 517, 517, 557, 520, 261, 231, 520, 261, 230, 556, 261, 557, 517, 559, 560, 553, 556, 553, 549, 555, 550, 556, 560, 553, 555, 556, 549, 553, 554, 549, 556, 553, 555, 553, 559, 556, 554, 560, 556, 557, 555, 560, 558, 555, 557, 558, 560, 561, 557, 557, 560, 561, 562, 560, 559, 562, 556, 556, 560, 557, 562, 556, 549, 554, 253, 256, 559, 554, 556, 253, 256, 556, 258, 256, 253, 556, 554, 256, 263, 559, 556, 263, 256, 258, 556, 263, 559, 556, 562, 556, 261, 258, 263, 263, 556, 261, 562, 556, 557, 261, 562, 562, 264, 261, 263, 557, 525, 519, 520, 519, 557, 558, 563, 525, 557, 519, 563, 526, 525, 519, 563, 564, 557, 525, 563, 565, 526, 527, 566, 526, 565, 525, 563, 565, 526, 525, 528, 565, 564, 525, 563, 526, 565, 527, 528, 526, 566, 565, 563, 231, 238, 266, 525, 231, 525, 261, 520, 261, 525, 557, 520, 557, 564, 525, 261, 266, 261, 231, 525, 564, 261, 266, 525, 525, 269, 238, 266, 269, 525, 238, 528, 269, 564, 266, 525, 525, 565, 528, 269, 239, 528, 269, 238, 564, 269, 565, 525, 567, 568, 561, 564, 561, 557, 563, 558, 564, 568, 561, 563, 564, 557, 561, 562, 557, 564, 561, 563, 561, 567, 564, 562, 568, 564, 565, 563, 568, 566, 563, 565, 566, 568, 569, 565, 565, 568, 569, 570, 568, 567, 570, 564, 564, 568, 565, 570, 564, 557, 562, 261, 264, 567, 562, 564, 261, 264, 564, 266, 264, 261, 564, 562, 264, 271, 567, 564, 271, 264, 266, 564, 271, 567, 564, 570, 564, 269, 266, 271, 271, 564, 269, 570, 564, 565, 269, 570, 570, 272, 269, 271, 565, 533, 527, 528, 527, 565, 566, 571, 533, 565, 527, 571, 534, 533, 527, 571, 572, 565, 533, 571, 573, 534, 535, 574, 534, 573, 533, 571, 573, 534, 533, 536, 573, 572, 533, 571, 534, 573, 535, 536, 534, 574, 573, 571, 239, 244, 273, 533, 239, 533, 269, 528, 269, 533, 565, 528, 565, 572, 533, 269, 273, 269, 239, 533, 572, 269, 273, 533, 569, 565, 571, 566, 572, 575, 569, 571, 572, 565, 569, 570, 565, 572, 569, 571, 575, 572, 573, 571, 575, 574, 571, 573, 572, 565, 570, 269, 269, 272, 572, 273, 272, 269, 572, 570, 579, 544, 545, 580, 544, 579, 545, 546, 544, 580, 579, 577, 581, 582, 576, 578, 578, 582, 576, 577, 582, 578, 579, 577, 582, 580, 577, 579, 580, 582, 583, 579, 579, 582, 583, 584, 582, 581, 584, 578, 578, 582, 579, 584, 276, 581, 578, 584, 276, 578, 275, 584, 578, 579, 275, 584, 584, 277, 275, 276, 579, 551, 545, 546, 545, 579, 580, 585, 551, 579, 545, 585, 552, 551, 545, 585, 586, 579, 551, 585, 587, 552, 553, 588, 552, 587, 551, 585, 587, 552, 551, 554, 587, 586, 551, 585, 552, 587, 553, 554, 552, 588, 587, 585, 249, 255, 278, 551, 249, 551, 275, 546, 275, 551, 579, 546, 579, 586, 551, 275, 278, 275, 249, 551, 586, 275, 278, 551, 551, 281, 255, 278, 281, 551, 255, 554, 281, 586, 278, 551, 551, 587, 554, 281, 256, 554, 281, 255, 586, 281, 587, 551, 589, 590, 583, 586, 583, 579, 585, 580, 586, 590, 583, 585, 586, 579, 583, 584, 579, 586, 583, 585, 583, 589, 586, 584, 590, 586, 587, 585, 590, 588, 585, 587, 588, 590, 591, 587, 587, 590, 591, 592, 590, 589, 592, 586, 586, 590, 587, 592, 586, 579, 584, 275, 277, 589, 584, 586, 275, 277, 586, 278, 277, 275, 586, 584, 277, 283, 589, 586, 283, 277, 278, 586, 283, 589, 586, 592, 586, 281, 278, 283, 283, 586, 281, 592, 586, 587, 281, 592, 592, 284, 281, 283, 587, 559, 553, 554, 553, 587, 588, 593, 559, 587, 553, 593, 560, 559, 553, 593, 594, 587, 559, 593, 595, 560, 561, 596, 560, 595, 559, 593, 595, 560, 559, 562, 595, 594, 559, 593, 560, 595, 561, 562, 560, 596, 595, 593, 256, 263, 286, 559, 256, 559, 281, 554, 281, 559, 587, 554, 587, 594, 559, 281, 286, 281, 256, 559, 594, 281, 286, 559, 559, 289, 263, 286, 289, 559, 263, 562, 289, 594, 286, 559, 559, 595, 562, 289, 264, 562, 289, 263, 594, 289, 595, 559, 597, 598, 591, 594, 591, 587, 593, 588, 594, 598, 591, 593, 594, 587, 591, 592, 587, 594, 591, 593, 591, 597, 594, 592, 598, 594, 595, 593, 598, 596, 593, 595, 596, 598, 599, 595, 595, 598, 599, 600, 598, 597, 600, 594, 594, 598, 595, 600, 594, 587, 592, 281, 284, 597, 592, 594, 281, 284, 594, 286, 284, 281, 594, 592, 284, 291, 597, 594, 291, 284, 286, 594, 291, 597, 594, 600, 594, 289, 286, 291, 291, 594, 289, 600, 594, 595, 289, 600, 600, 292, 289, 291, 595, 567, 561, 562, 561, 595, 596, 601, 567, 595, 561, 601, 568, 567, 561, 601, 602, 595, 567, 601, 603, 568, 569, 604, 568, 603, 567, 601, 603, 568, 567, 570, 603, 602, 567, 601, 568, 603, 569, 570, 568, 604, 603, 601, 264, 271, 294, 567, 264, 567, 289, 562, 289, 567, 595, 562, 595, 602, 567, 289, 294, 289, 264, 567, 602, 289, 294, 567, 567, 297, 271, 294, 297, 567, 271, 570, 297, 602, 294, 567, 567, 603, 570, 297, 602, 297, 603, 567, 605, 606, 599, 602, 599, 595, 601, 596, 602, 606, 599, 601, 602, 595, 599, 600, 595, 602, 599, 601, 599, 605, 602, 600, 606, 602, 603, 601, 606, 604, 601, 603, 604, 606, 607, 603, 603, 606, 607, 608, 606, 605, 608, 602, 602, 606, 603, 608, 602, 595, 600, 289, 292, 605, 600, 602, 289, 292, 602, 294, 292, 289, 602, 600, 292, 299, 605, 602, 299, 292, 294, 602, 299, 605, 602, 608, 602, 297, 294, 299, 299, 602, 297, 608, 602, 603, 297, 608, 608, 300, 297, 299, 569, 603, 604, 609, 611, 612, 607, 610, 607, 603, 609, 604, 610, 612, 607, 609, 610, 603, 607, 608, 603, 610, 607, 609, 607, 611, 610, 608, 610, 603, 608, 297, 300, 611, 608, 610, 300, 297, 610, 608, 582, 581, 576, 613, 615, 582, 583, 616, 582, 615, 581, 613, 615, 582, 581, 584, 615, 614, 581, 613, 582, 615, 583, 584, 582, 616, 615, 613, 302, 581, 276, 584, 581, 615, 584, 302, 277, 584, 302, 276, 614, 302, 615, 581, 618, 614, 615, 613, 618, 616, 613, 615, 616, 618, 619, 615, 615, 618, 619, 620, 618, 617, 620, 614, 614, 618, 615, 620, 303, 614, 302, 620, 614, 615, 302, 620, 620, 304, 302, 303, 615, 589, 583, 584, 583, 615, 616, 621, 589, 615, 583, 621, 590, 589, 583, 621, 622, 615, 589, 621, 623, 590, 591, 624, 590, 623, 589, 621, 623, 590, 589, 592, 623, 622, 589, 621, 590, 623, 591, 592, 590, 624, 623, 621, 277, 283, 305, 589, 277, 589, 302, 584, 302, 589, 615, 584, 615, 622, 589, 302, 305, 302, 277, 589, 622, 302, 305, 589, 589, 308, 283, 305, 308, 589, 283, 592, 308, 622, 305, 589, 589, 623, 592, 308, 284, 592, 308, 283, 622, 308, 623, 589, 625, 626, 619, 622, 619, 615, 621, 616, 622, 626, 619, 621, 622, 615, 619, 620, 615, 622, 619, 621, 619, 625, 622, 620, 626, 622, 623, 621, 626, 624, 621, 623, 624, 626, 627, 623, 623, 626, 627, 628, 626, 625, 628, 622, 622, 626, 623, 628, 622, 615, 620, 302, 304, 625, 620, 622, 302, 304, 622, 305, 304, 302, 622, 620, 304, 310, 625, 622, 310, 304, 305, 622, 310, 625, 622, 628, 622, 308, 305, 310, 310, 622, 308, 628, 622, 623, 308, 628, 628, 311, 308, 310, 623, 597, 591, 592, 591, 623, 624, 629, 597, 623, 591, 629, 598, 597, 591, 629, 630, 623, 597, 629, 631, 598, 599, 632, 598, 631, 597, 629, 631, 598, 597, 600, 631, 630, 597, 629, 598, 631, 599, 600, 598, 632, 631, 629, 284, 291, 313, 597, 284, 597, 308, 592, 308, 597, 623, 592, 623, 630, 597, 308, 313, 308, 284, 597, 630, 308, 313, 597, 597, 316, 291, 313, 316, 597, 291, 600, 316, 630, 313, 597, 597, 631, 600, 316, 292, 600, 316, 291, 630, 316, 631, 597, 633, 634, 627, 630, 627, 623, 629, 624, 630, 634, 627, 629, 630, 623, 627, 628, 623, 630, 627, 629, 627, 633, 630, 628, 634, 630, 631, 629, 634, 632, 629, 631, 632, 634, 635, 631, 631, 634, 635, 636, 634, 633, 636, 630, 630, 634, 631, 636, 630, 623, 628, 308, 311, 633, 628, 630, 308, 311, 630, 313, 311, 308, 630, 628, 311, 318, 633, 630, 318, 311, 313, 630, 318, 633, 630, 636, 630, 316, 313, 318, 318, 630, 316, 636, 630, 631, 316, 636, 636, 319, 316, 318, 631, 605, 599, 600, 599, 631, 632, 637, 605, 631, 599, 637, 606, 605, 599, 637, 638, 631, 605, 637, 639, 606, 607, 640, 606, 639, 605, 637, 639, 606, 605, 608, 639, 638, 605, 637, 606, 639, 607, 608, 606, 640, 639, 637, 292, 299, 321, 605, 292, 605, 316, 600, 316, 605, 631, 600, 631, 638, 605, 316, 321, 316, 292, 605, 638, 316, 321, 605, 605, 324, 299, 321, 324, 605, 299, 608, 324, 638, 321, 605, 605, 639, 608, 324, 300, 608, 324, 299, 638, 324, 639, 605, 641, 642, 635, 638, 635, 631, 637, 632, 638, 642, 635, 637, 638, 631, 635, 636, 631, 638, 635, 637, 635, 641, 638, 636, 642, 638, 639, 637, 642, 640, 637, 639, 640, 642, 643, 639, 639, 642, 643, 644, 642, 641, 644, 638, 638, 642, 639, 644, 638, 631, 636, 316, 319, 641, 636, 638, 316, 319, 638, 321, 319, 316, 638, 636, 319, 326, 641, 638, 326, 319, 321, 638, 326, 641, 638, 644, 638, 324, 321, 326, 326, 638, 324, 644, 638, 639, 324, 644, 644, 327, 324, 326, 639, 611, 607, 608, 607, 639, 640, 645, 611, 639, 607, 645, 612, 611, 607, 645, 646, 639, 611, 645, 300, 611, 324, 608, 324, 611, 639, 608, 639, 646, 611, 324, 643, 639, 645, 640, 646, 639, 643, 644, 639, 646, 643, 645, 643, 647, 646, 644, 646, 639, 644, 324, 327, 647, 644, 646, 327, 324, 646, 644, 649, 618, 619, 650, 618, 649, 617, 648, 649, 618, 617, 620, 618, 649, 619, 620, 618, 650, 649, 648, 617, 649, 620, 328, 304, 620, 328, 303, 651, 650, 648, 649, 650, 651, 652, 649, 649, 651, 652, 653, 649, 625, 619, 620, 619, 649, 650, 654, 625, 649, 619, 654, 626, 625, 619, 654, 655, 649, 625, 654, 656, 626, 627, 657, 626, 656, 625, 654, 656, 626, 625, 628, 656, 655, 625, 654, 626, 656, 627, 628, 626, 657, 656, 654, 304, 310, 329, 625, 304, 625, 328, 620, 328, 625, 649, 620, 649, 655, 625, 328, 329, 328, 304, 625, 655, 328, 329, 625, 625, 331, 310, 329, 331, 625, 310, 628, 331, 655, 329, 625, 625, 656, 628, 331, 311, 628, 331, 310, 655, 331, 656, 625, 658, 659, 652, 655, 652, 649, 654, 650, 655, 659, 652, 654, 655, 649, 652, 653, 649, 655, 652, 654, 652, 658, 655, 653, 659, 655, 656, 654, 659, 657, 654, 656, 657, 659, 660, 656, 656, 659, 660, 661, 659, 658, 661, 655, 655, 659, 656, 661, 655, 649, 653, 328, 332, 658, 655, 661, 655, 331, 329, 332, 332, 655, 331, 661, 655, 656, 331, 661, 661, 333, 331, 332, 656, 633, 627, 628, 627, 656, 657, 662, 633, 656, 627, 662, 634, 633, 627, 662, 663, 656, 633, 662, 664, 634, 635, 665, 634, 664, 633, 662, 664, 634, 633, 636, 664, 663, 633, 662, 634, 664, 635, 636, 634, 665, 664, 662, 311, 318, 334, 633, 311, 633, 331, 628, 331, 633, 656, 628, 656, 663, 633, 331, 334, 331, 311, 633, 663, 331, 334, 633, 633, 337, 318, 334, 337, 633, 318, 636, 337, 663, 334, 633, 633, 664, 636, 337, 319, 636, 337, 318, 663, 337, 664, 633, 666, 667, 660, 663, 660, 656, 662, 657, 663, 667, 660, 662, 663, 656, 660, 661, 656, 663, 660, 662, 660, 666, 663, 661, 667, 663, 664, 662, 667, 665, 662, 664, 665, 667, 668, 664, 664, 667, 668, 669, 667, 666, 669, 663, 663, 667, 664, 669, 663, 656, 661, 331, 333, 666, 661, 663, 331, 333, 663, 334, 333, 331, 663, 661, 333, 338, 666, 663, 338, 333, 334, 663, 338, 666, 663, 669, 663, 337, 334, 338, 338, 663, 337, 669, 663, 664, 337, 669, 669, 339, 337, 338, 664, 641, 635, 636, 635, 664, 665, 670, 641, 664, 635, 670, 642, 641, 635, 670, 671, 664, 641, 670, 672, 642, 643, 673, 642, 672, 641, 670, 672, 642, 641, 644, 672, 671, 641, 670, 642, 672, 643, 644, 642, 673, 672, 670, 319, 326, 340, 641, 319, 641, 337, 636, 337, 641, 664, 636, 664, 671, 641, 337, 340, 337, 319, 641, 671, 337, 340, 641, 641, 341, 326, 340, 341, 641, 326, 644, 341, 671, 340, 641, 641, 672, 644, 341, 327, 644, 341, 326, 671, 341, 672, 641, 674, 675, 668, 671, 668, 664, 670, 665, 671, 675, 668, 670, 671, 664, 668, 669, 664, 671, 668, 670, 668, 674, 671, 669, 675, 671, 672, 670, 675, 673, 670, 672, 673, 675, 676, 672, 672, 675, 676, 677, 675, 674, 677, 671, 671, 675, 672, 677, 671, 664, 669, 337, 339, 674, 669, 671, 337, 339, 671, 340, 339, 337, 671, 669, 671, 672, 341, 677, 672, 647, 643, 644, 643, 672, 673, 678, 647, 672, 643, 678, 327, 647, 341, 644, 341, 647, 672, 644, 676, 672, 678, 673, 679, 651, 652, 680, 651, 679, 652, 653, 679, 658, 652, 653, 652, 679, 680, 681, 658, 679, 652, 681, 659, 658, 652, 681, 682, 659, 660, 683, 659, 682, 658, 681, 682, 659, 658, 661, 659, 682, 660, 661, 659, 683, 682, 681, 342, 658, 332, 661, 658, 682, 661, 342, 333, 661, 342, 332, 682, 666, 660, 661, 660, 682, 683, 684, 666, 682, 660, 684, 667, 666, 660, 684, 685, 667, 668, 686, 667, 685, 666, 684, 685, 667, 666, 669, 667, 685, 668, 669, 667, 686, 685, 684, 333, 666, 342, 661, 342, 666, 682, 661, 343, 666, 338, 669, 666, 685, 669, 343, 339, 669, 343, 338, 685, 674, 668, 669, 668, 685, 686, 687, 674, 685, 668, 687, 675, 674, 668, 687, 688, 675, 676, 689, 675, 688, 674, 687, 688, 675, 674, 677, 675, 688, 676, 677, 675, 689, 688, 687, 339, 674, 343, 669, 343, 674, 685, 669, 696, 697, 693, 695, 693, 696, 695, 694, 697, 696, 699, 695, 346, 696, 694, 695, 346, 350, 696, 695, 350, 696, 695, 699, 701, 702, 698, 700, 698, 701, 700, 699, 702, 701, 704, 700, 351, 701, 699, 700, 351, 355, 701, 700, 355, 701, 700, 704, 706, 707, 703, 705, 703, 706, 705, 704, 707, 706, 709, 705, 356, 706, 704, 705, 356, 360, 706, 705, 360, 706, 705, 709, 713, 714, 715, 712, 712, 714, 715, 716, 690, 712, 713, 717, 691, 712, 690, 717, 692, 691, 690, 717, 718, 712, 691, 717, 719, 692, 693, 720, 692, 719, 691, 717, 719, 692, 691, 694, 719, 718, 691, 717, 692, 719, 693, 694, 692, 720, 719, 717, 712, 718, 691, 365, 718, 365, 368, 691, 691, 371, 345, 368, 371, 691, 345, 694, 371, 718, 368, 691, 691, 719, 694, 371, 346, 694, 371, 345, 718, 371, 719, 691, 721, 722, 715, 718, 715, 712, 717, 713, 718, 722, 715, 717, 718, 712, 715, 716, 712, 718, 715, 717, 715, 721, 718, 716, 722, 718, 719, 717, 722, 720, 717, 719, 720, 722, 723, 719, 719, 722, 723, 724, 722, 721, 724, 718, 718, 722, 719, 724, 718, 712, 716, 365, 366, 721, 716, 718, 365, 366, 718, 368, 366, 365, 718, 716, 366, 373, 721, 718, 373, 366, 368, 718, 373, 721, 718, 724, 718, 371, 368, 373, 373, 718, 371, 724, 718, 719, 371, 724, 724, 374, 371, 373, 719, 696, 693, 694, 693, 719, 720, 725, 696, 719, 693, 725, 697, 696, 693, 725, 726, 719, 696, 725, 727, 697, 698, 728, 697, 727, 696, 725, 727, 697, 696, 699, 727, 726, 696, 725, 697, 727, 698, 699, 697, 728, 727, 725, 346, 350, 376, 696, 346, 696, 371, 694, 371, 696, 719, 694, 719, 726, 696, 371, 376, 371, 346, 696, 726, 371, 376, 696, 696, 379, 350, 376, 379, 696, 350, 699, 379, 726, 376, 696, 696, 727, 699, 379, 351, 699, 379, 350, 726, 379, 727, 696, 729, 730, 723, 726, 723, 719, 725, 720, 726, 730, 723, 725, 726, 719, 723, 724, 719, 726, 723, 725, 723, 729, 726, 724, 730, 726, 727, 725, 730, 728, 725, 727, 728, 730, 731, 727, 727, 730, 731, 732, 730, 729, 732, 726, 726, 730, 727, 732, 726, 719, 724, 371, 374, 729, 724, 726, 371, 374, 726, 376, 374, 371, 726, 724, 374, 381, 729, 726, 381, 374, 376, 726, 381, 729, 726, 732, 726, 379, 376, 381, 381, 726, 379, 732, 726, 727, 379, 732, 732, 382, 379, 381, 727, 701, 698, 699, 698, 727, 728, 733, 701, 727, 698, 733, 702, 701, 698, 733, 734, 727, 701, 733, 735, 702, 703, 736, 702, 735, 701, 733, 735, 702, 701, 704, 735, 734, 701, 733, 702, 735, 703, 704, 702, 736, 735, 733, 351, 355, 384, 701, 351, 701, 379, 699, 379, 701, 727, 699, 727, 734, 701, 379, 384, 379, 351, 701, 734, 379, 384, 701, 701, 387, 355, 384, 387, 701, 355, 704, 387, 734, 384, 701, 701, 735, 704, 387, 356, 704, 387, 355, 734, 387, 735, 701, 737, 738, 731, 734, 731, 727, 733, 728, 734, 738, 731, 733, 734, 727, 731, 732, 727, 734, 731, 733, 731, 737, 734, 732, 738, 734, 735, 733, 738, 736, 733, 735, 736, 738, 739, 735, 735, 738, 739, 740, 738, 737, 740, 734, 734, 738, 735, 740, 734, 727, 732, 379, 382, 737, 732, 734, 379, 382, 734, 384, 382, 379, 734, 732, 382, 389, 737, 734, 389, 382, 384, 734, 389, 737, 734, 740, 734, 387, 384, 389, 389, 734, 387, 740, 734, 735, 387, 740, 740, 390, 387, 389, 735, 706, 703, 704, 703, 735, 736, 741, 706, 735, 703, 741, 707, 706, 703, 741, 742, 735, 706, 741, 743, 707, 708, 744, 707, 743, 706, 741, 743, 707, 706, 709, 743, 742, 706, 741, 707, 743, 708, 709, 707, 744, 743, 741, 356, 360, 392, 706, 356, 706, 387, 704, 387, 706, 735, 704, 735, 742, 706, 387, 392, 387, 356, 706, 742, 387, 392, 706, 706, 395, 360, 392, 395, 706, 360, 709, 395, 742, 392, 706, 706, 743, 709, 395, 361, 709, 395, 360, 742, 395, 743, 706, 745, 746, 739, 742, 739, 735, 741, 736, 742, 746, 739, 741, 742, 735, 739, 740, 735, 742, 739, 741, 739, 745, 742, 740, 746, 742, 743, 741, 746, 744, 741, 743, 744, 746, 747, 743, 743, 746, 747, 748, 746, 745, 748, 742, 742, 746, 743, 748, 742, 735, 740, 387, 390, 745, 740, 742, 387, 390, 742, 392, 390, 387, 742, 740, 390, 397, 745, 742, 397, 390, 392, 742, 397, 745, 742, 748, 742, 395, 392, 397, 397, 742, 395, 748, 742, 743, 395, 748, 748, 398, 395, 397, 743, 710, 708, 709, 708, 743, 744, 749, 710, 743, 708, 749, 711, 710, 708, 749, 750, 743, 710, 749, 711, 751, 710, 749, 751, 750, 710, 749, 711, 752, 751, 749, 361, 710, 395, 709, 395, 710, 743, 709, 743, 750, 710, 395, 400, 395, 361, 710, 750, 395, 400, 710, 403, 750, 400, 710, 750, 403, 751, 710, 753, 754, 747, 750, 747, 743, 749, 744, 750, 754, 747, 749, 750, 743, 747, 748, 743, 750, 747, 749, 747, 753, 750, 748, 754, 750, 751, 749, 754, 752, 749, 751, 752, 754, 755, 751, 751, 754, 755, 756, 754, 753, 756, 750, 750, 754, 751, 756, 750, 743, 748, 395, 398, 753, 748, 750, 395, 398, 750, 400, 398, 395, 750, 748, 398, 405, 753, 750, 405, 398, 400, 750, 405, 753, 750, 756, 750, 403, 400, 405, 405, 750, 403, 756, 750, 751, 403, 756, 758, 714, 715, 759, 714, 758, 715, 716, 714, 759, 758, 757, 760, 759, 757, 758, 759, 760, 761, 758, 758, 760, 761, 762, 758, 721, 715, 716, 715, 758, 759, 763, 721, 758, 715, 763, 722, 721, 715, 763, 764, 758, 721, 763, 765, 722, 723, 766, 722, 765, 721, 763, 765, 722, 721, 724, 765, 764, 721, 763, 722, 765, 723, 724, 722, 766, 765, 763, 366, 373, 411, 721, 366, 721, 408, 716, 408, 721, 758, 716, 758, 764, 721, 408, 411, 408, 366, 721, 764, 408, 411, 721, 721, 414, 373, 411, 414, 721, 373, 724, 414, 764, 411, 721, 721, 765, 724, 414, 374, 724, 414, 373, 764, 414, 765, 721, 767, 768, 761, 764, 761, 758, 763, 759, 764, 768, 761, 763, 764, 758, 761, 762, 758, 764, 761, 763, 761, 767, 764, 762, 768, 764, 765, 763, 768, 766, 763, 765, 766, 768, 769, 765, 765, 768, 769, 770, 768, 767, 770, 764, 764, 768, 765, 770, 764, 758, 762, 408, 409, 767, 762, 764, 408, 409, 764, 411, 409, 408, 764, 762, 409, 416, 767, 764, 416, 409, 411, 764, 416, 767, 764, 770, 764, 414, 411, 416, 416, 764, 414, 770, 764, 765, 414, 770, 770, 417, 414, 416, 765, 729, 723, 724, 723, 765, 766, 771, 729, 765, 723, 771, 730, 729, 723, 771, 772, 765, 729, 771, 773, 730, 731, 774, 730, 773, 729, 771, 773, 730, 729, 732, 773, 772, 729, 771, 730, 773, 731, 732, 730, 774, 773, 771, 374, 381, 419, 729, 374, 729, 414, 724, 414, 729, 765, 724, 765, 772, 729, 414, 419, 414, 374, 729, 772, 414, 419, 729, 729, 422, 381, 419, 422, 729, 381, 732, 422, 772, 419, 729, 729, 773, 732, 422, 382, 732, 422, 381, 772, 422, 773, 729, 775, 776, 769, 772, 769, 765, 771, 766, 772, 776, 769, 771, 772, 765, 769, 770, 765, 772, 769, 771, 769, 775, 772, 770, 776, 772, 773, 771, 776, 774, 771, 773, 774, 776, 777, 773, 773, 776, 777, 778, 776, 775, 778, 772, 772, 776, 773, 778, 772, 765, 770, 414, 417, 775, 770, 772, 414, 417, 772, 419, 417, 414, 772, 770, 417, 424, 775, 772, 424, 417, 419, 772, 424, 775, 772, 778, 772, 422, 419, 424, 424, 772, 422, 778, 772, 773, 422, 778, 778, 425, 422, 424, 773, 737, 731, 732, 731, 773, 774, 779, 737, 773, 731, 779, 738, 737, 731, 779, 780, 773, 737, 779, 781, 738, 739, 782, 738, 781, 737, 779, 781, 738, 737, 740, 781, 780, 737, 779, 738, 781, 739, 740, 738, 782, 781, 779, 382, 389, 427, 737, 382, 737, 422, 732, 422, 737, 773, 732, 773, 780, 737, 422, 427, 422, 382, 737, 780, 422, 427, 737, 737, 430, 389, 427, 430, 737, 389, 740, 430, 780, 427, 737, 737, 781, 740, 430, 390, 740, 430, 389, 780, 430, 781, 737, 783, 784, 777, 780, 777, 773, 779, 774, 780, 784, 777, 779, 780, 773, 777, 778, 773, 780, 777, 779, 777, 783, 780, 778, 784, 780, 781, 779, 784, 782, 779, 781, 782, 784, 785, 781, 781, 784, 785, 786, 784, 783, 786, 780, 780, 784, 781, 786, 780, 773, 778, 422, 425, 783, 778, 780, 422, 425, 780, 427, 425, 422, 780, 778, 425, 432, 783, 780, 432, 425, 427, 780, 432, 783, 780, 786, 780, 430, 427, 432, 432, 780, 430, 786, 780, 781, 430, 786, 786, 433, 430, 432, 781, 745, 739, 740, 739, 781, 782, 787, 745, 781, 739, 787, 746, 745, 739, 787, 788, 781, 745, 787, 789, 746, 747, 790, 746, 789, 745, 787, 789, 746, 745, 748, 789, 788, 745, 787, 746, 789, 747, 748, 746, 790, 789, 787, 390, 397, 435, 745, 390, 745, 430, 740, 430, 745, 781, 740, 781, 788, 745, 430, 435, 430, 390, 745, 788, 430, 435, 745, 745, 438, 397, 435, 438, 745, 397, 748, 438, 788, 435, 745, 745, 789, 748, 438, 398, 748, 438, 397, 788, 438, 789, 745, 791, 792, 785, 788, 785, 781, 787, 782, 788, 792, 785, 787, 788, 781, 785, 786, 781, 788, 785, 787, 785, 791, 788, 786, 792, 788, 789, 787, 792, 790, 787, 789, 790, 792, 793, 789, 789, 792, 793, 794, 792, 791, 794, 788, 788, 792, 789, 794, 788, 781, 786, 430, 433, 791, 786, 788, 430, 433, 788, 435, 433, 430, 788, 786, 433, 440, 791, 788, 440, 433, 435, 788, 440, 791, 788, 794, 788, 438, 435, 440, 440, 788, 438, 794, 788, 789, 438, 794, 794, 441, 438, 440, 789, 753, 747, 748, 747, 789, 790, 795, 753, 789, 747, 795, 754, 753, 747, 795, 796, 789, 753, 795, 797, 754, 755, 798, 754, 797, 753, 795, 797, 754, 753, 756, 797, 796, 753, 795, 754, 797, 755, 756, 754, 798, 797, 795, 398, 405, 443, 753, 398, 753, 438, 748, 438, 753, 789, 748, 789, 796, 753, 438, 443, 438, 398, 753, 796, 438, 443, 753, 753, 446, 405, 443, 446, 753, 405, 756, 446, 796, 443, 753, 753, 797, 756, 446, 796, 446, 797, 753, 799, 800, 793, 796, 793, 789, 795, 790, 796, 800, 793, 795, 796, 789, 793, 794, 789, 796, 793, 795, 793, 799, 796, 794, 800, 796, 797, 795, 800, 798, 795, 797, 798, 800, 801, 797, 797, 800, 801, 802, 800, 799, 802, 796, 796, 800, 797, 802, 796, 789, 794, 438, 441, 799, 794, 796, 438, 441, 796, 443, 441, 438, 796, 794, 441, 448, 799, 796, 448, 441, 443, 796, 448, 799, 796, 802, 796, 446, 443, 448, 448, 796, 446, 802, 796, 797, 446, 802, 755, 797, 798, 803, 801, 797, 803, 798, 804, 760, 761, 805, 760, 804, 761, 762, 804, 767, 761, 762, 761, 804, 805, 809, 767, 804, 761, 809, 768, 767, 761, 809, 811, 768, 769, 812, 768, 811, 767, 809, 811, 768, 767, 770, 811, 810, 767, 809, 768, 811, 769, 770, 768, 812, 811, 809, 409, 416, 453, 767, 767, 456, 416, 453, 456, 767, 416, 770, 456, 810, 453, 767, 767, 811, 770, 456, 417, 770, 456, 416, 810, 456, 811, 767, 813, 814, 807, 810, 807, 813, 810, 808, 814, 810, 811, 809, 814, 812, 809, 811, 812, 814, 815, 811, 811, 814, 815, 816, 814, 813, 816, 810, 810, 814, 811, 816, 451, 813, 808, 810, 451, 458, 813, 810, 458, 451, 453, 810, 458, 813, 810, 816, 810, 456, 453, 458, 458, 810, 456, 816, 810, 811, 456, 816, 816, 459, 456, 458, 811, 775, 769, 770, 769, 811, 812, 817, 775, 811, 769, 817, 776, 775, 769, 817, 818, 811, 775, 817, 819, 776, 777, 820, 776, 819, 775, 817, 819, 776, 775, 778, 819, 818, 775, 817, 776, 819, 777, 778, 776, 820, 819, 817, 417, 424, 461, 775, 417, 775, 456, 770, 456, 775, 811, 770, 811, 818, 775, 456, 461, 456, 417, 775, 818, 456, 461, 775, 775, 464, 424, 461, 464, 775, 424, 778, 464, 818, 461, 775, 775, 819, 778, 464, 425, 778, 464, 424, 818, 464, 819, 775, 821, 822, 815, 818, 815, 811, 817, 812, 818, 822, 815, 817, 818, 811, 815, 816, 811, 818, 815, 817, 815, 821, 818, 816, 822, 818, 819, 817, 822, 820, 817, 819, 820, 822, 823, 819, 819, 822, 823, 824, 822, 821, 824, 818, 818, 822, 819, 824, 818, 811, 816, 456, 459, 821, 816, 818, 456, 459, 818, 461, 459, 456, 818, 816, 459, 466, 821, 818, 466, 459, 461, 818, 466, 821, 818, 824, 818, 464, 461, 466, 466, 818, 464, 824, 818, 819, 464, 824, 824, 467, 464, 466, 819, 783, 777, 778, 777, 819, 820, 825, 783, 819, 777, 825, 784, 783, 777, 825, 826, 819, 783, 825, 827, 784, 785, 828, 784, 827, 783, 825, 827, 784, 783, 786, 827, 826, 783, 825, 784, 827, 785, 786, 784, 828, 827, 825, 425, 432, 469, 783, 425, 783, 464, 778, 464, 783, 819, 778, 819, 826, 783, 464, 469, 464, 425, 783, 826, 464, 469, 783, 783, 472, 432, 469, 472, 783, 432, 786, 472, 826, 469, 783, 783, 827, 786, 472, 433, 786, 472, 432, 826, 472, 827, 783, 829, 830, 823, 826, 823, 819, 825, 820, 826, 830, 823, 825, 826, 819, 823, 824, 819, 826, 823, 825, 823, 829, 826, 824, 830, 826, 827, 825, 830, 828, 825, 827, 828, 830, 831, 827, 827, 830, 831, 832, 830, 829, 832, 826, 826, 830, 827, 832, 826, 819, 824, 464, 467, 829, 824, 826, 464, 467, 826, 469, 467, 464, 826, 824, 467, 474, 829, 826, 474, 467, 469, 826, 474, 829, 826, 832, 826, 472, 469, 474, 474, 826, 472, 832, 826, 827, 472, 832, 832, 475, 472, 474, 827, 791, 785, 786, 785, 827, 828, 833, 791, 827, 785, 833, 792, 791, 785, 833, 834, 827, 791, 833, 835, 792, 793, 836, 792, 835, 791, 833, 835, 792, 791, 794, 835, 834, 791, 833, 792, 835, 793, 794, 792, 836, 835, 833, 433, 440, 477, 791, 433, 791, 472, 786, 472, 791, 827, 786, 827, 834, 791, 472, 477, 472, 433, 791, 834, 472, 477, 791, 791, 480, 440, 477, 480, 791, 440, 794, 480, 834, 477, 791, 791, 835, 794, 480, 441, 794, 480, 440, 834, 480, 835, 791, 837, 838, 831, 834, 831, 827, 833, 828, 834, 838, 831, 833, 834, 827, 831, 832, 827, 834, 831, 833, 831, 837, 834, 832, 838, 834, 835, 833, 838, 836, 833, 835, 836, 838, 839, 835, 835, 838, 839, 840, 838, 837, 840, 834, 834, 838, 835, 840, 834, 827, 832, 472, 475, 837, 832, 834, 472, 475, 834, 477, 475, 472, 834, 832, 475, 482, 837, 834, 482, 475, 477, 834, 482, 837, 834, 840, 834, 480, 477, 482, 482, 834, 480, 840, 834, 835, 480, 840, 840, 483, 480, 482, 835, 799, 793, 794, 793, 835, 836, 841, 799, 835, 793, 841, 800, 799, 793, 841, 842, 835, 799, 841, 843, 800, 801, 844, 800, 843, 799, 841, 843, 800, 799, 802, 843, 842, 799, 841, 800, 843, 801, 802, 800, 844, 843, 841, 441, 448, 485, 799, 441, 799, 480, 794, 480, 799, 835, 794, 835, 842, 799, 480, 485, 480, 441, 799, 842, 480, 485, 799, 799, 488, 448, 485, 488, 799, 448, 802, 799, 843, 802, 488, 845, 846, 839, 842, 839, 835, 841, 836, 842, 835, 839, 840, 835, 842, 839, 841, 839, 845, 842, 840, 846, 845, 848, 842, 842, 835, 840, 480, 483, 845, 840, 842, 480, 483, 842, 485, 483, 480, 842, 840, 483, 490, 845, 842, 490, 483, 485, 842, 490, 845, 842, 848, 851, 806, 807, 852, 806, 851, 807, 808, 806, 852, 851, 849, 854, 850, 851, 849, 854, 852, 849, 851, 852, 854, 855, 851, 851, 854, 855, 856, 854, 853, 856, 850, 850, 854, 851, 856, 494, 853, 850, 856, 494, 850, 493, 856, 850, 851, 493, 856, 856, 495, 493, 494, 851, 813, 807, 808, 807, 851, 852, 857, 813, 851, 807, 857, 814, 813, 807, 857, 858, 851, 813, 857, 859, 814, 815, 860, 814, 859, 813, 857, 859, 814, 813, 816, 859, 858, 813, 857, 814, 859, 815, 816, 814, 860, 859, 857, 451, 458, 497, 813, 451, 813, 493, 808, 493, 813, 851, 808, 851, 858, 813, 493, 497, 493, 451, 813, 858, 493, 497, 813, 813, 500, 458, 497, 500, 813, 458, 816, 500, 858, 497, 813, 813, 859, 816, 500, 459, 816, 500, 458, 858, 500, 859, 813, 861, 862, 855, 858, 855, 851, 857, 852, 858, 862, 855, 857, 858, 851, 855, 856, 851, 858, 855, 857, 855, 861, 858, 856, 862, 858, 859, 857, 862, 860, 857, 859, 860, 862, 863, 859, 859, 862, 863, 864, 862, 861, 864, 858, 858, 862, 859, 864, 858, 851, 856, 493, 495, 861, 856, 858, 493, 495, 858, 497, 495, 493, 858, 856, 495, 502, 861, 858, 502, 495, 497, 858, 502, 861, 858, 864, 858, 500, 497, 502, 502, 858, 500, 864, 858, 859, 500, 864, 864, 503, 500, 502, 859, 821, 815, 816, 815, 859, 860, 865, 821, 859, 815, 865, 822, 821, 815, 865, 866, 859, 821, 865, 867, 822, 823, 868, 822, 867, 821, 865, 867, 822, 821, 824, 867, 866, 821, 865, 822, 867, 823, 824, 822, 868, 867, 865, 459, 466, 505, 821, 459, 821, 500, 816, 500, 821, 859, 816, 859, 866, 821, 500, 505, 500, 459, 821, 866, 500, 505, 821, 821, 508, 466, 505, 508, 821, 466, 824, 508, 866, 505, 821, 821, 867, 824, 508, 467, 824, 508, 466, 866, 508, 867, 821, 869, 870, 863, 866, 863, 859, 865, 860, 866, 870, 863, 865, 866, 859, 863, 864, 859, 866, 863, 865, 863, 869, 866, 864, 870, 866, 867, 865, 870, 868, 865, 867, 868, 870, 871, 867, 867, 870, 871, 872, 870, 869, 872, 866, 866, 870, 867, 872, 866, 859, 864, 500, 503, 869, 864, 866, 500, 503, 866, 505, 503, 500, 866, 864, 503, 510, 869, 866, 510, 503, 505, 866, 510, 869, 866, 872, 866, 508, 505, 510, 510, 866, 508, 872, 866, 867, 508, 872, 872, 511, 508, 510, 867, 829, 823, 824, 823, 867, 868, 873, 829, 867, 823, 873, 830, 829, 823, 873, 874, 867, 829, 873, 875, 830, 831, 876, 830, 875, 829, 873, 875, 830, 829, 832, 875, 874, 829, 873, 830, 875, 831, 832, 830, 876, 875, 873, 467, 474, 513, 829, 467, 829, 508, 824, 508, 829, 867, 824, 867, 874, 829, 508, 513, 508, 467, 829, 874, 508, 513, 829, 829, 516, 474, 513, 516, 829, 474, 832, 516, 874, 513, 829, 829, 875, 832, 516, 475, 832, 516, 474, 874, 516, 875, 829, 877, 878, 871, 874, 871, 867, 873, 868, 874, 878, 871, 873, 874, 867, 871, 872, 867, 874, 871, 873, 871, 877, 874, 872, 878, 874, 875, 873, 878, 876, 873, 875, 876, 878, 879, 875, 875, 878, 879, 880, 878, 877, 880, 874, 874, 878, 875, 880, 874, 867, 872, 508, 511, 877, 872, 874, 508, 511, 874, 513, 511, 508, 874, 872, 511, 518, 877, 874, 518, 511, 513, 874, 518, 877, 874, 880, 874, 516, 513, 518, 518, 874, 516, 880, 874, 875, 516, 880, 880, 519, 516, 518, 875, 837, 831, 832, 831, 875, 876, 881, 837, 875, 831, 881, 838, 837, 831, 881, 882, 875, 837, 881, 883, 838, 839, 884, 838, 883, 837, 881, 883, 838, 837, 840, 883, 882, 837, 881, 838, 883, 839, 840, 838, 884, 883, 881, 475, 482, 521, 837, 475, 837, 516, 832, 516, 837, 875, 832, 875, 882, 837, 516, 521, 516, 475, 837, 882, 516, 521, 837, 837, 524, 482, 521, 524, 837, 482, 840, 524, 882, 521, 837, 837, 883, 840, 524, 483, 840, 524, 482, 882, 524, 883, 837, 885, 886, 879, 882, 879, 875, 881, 876, 882, 886, 879, 881, 882, 875, 879, 880, 875, 882, 879, 881, 879, 885, 882, 880, 886, 882, 883, 881, 886, 884, 881, 883, 884, 886, 887, 883, 883, 886, 887, 888, 886, 885, 888, 882, 882, 886, 883, 888, 882, 875, 880, 516, 519, 885, 880, 882, 516, 519, 882, 521, 519, 516, 882, 880, 519, 526, 885, 882, 526, 519, 521, 882, 526, 885, 882, 888, 882, 524, 521, 526, 526, 882, 524, 888, 882, 883, 524, 888, 888, 527, 524, 526, 883, 845, 839, 840, 839, 883, 884, 889, 845, 883, 839, 889, 846, 845, 839, 889, 890, 883, 845, 889, 891, 846, 847, 892, 846, 891, 845, 889, 891, 846, 845, 848, 891, 890, 845, 889, 846, 891, 847, 848, 846, 892, 891, 889, 483, 490, 529, 845, 483, 845, 524, 840, 524, 845, 883, 840, 883, 890, 845, 524, 529, 524, 483, 845, 890, 524, 529, 845, 845, 532, 490, 529, 532, 845, 490, 848, 532, 890, 529, 845, 845, 891, 848, 532, 890, 532, 891, 845, 893, 894, 887, 890, 887, 883, 889, 884, 890, 894, 887, 889, 890, 883, 887, 888, 883, 890, 887, 889, 887, 893, 890, 888, 894, 890, 891, 889, 894, 892, 889, 891, 892, 894, 895, 891, 891, 894, 895, 896, 894, 893, 896, 890, 890, 894, 891, 896, 890, 883, 888, 524, 527, 893, 888, 890, 524, 527, 890, 529, 527, 524, 890, 888, 527, 534, 893, 890, 534, 527, 529, 890, 534, 893, 890, 896, 890, 532, 529, 534, 534, 890, 532, 896, 890, 891, 532, 896, 896, 535, 532, 534, 847, 891, 892, 897, 895, 891, 897, 892, 898, 891, 895, 896, 891, 898, 895, 897, 895, 899, 898, 896, 898, 891, 896, 532, 535, 899, 896, 898, 535, 532, 898, 896, 901, 854, 855, 902, 901, 854, 853, 856, 854, 901, 855, 856, 854, 902, 901, 900, 538, 853, 494, 856, 853, 901, 856, 538, 495, 856, 538, 494, 901, 861, 855, 856, 855, 901, 902, 905, 861, 901, 855, 905, 862, 861, 855, 905, 906, 901, 861, 905, 907, 862, 863, 908, 862, 907, 861, 905, 907, 862, 861, 864, 907, 906, 861, 905, 862, 907, 863, 864, 862, 908, 907, 905, 495, 502, 540, 861, 495, 861, 538, 856, 538, 861, 901, 856, 901, 906, 861, 538, 540, 538, 495, 861, 906, 538, 540, 861, 861, 543, 502, 540, 543, 861, 502, 864, 543, 906, 540, 861, 861, 907, 864, 543, 503, 864, 543, 502, 906, 543, 907, 861, 909, 910, 903, 906, 903, 901, 905, 902, 906, 910, 903, 905, 906, 901, 903, 904, 901, 906, 903, 905, 903, 909, 906, 904, 910, 906, 907, 905, 910, 908, 905, 907, 908, 910, 911, 907, 907, 910, 911, 912, 910, 909, 912, 906, 906, 910, 907, 912, 906, 901, 904, 538, 539, 909, 904, 906, 538, 539, 906, 540, 539, 538, 906, 904, 539, 544, 909, 906, 544, 539, 540, 906, 544, 909, 906, 912, 906, 543, 540, 544, 544, 906, 543, 912, 906, 907, 543, 912, 912, 545, 543, 544, 907, 869, 863, 864, 863, 907, 908, 913, 869, 907, 863, 913, 870, 869, 863, 913, 914, 907, 869, 913, 915, 870, 871, 916, 870, 915, 869, 913, 915, 870, 869, 872, 915, 914, 869, 913, 870, 915, 871, 872, 870, 916, 915, 913, 503, 510, 547, 869, 503, 869, 543, 864, 543, 869, 907, 864, 907, 914, 869, 543, 547, 543, 503, 869, 914, 543, 547, 869, 869, 550, 510, 547, 550, 869, 510, 872, 550, 914, 547, 869, 869, 915, 872, 550, 511, 872, 550, 510, 914, 550, 915, 869, 917, 918, 911, 914, 911, 907, 913, 908, 914, 918, 911, 913, 914, 907, 911, 912, 907, 914, 911, 913, 911, 917, 914, 912, 918, 914, 915, 913, 918, 916, 913, 915, 916, 918, 919, 915, 915, 918, 919, 920, 918, 917, 920, 914, 914, 918, 915, 920, 914, 907, 912, 543, 545, 917, 912, 914, 543, 545, 914, 547, 545, 543, 914, 912, 545, 552, 917, 914, 552, 545, 547, 914, 552, 917, 914, 920, 914, 550, 547, 552, 552, 914, 550, 920, 914, 915, 550, 920, 920, 553, 550, 552, 915, 877, 871, 872, 871, 915, 916, 921, 877, 915, 871, 921, 878, 877, 871, 921, 922, 915, 877, 921, 923, 878, 879, 924, 878, 923, 877, 921, 923, 878, 877, 880, 923, 922, 877, 921, 878, 923, 879, 880, 878, 924, 923, 921, 511, 518, 555, 877, 511, 877, 550, 872, 550, 877, 915, 872, 915, 922, 877, 550, 555, 550, 511, 877, 922, 550, 555, 877, 877, 558, 518, 555, 558, 877, 518, 880, 558, 922, 555, 877, 877, 923, 880, 558, 519, 880, 558, 518, 922, 558, 923, 877, 925, 926, 919, 922, 919, 915, 921, 916, 922, 926, 919, 921, 922, 915, 919, 920, 915, 922, 919, 921, 919, 925, 922, 920, 926, 922, 923, 921, 926, 924, 921, 923, 924, 926, 927, 923, 923, 926, 927, 928, 926, 925, 928, 922, 922, 926, 923, 928, 922, 915, 920, 550, 553, 925, 920, 922, 550, 553, 922, 555, 553, 550, 922, 920, 553, 560, 925, 922, 560, 553, 555, 922, 560, 925, 922, 928, 922, 558, 555, 560, 560, 922, 558, 928, 922, 923, 558, 928, 928, 561, 558, 560, 923, 885, 879, 880, 879, 923, 924, 929, 885, 923, 879, 929, 886, 885, 879, 929, 930, 923, 885, 929, 931, 886, 887, 932, 886, 931, 885, 929, 931, 886, 885, 888, 931, 930, 885, 929, 886, 931, 887, 888, 886, 932, 931, 929, 519, 526, 563, 885, 519, 885, 558, 880, 558, 885, 923, 880, 923, 930, 885, 558, 563, 558, 519, 885, 930, 558, 563, 885, 885, 566, 526, 563, 566, 885, 526, 888, 566, 930, 563, 885, 885, 931, 888, 566, 527, 888, 566, 526, 930, 566, 931, 885, 933, 934, 927, 930, 927, 923, 929, 924, 930, 934, 927, 929, 930, 923, 927, 928, 923, 930, 927, 929, 927, 933, 930, 928, 934, 930, 931, 929, 934, 932, 929, 931, 932, 934, 935, 931, 931, 934, 935, 936, 934, 933, 936, 930, 930, 934, 931, 936, 930, 923, 928, 558, 561, 933, 928, 930, 558, 561, 930, 563, 561, 558, 930, 928, 561, 568, 933, 930, 568, 561, 563, 930, 568, 933, 930, 936, 930, 566, 563, 568, 568, 930, 566, 936, 930, 931, 566, 936, 936, 569, 566, 568, 931, 893, 887, 888, 887, 931, 932, 937, 893, 931, 887, 937, 894, 893, 887, 937, 938, 931, 893, 937, 939, 894, 895, 940, 894, 939, 893, 937, 939, 894, 893, 896, 939, 938, 893, 937, 894, 939, 895, 896, 894, 940, 939, 937, 527, 534, 571, 893, 527, 893, 566, 888, 566, 893, 931, 888, 931, 938, 893, 566, 571, 566, 527, 893, 938, 566, 571, 893, 893, 574, 534, 571, 574, 893, 534, 896, 574, 938, 571, 893, 893, 939, 896, 574, 535, 896, 574, 534, 938, 574, 939, 893, 941, 942, 935, 938, 935, 931, 937, 932, 938, 942, 935, 937, 938, 931, 935, 936, 931, 938, 935, 937, 935, 941, 938, 936, 942, 938, 939, 937, 942, 940, 937, 939, 942, 941, 943, 938, 938, 942, 939, 943, 938, 931, 936, 566, 569, 941, 936, 938, 566, 569, 938, 571, 569, 566, 938, 936, 569, 575, 941, 938, 575, 569, 571, 938, 575, 941, 938, 943, 938, 574, 571, 575, 575, 938, 574, 943, 938, 939, 574, 943, 939, 899, 895, 896, 895, 939, 940, 944, 899, 939, 895, 944, 535, 899, 574, 896, 574, 899, 939, 896, 545, 912, 580, 544, 947, 949, 950, 946, 946, 949, 950, 951, 949, 948, 951, 945, 945, 949, 946, 951, 576, 582, 948, 945, 582, 576, 577, 945, 582, 948, 945, 951, 945, 580, 577, 582, 582, 945, 580, 951, 945, 946, 580, 951, 951, 583, 580, 582, 946, 917, 911, 912, 911, 946, 947, 952, 917, 946, 911, 952, 918, 917, 911, 952, 953, 946, 917, 952, 954, 918, 919, 955, 918, 954, 917, 952, 954, 918, 917, 920, 954, 953, 917, 952, 918, 954, 919, 920, 918, 955, 954, 952, 545, 552, 585, 917, 545, 917, 580, 912, 580, 917, 946, 912, 946, 953, 917, 580, 585, 580, 545, 917, 953, 580, 585, 917, 917, 588, 552, 585, 588, 917, 552, 920, 588, 953, 585, 917, 917, 954, 920, 588, 553, 920, 588, 552, 953, 588, 954, 917, 956, 957, 950, 953, 950, 946, 952, 947, 953, 957, 950, 952, 953, 946, 950, 951, 946, 953, 950, 952, 950, 956, 953, 951, 957, 953, 954, 952, 957, 955, 952, 954, 955, 957, 958, 954, 954, 957, 958, 959, 957, 956, 959, 953, 953, 957, 954, 959, 953, 946, 951, 580, 583, 956, 951, 953, 580, 583, 953, 585, 583, 580, 953, 951, 583, 590, 956, 953, 590, 583, 585, 953, 590, 956, 953, 959, 953, 588, 585, 590, 590, 953, 588, 959, 953, 954, 588, 959, 959, 591, 588, 590, 954, 925, 919, 920, 919, 954, 955, 960, 925, 954, 919, 960, 926, 925, 919, 960, 961, 954, 925, 960, 962, 926, 927, 963, 926, 962, 925, 960, 962, 926, 925, 928, 962, 961, 925, 960, 926, 962, 927, 928, 926, 963, 962, 960, 553, 560, 593, 925, 553, 925, 588, 920, 588, 925, 954, 920, 954, 961, 925, 588, 593, 588, 553, 925, 961, 588, 593, 925, 925, 596, 560, 593, 596, 925, 560, 928, 596, 961, 593, 925, 925, 962, 928, 596, 561, 928, 596, 560, 961, 596, 962, 925, 964, 965, 958, 961, 958, 954, 960, 955, 961, 965, 958, 960, 961, 954, 958, 959, 954, 961, 958, 960, 958, 964, 961, 959, 965, 961, 962, 960, 965, 963, 960, 962, 963, 965, 966, 962, 962, 965, 966, 967, 965, 964, 967, 961, 961, 965, 962, 967, 961, 954, 959, 588, 591, 964, 959, 961, 588, 591, 961, 593, 591, 588, 961, 959, 591, 598, 964, 961, 598, 591, 593, 961, 598, 964, 961, 967, 961, 596, 593, 598, 598, 961, 596, 967, 961, 962, 596, 967, 967, 599, 596, 598, 962, 933, 927, 928, 927, 962, 963, 968, 933, 962, 927, 968, 934, 933, 927, 968, 969, 962, 933, 968, 934, 970, 933, 968, 970, 934, 933, 936, 970, 969, 933, 968, 934, 971, 970, 968, 561, 568, 601, 933, 561, 933, 596, 928, 596, 933, 962, 928, 962, 969, 933, 596, 601, 596, 561, 933, 969, 596, 601, 933, 933, 604, 568, 601, 604, 933, 568, 936, 604, 969, 601, 933, 933, 970, 936, 604, 569, 936, 604, 568, 969, 604, 970, 933, 972, 973, 966, 969, 966, 962, 968, 963, 969, 973, 966, 968, 969, 962, 966, 967, 962, 969, 966, 968, 966, 972, 969, 967, 973, 969, 970, 968, 973, 971, 968, 970, 971, 973, 974, 970, 970, 973, 974, 975, 973, 972, 975, 969, 969, 973, 970, 975, 969, 962, 967, 596, 599, 972, 967, 969, 596, 599, 969, 601, 599, 596, 969, 967, 599, 606, 972, 969, 606, 599, 601, 969, 606, 972, 969, 975, 969, 604, 601, 606, 606, 969, 604, 975, 969, 970, 604, 975, 975, 607, 604, 606, 974, 970, 976, 971, 977, 970, 974, 975, 970, 977, 974, 976, 974, 978, 977, 975, 977, 970, 975, 604, 607, 978, 975, 977, 604, 607, 977, 609, 607, 604, 977, 975, 607, 612, 978, 977, 612, 607, 609, 977, 981, 949, 950, 982, 949, 981, 948, 979, 981, 949, 948, 951, 981, 980, 948, 979, 949, 981, 950, 951, 949, 982, 981, 979, 576, 582, 613, 948, 948, 616, 582, 613, 616, 948, 582, 951, 616, 980, 613, 948, 948, 981, 951, 616, 583, 951, 616, 582, 980, 616, 981, 948, 984, 980, 981, 979, 984, 982, 979, 981, 982, 984, 985, 981, 981, 984, 985, 986, 984, 983, 986, 980, 980, 984, 981, 986, 618, 983, 980, 986, 980, 616, 613, 618, 618, 980, 616, 986, 980, 981, 616, 986, 986, 619, 616, 618, 981, 956, 950, 951, 950, 981, 982, 987, 956, 981, 950, 987, 957, 956, 950, 987, 988, 981, 956, 987, 989, 957, 958, 990, 957, 989, 956, 987, 989, 957, 956, 959, 989, 988, 956, 987, 957, 989, 958, 959, 957, 990, 989, 987, 583, 590, 621, 956, 583, 956, 616, 951, 616, 956, 981, 951, 981, 988, 956, 616, 621, 616, 583, 956, 988, 616, 621, 956, 956, 624, 590, 621, 624, 956, 590, 959, 624, 988, 621, 956, 956, 989, 959, 624, 591, 959, 624, 590, 988, 624, 989, 956, 991, 992, 985, 988, 985, 981, 987, 982, 988, 992, 985, 987, 988, 981, 985, 986, 981, 988, 985, 987, 985, 991, 988, 986, 992, 988, 989, 987, 992, 990, 987, 989, 990, 992, 993, 989, 989, 992, 993, 994, 992, 991, 994, 988, 988, 992, 989, 994, 988, 981, 986, 616, 619, 991, 986, 988, 616, 619, 988, 621, 619, 616, 988, 986, 619, 626, 991, 988, 626, 619, 621, 988, 626, 991, 988, 994, 988, 624, 621, 626, 626, 988, 624, 994, 988, 989, 624, 994, 994, 627, 624, 626, 989, 964, 958, 959, 958, 989, 990, 995, 964, 989, 958, 995, 965, 964, 958, 995, 996, 989, 964, 995, 997, 965, 966, 998, 965, 997, 964, 995, 997, 965, 964, 967, 997, 996, 964, 995, 965, 997, 966, 967, 965, 998, 997, 995, 591, 598, 629, 964, 591, 964, 624, 959, 624, 964, 989, 959, 989, 996, 964, 624, 629, 624, 591, 964, 996, 624, 629, 964, 964, 632, 598, 629, 632, 964, 598, 967, 632, 996, 629, 964, 964, 997, 967, 632, 599, 967, 632, 598, 996, 632, 997, 964, 999, 1000, 993, 996, 993, 989, 995, 990, 996, 1000, 993, 995, 996, 989, 993, 994, 989, 996, 993, 995, 993, 999, 996, 994, 1000, 996, 997, 995, 1000, 998, 995, 997, 998, 1000, 1001, 997, 997, 1000, 1001, 1002, 1000, 999, 1002, 996, 996, 1000, 997, 1002, 996, 989, 994, 624, 627, 999, 994, 996, 624, 627, 996, 629, 627, 624, 996, 994, 627, 634, 999, 996, 634, 627, 629, 996, 634, 999, 996, 1002, 996, 632, 629, 634, 634, 996, 632, 1002, 996, 997, 632, 1002, 1002, 635, 632, 634, 997, 972, 966, 967, 966, 997, 998, 1003, 972, 997, 966, 1003, 973, 972, 966, 1003, 1004, 997, 972, 1003, 1005, 973, 974, 1006, 973, 1005, 972, 1003, 1005, 973, 972, 975, 1005, 1004, 972, 1003, 973, 1005, 974, 975, 973, 1006, 1005, 1003, 599, 606, 637, 972, 599, 972, 632, 967, 632, 972, 997, 967, 997, 1004, 972, 632, 637, 632, 599, 972, 1004, 632, 637, 972, 972, 640, 606, 637, 640, 972, 606, 975, 640, 1004, 637, 972, 972, 1005, 975, 640, 607, 975, 640, 606, 1004, 640, 1005, 972, 1007, 1008, 1001, 1004, 1001, 997, 1003, 998, 1004, 1008, 1001, 1003, 1004, 997, 1001, 1002, 997, 1004, 1001, 1003, 1001, 1007, 1004, 1002, 1008, 1004, 1005, 1003, 1008, 1006, 1003, 1005, 1006, 1008, 1009, 1005, 1005, 1008, 1009, 1010, 1008, 1007, 1010, 1004, 1004, 1008, 1005, 1010, 1004, 997, 1002, 632, 635, 1007, 1002, 1004, 632, 635, 1004, 637, 635, 632, 1004, 1002, 635, 642, 1007, 1004, 642, 635, 637, 1004, 642, 1007, 1004, 1010, 1004, 640, 637, 642, 642, 1004, 640, 1010, 1004, 1005, 640, 1010, 1010, 643, 640, 642, 1005, 978, 974, 975, 974, 1005, 1006, 1011, 978, 1005, 974, 1011, 1012, 1005, 978, 1011, 607, 612, 645, 978, 607, 978, 640, 975, 640, 978, 1005, 975, 1005, 1012, 978, 640, 645, 640, 607, 978, 1012, 640, 645, 978, 1009, 1005, 1011, 1006, 1012, 1005, 1009, 1010, 1005, 1012, 1009, 1011, 1009, 1013, 1012, 1010, 1012, 1005, 1010, 640, 643, 1013, 1010, 1012, 640, 643, 1012, 645, 643, 640, 1012, 1010, 1016, 984, 985, 1017, 984, 1016, 983, 1014, 1016, 984, 983, 986, 1016, 1015, 983, 1014, 984, 1016, 985, 986, 984, 1017, 1016, 1014, 983, 650, 618, 648, 650, 983, 618, 986, 650, 1015, 648, 983, 983, 1016, 986, 650, 619, 986, 650, 618, 1015, 650, 1016, 983, 1019, 1015, 1016, 1014, 1019, 1017, 1014, 1016, 1017, 1019, 1020, 1016, 1016, 1019, 1020, 1021, 1019, 1018, 1021, 1015, 1015, 1019, 1016, 1021, 651, 1018, 1015, 1021, 1015, 650, 648, 651, 651, 1015, 650, 1021, 1015, 1016, 650, 1021, 1021, 652, 650, 651, 1016, 991, 985, 986, 985, 1016, 1017, 1022, 991, 1016, 985, 1022, 992, 991, 985, 1022, 1023, 1016, 991, 1022, 1024, 992, 993, 1025, 992, 1024, 991, 1022, 1024, 992, 991, 994, 1024, 1023, 991, 1022, 992, 1024, 993, 994, 992, 1025, 1024, 1022, 619, 626, 654, 991, 619, 991, 650, 986, 650, 991, 1016, 986, 1016, 1023, 991, 650, 654, 650, 619, 991, 1023, 650, 654, 991, 991, 657, 626, 654, 657, 991, 626, 994, 657, 1023, 654, 991, 991, 1024, 994, 657, 627, 994, 657, 626, 1023, 657, 1024, 991, 1026, 1027, 1020, 1023, 1020, 1016, 1022, 1017, 1023, 1027, 1020, 1022, 1023, 1016, 1020, 1021, 1016, 1023, 1020, 1022, 1020, 1026, 1023, 1021, 1027, 1023, 1024, 1022, 1027, 1025, 1022, 1024, 1025, 1027, 1028, 1024, 1024, 1027, 1028, 1029, 1027, 1026, 1029, 1023, 1023, 1027, 1024, 1029, 1023, 1016, 1021, 650, 652, 1026, 1021, 1023, 650, 652, 1023, 654, 652, 650, 1023, 1021, 652, 659, 1026, 1023, 659, 652, 654, 1023, 659, 1026, 1023, 1029, 1023, 657, 654, 659, 659, 1023, 657, 1029, 1023, 1024, 657, 1029, 1029, 660, 657, 659, 1024, 999, 993, 994, 993, 1024, 1025, 1030, 999, 1024, 993, 1030, 1000, 999, 993, 1030, 1031, 1024, 999, 1030, 1032, 1000, 1001, 1033, 1000, 1032, 999, 1030, 1032, 1000, 999, 1002, 1032, 1031, 999, 1030, 1000, 1032, 1001, 1002, 1000, 1033, 1032, 1030, 627, 634, 662, 999, 627, 999, 657, 994, 657, 999, 1024, 994, 1024, 1031, 999, 657, 662, 657, 627, 999, 1031, 657, 662, 999, 999, 665, 634, 662, 665, 999, 634, 1002, 665, 1031, 662, 999, 999, 1032, 1002, 665, 635, 1002, 665, 634, 1031, 665, 1032, 999, 1034, 1035, 1028, 1031, 1028, 1024, 1030, 1025, 1031, 1035, 1028, 1030, 1031, 1024, 1028, 1029, 1024, 1031, 1028, 1030, 1028, 1034, 1031, 1029, 1035, 1031, 1032, 1030, 1035, 1033, 1030, 1032, 1033, 1035, 1036, 1032, 1032, 1035, 1036, 1037, 1035, 1034, 1037, 1031, 1031, 1035, 1032, 1037, 1031, 1024, 1029, 657, 660, 1034, 1029, 1031, 657, 660, 1031, 662, 660, 657, 1031, 1029, 660, 667, 1034, 1031, 667, 660, 662, 1031, 667, 1034, 1031, 1037, 1031, 665, 662, 667, 667, 1031, 665, 1037, 1031, 1032, 665, 1037, 1037, 668, 665, 667, 1032, 1007, 1001, 1002, 1001, 1032, 1033, 1038, 1007, 1032, 1001, 1038, 1008, 1007, 1001, 1038, 1039, 1032, 1007, 1038, 1040, 1008, 1009, 1041, 1008, 1040, 1007, 1038, 1040, 1008, 1007, 1010, 1040, 1039, 1007, 1038, 1008, 1040, 1009, 1010, 1008, 1041, 1040, 1038, 635, 642, 670, 1007, 635, 1007, 665, 1002, 665, 1007, 1032, 1002, 1032, 1039, 1007, 665, 670, 665, 635, 1007, 1039, 665, 670, 1007, 1007, 673, 642, 670, 673, 1007, 642, 1010, 673, 1039, 670, 1007, 1007, 1040, 1010, 673, 643, 1010, 673, 642, 1039, 673, 1040, 1007, 1042, 1043, 1036, 1039, 1036, 1032, 1038, 1033, 1039, 1043, 1036, 1038, 1039, 1032, 1036, 1037, 1032, 1039, 1036, 1038, 1036, 1042, 1039, 1037, 1043, 1039, 1040, 1038, 1043, 1041, 1038, 1040, 1041, 1043, 1044, 1040, 1040, 1043, 1044, 1045, 1043, 1042, 1045, 1039, 1039, 1043, 1040, 1045, 1039, 1032, 1037, 665, 668, 1042, 1037, 1039, 665, 668, 1039, 670, 668, 665, 1039, 1037, 668, 675, 1042, 1039, 675, 668, 670, 1039, 675, 1042, 1039, 1045, 1039, 673, 670, 675, 675, 1039, 673, 1045, 1039, 1040, 673, 1045, 1045, 676, 673, 675, 1040, 1013, 1009, 1010, 1009, 1040, 1041, 1046, 1013, 1040, 1009, 1046, 1047, 1040, 1013, 1046, 643, 1013, 673, 1010, 673, 1013, 1040, 1010, 1040, 1047, 1013, 673, 678, 673, 643, 1013, 1047, 673, 678, 1013, 1044, 1040, 1046, 1041, 1047, 1040, 1044, 1045, 1040, 1047, 1044, 1046, 1044, 1048, 1047, 1045, 1047, 1040, 1045, 673, 676, 1048, 1045, 1047, 673, 676, 1047, 678, 676, 673, 1047, 1045, 680, 1018, 651, 1021, 1018, 1049, 1021, 680, 652, 1021, 680, 651, 1027, 1026, 1020, 1051, 1052, 1049, 1026, 1051, 1053, 1027, 1028, 1054, 1027, 1053, 1026, 1051, 1053, 1027, 1026, 1029, 1053, 1052, 1026, 1051, 1027, 1053, 1028, 1029, 1027, 1054, 1053, 1051, 652, 659, 681, 1026, 652, 1026, 680, 1021, 680, 1026, 1049, 1021, 1049, 1052, 1026, 680, 681, 680, 652, 1026, 1052, 680, 681, 1026, 1026, 683, 659, 681, 683, 1026, 659, 1029, 683, 1052, 681, 1026, 1026, 1053, 1029, 683, 660, 1029, 683, 659, 1052, 683, 1053, 1026, 1052, 1049, 1050, 680, 1053, 1034, 1028, 1029, 1028, 1053, 1054, 1055, 1034, 1053, 1028, 1055, 1035, 1034, 1028, 1055, 1056, 1053, 1034, 1055, 1057, 1035, 1036, 1058, 1035, 1057, 1034, 1055, 1057, 1035, 1034, 1037, 1057, 1056, 1034, 1055, 1035, 1057, 1036, 1037, 1035, 1058, 1057, 1055, 660, 667, 684, 1034, 660, 1034, 683, 1029, 683, 1034, 1053, 1029, 1053, 1056, 1034, 683, 684, 683, 660, 1034, 1056, 683, 684, 1034, 1034, 686, 667, 684, 686, 1034, 667, 1037, 686, 1056, 684, 1034, 1034, 1057, 1037, 686, 668, 1037, 686, 667, 1056, 686, 1057, 1034, 1057, 1042, 1036, 1037, 1036, 1057, 1058, 1059, 1042, 1057, 1036, 1059, 1043, 1042, 1036, 1059, 1060, 1057, 1042, 1059, 1061, 1060, 1042, 1059, 668, 675, 687, 1042, 668, 1042, 686, 1037, 686, 1042, 1057, 1037, 1057, 1060, 1042, 686, 687, 686, 668, 1042, 1060, 686, 687, 1042, 1042, 689, 675, 687, 689, 1042, 675, 1045, 689, 1060, 687, 1042, 1042, 1061, 1045, 689, 676, 1045, 689, 675, 1060, 689, 1061, 1042, 1060, 1061, 689, 1062, 676, 1048, 689, 1045, 689, 1048, 1061, 1045, 1066, 1067, 1063, 1065, 1063, 1066, 1065, 1064, 1067, 1066, 1069, 1065, 690, 1066, 1064, 1065, 690, 692, 1066, 1065, 692, 1066, 1065, 1069, 1081, 1082, 1078, 1080, 1078, 1081, 1080, 1079, 1082, 1081, 1083, 1080, 708, 1081, 1079, 1080, 708, 711, 1081, 1080, 711, 1081, 1080, 1083, 1089, 1087, 1084, 1086, 1087, 1089, 1090, 1086, 1086, 1089, 1090, 1091, 1089, 1088, 1091, 1085, 1085, 1089, 1086, 1091, 714, 1088, 1085, 1091, 714, 1085, 713, 1091, 1085, 1086, 713, 1091, 1091, 715, 713, 714, 1086, 1066, 1063, 1064, 1063, 1086, 1087, 1092, 1066, 1086, 1063, 1092, 1067, 1066, 1063, 1092, 1093, 1086, 1066, 1092, 1094, 1067, 1068, 1095, 1067, 1094, 1066, 1092, 1094, 1067, 1066, 1069, 1094, 1093, 1066, 1092, 1067, 1094, 1068, 1069, 1067, 1095, 1094, 1092, 690, 692, 717, 1066, 690, 1066, 713, 1064, 713, 1066, 1086, 1064, 1086, 1093, 1066, 713, 717, 713, 690, 1066, 1093, 713, 717, 1066, 1066, 720, 692, 717, 720, 1066, 692, 1069, 720, 1093, 717, 1066, 1066, 1094, 1069, 720, 693, 1069, 720, 692, 1093, 720, 1094, 1066, 1096, 1097, 1090, 1093, 1090, 1086, 1092, 1087, 1093, 1097, 1090, 1092, 1093, 1086, 1090, 1091, 1086, 1093, 1090, 1092, 1090, 1096, 1093, 1091, 1097, 1093, 1094, 1092, 1097, 1095, 1092, 1094, 1095, 1097, 1098, 1094, 1094, 1097, 1098, 1099, 1097, 1096, 1099, 1093, 1093, 1097, 1094, 1099, 1093, 1086, 1091, 713, 715, 1096, 1091, 1093, 713, 715, 1093, 717, 715, 713, 1093, 1091, 715, 722, 1096, 1093, 722, 715, 717, 1093, 722, 1096, 1093, 1099, 1093, 720, 717, 722, 722, 1093, 720, 1099, 1093, 1094, 720, 1099, 1099, 723, 720, 722, 1094, 1070, 1068, 1069, 1068, 1094, 1095, 1100, 1070, 1094, 1068, 1100, 1071, 1070, 1068, 1100, 1101, 1094, 1070, 1100, 1071, 1102, 1070, 1100, 1102, 1101, 1070, 1100, 1071, 1103, 1102, 1100, 693, 697, 725, 1070, 693, 1070, 720, 1069, 720, 1070, 1094, 1069, 1094, 1101, 1070, 720, 725, 720, 693, 1070, 1101, 720, 725, 1070, 1070, 728, 697, 725, 728, 1070, 697, 1072, 728, 1101, 725, 1070, 698, 1072, 728, 697, 1101, 728, 1102, 1070, 1104, 1105, 1098, 1101, 1098, 1094, 1100, 1095, 1101, 1105, 1098, 1100, 1101, 1094, 1098, 1099, 1094, 1101, 1098, 1100, 1098, 1104, 1101, 1099, 1105, 1101, 1102, 1100, 1105, 1103, 1100, 1102, 1103, 1105, 1106, 1102, 1102, 1105, 1106, 1107, 1105, 1104, 1107, 1101, 1101, 1105, 1102, 1107, 1101, 1094, 1099, 720, 723, 1104, 1099, 1101, 720, 723, 1101, 725, 723, 720, 1101, 1099, 723, 730, 1104, 1101, 730, 723, 725, 1101, 730, 1104, 1101, 1107, 1101, 728, 725, 730, 730, 1101, 728, 1107, 1101, 1102, 728, 1107, 1107, 731, 728, 730, 698, 702, 733, 1073, 1102, 1108, 1073, 728, 733, 728, 698, 1073, 1108, 728, 733, 1073, 1073, 736, 702, 733, 736, 1108, 733, 1073, 703, 1075, 736, 702, 1108, 736, 1109, 1073, 1111, 1112, 1106, 1108, 1108, 1102, 1106, 1107, 1106, 1111, 1108, 1107, 1110, 1112, 1113, 1109, 1109, 1112, 1113, 1114, 1112, 1111, 1114, 1108, 1108, 1112, 1109, 1114, 1108, 1102, 1107, 728, 731, 1111, 1107, 1108, 728, 731, 1108, 733, 731, 728, 1108, 1107, 731, 738, 1111, 1108, 738, 731, 733, 1108, 738, 1111, 1108, 1114, 1108, 736, 733, 738, 738, 1108, 736, 1114, 1108, 1109, 736, 1114, 1114, 739, 736, 738, 1074, 1109, 1110, 1115, 1076, 1109, 1074, 1115, 1077, 1076, 1074, 1115, 1116, 1109, 1076, 1115, 1117, 1077, 1078, 1118, 1077, 1117, 1076, 1115, 1117, 1077, 1076, 1079, 1117, 1116, 1076, 1115, 1077, 1117, 1078, 1079, 1077, 1118, 1117, 1115, 703, 707, 741, 1076, 703, 1076, 736, 1075, 736, 1076, 1109, 1075, 1109, 1116, 1076, 736, 741, 736, 703, 1076, 1116, 736, 741, 1076, 1076, 744, 707, 741, 744, 1076, 707, 1079, 744, 1116, 741, 1076, 1076, 1117, 1079, 744, 708, 1079, 744, 707, 1116, 744, 1117, 1076, 1119, 1120, 1113, 1116, 1113, 1109, 1115, 1110, 1116, 1120, 1113, 1115, 1116, 1109, 1113, 1114, 1109, 1116, 1113, 1115, 1113, 1119, 1116, 1114, 1120, 1116, 1117, 1115, 1120, 1118, 1115, 1117, 1118, 1120, 1121, 1117, 1117, 1120, 1121, 1122, 1120, 1119, 1122, 1116, 1116, 1120, 1117, 1122, 1116, 1109, 1114, 736, 739, 1119, 1114, 1116, 736, 739, 1116, 741, 739, 736, 1116, 1114, 739, 746, 1119, 1116, 746, 739, 741, 1116, 746, 1119, 1116, 1122, 1116, 744, 741, 746, 746, 1116, 744, 1122, 1116, 1117, 744, 1122, 1122, 747, 744, 746, 1117, 1081, 1078, 1079, 1078, 1117, 1118, 1123, 1081, 1117, 1078, 1123, 1082, 1081, 1078, 1123, 1124, 1117, 1081, 1123, 1082, 1125, 1081, 1123, 1125, 1082, 1081, 1083, 1125, 1124, 1081, 1123, 1082, 1126, 1125, 1123, 708, 711, 749, 1081, 708, 1081, 744, 1079, 744, 1081, 1117, 1079, 1117, 1124, 1081, 744, 749, 744, 708, 1081, 1124, 744, 749, 1081, 1081, 752, 711, 749, 752, 1081, 711, 1083, 752, 1124, 749, 1081, 1081, 1125, 1083, 752, 1124, 752, 1125, 1081, 1127, 1128, 1121, 1124, 1121, 1117, 1123, 1118, 1124, 1128, 1121, 1123, 1124, 1117, 1121, 1122, 1117, 1124, 1121, 1123, 1121, 1127, 1124, 1122, 1128, 1124, 1125, 1123, 1128, 1126, 1123, 1125, 1126, 1128, 1129, 1125, 1125, 1128, 1129, 1130, 1128, 1127, 1130, 1124, 1124, 1128, 1125, 1130, 1124, 1117, 1122, 744, 747, 1127, 1122, 1124, 744, 747, 1124, 749, 747, 744, 1124, 1122, 747, 754, 1127, 1124, 754, 747, 749, 1124, 754, 1127, 1124, 1130, 1124, 752, 749, 754, 754, 1124, 752, 1130, 1124, 1125, 752, 1130, 1130, 755, 752, 754, 1134, 1089, 1090, 1135, 1089, 1134, 1088, 1132, 1134, 1089, 1088, 1091, 1134, 1133, 1088, 1132, 1089, 1134, 1090, 1091, 1089, 1135, 1134, 1132, 1088, 759, 714, 757, 759, 1088, 714, 1091, 759, 1133, 757, 1088, 1088, 1134, 1091, 759, 715, 1091, 759, 714, 1133, 759, 1134, 1088, 1136, 1133, 1134, 1132, 1136, 1135, 1132, 1134, 1135, 1136, 1137, 1134, 1134, 1136, 1137, 1138, 1133, 1136, 1134, 1138, 1133, 759, 757, 760, 760, 1133, 759, 1138, 1133, 1134, 759, 1138, 1138, 761, 759, 760, 1134, 1096, 1090, 1091, 1090, 1134, 1135, 1139, 1096, 1134, 1090, 1139, 1097, 1096, 1090, 1139, 1140, 1134, 1096, 1139, 1141, 1097, 1098, 1142, 1097, 1141, 1096, 1139, 1141, 1097, 1096, 1099, 1141, 1140, 1096, 1139, 1097, 1141, 1098, 1099, 1097, 1142, 1141, 1139, 715, 722, 763, 1096, 715, 1096, 759, 1091, 759, 1096, 1134, 1091, 1134, 1140, 1096, 759, 763, 759, 715, 1096, 1140, 759, 763, 1096, 1096, 766, 722, 763, 766, 1096, 722, 1099, 766, 1140, 763, 1096, 1096, 1141, 1099, 766, 723, 1099, 766, 722, 1140, 766, 1141, 1096, 1143, 1144, 1137, 1140, 1137, 1134, 1139, 1135, 1140, 1144, 1137, 1139, 1140, 1134, 1137, 1138, 1134, 1140, 1137, 1139, 1137, 1143, 1140, 1138, 1144, 1140, 1141, 1139, 1144, 1142, 1139, 1141, 1142, 1144, 1145, 1141, 1141, 1144, 1145, 1146, 1144, 1143, 1146, 1140, 1140, 1144, 1141, 1146, 1140, 1134, 1138, 759, 761, 1143, 1138, 1140, 759, 761, 1140, 763, 761, 759, 1140, 1138, 761, 768, 1143, 1140, 768, 761, 763, 1140, 768, 1143, 1140, 1146, 1140, 766, 763, 768, 768, 1140, 766, 1146, 1140, 1141, 766, 1146, 1146, 769, 766, 768, 1141, 1104, 1098, 1099, 1098, 1141, 1142, 1147, 1104, 1141, 1098, 1147, 1105, 1104, 1098, 1147, 1148, 1141, 1104, 1147, 1149, 1105, 1106, 1150, 1105, 1149, 1104, 1147, 1149, 1105, 1104, 1107, 1149, 1148, 1104, 1147, 1105, 1149, 1106, 1107, 1105, 1150, 1149, 1147, 723, 730, 771, 1104, 723, 1104, 766, 1099, 766, 1104, 1141, 1099, 1141, 1148, 1104, 766, 771, 766, 723, 1104, 1148, 766, 771, 1104, 1104, 774, 730, 771, 774, 1104, 730, 1107, 774, 1148, 771, 1104, 1104, 1149, 1107, 774, 731, 1107, 774, 730, 1148, 774, 1149, 1104, 1151, 1152, 1145, 1148, 1145, 1141, 1147, 1142, 1148, 1152, 1145, 1147, 1148, 1141, 1145, 1146, 1141, 1148, 1145, 1147, 1145, 1151, 1148, 1146, 1152, 1148, 1149, 1147, 1152, 1150, 1147, 1149, 1150, 1152, 1153, 1149, 1149, 1152, 1153, 1154, 1152, 1151, 1154, 1148, 1148, 1152, 1149, 1154, 1148, 1141, 1146, 766, 769, 1151, 1146, 1148, 766, 769, 1148, 771, 769, 766, 1148, 1146, 769, 776, 1151, 1148, 776, 769, 771, 1148, 776, 1151, 1148, 1154, 1148, 774, 771, 776, 776, 1148, 774, 1154, 1148, 1149, 774, 1154, 1154, 777, 774, 776, 1149, 1111, 1106, 1107, 1106, 1149, 1150, 1155, 1111, 1149, 1106, 1155, 1112, 1111, 1106, 1155, 1156, 1149, 1111, 1155, 1157, 1112, 1113, 1158, 1112, 1157, 1111, 1155, 1157, 1112, 1111, 1114, 1157, 1156, 1111, 1155, 1112, 1157, 1113, 1114, 1112, 1158, 1157, 1155, 731, 738, 779, 1111, 731, 1111, 774, 1107, 774, 1111, 1149, 1107, 1149, 1156, 1111, 774, 779, 774, 731, 1111, 1156, 774, 779, 1111, 1111, 782, 738, 779, 782, 1111, 738, 1114, 782, 1156, 779, 1111, 1111, 1157, 1114, 782, 739, 1114, 782, 738, 1156, 782, 1157, 1111, 1159, 1160, 1153, 1156, 1153, 1149, 1155, 1150, 1156, 1160, 1153, 1155, 1156, 1149, 1153, 1154, 1149, 1156, 1153, 1155, 1153, 1159, 1156, 1154, 1160, 1156, 1157, 1155, 1160, 1158, 1155, 1157, 1158, 1160, 1161, 1157, 1157, 1160, 1161, 1162, 1160, 1159, 1162, 1156, 1156, 1160, 1157, 1162, 1156, 1149, 1154, 774, 777, 1159, 1154, 1156, 774, 777, 1156, 779, 777, 774, 1156, 1154, 777, 784, 1159, 1156, 784, 777, 779, 1156, 784, 1159, 1156, 1162, 1156, 782, 779, 784, 784, 1156, 782, 1162, 1156, 1157, 782, 1162, 1162, 785, 782, 784, 1157, 1119, 1113, 1114, 1113, 1157, 1158, 1163, 1119, 1157, 1113, 1163, 1120, 1119, 1113, 1163, 1164, 1157, 1119, 1163, 1165, 1120, 1121, 1166, 1120, 1165, 1119, 1163, 1165, 1120, 1119, 1122, 1165, 1164, 1119, 1163, 1120, 1165, 1121, 1122, 1120, 1166, 1165, 1163, 739, 746, 787, 1119, 739, 1119, 782, 1114, 782, 1119, 1157, 1114, 1157, 1164, 1119, 782, 787, 782, 739, 1119, 1164, 782, 787, 1119, 1119, 790, 746, 787, 790, 1119, 746, 1122, 790, 1164, 787, 1119, 1119, 1165, 1122, 790, 747, 1122, 790, 746, 1164, 790, 1165, 1119, 1167, 1168, 1161, 1164, 1161, 1157, 1163, 1158, 1164, 1168, 1161, 1163, 1164, 1157, 1161, 1162, 1157, 1164, 1161, 1163, 1161, 1167, 1164, 1162, 1168, 1164, 1165, 1163, 1168, 1166, 1163, 1165, 1166, 1168, 1169, 1165, 1165, 1168, 1169, 1170, 1168, 1167, 1170, 1164, 1164, 1168, 1165, 1170, 1164, 1157, 1162, 782, 785, 1167, 1162, 1164, 782, 785, 1164, 787, 785, 782, 1164, 1162, 785, 792, 1167, 1164, 792, 785, 787, 1164, 792, 1167, 1164, 1170, 1164, 790, 787, 792, 792, 1164, 790, 1170, 1164, 1165, 790, 1170, 1170, 793, 790, 792, 1165, 1127, 1121, 1122, 1121, 1165, 1166, 1171, 1127, 1165, 1121, 1171, 1128, 1127, 1121, 1171, 1172, 1165, 1127, 1171, 1173, 1128, 1129, 1174, 1128, 1173, 1127, 1171, 1173, 1128, 1127, 1130, 1173, 1172, 1127, 1171, 1128, 1173, 1129, 1130, 1128, 1174, 1173, 1171, 747, 754, 795, 1127, 747, 1127, 790, 1122, 790, 1127, 1165, 1122, 1165, 1172, 1127, 790, 795, 790, 747, 1127, 1172, 790, 795, 1127, 1127, 798, 754, 795, 798, 1127, 754, 1130, 798, 1172, 795, 1127, 1127, 1173, 1130, 798, 755, 1130, 798, 754, 1172, 798, 1173, 1127, 1175, 1176, 1169, 1172, 1169, 1165, 1171, 1166, 1172, 1176, 1169, 1171, 1172, 1165, 1169, 1170, 1165, 1172, 1169, 1171, 1169, 1175, 1172, 1170, 1176, 1172, 1173, 1171, 1176, 1174, 1171, 1173, 1174, 1176, 1177, 1173, 1173, 1176, 1177, 1178, 1176, 1175, 1178, 1172, 1172, 1176, 1173, 1178, 1172, 1165, 1170, 790, 793, 1175, 1170, 1172, 790, 793, 1172, 795, 793, 790, 1172, 1170, 793, 800, 1175, 1172, 800, 793, 795, 1172, 800, 1175, 1172, 1178, 1172, 798, 795, 800, 800, 1172, 798, 1178, 1172, 1173, 798, 1178, 1178, 801, 798, 800, 1173, 1131, 1129, 1130, 1129, 1173, 1174, 1179, 1131, 1173, 1129, 1179, 1180, 1173, 1131, 1179, 755, 1131, 798, 1130, 798, 1131, 1173, 1130, 1173, 1180, 1131, 798, 803, 798, 755, 1131, 1180, 798, 803, 1131, 1177, 1173, 1179, 1174, 1180, 1173, 1177, 1178, 1173, 1180, 1177, 1179, 1180, 1173, 1178, 798, 798, 801, 1180, 803, 801, 798, 1180, 1178, 1181, 1136, 1137, 1182, 1136, 1181, 1137, 1138, 761, 1138, 805, 760, 1181, 1143, 1137, 1138, 1137, 1181, 1182, 1187, 1143, 1181, 1137, 1187, 1144, 1143, 1137, 1187, 1188, 1181, 1143, 1187, 1189, 1144, 1145, 1190, 1144, 1189, 1143, 1187, 1189, 1144, 1143, 1146, 1189, 1188, 1143, 1187, 1144, 1189, 1145, 1146, 1144, 1190, 1189, 1187, 761, 768, 809, 1143, 761, 1143, 805, 1138, 805, 1143, 1181, 1138, 1181, 1188, 1143, 805, 809, 805, 761, 1143, 1188, 805, 809, 1143, 1143, 812, 768, 809, 812, 1143, 768, 1146, 812, 1188, 809, 1143, 1143, 1189, 1146, 812, 769, 1146, 812, 768, 1188, 812, 1189, 1143, 1188, 812, 809, 814, 1194, 815, 812, 814, 1189, 1151, 1145, 1146, 1151, 1189, 1145, 1195, 1152, 1151, 1145, 1195, 1196, 1189, 1151, 1195, 1197, 1152, 1153, 1198, 1152, 1197, 1151, 1195, 1197, 1152, 1151, 1154, 1197, 1196, 1151, 1195, 1152, 1197, 1153, 1154, 1152, 1198, 1197, 1195, 769, 776, 817, 1151, 769, 1151, 812, 1146, 812, 1151, 1189, 1146, 1189, 1196, 1151, 812, 817, 812, 769, 1151, 1196, 812, 817, 1151, 1151, 820, 776, 817, 820, 1151, 776, 1154, 820, 1196, 817, 1151, 1151, 1197, 1154, 820, 777, 1154, 820, 776, 1196, 820, 1197, 1151, 1199, 1200, 1193, 1196, 1196, 1200, 1193, 1195, 1196, 1189, 1193, 1194, 1189, 1196, 1193, 1195, 1193, 1199, 1196, 1194, 1200, 1196, 1197, 1195, 1200, 1198, 1195, 1197, 1198, 1200, 1201, 1197, 1197, 1200, 1201, 1202, 1200, 1199, 1202, 1196, 1196, 1200, 1197, 1202, 1196, 1189, 1194, 812, 815, 1199, 1194, 1196, 812, 815, 1196, 817, 815, 812, 1196, 1194, 815, 822, 1199, 1196, 822, 815, 817, 1196, 822, 1199, 1196, 1202, 1196, 820, 817, 822, 822, 1196, 820, 1202, 1196, 1197, 820, 1202, 1202, 823, 820, 822, 1197, 1159, 1153, 1154, 1153, 1197, 1198, 1203, 1159, 1197, 1153, 1203, 1160, 1159, 1153, 1203, 1204, 1197, 1159, 1203, 1205, 1160, 1161, 1206, 1160, 1205, 1159, 1203, 1205, 1160, 1159, 1162, 1205, 1204, 1159, 1203, 1160, 1205, 1161, 1162, 1160, 1206, 1205, 1203, 777, 784, 825, 1159, 777, 1159, 820, 1154, 820, 1159, 1197, 1154, 1197, 1204, 1159, 820, 825, 820, 777, 1159, 1204, 820, 825, 1159, 1159, 828, 784, 825, 828, 1159, 784, 1162, 828, 1204, 825, 1159, 1159, 1205, 1162, 828, 785, 1162, 828, 784, 1204, 828, 1205, 1159, 1207, 1208, 1201, 1204, 1201, 1197, 1203, 1198, 1204, 1208, 1201, 1203, 1204, 1197, 1201, 1202, 1197, 1204, 1201, 1203, 1201, 1207, 1204, 1202, 1208, 1204, 1205, 1203, 1208, 1206, 1203, 1205, 1206, 1208, 1209, 1205, 1205, 1208, 1209, 1210, 1208, 1207, 1210, 1204, 1204, 1208, 1205, 1210, 1204, 1197, 1202, 820, 823, 1207, 1202, 1204, 820, 823, 1204, 825, 823, 820, 1204, 1202, 823, 830, 1207, 1204, 830, 823, 825, 1204, 830, 1207, 1204, 1210, 1204, 828, 825, 830, 830, 1204, 828, 1210, 1204, 1205, 828, 1210, 1210, 831, 828, 830, 1205, 1167, 1161, 1162, 1161, 1205, 1206, 1211, 1167, 1205, 1161, 1211, 1168, 1167, 1161, 1211, 1212, 1205, 1167, 1211, 1213, 1168, 1169, 1214, 1168, 1213, 1167, 1211, 1213, 1168, 1167, 1170, 1213, 1212, 1167, 1211, 1168, 1213, 1169, 1170, 785, 792, 833, 1167, 785, 1167, 828, 1162, 828, 1167, 1205, 1162, 1205, 1212, 1167, 828, 833, 828, 785, 1167, 1212, 828, 833, 1167, 1167, 836, 792, 833, 836, 1167, 792, 1170, 836, 1212, 833, 1167, 1167, 1213, 1170, 836, 793, 1170, 836, 792, 1212, 836, 1213, 1167, 1215, 1216, 1209, 1212, 1209, 1205, 1211, 1206, 1212, 1216, 1209, 1211, 1212, 1205, 1209, 1210, 1205, 1212, 1209, 1211, 1209, 1215, 1212, 1210, 1216, 1212, 1213, 1211, 1216, 1215, 1218, 1212, 1212, 1216, 1213, 1218, 1212, 1205, 1210, 828, 831, 1215, 1210, 1212, 828, 831, 1212, 833, 831, 828, 1212, 1210, 831, 838, 1215, 1212, 838, 831, 833, 1212, 838, 1215, 1212, 1218, 1212, 836, 833, 838, 838, 1212, 836, 1218, 1212, 1213, 836, 1218, 1218, 839, 836, 838, 1213, 1175, 1169, 1170, 1169, 1213, 1214, 1219, 1175, 1213, 1169, 1219, 1176, 1175, 1169, 1219, 1220, 1213, 1175, 1219, 1221, 1176, 1177, 1222, 1176, 1221, 1175, 1219, 1221, 1176, 1175, 1178, 1221, 1220, 1175, 1219, 1176, 1221, 1177, 1178, 1176, 1222, 1221, 1219, 793, 800, 841, 1175, 793, 1175, 836, 1170, 836, 1175, 1213, 1170, 1213, 1220, 1175, 836, 841, 836, 793, 1175, 1220, 836, 841, 1175, 1175, 844, 800, 841, 844, 1175, 800, 1178, 844, 1220, 841, 1175, 1175, 1221, 1178, 844, 801, 1178, 844, 800, 1220, 844, 1221, 1175, 836, 839, 1220, 841, 1230, 1184, 1185, 1231, 1184, 1230, 1183, 1228, 1230, 1184, 1183, 1186, 1230, 1229, 1183, 1228, 1184, 1230, 1185, 1186, 1184, 1231, 1230, 1228, 1183, 852, 806, 849, 852, 1183, 806, 1186, 852, 1229, 849, 1183, 1183, 1230, 1186, 852, 807, 1186, 852, 806, 1229, 852, 1230, 1183, 1233, 1229, 1230, 1228, 1233, 1231, 1228, 1230, 1231, 1233, 1234, 1230, 1230, 1233, 1234, 1235, 1233, 1232, 1235, 1229, 1229, 1233, 1230, 1235, 854, 1232, 1229, 1235, 1229, 852, 849, 854, 854, 1229, 852, 1235, 1229, 1230, 852, 1235, 1235, 855, 852, 854, 1230, 1191, 1185, 1186, 1185, 1230, 1231, 1236, 1191, 1230, 1185, 1236, 1192, 1191, 1185, 1236, 1237, 1230, 1191, 1236, 1192, 1238, 1191, 1236, 1238, 1192, 1191, 1194, 1238, 1237, 1191, 1236, 1192, 1239, 1238, 1236, 807, 814, 857, 1191, 807, 1191, 852, 1186, 852, 1191, 1230, 1186, 1230, 1237, 1191, 852, 857, 852, 807, 1191, 1237, 852, 857, 1191, 1191, 860, 814, 857, 860, 1191, 814, 1194, 860, 1237, 857, 1191, 1191, 1238, 1194, 860, 815, 1194, 860, 814, 1237, 860, 1238, 1191, 1240, 1241, 1234, 1237, 1234, 1230, 1236, 1231, 1237, 1241, 1234, 1236, 1237, 1230, 1234, 1235, 1230, 1237, 1234, 1236, 1234, 1240, 1237, 1235, 1241, 1237, 1238, 1236, 1241, 1239, 1236, 1238, 1239, 1241, 1242, 1238, 1238, 1241, 1242, 1243, 1241, 1240, 1243, 1237, 1237, 1241, 1238, 1243, 1237, 1230, 1235, 852, 855, 1240, 1235, 1237, 852, 855, 1237, 857, 855, 852, 1237, 1235, 855, 862, 1240, 1237, 862, 855, 857, 1237, 862, 1240, 1237, 1243, 1237, 860, 857, 862, 862, 1237, 860, 1243, 1237, 1238, 860, 1243, 1243, 863, 860, 862, 1238, 1199, 1193, 1194, 1199, 1238, 1193, 1244, 1200, 1199, 1193, 1244, 1245, 1238, 1199, 1244, 1246, 1200, 1201, 1247, 1200, 1246, 1199, 1244, 1246, 1200, 1199, 1202, 1246, 1245, 1199, 1244, 1200, 1246, 1201, 1202, 1200, 1247, 1246, 1244, 815, 822, 865, 1199, 815, 1199, 860, 1194, 860, 1199, 1238, 1194, 1238, 1245, 1199, 860, 865, 860, 815, 1199, 1245, 860, 865, 1199, 1199, 868, 822, 865, 868, 1199, 822, 1202, 868, 1245, 865, 1199, 1199, 1246, 1202, 868, 823, 1202, 868, 822, 1245, 868, 1246, 1199, 1248, 1249, 1242, 1245, 1242, 1238, 1244, 1239, 1245, 1249, 1242, 1244, 1245, 1238, 1242, 1243, 1238, 1245, 1242, 1244, 1242, 1248, 1245, 1243, 1249, 1245, 1246, 1244, 1249, 1247, 1244, 1246, 1247, 1249, 1250, 1246, 1246, 1249, 1250, 1251, 1249, 1248, 1251, 1245, 1245, 1249, 1246, 1251, 1245, 1238, 1243, 860, 863, 1248, 1243, 1245, 860, 863, 1245, 865, 863, 860, 1245, 1243, 863, 870, 1248, 1245, 870, 863, 865, 1245, 870, 1248, 1245, 1251, 1245, 868, 865, 870, 870, 1245, 868, 1251, 1245, 1246, 868, 1251, 1251, 871, 868, 870, 1246, 1207, 1201, 1202, 1201, 1246, 1247, 1252, 1207, 1246, 1201, 1252, 1208, 1207, 1201, 1252, 1253, 1246, 1207, 1252, 1254, 1208, 1209, 1255, 1208, 1254, 1207, 1252, 1254, 1208, 1207, 1210, 1254, 1253, 1207, 1252, 1208, 1254, 1209, 1210, 1208, 1255, 1254, 1252, 823, 830, 873, 1207, 823, 1207, 868, 1202, 868, 1207, 1246, 1202, 1246, 1253, 1207, 868, 873, 868, 823, 1207, 1253, 868, 873, 1207, 1207, 876, 830, 873, 876, 1207, 830, 1210, 876, 1253, 873, 1207, 1207, 1254, 1210, 876, 831, 1210, 876, 830, 1253, 876, 1254, 1207, 1256, 1257, 1250, 1253, 1250, 1246, 1252, 1247, 1253, 1257, 1250, 1252, 1253, 1246, 1250, 1251, 1246, 1253, 1250, 1252, 1250, 1256, 1253, 1251, 1257, 1253, 1254, 1252, 1257, 1255, 1252, 1254, 1255, 1257, 1258, 1254, 1254, 1257, 1258, 1259, 1257, 1256, 1259, 1253, 1253, 1257, 1254, 1259, 1253, 1246, 1251, 868, 871, 1256, 1251, 1253, 868, 871, 1253, 873, 871, 868, 1253, 1251, 871, 878, 1256, 1253, 878, 871, 873, 1253, 878, 1256, 1253, 1259, 1253, 876, 873, 878, 878, 1253, 876, 1259, 1253, 1254, 876, 1259, 1259, 879, 876, 878, 1254, 1215, 1209, 1210, 1209, 1254, 1255, 1260, 1215, 1254, 1209, 1260, 1216, 1215, 1209, 1260, 1261, 1254, 1215, 1260, 1216, 1262, 1215, 1260, 1262, 1216, 1215, 1218, 1262, 1261, 1215, 1260, 831, 838, 881, 1215, 831, 1215, 876, 1210, 876, 1215, 1254, 1210, 1254, 1261, 1215, 876, 881, 876, 831, 1215, 1261, 876, 881, 1215, 1215, 884, 838, 881, 884, 1215, 838, 1218, 884, 1261, 881, 1215, 1215, 1262, 1218, 884, 839, 1218, 884, 838, 1261, 884, 1262, 1215, 1264, 1265, 1258, 1261, 1258, 1254, 1260, 1255, 1261, 1265, 1258, 1260, 1261, 1254, 1258, 1259, 1254, 1261, 1258, 1260, 1258, 1264, 1261, 1259, 1265, 1261, 1262, 1260, 1265, 1263, 1260, 1262, 1263, 1265, 1266, 1262, 1262, 1265, 1266, 1267, 1265, 1264, 1267, 1261, 1261, 1265, 1262, 1267, 1261, 1254, 1259, 876, 879, 1264, 1259, 1261, 876, 879, 1261, 881, 879, 876, 1261, 1259, 879, 886, 1264, 1261, 886, 879, 881, 1261, 886, 1264, 1261, 1267, 1261, 884, 881, 886, 886, 1261, 884, 1267, 1261, 1262, 884, 1267, 1267, 887, 884, 886, 1262, 1223, 1217, 1218, 1217, 1262, 1263, 1268, 1223, 1262, 1217, 1268, 1224, 1223, 1217, 1268, 1269, 1262, 1223, 1268, 1270, 1224, 1225, 1271, 1224, 1270, 1223, 1268, 1270, 1224, 1223, 1226, 1270, 1269, 1223, 1268, 1224, 1270, 1225, 1226, 1224, 1271, 1270, 1268, 839, 846, 889, 1223, 839, 1223, 884, 1218, 884, 1223, 1262, 1218, 1262, 1269, 1223, 884, 889, 884, 839, 1223, 1269, 884, 889, 1223, 1223, 892, 846, 889, 892, 1223, 846, 1226, 892, 1269, 889, 1223, 1223, 1270, 1226, 892, 847, 1226, 892, 846, 1269, 892, 1270, 1223, 1272, 1273, 1266, 1269, 1266, 1262, 1268, 1263, 1269, 1273, 1266, 1268, 1269, 1262, 1266, 1267, 1262, 1269, 1266, 1268, 1266, 1272, 1269, 1267, 1273, 1269, 1270, 1268, 1273, 1271, 1268, 1270, 1271, 1273, 1274, 1270, 1270, 1273, 1274, 1275, 1273, 1272, 1275, 1269, 1269, 1273, 1270, 1275, 1269, 1262, 1267, 884, 887, 1272, 1267, 1269, 884, 887, 1269, 889, 887, 884, 1269, 1267, 887, 894, 1272, 1269, 894, 887, 889, 1269, 894, 1272, 1269, 1275, 1269, 892, 889, 894, 894, 1269, 892, 1275, 1269, 1270, 892, 1275, 1275, 895, 892, 894, 1270, 1227, 1225, 1226, 1225, 1270, 1271, 1276, 1227, 1270, 1225, 1276, 1277, 1270, 1227, 1276, 847, 1227, 892, 1226, 892, 1227, 1270, 1226, 1270, 1277, 1227, 892, 897, 892, 847, 1227, 1277, 892, 897, 1227, 1274, 1270, 1276, 1271, 1277, 1270, 1274, 1275, 1270, 1277, 1274, 1276, 1274, 1278, 1277, 1275, 1277, 1270, 1275, 892, 895, 1278, 1275, 1277, 892, 895, 1277, 897, 895, 892, 1277, 1275, 1280, 1233, 1234, 1281, 1280, 1233, 1232, 1235, 1233, 1280, 1234, 1235, 1233, 1281, 1280, 1279, 902, 1232, 854, 1235, 1232, 1280, 1235, 902, 855, 1235, 902, 854, 1280, 1240, 1234, 1235, 1234, 1280, 1281, 1284, 1240, 1280, 1234, 1284, 1241, 1240, 1234, 1284, 1285, 1280, 1240, 1284, 1286, 1241, 1242, 1287, 1241, 1286, 1240, 1284, 1286, 1241, 1240, 1243, 1286, 1285, 1240, 1284, 1241, 1286, 1242, 1243, 1241, 1287, 1286, 1284, 855, 862, 905, 1240, 855, 1240, 902, 1235, 902, 1240, 1280, 1235, 1280, 1285, 1240, 902, 905, 902, 855, 1240, 1285, 902, 905, 1240, 1240, 908, 862, 905, 908, 1240, 862, 1243, 908, 1285, 905, 1240, 1240, 1286, 1243, 908, 863, 1243, 908, 862, 1285, 908, 1286, 1240, 1282, 1280, 1284, 1281, 1285, 1288, 1282, 1284, 1280, 1285, 1282, 1284, 1288, 1285, 1286, 1284, 1288, 1287, 1284, 1286, 1285, 1280, 1283, 902, 902, 903, 1285, 905, 910, 903, 905, 1285, 1285, 908, 905, 910, 1286, 1248, 1242, 1243, 1242, 1286, 1287, 1289, 1248, 1286, 1242, 1289, 1291, 1249, 1248, 1251, 1249, 1291, 1250, 1251, 863, 870, 913, 1248, 863, 1248, 908, 1243, 908, 1248, 1286, 1243, 913, 908, 863, 1248, 1290, 908, 913, 1248, 1248, 916, 870, 913, 916, 1248, 870, 1251, 916, 1290, 913, 1248, 1248, 1291, 1251, 916, 871, 1251, 916, 870, 1290, 916, 1291, 1248, 908, 911, 1290, 913, 911, 918, 1292, 1290, 918, 911, 913, 1290, 918, 1292, 1290, 1295, 1290, 916, 913, 918, 918, 1290, 916, 1295, 1290, 1291, 916, 1295, 1295, 919, 916, 918, 1291, 1256, 1250, 1251, 1256, 1291, 1250, 1296, 1257, 1256, 1250, 1296, 1297, 1291, 1256, 1296, 1257, 1298, 1256, 1296, 1298, 1257, 1256, 1259, 1298, 1297, 1256, 1296, 1257, 1298, 1258, 1259, 871, 878, 921, 1256, 871, 1256, 916, 1251, 916, 1256, 1291, 1251, 1291, 1297, 1256, 916, 921, 916, 871, 1256, 1297, 916, 921, 1256, 1256, 924, 878, 921, 924, 1256, 878, 1259, 924, 1297, 921, 1256, 1256, 1298, 1259, 924, 879, 1259, 924, 878, 1297, 924, 1298, 1256, 1299, 1300, 1294, 1297, 1294, 1299, 1297, 1295, 1300, 1299, 1302, 1297, 1297, 1291, 1295, 916, 919, 1299, 1295, 1297, 916, 919, 1297, 921, 919, 916, 1297, 1295, 919, 926, 1299, 1297, 926, 919, 921, 1297, 926, 1299, 1297, 1302, 1297, 924, 921, 926, 926, 1297, 924, 1302, 1297, 1298, 924, 1302, 1302, 927, 924, 926, 1298, 1264, 1258, 1259, 1305, 1265, 1266, 1306, 1265, 1305, 1264, 1303, 1305, 1265, 1264, 1267, 1265, 1305, 1266, 1267, 1265, 1306, 1305, 1303, 879, 886, 929, 1264, 879, 1264, 924, 1259, 924, 1264, 1298, 1259, 1298, 1304, 1264, 924, 929, 924, 879, 1264, 1304, 924, 929, 1264, 1264, 932, 886, 929, 932, 1264, 886, 1267, 932, 1304, 929, 1264, 1264, 1305, 1267, 932, 887, 1267, 932, 886, 1304, 1298, 1302, 924, 927, 1307, 1302, 1304, 924, 927, 1304, 929, 927, 924, 1304, 1302, 927, 934, 1307, 1304, 934, 927, 929, 1304, 1304, 932, 929, 934, 1305, 1272, 1266, 1267, 1266, 1305, 1306, 1309, 1272, 1305, 1266, 1309, 1273, 1272, 1266, 1309, 1310, 1305, 1272, 1309, 1311, 1273, 1274, 1312, 1273, 1311, 1272, 1309, 1311, 1273, 1272, 1275, 1311, 1310, 1272, 1309, 1273, 1311, 1274, 1275, 1273, 1312, 1311, 1309, 887, 894, 937, 1272, 887, 1272, 932, 1267, 932, 1272, 1305, 1267, 1305, 1310, 1272, 932, 937, 932, 887, 1272, 1310, 932, 937, 1272, 1272, 940, 894, 937, 940, 1272, 894, 1275, 940, 1310, 937, 1272, 1272, 1311, 1275, 940, 895, 1275, 940, 894, 1310, 940, 1311, 1272, 1308, 1305, 1309, 1306, 1310, 1313, 1308, 1309, 1305, 1310, 1308, 1309, 1313, 1310, 1311, 1309, 1313, 1312, 1309, 1311, 932, 935, 1310, 937, 942, 935, 937, 1310, 1310, 940, 937, 942, 1310, 1311, 940, 1314, 1311, 1278, 1274, 1275, 1274, 1311, 1312, 1315, 895, 1278, 940, 1275, 940, 1278, 1311, 1275, 944, 940, 895, 1278, 1319, 950, 947, 949, 1321, 1316, 1292, 1320, 1322, 1293, 1294, 1323, 1293, 1322, 1292, 1320, 1322, 1293, 1292, 1295, 1322, 1321, 1292, 1320, 1293, 1322, 1294, 1295, 1293, 1323, 1322, 1320, 911, 918, 952, 1292, 1316, 1321, 1292, 947, 952, 947, 911, 1292, 1321, 947, 952, 1292, 1292, 955, 918, 952, 955, 1292, 918, 1295, 955, 1321, 952, 1292, 1292, 1322, 1295, 955, 919, 1295, 955, 918, 1321, 955, 1322, 1292, 1324, 1325, 1318, 1321, 1321, 1325, 1318, 1320, 1321, 1316, 1318, 1319, 1316, 1321, 1318, 1320, 1318, 1324, 1321, 1319, 1325, 1321, 1322, 1320, 1325, 1323, 1320, 1322, 1323, 1325, 1326, 1322, 1322, 1325, 1326, 1327, 1325, 1324, 1327, 1321, 1321, 1325, 1322, 1327, 1321, 1316, 1319, 947, 950, 1324, 1319, 1321, 947, 950, 1321, 952, 950, 947, 1321, 1319, 950, 957, 1324, 1321, 957, 950, 952, 1321, 957, 1324, 1321, 1327, 1321, 955, 952, 957, 957, 1321, 955, 1327, 1321, 1322, 955, 1327, 1327, 958, 955, 957, 1322, 1299, 1294, 1295, 1294, 1322, 1323, 1328, 1299, 1322, 1294, 1328, 1300, 1299, 1294, 1328, 1329, 1322, 1299, 1328, 1330, 1300, 1301, 1331, 1300, 1330, 1299, 1328, 1330, 1300, 1299, 1302, 1330, 1329, 1299, 1328, 1300, 1330, 1301, 1302, 1300, 1331, 1330, 1328, 919, 926, 960, 1299, 919, 1299, 955, 1295, 955, 1299, 1322, 1295, 1322, 1329, 1299, 955, 960, 955, 919, 1299, 1329, 955, 960, 1299, 1299, 963, 926, 960, 963, 1299, 926, 1302, 963, 1329, 960, 1299, 1299, 1330, 1302, 963, 927, 1302, 963, 926, 1329, 963, 1330, 1299, 1332, 1333, 1326, 1329, 1326, 1322, 1328, 1323, 1329, 1333, 1326, 1328, 1329, 1322, 1326, 1327, 1322, 1329, 1326, 1328, 1326, 1332, 1329, 1327, 1333, 1329, 1330, 1328, 1333, 1331, 1328, 1330, 1331, 1333, 1334, 1330, 1330, 1333, 1334, 1335, 1333, 1332, 1335, 1329, 1329, 1333, 1330, 1335, 1329, 1322, 1327, 955, 958, 1332, 1327, 1329, 955, 958, 1329, 960, 958, 955, 1329, 1327, 958, 965, 1332, 1329, 965, 958, 960, 1329, 965, 1332, 1329, 1335, 1329, 963, 960, 965, 965, 1329, 963, 1335, 1329, 1330, 963, 1335, 1335, 966, 963, 965, 1330, 1307, 1301, 1302, 1301, 1330, 1331, 1336, 1307, 1330, 1301, 1336, 1337, 1330, 1307, 1336, 1338, 1337, 1307, 1336, 927, 934, 968, 1307, 927, 1307, 963, 1302, 963, 1307, 1330, 1302, 1330, 1337, 1307, 963, 968, 963, 927, 1307, 1337, 963, 968, 1307, 1307, 971, 934, 968, 971, 1337, 968, 1307, 1337, 971, 1338, 1307, 1339, 1340, 1334, 1337, 1334, 1330, 1336, 1331, 1337, 1340, 1334, 1336, 1337, 1330, 1334, 1335, 1330, 1337, 1334, 1336, 1334, 1339, 1337, 1335, 1340, 1337, 1338, 1336, 1340, 1339, 1341, 1337, 1337, 1340, 1338, 1341, 1337, 1330, 1335, 963, 966, 1339, 1335, 1337, 963, 966, 1337, 968, 966, 963, 1337, 1335, 966, 973, 1339, 1337, 973, 966, 968, 1337, 973, 1339, 1337, 1341, 1337, 971, 968, 973, 973, 1337, 971, 1341, 1337, 1338, 971, 1341, 1341, 974, 971, 973, 1317, 982, 949, 979, 982, 1317, 949, 1319, 982, 1343, 979, 1317, 1317, 1344, 1319, 982, 950, 1319, 982, 949, 1343, 982, 1344, 1317, 1343, 982, 979, 984, 984, 1343, 982, 1346, 1343, 1344, 982, 1346, 1346, 985, 982, 984, 1344, 1324, 1318, 1319, 1324, 1344, 1318, 1347, 1325, 1324, 1318, 1347, 1348, 1344, 1324, 1347, 1349, 1325, 1326, 1350, 1325, 1349, 1324, 1347, 1349, 1325, 1324, 1327, 1349, 1348, 1324, 1347, 1325, 1349, 1326, 1327, 1325, 1350, 1349, 1347, 950, 957, 987, 1324, 950, 1324, 982, 1319, 982, 1324, 1344, 1319, 1344, 1348, 1324, 982, 987, 982, 950, 1324, 1348, 982, 987, 1324, 1324, 990, 957, 987, 990, 1324, 957, 1327, 990, 1348, 987, 1324, 1324, 1349, 1327, 990, 958, 1327, 990, 957, 1348, 990, 1349, 1324, 1351, 1352, 1345, 1348, 1348, 1352, 1345, 1347, 1348, 1344, 1345, 1346, 1344, 1348, 1345, 1347, 1345, 1351, 1348, 1346, 1352, 1348, 1349, 1347, 1352, 1350, 1347, 1349, 1350, 1352, 1353, 1349, 1349, 1352, 1353, 1354, 1352, 1351, 1354, 1348, 1348, 1352, 1349, 1354, 1348, 1344, 1346, 982, 985, 1351, 1346, 1348, 982, 985, 1348, 987, 985, 982, 1348, 1346, 985, 992, 1351, 1348, 992, 985, 987, 1348, 992, 1351, 1348, 1354, 1348, 990, 987, 992, 992, 1348, 990, 1354, 1348, 1349, 990, 1354, 1354, 993, 990, 992, 1349, 1332, 1326, 1327, 1326, 1349, 1350, 1355, 1332, 1349, 1326, 1355, 1333, 1332, 1326, 1355, 1356, 1349, 1332, 1355, 1357, 1333, 1334, 1358, 1333, 1357, 1332, 1355, 1357, 1333, 1332, 1335, 1357, 1356, 1332, 1355, 1333, 1357, 1334, 1335, 1333, 1358, 1357, 1355, 958, 965, 995, 1332, 958, 1332, 990, 1327, 990, 1332, 1349, 1327, 1349, 1356, 1332, 990, 995, 990, 958, 1332, 1356, 990, 995, 1332, 1332, 998, 965, 995, 998, 1332, 965, 1335, 998, 1356, 995, 1332, 1332, 1357, 1335, 998, 966, 1335, 998, 965, 1356, 998, 1357, 1332, 1359, 1360, 1353, 1356, 1353, 1349, 1355, 1350, 1356, 1360, 1353, 1355, 1356, 1349, 1353, 1354, 1349, 1356, 1353, 1355, 1353, 1359, 1356, 1354, 1360, 1356, 1357, 1355, 1360, 1358, 1355, 1357, 1358, 1360, 1361, 1357, 1357, 1360, 1361, 1362, 1360, 1359, 1362, 1356, 1356, 1360, 1357, 1362, 1356, 1349, 1354, 990, 993, 1359, 1354, 1356, 990, 993, 1356, 995, 993, 990, 1356, 1354, 993, 1000, 1359, 1356, 1000, 993, 995, 1356, 1000, 1359, 1356, 1362, 1356, 998, 995, 1000, 1000, 1356, 998, 1362, 1356, 1357, 998, 1362, 1362, 1001, 998, 1000, 1357, 1339, 1334, 1335, 1334, 1357, 1358, 1363, 1339, 1357, 1334, 1363, 1340, 1339, 1334, 1363, 1364, 1357, 1339, 1363, 1340, 1365, 1339, 1363, 1365, 1340, 1339, 1341, 1365, 1364, 1339, 1363, 966, 973, 1003, 1339, 966, 1339, 998, 1335, 998, 1339, 1357, 1335, 1357, 1364, 1339, 998, 1003, 998, 966, 1339, 1364, 998, 1003, 1339, 1339, 1006, 973, 1003, 1006, 1339, 973, 1341, 1006, 1364, 1003, 1339, 1339, 1365, 1341, 1006, 974, 1341, 1006, 973, 1364, 1006, 1365, 1339, 1366, 1367, 1361, 1364, 1361, 1357, 1363, 1358, 1364, 1367, 1361, 1363, 1364, 1357, 1361, 1362, 1357, 1364, 1361, 1363, 1361, 1366, 1364, 1362, 1367, 1364, 1365, 1363, 1367, 1366, 1368, 1364, 1364, 1367, 1365, 1368, 1364, 1357, 1362, 998, 1001, 1366, 1362, 1364, 998, 1001, 1364, 1003, 1001, 998, 1364, 1362, 1001, 1008, 1366, 1364, 1008, 1001, 1003, 1364, 1008, 1366, 1364, 1368, 1364, 1006, 1003, 1008, 1008, 1364, 1006, 1368, 1364, 1365, 1006, 1368, 1368, 1009, 1006, 1008, 974, 1342, 1006, 1341, 1006, 1342, 1365, 1341, 1365, 1369, 1342, 1006, 1011, 1006, 974, 1342, 1369, 1006, 1011, 1342, 1369, 1365, 1368, 1006, 1006, 1009, 1369, 1011, 1009, 1006, 1369, 1368, 985, 1346, 1017, 984, 1370, 1351, 1345, 1346, 1351, 1370, 1345, 1371, 1352, 1351, 1345, 1371, 1372, 1370, 1351, 1371, 1373, 1352, 1353, 1374, 1352, 1373, 1351, 1371, 1373, 1352, 1351, 1354, 1373, 1372, 1351, 1371, 1352, 1373, 1353, 1354, 1352, 1374, 1373, 1371, 985, 992, 1022, 1351, 985, 1351, 1017, 1346, 1017, 1351, 1370, 1346, 1370, 1372, 1351, 1017, 1022, 1017, 985, 1351, 1372, 1017, 1022, 1351, 1351, 1025, 992, 1022, 1025, 1351, 992, 1354, 1025, 1372, 1022, 1351, 1351, 1373, 1354, 1025, 993, 1354, 1025, 992, 1372, 1025, 1373, 1351, 1376, 1372, 1373, 1371, 1376, 1374, 1371, 1373, 1374, 1376, 1377, 1373, 1373, 1376, 1377, 1378, 1372, 1376, 1373, 1378, 1017, 1020, 1372, 1022, 1020, 1027, 1375, 1372, 1027, 1020, 1022, 1372, 1027, 1375, 1372, 1378, 1372, 1025, 1022, 1027, 1027, 1372, 1025, 1378, 1372, 1373, 1025, 1378, 1378, 1028, 1025, 1027, 1373, 1359, 1353, 1354, 1353, 1373, 1374, 1379, 1359, 1373, 1353, 1379, 1360, 1359, 1353, 1379, 1380, 1373, 1359, 1379, 1381, 1360, 1361, 1382, 1360, 1381, 1359, 1379, 1381, 1360, 1359, 1362, 1381, 1380, 1359, 1379, 1360, 1381, 1361, 1362, 1360, 1382, 1381, 1379, 993, 1000, 1030, 1359, 993, 1359, 1025, 1354, 1025, 1359, 1373, 1354, 1373, 1380, 1359, 1025, 1030, 1025, 993, 1359, 1380, 1025, 1030, 1359, 1359, 1033, 1000, 1030, 1033, 1359, 1000, 1362, 1033, 1380, 1030, 1359, 1359, 1381, 1362, 1033, 1001, 1362, 1033, 1000, 1380, 1033, 1381, 1359, 1383, 1384, 1377, 1380, 1377, 1373, 1379, 1374, 1380, 1384, 1377, 1379, 1380, 1373, 1377, 1378, 1373, 1380, 1377, 1379, 1377, 1383, 1380, 1378, 1384, 1380, 1381, 1379, 1384, 1382, 1379, 1381, 1382, 1384, 1385, 1381, 1381, 1384, 1385, 1386, 1384, 1383, 1386, 1380, 1380, 1384, 1381, 1386, 1380, 1373, 1378, 1025, 1028, 1383, 1378, 1380, 1025, 1028, 1380, 1030, 1028, 1025, 1380, 1378, 1028, 1035, 1383, 1380, 1035, 1028, 1030, 1380, 1035, 1383, 1380, 1386, 1380, 1033, 1030, 1035, 1035, 1380, 1033, 1386, 1380, 1381, 1033, 1386, 1386, 1036, 1033, 1035, 1381, 1366, 1361, 1362, 1361, 1381, 1382, 1387, 1366, 1381, 1361, 1387, 1367, 1366, 1361, 1387, 1388, 1381, 1366, 1387, 1367, 1389, 1366, 1387, 1389, 1367, 1366, 1368, 1389, 1388, 1366, 1387, 1001, 1008, 1038, 1366, 1001, 1366, 1033, 1362, 1033, 1366, 1381, 1362, 1381, 1388, 1366, 1033, 1038, 1033, 1001, 1366, 1388, 1033, 1038, 1366, 1366, 1041, 1008, 1038, 1041, 1366, 1008, 1368, 1041, 1388, 1038, 1366, 1366, 1389, 1368, 1041, 1009, 1368, 1041, 1008, 1388, 1041, 1389, 1366, 1385, 1381, 1387, 1382, 1388, 1381, 1385, 1386, 1381, 1388, 1385, 1387, 1385, 1390, 1388, 1386, 1388, 1381, 1386, 1033, 1036, 1390, 1386, 1388, 1033, 1036, 1388, 1038, 1036, 1033, 1388, 1386, 1036, 1043, 1390, 1388, 1043, 1036, 1038, 1388, 1388, 1041, 1038, 1043, 1020, 1027, 1051, 1375, 1375, 1054, 1027, 1051, 1054, 1375, 1027, 1378, 1028, 1378, 1054, 1027, 1028, 1035, 1055, 1383, 1028, 1383, 1054, 1378, 1055, 1054, 1028, 1383, 1383, 1058, 1035, 1055, 1058, 1383, 1035, 1386, 1036, 1386, 1058, 1035, 1036, 1043, 1059, 1390, 1036, 1390, 1058, 1386, 1059, 1058, 1036, 1390, 1395, 1396, 1392, 1394, 1392, 1395, 1394, 1393, 1396, 1395, 1398, 1394, 1063, 1395, 1393, 1394, 1063, 1067, 1395, 1394, 1067, 1395, 1394, 1398, 1405, 1406, 1402, 1404, 1402, 1405, 1404, 1403, 1406, 1405, 1408, 1404, 1078, 1405, 1403, 1404, 1078, 1082, 1405, 1404, 1082, 1405, 1404, 1408, 1411, 1391, 1392, 1412, 1391, 1411, 1392, 1393, 1391, 1412, 1411, 1409, 1414, 1410, 1411, 1409, 1414, 1412, 1409, 1411, 1412, 1414, 1415, 1411, 1411, 1414, 1415, 1416, 1414, 1413, 1416, 1410, 1410, 1414, 1411, 1416, 1089, 1413, 1410, 1416, 1089, 1410, 1087, 1416, 1410, 1411, 1087, 1416, 1416, 1090, 1087, 1089, 1411, 1395, 1392, 1393, 1392, 1411, 1412, 1417, 1395, 1411, 1392, 1417, 1396, 1395, 1392, 1417, 1418, 1411, 1395, 1417, 1419, 1396, 1397, 1420, 1396, 1419, 1395, 1417, 1419, 1396, 1395, 1398, 1419, 1418, 1395, 1417, 1396, 1419, 1397, 1398, 1396, 1420, 1419, 1417, 1063, 1067, 1092, 1395, 1063, 1395, 1087, 1393, 1087, 1395, 1411, 1393, 1411, 1418, 1395, 1087, 1092, 1087, 1063, 1395, 1418, 1087, 1092, 1395, 1395, 1095, 1067, 1092, 1095, 1395, 1067, 1398, 1095, 1418, 1092, 1395, 1395, 1419, 1398, 1095, 1068, 1398, 1095, 1067, 1418, 1095, 1419, 1395, 1421, 1422, 1415, 1418, 1415, 1411, 1417, 1412, 1418, 1422, 1415, 1417, 1418, 1411, 1415, 1416, 1411, 1418, 1415, 1417, 1415, 1421, 1418, 1416, 1422, 1418, 1419, 1417, 1422, 1420, 1417, 1419, 1420, 1422, 1423, 1419, 1419, 1422, 1423, 1424, 1422, 1421, 1424, 1418, 1418, 1422, 1419, 1424, 1418, 1411, 1416, 1087, 1090, 1421, 1416, 1418, 1087, 1090, 1418, 1092, 1090, 1087, 1418, 1416, 1090, 1097, 1421, 1418, 1097, 1090, 1092, 1418, 1097, 1421, 1418, 1424, 1418, 1095, 1092, 1097, 1097, 1418, 1095, 1424, 1418, 1419, 1095, 1424, 1424, 1098, 1095, 1097, 1419, 1399, 1397, 1398, 1397, 1419, 1420, 1425, 1399, 1419, 1397, 1425, 1426, 1419, 1399, 1425, 1427, 1426, 1399, 1425, 1068, 1071, 1100, 1399, 1068, 1399, 1095, 1398, 1095, 1399, 1419, 1398, 1419, 1426, 1399, 1095, 1100, 1095, 1068, 1399, 1426, 1095, 1100, 1399, 1399, 1103, 1071, 1100, 1103, 1426, 1100, 1399, 1426, 1103, 1427, 1399, 1428, 1429, 1423, 1426, 1423, 1419, 1425, 1420, 1426, 1429, 1423, 1425, 1426, 1419, 1423, 1424, 1419, 1426, 1423, 1425, 1423, 1428, 1426, 1424, 1429, 1426, 1427, 1425, 1429, 1428, 1430, 1426, 1426, 1429, 1427, 1430, 1426, 1419, 1424, 1095, 1098, 1428, 1424, 1426, 1095, 1098, 1426, 1100, 1098, 1095, 1426, 1424, 1098, 1105, 1428, 1426, 1105, 1098, 1100, 1426, 1105, 1428, 1426, 1430, 1426, 1103, 1100, 1105, 1105, 1426, 1103, 1430, 1426, 1427, 1103, 1430, 1430, 1106, 1103, 1105, 1433, 1113, 1110, 1112, 1435, 1431, 1400, 1434, 1436, 1401, 1402, 1437, 1401, 1436, 1400, 1434, 1436, 1401, 1400, 1403, 1436, 1435, 1400, 1434, 1401, 1436, 1402, 1403, 1401, 1437, 1436, 1434, 1074, 1077, 1115, 1400, 1431, 1435, 1400, 1110, 1115, 1110, 1074, 1400, 1435, 1110, 1115, 1400, 1400, 1118, 1077, 1115, 1118, 1400, 1077, 1403, 1118, 1435, 1115, 1400, 1400, 1436, 1403, 1118, 1078, 1403, 1118, 1077, 1435, 1118, 1436, 1400, 1438, 1439, 1432, 1435, 1435, 1439, 1432, 1434, 1435, 1431, 1432, 1433, 1431, 1435, 1432, 1434, 1432, 1438, 1435, 1433, 1439, 1435, 1436, 1434, 1439, 1437, 1434, 1436, 1437, 1439, 1440, 1436, 1436, 1439, 1440, 1441, 1439, 1438, 1441, 1435, 1435, 1439, 1436, 1441, 1435, 1431, 1433, 1110, 1113, 1438, 1433, 1435, 1110, 1113, 1435, 1115, 1113, 1110, 1435, 1433, 1113, 1120, 1438, 1435, 1120, 1113, 1115, 1435, 1120, 1438, 1435, 1441, 1435, 1118, 1115, 1120, 1120, 1435, 1118, 1441, 1435, 1436, 1118, 1441, 1441, 1121, 1118, 1120, 1436, 1405, 1402, 1403, 1402, 1436, 1437, 1442, 1405, 1436, 1402, 1442, 1406, 1405, 1402, 1442, 1443, 1436, 1405, 1442, 1444, 1406, 1407, 1445, 1406, 1444, 1405, 1442, 1444, 1406, 1405, 1408, 1444, 1443, 1405, 1442, 1406, 1444, 1407, 1408, 1406, 1445, 1444, 1442, 1078, 1082, 1123, 1405, 1078, 1405, 1118, 1403, 1118, 1405, 1436, 1403, 1436, 1443, 1405, 1118, 1123, 1118, 1078, 1405, 1443, 1118, 1123, 1405, 1405, 1126, 1082, 1123, 1126, 1405, 1082, 1408, 1126, 1443, 1123, 1405, 1405, 1444, 1408, 1126, 1443, 1126, 1444, 1405, 1446, 1447, 1440, 1443, 1440, 1436, 1442, 1437, 1443, 1447, 1440, 1442, 1443, 1436, 1440, 1441, 1436, 1443, 1440, 1442, 1440, 1446, 1443, 1441, 1447, 1443, 1444, 1442, 1447, 1445, 1442, 1444, 1445, 1447, 1448, 1444, 1444, 1447, 1448, 1449, 1447, 1446, 1449, 1443, 1443, 1447, 1444, 1449, 1443, 1436, 1441, 1118, 1121, 1446, 1441, 1443, 1118, 1121, 1443, 1123, 1121, 1118, 1443, 1441, 1121, 1128, 1446, 1443, 1128, 1121, 1123, 1443, 1128, 1446, 1443, 1449, 1443, 1126, 1123, 1128, 1128, 1443, 1126, 1449, 1443, 1444, 1126, 1449, 1449, 1129, 1126, 1128, 1407, 1444, 1445, 1450, 1448, 1444, 1450, 1445, 1451, 1444, 1448, 1449, 1444, 1451, 1448, 1450, 1448, 1452, 1451, 1449, 1451, 1444, 1449, 1126, 1129, 1452, 1449, 1451, 1129, 1126, 1451, 1449, 1454, 1414, 1415, 1455, 1414, 1454, 1413, 1453, 1454, 1414, 1413, 1416, 1414, 1454, 1415, 1416, 1414, 1455, 1454, 1453, 1413, 1135, 1089, 1132, 1135, 1413, 1089, 1416, 1413, 1454, 1416, 1135, 1090, 1416, 1135, 1089, 1456, 1455, 1453, 1454, 1455, 1456, 1457, 1454, 1454, 1456, 1457, 1458, 1458, 1137, 1135, 1136, 1454, 1421, 1415, 1416, 1415, 1454, 1455, 1459, 1421, 1454, 1415, 1459, 1422, 1421, 1415, 1459, 1460, 1454, 1421, 1459, 1461, 1422, 1423, 1462, 1422, 1461, 1421, 1459, 1461, 1422, 1421, 1424, 1461, 1460, 1421, 1459, 1422, 1461, 1423, 1424, 1422, 1462, 1461, 1459, 1090, 1097, 1139, 1421, 1090, 1421, 1135, 1416, 1135, 1421, 1454, 1416, 1454, 1460, 1421, 1135, 1139, 1135, 1090, 1421, 1460, 1135, 1139, 1421, 1421, 1142, 1097, 1139, 1142, 1421, 1097, 1424, 1142, 1460, 1139, 1421, 1421, 1461, 1424, 1142, 1098, 1424, 1142, 1097, 1460, 1142, 1461, 1421, 1463, 1464, 1457, 1460, 1457, 1454, 1459, 1455, 1460, 1464, 1457, 1459, 1460, 1454, 1457, 1458, 1454, 1460, 1457, 1459, 1457, 1463, 1460, 1458, 1464, 1460, 1461, 1459, 1464, 1462, 1459, 1461, 1462, 1464, 1465, 1461, 1461, 1464, 1465, 1466, 1464, 1463, 1466, 1460, 1460, 1464, 1461, 1466, 1460, 1454, 1458, 1135, 1137, 1463, 1458, 1460, 1135, 1137, 1460, 1139, 1137, 1135, 1460, 1458, 1137, 1144, 1463, 1460, 1144, 1137, 1139, 1460, 1144, 1463, 1460, 1466, 1460, 1142, 1139, 1144, 1144, 1460, 1142, 1466, 1460, 1461, 1142, 1466, 1466, 1145, 1142, 1144, 1461, 1428, 1423, 1424, 1423, 1461, 1462, 1467, 1428, 1461, 1423, 1467, 1429, 1428, 1423, 1467, 1468, 1461, 1428, 1467, 1429, 1469, 1428, 1467, 1469, 1429, 1428, 1430, 1469, 1468, 1428, 1467, 1098, 1105, 1147, 1428, 1098, 1428, 1142, 1424, 1142, 1428, 1461, 1424, 1461, 1468, 1428, 1142, 1147, 1142, 1098, 1428, 1468, 1142, 1147, 1428, 1428, 1150, 1105, 1147, 1150, 1428, 1105, 1430, 1150, 1468, 1147, 1428, 1428, 1469, 1430, 1150, 1106, 1430, 1150, 1105, 1468, 1150, 1469, 1428, 1465, 1461, 1467, 1462, 1468, 1461, 1465, 1466, 1461, 1468, 1465, 1467, 1468, 1461, 1466, 1142, 1142, 1145, 1468, 1147, 1145, 1142, 1468, 1466, 1152, 1145, 1147, 1468, 1468, 1150, 1147, 1152, 1113, 1433, 1158, 1112, 1470, 1438, 1432, 1433, 1438, 1470, 1432, 1472, 1439, 1438, 1432, 1472, 1473, 1470, 1438, 1472, 1474, 1439, 1440, 1475, 1439, 1474, 1438, 1472, 1474, 1439, 1438, 1441, 1474, 1473, 1438, 1472, 1439, 1474, 1440, 1441, 1439, 1475, 1474, 1472, 1113, 1120, 1163, 1438, 1113, 1438, 1158, 1433, 1158, 1438, 1470, 1433, 1470, 1473, 1438, 1158, 1163, 1158, 1113, 1438, 1473, 1158, 1163, 1438, 1438, 1166, 1120, 1163, 1166, 1438, 1120, 1441, 1166, 1473, 1163, 1438, 1438, 1474, 1441, 1166, 1121, 1441, 1166, 1120, 1473, 1166, 1474, 1438, 1476, 1473, 1474, 1472, 1476, 1475, 1472, 1474, 1475, 1476, 1477, 1474, 1474, 1476, 1477, 1478, 1473, 1476, 1474, 1478, 1158, 1161, 1473, 1163, 1168, 1161, 1163, 1473, 1473, 1166, 1163, 1168, 1168, 1473, 1166, 1478, 1473, 1474, 1166, 1478, 1478, 1169, 1166, 1168, 1474, 1446, 1440, 1441, 1440, 1474, 1475, 1479, 1446, 1474, 1440, 1479, 1447, 1446, 1440, 1479, 1480, 1474, 1446, 1479, 1481, 1447, 1448, 1482, 1447, 1481, 1446, 1479, 1481, 1447, 1446, 1449, 1481, 1480, 1446, 1479, 1447, 1481, 1448, 1449, 1447, 1482, 1481, 1479, 1121, 1128, 1171, 1446, 1121, 1446, 1166, 1441, 1166, 1446, 1474, 1441, 1474, 1480, 1446, 1166, 1171, 1166, 1121, 1446, 1480, 1166, 1171, 1446, 1446, 1174, 1128, 1171, 1174, 1446, 1128, 1449, 1174, 1480, 1171, 1446, 1446, 1481, 1449, 1174, 1129, 1449, 1174, 1128, 1480, 1174, 1481, 1446, 1483, 1484, 1477, 1480, 1477, 1474, 1479, 1475, 1480, 1484, 1477, 1479, 1480, 1474, 1477, 1478, 1474, 1480, 1477, 1479, 1477, 1483, 1480, 1478, 1484, 1480, 1481, 1479, 1484, 1482, 1479, 1481, 1482, 1484, 1485, 1481, 1481, 1484, 1485, 1486, 1484, 1483, 1486, 1480, 1480, 1484, 1481, 1486, 1480, 1474, 1478, 1166, 1169, 1483, 1478, 1480, 1166, 1169, 1480, 1171, 1169, 1166, 1480, 1478, 1169, 1176, 1483, 1480, 1176, 1169, 1171, 1480, 1176, 1483, 1480, 1486, 1480, 1174, 1171, 1176, 1176, 1480, 1174, 1486, 1480, 1481, 1174, 1486, 1486, 1177, 1174, 1176, 1481, 1452, 1448, 1449, 1448, 1481, 1482, 1487, 1452, 1481, 1448, 1487, 1129, 1452, 1174, 1449, 1174, 1452, 1481, 1449, 1179, 1174, 1129, 1452, 1485, 1481, 1487, 1482, 1137, 1458, 1182, 1136, 1137, 1144, 1187, 1463, 1137, 1463, 1182, 1458, 1187, 1182, 1137, 1463, 1463, 1190, 1144, 1187, 1190, 1463, 1144, 1466, 1145, 1466, 1190, 1144, 1494, 1201, 1198, 1200, 1153, 1160, 1203, 1471, 1203, 1198, 1153, 1471, 1495, 1198, 1203, 1471, 1471, 1206, 1160, 1203, 1206, 1495, 1203, 1471, 1201, 1496, 1494, 1495, 1198, 1201, 1495, 1203, 1201, 1198, 1495, 1494, 1201, 1208, 1496, 1495, 1208, 1201, 1203, 1495, 1208, 1496, 1495, 1497, 1495, 1206, 1203, 1208, 1208, 1495, 1206, 1497, 1497, 1209, 1206, 1208, 1169, 1478, 1214, 1168, 1169, 1176, 1219, 1483, 1169, 1483, 1214, 1478, 1219, 1214, 1169, 1483, 1483, 1222, 1176, 1219, 1222, 1483, 1176, 1486, 1177, 1486, 1222, 1176, 1506, 1505, 1488, 1504, 1488, 1231, 1184, 1228, 1231, 1488, 1184, 1490, 1231, 1505, 1228, 1488, 1488, 1506, 1490, 1231, 1185, 1490, 1231, 1184, 1505, 1231, 1506, 1488, 1509, 1505, 1506, 1504, 1509, 1507, 1504, 1506, 1507, 1509, 1510, 1506, 1506, 1509, 1510, 1511, 1509, 1508, 1511, 1505, 1505, 1509, 1506, 1511, 1233, 1508, 1505, 1511, 1505, 1231, 1228, 1233, 1233, 1505, 1231, 1511, 1505, 1506, 1231, 1511, 1511, 1234, 1231, 1233, 1506, 1491, 1489, 1490, 1489, 1506, 1507, 1512, 1491, 1506, 1489, 1512, 1492, 1491, 1489, 1512, 1513, 1506, 1491, 1512, 1492, 1514, 1491, 1512, 1514, 1492, 1491, 1493, 1514, 1513, 1491, 1512, 1492, 1515, 1514, 1512, 1185, 1192, 1236, 1491, 1185, 1491, 1231, 1490, 1231, 1491, 1506, 1490, 1506, 1513, 1491, 1231, 1236, 1231, 1185, 1491, 1513, 1231, 1236, 1491, 1491, 1239, 1192, 1236, 1239, 1491, 1192, 1493, 1239, 1513, 1236, 1491, 1491, 1514, 1493, 1239, 1513, 1239, 1514, 1491, 1516, 1517, 1510, 1513, 1510, 1506, 1512, 1507, 1513, 1517, 1510, 1512, 1513, 1506, 1510, 1511, 1506, 1513, 1510, 1512, 1510, 1516, 1513, 1511, 1517, 1513, 1514, 1512, 1517, 1515, 1512, 1514, 1515, 1517, 1518, 1514, 1514, 1517, 1518, 1519, 1517, 1516, 1519, 1513, 1513, 1517, 1514, 1519, 1513, 1506, 1511, 1231, 1234, 1516, 1511, 1513, 1231, 1234, 1513, 1236, 1234, 1231, 1513, 1511, 1234, 1241, 1516, 1513, 1241, 1234, 1236, 1513, 1241, 1516, 1513, 1519, 1513, 1239, 1236, 1241, 1241, 1513, 1239, 1519, 1513, 1514, 1239, 1519, 1519, 1242, 1239, 1241, 1201, 1494, 1247, 1200, 1520, 1514, 1518, 1519, 1518, 1521, 1520, 1519, 1520, 1514, 1519, 1239, 1242, 1521, 1519, 1520, 1239, 1242, 1520, 1244, 1242, 1239, 1520, 1519, 1201, 1208, 1252, 1496, 1201, 1496, 1247, 1494, 1252, 1247, 1201, 1496, 1496, 1255, 1208, 1252, 1255, 1496, 1208, 1497, 1209, 1497, 1255, 1208, 1524, 1526, 1527, 1523, 1523, 1526, 1527, 1528, 1526, 1525, 1528, 1522, 1522, 1526, 1523, 1528, 1265, 1525, 1522, 1528, 1522, 1263, 1260, 1265, 1265, 1522, 1263, 1528, 1522, 1523, 1263, 1528, 1528, 1266, 1263, 1265, 1523, 1500, 1498, 1499, 1498, 1523, 1524, 1529, 1500, 1523, 1498, 1529, 1501, 1500, 1498, 1529, 1530, 1523, 1500, 1529, 1501, 1531, 1500, 1529, 1531, 1501, 1500, 1502, 1531, 1530, 1500, 1529, 1501, 1532, 1531, 1529, 1217, 1224, 1268, 1500, 1217, 1500, 1263, 1499, 1263, 1500, 1523, 1499, 1523, 1530, 1500, 1263, 1268, 1263, 1217, 1500, 1530, 1263, 1268, 1500, 1500, 1271, 1224, 1268, 1271, 1500, 1224, 1502, 1271, 1530, 1268, 1500, 1500, 1531, 1502, 1271, 1225, 1502, 1271, 1224, 1530, 1271, 1531, 1500, 1533, 1534, 1527, 1530, 1527, 1523, 1529, 1524, 1530, 1534, 1527, 1529, 1530, 1523, 1527, 1528, 1523, 1530, 1527, 1529, 1527, 1533, 1530, 1528, 1534, 1530, 1531, 1529, 1534, 1532, 1529, 1531, 1532, 1534, 1535, 1531, 1531, 1534, 1535, 1536, 1534, 1533, 1536, 1530, 1530, 1534, 1531, 1536, 1530, 1523, 1528, 1263, 1266, 1533, 1528, 1530, 1263, 1266, 1530, 1268, 1266, 1263, 1530, 1528, 1266, 1273, 1533, 1530, 1273, 1266, 1268, 1530, 1273, 1533, 1530, 1536, 1530, 1271, 1268, 1273, 1273, 1530, 1271, 1536, 1530, 1531, 1271, 1536, 1536, 1274, 1271, 1273, 1538, 1531, 1503, 1537, 1225, 1503, 1271, 1502, 1271, 1503, 1531, 1502, 1531, 1538, 1503, 1271, 1276, 1271, 1225, 1503, 1538, 1271, 1276, 1503, 1535, 1531, 1537, 1532, 1538, 1531, 1535, 1536, 1531, 1538, 1535, 1537, 1535, 1539, 1538, 1536, 1538, 1531, 1536, 1271, 1274, 1539, 1536, 1538, 1271, 1274, 1538, 1276, 1274, 1271, 1538, 1536, 1540, 1509, 1510, 1541, 1540, 1509, 1508, 1511, 1509, 1540, 1510, 1511, 1281, 1508, 1233, 1511, 1508, 1540, 1511, 1281, 1234, 1511, 1281, 1233, 1540, 1516, 1510, 1511, 1510, 1540, 1541, 1542, 1516, 1540, 1510, 1542, 1517, 1516, 1510, 1542, 1543, 1540, 1516, 1542, 1544, 1517, 1518, 1545, 1517, 1544, 1516, 1542, 1544, 1517, 1516, 1519, 1544, 1543, 1516, 1542, 1517, 1544, 1518, 1519, 1517, 1545, 1544, 1542, 1234, 1241, 1284, 1516, 1234, 1516, 1281, 1511, 1281, 1516, 1540, 1511, 1540, 1543, 1516, 1281, 1284, 1281, 1234, 1516, 1543, 1281, 1284, 1516, 1516, 1287, 1241, 1284, 1287, 1516, 1241, 1519, 1287, 1543, 1284, 1516, 1516, 1544, 1519, 1287, 1242, 1519, 1287, 1241, 1543, 1287, 1544, 1516, 1281, 1282, 1543, 1284, 1288, 1282, 1284, 1543, 1543, 1287, 1284, 1288, 1544, 1521, 1518, 1519, 1242, 1521, 1287, 1519, 1287, 1521, 1544, 1519, 1289, 1287, 1242, 1521, 1547, 1526, 1527, 1548, 1547, 1526, 1525, 1528, 1526, 1547, 1527, 1528, 1525, 1306, 1265, 1303, 1306, 1525, 1265, 1528, 1525, 1547, 1528, 1306, 1266, 1528, 1306, 1265, 1547, 1533, 1527, 1528, 1527, 1547, 1548, 1549, 1533, 1547, 1527, 1549, 1534, 1533, 1527, 1549, 1550, 1547, 1533, 1549, 1551, 1534, 1535, 1552, 1534, 1551, 1533, 1549, 1551, 1534, 1533, 1536, 1551, 1550, 1533, 1549, 1534, 1551, 1535, 1536, 1534, 1552, 1551, 1549, 1266, 1273, 1309, 1533, 1266, 1533, 1306, 1528, 1306, 1533, 1547, 1528, 1547, 1550, 1533, 1306, 1309, 1306, 1266, 1533, 1550, 1306, 1309, 1533, 1533, 1312, 1273, 1309, 1312, 1533, 1273, 1536, 1312, 1550, 1309, 1533, 1533, 1551, 1536, 1312, 1274, 1536, 1312, 1273, 1550, 1312, 1551, 1533, 1306, 1308, 1550, 1309, 1313, 1308, 1309, 1550, 1550, 1312, 1309, 1313, 1551, 1539, 1535, 1536, 1274, 1539, 1312, 1536, 1312, 1539, 1551, 1536, 1556, 1326, 1323, 1325, 1294, 1300, 1328, 1546, 1553, 1557, 1546, 1323, 1328, 1323, 1294, 1546, 1557, 1323, 1328, 1546, 1546, 1331, 1300, 1328, 1331, 1557, 1328, 1546, 1557, 1331, 1558, 1546, 1559, 1560, 1555, 1557, 1557, 1553, 1555, 1556, 1555, 1559, 1557, 1556, 1560, 1559, 1561, 1557, 1557, 1560, 1558, 1561, 1557, 1553, 1556, 1323, 1326, 1559, 1556, 1557, 1323, 1326, 1557, 1328, 1326, 1323, 1557, 1556, 1326, 1333, 1559, 1557, 1333, 1326, 1328, 1557, 1333, 1559, 1557, 1561, 1557, 1331, 1328, 1333, 1333, 1557, 1331, 1561, 1557, 1558, 1331, 1561, 1561, 1334, 1331, 1333, 1554, 1350, 1325, 1347, 1350, 1554, 1325, 1556, 1554, 1562, 1556, 1350, 1326, 1556, 1350, 1325, 1562, 1559, 1555, 1556, 1559, 1562, 1555, 1563, 1560, 1559, 1555, 1563, 1564, 1562, 1559, 1563, 1560, 1565, 1559, 1563, 1565, 1560, 1559, 1561, 1565, 1564, 1559, 1563, 1326, 1333, 1355, 1559, 1326, 1559, 1350, 1556, 1350, 1559, 1562, 1556, 1562, 1564, 1559, 1350, 1355, 1350, 1326, 1559, 1564, 1350, 1355, 1559, 1559, 1358, 1333, 1355, 1358, 1559, 1333, 1561, 1358, 1564, 1355, 1559, 1559, 1565, 1561, 1358, 1334, 1561, 1358, 1333, 1564, 1358, 1565, 1559, 1350, 1353, 1564, 1355, 1360, 1353, 1355, 1564, 1564, 1358, 1355, 1360, 1571, 1572, 1568, 1570, 1568, 1571, 1570, 1569, 1572, 1571, 1574, 1570, 1392, 1571, 1569, 1570, 1392, 1396, 1571, 1570, 1396, 1571, 1570, 1574, 1581, 1582, 1578, 1580, 1578, 1581, 1580, 1579, 1582, 1581, 1584, 1580, 1402, 1581, 1579, 1580, 1402, 1406, 1581, 1580, 1406, 1581, 1580, 1584, 1589, 1567, 1568, 1590, 1567, 1589, 1566, 1587, 1589, 1567, 1566, 1569, 1589, 1588, 1566, 1587, 1567, 1589, 1568, 1569, 1567, 1590, 1589, 1587, 1566, 1412, 1391, 1409, 1412, 1566, 1391, 1569, 1412, 1588, 1409, 1566, 1566, 1589, 1569, 1412, 1392, 1569, 1412, 1391, 1588, 1412, 1589, 1566, 1591, 1592, 1586, 1588, 1588, 1592, 1586, 1587, 1592, 1588, 1589, 1587, 1592, 1590, 1587, 1589, 1590, 1592, 1593, 1589, 1589, 1592, 1593, 1594, 1592, 1591, 1594, 1588, 1588, 1592, 1589, 1594, 1414, 1591, 1588, 1594, 1588, 1412, 1409, 1414, 1414, 1588, 1412, 1594, 1588, 1589, 1412, 1594, 1594, 1415, 1412, 1414, 1589, 1571, 1568, 1569, 1568, 1589, 1590, 1595, 1571, 1589, 1568, 1595, 1572, 1571, 1568, 1595, 1596, 1589, 1571, 1595, 1597, 1572, 1573, 1598, 1572, 1597, 1571, 1595, 1597, 1572, 1571, 1574, 1597, 1596, 1571, 1595, 1572, 1597, 1573, 1574, 1572, 1598, 1597, 1595, 1392, 1396, 1417, 1571, 1392, 1571, 1412, 1569, 1412, 1571, 1589, 1569, 1589, 1596, 1571, 1412, 1417, 1412, 1392, 1571, 1596, 1412, 1417, 1571, 1571, 1420, 1396, 1417, 1420, 1571, 1396, 1574, 1420, 1596, 1417, 1571, 1571, 1597, 1574, 1420, 1397, 1574, 1420, 1396, 1596, 1420, 1597, 1571, 1599, 1600, 1593, 1596, 1593, 1589, 1595, 1590, 1596, 1600, 1593, 1595, 1596, 1589, 1593, 1594, 1589, 1596, 1593, 1595, 1593, 1599, 1596, 1594, 1600, 1596, 1597, 1595, 1600, 1598, 1595, 1597, 1598, 1600, 1601, 1597, 1597, 1600, 1601, 1602, 1600, 1599, 1602, 1596, 1596, 1600, 1597, 1602, 1596, 1589, 1594, 1412, 1415, 1599, 1594, 1596, 1412, 1415, 1596, 1417, 1415, 1412, 1596, 1594, 1415, 1422, 1599, 1596, 1422, 1415, 1417, 1596, 1422, 1599, 1596, 1602, 1596, 1420, 1417, 1422, 1422, 1596, 1420, 1602, 1596, 1597, 1420, 1602, 1602, 1423, 1420, 1422, 1597, 1575, 1573, 1574, 1573, 1597, 1598, 1603, 1575, 1597, 1573, 1603, 1604, 1597, 1575, 1603, 1397, 1575, 1420, 1574, 1420, 1575, 1597, 1574, 1597, 1604, 1575, 1420, 1425, 1420, 1397, 1575, 1604, 1420, 1425, 1575, 1605, 1606, 1601, 1604, 1601, 1597, 1603, 1598, 1604, 1606, 1601, 1603, 1604, 1597, 1601, 1602, 1597, 1604, 1601, 1603, 1601, 1605, 1604, 1602, 1604, 1597, 1602, 1420, 1423, 1605, 1602, 1604, 1420, 1423, 1604, 1425, 1423, 1420, 1604, 1602, 1423, 1429, 1605, 1604, 1429, 1423, 1425, 1604, 1610, 1577, 1578, 1611, 1577, 1610, 1576, 1608, 1610, 1577, 1576, 1579, 1610, 1609, 1576, 1608, 1577, 1610, 1578, 1579, 1577, 1611, 1610, 1608, 1576, 1437, 1401, 1434, 1437, 1576, 1401, 1579, 1437, 1609, 1434, 1576, 1576, 1610, 1579, 1437, 1402, 1579, 1437, 1401, 1609, 1437, 1610, 1576, 1612, 1613, 1607, 1609, 1609, 1613, 1607, 1608, 1613, 1609, 1610, 1608, 1613, 1611, 1608, 1610, 1611, 1613, 1614, 1610, 1610, 1613, 1614, 1615, 1613, 1612, 1615, 1609, 1609, 1613, 1610, 1615, 1432, 1439, 1612, 1609, 1439, 1432, 1434, 1609, 1439, 1612, 1609, 1615, 1609, 1437, 1434, 1439, 1439, 1609, 1437, 1615, 1609, 1610, 1437, 1615, 1615, 1440, 1437, 1439, 1610, 1581, 1578, 1579, 1578, 1610, 1611, 1616, 1581, 1610, 1578, 1616, 1582, 1581, 1578, 1616, 1617, 1610, 1581, 1616, 1618, 1582, 1583, 1619, 1582, 1618, 1581, 1616, 1618, 1582, 1581, 1584, 1618, 1617, 1581, 1616, 1582, 1618, 1583, 1584, 1582, 1619, 1618, 1616, 1402, 1406, 1442, 1581, 1402, 1581, 1437, 1579, 1437, 1581, 1610, 1579, 1610, 1617, 1581, 1437, 1442, 1437, 1402, 1581, 1617, 1437, 1442, 1581, 1581, 1445, 1406, 1442, 1445, 1581, 1406, 1584, 1445, 1617, 1442, 1581, 1581, 1618, 1584, 1445, 1407, 1584, 1445, 1406, 1617, 1445, 1618, 1581, 1620, 1621, 1614, 1617, 1614, 1610, 1616, 1611, 1617, 1621, 1614, 1616, 1617, 1610, 1614, 1615, 1610, 1617, 1614, 1616, 1614, 1620, 1617, 1615, 1621, 1617, 1618, 1616, 1621, 1619, 1616, 1618, 1619, 1621, 1622, 1618, 1618, 1621, 1622, 1623, 1621, 1620, 1623, 1617, 1617, 1621, 1618, 1623, 1617, 1610, 1615, 1437, 1440, 1620, 1615, 1617, 1437, 1440, 1617, 1442, 1440, 1437, 1617, 1615, 1440, 1447, 1620, 1617, 1447, 1440, 1442, 1617, 1447, 1620, 1617, 1623, 1617, 1445, 1442, 1447, 1447, 1617, 1445, 1623, 1617, 1618, 1445, 1623, 1623, 1448, 1445, 1447, 1618, 1585, 1583, 1584, 1583, 1618, 1619, 1624, 1585, 1618, 1583, 1624, 1625, 1618, 1585, 1624, 1407, 1585, 1445, 1584, 1445, 1585, 1618, 1584, 1618, 1625, 1585, 1445, 1450, 1445, 1407, 1585, 1625, 1445, 1450, 1585, 1626, 1627, 1622, 1625, 1622, 1618, 1624, 1619, 1625, 1627, 1622, 1624, 1625, 1618, 1622, 1623, 1618, 1625, 1622, 1624, 1622, 1626, 1625, 1623, 1625, 1618, 1623, 1445, 1448, 1626, 1623, 1625, 1445, 1448, 1625, 1450, 1448, 1445, 1625, 1623, 1592, 1591, 1586, 1628, 1630, 1592, 1593, 1631, 1592, 1630, 1591, 1628, 1630, 1592, 1591, 1594, 1630, 1629, 1591, 1628, 1592, 1630, 1593, 1594, 1592, 1631, 1630, 1628, 1591, 1455, 1414, 1453, 1455, 1591, 1414, 1594, 1455, 1629, 1453, 1591, 1591, 1630, 1594, 1455, 1415, 1594, 1455, 1414, 1629, 1455, 1630, 1591, 1632, 1629, 1630, 1628, 1632, 1631, 1628, 1630, 1631, 1632, 1633, 1630, 1630, 1632, 1633, 1634, 1629, 1632, 1630, 1634, 1629, 1455, 1453, 1456, 1456, 1629, 1455, 1634, 1629, 1630, 1455, 1634, 1634, 1457, 1455, 1456, 1630, 1599, 1593, 1594, 1593, 1630, 1631, 1635, 1599, 1630, 1593, 1635, 1600, 1599, 1593, 1635, 1636, 1630, 1599, 1635, 1637, 1600, 1601, 1638, 1600, 1637, 1599, 1635, 1637, 1600, 1599, 1602, 1637, 1636, 1599, 1635, 1600, 1637, 1601, 1602, 1600, 1638, 1637, 1635, 1415, 1422, 1459, 1599, 1415, 1599, 1455, 1594, 1455, 1599, 1630, 1594, 1630, 1636, 1599, 1455, 1459, 1455, 1415, 1599, 1636, 1455, 1459, 1599, 1599, 1462, 1422, 1459, 1462, 1599, 1422, 1602, 1462, 1636, 1459, 1599, 1599, 1637, 1602, 1462, 1423, 1602, 1462, 1422, 1636, 1462, 1637, 1599, 1639, 1640, 1633, 1636, 1633, 1630, 1635, 1631, 1636, 1640, 1633, 1635, 1636, 1630, 1633, 1634, 1630, 1636, 1633, 1635, 1633, 1639, 1636, 1634, 1640, 1636, 1637, 1635, 1640, 1638, 1635, 1637, 1638, 1640, 1641, 1637, 1637, 1640, 1641, 1642, 1640, 1639, 1642, 1636, 1636, 1640, 1637, 1642, 1636, 1630, 1634, 1455, 1457, 1639, 1634, 1636, 1455, 1457, 1636, 1459, 1457, 1455, 1636, 1634, 1457, 1464, 1639, 1636, 1464, 1457, 1459, 1636, 1464, 1639, 1636, 1642, 1636, 1462, 1459, 1464, 1464, 1636, 1462, 1642, 1636, 1637, 1462, 1642, 1642, 1465, 1462, 1464, 1637, 1605, 1601, 1602, 1601, 1637, 1638, 1643, 1605, 1637, 1601, 1643, 1606, 1605, 1601, 1643, 1644, 1637, 1605, 1643, 1423, 1429, 1467, 1605, 1423, 1605, 1462, 1602, 1462, 1605, 1637, 1602, 1637, 1644, 1605, 1462, 1467, 1462, 1423, 1605, 1644, 1462, 1467, 1605, 1641, 1637, 1643, 1638, 1644, 1637, 1641, 1642, 1637, 1644, 1641, 1643, 1644, 1637, 1642, 1462, 1462, 1465, 1644, 1467, 1465, 1462, 1644, 1642, 1613, 1612, 1607, 1645, 1647, 1613, 1614, 1648, 1613, 1647, 1612, 1645, 1647, 1613, 1612, 1615, 1647, 1646, 1612, 1645, 1613, 1647, 1614, 1615, 1613, 1648, 1647, 1645, 1432, 1439, 1472, 1612, 1612, 1475, 1439, 1472, 1475, 1612, 1439, 1615, 1475, 1646, 1472, 1612, 1612, 1647, 1615, 1475, 1440, 1615, 1475, 1439, 1646, 1475, 1647, 1612, 1649, 1646, 1647, 1645, 1649, 1648, 1645, 1647, 1648, 1649, 1650, 1647, 1647, 1649, 1650, 1651, 1646, 1649, 1647, 1651, 1646, 1475, 1472, 1476, 1476, 1646, 1475, 1651, 1646, 1647, 1475, 1651, 1651, 1477, 1475, 1476, 1647, 1620, 1614, 1615, 1614, 1647, 1648, 1652, 1620, 1647, 1614, 1652, 1621, 1620, 1614, 1652, 1653, 1647, 1620, 1652, 1654, 1621, 1622, 1655, 1621, 1654, 1620, 1652, 1654, 1621, 1620, 1623, 1654, 1653, 1620, 1652, 1621, 1654, 1622, 1623, 1621, 1655, 1654, 1652, 1440, 1447, 1479, 1620, 1440, 1620, 1475, 1615, 1475, 1620, 1647, 1615, 1647, 1653, 1620, 1475, 1479, 1475, 1440, 1620, 1653, 1475, 1479, 1620, 1620, 1482, 1447, 1479, 1482, 1620, 1447, 1623, 1482, 1653, 1479, 1620, 1620, 1654, 1623, 1482, 1448, 1623, 1482, 1447, 1653, 1482, 1654, 1620, 1656, 1657, 1650, 1653, 1650, 1647, 1652, 1648, 1653, 1657, 1650, 1652, 1653, 1647, 1650, 1651, 1647, 1653, 1650, 1652, 1650, 1656, 1653, 1651, 1657, 1653, 1654, 1652, 1657, 1655, 1652, 1654, 1655, 1657, 1658, 1654, 1654, 1657, 1658, 1659, 1657, 1656, 1659, 1653, 1653, 1657, 1654, 1659, 1653, 1647, 1651, 1475, 1477, 1656, 1651, 1653, 1475, 1477, 1653, 1479, 1477, 1475, 1653, 1651, 1477, 1484, 1656, 1653, 1484, 1477, 1479, 1653, 1484, 1656, 1653, 1659, 1653, 1482, 1479, 1484, 1484, 1653, 1482, 1659, 1653, 1654, 1482, 1659, 1659, 1485, 1482, 1484, 1654, 1626, 1622, 1623, 1622, 1654, 1655, 1660, 1626, 1654, 1622, 1660, 1627, 1626, 1622, 1660, 1661, 1654, 1626, 1660, 1448, 1626, 1482, 1623, 1482, 1626, 1654, 1623, 1654, 1661, 1626, 1482, 1487, 1482, 1448, 1626, 1661, 1482, 1487, 1626, 1658, 1654, 1660, 1655, 1661, 1654, 1658, 1659, 1654, 1661, 1658, 1660, 1661, 1654, 1659, 1482, 1482, 1485, 1661, 1487, 1485, 1482, 1661, 1659, 1662, 1632, 1633, 1663, 1632, 1662, 1633, 1634, 1662, 1639, 1633, 1634, 1633, 1662, 1663, 1664, 1639, 1662, 1633, 1664, 1640, 1639, 1633, 1664, 1665, 1640, 1641, 1666, 1640, 1665, 1639, 1664, 1665, 1640, 1639, 1642, 1640, 1665, 1641, 1642, 1640, 1666, 1665, 1664, 1668, 1649, 1650, 1669, 1649, 1668, 1650, 1651, 1668, 1656, 1650, 1651, 1650, 1668, 1669, 1670, 1656, 1668, 1650, 1670, 1657, 1656, 1650, 1670, 1671, 1657, 1658, 1672, 1657, 1671, 1656, 1670, 1671, 1657, 1656, 1659, 1657, 1671, 1658, 1659, 1657, 1672, 1671, 1670, 1675, 1510, 1507, 1509, 1489, 1492, 1512, 1667, 1674, 1676, 1667, 1507, 1512, 1507, 1489, 1667, 1676, 1507, 1512, 1667, 1667, 1515, 1492, 1512, 1515, 1676, 1512, 1667, 1676, 1515, 1677, 1667, 1679, 1678, 1680, 1676, 1676, 1679, 1677, 1680, 1676, 1674, 1675, 1507, 1510, 1678, 1675, 1676, 1507, 1510, 1676, 1512, 1510, 1507, 1676, 1675, 1510, 1517, 1678, 1676, 1517, 1510, 1512, 1676, 1517, 1678, 1676, 1680, 1676, 1515, 1512, 1517, 1517, 1676, 1515, 1680, 1676, 1677, 1515, 1680, 1680, 1518, 1515, 1517, 1683, 1527, 1524, 1526, 1498, 1501, 1529, 1673, 1681, 1684, 1673, 1524, 1529, 1524, 1498, 1673, 1684, 1524, 1529, 1673, 1673, 1532, 1501, 1529, 1532, 1684, 1529, 1673, 1684, 1532, 1685, 1673, 1684, 1681, 1682, 1683, 1682, 1686, 1684, 1683, 1684, 1681, 1683, 1524, 1527, 1686, 1683, 1684, 1524, 1527, 1684, 1529, 1527, 1524, 1684, 1683, 1527, 1534, 1686, 1684, 1534, 1527, 1529, 1684, 1534, 1686, 1684, 1687, 1684, 1532, 1529, 1534, 1534, 1684, 1532, 1687, 1684, 1685, 1532, 1687, 1687, 1535, 1532, 1534, 1510, 1675, 1541, 1509, 1510, 1517, 1542, 1678, 1510, 1678, 1541, 1675, 1542, 1541, 1510, 1678, 1678, 1545, 1517, 1542, 1545, 1678, 1517, 1680, 1518, 1680, 1545, 1517, 1527, 1683, 1548, 1526, 1527, 1534, 1549, 1686, 1527, 1686, 1548, 1683, 1549, 1548, 1527, 1686, 1686, 1552, 1534, 1549, 1552, 1686, 1534, 1687, 1535, 1687, 1552, 1534, 1690, 1593, 1590, 1592, 1568, 1572, 1595, 1688, 1595, 1590, 1568, 1688, 1691, 1590, 1595, 1688, 1688, 1598, 1572, 1595, 1598, 1691, 1595, 1688, 1593, 1692, 1690, 1691, 1590, 1593, 1691, 1595, 1593, 1590, 1691, 1690, 1593, 1600, 1692, 1691, 1600, 1593, 1595, 1691, 1600, 1692, 1691, 1693, 1691, 1598, 1595, 1600, 1600, 1691, 1598, 1693, 1693, 1601, 1598, 1600, 1601, 1695, 1693, 1694, 1598, 1601, 1694, 1603, 1601, 1598, 1694, 1693, 1601, 1606, 1695, 1694, 1606, 1601, 1603, 1694, 1607, 1613, 1697, 1696, 1613, 1607, 1608, 1696, 1613, 1697, 1696, 1698, 1696, 1611, 1608, 1613, 1613, 1696, 1611, 1698, 1698, 1614, 1611, 1613, 1578, 1582, 1616, 1689, 1616, 1611, 1578, 1689, 1699, 1611, 1616, 1689, 1689, 1619, 1582, 1616, 1619, 1699, 1616, 1689, 1614, 1700, 1698, 1699, 1611, 1614, 1699, 1616, 1614, 1611, 1699, 1698, 1614, 1621, 1700, 1699, 1621, 1614, 1616, 1699, 1621, 1700, 1699, 1701, 1699, 1619, 1616, 1621, 1621, 1699, 1619, 1701, 1701, 1622, 1619, 1621, 1593, 1690, 1631, 1592, 1702, 1633, 1631, 1632, 1593, 1600, 1635, 1692, 1593, 1692, 1631, 1690, 1635, 1631, 1593, 1692, 1703, 1631, 1635, 1692, 1692, 1638, 1600, 1635, 1638, 1692, 1600, 1693, 1638, 1703, 1635, 1692, 1601, 1693, 1638, 1600, 1633, 1704, 1702, 1703, 1631, 1633, 1703, 1635, 1633, 1631, 1703, 1702, 1633, 1640, 1704, 1703, 1640, 1633, 1635, 1703, 1640, 1704, 1703, 1705, 1703, 1638, 1635, 1640, 1640, 1703, 1638, 1705, 1705, 1641, 1638, 1640, 1601, 1606, 1643, 1695, 1601, 1695, 1638, 1693, 1643, 1638, 1601, 1695, 1706, 1638, 1643, 1695, 1638, 1641, 1706, 1643, 1641, 1638, 1706, 1705, 1607, 1613, 1645, 1697, 1697, 1648, 1613, 1645, 1648, 1697, 1613, 1698, 1648, 1707, 1645, 1697, 1614, 1698, 1648, 1613, 1707, 1648, 1645, 1649, 1649, 1707, 1648, 1708, 1708, 1650, 1648, 1649, 1614, 1621, 1652, 1700, 1614, 1700, 1648, 1698, 1652, 1648, 1614, 1700, 1709, 1648, 1652, 1700, 1700, 1655, 1621, 1652, 1655, 1700, 1621, 1701, 1655, 1709, 1652, 1700, 1622, 1701, 1655, 1621, 1650, 1710, 1708, 1709, 1648, 1650, 1709, 1652, 1650, 1648, 1709, 1708, 1650, 1657, 1710, 1709, 1657, 1650, 1652, 1709, 1657, 1710, 1709, 1711, 1709, 1655, 1652, 1657, 1657, 1709, 1655, 1711, 1711, 1658, 1655, 1657, 1633, 1702, 1663, 1632, 1633, 1640, 1664, 1704, 1633, 1704, 1663, 1702, 1664, 1663, 1633, 1704, 1704, 1666, 1640, 1664, 1666, 1704, 1640, 1705, 1641, 1705, 1666, 1640, 1650, 1708, 1669, 1649, 1650, 1657, 1670, 1710, 1650, 1710, 1669, 1708, 1670, 1669, 1650, 1710, 1710, 1672, 1657, 1670, 1672, 1710, 1657, 1711, 1658, 1711, 1672, 1657] point3f[] points = [(-11.9725, -220.3615, -174.44751), (-0.5175, -207.199, -195.252), (12.120501, -219.816, -175.0735), (-59.667503, -173.445, -172.0085), (-45.749, -196.34999, -173.082), (-24.685999, -198.38101, -189.059), (-27.959, -206.441, -166.98601), (-40.356, -174.6305, -182.0885), (-13.111, -175.9565, -178.5145), (-24.014, -174.9445, -200.124), (-0.0555, -206.15, -178.2005), (0.04, -187.053, -203.299), (24.98, -198.267, -188.85849), (27.257, -206.983, -167.283), (0.054, -162.70549, -204.7445), (12.891, -176.1185, -178.1905), (40.4305, -174.91301, -182.08), (23.678501, -175.4485, -199.9455), (45.899, -197.1275, -171.84549), (59.677002, -173.75099, -171.692), (-74.5075, -149.65651, -165.0285), (-81.296, -123.9165, -167.8775), (-61.869, -124.025, -177.7755), (-51.7045, -149.564, -180.2665), (-26.7215, -149.12701, -191.6915), (-26.3545, -150.17299, -166.095), (-41.585, -123.914505, -186.50401), (-13.4355, -124.83, -176.182), (-23.0325, -125.048996, -193.676), (-0.17650001, -150.39099, -177.41049), (-0.096, -137.456, -197.6325), (26.973501, -149.744, -191.548), (26.879, -150.0445, -166.7385), (-0.73550004, -112.438, -196.07051), (13.0385, -124.7985, -175.88051), (42.411, -124.645004, -186.355), (22.786999, -125.496506, -193.69601), (51.7595, -149.465, -180.15251), (74.625496, -150.481, -165.069), (62.600502, -124.4675, -177.409), (81.1275, -124.709, -167.52701), (-75.496, -97.9645, -167.72249), (-80.564995, -75.762, -166.425), (-60.642498, -73.5045, -175.8005), (-51.738503, -98.4105, -183.587), (-27.4665, -99.738, -191.998), (-26.2795, -99.6285, -165.37251), (-40.3495, -72.4345, -184.0345), (-13.101999, -75.329994, -174.244), (-23.096998, -75.723495, -190.965), (-0.245, -100.073006, -175.0145), (0.282, -88.1885, -194.769), (27.696499, -100.220505, -192.045), (26.672499, -99.943, -165.9185), (-1.039, -64.44949, -191.02951), (12.7039995, -75.239006, -173.63701), (41.0935, -73.788, -184.2385), (22.776499, -76.0905, -190.81999), (52.6165, -98.3785, -183.2315), (76.309006, -99.2235, -167.174), (61.3565, -74.85249, -175.72751), (80.2565, -76.0815, -166.681), (-72.972, -48.85, -161.07849), (-57.9745, -25.34, -166.73949), (-49.473, -49.5045, -176.038), (-25.0185, -49.4835, -185.1725), (-25.3575, -49.023, -163.2055), (-36.415497, -23.6525, -172.9505), (-12.7285, -23.0965, -177.5535), (1.5425, -42.9915, -184.7265), (24.7705, -49.369, -185.10901), (24.942501, -48.759, -162.6475), (12.9535, -22.906, -177.43849), (36.147503, -23.827, -173.169), (49.3945, -49.696503, -176.0895), (73.072, -49.59, -161.799), (57.5135, -27.702, -166.906), (-25.318, 1.9195, -161.7455), (-1.577, -3.562, -168.191), (25.0245, 1.4505, -162.13649), (-23.5275, 51.508503, -155.117), (21.595, 50.5705, -155.2355), (-23.3975, 101.2335, -159.04901), (22.508, 101.267006, -159.23651), (-60.861, -219.8555, -123.77), (-48.5, -209.09799, -149.514), (-36.793, -223.8315, -126.74349), (-12.280499, -223.7075, -127.1165), (-24.6355, -218.408, -149.36351), (0.0855, -216.4845, -154.188), (12.6595, -223.4265, -127.70351), (36.146, -223.87851, -126.542496), (25.7325, -218.308, -149.7345), (48.674503, -208.71849, -149.474), (60.6875, -219.2935, -124.6345), (-107.599495, -173.6445, -124.562004), (-95.829, -195.79651, -125.715004), (-75.5685, -198.0645, -139.959), (-79.285, -205.405, -116.987), (-94.7675, -161.67351, -147.5875), (-90.687, -177.5155, -131.0475), (-64.154, -176.06001, -127.7905), (-76.826, -177.3685, -154.19801), (-50.3545, -198.985, -126.7945), (-54.977497, -190.639, -156.2785), (-25.4135, -199.7155, -140.11299), (-24.997, -201.10901, -114.3255), (-50.29, -162.6395, -152.135), (-38.34, -175.40251, -127.486496), (-12.8925, -175.70651, -127.50299), (-26.4515, -176.2815, -153.872), (0.201, -200.4485, -127.375496), (-0.2845, -189.419, -153.56151), (24.994999, -200.361, -140.5205), (24.863998, -201.2685, -114.612), (-0.121999994, -163.04, -152.99), (12.4485, -175.86, -127.556), (38.1925, -175.75949, -127.39649), (26.148998, -176.455, -154.1985), (50.3065, -199.0455, -126.4895), (54.582996, -190.442, -156.0025), (75.429, -198.24199, -140.024), (79.0075, -205.3525, -117.445), (50.7005, -162.743, -152.9155), (63.833996, -176.091, -127.720505), (91.0395, -178.0835, -131.8935), (76.661995, -176.60999, -154.58751), (96.168, -196.298, -124.64), (94.4405, -161.83301, -146.51201), (108.0595, -174.218, -123.9685), (-118.0605, -147.37799, -111.678505), (-110.5925, -123.675, -128.76799), (-106.1095, -150.1055, -130.1705), (-96.492, -136.7325, -148.41249), (-75.2685, -150.467, -138.9585), (-75.73, -149.76201, -114.473), (-96.991005, -111.1015, -150.3405), (-87.292, -124.1515, -126.74551), (-62.488, -124.211, -126.7405), (-72.518, -123.955505, -150.229), (-50.838, -150.068, -127.29751), (-50.504498, -137.512, -152.92899), (-25.538, -150.0905, -140.202), (-25.416, -150.0015, -114.579994), (-50.403, -111.457, -153.061), (-37.819, -124.3285, -127.045494), (-12.5915, -124.45, -126.9775), (-26.264, -124.5735, -152.8295), (-0.35250002, -150.263, -127.413), (-0.129, -137.248, -152.67401), (25.382, -149.93051, -140.1825), (25.035, -150.22699, -114.5465), (-0.076, -112.404, -151.6875), (12.559999, -124.6775, -126.856995), (37.681, -124.6785, -126.783), (26.6205, -124.588, -153.46199), (50.348503, -150.31651, -127.004), (50.6015, -137.64299, -152.951), (74.985, -150.598, -139.365), (75.9255, -150.17299, -114.9285), (50.735, -111.658, -153.0295), (62.5915, -124.814, -126.5395), (87.316, -124.666, -126.753494), (72.633995, -124.8155, -149.7795), (106.242004, -149.93501, -130.1035), (96.395004, -137.5535, -148.418), (118.349, -148.3985, -111.0385), (97.499, -111.976, -149.569), (110.9245, -124.00549, -128.0215), (-115.4665, -97.1055, -113.088), (-110.6715, -72.943, -127.473), (-108.1915, -99.189995, -131.761), (-97.0905, -86.5665, -149.5885), (-74.174, -98.687996, -138.827), (-74.3855, -98.1235, -114.0225), (-95.390495, -62.058002, -146.9945), (-86.579, -73.377, -126.11599), (-61.897503, -73.4475, -125.85349), (-71.257, -73.553505, -148.615), (-49.940002, -98.77, -126.3525), (-50.008, -86.3225, -152.4995), (-25.2635, -99.409, -139.385), (-25.140001, -98.986, -113.795494), (-49.2595, -61.1415, -150.9395), (-37.402, -73.70901, -126.101494), (-12.4685, -74.2635, -125.96551), (-25.8095, -74.4425, -151.4205), (-0.028, -99.553505, -126.3725), (-0.077, -87.355, -151.38849), (25.1, -99.6695, -139.1645), (24.9555, -99.636, -113.5955), (-0.168, -61.883, -150.727), (12.528999, -74.609505, -125.88801), (37.419502, -74.5795, -125.814), (26.0345, -74.626495, -151.935), (49.829502, -99.906, -126.1915), (49.97, -87.3225, -152.127), (74.181496, -99.986, -138.745), (74.9465, -99.707, -113.922), (49.6255, -61.975, -150.5515), (61.756, -74.651, -125.44399), (86.5815, -74.9795, -125.811), (70.893, -75.377, -148.511), (108.5945, -97.949, -131.8615), (97.242, -87.73151, -149.57399), (115.288506, -99.54401, -111.696), (95.611496, -62.823498, -146.3135), (111.3455, -74.761, -126.702995), (-116.4465, -48.163998, -110.252), (-107.0785, -24.0105, -121.8585), (-103.9215, -48.2225, -128.03749), (-93.059006, -37.7445, -144.18849), (-73.666, -48.8605, -136.7395), (-74.9155, -48.172, -113.6065), (-90.020996, -21.4085, -129.42099), (-62.721996, -23.285501, -125.893), (-76.0165, -22.0565, -149.903), (-49.753498, -48.56, -125.642), (-49.019, -36.2625, -149.41501), (-25.124, -48.850998, -138.267), (-25.292, -48.7385, -113.233), (-52.728, -6.7975, -156.327), (-37.8795, -23.329, -126.26199), (-12.842999, -23.720499, -125.8685), (-25.351, -23.303, -150.7905), (-0.111, -49.103, -125.737), (-0.0165, -36.098, -151.024), (24.886002, -49.364002, -137.9575), (24.827, -49.3975, -112.953995), (0.2105, -11.276, -149.884), (12.245999, -23.736, -125.552505), (37.491, -23.7405, -125.42351), (24.5665, -23.733, -149.612), (49.772003, -49.429497, -125.175), (48.661, -36.966, -148.8385), (73.310005, -49.8885, -136.5455), (75.073, -49.297, -113.284), (53.3765, -7.404, -156.6245), (62.571503, -23.8615, -125.3505), (90.6245, -22.296, -129.50299), (75.753006, -23.0245, -150.69699), (103.7425, -48.908497, -128.526), (92.990005, -38.601, -144.2515), (116.524, -50.053, -109.6955), (107.282, -25.9005, -122.134), (-95.9265, -3.282, -122.423996), (-74.9975, 0.287, -137.98601), (-73.850494, 0.17650001, -112.466), (-81.3675, 17.916, -117.099), (-59.647003, 27.8035, -124.832504), (-49.6855, 1.3670001, -126.2355), (-48.823498, 14.1845, -147.807), (-25.507, 2.246, -138.72), (-25.594501, 1.2215, -113.6305), (-45.0695, 38.9385, -142.60649), (-39.554, 28.9445, -129.8455), (-13.31, 26.332, -126.241), (-25.319, 26.5145, -147.1665), (-0.25849998, 1.5695, -126.0505), (0.1565, 17.394001, -154.5745), (24.7, 1.601, -138.07251), (24.4695, 1.181, -112.9755), (-0.6355, 38.0815, -147.692), (12.033, 26.1565, -126.123505), (35.558, 25.251999, -124.08), (22.785, 25.8395, -147.8355), (49.323997, 1.05, -124.9365), (47.821, 13.1475, -147.802), (74.9715, 0.5845, -137.943), (72.721, -0.891, -111.233505), (42.848503, 33.961502, -139.1295), (60.463, 27.262001, -124.4085), (80.4745, 18.1705, -117.208), (95.201004, -2.859, -122.412), (-68.106, 53.4375, -132.154), (-73.6835, 47.434, -111.3075), (-81.618004, 75.6705, -120.715996), (-63.219, 75.354004, -129.0645), (-50.9355, 48.310997, -127.4965), (-47.156, 64.3465, -145.739), (-26.431501, 49.525, -139.86), (-25.633, 50.2425, -114.368), (-48.764, 88.386, -146.7145), (-37.374, 75.552, -126.13051), (-12.807, 75.359505, -127.391), (-24.664999, 75.707, -154.751), (-0.19849999, 50.781002, -126.9775), (0.1045, 62.573997, -154.4315), (25.097, 49.357998, -140.894), (24.865501, 50.0625, -113.7875), (0.3215, 87.211, -159.3235), (12.54, 75.33501, -127.777504), (37.631, 74.935, -125.867), (24.432, 75.476494, -154.58751), (52.287003, 48.271, -127.40099), (47.4905, 63.288002, -145.638), (68.723, 51.986, -132.00299), (72.5755, 46.2, -110.2605), (48.949497, 87.355, -146.7105), (63.2715, 74.207, -128.029), (81.736496, 75.8745, -119.874), (-72.189, 100.268, -134.7325), (-79.9405, 102.341, -116.209), (-83.5075, 123.8815, -121.0605), (-65.580505, 127.08551, -128.5885), (-50.3445, 101.054, -125.68951), (-47.998997, 112.8165, -147.72751), (-25.021, 101.20599, -138.65399), (-25.4705, 100.7255, -114.057), (-47.265, 135.42201, -142.28549), (-37.916, 126.104, -125.312004), (-12.799001, 126.371994, -127.0335), (-24.086, 126.2795, -153.30049), (-0.344, 100.8625, -127.765), (-0.047500003, 115.104, -159.6535), (24.123, 100.727, -139.26799), (25.035, 100.7945, -113.988), (0.4765, 138.7715, -152.5765), (12.6745, 126.467, -127.5005), (37.288, 126.14749, -125.689995), (24.206501, 125.9805, -153.2955), (49.9365, 100.4035, -125.405), (48.025, 112.600494, -147.8865), (72.456, 99.548, -134.333), (80.407, 101.1025, -115.056), (46.2445, 135.8925, -142.407), (64.9295, 128.3425, -128.82901), (80.722, 123.034996, -117.7615), (-72.9255, 149.428, -111.998), (-53.357502, 153.7325, -127.675995), (-26.7385, 153.985, -140.9115), (-25.765, 151.537, -113.9915), (-36.996, 173.1835, -122.891), (-12.016999, 178.023, -125.8705), (-0.363, 150.636, -125.2975), (-0.70600003, 160.465, -144.6985), (26.864, 153.73451, -141.207), (25.2465, 151.1315, -113.755005), (12.601999, 177.873, -126.061005), (36.96, 173.134, -122.5255), (53.2675, 154.82999, -127.653496), (71.679, 151.602, -111.5335), (-23.5355, 191.369, -105.509995), (22.321001, 191.51349, -105.7715), (-97.1285, -210.3525, -100.3205), (-87.891, -224.55449, -76.173996), (-65.0225, -232.8695, -76.3395), (-74.496, -223.354, -100.569), (-48.503002, -233.8655, -99.019), (-49.957, -213.3485, -101.342), (-36.689503, -236.32149, -75.8545), (-12.228, -232.95801, -76.579506), (-23.999, -231.3775, -103.4315), (0.0095, -231.60649, -99.542496), (-0.036000002, -213.5025, -101.325), (12.7745, -232.7835, -76.584), (36.656498, -236.159, -76.483505), (23.383001, -231.46451, -103.095), (48.699497, -233.566, -99.494), (49.4355, -213.51651, -101.53), (64.451004, -232.98851, -76.511505), (88.055, -224.6595, -75.7175), (74.8255, -223.383, -101.433), (97.4435, -210.2285, -99.6745), (-119.556, -195.93149, -87.579506), (-120.9205, -196.38, -62.955498), (-119.088005, -175.7215, -77.350494), (-117.74, -171.9185, -100.164505), (-105.805, -206.3295, -77.65), (-104.126, -189.814, -102.3335), (-76.066, -201.25601, -88.9245), (-76.646996, -203.318, -63.853004), (-99.308, -161.872, -101.481995), (-89.787994, -176.106, -76.3715), (-63.516, -176.2815, -76.379), (-76.8335, -176.448, -101.954994), (-50.8945, -203.844, -76.6785), (-50.921, -188.931, -102.001), (-25.129501, -202.98601, -89.2635), (-25.078499, -203.846, -63.8465), (-50.751, -162.947, -101.8105), (-38.16, -176.49551, -76.322), (-12.783999, -176.72551, -76.363495), (-25.6025, -175.824, -101.777504), (0.3745, -203.42549, -76.812996), (-0.0905, -189.041, -101.83099), (25.1535, -202.885, -89.649994), (25.315, -203.61, -64.053), (-0.3435, -163.1605, -101.887), (12.599, -176.6905, -76.472496), (38.142498, -176.59401, -76.981), (25.1525, -175.89099, -101.7645), (50.524, -204.0145, -76.578995), (50.6615, -189.1135, -102.2015), (75.9495, -201.65651, -89.1165), (76.65, -203.275, -64.039), (50.775497, -163.032, -102.3545), (63.589, -176.3685, -76.782005), (89.679, -176.1145, -76.991), (77.0215, -176.8745, -102.805504), (106.0595, -205.3975, -78.1895), (103.9745, -189.79851, -102.6265), (119.3025, -196.642, -87.7065), (121.1565, -197.413, -61.577), (99.6455, -161.8755, -101.023), (118.448, -176.32251, -77.419495), (117.6825, -173.069, -99.479), (-125.611496, -147.0735, -88.5605), (-130.588, -147.6205, -64.129005), (-118.513, -118.309494, -76.1885), (-118.1735, -122.723495, -103.759995), (-102.64, -148.81299, -76.351006), (-99.712, -135.9795, -101.5305), (-75.9735, -149.6035, -88.854), (-76.3275, -149.28, -63.6345), (-97.655495, -109.484, -101.7855), (-89.448494, -121.8985, -75.809006), (-63.456997, -123.6765, -75.9065), (-75.1505, -123.756996, -101.444496), (-50.8205, -150.326, -76.166504), (-50.5745, -137.07199, -101.62), (-25.484999, -150.347, -89.083), (-25.445, -150.66449, -63.422), (-50.299, -111.5745, -101.087), (-37.956497, -124.41901, -75.949), (-12.612, -124.848, -76.137), (-25.206501, -124.408, -101.7025), (-0.0855, -150.4765, -76.387), (-0.15900001, -137.644, -102.18951), (25.105501, -150.33249, -89.253), (25.279001, -150.69351, -63.737495), (0.281, -112.1295, -101.386), (12.606999, -124.861, -76.2165), (37.7685, -124.8785, -76.2405), (25.0055, -124.4785, -101.53249), (50.7055, -150.587, -76.631004), (50.359, -137.41, -101.8445), (76.0865, -150.2645, -89.3685), (76.4305, -150.2755, -64.099), (50.208, -112.224, -101.328), (63.215004, -124.8135, -76.224495), (89.344, -124.2875, -76.0885), (75.4385, -124.726494, -101.6025), (102.9945, -149.106, -76.8545), (99.951996, -136.97, -101.441505), (125.81, -149.0105, -88.457), (130.7805, -148.892, -65.2475), (97.9645, -111.9835, -100.9995), (118.109505, -122.0695, -77.0205), (119.095, -124.417, -102.183), (-114.761, -96.872, -90.8125), (-116.1845, -72.9115, -76.256996), (-116.303505, -71.8435, -100.671), (-109.189, -95.6455, -71.9755), (-97.319496, -85.1655, -101.5015), (-75.5505, -97.984, -88.411), (-76.363, -95.591, -63.211002), (-98.9675, -60.1605, -101.446), (-88.228004, -71.943, -75.376), (-62.731, -72.8925, -75.7335), (-74.5745, -73.055, -101.1025), (-50.666, -98.502, -75.793495), (-50.053997, -85.88, -100.998), (-25.104, -99.388, -88.339005), (-25.08, -99.0785, -63.315502), (-50.047497, -60.916, -100.6), (-37.532, -73.5215, -75.7135), (-12.3255005, -74.216, -75.795006), (-25.071001, -73.9245, -100.827), (-0.018000001, -99.61, -75.9475), (0.0315, -87.0475, -100.901), (25.160501, -99.595, -88.597), (25.108, -99.3755, -63.3905), (-0.296, -61.681503, -100.422005), (12.4625, -74.2235, -75.6915), (37.477, -74.09, -75.73399), (24.897, -74.4235, -100.506996), (50.3305, -99.4365, -75.96), (49.9445, -87.018, -101.15099), (75.0185, -99.46999, -88.6295), (75.9745, -98.749, -62.9855), (49.892998, -61.719997, -100.5635), (62.560497, -74.013, -75.639), (87.904, -73.8485, -75.634), (74.4505, -74.3115, -100.865), (108.7665, -96.956, -71.867), (98.022995, -86.9395, -101.06451), (115.369, -98.815, -90.6915), (120.902504, -102.9955, -61.2945), (98.445496, -61.937, -100.5605), (115.347496, -73.708, -75.379), (116.318, -73.553505, -99.503006), (-126.34601, -49.827, -88.476006), (-133.0505, -54.602, -64.4515), (-134.7755, -25.754, -74.8405), (-112.833, -24.050999, -75.2955), (-121.08, -24.1545, -98.9215), (-101.2665, -48.281, -75.6905), (-98.547, -36.165, -100.628006), (-75.224495, -48.2, -88.2225), (-75.2985, -48.204502, -63.2025), (-107.399, -8.3075, -105.9645), (-88.194, -23.2665, -75.862495), (-62.820503, -23.383001, -75.5915), (-75.559494, -23.185, -101.3285), (-50.0065, -48.324, -75.659), (-50.1865, -35.932, -100.9035), (-25.0605, -48.694, -88.14001), (-25.1015, -48.647003, -62.969498), (-50.2355, -11.043, -100.8325), (-37.6865, -23.506, -75.6315), (-12.525, -23.7295, -75.57), (-25.488499, -23.69, -100.868004), (-0.131, -48.899, -75.581), (-0.248, -36.418503, -100.426), (24.7365, -49.1195, -88.015495), (24.973501, -48.8035, -63.0735), (-0.1715, -11.2165, -100.651), (12.443999, -23.764, -75.5485), (37.5805, -23.7915, -75.3695), (24.779501, -23.884499, -100.409004), (49.772003, -49.037, -75.444), (49.9095, -36.626, -100.471), (74.6325, -49.246, -87.9965), (75.269, -48.902, -63.127502), (49.8485, -11.623, -100.0385), (62.776, -23.8355, -75.3385), (87.95599, -23.598, -75.4525), (75.5905, -23.814499, -100.5665), (99.623, -49.6735, -75.7055), (98.04, -37.3305, -99.9545), (125.961494, -51.422, -88.48), (132.707, -55.2955, -65.389), (107.8825, -7.5090003, -106.972), (112.6485, -24.768, -75.841), (135.04251, -26.958, -75.2165), (120.942505, -26.439, -99.4585), (-121.8305, -0.48950002, -87.0685), (-127.489, 2.6505, -63.0155), (-109.82, 21.6105, -74.512), (-99.4615, 1.0455, -75.4515), (-100.599, 14.073, -100.8), (-75.7995, 1.704, -88.569496), (-75.8695, 1.2545, -62.5045), (-86.6165, 30.247, -76.7165), (-64.973, 24.8705, -74.9645), (-75.738495, 28.5495, -99.8995), (-50.668, 1.211, -75.4855), (-50.4595, 13.693, -100.9965), (-25.3375, 1.2870001, -88.188), (-25.304998, 1.128, -63.140495), (-50.6755, 37.62, -101.356), (-38.5345, 25.189999, -75.727), (-12.8185005, 25.463, -75.7275), (-25.842, 26.085499, -101.3825), (0.0285, 1.1869999, -75.7595), (-0.405, 13.655499, -100.787), (25.047, 1.1945, -87.9825), (25.2, 0.9635, -63.105003), (-0.368, 38.069, -101.0185), (12.613999, 25.855, -75.675), (38.156, 25.1275, -75.255), (24.359999, 25.572, -100.178), (50.7905, 1.0949999, -75.2585), (49.701, 13.278, -100.1175), (75.875496, 1.536, -87.898), (75.7475, 1.511, -62.457497), (50.2785, 36.613503, -99.9245), (64.411995, 25.237, -75.03651), (87.53, 29.754501, -74.736), (76.164, 27.2375, -99.5235), (99.253, 0.103, -74.59), (100.442, 14.3689995, -100.793), (121.361, -0.61, -87.144005), (127.645996, 2.976, -63.0095), (109.5185, 22.4625, -74.502495), (-102.132, 75.603004, -72.224495), (-93.323, 51.28, -73.3935), (-91.565994, 62.2805, -97.067), (-80.332, 45.213497, -89.178), (-84.099, 42.142, -58.4305), (-93.9465, 88.3035, -98.903), (-84.2325, 74.5155, -73.3255), (-63.548, 74.0145, -74.4565), (-72.5275, 75.7725, -99.782), (-52.057503, 48.8615, -75.389496), (-50.7235, 61.645, -101.0385), (-25.723, 49.9975, -88.571495), (-26.0225, 49.503, -62.918), (-50.5815, 88.049, -101.4475), (-38.580498, 74.541504, -75.776), (-13.007, 75.0815, -76.132996), (-25.141998, 75.221504, -101.739), (-0.0535, 50.347, -75.868004), (-0.13, 62.789, -101.538), (25.539501, 49.853, -88.2225), (25.759499, 49.871502, -62.924496), (-0.1635, 88.027, -101.642), (12.7035, 74.97, -75.821), (38.4555, 74.5745, -75.4145), (25.346, 75.2145, -101.0385), (51.6125, 49.161503, -74.758), (50.407497, 61.121002, -100.428), (79.703, 45.077, -88.724), (84.116, 43.911, -60.139), (50.7235, 87.365, -100.519005), (63.552498, 73.8105, -74.573006), (84.954, 73.7145, -72.7295), (72.101, 73.7555, -98.840996), (93.819, 51.09, -71.9995), (91.7055, 61.2625, -97.09151), (94.4, 87.265495, -97.231), (101.929504, 74.948, -71.5125), (-100.9715, 100.7145, -73.481), (-93.668495, 112.4705, -97.836006), (-74.847496, 100.8435, -87.389), (-76.8045, 100.034, -61.6945), (-92.403, 135.402, -97.259995), (-94.425, 126.633, -76.402), (-64.399506, 125.4805, -75.749504), (-78.3785, 126.4915, -102.8895), (-50.993, 100.303, -75.601), (-51.247997, 113.6745, -101.4205), (-25.593, 100.725006, -88.931), (-25.6595, 100.3345, -63.4515), (-51.8395, 138.8195, -102.206), (-38.406498, 125.801506, -76.035995), (-12.7575, 125.764, -76.0475), (-25.634, 126.074, -101.51), (-0.2235, 100.4435, -76.083), (-0.14750001, 113.4085, -101.972), (25.495, 100.4885, -88.421005), (25.635, 100.3945, -63.132004), (-0.21499999, 138.67299, -100.921), (12.642, 125.82851, -75.7685), (38.017998, 125.701996, -75.2155), (25.1185, 126.047, -101.2535), (51.066, 99.974495, -75.209496), (50.4245, 113.304504, -100.433), (74.6205, 99.634995, -86.947), (76.6815, 99.726, -61.821503), (50.461502, 139.6165, -100.657), (63.7535, 125.7655, -74.416504), (95.769005, 126.06999, -74.927), (71.1015, 125.2675, -96.262), (100.8965, 100.58, -72.671005), (94.1235, 111.226, -96.9565), (90.632996, 135.647, -93.53), (-93.639, 150.47299, -72.087494), (-80.201, 151.256, -89.717), (-75.102005, 149.5655, -62.092503), (-87.8175, 173.40501, -71.96349), (-62.653496, 174.0485, -70.750496), (-70.569, 172.772, -92.379), (-51.4735, 150.716, -75.534996), (-55.597, 167.15451, -105.5095), (-25.5145, 151.222, -88.478), (-25.3175, 150.577, -62.8275), (-48.675, 186.992, -96.1355), (-37.708, 175.7975, -73.744995), (-12.3435, 175.94551, -74.753), (-23.6835, 174.0925, -97.8255), (0.0705, 151.022, -75.879), (-0.154, 163.798, -100.307), (25.207, 151.4575, -87.971504), (24.831001, 150.8805, -62.357502), (-0.372, 194.6545, -102.21751), (12.1125, 176.1415, -74.908005), (37.420998, 175.9095, -73.1745), (23.373001, 173.6875, -97.903496), (50.5895, 150.792, -74.4915), (55.5455, 167.8775, -105.156), (79.865, 153.483, -89.5205), (74.783, 150.09349, -61.433502), (48.532, 187.3305, -95.33), (61.7525, 174.109, -70.5175), (87.591995, 174.4515, -71.503), (69.8105, 174.00201, -92.269005), (93.806, 149.54799, -72.139), (-69.6035, 191.578, -78.1425), (-80.834, 203.968, -57.907), (-47.8625, 203.5685, -71.66499), (-24.755999, 199.5915, -84.7285), (-23.64, 202.84749, -62.176), (-0.4315, 202.01901, -75.433), (24.918999, 199.37401, -85.1465), (23.6665, 202.802, -62.913002), (48.242, 203.94249, -70.786995), (68.7595, 192.2885, -78.016495), (80.537, 203.99051, -58.3395), (-110.6485, -221.0395, -24.8435), (-105.6255, -218.599, -53.2055), (-87.473495, -230.8625, -25.4915), (-60.374, -232.85199, -24.050999), (-78.2295, -232.448, -52.285), (-49.6195, -237.6505, -51.4265), (-50.2275, -217.0435, -51.218), (-36.913, -229.1185, -26.187), (-12.725, -224.4625, -27.4335), (-24.409, -234.1165, -51.954998), (1.132, -233.88501, -53.6755), (0.627, -215.045, -51.8855), (12.848, -224.741, -27.337502), (36.67, -229.262, -26.2415), (25.004, -234.0575, -52.033), (50.154, -237.8155, -51.55), (50.053, -216.9505, -51.2005), (60.6815, -232.63951, -24.59), (87.126, -230.6715, -26.0605), (77.843506, -232.56651, -51.556), (105.5925, -218.495, -53.121002), (111.132, -220.713, -26.2415), (-124.304504, -198.819, -38.1255), (-126.499504, -200.9135, -13.3825), (-135.9145, -173.0215, -26.26), (-112.9265, -175.3875, -26.595499), (-130.1945, -173.0715, -52.3435), (-100.106, -200.4045, -26.1465), (-101.393, -188.416, -51.325), (-75.719, -203.49, -38.49), (-75.042, -202.7675, -12.9875), (-102.7105, -162.18651, -51.6235), (-88.391, -175.87, -25.861), (-63.222496, -176.8105, -25.491), (-76.322, -176.1035, -50.812), (-49.8155, -204.7325, -25.435001), (-50.7705, -190.1465, -50.908497), (-25.199501, -203.2515, -38.725998), (-23.789, -207.1, -10.804), (-50.6875, -163.522, -50.8815), (-38.026, -177.24849, -25.301498), (-12.7994995, -176.886, -25.727499), (-25.7395, -176.7985, -50.676), (0.1895, -200.88249, -26.912498), (0.0165, -189.7075, -51.3115), (25.092499, -202.58801, -38.884), (23.654001, -205.293, -11.4655), (-0.222, -163.733, -50.989), (12.4215, -176.4485, -25.776999), (38.0795, -176.52, -25.980501), (25.073, -176.691, -51.2645), (49.7565, -204.0125, -25.575998), (50.725002, -190.092, -51.565502), (75.6705, -203.1105, -38.8475), (75.06799, -203.5215, -13.129499), (50.744, -163.51549, -51.449), (63.266003, -176.6625, -25.943), (88.5515, -175.89749, -26.131), (76.417, -176.32251, -51.4285), (100.25, -200.40851, -25.9155), (101.8235, -188.5585, -51.4645), (124.108, -198.9665, -37.891), (127.525, -199.4545, -13.1345), (102.8105, -162.73651, -52.385), (114.4895, -175.67099, -26.699999), (136.15001, -175.3365, -25.786), (129.74399, -173.80551, -52.1775), (-138.39351, -148.8695, -23.3375), (-133.563, -147.897, -41.7385), (-120.726, -149.19449, -13.252501), (-132.421, -124.293495, -25.17), (-111.6775, -123.136, -26.064), (-126.294495, -121.309, -51.0155), (-100.344, -149.4915, -26.369), (-102.8135, -135.0225, -51.593), (-76.0425, -149.82199, -38.2535), (-75.6225, -149.81151, -12.4705), (-108.5845, -102.328, -51.874), (-88.349, -122.652, -25.427), (-63.439503, -123.834496, -24.803999), (-76.371994, -122.511, -50.312), (-50.461502, -150.597, -25.332499), (-50.729, -137.218, -50.835503), (-25.421, -150.511, -38.1735), (-25.637001, -150.44449, -12.586499), (-50.6095, -111.278496, -50.4725), (-37.942497, -124.481995, -25.123499), (-12.597, -124.68, -25.23), (-24.882, -124.5815, -50.749), (0.074, -150.5085, -25.733501), (-0.0415, -137.625, -50.8145), (25.3, -150.578, -38.2475), (25.2705, -150.103, -12.823999), (0.049, -112.0005, -51.05), (12.761, -124.829, -25.385), (37.9, -124.403, -25.1065), (25.2265, -124.9395, -50.850998), (50.685497, -150.28749, -25.380001), (50.8795, -137.69301, -51.1935), (75.9785, -150.33, -38.553497), (75.503, -150.004, -12.919499), (50.6015, -111.7575, -50.756), (63.241497, -124.06, -25.015), (88.207, -124.0225, -25.671501), (76.4275, -124.332504, -50.9345), (100.6035, -150.20999, -26.725), (102.526505, -136.749, -52.143997), (133.5025, -148.3315, -41.730003), (120.755005, -150.5375, -13.0815), (105.686005, -109.417, -50.823498), (111.5805, -124.589005, -26.654), (133.037, -124.7605, -25.014), (126.64651, -124.946, -52.231503), (138.3065, -151.568, -22.4525), (-119.249, -102.245, -37.294), (-119.2525, -102.2125, -13.3735), (-131.842, -65.437, -25.736), (-110.463, -72.7565, -25.1855), (-127.033, -67.2125, -50.8945), (-97.7975, -92.725, -28.0265), (-102.173004, -80.773, -48.6565), (-76.1025, -96.613, -37.444), (-80.67149, -97.571, -9.475), (-101.279, -60.525, -50.5775), (-88.809494, -77.193, -23.771), (-63.4275, -73.513, -24.491999), (-75.10551, -72.7055, -50.279503), (-50.932003, -98.501, -24.809), (-50.549, -85.7635, -50.4925), (-25.3295, -98.957, -38.2485), (-25.165, -99.1485, -12.4175), (-50.2425, -61.106, -50.554), (-37.8515, -73.848, -25.3745), (-12.392501, -74.109, -26.1485), (-24.741, -73.8845, -50.924), (0.1205, -99.584496, -25.563), (0.014, -86.804, -50.980003), (25.0935, -99.197, -38.1445), (25.369501, -99.2345, -12.5535), (0.0875, -61.409, -50.904503), (12.6355, -74.041, -25.999), (37.747498, -74.052, -25.6125), (25.0505, -74.049, -50.711502), (50.7075, -98.684, -25.186499), (50.5765, -86.2575, -50.704), (76.672005, -98.245, -37.825), (80.335495, -96.1325, -10.307), (50.295498, -61.3155, -50.4675), (63.5305, -73.6595, -24.9515), (88.875, -77.4245, -23.891499), (75.29401, -73.677, -50.335003), (98.4225, -94.525, -28.5305), (102.1095, -83.4395, -49.922), (118.0635, -103.4145, -38.045002), (119.025, -101.587, -13.91), (100.861, -61.941, -51.3605), (110.215996, -72.657, -26.8005), (130.9265, -65.676, -25.069), (125.985504, -68.020004, -51.656498), (-141.6675, -45.478, -23.206501), (-142.5515, -38.0645, -49.412003), (-131.5975, -51.8895, -38.477), (-120.904495, -45.128498, -12.7485), (-141.11949, -13.172, -47.858498), (-140.271, -21.8395, -24.1075), (-112.9385, -22.7015, -24.958), (-124.033, -24.308, -48.8965), (-99.165, -49.3645, -24.9385), (-100.849, -36.322502, -50.447), (-75.3575, -48.739002, -37.571003), (-74.727, -50.260498, -12.002), (-100.8365, -10.637501, -49.644), (-87.52901, -23.083, -24.397001), (-62.0825, -22.4785, -24.636), (-75.432, -23.2665, -49.946), (-49.7435, -48.813, -25.4135), (-50.0565, -35.928997, -50.359), (-25.054, -48.562, -38.2955), (-24.985, -48.8955, -13.4585), (-50.0305, -10.728499, -50.419), (-37.3955, -22.952501, -25.5175), (-12.356, -23.592001, -26.262001), (-25.114, -23.636, -50.677002), (-0.1085, -48.678497, -26.501), (-0.1295, -36.0615, -50.798), (25.138498, -48.815002, -38.301502), (24.9315, -48.683, -13.8625), (0.092, -11.4165, -50.8055), (12.501, -23.712, -26.2045), (37.3275, -23.1595, -25.463), (25.144, -23.671, -50.296), (50.040497, -48.9515, -25.665), (50.156998, -36.1915, -50.44), (75.26, -49.1345, -37.7775), (74.3305, -50.008, -12.361501), (50.334, -10.857, -49.946503), (62.2675, -23.1745, -24.9235), (86.922, -22.8245, -24.952), (75.4455, -23.529001, -50.4415), (98.9995, -50.108, -25.7435), (100.3405, -37.3125, -51.007), (130.9, -52.7795, -39.949497), (121.3205, -46.682, -13.26), (100.3015, -11.089, -49.321), (112.346, -23.2025, -24.973), (138.80751, -23.432, -24.881), (122.4495, -25.7515, -50.1315), (141.67, -46.4645, -24.064001), (142.4975, -37.983, -49.586502), (140.282, -13.034, -46.513), (-144.51, -1.6815, -22.9445), (-130.7215, 4.7465, -35.6695), (-129.0035, 4.9385, -10.577), (-113.27251, 22.701, -23.107), (-120.336006, 18.0285, -49.126), (-100.693, 2.0965, -23.7315), (-99.6715, 12.084, -48.987), (-75.8095, 1.0685, -36.3735), (-71.6885, 11.995, -9.9539995), (-100.189, 29.1055, -46.7005), (-89.621, 23.709, -23.614), (-66.537, 24.042, -23.4025), (-80.366, 28.0445, -48.077), (-50.4715, 2.4425, -25.055), (-51.403, 13.163, -50.1535), (-24.9455, 1.1475, -38.213497), (-24.5515, 1.9145, -13.9965), (-52.906498, 36.436, -49.7295), (-38.1435, 25.522999, -25.387499), (-12.281, 25.8715, -25.6865), (-25.8675, 25.22, -50.2445), (0.2365, 1.1525, -26.1955), (0.24650002, 13.341001, -50.773), (25.417, 1.1195, -38.0025), (24.8945, 1.855, -14.591), (0.1805, 37.774002, -50.393997), (13.013, 25.959, -25.6595), (38.239502, 25.1585, -25.3415), (25.3785, 25.5475, -50.345997), (50.475998, 2.0345001, -25.769999), (51.3025, 13.3915, -50.155), (75.9215, 1.1424999, -37.100502), (72.4985, 11.7065, -9.722), (52.795498, 36.024498, -49.128), (66.524, 24.2055, -23.6795), (88.552, 23.8645, -23.9935), (81.285, 27.882, -48.5865), (99.603, 1.917, -23.642), (99.3735, 12.1435, -49.4565), (129.14949, 6.122, -36.641003), (127.425995, 7.0655003, -11.735), (99.081505, 29.526999, -47.927), (111.564, 23.335001, -23.6805), (120.2175, 18.2825, -48.564503), (139.86101, -3.907, -22.743), (-98.4085, 59.149998, -46.941998), (-84.686005, 43.013, -34.287502), (-81.57, 46.3945, -9.8525), (-102.414505, 87.335, -47.017002), (-94.5885, 68.7295, -21.386501), (-65.83, 73.117004, -23.932499), (-76.392006, 73.244995, -47.8805), (-52.431, 49.188, -24.157001), (-52.637497, 60.778, -49.3485), (-25.579498, 49.614502, -37.569), (-25.4705, 49.7845, -12.6185), (-51.600502, 87.0635, -50.3915), (-39.0565, 74.374, -24.931), (-12.7575, 75.2035, -25.4655), (-25.7555, 74.6895, -50.502502), (0.589, 50.3155, -25.439), (0.2175, 62.474003, -50.531998), (26.237501, 49.827, -37.6145), (26.0515, 50.4295, -13.000999), (-0.0325, 87.879005, -50.746502), (13.14, 75.442, -25.4995), (39.455498, 74.957, -25.2525), (25.8505, 74.8505, -50.432), (52.384, 49.067, -24.3575), (52.307, 61.198498, -49.4085), (83.191, 43.3185, -35.5705), (81.1405, 46.760998, -9.002), (51.6205, 87.1875, -49.9315), (65.8525, 73.854, -24.1065), (94.366, 72.0795, -22.281), (76.1615, 73.29, -48.1715), (93.975, 51.7005, -25.713001), (98.4105, 59.4015, -47.8325), (102.366, 87.2135, -47.161003), (-99.1645, 100.121, -26.112), (-103.8095, 113.195, -49.747), (-77.5235, 99.6845, -37.1185), (-73.007, 99.5175, -14.294001), (-99.43851, 136.802, -50.557), (-95.9585, 126.4905, -22.254501), (-63.312, 125.705, -25.904), (-77.4555, 125.03, -50.156998), (-51.0785, 99.6015, -25.643), (-51.135498, 112.859, -50.4295), (-25.4415, 100.3375, -38.017998), (-25.403, 100.6025, -13.0065), (-50.422, 137.951, -50.5985), (-37.898, 125.7375, -25.52), (-12.4085, 125.7375, -25.522), (-25.3465, 125.69501, -50.9475), (0.124, 100.419, -25.6305), (-0.0075, 113.06, -50.698997), (25.7965, 100.39349, -38.0135), (25.948, 100.773994, -13.271501), (-0.079500005, 138.1395, -50.4195), (12.739, 125.67949, -25.6085), (38.089, 125.6845, -26.018), (25.2195, 125.5365, -50.62), (51.8695, 100.116, -25.338), (51.037502, 112.8305, -50.113), (77.8495, 99.73701, -37.0965), (74.8785, 99.602, -14.4215), (50.5885, 137.8395, -49.814), (63.791996, 125.53451, -25.2295), (96.13, 126.809, -22.5145), (77.985504, 124.986, -49.5635), (99.451996, 99.17149, -26.376), (103.586006, 113.052, -49.208), (99.246, 137.73, -50.788498), (-91.946, 148.34601, -29.7125), (-95.8525, 160.99199, -51.1215), (-73.5245, 148.666, -38.089), (-78.3505, 152.26001, -10.933499), (-96.8145, 185.81999, -44.365), (-80.8975, 167.97049, -30.669498), (-63.181496, 174.125, -22.002499), (-71.864, 176.14651, -46.3355), (-50.4845, 150.62, -24.868), (-50.0975, 162.257, -49.363), (-25.0085, 150.328, -37.4315), (-24.7895, 150.677, -13.0164995), (-53.8355, 186.522, -42.666), (-36.752, 173.134, -24.707), (-12.0225, 174.142, -24.835), (-24.627, 175.3065, -49.387), (0.155, 150.31201, -25.412998), (0.0165, 162.831, -50.059), (25.105501, 150.198, -37.595997), (25.227999, 150.58, -13.1505), (-0.1975, 185.3975, -50.0825), (12.046, 174.349, -25.519499), (36.7545, 172.5045, -25.9455), (24.7385, 175.278, -49.652), (50.8765, 150.5165, -24.808), (49.8115, 162.35449, -48.732502), (73.2965, 148.5235, -37.857998), (78.81, 153.2625, -12.1125), (53.445, 187.289, -42.2135), (62.983498, 174.485, -21.8165), (81.8095, 167.7305, -31.794), (71.0265, 176.3465, -46.331497), (92.7045, 146.787, -29.3645), (95.9905, 161.20601, -50.626503), (96.378494, 185.527, -43.989), (-77.489006, 206.0935, -35.0995), (-73.554, 216.82701, -47.416), (-43.022, 196.14, -27.2665), (-51.1085, 213.306, -44.756496), (-22.985498, 197.7195, -36.15), (-24.289001, 191.753, -15.827), (0.25149998, 196.064, -25.5765), (0.0735, 202.2485, -50.6465), (23.0925, 197.49901, -36.211), (23.3825, 191.65149, -15.1345005), (43.0415, 196.064, -27.416), (50.400497, 213.1235, -44.398502), (77.732506, 205.91951, -35.025), (72.7325, 216.36299, -47.4745), (-112.1335, -225.1945, 25.541), (-118.613, -217.2795, 0.25750002), (-95.9665, -231.97, 1.3844999), (-98.7575, -212.7025, -0.401), (-86.0775, -232.02351, 25.973999), (-63.404003, -228.0965, 24.889), (-69.699, -231.9155, 0.6215), (-47.3245, -222.6785, 0.4395), (-42.341, -221.134, 21.345999), (-26.37, -221.53, -5.729), (-0.133, -209.436, -6.689), (42.6095, -221.3485, 21.489), (26.741, -221.004, -6.6419997), (47.8835, -222.84349, -0.2855), (63.307503, -228.01851, 23.971), (85.836, -232.088, 25.864), (70.708496, -231.831, 1.164), (96.5175, -231.87099, 0.64500004), (98.989006, -211.5085, 0.45), (112.777, -224.7765, 25.484), (118.469, -216.541, 0.2555), (-143.2215, -196.164, 23.964), (-140.2675, -185.57199, 0.005), (-129.166, -202.9375, 11.387), (-131.458, -204.8785, 36.6585), (-140.2435, -160.94499, -0.692), (-137.09601, -175.882, 23.971), (-113.8545, -175.7725, 25.354502), (-123.925, -175.1865, -1.4905001), (-100.9325, -201.6615, 24.7375), (-100.954, -188.692, -0.48250002), (-75.3395, -203.0215, 12.3265), (-76.1615, -201.747, 37.135998), (-99.6855, -162.92401, 0.0035), (-88.395, -175.72949, 25.191502), (-63.8185, -175.53601, 25.1035), (-75.918, -176.3535, -0.131), (-53.4495, -201.5695, 23.123), (-51.100998, -190.258, -0.583), (-28.1155, -200.798, 10.0705), (-31.543001, -198.3165, 33.8395), (-51.23, -163.1965, 0.2125), (-40.4825, -175.3375, 23.7415), (-17.1625, -173.2195, 21.5225), (-26.154001, -176.6395, -0.7295), (-0.465, -189.7725, 1.3330001), (27.496, -200.213, 9.5315), (31.135, -197.733, 32.624), (-0.277, -162.699, -0.7745), (16.4025, -172.896, 21.4575), (40.394, -175.0195, 23.1525), (25.867, -175.8625, -1.326), (52.850002, -201.29999, 22.7945), (50.846, -189.77051, -1.0964999), (75.2685, -202.658, 11.744), (75.774994, -202.013, 36.8265), (51.0195, -162.8985, -0.30650002), (63.898495, -175.515, 24.366499), (88.475, -175.735, 24.5205), (75.673996, -176.289, -0.6045), (101.035995, -201.3815, 25.1665), (101.399506, -188.377, -0.7515), (131.687, -200.987, 11.5825), (132.59999, -204.1475, 36.311), (100.0085, -163.376, -0.82850003), (114.1245, -176.34851, 24.6285), (138.7735, -177.8255, 24.682001), (135.358, -180.7715, -1.6715001), (140.525, -162.6865, -0.5425), (-138.4725, -150.892, 23.348), (-137.686, -138.66649, -0.6635), (-121.0345, -150.377, 11.474), (-131.9745, -146.32251, 40.612), (-131.188, -127.591995, 22.917), (-110.371, -126.615005, 24.390999), (-129.2235, -120.374, -0.56299996), (-100.262, -149.813, 25.390999), (-99.124, -137.0775, -0.2955), (-75.1195, -149.845, 13.0835), (-75.385506, -148.489, 38.9915), (-98.0225, -113.1065, -0.424), (-86.1695, -125.205505, 24.58), (-59.7585, -117.8345, 31.893), (-75.1035, -123.8655, 0.5005), (-51.03, -149.0605, 26.926), (-50.308, -136.6565, 1.0725), (-26.373999, -149.87, 13.3185), (-26.049, -147.6935, 35.669), (-49.628498, -110.444, 1.5040001), (-36.815, -122.1555, 32.739502), (-13.1335, -127.609505, 33.8775), (-25.1905, -124.3545, 1.038), (-1.2969999, -150.6415, 27.380001), (-0.3595, -137.951, 1.1125), (26.104, -149.5475, 13.118), (26.136, -147.4115, 35.8265), (0.28, -112.538, 0.7995), (13.783999, -128.9335, 34.031498), (36.3455, -122.382996, 32.754997), (25.4905, -124.624, 0.85), (50.5955, -148.903, 26.233), (49.8305, -136.446, 0.809), (74.787994, -150.0605, 12.686501), (75.1875, -149.0145, 38.389), (49.5235, -110.3245, 2.3095), (59.037, -117.5615, 30.843), (86.2445, -125.41801, 24.9035), (74.5245, -123.4365, 0.5275), (99.727, -150.25949, 25.01), (98.934006, -137.77751, -0.6635), (121.0345, -151.315, 11.4470005), (131.21, -145.3315, 38.350998), (97.746, -113.506, -1.177), (109.728004, -126.8485, 23.614), (131.3025, -127.93749, 23.8415), (129.13249, -120.0975, -1.551), (138.7245, -151.159, 23.383999), (137.836, -139.735, 0.2955), (-118.341995, -105.338, 10.477), (-115.514, -109.328, 33.445), (-138.5715, -53.0675, -0.50149995), (-128.693, -65.321495, 24.109499), (-106.1935, -71.404, 24.6045), (-122.575, -66.305, -0.7535), (-96.973, -103.82001, 23.029), (-95.719, -92.624504, -0.736), (-73.0485, -98.4795, 13.4625), (-75.791504, -107.7135, 34.2415), (-98.4415, -70.628006, 1.682), (-84.698, -70.548996, 23.5975), (-60.838497, -74.359, 22.2085), (-77.046, -71.93, 1.9305), (-49.0775, -99.069496, 28.3785), (-50.769, -86.3295, 1.1635001), (-25.4855, -99.212494, 13.584), (-25.759, -100.4335, 36.48), (-49.493, -62.289, -0.23799999), (-40.7855, -75.284, 31.029001), (-12.410501, -74.337, 19.8), (-25.587, -74.392494, -0.5665), (0.301, -99.8945, 21.199999), (0.2875, -86.740005, -1.0405), (26.049, -99.3685, 13.6375), (25.7945, -100.142, 36.3135), (0.023500001, -61.345497, -2.295), (12.743, -74.3525, 19.1415), (40.625, -74.05801, 30.711), (25.603, -74.2755, -1.457), (48.3805, -99.2135, 28.6825), (50.281, -86.201, 0.9525), (72.89, -98.547, 13.65), (75.680504, -107.8495, 34.5785), (49.329002, -62.555, -0.1895), (60.7465, -74.644, 22.7005), (85.2635, -70.504005, 24.5445), (77.087, -72.091995, 2.2075), (97.6295, -103.561, 21.8425), (95.78, -92.447, -1.8085), (118.198, -105.304, 10.1395), (114.948, -109.4655, 33.9325), (98.1395, -70.847, 1.4635), (107.314995, -71.275505, 24.687), (128.4915, -65.5735, 24.7485), (122.271, -66.664505, -1.0059999), (138.002, -54.142, 1.28), (-143.5065, -44.2995, 25.024), (-143.838, -33.531, 0.0275), (-120.3025, -46.155502, 12.2795), (-120.745, -46.317497, 37.489002), (-144.8825, -10.854, 0.4955), (-141.038, -21.0985, 24.404001), (-111.3825, -23.151999, 25.061499), (-124.287, -21.924, 0.218), (-96.352005, -48.753998, 24.9405), (-98.169495, -36.5155, 0.21450001), (-69.7445, -55.762, 13.015), (-68.3925, -54.891003, 36.1505), (-99.829, -8.841499, 0.361), (-85.013, -23.708, 24.98), (-57.121998, -25.0025, 22.968), (-73.573, -22.716002, 0.50949997), (-52.01, -47.469, 22.543), (-48.968502, -37.007, -0.9375), (-25.414501, -48.81, 11.110001), (-24.998499, -49.755497, 31.8055), (-50.386997, -6.421, 4.54), (-37.6135, -23.9885, 20.981), (-13.1435, -23.3485, 24.663), (-24.8995, -23.8485, -1.4685), (0.1355, -43.704, 31.968), (-0.0045000003, -36.0755, -1.0515), (25.3745, -49.1185, 10.4685), (25.845499, -49.494, 31.5365), (-0.2405, -11.217, -3.106), (13.0235, -23.6415, 24.915), (38.2315, -24.255499, 20.719), (24.8295, -23.765501, -1.9610001), (52.561996, -47.1085, 22.4215), (48.907997, -37.1785, -0.94200003), (68.809006, -56.222, 13.495501), (67.509, -54.519, 37.617), (49.8055, -5.968, 4.1485), (57.844, -24.126999, 24.0355), (85.2775, -23.93, 25.0455), (73.181, -22.289, 0.788), (97.206505, -48.628, 25.0895), (97.92, -36.635002, -0.186), (120.1875, -46.9395, 12.5465), (121.284004, -47.397, 37.891), (98.935, -8.993, 0.6565), (111.1495, -23.1515, 25.735), (141.601, -21.324999, 25.149), (124.2195, -22.147, 0.658), (143.158, -44.7725, 24.704), (144.137, -34.4005, 0.36450002), (143.61299, -10.656, 1.2305001), (-144.18251, -2.542, 26.168), (-127.404495, 3.775, 13.1685), (-127.1425, 2.8079998, 38.067), (-111.7685, 16.910501, 24.426), (-122.7815, 20.127, -0.3155), (-99.8365, -1.5999999, 24.7995), (-100.027, 17.315, 1.418), (-72.2145, 7.773, 12.377999), (-72.897, 2.9175, 36.768997), (-88.2805, 16.835499, 24.331), (-55.501, -6.4110003, 23.7315), (-45.781002, 15.1595, -5.894), (-24.386, 0.971, 8.394), (-51.334, 34.482, 0.744), (-30.878, 34.1625, 17.3385), (-12.6565, 27.3875, 27.531502), (-23.6725, 24.4, -0.07), (0.102, -4.598, 14.278501), (0.456, 16.942, -0.414), (24.1665, 1.407, 8.0375), (0.703, 39.029503, 0.1355), (13.249, 27.178001, 26.262499), (31.379, 33.7925, 16.956), (24.227999, 23.8635, 0.1025), (56.4875, -4.7665, 23.144), (45.9245, 15.258, -5.953), (72.685005, 7.54, 12.6285), (73.11, 2.9035, 37.352), (52.170998, 34.5705, 0.7775), (87.502, 17.1085, 24.3965), (98.7185, -1.5265, 24.839998), (99.052505, 17.54, 1.898), (127.172, 4.587, 12.847), (127.0815, 3.5695, 37.5425), (111.242, 16.6295, 24.730001), (121.976006, 20.3085, -0.408), (144.045, -2.6115, 25.5735), (-72.0715, 49.781, 10.6195), (-90.88, 88.713, -5.2514997), (-65.5915, 74.562, 23.9245), (-82.576, 71.029, 5.4645), (-47.635498, 53.4995, 21.3185), (-52.523502, 61.88, 0.101500005), (-23.7845, 52.522, 11.846999), (-29.465, 48.533, 40.22), (-52.826, 87.203, -0.0525), (-46.682, 70.597, 27.6205), (-13.875501, 75.142006, 24.4045), (-26.3895, 75.007996, -0.24650002), (0.0495, 51.0965, 25.7385), (0.81350005, 63.534, -0.566), (25.1895, 52.688503, 11.5085), (30.592499, 48.75, 39.184002), (0.46, 88.3035, -0.7145), (14.998, 75.3655, 25.077), (49.3685, 74.88, 27.661999), (26.7915, 75.673996, -0.33499998), (48.0025, 54.3795, 21.4655), (52.7915, 62.685997, 0.1125), (72.5515, 49.5445, 10.6785), (53.466, 87.457, -0.39900002), (66.158, 74.903, 23.907), (83.348495, 71.071495, 5.038), (91.3705, 87.812996, -5.614), (-90.792496, 111.3315, -5.435), (-76.707, 99.634995, 13.7545), (-57.554497, 125.36301, 15.097), (-78.822, 128.03049, 0.7175), (-51.958, 101.520004, 24.683), (-49.5195, 113.363, -1.883), (-26.02, 100.908, 12.21), (-26.9465, 108.3955, 37.9515), (-49.7005, 138.7625, -3.483), (-34.328503, 132.179, 18.552502), (-11.864, 127.553, 29.4365), (-23.973999, 126.3265, -1.5715), (-0.0925, 101.591995, 24.145), (0.049, 113.523994, -0.4325), (27.083, 101.2575, 11.8005), (34.595, 104.179, 38.4885), (0.219, 138.385, -0.22250001), (11.6545, 126.614006, 28.704), (34.4815, 131.7565, 18.567999), (24.810501, 126.101006, -1.5699999), (54.0485, 99.5795, 24.716), (50.468502, 113.369, -2.023), (76.508, 99.73, 13.446), (50.583, 138.751, -4.0795), (58.743, 125.112, 14.8355), (79.50449, 128.00551, -0.014), (90.5085, 110.3675, -5.9405003), (-68.807, 149.33801, 6.2145), (-44.924, 148.4795, 21.9605), (-54.6345, 165.809, 3.1035), (-22.719501, 150.992, 10.5485), (-21.156, 152.597, 29.9355), (-45.569, 181.439, -7.415), (-33.9, 169.762, 18.27), (-10.775, 171.114, 20.156), (-25.1745, 179.69351, 3.2840002), (0.64599997, 153.48149, 30.835999), (0.083500005, 162.52, -0.795), (23.6425, 150.93451, 10.806), (23.0005, 152.413, 29.886501), (-0.245, 187.486, 0.1205), (11.113501, 171.21451, 20.2315), (34.275497, 169.138, 17.574999), (23.712502, 179.41501, 2.5770001), (46.092, 148.7765, 21.691), (55.1125, 165.052, 2.234), (69.256996, 149.30899, 5.711), (45.1965, 181.259, -7.972), (-132.70549, -217.24799, 76.24451), (-112.4775, -227.946, 75.927505), (-123.3365, -221.299, 50.3), (-99.475, -235.615, 50.328003), (-100.46751, -214.4795, 49.518), (-87.9515, -230.58351, 75.055), (-64.7, -223.04501, 74.261505), (-74.006996, -229.7, 49.544), (-50.352, -215.2445, 48.5185), (50.31, -215.5675, 48.873), (65.1925, -222.9335, 73.485504), (87.6015, -230.46451, 74.624), (73.822495, -229.76901, 49.389), (99.3235, -235.376, 50.828), (100.418, -214.306, 50.299), (112.6495, -227.874, 75.838), (132.43849, -217.3845, 78.2245), (124.0995, -220.5535, 51.4685), (-145.26599, -194.73, 76.8455), (-144.68, -188.04399, 50.5085), (-132.545, -203.8485, 61.372), (-124.6965, -198.017, 89.182), (-142.9335, -161.438, 50.564503), (-142.59499, -174.1185, 74.4555), (-114.607994, -174.481, 75.5675), (-125.358505, -175.334, 50.7295), (-101.493004, -201.0435, 74.897995), (-102.166, -188.7535, 49.686), (-75.9355, -201.5425, 61.8645), (-75.427505, -199.215, 86.8505), (-101.831505, -161.901, 50.531498), (-88.796, -174.6725, 75.168), (-62.622, -175.093, 74.757), (-76.5345, -175.242, 50.058), (-45.469, -202.858, 75.1615), (-53.11, -187.841, 48.258), (-33.6225, -196.7155, 58.0125), (-52.1195, -162.102, 49.524002), (-38.0825, -174.1415, 74.778), (-29.6615, -174.0665, 47.1745), (33.7165, -196.7655, 57.795498), (38.0145, -174.2375, 74.7665), (29.4055, -174.2345, 46.1545), (45.935, -203.6455, 75.747), (53.731, -187.61, 48.121502), (75.948, -201.341, 61.619), (75.765, -199.43149, 86.265), (52.3175, -162.3775, 50.173), (62.639996, -174.9745, 74.9355), (88.8325, -174.7105, 74.424995), (76.55, -175.405, 49.6095), (101.0365, -201.048, 74.587006), (101.698006, -188.767, 49.4385), (132.15851, -203.73949, 61.606003), (124.898, -197.8255, 88.197), (101.67551, -161.685, 50.009003), (114.7685, -174.1965, 75.094), (143.37599, -174.1645, 74.621994), (124.8735, -175.2655, 51.024002), (145.2415, -195.5425, 77.0085), (143.916, -188.8095, 50.9215), (142.7875, -161.68051, 51.6125), (-143.39099, -151.9245, 79.955505), (-131.925, -146.06, 62.241497), (-124.3835, -149.742, 89.5105), (-132.159, -129.5735, 79.034996), (-112.1335, -119.5165, 73.777), (-125.247, -126.12949, 50.576), (-101.933, -148.6895, 75.023), (-100.99, -135.8155, 50.659), (-76.200005, -149.25949, 63.3175), (-76.5685, -149.989, 87.503), (-98.756, -112.818504, 48.6945), (-88.7155, -121.343, 74.066), (-67.2585, -131.013, 75.22), (-73.647, -120.7515, 52.5865), (-48.927002, -148.8905, 78.3225), (-48.557503, -134.3545, 53.58), (-34.668503, -153.5825, 59.361), (34.249, -152.7335, 58.772003), (0.54749995, -112.92, 41.0345), (48.8225, -149.634, 78.5075), (48.771, -134.125, 53.601), (76.049, -149.36351, 62.88), (76.33, -150.231, 87.3265), (66.6005, -131.695, 76.572), (88.306, -121.18549, 74.147), (74.0195, -121.083, 52.966503), (101.369, -148.25151, 74.363), (100.593, -136.03, 49.8525), (131.37599, -144.684, 61.634), (124.683, -148.269, 88.6275), (98.6185, -112.5725, 47.561), (112.005005, -119.741, 72.739494), (131.377, -128.804, 77.391), (124.771996, -124.782005, 49.408997), (143.181, -151.38849, 78.644), (-140.1995, -54.8625, 48.8485), (-112.031, -67.51, 74.5535), (-121.061, -67.59, 49.85), (-97.1345, -66.93951, 49.8495), (-85.8645, -66.056496, 73.153), (-76.6065, -66.309, 48.5705), (-23.361, -75.560005, 36.918), (0.3655, -87.0505, 39.0145), (0.62549996, -64.04, 37.067497), (23.5795, -76.754, 37.276997), (85.8925, -66.43, 73.985), (76.467, -66.4415, 48.3335), (97.867, -66.924995, 50.194), (111.416, -67.581, 73.760506), (120.349495, -67.743004, 50.1595), (139.9335, -55.303, 49.621002), (-141.2545, -44.9185, 74.956), (-144.409, -34.507, 50.0625), (-126.861496, -54.077, 64.625), (-127.895, -50.336, 90.7325), (-144.771, -12.393, 51.2015), (-138.4945, -21.421, 78.438995), (-111.921, -23.6455, 76.942505), (-124.225494, -22.5355, 51.186497), (-98.434, -45.414, 75.666504), (-97.8915, -37.5425, 50.414497), (-67.304, -52.838, 62.573), (-69.876, -50.149998, 87.9035), (-98.641, -11.1535, 50.4945), (-85.2515, -23.532, 75.6895), (-58.565, -25.359, 75.873505), (-73.6985, -24.730001, 49.4825), (-54.694, -38.2085, 47.252), (-56.2345, -14.309501, 48.8065), (54.427002, -37.167, 47.5635), (67.0695, -52.367, 63.130497), (69.822, -49.953, 88.076004), (56.356503, -13.5135, 48.01), (58.822, -24.9195, 76.015), (84.976006, -24.226, 75.845505), (74.5185, -24.8865, 49.0015), (99.1995, -45.3605, 75.3385), (97.945, -37.2635, 50.489502), (125.7595, -53.990498, 64.606), (126.1375, -50.6555, 91.1405), (98.781, -11.0060005, 50.7905), (111.798004, -23.4305, 76.9555), (138.554, -22.58, 79.683495), (124.2965, -22.3275, 51.098), (141.009, -46.61, 75.491005), (144.34149, -35.1275, 50.300503), (144.607, -12.532001, 50.510498), (-124.960495, 3.151, 64.001), (-122.138504, -2.0544999, 85.9445), (-99.95, 5.7135, 76.844), (-99.9185, 12.1095, 50.4915), (-72.347496, 2.4055, 62.4735), (-75.213, -2.7195, 86.024), (0.128, 34.2075, 44.76), (72.014, 2.4295, 62.0005), (74.7325, -2.5595, 85.236), (100.027504, 5.6790004, 77.421005), (99.681496, 12.527, 50.3375), (124.8975, 3.3400002, 63.649), (121.74, -2.4695, 87.00101), (-18.347, 53.326, 55.4965), (-41.977, 88.406, 39.731), (-12.0065, 74.737, 64.1535), (-32.525497, 71.0145, 51.3425), (0.0015, 59.536503, 55.6245), (20.7325, 54.836502, 55.4595), (0.6185, 87.9475, 42.1545), (12.566501, 76.14, 64.6345), (36.082, 76.8, 48.502), (-22.248, 98.1715, 55.3255), (-0.093, 91.5615, 69.4675), (1.231, 114.145004, 47.47), (22.8115, 97.790504, 54.561), (-142.549, -207.24649, 102.147995), (-133.117, -218.33649, 125.747505), (-112.1475, -223.9905, 128.654), (-123.145996, -224.17351, 103.336), (-100.7795, -231.7035, 101.344505), (-100.08, -211.60901, 100.4375), (-89.085, -222.76451, 128.5395), (-68.358505, -216.8935, 123.1505), (-76.434, -223.861, 99.895996), (-54.7905, -208.7135, 98.781494), (54.8275, -208.4235, 97.756), (68.528, -216.201, 122.365), (88.5375, -222.43599, 128.614), (75.972, -224.05951, 99.942), (100.939995, -231.914, 100.7675), (100.573006, -211.52849, 100.751), (112.196, -224.2475, 128.516), (133.313, -218.2155, 125.828995), (123.2475, -224.1075, 103.147995), (142.894, -207.261, 102.6265), (-155.4025, -173.5555, 126.489), (-146.7745, -197.002, 126.88699), (-150.6105, -186.7735, 101.537506), (-123.395004, -198.07901, 113.6195), (-124.3235, -198.1595, 135.19), (-151.54851, -162.04549, 102.132), (-139.784, -175.166, 133.4395), (-112.581, -173.4765, 122.639), (-126.918495, -174.12599, 101.398994), (-100.483, -198.498, 122.958), (-100.62, -186.177, 99.9005), (-76.539, -198.2235, 111.8945), (-73.474495, -202.519, 138.778), (-101.1505, -161.51599, 99.7645), (-88.482, -173.813, 123.178), (-65.5625, -173.83049, 122.564), (-75.873505, -174.476, 99.6885), (-54.7415, -197.0315, 122.861), (-44.522503, -187.8065, 98.79), (-46.878, -161.082, 98.887505), (-45.53, -172.41649, 120.0745), (45.342, -172.7435, 119.812), (54.3225, -196.88, 123.044495), (44.533, -188.34799, 98.970505), (76.915504, -198.00401, 111.612495), (72.9085, -203.44951, 138.9095), (46.9535, -161.407, 100.0675), (65.4665, -173.7245, 122.618), (89.394005, -173.252, 123.3705), (75.989, -174.511, 99.229996), (99.564, -198.1095, 122.866), (101.118996, -186.06099, 99.5665), (123.834, -197.5575, 113.5205), (125.0545, -197.267, 135.106), (101.4055, -161.69199, 99.9525), (113.6325, -172.75, 123.124), (140.457, -173.155, 133.387), (127.0095, -173.6225, 100.572495), (146.481, -196.673, 127.1475), (150.621, -186.282, 100.982), (151.39949, -161.6915, 101.251495), (155.73999, -172.8645, 126.66901), (-151.409, -148.8165, 131.065), (-148.0495, -138.061, 104.7015), (-127.0975, -149.1765, 115.251495), (-129.445, -148.919, 142.1255), (-142.9125, -125.22399, 133.259), (-113.0995, -125.802505, 124.807), (-129.16, -116.4895, 99.361), (-101.541, -150.121, 124.2005), (-101.2465, -136.004, 99.7985), (-76.6375, -149.408, 111.784004), (-78.6605, -150.98601, 145.6305), (-101.217, -109.755005, 97.541), (-89.8705, -126.298, 123.8105), (-62.601498, -123.898994, 124.0735), (-73.861, -120.876, 96.39), (-51.648, -147.15999, 122.39), (-54.1805, -139.6615, 99.7655), (51.4965, -148.094, 121.8345), (53.889503, -139.8285, 99.470505), (76.7985, -149.187, 111.762), (78.308, -150.5225, 145.56549), (62.316498, -124.214005, 122.944496), (90.138, -125.783, 123.983), (73.881, -120.805, 96.37051), (101.8245, -148.92151, 124.1195), (101.3095, -135.70949, 99.833), (127.036, -148.499, 114.429504), (130.7395, -147.165, 141.877), (100.992004, -110.1125, 97.6095), (113.844, -125.199005, 124.418495), (142.756, -123.636, 132.0165), (128.3665, -117.0905, 97.873505), (151.486, -147.89151, 130.918), (147.75249, -137.4645, 103.9155), (-123.142, -105.7095, 114.0855), (-122.372, -107.21, 138.65399), (-101.1705, -104.147, 126.4275), (-79.793, -108.9915, 112.333496), (-79.5565, -108.048, 134.37), (-99.0175, -57.5525, 100.759), (79.21999, -108.9955, 112.486496), (79.656494, -108.3355, 134.37749), (100.913506, -104.02, 125.5115), (122.9095, -106.2505, 113.0335), (122.2255, -106.838005, 137.649), (99.2985, -57.591503, 100.816505), (-120.654, -46.043, 109.5655), (-122.4775, -23.942501, 104.9695), (-100.55, -35.244, 106.457), (-78.7055, -46.917503, 108.6125), (-100.2255, -10.144, 104.81), (-88.2705, -23.976, 119.57), (-73.64, -23.891, 99.7475), (79.018, -47.254997, 108.391), (87.9445, -24.715, 118.1075), (73.345, -23.991, 99.908005), (100.68, -35.6675, 106), (120.8205, -45.868, 109.753494), (98.891, -10.293, 105.318504), (122.395996, -24.507, 105.243), (-98.160995, -208.5445, 137.84949), (99.899, -208.0745, 137.5745), (-123.085, -172.468, 140.0645), (-98.852, -185.497, 140.9095), (-101.0325, -161.471, 144.5085), (-77.733, -174.111, 144.816), (-58.2275, -184.864, 142.1005), (-58.2225, -161.659, 144.005), (58.442997, -185.192, 142.025), (58.525997, -161.416, 144.31601), (79.157005, -173.7565, 144.78651), (99.9, -184.5075, 140.8945), (102.201, -160.5815, 144.522), (124.2135, -172.591, 139.935), (-123.876, -125.58401, 144.55501), (-100.8185, -137.0035, 146.756), (-100.173, -111.208, 145.2405), (-75.399506, -124.586, 146.31601), (-58.905003, -139.7365, 145.88649), (58.9115, -139.21051, 145.80751), (75.3465, -124.4775, 146.2695), (102.003, -136.9805, 146.7845), (101.141, -110.800995, 145.211), (125.36851, -125.168, 144.079)] } } def SphereLight "SphereLight" { float intensity = 30000 float radius = 150 double3 xformOp:translate = (650, 0, 1150) uniform token[] xformOpOrder = ["xformOp:translate"] } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/torus_mesh.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Mesh "Torus" { 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, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4] 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, 128, 160, 161, 129, 129, 161, 162, 130, 130, 162, 163, 131, 131, 163, 164, 132, 132, 164, 165, 133, 133, 165, 166, 134, 134, 166, 167, 135, 135, 167, 168, 136, 136, 168, 169, 137, 137, 169, 170, 138, 138, 170, 171, 139, 139, 171, 172, 140, 140, 172, 173, 141, 141, 173, 174, 142, 142, 174, 175, 143, 143, 175, 176, 144, 144, 176, 177, 145, 145, 177, 178, 146, 146, 178, 179, 147, 147, 179, 180, 148, 148, 180, 181, 149, 149, 181, 182, 150, 150, 182, 183, 151, 151, 183, 184, 152, 152, 184, 185, 153, 153, 185, 186, 154, 154, 186, 187, 155, 155, 187, 188, 156, 156, 188, 189, 157, 157, 189, 190, 158, 158, 190, 191, 159, 159, 191, 160, 128, 160, 192, 193, 161, 161, 193, 194, 162, 162, 194, 195, 163, 163, 195, 196, 164, 164, 196, 197, 165, 165, 197, 198, 166, 166, 198, 199, 167, 167, 199, 200, 168, 168, 200, 201, 169, 169, 201, 202, 170, 170, 202, 203, 171, 171, 203, 204, 172, 172, 204, 205, 173, 173, 205, 206, 174, 174, 206, 207, 175, 175, 207, 208, 176, 176, 208, 209, 177, 177, 209, 210, 178, 178, 210, 211, 179, 179, 211, 212, 180, 180, 212, 213, 181, 181, 213, 214, 182, 182, 214, 215, 183, 183, 215, 216, 184, 184, 216, 217, 185, 185, 217, 218, 186, 186, 218, 219, 187, 187, 219, 220, 188, 188, 220, 221, 189, 189, 221, 222, 190, 190, 222, 223, 191, 191, 223, 192, 160, 192, 224, 225, 193, 193, 225, 226, 194, 194, 226, 227, 195, 195, 227, 228, 196, 196, 228, 229, 197, 197, 229, 230, 198, 198, 230, 231, 199, 199, 231, 232, 200, 200, 232, 233, 201, 201, 233, 234, 202, 202, 234, 235, 203, 203, 235, 236, 204, 204, 236, 237, 205, 205, 237, 238, 206, 206, 238, 239, 207, 207, 239, 240, 208, 208, 240, 241, 209, 209, 241, 242, 210, 210, 242, 243, 211, 211, 243, 244, 212, 212, 244, 245, 213, 213, 245, 246, 214, 214, 246, 247, 215, 215, 247, 248, 216, 216, 248, 249, 217, 217, 249, 250, 218, 218, 250, 251, 219, 219, 251, 252, 220, 220, 252, 253, 221, 221, 253, 254, 222, 222, 254, 255, 223, 223, 255, 224, 192, 224, 256, 257, 225, 225, 257, 258, 226, 226, 258, 259, 227, 227, 259, 260, 228, 228, 260, 261, 229, 229, 261, 262, 230, 230, 262, 263, 231, 231, 263, 264, 232, 232, 264, 265, 233, 233, 265, 266, 234, 234, 266, 267, 235, 235, 267, 268, 236, 236, 268, 269, 237, 237, 269, 270, 238, 238, 270, 271, 239, 239, 271, 272, 240, 240, 272, 273, 241, 241, 273, 274, 242, 242, 274, 275, 243, 243, 275, 276, 244, 244, 276, 277, 245, 245, 277, 278, 246, 246, 278, 279, 247, 247, 279, 280, 248, 248, 280, 281, 249, 249, 281, 282, 250, 250, 282, 283, 251, 251, 283, 284, 252, 252, 284, 285, 253, 253, 285, 286, 254, 254, 286, 287, 255, 255, 287, 256, 224, 256, 288, 289, 257, 257, 289, 290, 258, 258, 290, 291, 259, 259, 291, 292, 260, 260, 292, 293, 261, 261, 293, 294, 262, 262, 294, 295, 263, 263, 295, 296, 264, 264, 296, 297, 265, 265, 297, 298, 266, 266, 298, 299, 267, 267, 299, 300, 268, 268, 300, 301, 269, 269, 301, 302, 270, 270, 302, 303, 271, 271, 303, 304, 272, 272, 304, 305, 273, 273, 305, 306, 274, 274, 306, 307, 275, 275, 307, 308, 276, 276, 308, 309, 277, 277, 309, 310, 278, 278, 310, 311, 279, 279, 311, 312, 280, 280, 312, 313, 281, 281, 313, 314, 282, 282, 314, 315, 283, 283, 315, 316, 284, 284, 316, 317, 285, 285, 317, 318, 286, 286, 318, 319, 287, 287, 319, 288, 256, 288, 320, 321, 289, 289, 321, 322, 290, 290, 322, 323, 291, 291, 323, 324, 292, 292, 324, 325, 293, 293, 325, 326, 294, 294, 326, 327, 295, 295, 327, 328, 296, 296, 328, 329, 297, 297, 329, 330, 298, 298, 330, 331, 299, 299, 331, 332, 300, 300, 332, 333, 301, 301, 333, 334, 302, 302, 334, 335, 303, 303, 335, 336, 304, 304, 336, 337, 305, 305, 337, 338, 306, 306, 338, 339, 307, 307, 339, 340, 308, 308, 340, 341, 309, 309, 341, 342, 310, 310, 342, 343, 311, 311, 343, 344, 312, 312, 344, 345, 313, 313, 345, 346, 314, 314, 346, 347, 315, 315, 347, 348, 316, 316, 348, 349, 317, 317, 349, 350, 318, 318, 350, 351, 319, 319, 351, 320, 288, 320, 352, 353, 321, 321, 353, 354, 322, 322, 354, 355, 323, 323, 355, 356, 324, 324, 356, 357, 325, 325, 357, 358, 326, 326, 358, 359, 327, 327, 359, 360, 328, 328, 360, 361, 329, 329, 361, 362, 330, 330, 362, 363, 331, 331, 363, 364, 332, 332, 364, 365, 333, 333, 365, 366, 334, 334, 366, 367, 335, 335, 367, 368, 336, 336, 368, 369, 337, 337, 369, 370, 338, 338, 370, 371, 339, 339, 371, 372, 340, 340, 372, 373, 341, 341, 373, 374, 342, 342, 374, 375, 343, 343, 375, 376, 344, 344, 376, 377, 345, 345, 377, 378, 346, 346, 378, 379, 347, 347, 379, 380, 348, 348, 380, 381, 349, 349, 381, 382, 350, 350, 382, 383, 351, 351, 383, 352, 320, 352, 384, 385, 353, 353, 385, 386, 354, 354, 386, 387, 355, 355, 387, 388, 356, 356, 388, 389, 357, 357, 389, 390, 358, 358, 390, 391, 359, 359, 391, 392, 360, 360, 392, 393, 361, 361, 393, 394, 362, 362, 394, 395, 363, 363, 395, 396, 364, 364, 396, 397, 365, 365, 397, 398, 366, 366, 398, 399, 367, 367, 399, 400, 368, 368, 400, 401, 369, 369, 401, 402, 370, 370, 402, 403, 371, 371, 403, 404, 372, 372, 404, 405, 373, 373, 405, 406, 374, 374, 406, 407, 375, 375, 407, 408, 376, 376, 408, 409, 377, 377, 409, 410, 378, 378, 410, 411, 379, 379, 411, 412, 380, 380, 412, 413, 381, 381, 413, 414, 382, 382, 414, 415, 383, 383, 415, 384, 352, 384, 416, 417, 385, 385, 417, 418, 386, 386, 418, 419, 387, 387, 419, 420, 388, 388, 420, 421, 389, 389, 421, 422, 390, 390, 422, 423, 391, 391, 423, 424, 392, 392, 424, 425, 393, 393, 425, 426, 394, 394, 426, 427, 395, 395, 427, 428, 396, 396, 428, 429, 397, 397, 429, 430, 398, 398, 430, 431, 399, 399, 431, 432, 400, 400, 432, 433, 401, 401, 433, 434, 402, 402, 434, 435, 403, 403, 435, 436, 404, 404, 436, 437, 405, 405, 437, 438, 406, 406, 438, 439, 407, 407, 439, 440, 408, 408, 440, 441, 409, 409, 441, 442, 410, 410, 442, 443, 411, 411, 443, 444, 412, 412, 444, 445, 413, 413, 445, 446, 414, 414, 446, 447, 415, 415, 447, 416, 384, 416, 448, 449, 417, 417, 449, 450, 418, 418, 450, 451, 419, 419, 451, 452, 420, 420, 452, 453, 421, 421, 453, 454, 422, 422, 454, 455, 423, 423, 455, 456, 424, 424, 456, 457, 425, 425, 457, 458, 426, 426, 458, 459, 427, 427, 459, 460, 428, 428, 460, 461, 429, 429, 461, 462, 430, 430, 462, 463, 431, 431, 463, 464, 432, 432, 464, 465, 433, 433, 465, 466, 434, 434, 466, 467, 435, 435, 467, 468, 436, 436, 468, 469, 437, 437, 469, 470, 438, 438, 470, 471, 439, 439, 471, 472, 440, 440, 472, 473, 441, 441, 473, 474, 442, 442, 474, 475, 443, 443, 475, 476, 444, 444, 476, 477, 445, 445, 477, 478, 446, 446, 478, 479, 447, 447, 479, 448, 416, 448, 480, 481, 449, 449, 481, 482, 450, 450, 482, 483, 451, 451, 483, 484, 452, 452, 484, 485, 453, 453, 485, 486, 454, 454, 486, 487, 455, 455, 487, 488, 456, 456, 488, 489, 457, 457, 489, 490, 458, 458, 490, 491, 459, 459, 491, 492, 460, 460, 492, 493, 461, 461, 493, 494, 462, 462, 494, 495, 463, 463, 495, 496, 464, 464, 496, 497, 465, 465, 497, 498, 466, 466, 498, 499, 467, 467, 499, 500, 468, 468, 500, 501, 469, 469, 501, 502, 470, 470, 502, 503, 471, 471, 503, 504, 472, 472, 504, 505, 473, 473, 505, 506, 474, 474, 506, 507, 475, 475, 507, 508, 476, 476, 508, 509, 477, 477, 509, 510, 478, 478, 510, 511, 479, 479, 511, 480, 448, 480, 512, 513, 481, 481, 513, 514, 482, 482, 514, 515, 483, 483, 515, 516, 484, 484, 516, 517, 485, 485, 517, 518, 486, 486, 518, 519, 487, 487, 519, 520, 488, 488, 520, 521, 489, 489, 521, 522, 490, 490, 522, 523, 491, 491, 523, 524, 492, 492, 524, 525, 493, 493, 525, 526, 494, 494, 526, 527, 495, 495, 527, 528, 496, 496, 528, 529, 497, 497, 529, 530, 498, 498, 530, 531, 499, 499, 531, 532, 500, 500, 532, 533, 501, 501, 533, 534, 502, 502, 534, 535, 503, 503, 535, 536, 504, 504, 536, 537, 505, 505, 537, 538, 506, 506, 538, 539, 507, 507, 539, 540, 508, 508, 540, 541, 509, 509, 541, 542, 510, 510, 542, 543, 511, 511, 543, 512, 480, 512, 544, 545, 513, 513, 545, 546, 514, 514, 546, 547, 515, 515, 547, 548, 516, 516, 548, 549, 517, 517, 549, 550, 518, 518, 550, 551, 519, 519, 551, 552, 520, 520, 552, 553, 521, 521, 553, 554, 522, 522, 554, 555, 523, 523, 555, 556, 524, 524, 556, 557, 525, 525, 557, 558, 526, 526, 558, 559, 527, 527, 559, 560, 528, 528, 560, 561, 529, 529, 561, 562, 530, 530, 562, 563, 531, 531, 563, 564, 532, 532, 564, 565, 533, 533, 565, 566, 534, 534, 566, 567, 535, 535, 567, 568, 536, 536, 568, 569, 537, 537, 569, 570, 538, 538, 570, 571, 539, 539, 571, 572, 540, 540, 572, 573, 541, 541, 573, 574, 542, 542, 574, 575, 543, 543, 575, 544, 512, 544, 576, 577, 545, 545, 577, 578, 546, 546, 578, 579, 547, 547, 579, 580, 548, 548, 580, 581, 549, 549, 581, 582, 550, 550, 582, 583, 551, 551, 583, 584, 552, 552, 584, 585, 553, 553, 585, 586, 554, 554, 586, 587, 555, 555, 587, 588, 556, 556, 588, 589, 557, 557, 589, 590, 558, 558, 590, 591, 559, 559, 591, 592, 560, 560, 592, 593, 561, 561, 593, 594, 562, 562, 594, 595, 563, 563, 595, 596, 564, 564, 596, 597, 565, 565, 597, 598, 566, 566, 598, 599, 567, 567, 599, 600, 568, 568, 600, 601, 569, 569, 601, 602, 570, 570, 602, 603, 571, 571, 603, 604, 572, 572, 604, 605, 573, 573, 605, 606, 574, 574, 606, 607, 575, 575, 607, 576, 544, 576, 608, 609, 577, 577, 609, 610, 578, 578, 610, 611, 579, 579, 611, 612, 580, 580, 612, 613, 581, 581, 613, 614, 582, 582, 614, 615, 583, 583, 615, 616, 584, 584, 616, 617, 585, 585, 617, 618, 586, 586, 618, 619, 587, 587, 619, 620, 588, 588, 620, 621, 589, 589, 621, 622, 590, 590, 622, 623, 591, 591, 623, 624, 592, 592, 624, 625, 593, 593, 625, 626, 594, 594, 626, 627, 595, 595, 627, 628, 596, 596, 628, 629, 597, 597, 629, 630, 598, 598, 630, 631, 599, 599, 631, 632, 600, 600, 632, 633, 601, 601, 633, 634, 602, 602, 634, 635, 603, 603, 635, 636, 604, 604, 636, 637, 605, 605, 637, 638, 606, 606, 638, 639, 607, 607, 639, 608, 576, 608, 640, 641, 609, 609, 641, 642, 610, 610, 642, 643, 611, 611, 643, 644, 612, 612, 644, 645, 613, 613, 645, 646, 614, 614, 646, 647, 615, 615, 647, 648, 616, 616, 648, 649, 617, 617, 649, 650, 618, 618, 650, 651, 619, 619, 651, 652, 620, 620, 652, 653, 621, 621, 653, 654, 622, 622, 654, 655, 623, 623, 655, 656, 624, 624, 656, 657, 625, 625, 657, 658, 626, 626, 658, 659, 627, 627, 659, 660, 628, 628, 660, 661, 629, 629, 661, 662, 630, 630, 662, 663, 631, 631, 663, 664, 632, 632, 664, 665, 633, 633, 665, 666, 634, 634, 666, 667, 635, 635, 667, 668, 636, 636, 668, 669, 637, 637, 669, 670, 638, 638, 670, 671, 639, 639, 671, 640, 608, 640, 672, 673, 641, 641, 673, 674, 642, 642, 674, 675, 643, 643, 675, 676, 644, 644, 676, 677, 645, 645, 677, 678, 646, 646, 678, 679, 647, 647, 679, 680, 648, 648, 680, 681, 649, 649, 681, 682, 650, 650, 682, 683, 651, 651, 683, 684, 652, 652, 684, 685, 653, 653, 685, 686, 654, 654, 686, 687, 655, 655, 687, 688, 656, 656, 688, 689, 657, 657, 689, 690, 658, 658, 690, 691, 659, 659, 691, 692, 660, 660, 692, 693, 661, 661, 693, 694, 662, 662, 694, 695, 663, 663, 695, 696, 664, 664, 696, 697, 665, 665, 697, 698, 666, 666, 698, 699, 667, 667, 699, 700, 668, 668, 700, 701, 669, 669, 701, 702, 670, 670, 702, 703, 671, 671, 703, 672, 640, 672, 704, 705, 673, 673, 705, 706, 674, 674, 706, 707, 675, 675, 707, 708, 676, 676, 708, 709, 677, 677, 709, 710, 678, 678, 710, 711, 679, 679, 711, 712, 680, 680, 712, 713, 681, 681, 713, 714, 682, 682, 714, 715, 683, 683, 715, 716, 684, 684, 716, 717, 685, 685, 717, 718, 686, 686, 718, 719, 687, 687, 719, 720, 688, 688, 720, 721, 689, 689, 721, 722, 690, 690, 722, 723, 691, 691, 723, 724, 692, 692, 724, 725, 693, 693, 725, 726, 694, 694, 726, 727, 695, 695, 727, 728, 696, 696, 728, 729, 697, 697, 729, 730, 698, 698, 730, 731, 699, 699, 731, 732, 700, 700, 732, 733, 701, 701, 733, 734, 702, 702, 734, 735, 703, 703, 735, 704, 672, 704, 736, 737, 705, 705, 737, 738, 706, 706, 738, 739, 707, 707, 739, 740, 708, 708, 740, 741, 709, 709, 741, 742, 710, 710, 742, 743, 711, 711, 743, 744, 712, 712, 744, 745, 713, 713, 745, 746, 714, 714, 746, 747, 715, 715, 747, 748, 716, 716, 748, 749, 717, 717, 749, 750, 718, 718, 750, 751, 719, 719, 751, 752, 720, 720, 752, 753, 721, 721, 753, 754, 722, 722, 754, 755, 723, 723, 755, 756, 724, 724, 756, 757, 725, 725, 757, 758, 726, 726, 758, 759, 727, 727, 759, 760, 728, 728, 760, 761, 729, 729, 761, 762, 730, 730, 762, 763, 731, 731, 763, 764, 732, 732, 764, 765, 733, 733, 765, 766, 734, 734, 766, 767, 735, 735, 767, 736, 704, 736, 768, 769, 737, 737, 769, 770, 738, 738, 770, 771, 739, 739, 771, 772, 740, 740, 772, 773, 741, 741, 773, 774, 742, 742, 774, 775, 743, 743, 775, 776, 744, 744, 776, 777, 745, 745, 777, 778, 746, 746, 778, 779, 747, 747, 779, 780, 748, 748, 780, 781, 749, 749, 781, 782, 750, 750, 782, 783, 751, 751, 783, 784, 752, 752, 784, 785, 753, 753, 785, 786, 754, 754, 786, 787, 755, 755, 787, 788, 756, 756, 788, 789, 757, 757, 789, 790, 758, 758, 790, 791, 759, 759, 791, 792, 760, 760, 792, 793, 761, 761, 793, 794, 762, 762, 794, 795, 763, 763, 795, 796, 764, 764, 796, 797, 765, 765, 797, 798, 766, 766, 798, 799, 767, 767, 799, 768, 736, 768, 800, 801, 769, 769, 801, 802, 770, 770, 802, 803, 771, 771, 803, 804, 772, 772, 804, 805, 773, 773, 805, 806, 774, 774, 806, 807, 775, 775, 807, 808, 776, 776, 808, 809, 777, 777, 809, 810, 778, 778, 810, 811, 779, 779, 811, 812, 780, 780, 812, 813, 781, 781, 813, 814, 782, 782, 814, 815, 783, 783, 815, 816, 784, 784, 816, 817, 785, 785, 817, 818, 786, 786, 818, 819, 787, 787, 819, 820, 788, 788, 820, 821, 789, 789, 821, 822, 790, 790, 822, 823, 791, 791, 823, 824, 792, 792, 824, 825, 793, 793, 825, 826, 794, 794, 826, 827, 795, 795, 827, 828, 796, 796, 828, 829, 797, 797, 829, 830, 798, 798, 830, 831, 799, 799, 831, 800, 768, 800, 832, 833, 801, 801, 833, 834, 802, 802, 834, 835, 803, 803, 835, 836, 804, 804, 836, 837, 805, 805, 837, 838, 806, 806, 838, 839, 807, 807, 839, 840, 808, 808, 840, 841, 809, 809, 841, 842, 810, 810, 842, 843, 811, 811, 843, 844, 812, 812, 844, 845, 813, 813, 845, 846, 814, 814, 846, 847, 815, 815, 847, 848, 816, 816, 848, 849, 817, 817, 849, 850, 818, 818, 850, 851, 819, 819, 851, 852, 820, 820, 852, 853, 821, 821, 853, 854, 822, 822, 854, 855, 823, 823, 855, 856, 824, 824, 856, 857, 825, 825, 857, 858, 826, 826, 858, 859, 827, 827, 859, 860, 828, 828, 860, 861, 829, 829, 861, 862, 830, 830, 862, 863, 831, 831, 863, 832, 800, 832, 864, 865, 833, 833, 865, 866, 834, 834, 866, 867, 835, 835, 867, 868, 836, 836, 868, 869, 837, 837, 869, 870, 838, 838, 870, 871, 839, 839, 871, 872, 840, 840, 872, 873, 841, 841, 873, 874, 842, 842, 874, 875, 843, 843, 875, 876, 844, 844, 876, 877, 845, 845, 877, 878, 846, 846, 878, 879, 847, 847, 879, 880, 848, 848, 880, 881, 849, 849, 881, 882, 850, 850, 882, 883, 851, 851, 883, 884, 852, 852, 884, 885, 853, 853, 885, 886, 854, 854, 886, 887, 855, 855, 887, 888, 856, 856, 888, 889, 857, 857, 889, 890, 858, 858, 890, 891, 859, 859, 891, 892, 860, 860, 892, 893, 861, 861, 893, 894, 862, 862, 894, 895, 863, 863, 895, 864, 832, 864, 896, 897, 865, 865, 897, 898, 866, 866, 898, 899, 867, 867, 899, 900, 868, 868, 900, 901, 869, 869, 901, 902, 870, 870, 902, 903, 871, 871, 903, 904, 872, 872, 904, 905, 873, 873, 905, 906, 874, 874, 906, 907, 875, 875, 907, 908, 876, 876, 908, 909, 877, 877, 909, 910, 878, 878, 910, 911, 879, 879, 911, 912, 880, 880, 912, 913, 881, 881, 913, 914, 882, 882, 914, 915, 883, 883, 915, 916, 884, 884, 916, 917, 885, 885, 917, 918, 886, 886, 918, 919, 887, 887, 919, 920, 888, 888, 920, 921, 889, 889, 921, 922, 890, 890, 922, 923, 891, 891, 923, 924, 892, 892, 924, 925, 893, 893, 925, 926, 894, 894, 926, 927, 895, 895, 927, 896, 864, 896, 928, 929, 897, 897, 929, 930, 898, 898, 930, 931, 899, 899, 931, 932, 900, 900, 932, 933, 901, 901, 933, 934, 902, 902, 934, 935, 903, 903, 935, 936, 904, 904, 936, 937, 905, 905, 937, 938, 906, 906, 938, 939, 907, 907, 939, 940, 908, 908, 940, 941, 909, 909, 941, 942, 910, 910, 942, 943, 911, 911, 943, 944, 912, 912, 944, 945, 913, 913, 945, 946, 914, 914, 946, 947, 915, 915, 947, 948, 916, 916, 948, 949, 917, 917, 949, 950, 918, 918, 950, 951, 919, 919, 951, 952, 920, 920, 952, 953, 921, 921, 953, 954, 922, 922, 954, 955, 923, 923, 955, 956, 924, 924, 956, 957, 925, 925, 957, 958, 926, 926, 958, 959, 927, 927, 959, 928, 896, 928, 960, 961, 929, 929, 961, 962, 930, 930, 962, 963, 931, 931, 963, 964, 932, 932, 964, 965, 933, 933, 965, 966, 934, 934, 966, 967, 935, 935, 967, 968, 936, 936, 968, 969, 937, 937, 969, 970, 938, 938, 970, 971, 939, 939, 971, 972, 940, 940, 972, 973, 941, 941, 973, 974, 942, 942, 974, 975, 943, 943, 975, 976, 944, 944, 976, 977, 945, 945, 977, 978, 946, 946, 978, 979, 947, 947, 979, 980, 948, 948, 980, 981, 949, 949, 981, 982, 950, 950, 982, 983, 951, 951, 983, 984, 952, 952, 984, 985, 953, 953, 985, 986, 954, 954, 986, 987, 955, 955, 987, 988, 956, 956, 988, 989, 957, 957, 989, 990, 958, 958, 990, 991, 959, 959, 991, 960, 928, 960, 992, 993, 961, 961, 993, 994, 962, 962, 994, 995, 963, 963, 995, 996, 964, 964, 996, 997, 965, 965, 997, 998, 966, 966, 998, 999, 967, 967, 999, 1000, 968, 968, 1000, 1001, 969, 969, 1001, 1002, 970, 970, 1002, 1003, 971, 971, 1003, 1004, 972, 972, 1004, 1005, 973, 973, 1005, 1006, 974, 974, 1006, 1007, 975, 975, 1007, 1008, 976, 976, 1008, 1009, 977, 977, 1009, 1010, 978, 978, 1010, 1011, 979, 979, 1011, 1012, 980, 980, 1012, 1013, 981, 981, 1013, 1014, 982, 982, 1014, 1015, 983, 983, 1015, 1016, 984, 984, 1016, 1017, 985, 985, 1017, 1018, 986, 986, 1018, 1019, 987, 987, 1019, 1020, 988, 988, 1020, 1021, 989, 989, 1021, 1022, 990, 990, 1022, 1023, 991, 991, 1023, 992, 960, 992, 0, 1, 993, 993, 1, 2, 994, 994, 2, 3, 995, 995, 3, 4, 996, 996, 4, 5, 997, 997, 5, 6, 998, 998, 6, 7, 999, 999, 7, 8, 1000, 1000, 8, 9, 1001, 1001, 9, 10, 1002, 1002, 10, 11, 1003, 1003, 11, 12, 1004, 1004, 12, 13, 1005, 1005, 13, 14, 1006, 1006, 14, 15, 1007, 1007, 15, 16, 1008, 1008, 16, 17, 1009, 1009, 17, 18, 1010, 1010, 18, 19, 1011, 1011, 19, 20, 1012, 1012, 20, 21, 1013, 1013, 21, 22, 1014, 1014, 22, 23, 1015, 1015, 23, 24, 1016, 1016, 24, 25, 1017, 1017, 25, 26, 1018, 1018, 26, 27, 1019, 1019, 27, 28, 1020, 1020, 28, 29, 1021, 1021, 29, 30, 1022, 1022, 30, 31, 1023, 1023, 31, 0, 992] normal3f[] normals = [(1, 0, 0), (0.98078525, 0.19509032, 0), (0.96193975, 0.19509032, 0.19134171), (0.98078525, 0, 0.19509032), (0.98078525, 0, 0.19509032), (0.96193975, 0.19509032, 0.19134171), (0.90612745, 0.19509032, 0.37533027), (0.9238795, 0, 0.38268343), (0.9238795, 0, 0.38268343), (0.90612745, 0.19509032, 0.37533027), (0.81549317, 0.19509032, 0.5448951), (0.8314696, 0, 0.55557024), (0.8314696, 0, 0.55557024), (0.81549317, 0.19509032, 0.5448951), (0.69351995, 0.19509032, 0.69351995), (0.70710677, 0, 0.70710677), (0.70710677, 0, 0.70710677), (0.69351995, 0.19509032, 0.69351995), (0.5448951, 0.19509032, 0.81549317), (0.55557024, 0, 0.8314696), (0.55557024, 0, 0.8314696), (0.5448951, 0.19509032, 0.81549317), (0.37533027, 0.19509032, 0.90612745), (0.38268343, 0, 0.9238795), (0.38268343, 0, 0.9238795), (0.37533027, 0.19509032, 0.90612745), (0.19134171, 0.19509032, 0.96193975), (0.19509032, 0, 0.98078525), (0.19509032, 0, 0.98078525), (0.19134171, 0.19509032, 0.96193975), (6.005578e-17, 0.19509032, 0.98078525), (6.123234e-17, 0, 1), (6.123234e-17, 0, 1), (6.005578e-17, 0.19509032, 0.98078525), (-0.19134171, 0.19509032, 0.96193975), (-0.19509032, 0, 0.98078525), (-0.19509032, 0, 0.98078525), (-0.19134171, 0.19509032, 0.96193975), (-0.37533027, 0.19509032, 0.90612745), (-0.38268343, 0, 0.9238795), (-0.38268343, 0, 0.9238795), (-0.37533027, 0.19509032, 0.90612745), (-0.5448951, 0.19509032, 0.81549317), (-0.55557024, 0, 0.8314696), (-0.55557024, 0, 0.8314696), (-0.5448951, 0.19509032, 0.81549317), (-0.69351995, 0.19509032, 0.69351995), (-0.70710677, 0, 0.70710677), (-0.70710677, 0, 0.70710677), (-0.69351995, 0.19509032, 0.69351995), (-0.81549317, 0.19509032, 0.5448951), (-0.8314696, 0, 0.55557024), (-0.8314696, 0, 0.55557024), (-0.81549317, 0.19509032, 0.5448951), (-0.90612745, 0.19509032, 0.37533027), (-0.9238795, 0, 0.38268343), (-0.9238795, 0, 0.38268343), (-0.90612745, 0.19509032, 0.37533027), (-0.96193975, 0.19509032, 0.19134171), (-0.98078525, 0, 0.19509032), (-0.98078525, 0, 0.19509032), (-0.96193975, 0.19509032, 0.19134171), (-0.98078525, 0.19509032, 1.2011156e-16), (-1, 0, 1.2246469e-16), (-1, 0, 1.2246469e-16), (-0.98078525, 0.19509032, 1.2011156e-16), (-0.96193975, 0.19509032, -0.19134171), (-0.98078525, 0, -0.19509032), (-0.98078525, 0, -0.19509032), (-0.96193975, 0.19509032, -0.19134171), (-0.90612745, 0.19509032, -0.37533027), (-0.9238795, 0, -0.38268343), (-0.9238795, 0, -0.38268343), (-0.90612745, 0.19509032, -0.37533027), (-0.81549317, 0.19509032, -0.5448951), (-0.8314696, 0, -0.55557024), (-0.8314696, 0, -0.55557024), (-0.81549317, 0.19509032, -0.5448951), (-0.69351995, 0.19509032, -0.69351995), (-0.70710677, 0, -0.70710677), (-0.70710677, 0, -0.70710677), (-0.69351995, 0.19509032, -0.69351995), (-0.5448951, 0.19509032, -0.81549317), (-0.55557024, 0, -0.8314696), (-0.55557024, 0, -0.8314696), (-0.5448951, 0.19509032, -0.81549317), (-0.37533027, 0.19509032, -0.90612745), (-0.38268343, 0, -0.9238795), (-0.38268343, 0, -0.9238795), (-0.37533027, 0.19509032, -0.90612745), (-0.19134171, 0.19509032, -0.96193975), (-0.19509032, 0, -0.98078525), (-0.19509032, 0, -0.98078525), (-0.19134171, 0.19509032, -0.96193975), (-1.8016734e-16, 0.19509032, -0.98078525), (-1.8369701e-16, 0, -1), (-1.8369701e-16, 0, -1), (-1.8016734e-16, 0.19509032, -0.98078525), (0.19134171, 0.19509032, -0.96193975), (0.19509032, 0, -0.98078525), (0.19509032, 0, -0.98078525), (0.19134171, 0.19509032, -0.96193975), (0.37533027, 0.19509032, -0.90612745), (0.38268343, 0, -0.9238795), (0.38268343, 0, -0.9238795), (0.37533027, 0.19509032, -0.90612745), (0.5448951, 0.19509032, -0.81549317), (0.55557024, 0, -0.8314696), (0.55557024, 0, -0.8314696), (0.5448951, 0.19509032, -0.81549317), (0.69351995, 0.19509032, -0.69351995), (0.70710677, 0, -0.70710677), (0.70710677, 0, -0.70710677), (0.69351995, 0.19509032, -0.69351995), (0.81549317, 0.19509032, -0.5448951), (0.8314696, 0, -0.55557024), (0.8314696, 0, -0.55557024), (0.81549317, 0.19509032, -0.5448951), (0.90612745, 0.19509032, -0.37533027), (0.9238795, 0, -0.38268343), (0.9238795, 0, -0.38268343), (0.90612745, 0.19509032, -0.37533027), (0.96193975, 0.19509032, -0.19134171), (0.98078525, 0, -0.19509032), (0.98078525, 0, -0.19509032), (0.96193975, 0.19509032, -0.19134171), (0.98078525, 0.19509032, 0), (1, 0, 0), (0.98078525, 0.19509032, 0), (0.9238795, 0.38268343, 0), (0.90612745, 0.38268343, 0.18023996), (0.96193975, 0.19509032, 0.19134171), (0.96193975, 0.19509032, 0.19134171), (0.90612745, 0.38268343, 0.18023996), (0.8535534, 0.38268343, 0.35355338), (0.90612745, 0.19509032, 0.37533027), (0.90612745, 0.19509032, 0.37533027), (0.8535534, 0.38268343, 0.35355338), (0.76817775, 0.38268343, 0.51328), (0.81549317, 0.19509032, 0.5448951), (0.81549317, 0.19509032, 0.5448951), (0.76817775, 0.38268343, 0.51328), (0.6532815, 0.38268343, 0.6532815), (0.69351995, 0.19509032, 0.69351995), (0.69351995, 0.19509032, 0.69351995), (0.6532815, 0.38268343, 0.6532815), (0.51328, 0.38268343, 0.76817775), (0.5448951, 0.19509032, 0.81549317), (0.5448951, 0.19509032, 0.81549317), (0.51328, 0.38268343, 0.76817775), (0.35355338, 0.38268343, 0.8535534), (0.37533027, 0.19509032, 0.90612745), (0.37533027, 0.19509032, 0.90612745), (0.35355338, 0.38268343, 0.8535534), (0.18023996, 0.38268343, 0.90612745), (0.19134171, 0.19509032, 0.96193975), (0.19134171, 0.19509032, 0.96193975), (0.18023996, 0.38268343, 0.90612745), (5.6571306e-17, 0.38268343, 0.9238795), (6.005578e-17, 0.19509032, 0.98078525), (6.005578e-17, 0.19509032, 0.98078525), (5.6571306e-17, 0.38268343, 0.9238795), (-0.18023996, 0.38268343, 0.90612745), (-0.19134171, 0.19509032, 0.96193975), (-0.19134171, 0.19509032, 0.96193975), (-0.18023996, 0.38268343, 0.90612745), (-0.35355338, 0.38268343, 0.8535534), (-0.37533027, 0.19509032, 0.90612745), (-0.37533027, 0.19509032, 0.90612745), (-0.35355338, 0.38268343, 0.8535534), (-0.51328, 0.38268343, 0.76817775), (-0.5448951, 0.19509032, 0.81549317), (-0.5448951, 0.19509032, 0.81549317), (-0.51328, 0.38268343, 0.76817775), (-0.6532815, 0.38268343, 0.6532815), (-0.69351995, 0.19509032, 0.69351995), (-0.69351995, 0.19509032, 0.69351995), (-0.6532815, 0.38268343, 0.6532815), (-0.76817775, 0.38268343, 0.51328), (-0.81549317, 0.19509032, 0.5448951), (-0.81549317, 0.19509032, 0.5448951), (-0.76817775, 0.38268343, 0.51328), (-0.8535534, 0.38268343, 0.35355338), (-0.90612745, 0.19509032, 0.37533027), (-0.90612745, 0.19509032, 0.37533027), (-0.8535534, 0.38268343, 0.35355338), (-0.90612745, 0.38268343, 0.18023996), (-0.96193975, 0.19509032, 0.19134171), (-0.96193975, 0.19509032, 0.19134171), (-0.90612745, 0.38268343, 0.18023996), (-0.9238795, 0.38268343, 1.1314261e-16), (-0.98078525, 0.19509032, 1.2011156e-16), (-0.98078525, 0.19509032, 1.2011156e-16), (-0.9238795, 0.38268343, 1.1314261e-16), (-0.90612745, 0.38268343, -0.18023996), (-0.96193975, 0.19509032, -0.19134171), (-0.96193975, 0.19509032, -0.19134171), (-0.90612745, 0.38268343, -0.18023996), (-0.8535534, 0.38268343, -0.35355338), (-0.90612745, 0.19509032, -0.37533027), (-0.90612745, 0.19509032, -0.37533027), (-0.8535534, 0.38268343, -0.35355338), (-0.76817775, 0.38268343, -0.51328), (-0.81549317, 0.19509032, -0.5448951), (-0.81549317, 0.19509032, -0.5448951), (-0.76817775, 0.38268343, -0.51328), (-0.6532815, 0.38268343, -0.6532815), (-0.69351995, 0.19509032, -0.69351995), (-0.69351995, 0.19509032, -0.69351995), (-0.6532815, 0.38268343, -0.6532815), (-0.51328, 0.38268343, -0.76817775), (-0.5448951, 0.19509032, -0.81549317), (-0.5448951, 0.19509032, -0.81549317), (-0.51328, 0.38268343, -0.76817775), (-0.35355338, 0.38268343, -0.8535534), (-0.37533027, 0.19509032, -0.90612745), (-0.37533027, 0.19509032, -0.90612745), (-0.35355338, 0.38268343, -0.8535534), (-0.18023996, 0.38268343, -0.90612745), (-0.19134171, 0.19509032, -0.96193975), (-0.19134171, 0.19509032, -0.96193975), (-0.18023996, 0.38268343, -0.90612745), (-1.6971392e-16, 0.38268343, -0.9238795), (-1.8016734e-16, 0.19509032, -0.98078525), (-1.8016734e-16, 0.19509032, -0.98078525), (-1.6971392e-16, 0.38268343, -0.9238795), (0.18023996, 0.38268343, -0.90612745), (0.19134171, 0.19509032, -0.96193975), (0.19134171, 0.19509032, -0.96193975), (0.18023996, 0.38268343, -0.90612745), (0.35355338, 0.38268343, -0.8535534), (0.37533027, 0.19509032, -0.90612745), (0.37533027, 0.19509032, -0.90612745), (0.35355338, 0.38268343, -0.8535534), (0.51328, 0.38268343, -0.76817775), (0.5448951, 0.19509032, -0.81549317), (0.5448951, 0.19509032, -0.81549317), (0.51328, 0.38268343, -0.76817775), (0.6532815, 0.38268343, -0.6532815), (0.69351995, 0.19509032, -0.69351995), (0.69351995, 0.19509032, -0.69351995), (0.6532815, 0.38268343, -0.6532815), (0.76817775, 0.38268343, -0.51328), (0.81549317, 0.19509032, -0.5448951), (0.81549317, 0.19509032, -0.5448951), (0.76817775, 0.38268343, -0.51328), (0.8535534, 0.38268343, -0.35355338), (0.90612745, 0.19509032, -0.37533027), (0.90612745, 0.19509032, -0.37533027), (0.8535534, 0.38268343, -0.35355338), (0.90612745, 0.38268343, -0.18023996), (0.96193975, 0.19509032, -0.19134171), (0.96193975, 0.19509032, -0.19134171), (0.90612745, 0.38268343, -0.18023996), (0.9238795, 0.38268343, 0), (0.98078525, 0.19509032, 0), (0.9238795, 0.38268343, 0), (0.8314696, 0.55557024, 0), (0.81549317, 0.55557024, 0.16221167), (0.90612745, 0.38268343, 0.18023996), (0.90612745, 0.38268343, 0.18023996), (0.81549317, 0.55557024, 0.16221167), (0.76817775, 0.55557024, 0.31818965), (0.8535534, 0.38268343, 0.35355338), (0.8535534, 0.38268343, 0.35355338), (0.76817775, 0.55557024, 0.31818965), (0.6913417, 0.55557024, 0.46193975), (0.76817775, 0.38268343, 0.51328), (0.76817775, 0.38268343, 0.51328), (0.6913417, 0.55557024, 0.46193975), (0.5879378, 0.55557024, 0.5879378), (0.6532815, 0.38268343, 0.6532815), (0.6532815, 0.38268343, 0.6532815), (0.5879378, 0.55557024, 0.5879378), (0.46193975, 0.55557024, 0.6913417), (0.51328, 0.38268343, 0.76817775), (0.51328, 0.38268343, 0.76817775), (0.46193975, 0.55557024, 0.6913417), (0.31818965, 0.55557024, 0.76817775), (0.35355338, 0.38268343, 0.8535534), (0.35355338, 0.38268343, 0.8535534), (0.31818965, 0.55557024, 0.76817775), (0.16221167, 0.55557024, 0.81549317), (0.18023996, 0.38268343, 0.90612745), (0.18023996, 0.38268343, 0.90612745), (0.16221167, 0.55557024, 0.81549317), (5.091283e-17, 0.55557024, 0.8314696), (5.6571306e-17, 0.38268343, 0.9238795), (5.6571306e-17, 0.38268343, 0.9238795), (5.091283e-17, 0.55557024, 0.8314696), (-0.16221167, 0.55557024, 0.81549317), (-0.18023996, 0.38268343, 0.90612745), (-0.18023996, 0.38268343, 0.90612745), (-0.16221167, 0.55557024, 0.81549317), (-0.31818965, 0.55557024, 0.76817775), (-0.35355338, 0.38268343, 0.8535534), (-0.35355338, 0.38268343, 0.8535534), (-0.31818965, 0.55557024, 0.76817775), (-0.46193975, 0.55557024, 0.6913417), (-0.51328, 0.38268343, 0.76817775), (-0.51328, 0.38268343, 0.76817775), (-0.46193975, 0.55557024, 0.6913417), (-0.5879378, 0.55557024, 0.5879378), (-0.6532815, 0.38268343, 0.6532815), (-0.6532815, 0.38268343, 0.6532815), (-0.5879378, 0.55557024, 0.5879378), (-0.6913417, 0.55557024, 0.46193975), (-0.76817775, 0.38268343, 0.51328), (-0.76817775, 0.38268343, 0.51328), (-0.6913417, 0.55557024, 0.46193975), (-0.76817775, 0.55557024, 0.31818965), (-0.8535534, 0.38268343, 0.35355338), (-0.8535534, 0.38268343, 0.35355338), (-0.76817775, 0.55557024, 0.31818965), (-0.81549317, 0.55557024, 0.16221167), (-0.90612745, 0.38268343, 0.18023996), (-0.90612745, 0.38268343, 0.18023996), (-0.81549317, 0.55557024, 0.16221167), (-0.8314696, 0.55557024, 1.0182566e-16), (-0.9238795, 0.38268343, 1.1314261e-16), (-0.9238795, 0.38268343, 1.1314261e-16), (-0.8314696, 0.55557024, 1.0182566e-16), (-0.81549317, 0.55557024, -0.16221167), (-0.90612745, 0.38268343, -0.18023996), (-0.90612745, 0.38268343, -0.18023996), (-0.81549317, 0.55557024, -0.16221167), (-0.76817775, 0.55557024, -0.31818965), (-0.8535534, 0.38268343, -0.35355338), (-0.8535534, 0.38268343, -0.35355338), (-0.76817775, 0.55557024, -0.31818965), (-0.6913417, 0.55557024, -0.46193975), (-0.76817775, 0.38268343, -0.51328), (-0.76817775, 0.38268343, -0.51328), (-0.6913417, 0.55557024, -0.46193975), (-0.5879378, 0.55557024, -0.5879378), (-0.6532815, 0.38268343, -0.6532815), (-0.6532815, 0.38268343, -0.6532815), (-0.5879378, 0.55557024, -0.5879378), (-0.46193975, 0.55557024, -0.6913417), (-0.51328, 0.38268343, -0.76817775), (-0.51328, 0.38268343, -0.76817775), (-0.46193975, 0.55557024, -0.6913417), (-0.31818965, 0.55557024, -0.76817775), (-0.35355338, 0.38268343, -0.8535534), (-0.35355338, 0.38268343, -0.8535534), (-0.31818965, 0.55557024, -0.76817775), (-0.16221167, 0.55557024, -0.81549317), (-0.18023996, 0.38268343, -0.90612745), (-0.18023996, 0.38268343, -0.90612745), (-0.16221167, 0.55557024, -0.81549317), (-1.5273849e-16, 0.55557024, -0.8314696), (-1.6971392e-16, 0.38268343, -0.9238795), (-1.6971392e-16, 0.38268343, -0.9238795), (-1.5273849e-16, 0.55557024, -0.8314696), (0.16221167, 0.55557024, -0.81549317), (0.18023996, 0.38268343, -0.90612745), (0.18023996, 0.38268343, -0.90612745), (0.16221167, 0.55557024, -0.81549317), (0.31818965, 0.55557024, -0.76817775), (0.35355338, 0.38268343, -0.8535534), (0.35355338, 0.38268343, -0.8535534), (0.31818965, 0.55557024, -0.76817775), (0.46193975, 0.55557024, -0.6913417), (0.51328, 0.38268343, -0.76817775), (0.51328, 0.38268343, -0.76817775), (0.46193975, 0.55557024, -0.6913417), (0.5879378, 0.55557024, -0.5879378), (0.6532815, 0.38268343, -0.6532815), (0.6532815, 0.38268343, -0.6532815), (0.5879378, 0.55557024, -0.5879378), (0.6913417, 0.55557024, -0.46193975), (0.76817775, 0.38268343, -0.51328), (0.76817775, 0.38268343, -0.51328), (0.6913417, 0.55557024, -0.46193975), (0.76817775, 0.55557024, -0.31818965), (0.8535534, 0.38268343, -0.35355338), (0.8535534, 0.38268343, -0.35355338), (0.76817775, 0.55557024, -0.31818965), (0.81549317, 0.55557024, -0.16221167), (0.90612745, 0.38268343, -0.18023996), (0.90612745, 0.38268343, -0.18023996), (0.81549317, 0.55557024, -0.16221167), (0.8314696, 0.55557024, 0), (0.9238795, 0.38268343, 0), (0.8314696, 0.55557024, 0), (0.70710677, 0.70710677, 0), (0.69351995, 0.70710677, 0.13794969), (0.81549317, 0.55557024, 0.16221167), (0.81549317, 0.55557024, 0.16221167), (0.69351995, 0.70710677, 0.13794969), (0.6532815, 0.70710677, 0.27059805), (0.76817775, 0.55557024, 0.31818965), (0.76817775, 0.55557024, 0.31818965), (0.6532815, 0.70710677, 0.27059805), (0.5879378, 0.70710677, 0.39284748), (0.6913417, 0.55557024, 0.46193975), (0.6913417, 0.55557024, 0.46193975), (0.5879378, 0.70710677, 0.39284748), (0.5, 0.70710677, 0.5), (0.5879378, 0.55557024, 0.5879378), (0.5879378, 0.55557024, 0.5879378), (0.5, 0.70710677, 0.5), (0.39284748, 0.70710677, 0.5879378), (0.46193975, 0.55557024, 0.6913417), (0.46193975, 0.55557024, 0.6913417), (0.39284748, 0.70710677, 0.5879378), (0.27059805, 0.70710677, 0.6532815), (0.31818965, 0.55557024, 0.76817775), (0.31818965, 0.55557024, 0.76817775), (0.27059805, 0.70710677, 0.6532815), (0.13794969, 0.70710677, 0.69351995), (0.16221167, 0.55557024, 0.81549317), (0.16221167, 0.55557024, 0.81549317), (0.13794969, 0.70710677, 0.69351995), (4.3297803e-17, 0.70710677, 0.70710677), (5.091283e-17, 0.55557024, 0.8314696), (5.091283e-17, 0.55557024, 0.8314696), (4.3297803e-17, 0.70710677, 0.70710677), (-0.13794969, 0.70710677, 0.69351995), (-0.16221167, 0.55557024, 0.81549317), (-0.16221167, 0.55557024, 0.81549317), (-0.13794969, 0.70710677, 0.69351995), (-0.27059805, 0.70710677, 0.6532815), (-0.31818965, 0.55557024, 0.76817775), (-0.31818965, 0.55557024, 0.76817775), (-0.27059805, 0.70710677, 0.6532815), (-0.39284748, 0.70710677, 0.5879378), (-0.46193975, 0.55557024, 0.6913417), (-0.46193975, 0.55557024, 0.6913417), (-0.39284748, 0.70710677, 0.5879378), (-0.5, 0.70710677, 0.5), (-0.5879378, 0.55557024, 0.5879378), (-0.5879378, 0.55557024, 0.5879378), (-0.5, 0.70710677, 0.5), (-0.5879378, 0.70710677, 0.39284748), (-0.6913417, 0.55557024, 0.46193975), (-0.6913417, 0.55557024, 0.46193975), (-0.5879378, 0.70710677, 0.39284748), (-0.6532815, 0.70710677, 0.27059805), (-0.76817775, 0.55557024, 0.31818965), (-0.76817775, 0.55557024, 0.31818965), (-0.6532815, 0.70710677, 0.27059805), (-0.69351995, 0.70710677, 0.13794969), (-0.81549317, 0.55557024, 0.16221167), (-0.81549317, 0.55557024, 0.16221167), (-0.69351995, 0.70710677, 0.13794969), (-0.70710677, 0.70710677, 8.6595606e-17), (-0.8314696, 0.55557024, 1.0182566e-16), (-0.8314696, 0.55557024, 1.0182566e-16), (-0.70710677, 0.70710677, 8.6595606e-17), (-0.69351995, 0.70710677, -0.13794969), (-0.81549317, 0.55557024, -0.16221167), (-0.81549317, 0.55557024, -0.16221167), (-0.69351995, 0.70710677, -0.13794969), (-0.6532815, 0.70710677, -0.27059805), (-0.76817775, 0.55557024, -0.31818965), (-0.76817775, 0.55557024, -0.31818965), (-0.6532815, 0.70710677, -0.27059805), (-0.5879378, 0.70710677, -0.39284748), (-0.6913417, 0.55557024, -0.46193975), (-0.6913417, 0.55557024, -0.46193975), (-0.5879378, 0.70710677, -0.39284748), (-0.5, 0.70710677, -0.5), (-0.5879378, 0.55557024, -0.5879378), (-0.5879378, 0.55557024, -0.5879378), (-0.5, 0.70710677, -0.5), (-0.39284748, 0.70710677, -0.5879378), (-0.46193975, 0.55557024, -0.6913417), (-0.46193975, 0.55557024, -0.6913417), (-0.39284748, 0.70710677, -0.5879378), (-0.27059805, 0.70710677, -0.6532815), (-0.31818965, 0.55557024, -0.76817775), (-0.31818965, 0.55557024, -0.76817775), (-0.27059805, 0.70710677, -0.6532815), (-0.13794969, 0.70710677, -0.69351995), (-0.16221167, 0.55557024, -0.81549317), (-0.16221167, 0.55557024, -0.81549317), (-0.13794969, 0.70710677, -0.69351995), (-1.298934e-16, 0.70710677, -0.70710677), (-1.5273849e-16, 0.55557024, -0.8314696), (-1.5273849e-16, 0.55557024, -0.8314696), (-1.298934e-16, 0.70710677, -0.70710677), (0.13794969, 0.70710677, -0.69351995), (0.16221167, 0.55557024, -0.81549317), (0.16221167, 0.55557024, -0.81549317), (0.13794969, 0.70710677, -0.69351995), (0.27059805, 0.70710677, -0.6532815), (0.31818965, 0.55557024, -0.76817775), (0.31818965, 0.55557024, -0.76817775), (0.27059805, 0.70710677, -0.6532815), (0.39284748, 0.70710677, -0.5879378), (0.46193975, 0.55557024, -0.6913417), (0.46193975, 0.55557024, -0.6913417), (0.39284748, 0.70710677, -0.5879378), (0.5, 0.70710677, -0.5), (0.5879378, 0.55557024, -0.5879378), (0.5879378, 0.55557024, -0.5879378), (0.5, 0.70710677, -0.5), (0.5879378, 0.70710677, -0.39284748), (0.6913417, 0.55557024, -0.46193975), (0.6913417, 0.55557024, -0.46193975), (0.5879378, 0.70710677, -0.39284748), (0.6532815, 0.70710677, -0.27059805), (0.76817775, 0.55557024, -0.31818965), (0.76817775, 0.55557024, -0.31818965), (0.6532815, 0.70710677, -0.27059805), (0.69351995, 0.70710677, -0.13794969), (0.81549317, 0.55557024, -0.16221167), (0.81549317, 0.55557024, -0.16221167), (0.69351995, 0.70710677, -0.13794969), (0.70710677, 0.70710677, 0), (0.8314696, 0.55557024, 0), (0.70710677, 0.70710677, 0), (0.55557024, 0.8314696, 0), (0.5448951, 0.8314696, 0.108386375), (0.69351995, 0.70710677, 0.13794969), (0.69351995, 0.70710677, 0.13794969), (0.5448951, 0.8314696, 0.108386375), (0.51328, 0.8314696, 0.21260752), (0.6532815, 0.70710677, 0.27059805), (0.6532815, 0.70710677, 0.27059805), (0.51328, 0.8314696, 0.21260752), (0.46193975, 0.8314696, 0.30865827), (0.5879378, 0.70710677, 0.39284748), (0.5879378, 0.70710677, 0.39284748), (0.46193975, 0.8314696, 0.30865827), (0.39284748, 0.8314696, 0.39284748), (0.5, 0.70710677, 0.5), (0.5, 0.70710677, 0.5), (0.39284748, 0.8314696, 0.39284748), (0.30865827, 0.8314696, 0.46193975), (0.39284748, 0.70710677, 0.5879378), (0.39284748, 0.70710677, 0.5879378), (0.30865827, 0.8314696, 0.46193975), (0.21260752, 0.8314696, 0.51328), (0.27059805, 0.70710677, 0.6532815), (0.27059805, 0.70710677, 0.6532815), (0.21260752, 0.8314696, 0.51328), (0.108386375, 0.8314696, 0.5448951), (0.13794969, 0.70710677, 0.69351995), (0.13794969, 0.70710677, 0.69351995), (0.108386375, 0.8314696, 0.5448951), (3.4018865e-17, 0.8314696, 0.55557024), (4.3297803e-17, 0.70710677, 0.70710677), (4.3297803e-17, 0.70710677, 0.70710677), (3.4018865e-17, 0.8314696, 0.55557024), (-0.108386375, 0.8314696, 0.5448951), (-0.13794969, 0.70710677, 0.69351995), (-0.13794969, 0.70710677, 0.69351995), (-0.108386375, 0.8314696, 0.5448951), (-0.21260752, 0.8314696, 0.51328), (-0.27059805, 0.70710677, 0.6532815), (-0.27059805, 0.70710677, 0.6532815), (-0.21260752, 0.8314696, 0.51328), (-0.30865827, 0.8314696, 0.46193975), (-0.39284748, 0.70710677, 0.5879378), (-0.39284748, 0.70710677, 0.5879378), (-0.30865827, 0.8314696, 0.46193975), (-0.39284748, 0.8314696, 0.39284748), (-0.5, 0.70710677, 0.5), (-0.5, 0.70710677, 0.5), (-0.39284748, 0.8314696, 0.39284748), (-0.46193975, 0.8314696, 0.30865827), (-0.5879378, 0.70710677, 0.39284748), (-0.5879378, 0.70710677, 0.39284748), (-0.46193975, 0.8314696, 0.30865827), (-0.51328, 0.8314696, 0.21260752), (-0.6532815, 0.70710677, 0.27059805), (-0.6532815, 0.70710677, 0.27059805), (-0.51328, 0.8314696, 0.21260752), (-0.5448951, 0.8314696, 0.108386375), (-0.69351995, 0.70710677, 0.13794969), (-0.69351995, 0.70710677, 0.13794969), (-0.5448951, 0.8314696, 0.108386375), (-0.55557024, 0.8314696, 6.803773e-17), (-0.70710677, 0.70710677, 8.6595606e-17), (-0.70710677, 0.70710677, 8.6595606e-17), (-0.55557024, 0.8314696, 6.803773e-17), (-0.5448951, 0.8314696, -0.108386375), (-0.69351995, 0.70710677, -0.13794969), (-0.69351995, 0.70710677, -0.13794969), (-0.5448951, 0.8314696, -0.108386375), (-0.51328, 0.8314696, -0.21260752), (-0.6532815, 0.70710677, -0.27059805), (-0.6532815, 0.70710677, -0.27059805), (-0.51328, 0.8314696, -0.21260752), (-0.46193975, 0.8314696, -0.30865827), (-0.5879378, 0.70710677, -0.39284748), (-0.5879378, 0.70710677, -0.39284748), (-0.46193975, 0.8314696, -0.30865827), (-0.39284748, 0.8314696, -0.39284748), (-0.5, 0.70710677, -0.5), (-0.5, 0.70710677, -0.5), (-0.39284748, 0.8314696, -0.39284748), (-0.30865827, 0.8314696, -0.46193975), (-0.39284748, 0.70710677, -0.5879378), (-0.39284748, 0.70710677, -0.5879378), (-0.30865827, 0.8314696, -0.46193975), (-0.21260752, 0.8314696, -0.51328), (-0.27059805, 0.70710677, -0.6532815), (-0.27059805, 0.70710677, -0.6532815), (-0.21260752, 0.8314696, -0.51328), (-0.108386375, 0.8314696, -0.5448951), (-0.13794969, 0.70710677, -0.69351995), (-0.13794969, 0.70710677, -0.69351995), (-0.108386375, 0.8314696, -0.5448951), (-1.020566e-16, 0.8314696, -0.55557024), (-1.298934e-16, 0.70710677, -0.70710677), (-1.298934e-16, 0.70710677, -0.70710677), (-1.020566e-16, 0.8314696, -0.55557024), (0.108386375, 0.8314696, -0.5448951), (0.13794969, 0.70710677, -0.69351995), (0.13794969, 0.70710677, -0.69351995), (0.108386375, 0.8314696, -0.5448951), (0.21260752, 0.8314696, -0.51328), (0.27059805, 0.70710677, -0.6532815), (0.27059805, 0.70710677, -0.6532815), (0.21260752, 0.8314696, -0.51328), (0.30865827, 0.8314696, -0.46193975), (0.39284748, 0.70710677, -0.5879378), (0.39284748, 0.70710677, -0.5879378), (0.30865827, 0.8314696, -0.46193975), (0.39284748, 0.8314696, -0.39284748), (0.5, 0.70710677, -0.5), (0.5, 0.70710677, -0.5), (0.39284748, 0.8314696, -0.39284748), (0.46193975, 0.8314696, -0.30865827), (0.5879378, 0.70710677, -0.39284748), (0.5879378, 0.70710677, -0.39284748), (0.46193975, 0.8314696, -0.30865827), (0.51328, 0.8314696, -0.21260752), (0.6532815, 0.70710677, -0.27059805), (0.6532815, 0.70710677, -0.27059805), (0.51328, 0.8314696, -0.21260752), (0.5448951, 0.8314696, -0.108386375), (0.69351995, 0.70710677, -0.13794969), (0.69351995, 0.70710677, -0.13794969), (0.5448951, 0.8314696, -0.108386375), (0.55557024, 0.8314696, 0), (0.70710677, 0.70710677, 0), (0.55557024, 0.8314696, 0), (0.38268343, 0.9238795, 0), (0.37533027, 0.9238795, 0.074657835), (0.5448951, 0.8314696, 0.108386375), (0.5448951, 0.8314696, 0.108386375), (0.37533027, 0.9238795, 0.074657835), (0.35355338, 0.9238795, 0.14644662), (0.51328, 0.8314696, 0.21260752), (0.51328, 0.8314696, 0.21260752), (0.35355338, 0.9238795, 0.14644662), (0.31818965, 0.9238795, 0.21260752), (0.46193975, 0.8314696, 0.30865827), (0.46193975, 0.8314696, 0.30865827), (0.31818965, 0.9238795, 0.21260752), (0.27059805, 0.9238795, 0.27059805), (0.39284748, 0.8314696, 0.39284748), (0.39284748, 0.8314696, 0.39284748), (0.27059805, 0.9238795, 0.27059805), (0.21260752, 0.9238795, 0.31818965), (0.30865827, 0.8314696, 0.46193975), (0.30865827, 0.8314696, 0.46193975), (0.21260752, 0.9238795, 0.31818965), (0.14644662, 0.9238795, 0.35355338), (0.21260752, 0.8314696, 0.51328), (0.21260752, 0.8314696, 0.51328), (0.14644662, 0.9238795, 0.35355338), (0.074657835, 0.9238795, 0.37533027), (0.108386375, 0.8314696, 0.5448951), (0.108386375, 0.8314696, 0.5448951), (0.074657835, 0.9238795, 0.37533027), (2.3432602e-17, 0.9238795, 0.38268343), (3.4018865e-17, 0.8314696, 0.55557024), (3.4018865e-17, 0.8314696, 0.55557024), (2.3432602e-17, 0.9238795, 0.38268343), (-0.074657835, 0.9238795, 0.37533027), (-0.108386375, 0.8314696, 0.5448951), (-0.108386375, 0.8314696, 0.5448951), (-0.074657835, 0.9238795, 0.37533027), (-0.14644662, 0.9238795, 0.35355338), (-0.21260752, 0.8314696, 0.51328), (-0.21260752, 0.8314696, 0.51328), (-0.14644662, 0.9238795, 0.35355338), (-0.21260752, 0.9238795, 0.31818965), (-0.30865827, 0.8314696, 0.46193975), (-0.30865827, 0.8314696, 0.46193975), (-0.21260752, 0.9238795, 0.31818965), (-0.27059805, 0.9238795, 0.27059805), (-0.39284748, 0.8314696, 0.39284748), (-0.39284748, 0.8314696, 0.39284748), (-0.27059805, 0.9238795, 0.27059805), (-0.31818965, 0.9238795, 0.21260752), (-0.46193975, 0.8314696, 0.30865827), (-0.46193975, 0.8314696, 0.30865827), (-0.31818965, 0.9238795, 0.21260752), (-0.35355338, 0.9238795, 0.14644662), (-0.51328, 0.8314696, 0.21260752), (-0.51328, 0.8314696, 0.21260752), (-0.35355338, 0.9238795, 0.14644662), (-0.37533027, 0.9238795, 0.074657835), (-0.5448951, 0.8314696, 0.108386375), (-0.5448951, 0.8314696, 0.108386375), (-0.37533027, 0.9238795, 0.074657835), (-0.38268343, 0.9238795, 4.6865205e-17), (-0.55557024, 0.8314696, 6.803773e-17), (-0.55557024, 0.8314696, 6.803773e-17), (-0.38268343, 0.9238795, 4.6865205e-17), (-0.37533027, 0.9238795, -0.074657835), (-0.5448951, 0.8314696, -0.108386375), (-0.5448951, 0.8314696, -0.108386375), (-0.37533027, 0.9238795, -0.074657835), (-0.35355338, 0.9238795, -0.14644662), (-0.51328, 0.8314696, -0.21260752), (-0.51328, 0.8314696, -0.21260752), (-0.35355338, 0.9238795, -0.14644662), (-0.31818965, 0.9238795, -0.21260752), (-0.46193975, 0.8314696, -0.30865827), (-0.46193975, 0.8314696, -0.30865827), (-0.31818965, 0.9238795, -0.21260752), (-0.27059805, 0.9238795, -0.27059805), (-0.39284748, 0.8314696, -0.39284748), (-0.39284748, 0.8314696, -0.39284748), (-0.27059805, 0.9238795, -0.27059805), (-0.21260752, 0.9238795, -0.31818965), (-0.30865827, 0.8314696, -0.46193975), (-0.30865827, 0.8314696, -0.46193975), (-0.21260752, 0.9238795, -0.31818965), (-0.14644662, 0.9238795, -0.35355338), (-0.21260752, 0.8314696, -0.51328), (-0.21260752, 0.8314696, -0.51328), (-0.14644662, 0.9238795, -0.35355338), (-0.074657835, 0.9238795, -0.37533027), (-0.108386375, 0.8314696, -0.5448951), (-0.108386375, 0.8314696, -0.5448951), (-0.074657835, 0.9238795, -0.37533027), (-7.0297805e-17, 0.9238795, -0.38268343), (-1.020566e-16, 0.8314696, -0.55557024), (-1.020566e-16, 0.8314696, -0.55557024), (-7.0297805e-17, 0.9238795, -0.38268343), (0.074657835, 0.9238795, -0.37533027), (0.108386375, 0.8314696, -0.5448951), (0.108386375, 0.8314696, -0.5448951), (0.074657835, 0.9238795, -0.37533027), (0.14644662, 0.9238795, -0.35355338), (0.21260752, 0.8314696, -0.51328), (0.21260752, 0.8314696, -0.51328), (0.14644662, 0.9238795, -0.35355338), (0.21260752, 0.9238795, -0.31818965), (0.30865827, 0.8314696, -0.46193975), (0.30865827, 0.8314696, -0.46193975), (0.21260752, 0.9238795, -0.31818965), (0.27059805, 0.9238795, -0.27059805), (0.39284748, 0.8314696, -0.39284748), (0.39284748, 0.8314696, -0.39284748), (0.27059805, 0.9238795, -0.27059805), (0.31818965, 0.9238795, -0.21260752), (0.46193975, 0.8314696, -0.30865827), (0.46193975, 0.8314696, -0.30865827), (0.31818965, 0.9238795, -0.21260752), (0.35355338, 0.9238795, -0.14644662), (0.51328, 0.8314696, -0.21260752), (0.51328, 0.8314696, -0.21260752), (0.35355338, 0.9238795, -0.14644662), (0.37533027, 0.9238795, -0.074657835), (0.5448951, 0.8314696, -0.108386375), (0.5448951, 0.8314696, -0.108386375), (0.37533027, 0.9238795, -0.074657835), (0.38268343, 0.9238795, 0), (0.55557024, 0.8314696, 0), (0.38268343, 0.9238795, 0), (0.19509032, 0.98078525, 0), (0.19134171, 0.98078525, 0.038060233), (0.37533027, 0.9238795, 0.074657835), (0.37533027, 0.9238795, 0.074657835), (0.19134171, 0.98078525, 0.038060233), (0.18023996, 0.98078525, 0.074657835), (0.35355338, 0.9238795, 0.14644662), (0.35355338, 0.9238795, 0.14644662), (0.18023996, 0.98078525, 0.074657835), (0.16221167, 0.98078525, 0.108386375), (0.31818965, 0.9238795, 0.21260752), (0.31818965, 0.9238795, 0.21260752), (0.16221167, 0.98078525, 0.108386375), (0.13794969, 0.98078525, 0.13794969), (0.27059805, 0.9238795, 0.27059805), (0.27059805, 0.9238795, 0.27059805), (0.13794969, 0.98078525, 0.13794969), (0.108386375, 0.98078525, 0.16221167), (0.21260752, 0.9238795, 0.31818965), (0.21260752, 0.9238795, 0.31818965), (0.108386375, 0.98078525, 0.16221167), (0.074657835, 0.98078525, 0.18023996), (0.14644662, 0.9238795, 0.35355338), (0.14644662, 0.9238795, 0.35355338), (0.074657835, 0.98078525, 0.18023996), (0.038060233, 0.98078525, 0.19134171), (0.074657835, 0.9238795, 0.37533027), (0.074657835, 0.9238795, 0.37533027), (0.038060233, 0.98078525, 0.19134171), (1.1945837e-17, 0.98078525, 0.19509032), (2.3432602e-17, 0.9238795, 0.38268343), (2.3432602e-17, 0.9238795, 0.38268343), (1.1945837e-17, 0.98078525, 0.19509032), (-0.038060233, 0.98078525, 0.19134171), (-0.074657835, 0.9238795, 0.37533027), (-0.074657835, 0.9238795, 0.37533027), (-0.038060233, 0.98078525, 0.19134171), (-0.074657835, 0.98078525, 0.18023996), (-0.14644662, 0.9238795, 0.35355338), (-0.14644662, 0.9238795, 0.35355338), (-0.074657835, 0.98078525, 0.18023996), (-0.108386375, 0.98078525, 0.16221167), (-0.21260752, 0.9238795, 0.31818965), (-0.21260752, 0.9238795, 0.31818965), (-0.108386375, 0.98078525, 0.16221167), (-0.13794969, 0.98078525, 0.13794969), (-0.27059805, 0.9238795, 0.27059805), (-0.27059805, 0.9238795, 0.27059805), (-0.13794969, 0.98078525, 0.13794969), (-0.16221167, 0.98078525, 0.108386375), (-0.31818965, 0.9238795, 0.21260752), (-0.31818965, 0.9238795, 0.21260752), (-0.16221167, 0.98078525, 0.108386375), (-0.18023996, 0.98078525, 0.074657835), (-0.35355338, 0.9238795, 0.14644662), (-0.35355338, 0.9238795, 0.14644662), (-0.18023996, 0.98078525, 0.074657835), (-0.19134171, 0.98078525, 0.038060233), (-0.37533027, 0.9238795, 0.074657835), (-0.37533027, 0.9238795, 0.074657835), (-0.19134171, 0.98078525, 0.038060233), (-0.19509032, 0.98078525, 2.3891674e-17), (-0.38268343, 0.9238795, 4.6865205e-17), (-0.38268343, 0.9238795, 4.6865205e-17), (-0.19509032, 0.98078525, 2.3891674e-17), (-0.19134171, 0.98078525, -0.038060233), (-0.37533027, 0.9238795, -0.074657835), (-0.37533027, 0.9238795, -0.074657835), (-0.19134171, 0.98078525, -0.038060233), (-0.18023996, 0.98078525, -0.074657835), (-0.35355338, 0.9238795, -0.14644662), (-0.35355338, 0.9238795, -0.14644662), (-0.18023996, 0.98078525, -0.074657835), (-0.16221167, 0.98078525, -0.108386375), (-0.31818965, 0.9238795, -0.21260752), (-0.31818965, 0.9238795, -0.21260752), (-0.16221167, 0.98078525, -0.108386375), (-0.13794969, 0.98078525, -0.13794969), (-0.27059805, 0.9238795, -0.27059805), (-0.27059805, 0.9238795, -0.27059805), (-0.13794969, 0.98078525, -0.13794969), (-0.108386375, 0.98078525, -0.16221167), (-0.21260752, 0.9238795, -0.31818965), (-0.21260752, 0.9238795, -0.31818965), (-0.108386375, 0.98078525, -0.16221167), (-0.074657835, 0.98078525, -0.18023996), (-0.14644662, 0.9238795, -0.35355338), (-0.14644662, 0.9238795, -0.35355338), (-0.074657835, 0.98078525, -0.18023996), (-0.038060233, 0.98078525, -0.19134171), (-0.074657835, 0.9238795, -0.37533027), (-0.074657835, 0.9238795, -0.37533027), (-0.038060233, 0.98078525, -0.19134171), (-3.583751e-17, 0.98078525, -0.19509032), (-7.0297805e-17, 0.9238795, -0.38268343), (-7.0297805e-17, 0.9238795, -0.38268343), (-3.583751e-17, 0.98078525, -0.19509032), (0.038060233, 0.98078525, -0.19134171), (0.074657835, 0.9238795, -0.37533027), (0.074657835, 0.9238795, -0.37533027), (0.038060233, 0.98078525, -0.19134171), (0.074657835, 0.98078525, -0.18023996), (0.14644662, 0.9238795, -0.35355338), (0.14644662, 0.9238795, -0.35355338), (0.074657835, 0.98078525, -0.18023996), (0.108386375, 0.98078525, -0.16221167), (0.21260752, 0.9238795, -0.31818965), (0.21260752, 0.9238795, -0.31818965), (0.108386375, 0.98078525, -0.16221167), (0.13794969, 0.98078525, -0.13794969), (0.27059805, 0.9238795, -0.27059805), (0.27059805, 0.9238795, -0.27059805), (0.13794969, 0.98078525, -0.13794969), (0.16221167, 0.98078525, -0.108386375), (0.31818965, 0.9238795, -0.21260752), (0.31818965, 0.9238795, -0.21260752), (0.16221167, 0.98078525, -0.108386375), (0.18023996, 0.98078525, -0.074657835), (0.35355338, 0.9238795, -0.14644662), (0.35355338, 0.9238795, -0.14644662), (0.18023996, 0.98078525, -0.074657835), (0.19134171, 0.98078525, -0.038060233), (0.37533027, 0.9238795, -0.074657835), (0.37533027, 0.9238795, -0.074657835), (0.19134171, 0.98078525, -0.038060233), (0.19509032, 0.98078525, 0), (0.38268343, 0.9238795, 0), (0.19509032, 0.98078525, 0), (0, 1, 0), (0, 1, 0), (0.19134171, 0.98078525, 0.038060233), (0.19134171, 0.98078525, 0.038060233), (0, 1, 0), (0, 1, 0), (0.18023996, 0.98078525, 0.074657835), (0.18023996, 0.98078525, 0.074657835), (0, 1, 0), (0, 1, 0), (0.16221167, 0.98078525, 0.108386375), (0.16221167, 0.98078525, 0.108386375), (0, 1, 0), (0, 1, 0), (0.13794969, 0.98078525, 0.13794969), (0.13794969, 0.98078525, 0.13794969), (0, 1, 0), (0, 1, 0), (0.108386375, 0.98078525, 0.16221167), (0.108386375, 0.98078525, 0.16221167), (0, 1, 0), (0, 1, 0), (0.074657835, 0.98078525, 0.18023996), (0.074657835, 0.98078525, 0.18023996), (0, 1, 0), (0, 1, 0), (0.038060233, 0.98078525, 0.19134171), (0.038060233, 0.98078525, 0.19134171), (0, 1, 0), (0, 1, 0), (1.1945837e-17, 0.98078525, 0.19509032), (1.1945837e-17, 0.98078525, 0.19509032), (0, 1, 0), (0, 1, 0), (-0.038060233, 0.98078525, 0.19134171), (-0.038060233, 0.98078525, 0.19134171), (0, 1, 0), (0, 1, 0), (-0.074657835, 0.98078525, 0.18023996), (-0.074657835, 0.98078525, 0.18023996), (0, 1, 0), (0, 1, 0), (-0.108386375, 0.98078525, 0.16221167), (-0.108386375, 0.98078525, 0.16221167), (0, 1, 0), (0, 1, 0), (-0.13794969, 0.98078525, 0.13794969), (-0.13794969, 0.98078525, 0.13794969), (0, 1, 0), (0, 1, 0), (-0.16221167, 0.98078525, 0.108386375), (-0.16221167, 0.98078525, 0.108386375), (0, 1, 0), (0, 1, 0), (-0.18023996, 0.98078525, 0.074657835), (-0.18023996, 0.98078525, 0.074657835), (0, 1, 0), (0, 1, 0), (-0.19134171, 0.98078525, 0.038060233), (-0.19134171, 0.98078525, 0.038060233), (0, 1, 0), (0, 1, 0), (-0.19509032, 0.98078525, 2.3891674e-17), (-0.19509032, 0.98078525, 2.3891674e-17), (0, 1, 0), (0, 1, 0), (-0.19134171, 0.98078525, -0.038060233), (-0.19134171, 0.98078525, -0.038060233), (0, 1, 0), (0, 1, 0), (-0.18023996, 0.98078525, -0.074657835), (-0.18023996, 0.98078525, -0.074657835), (0, 1, 0), (0, 1, 0), (-0.16221167, 0.98078525, -0.108386375), (-0.16221167, 0.98078525, -0.108386375), (0, 1, 0), (0, 1, 0), (-0.13794969, 0.98078525, -0.13794969), (-0.13794969, 0.98078525, -0.13794969), (0, 1, 0), (0, 1, 0), (-0.108386375, 0.98078525, -0.16221167), (-0.108386375, 0.98078525, -0.16221167), (0, 1, 0), (0, 1, 0), (-0.074657835, 0.98078525, -0.18023996), (-0.074657835, 0.98078525, -0.18023996), (0, 1, 0), (0, 1, 0), (-0.038060233, 0.98078525, -0.19134171), (-0.038060233, 0.98078525, -0.19134171), (0, 1, 0), (0, 1, 0), (-3.583751e-17, 0.98078525, -0.19509032), (-3.583751e-17, 0.98078525, -0.19509032), (0, 1, 0), (0, 1, 0), (0.038060233, 0.98078525, -0.19134171), (0.038060233, 0.98078525, -0.19134171), (0, 1, 0), (0, 1, 0), (0.074657835, 0.98078525, -0.18023996), (0.074657835, 0.98078525, -0.18023996), (0, 1, 0), (0, 1, 0), (0.108386375, 0.98078525, -0.16221167), (0.108386375, 0.98078525, -0.16221167), (0, 1, 0), (0, 1, 0), (0.13794969, 0.98078525, -0.13794969), (0.13794969, 0.98078525, -0.13794969), (0, 1, 0), (0, 1, 0), (0.16221167, 0.98078525, -0.108386375), (0.16221167, 0.98078525, -0.108386375), (0, 1, 0), (0, 1, 0), (0.18023996, 0.98078525, -0.074657835), (0.18023996, 0.98078525, -0.074657835), (0, 1, 0), (0, 1, 0), (0.19134171, 0.98078525, -0.038060233), (0.19134171, 0.98078525, -0.038060233), (0, 1, 0), (0, 1, 0), (0.19509032, 0.98078525, 0), (0, 1, 0), (-0.19509032, 0.98078525, 0), (-0.19134171, 0.98078525, -0.038060233), (0, 1, 0), (0, 1, 0), (-0.19134171, 0.98078525, -0.038060233), (-0.18023996, 0.98078525, -0.074657835), (0, 1, 0), (0, 1, 0), (-0.18023996, 0.98078525, -0.074657835), (-0.16221167, 0.98078525, -0.108386375), (0, 1, 0), (0, 1, 0), (-0.16221167, 0.98078525, -0.108386375), (-0.13794969, 0.98078525, -0.13794969), (0, 1, 0), (0, 1, 0), (-0.13794969, 0.98078525, -0.13794969), (-0.108386375, 0.98078525, -0.16221167), (0, 1, 0), (0, 1, 0), (-0.108386375, 0.98078525, -0.16221167), (-0.074657835, 0.98078525, -0.18023996), (0, 1, 0), (0, 1, 0), (-0.074657835, 0.98078525, -0.18023996), (-0.038060233, 0.98078525, -0.19134171), (0, 1, 0), (0, 1, 0), (-0.038060233, 0.98078525, -0.19134171), (-1.1945837e-17, 0.98078525, -0.19509032), (0, 1, 0), (0, 1, 0), (-1.1945837e-17, 0.98078525, -0.19509032), (0.038060233, 0.98078525, -0.19134171), (0, 1, 0), (0, 1, 0), (0.038060233, 0.98078525, -0.19134171), (0.074657835, 0.98078525, -0.18023996), (0, 1, 0), (0, 1, 0), (0.074657835, 0.98078525, -0.18023996), (0.108386375, 0.98078525, -0.16221167), (0, 1, 0), (0, 1, 0), (0.108386375, 0.98078525, -0.16221167), (0.13794969, 0.98078525, -0.13794969), (0, 1, 0), (0, 1, 0), (0.13794969, 0.98078525, -0.13794969), (0.16221167, 0.98078525, -0.108386375), (0, 1, 0), (0, 1, 0), (0.16221167, 0.98078525, -0.108386375), (0.18023996, 0.98078525, -0.074657835), (0, 1, 0), (0, 1, 0), (0.18023996, 0.98078525, -0.074657835), (0.19134171, 0.98078525, -0.038060233), (0, 1, 0), (0, 1, 0), (0.19134171, 0.98078525, -0.038060233), (0.19509032, 0.98078525, -2.3891674e-17), (0, 1, 0), (0, 1, 0), (0.19509032, 0.98078525, -2.3891674e-17), (0.19134171, 0.98078525, 0.038060233), (0, 1, 0), (0, 1, 0), (0.19134171, 0.98078525, 0.038060233), (0.18023996, 0.98078525, 0.074657835), (0, 1, 0), (0, 1, 0), (0.18023996, 0.98078525, 0.074657835), (0.16221167, 0.98078525, 0.108386375), (0, 1, 0), (0, 1, 0), (0.16221167, 0.98078525, 0.108386375), (0.13794969, 0.98078525, 0.13794969), (0, 1, 0), (0, 1, 0), (0.13794969, 0.98078525, 0.13794969), (0.108386375, 0.98078525, 0.16221167), (0, 1, 0), (0, 1, 0), (0.108386375, 0.98078525, 0.16221167), (0.074657835, 0.98078525, 0.18023996), (0, 1, 0), (0, 1, 0), (0.074657835, 0.98078525, 0.18023996), (0.038060233, 0.98078525, 0.19134171), (0, 1, 0), (0, 1, 0), (0.038060233, 0.98078525, 0.19134171), (3.583751e-17, 0.98078525, 0.19509032), (0, 1, 0), (0, 1, 0), (3.583751e-17, 0.98078525, 0.19509032), (-0.038060233, 0.98078525, 0.19134171), (0, 1, 0), (0, 1, 0), (-0.038060233, 0.98078525, 0.19134171), (-0.074657835, 0.98078525, 0.18023996), (0, 1, 0), (0, 1, 0), (-0.074657835, 0.98078525, 0.18023996), (-0.108386375, 0.98078525, 0.16221167), (0, 1, 0), (0, 1, 0), (-0.108386375, 0.98078525, 0.16221167), (-0.13794969, 0.98078525, 0.13794969), (0, 1, 0), (0, 1, 0), (-0.13794969, 0.98078525, 0.13794969), (-0.16221167, 0.98078525, 0.108386375), (0, 1, 0), (0, 1, 0), (-0.16221167, 0.98078525, 0.108386375), (-0.18023996, 0.98078525, 0.074657835), (0, 1, 0), (0, 1, 0), (-0.18023996, 0.98078525, 0.074657835), (-0.19134171, 0.98078525, 0.038060233), (0, 1, 0), (0, 1, 0), (-0.19134171, 0.98078525, 0.038060233), (-0.19509032, 0.98078525, 0), (0, 1, 0), (-0.19509032, 0.98078525, 0), (-0.38268343, 0.9238795, 0), (-0.37533027, 0.9238795, -0.074657835), (-0.19134171, 0.98078525, -0.038060233), (-0.19134171, 0.98078525, -0.038060233), (-0.37533027, 0.9238795, -0.074657835), (-0.35355338, 0.9238795, -0.14644662), (-0.18023996, 0.98078525, -0.074657835), (-0.18023996, 0.98078525, -0.074657835), (-0.35355338, 0.9238795, -0.14644662), (-0.31818965, 0.9238795, -0.21260752), (-0.16221167, 0.98078525, -0.108386375), (-0.16221167, 0.98078525, -0.108386375), (-0.31818965, 0.9238795, -0.21260752), (-0.27059805, 0.9238795, -0.27059805), (-0.13794969, 0.98078525, -0.13794969), (-0.13794969, 0.98078525, -0.13794969), (-0.27059805, 0.9238795, -0.27059805), (-0.21260752, 0.9238795, -0.31818965), (-0.108386375, 0.98078525, -0.16221167), (-0.108386375, 0.98078525, -0.16221167), (-0.21260752, 0.9238795, -0.31818965), (-0.14644662, 0.9238795, -0.35355338), (-0.074657835, 0.98078525, -0.18023996), (-0.074657835, 0.98078525, -0.18023996), (-0.14644662, 0.9238795, -0.35355338), (-0.074657835, 0.9238795, -0.37533027), (-0.038060233, 0.98078525, -0.19134171), (-0.038060233, 0.98078525, -0.19134171), (-0.074657835, 0.9238795, -0.37533027), (-2.3432602e-17, 0.9238795, -0.38268343), (-1.1945837e-17, 0.98078525, -0.19509032), (-1.1945837e-17, 0.98078525, -0.19509032), (-2.3432602e-17, 0.9238795, -0.38268343), (0.074657835, 0.9238795, -0.37533027), (0.038060233, 0.98078525, -0.19134171), (0.038060233, 0.98078525, -0.19134171), (0.074657835, 0.9238795, -0.37533027), (0.14644662, 0.9238795, -0.35355338), (0.074657835, 0.98078525, -0.18023996), (0.074657835, 0.98078525, -0.18023996), (0.14644662, 0.9238795, -0.35355338), (0.21260752, 0.9238795, -0.31818965), (0.108386375, 0.98078525, -0.16221167), (0.108386375, 0.98078525, -0.16221167), (0.21260752, 0.9238795, -0.31818965), (0.27059805, 0.9238795, -0.27059805), (0.13794969, 0.98078525, -0.13794969), (0.13794969, 0.98078525, -0.13794969), (0.27059805, 0.9238795, -0.27059805), (0.31818965, 0.9238795, -0.21260752), (0.16221167, 0.98078525, -0.108386375), (0.16221167, 0.98078525, -0.108386375), (0.31818965, 0.9238795, -0.21260752), (0.35355338, 0.9238795, -0.14644662), (0.18023996, 0.98078525, -0.074657835), (0.18023996, 0.98078525, -0.074657835), (0.35355338, 0.9238795, -0.14644662), (0.37533027, 0.9238795, -0.074657835), (0.19134171, 0.98078525, -0.038060233), (0.19134171, 0.98078525, -0.038060233), (0.37533027, 0.9238795, -0.074657835), (0.38268343, 0.9238795, -4.6865205e-17), (0.19509032, 0.98078525, -2.3891674e-17), (0.19509032, 0.98078525, -2.3891674e-17), (0.38268343, 0.9238795, -4.6865205e-17), (0.37533027, 0.9238795, 0.074657835), (0.19134171, 0.98078525, 0.038060233), (0.19134171, 0.98078525, 0.038060233), (0.37533027, 0.9238795, 0.074657835), (0.35355338, 0.9238795, 0.14644662), (0.18023996, 0.98078525, 0.074657835), (0.18023996, 0.98078525, 0.074657835), (0.35355338, 0.9238795, 0.14644662), (0.31818965, 0.9238795, 0.21260752), (0.16221167, 0.98078525, 0.108386375), (0.16221167, 0.98078525, 0.108386375), (0.31818965, 0.9238795, 0.21260752), (0.27059805, 0.9238795, 0.27059805), (0.13794969, 0.98078525, 0.13794969), (0.13794969, 0.98078525, 0.13794969), (0.27059805, 0.9238795, 0.27059805), (0.21260752, 0.9238795, 0.31818965), (0.108386375, 0.98078525, 0.16221167), (0.108386375, 0.98078525, 0.16221167), (0.21260752, 0.9238795, 0.31818965), (0.14644662, 0.9238795, 0.35355338), (0.074657835, 0.98078525, 0.18023996), (0.074657835, 0.98078525, 0.18023996), (0.14644662, 0.9238795, 0.35355338), (0.074657835, 0.9238795, 0.37533027), (0.038060233, 0.98078525, 0.19134171), (0.038060233, 0.98078525, 0.19134171), (0.074657835, 0.9238795, 0.37533027), (7.0297805e-17, 0.9238795, 0.38268343), (3.583751e-17, 0.98078525, 0.19509032), (3.583751e-17, 0.98078525, 0.19509032), (7.0297805e-17, 0.9238795, 0.38268343), (-0.074657835, 0.9238795, 0.37533027), (-0.038060233, 0.98078525, 0.19134171), (-0.038060233, 0.98078525, 0.19134171), (-0.074657835, 0.9238795, 0.37533027), (-0.14644662, 0.9238795, 0.35355338), (-0.074657835, 0.98078525, 0.18023996), (-0.074657835, 0.98078525, 0.18023996), (-0.14644662, 0.9238795, 0.35355338), (-0.21260752, 0.9238795, 0.31818965), (-0.108386375, 0.98078525, 0.16221167), (-0.108386375, 0.98078525, 0.16221167), (-0.21260752, 0.9238795, 0.31818965), (-0.27059805, 0.9238795, 0.27059805), (-0.13794969, 0.98078525, 0.13794969), (-0.13794969, 0.98078525, 0.13794969), (-0.27059805, 0.9238795, 0.27059805), (-0.31818965, 0.9238795, 0.21260752), (-0.16221167, 0.98078525, 0.108386375), (-0.16221167, 0.98078525, 0.108386375), (-0.31818965, 0.9238795, 0.21260752), (-0.35355338, 0.9238795, 0.14644662), (-0.18023996, 0.98078525, 0.074657835), (-0.18023996, 0.98078525, 0.074657835), (-0.35355338, 0.9238795, 0.14644662), (-0.37533027, 0.9238795, 0.074657835), (-0.19134171, 0.98078525, 0.038060233), (-0.19134171, 0.98078525, 0.038060233), (-0.37533027, 0.9238795, 0.074657835), (-0.38268343, 0.9238795, 0), (-0.19509032, 0.98078525, 0), (-0.38268343, 0.9238795, 0), (-0.55557024, 0.8314696, 0), (-0.5448951, 0.8314696, -0.108386375), (-0.37533027, 0.9238795, -0.074657835), (-0.37533027, 0.9238795, -0.074657835), (-0.5448951, 0.8314696, -0.108386375), (-0.51328, 0.8314696, -0.21260752), (-0.35355338, 0.9238795, -0.14644662), (-0.35355338, 0.9238795, -0.14644662), (-0.51328, 0.8314696, -0.21260752), (-0.46193975, 0.8314696, -0.30865827), (-0.31818965, 0.9238795, -0.21260752), (-0.31818965, 0.9238795, -0.21260752), (-0.46193975, 0.8314696, -0.30865827), (-0.39284748, 0.8314696, -0.39284748), (-0.27059805, 0.9238795, -0.27059805), (-0.27059805, 0.9238795, -0.27059805), (-0.39284748, 0.8314696, -0.39284748), (-0.30865827, 0.8314696, -0.46193975), (-0.21260752, 0.9238795, -0.31818965), (-0.21260752, 0.9238795, -0.31818965), (-0.30865827, 0.8314696, -0.46193975), (-0.21260752, 0.8314696, -0.51328), (-0.14644662, 0.9238795, -0.35355338), (-0.14644662, 0.9238795, -0.35355338), (-0.21260752, 0.8314696, -0.51328), (-0.108386375, 0.8314696, -0.5448951), (-0.074657835, 0.9238795, -0.37533027), (-0.074657835, 0.9238795, -0.37533027), (-0.108386375, 0.8314696, -0.5448951), (-3.4018865e-17, 0.8314696, -0.55557024), (-2.3432602e-17, 0.9238795, -0.38268343), (-2.3432602e-17, 0.9238795, -0.38268343), (-3.4018865e-17, 0.8314696, -0.55557024), (0.108386375, 0.8314696, -0.5448951), (0.074657835, 0.9238795, -0.37533027), (0.074657835, 0.9238795, -0.37533027), (0.108386375, 0.8314696, -0.5448951), (0.21260752, 0.8314696, -0.51328), (0.14644662, 0.9238795, -0.35355338), (0.14644662, 0.9238795, -0.35355338), (0.21260752, 0.8314696, -0.51328), (0.30865827, 0.8314696, -0.46193975), (0.21260752, 0.9238795, -0.31818965), (0.21260752, 0.9238795, -0.31818965), (0.30865827, 0.8314696, -0.46193975), (0.39284748, 0.8314696, -0.39284748), (0.27059805, 0.9238795, -0.27059805), (0.27059805, 0.9238795, -0.27059805), (0.39284748, 0.8314696, -0.39284748), (0.46193975, 0.8314696, -0.30865827), (0.31818965, 0.9238795, -0.21260752), (0.31818965, 0.9238795, -0.21260752), (0.46193975, 0.8314696, -0.30865827), (0.51328, 0.8314696, -0.21260752), (0.35355338, 0.9238795, -0.14644662), (0.35355338, 0.9238795, -0.14644662), (0.51328, 0.8314696, -0.21260752), (0.5448951, 0.8314696, -0.108386375), (0.37533027, 0.9238795, -0.074657835), (0.37533027, 0.9238795, -0.074657835), (0.5448951, 0.8314696, -0.108386375), (0.55557024, 0.8314696, -6.803773e-17), (0.38268343, 0.9238795, -4.6865205e-17), (0.38268343, 0.9238795, -4.6865205e-17), (0.55557024, 0.8314696, -6.803773e-17), (0.5448951, 0.8314696, 0.108386375), (0.37533027, 0.9238795, 0.074657835), (0.37533027, 0.9238795, 0.074657835), (0.5448951, 0.8314696, 0.108386375), (0.51328, 0.8314696, 0.21260752), (0.35355338, 0.9238795, 0.14644662), (0.35355338, 0.9238795, 0.14644662), (0.51328, 0.8314696, 0.21260752), (0.46193975, 0.8314696, 0.30865827), (0.31818965, 0.9238795, 0.21260752), (0.31818965, 0.9238795, 0.21260752), (0.46193975, 0.8314696, 0.30865827), (0.39284748, 0.8314696, 0.39284748), (0.27059805, 0.9238795, 0.27059805), (0.27059805, 0.9238795, 0.27059805), (0.39284748, 0.8314696, 0.39284748), (0.30865827, 0.8314696, 0.46193975), (0.21260752, 0.9238795, 0.31818965), (0.21260752, 0.9238795, 0.31818965), (0.30865827, 0.8314696, 0.46193975), (0.21260752, 0.8314696, 0.51328), (0.14644662, 0.9238795, 0.35355338), (0.14644662, 0.9238795, 0.35355338), (0.21260752, 0.8314696, 0.51328), (0.108386375, 0.8314696, 0.5448951), (0.074657835, 0.9238795, 0.37533027), (0.074657835, 0.9238795, 0.37533027), (0.108386375, 0.8314696, 0.5448951), (1.020566e-16, 0.8314696, 0.55557024), (7.0297805e-17, 0.9238795, 0.38268343), (7.0297805e-17, 0.9238795, 0.38268343), (1.020566e-16, 0.8314696, 0.55557024), (-0.108386375, 0.8314696, 0.5448951), (-0.074657835, 0.9238795, 0.37533027), (-0.074657835, 0.9238795, 0.37533027), (-0.108386375, 0.8314696, 0.5448951), (-0.21260752, 0.8314696, 0.51328), (-0.14644662, 0.9238795, 0.35355338), (-0.14644662, 0.9238795, 0.35355338), (-0.21260752, 0.8314696, 0.51328), (-0.30865827, 0.8314696, 0.46193975), (-0.21260752, 0.9238795, 0.31818965), (-0.21260752, 0.9238795, 0.31818965), (-0.30865827, 0.8314696, 0.46193975), (-0.39284748, 0.8314696, 0.39284748), (-0.27059805, 0.9238795, 0.27059805), (-0.27059805, 0.9238795, 0.27059805), (-0.39284748, 0.8314696, 0.39284748), (-0.46193975, 0.8314696, 0.30865827), (-0.31818965, 0.9238795, 0.21260752), (-0.31818965, 0.9238795, 0.21260752), (-0.46193975, 0.8314696, 0.30865827), (-0.51328, 0.8314696, 0.21260752), (-0.35355338, 0.9238795, 0.14644662), (-0.35355338, 0.9238795, 0.14644662), (-0.51328, 0.8314696, 0.21260752), (-0.5448951, 0.8314696, 0.108386375), (-0.37533027, 0.9238795, 0.074657835), (-0.37533027, 0.9238795, 0.074657835), (-0.5448951, 0.8314696, 0.108386375), (-0.55557024, 0.8314696, 0), (-0.38268343, 0.9238795, 0), (-0.55557024, 0.8314696, 0), (-0.70710677, 0.70710677, 0), (-0.69351995, 0.70710677, -0.13794969), (-0.5448951, 0.8314696, -0.108386375), (-0.5448951, 0.8314696, -0.108386375), (-0.69351995, 0.70710677, -0.13794969), (-0.6532815, 0.70710677, -0.27059805), (-0.51328, 0.8314696, -0.21260752), (-0.51328, 0.8314696, -0.21260752), (-0.6532815, 0.70710677, -0.27059805), (-0.5879378, 0.70710677, -0.39284748), (-0.46193975, 0.8314696, -0.30865827), (-0.46193975, 0.8314696, -0.30865827), (-0.5879378, 0.70710677, -0.39284748), (-0.5, 0.70710677, -0.5), (-0.39284748, 0.8314696, -0.39284748), (-0.39284748, 0.8314696, -0.39284748), (-0.5, 0.70710677, -0.5), (-0.39284748, 0.70710677, -0.5879378), (-0.30865827, 0.8314696, -0.46193975), (-0.30865827, 0.8314696, -0.46193975), (-0.39284748, 0.70710677, -0.5879378), (-0.27059805, 0.70710677, -0.6532815), (-0.21260752, 0.8314696, -0.51328), (-0.21260752, 0.8314696, -0.51328), (-0.27059805, 0.70710677, -0.6532815), (-0.13794969, 0.70710677, -0.69351995), (-0.108386375, 0.8314696, -0.5448951), (-0.108386375, 0.8314696, -0.5448951), (-0.13794969, 0.70710677, -0.69351995), (-4.3297803e-17, 0.70710677, -0.70710677), (-3.4018865e-17, 0.8314696, -0.55557024), (-3.4018865e-17, 0.8314696, -0.55557024), (-4.3297803e-17, 0.70710677, -0.70710677), (0.13794969, 0.70710677, -0.69351995), (0.108386375, 0.8314696, -0.5448951), (0.108386375, 0.8314696, -0.5448951), (0.13794969, 0.70710677, -0.69351995), (0.27059805, 0.70710677, -0.6532815), (0.21260752, 0.8314696, -0.51328), (0.21260752, 0.8314696, -0.51328), (0.27059805, 0.70710677, -0.6532815), (0.39284748, 0.70710677, -0.5879378), (0.30865827, 0.8314696, -0.46193975), (0.30865827, 0.8314696, -0.46193975), (0.39284748, 0.70710677, -0.5879378), (0.5, 0.70710677, -0.5), (0.39284748, 0.8314696, -0.39284748), (0.39284748, 0.8314696, -0.39284748), (0.5, 0.70710677, -0.5), (0.5879378, 0.70710677, -0.39284748), (0.46193975, 0.8314696, -0.30865827), (0.46193975, 0.8314696, -0.30865827), (0.5879378, 0.70710677, -0.39284748), (0.6532815, 0.70710677, -0.27059805), (0.51328, 0.8314696, -0.21260752), (0.51328, 0.8314696, -0.21260752), (0.6532815, 0.70710677, -0.27059805), (0.69351995, 0.70710677, -0.13794969), (0.5448951, 0.8314696, -0.108386375), (0.5448951, 0.8314696, -0.108386375), (0.69351995, 0.70710677, -0.13794969), (0.70710677, 0.70710677, -8.6595606e-17), (0.55557024, 0.8314696, -6.803773e-17), (0.55557024, 0.8314696, -6.803773e-17), (0.70710677, 0.70710677, -8.6595606e-17), (0.69351995, 0.70710677, 0.13794969), (0.5448951, 0.8314696, 0.108386375), (0.5448951, 0.8314696, 0.108386375), (0.69351995, 0.70710677, 0.13794969), (0.6532815, 0.70710677, 0.27059805), (0.51328, 0.8314696, 0.21260752), (0.51328, 0.8314696, 0.21260752), (0.6532815, 0.70710677, 0.27059805), (0.5879378, 0.70710677, 0.39284748), (0.46193975, 0.8314696, 0.30865827), (0.46193975, 0.8314696, 0.30865827), (0.5879378, 0.70710677, 0.39284748), (0.5, 0.70710677, 0.5), (0.39284748, 0.8314696, 0.39284748), (0.39284748, 0.8314696, 0.39284748), (0.5, 0.70710677, 0.5), (0.39284748, 0.70710677, 0.5879378), (0.30865827, 0.8314696, 0.46193975), (0.30865827, 0.8314696, 0.46193975), (0.39284748, 0.70710677, 0.5879378), (0.27059805, 0.70710677, 0.6532815), (0.21260752, 0.8314696, 0.51328), (0.21260752, 0.8314696, 0.51328), (0.27059805, 0.70710677, 0.6532815), (0.13794969, 0.70710677, 0.69351995), (0.108386375, 0.8314696, 0.5448951), (0.108386375, 0.8314696, 0.5448951), (0.13794969, 0.70710677, 0.69351995), (1.298934e-16, 0.70710677, 0.70710677), (1.020566e-16, 0.8314696, 0.55557024), (1.020566e-16, 0.8314696, 0.55557024), (1.298934e-16, 0.70710677, 0.70710677), (-0.13794969, 0.70710677, 0.69351995), (-0.108386375, 0.8314696, 0.5448951), (-0.108386375, 0.8314696, 0.5448951), (-0.13794969, 0.70710677, 0.69351995), (-0.27059805, 0.70710677, 0.6532815), (-0.21260752, 0.8314696, 0.51328), (-0.21260752, 0.8314696, 0.51328), (-0.27059805, 0.70710677, 0.6532815), (-0.39284748, 0.70710677, 0.5879378), (-0.30865827, 0.8314696, 0.46193975), (-0.30865827, 0.8314696, 0.46193975), (-0.39284748, 0.70710677, 0.5879378), (-0.5, 0.70710677, 0.5), (-0.39284748, 0.8314696, 0.39284748), (-0.39284748, 0.8314696, 0.39284748), (-0.5, 0.70710677, 0.5), (-0.5879378, 0.70710677, 0.39284748), (-0.46193975, 0.8314696, 0.30865827), (-0.46193975, 0.8314696, 0.30865827), (-0.5879378, 0.70710677, 0.39284748), (-0.6532815, 0.70710677, 0.27059805), (-0.51328, 0.8314696, 0.21260752), (-0.51328, 0.8314696, 0.21260752), (-0.6532815, 0.70710677, 0.27059805), (-0.69351995, 0.70710677, 0.13794969), (-0.5448951, 0.8314696, 0.108386375), (-0.5448951, 0.8314696, 0.108386375), (-0.69351995, 0.70710677, 0.13794969), (-0.70710677, 0.70710677, 0), (-0.55557024, 0.8314696, 0), (-0.70710677, 0.70710677, 0), (-0.8314696, 0.55557024, 0), (-0.81549317, 0.55557024, -0.16221167), (-0.69351995, 0.70710677, -0.13794969), (-0.69351995, 0.70710677, -0.13794969), (-0.81549317, 0.55557024, -0.16221167), (-0.76817775, 0.55557024, -0.31818965), (-0.6532815, 0.70710677, -0.27059805), (-0.6532815, 0.70710677, -0.27059805), (-0.76817775, 0.55557024, -0.31818965), (-0.6913417, 0.55557024, -0.46193975), (-0.5879378, 0.70710677, -0.39284748), (-0.5879378, 0.70710677, -0.39284748), (-0.6913417, 0.55557024, -0.46193975), (-0.5879378, 0.55557024, -0.5879378), (-0.5, 0.70710677, -0.5), (-0.5, 0.70710677, -0.5), (-0.5879378, 0.55557024, -0.5879378), (-0.46193975, 0.55557024, -0.6913417), (-0.39284748, 0.70710677, -0.5879378), (-0.39284748, 0.70710677, -0.5879378), (-0.46193975, 0.55557024, -0.6913417), (-0.31818965, 0.55557024, -0.76817775), (-0.27059805, 0.70710677, -0.6532815), (-0.27059805, 0.70710677, -0.6532815), (-0.31818965, 0.55557024, -0.76817775), (-0.16221167, 0.55557024, -0.81549317), (-0.13794969, 0.70710677, -0.69351995), (-0.13794969, 0.70710677, -0.69351995), (-0.16221167, 0.55557024, -0.81549317), (-5.091283e-17, 0.55557024, -0.8314696), (-4.3297803e-17, 0.70710677, -0.70710677), (-4.3297803e-17, 0.70710677, -0.70710677), (-5.091283e-17, 0.55557024, -0.8314696), (0.16221167, 0.55557024, -0.81549317), (0.13794969, 0.70710677, -0.69351995), (0.13794969, 0.70710677, -0.69351995), (0.16221167, 0.55557024, -0.81549317), (0.31818965, 0.55557024, -0.76817775), (0.27059805, 0.70710677, -0.6532815), (0.27059805, 0.70710677, -0.6532815), (0.31818965, 0.55557024, -0.76817775), (0.46193975, 0.55557024, -0.6913417), (0.39284748, 0.70710677, -0.5879378), (0.39284748, 0.70710677, -0.5879378), (0.46193975, 0.55557024, -0.6913417), (0.5879378, 0.55557024, -0.5879378), (0.5, 0.70710677, -0.5), (0.5, 0.70710677, -0.5), (0.5879378, 0.55557024, -0.5879378), (0.6913417, 0.55557024, -0.46193975), (0.5879378, 0.70710677, -0.39284748), (0.5879378, 0.70710677, -0.39284748), (0.6913417, 0.55557024, -0.46193975), (0.76817775, 0.55557024, -0.31818965), (0.6532815, 0.70710677, -0.27059805), (0.6532815, 0.70710677, -0.27059805), (0.76817775, 0.55557024, -0.31818965), (0.81549317, 0.55557024, -0.16221167), (0.69351995, 0.70710677, -0.13794969), (0.69351995, 0.70710677, -0.13794969), (0.81549317, 0.55557024, -0.16221167), (0.8314696, 0.55557024, -1.0182566e-16), (0.70710677, 0.70710677, -8.6595606e-17), (0.70710677, 0.70710677, -8.6595606e-17), (0.8314696, 0.55557024, -1.0182566e-16), (0.81549317, 0.55557024, 0.16221167), (0.69351995, 0.70710677, 0.13794969), (0.69351995, 0.70710677, 0.13794969), (0.81549317, 0.55557024, 0.16221167), (0.76817775, 0.55557024, 0.31818965), (0.6532815, 0.70710677, 0.27059805), (0.6532815, 0.70710677, 0.27059805), (0.76817775, 0.55557024, 0.31818965), (0.6913417, 0.55557024, 0.46193975), (0.5879378, 0.70710677, 0.39284748), (0.5879378, 0.70710677, 0.39284748), (0.6913417, 0.55557024, 0.46193975), (0.5879378, 0.55557024, 0.5879378), (0.5, 0.70710677, 0.5), (0.5, 0.70710677, 0.5), (0.5879378, 0.55557024, 0.5879378), (0.46193975, 0.55557024, 0.6913417), (0.39284748, 0.70710677, 0.5879378), (0.39284748, 0.70710677, 0.5879378), (0.46193975, 0.55557024, 0.6913417), (0.31818965, 0.55557024, 0.76817775), (0.27059805, 0.70710677, 0.6532815), (0.27059805, 0.70710677, 0.6532815), (0.31818965, 0.55557024, 0.76817775), (0.16221167, 0.55557024, 0.81549317), (0.13794969, 0.70710677, 0.69351995), (0.13794969, 0.70710677, 0.69351995), (0.16221167, 0.55557024, 0.81549317), (1.5273849e-16, 0.55557024, 0.8314696), (1.298934e-16, 0.70710677, 0.70710677), (1.298934e-16, 0.70710677, 0.70710677), (1.5273849e-16, 0.55557024, 0.8314696), (-0.16221167, 0.55557024, 0.81549317), (-0.13794969, 0.70710677, 0.69351995), (-0.13794969, 0.70710677, 0.69351995), (-0.16221167, 0.55557024, 0.81549317), (-0.31818965, 0.55557024, 0.76817775), (-0.27059805, 0.70710677, 0.6532815), (-0.27059805, 0.70710677, 0.6532815), (-0.31818965, 0.55557024, 0.76817775), (-0.46193975, 0.55557024, 0.6913417), (-0.39284748, 0.70710677, 0.5879378), (-0.39284748, 0.70710677, 0.5879378), (-0.46193975, 0.55557024, 0.6913417), (-0.5879378, 0.55557024, 0.5879378), (-0.5, 0.70710677, 0.5), (-0.5, 0.70710677, 0.5), (-0.5879378, 0.55557024, 0.5879378), (-0.6913417, 0.55557024, 0.46193975), (-0.5879378, 0.70710677, 0.39284748), (-0.5879378, 0.70710677, 0.39284748), (-0.6913417, 0.55557024, 0.46193975), (-0.76817775, 0.55557024, 0.31818965), (-0.6532815, 0.70710677, 0.27059805), (-0.6532815, 0.70710677, 0.27059805), (-0.76817775, 0.55557024, 0.31818965), (-0.81549317, 0.55557024, 0.16221167), (-0.69351995, 0.70710677, 0.13794969), (-0.69351995, 0.70710677, 0.13794969), (-0.81549317, 0.55557024, 0.16221167), (-0.8314696, 0.55557024, 0), (-0.70710677, 0.70710677, 0), (-0.8314696, 0.55557024, 0), (-0.9238795, 0.38268343, 0), (-0.90612745, 0.38268343, -0.18023996), (-0.81549317, 0.55557024, -0.16221167), (-0.81549317, 0.55557024, -0.16221167), (-0.90612745, 0.38268343, -0.18023996), (-0.8535534, 0.38268343, -0.35355338), (-0.76817775, 0.55557024, -0.31818965), (-0.76817775, 0.55557024, -0.31818965), (-0.8535534, 0.38268343, -0.35355338), (-0.76817775, 0.38268343, -0.51328), (-0.6913417, 0.55557024, -0.46193975), (-0.6913417, 0.55557024, -0.46193975), (-0.76817775, 0.38268343, -0.51328), (-0.6532815, 0.38268343, -0.6532815), (-0.5879378, 0.55557024, -0.5879378), (-0.5879378, 0.55557024, -0.5879378), (-0.6532815, 0.38268343, -0.6532815), (-0.51328, 0.38268343, -0.76817775), (-0.46193975, 0.55557024, -0.6913417), (-0.46193975, 0.55557024, -0.6913417), (-0.51328, 0.38268343, -0.76817775), (-0.35355338, 0.38268343, -0.8535534), (-0.31818965, 0.55557024, -0.76817775), (-0.31818965, 0.55557024, -0.76817775), (-0.35355338, 0.38268343, -0.8535534), (-0.18023996, 0.38268343, -0.90612745), (-0.16221167, 0.55557024, -0.81549317), (-0.16221167, 0.55557024, -0.81549317), (-0.18023996, 0.38268343, -0.90612745), (-5.6571306e-17, 0.38268343, -0.9238795), (-5.091283e-17, 0.55557024, -0.8314696), (-5.091283e-17, 0.55557024, -0.8314696), (-5.6571306e-17, 0.38268343, -0.9238795), (0.18023996, 0.38268343, -0.90612745), (0.16221167, 0.55557024, -0.81549317), (0.16221167, 0.55557024, -0.81549317), (0.18023996, 0.38268343, -0.90612745), (0.35355338, 0.38268343, -0.8535534), (0.31818965, 0.55557024, -0.76817775), (0.31818965, 0.55557024, -0.76817775), (0.35355338, 0.38268343, -0.8535534), (0.51328, 0.38268343, -0.76817775), (0.46193975, 0.55557024, -0.6913417), (0.46193975, 0.55557024, -0.6913417), (0.51328, 0.38268343, -0.76817775), (0.6532815, 0.38268343, -0.6532815), (0.5879378, 0.55557024, -0.5879378), (0.5879378, 0.55557024, -0.5879378), (0.6532815, 0.38268343, -0.6532815), (0.76817775, 0.38268343, -0.51328), (0.6913417, 0.55557024, -0.46193975), (0.6913417, 0.55557024, -0.46193975), (0.76817775, 0.38268343, -0.51328), (0.8535534, 0.38268343, -0.35355338), (0.76817775, 0.55557024, -0.31818965), (0.76817775, 0.55557024, -0.31818965), (0.8535534, 0.38268343, -0.35355338), (0.90612745, 0.38268343, -0.18023996), (0.81549317, 0.55557024, -0.16221167), (0.81549317, 0.55557024, -0.16221167), (0.90612745, 0.38268343, -0.18023996), (0.9238795, 0.38268343, -1.1314261e-16), (0.8314696, 0.55557024, -1.0182566e-16), (0.8314696, 0.55557024, -1.0182566e-16), (0.9238795, 0.38268343, -1.1314261e-16), (0.90612745, 0.38268343, 0.18023996), (0.81549317, 0.55557024, 0.16221167), (0.81549317, 0.55557024, 0.16221167), (0.90612745, 0.38268343, 0.18023996), (0.8535534, 0.38268343, 0.35355338), (0.76817775, 0.55557024, 0.31818965), (0.76817775, 0.55557024, 0.31818965), (0.8535534, 0.38268343, 0.35355338), (0.76817775, 0.38268343, 0.51328), (0.6913417, 0.55557024, 0.46193975), (0.6913417, 0.55557024, 0.46193975), (0.76817775, 0.38268343, 0.51328), (0.6532815, 0.38268343, 0.6532815), (0.5879378, 0.55557024, 0.5879378), (0.5879378, 0.55557024, 0.5879378), (0.6532815, 0.38268343, 0.6532815), (0.51328, 0.38268343, 0.76817775), (0.46193975, 0.55557024, 0.6913417), (0.46193975, 0.55557024, 0.6913417), (0.51328, 0.38268343, 0.76817775), (0.35355338, 0.38268343, 0.8535534), (0.31818965, 0.55557024, 0.76817775), (0.31818965, 0.55557024, 0.76817775), (0.35355338, 0.38268343, 0.8535534), (0.18023996, 0.38268343, 0.90612745), (0.16221167, 0.55557024, 0.81549317), (0.16221167, 0.55557024, 0.81549317), (0.18023996, 0.38268343, 0.90612745), (1.6971392e-16, 0.38268343, 0.9238795), (1.5273849e-16, 0.55557024, 0.8314696), (1.5273849e-16, 0.55557024, 0.8314696), (1.6971392e-16, 0.38268343, 0.9238795), (-0.18023996, 0.38268343, 0.90612745), (-0.16221167, 0.55557024, 0.81549317), (-0.16221167, 0.55557024, 0.81549317), (-0.18023996, 0.38268343, 0.90612745), (-0.35355338, 0.38268343, 0.8535534), (-0.31818965, 0.55557024, 0.76817775), (-0.31818965, 0.55557024, 0.76817775), (-0.35355338, 0.38268343, 0.8535534), (-0.51328, 0.38268343, 0.76817775), (-0.46193975, 0.55557024, 0.6913417), (-0.46193975, 0.55557024, 0.6913417), (-0.51328, 0.38268343, 0.76817775), (-0.6532815, 0.38268343, 0.6532815), (-0.5879378, 0.55557024, 0.5879378), (-0.5879378, 0.55557024, 0.5879378), (-0.6532815, 0.38268343, 0.6532815), (-0.76817775, 0.38268343, 0.51328), (-0.6913417, 0.55557024, 0.46193975), (-0.6913417, 0.55557024, 0.46193975), (-0.76817775, 0.38268343, 0.51328), (-0.8535534, 0.38268343, 0.35355338), (-0.76817775, 0.55557024, 0.31818965), (-0.76817775, 0.55557024, 0.31818965), (-0.8535534, 0.38268343, 0.35355338), (-0.90612745, 0.38268343, 0.18023996), (-0.81549317, 0.55557024, 0.16221167), (-0.81549317, 0.55557024, 0.16221167), (-0.90612745, 0.38268343, 0.18023996), (-0.9238795, 0.38268343, 0), (-0.8314696, 0.55557024, 0), (-0.9238795, 0.38268343, 0), (-0.98078525, 0.19509032, 0), (-0.96193975, 0.19509032, -0.19134171), (-0.90612745, 0.38268343, -0.18023996), (-0.90612745, 0.38268343, -0.18023996), (-0.96193975, 0.19509032, -0.19134171), (-0.90612745, 0.19509032, -0.37533027), (-0.8535534, 0.38268343, -0.35355338), (-0.8535534, 0.38268343, -0.35355338), (-0.90612745, 0.19509032, -0.37533027), (-0.81549317, 0.19509032, -0.5448951), (-0.76817775, 0.38268343, -0.51328), (-0.76817775, 0.38268343, -0.51328), (-0.81549317, 0.19509032, -0.5448951), (-0.69351995, 0.19509032, -0.69351995), (-0.6532815, 0.38268343, -0.6532815), (-0.6532815, 0.38268343, -0.6532815), (-0.69351995, 0.19509032, -0.69351995), (-0.5448951, 0.19509032, -0.81549317), (-0.51328, 0.38268343, -0.76817775), (-0.51328, 0.38268343, -0.76817775), (-0.5448951, 0.19509032, -0.81549317), (-0.37533027, 0.19509032, -0.90612745), (-0.35355338, 0.38268343, -0.8535534), (-0.35355338, 0.38268343, -0.8535534), (-0.37533027, 0.19509032, -0.90612745), (-0.19134171, 0.19509032, -0.96193975), (-0.18023996, 0.38268343, -0.90612745), (-0.18023996, 0.38268343, -0.90612745), (-0.19134171, 0.19509032, -0.96193975), (-6.005578e-17, 0.19509032, -0.98078525), (-5.6571306e-17, 0.38268343, -0.9238795), (-5.6571306e-17, 0.38268343, -0.9238795), (-6.005578e-17, 0.19509032, -0.98078525), (0.19134171, 0.19509032, -0.96193975), (0.18023996, 0.38268343, -0.90612745), (0.18023996, 0.38268343, -0.90612745), (0.19134171, 0.19509032, -0.96193975), (0.37533027, 0.19509032, -0.90612745), (0.35355338, 0.38268343, -0.8535534), (0.35355338, 0.38268343, -0.8535534), (0.37533027, 0.19509032, -0.90612745), (0.5448951, 0.19509032, -0.81549317), (0.51328, 0.38268343, -0.76817775), (0.51328, 0.38268343, -0.76817775), (0.5448951, 0.19509032, -0.81549317), (0.69351995, 0.19509032, -0.69351995), (0.6532815, 0.38268343, -0.6532815), (0.6532815, 0.38268343, -0.6532815), (0.69351995, 0.19509032, -0.69351995), (0.81549317, 0.19509032, -0.5448951), (0.76817775, 0.38268343, -0.51328), (0.76817775, 0.38268343, -0.51328), (0.81549317, 0.19509032, -0.5448951), (0.90612745, 0.19509032, -0.37533027), (0.8535534, 0.38268343, -0.35355338), (0.8535534, 0.38268343, -0.35355338), (0.90612745, 0.19509032, -0.37533027), (0.96193975, 0.19509032, -0.19134171), (0.90612745, 0.38268343, -0.18023996), (0.90612745, 0.38268343, -0.18023996), (0.96193975, 0.19509032, -0.19134171), (0.98078525, 0.19509032, -1.2011156e-16), (0.9238795, 0.38268343, -1.1314261e-16), (0.9238795, 0.38268343, -1.1314261e-16), (0.98078525, 0.19509032, -1.2011156e-16), (0.96193975, 0.19509032, 0.19134171), (0.90612745, 0.38268343, 0.18023996), (0.90612745, 0.38268343, 0.18023996), (0.96193975, 0.19509032, 0.19134171), (0.90612745, 0.19509032, 0.37533027), (0.8535534, 0.38268343, 0.35355338), (0.8535534, 0.38268343, 0.35355338), (0.90612745, 0.19509032, 0.37533027), (0.81549317, 0.19509032, 0.5448951), (0.76817775, 0.38268343, 0.51328), (0.76817775, 0.38268343, 0.51328), (0.81549317, 0.19509032, 0.5448951), (0.69351995, 0.19509032, 0.69351995), (0.6532815, 0.38268343, 0.6532815), (0.6532815, 0.38268343, 0.6532815), (0.69351995, 0.19509032, 0.69351995), (0.5448951, 0.19509032, 0.81549317), (0.51328, 0.38268343, 0.76817775), (0.51328, 0.38268343, 0.76817775), (0.5448951, 0.19509032, 0.81549317), (0.37533027, 0.19509032, 0.90612745), (0.35355338, 0.38268343, 0.8535534), (0.35355338, 0.38268343, 0.8535534), (0.37533027, 0.19509032, 0.90612745), (0.19134171, 0.19509032, 0.96193975), (0.18023996, 0.38268343, 0.90612745), (0.18023996, 0.38268343, 0.90612745), (0.19134171, 0.19509032, 0.96193975), (1.8016734e-16, 0.19509032, 0.98078525), (1.6971392e-16, 0.38268343, 0.9238795), (1.6971392e-16, 0.38268343, 0.9238795), (1.8016734e-16, 0.19509032, 0.98078525), (-0.19134171, 0.19509032, 0.96193975), (-0.18023996, 0.38268343, 0.90612745), (-0.18023996, 0.38268343, 0.90612745), (-0.19134171, 0.19509032, 0.96193975), (-0.37533027, 0.19509032, 0.90612745), (-0.35355338, 0.38268343, 0.8535534), (-0.35355338, 0.38268343, 0.8535534), (-0.37533027, 0.19509032, 0.90612745), (-0.5448951, 0.19509032, 0.81549317), (-0.51328, 0.38268343, 0.76817775), (-0.51328, 0.38268343, 0.76817775), (-0.5448951, 0.19509032, 0.81549317), (-0.69351995, 0.19509032, 0.69351995), (-0.6532815, 0.38268343, 0.6532815), (-0.6532815, 0.38268343, 0.6532815), (-0.69351995, 0.19509032, 0.69351995), (-0.81549317, 0.19509032, 0.5448951), (-0.76817775, 0.38268343, 0.51328), (-0.76817775, 0.38268343, 0.51328), (-0.81549317, 0.19509032, 0.5448951), (-0.90612745, 0.19509032, 0.37533027), (-0.8535534, 0.38268343, 0.35355338), (-0.8535534, 0.38268343, 0.35355338), (-0.90612745, 0.19509032, 0.37533027), (-0.96193975, 0.19509032, 0.19134171), (-0.90612745, 0.38268343, 0.18023996), (-0.90612745, 0.38268343, 0.18023996), (-0.96193975, 0.19509032, 0.19134171), (-0.98078525, 0.19509032, 0), (-0.9238795, 0.38268343, 0), (-0.98078525, 0.19509032, 0), (-1, 1.2246469e-16, 0), (-0.98078525, 1.2246469e-16, -0.19509032), (-0.96193975, 0.19509032, -0.19134171), (-0.96193975, 0.19509032, -0.19134171), (-0.98078525, 1.2246469e-16, -0.19509032), (-0.9238795, 1.2246469e-16, -0.38268343), (-0.90612745, 0.19509032, -0.37533027), (-0.90612745, 0.19509032, -0.37533027), (-0.9238795, 1.2246469e-16, -0.38268343), (-0.8314696, 1.2246469e-16, -0.55557024), (-0.81549317, 0.19509032, -0.5448951), (-0.81549317, 0.19509032, -0.5448951), (-0.8314696, 1.2246469e-16, -0.55557024), (-0.70710677, 1.2246469e-16, -0.70710677), (-0.69351995, 0.19509032, -0.69351995), (-0.69351995, 0.19509032, -0.69351995), (-0.70710677, 1.2246469e-16, -0.70710677), (-0.55557024, 1.2246469e-16, -0.8314696), (-0.5448951, 0.19509032, -0.81549317), (-0.5448951, 0.19509032, -0.81549317), (-0.55557024, 1.2246469e-16, -0.8314696), (-0.38268343, 1.2246469e-16, -0.9238795), (-0.37533027, 0.19509032, -0.90612745), (-0.37533027, 0.19509032, -0.90612745), (-0.38268343, 1.2246469e-16, -0.9238795), (-0.19509032, 1.2246469e-16, -0.98078525), (-0.19134171, 0.19509032, -0.96193975), (-0.19134171, 0.19509032, -0.96193975), (-0.19509032, 1.2246469e-16, -0.98078525), (-6.123234e-17, 1.2246469e-16, -1), (-6.005578e-17, 0.19509032, -0.98078525), (-6.005578e-17, 0.19509032, -0.98078525), (-6.123234e-17, 1.2246469e-16, -1), (0.19509032, 1.2246469e-16, -0.98078525), (0.19134171, 0.19509032, -0.96193975), (0.19134171, 0.19509032, -0.96193975), (0.19509032, 1.2246469e-16, -0.98078525), (0.38268343, 1.2246469e-16, -0.9238795), (0.37533027, 0.19509032, -0.90612745), (0.37533027, 0.19509032, -0.90612745), (0.38268343, 1.2246469e-16, -0.9238795), (0.55557024, 1.2246469e-16, -0.8314696), (0.5448951, 0.19509032, -0.81549317), (0.5448951, 0.19509032, -0.81549317), (0.55557024, 1.2246469e-16, -0.8314696), (0.70710677, 1.2246469e-16, -0.70710677), (0.69351995, 0.19509032, -0.69351995), (0.69351995, 0.19509032, -0.69351995), (0.70710677, 1.2246469e-16, -0.70710677), (0.8314696, 1.2246469e-16, -0.55557024), (0.81549317, 0.19509032, -0.5448951), (0.81549317, 0.19509032, -0.5448951), (0.8314696, 1.2246469e-16, -0.55557024), (0.9238795, 1.2246469e-16, -0.38268343), (0.90612745, 0.19509032, -0.37533027), (0.90612745, 0.19509032, -0.37533027), (0.9238795, 1.2246469e-16, -0.38268343), (0.98078525, 1.2246469e-16, -0.19509032), (0.96193975, 0.19509032, -0.19134171), (0.96193975, 0.19509032, -0.19134171), (0.98078525, 1.2246469e-16, -0.19509032), (1, 1.2246469e-16, -1.2246469e-16), (0.98078525, 0.19509032, -1.2011156e-16), (0.98078525, 0.19509032, -1.2011156e-16), (1, 1.2246469e-16, -1.2246469e-16), (0.98078525, 1.2246469e-16, 0.19509032), (0.96193975, 0.19509032, 0.19134171), (0.96193975, 0.19509032, 0.19134171), (0.98078525, 1.2246469e-16, 0.19509032), (0.9238795, 1.2246469e-16, 0.38268343), (0.90612745, 0.19509032, 0.37533027), (0.90612745, 0.19509032, 0.37533027), (0.9238795, 1.2246469e-16, 0.38268343), (0.8314696, 1.2246469e-16, 0.55557024), (0.81549317, 0.19509032, 0.5448951), (0.81549317, 0.19509032, 0.5448951), (0.8314696, 1.2246469e-16, 0.55557024), (0.70710677, 1.2246469e-16, 0.70710677), (0.69351995, 0.19509032, 0.69351995), (0.69351995, 0.19509032, 0.69351995), (0.70710677, 1.2246469e-16, 0.70710677), (0.55557024, 1.2246469e-16, 0.8314696), (0.5448951, 0.19509032, 0.81549317), (0.5448951, 0.19509032, 0.81549317), (0.55557024, 1.2246469e-16, 0.8314696), (0.38268343, 1.2246469e-16, 0.9238795), (0.37533027, 0.19509032, 0.90612745), (0.37533027, 0.19509032, 0.90612745), (0.38268343, 1.2246469e-16, 0.9238795), (0.19509032, 1.2246469e-16, 0.98078525), (0.19134171, 0.19509032, 0.96193975), (0.19134171, 0.19509032, 0.96193975), (0.19509032, 1.2246469e-16, 0.98078525), (1.8369701e-16, 1.2246469e-16, 1), (1.8016734e-16, 0.19509032, 0.98078525), (1.8016734e-16, 0.19509032, 0.98078525), (1.8369701e-16, 1.2246469e-16, 1), (-0.19509032, 1.2246469e-16, 0.98078525), (-0.19134171, 0.19509032, 0.96193975), (-0.19134171, 0.19509032, 0.96193975), (-0.19509032, 1.2246469e-16, 0.98078525), (-0.38268343, 1.2246469e-16, 0.9238795), (-0.37533027, 0.19509032, 0.90612745), (-0.37533027, 0.19509032, 0.90612745), (-0.38268343, 1.2246469e-16, 0.9238795), (-0.55557024, 1.2246469e-16, 0.8314696), (-0.5448951, 0.19509032, 0.81549317), (-0.5448951, 0.19509032, 0.81549317), (-0.55557024, 1.2246469e-16, 0.8314696), (-0.70710677, 1.2246469e-16, 0.70710677), (-0.69351995, 0.19509032, 0.69351995), (-0.69351995, 0.19509032, 0.69351995), (-0.70710677, 1.2246469e-16, 0.70710677), (-0.8314696, 1.2246469e-16, 0.55557024), (-0.81549317, 0.19509032, 0.5448951), (-0.81549317, 0.19509032, 0.5448951), (-0.8314696, 1.2246469e-16, 0.55557024), (-0.9238795, 1.2246469e-16, 0.38268343), (-0.90612745, 0.19509032, 0.37533027), (-0.90612745, 0.19509032, 0.37533027), (-0.9238795, 1.2246469e-16, 0.38268343), (-0.98078525, 1.2246469e-16, 0.19509032), (-0.96193975, 0.19509032, 0.19134171), (-0.96193975, 0.19509032, 0.19134171), (-0.98078525, 1.2246469e-16, 0.19509032), (-1, 1.2246469e-16, 0), (-0.98078525, 0.19509032, 0), (-1, 1.2246469e-16, 0), (-0.98078525, -0.19509032, 0), (-0.96193975, -0.19509032, -0.19134171), (-0.98078525, 1.2246469e-16, -0.19509032), (-0.98078525, 1.2246469e-16, -0.19509032), (-0.96193975, -0.19509032, -0.19134171), (-0.90612745, -0.19509032, -0.37533027), (-0.9238795, 1.2246469e-16, -0.38268343), (-0.9238795, 1.2246469e-16, -0.38268343), (-0.90612745, -0.19509032, -0.37533027), (-0.81549317, -0.19509032, -0.5448951), (-0.8314696, 1.2246469e-16, -0.55557024), (-0.8314696, 1.2246469e-16, -0.55557024), (-0.81549317, -0.19509032, -0.5448951), (-0.69351995, -0.19509032, -0.69351995), (-0.70710677, 1.2246469e-16, -0.70710677), (-0.70710677, 1.2246469e-16, -0.70710677), (-0.69351995, -0.19509032, -0.69351995), (-0.5448951, -0.19509032, -0.81549317), (-0.55557024, 1.2246469e-16, -0.8314696), (-0.55557024, 1.2246469e-16, -0.8314696), (-0.5448951, -0.19509032, -0.81549317), (-0.37533027, -0.19509032, -0.90612745), (-0.38268343, 1.2246469e-16, -0.9238795), (-0.38268343, 1.2246469e-16, -0.9238795), (-0.37533027, -0.19509032, -0.90612745), (-0.19134171, -0.19509032, -0.96193975), (-0.19509032, 1.2246469e-16, -0.98078525), (-0.19509032, 1.2246469e-16, -0.98078525), (-0.19134171, -0.19509032, -0.96193975), (-6.005578e-17, -0.19509032, -0.98078525), (-6.123234e-17, 1.2246469e-16, -1), (-6.123234e-17, 1.2246469e-16, -1), (-6.005578e-17, -0.19509032, -0.98078525), (0.19134171, -0.19509032, -0.96193975), (0.19509032, 1.2246469e-16, -0.98078525), (0.19509032, 1.2246469e-16, -0.98078525), (0.19134171, -0.19509032, -0.96193975), (0.37533027, -0.19509032, -0.90612745), (0.38268343, 1.2246469e-16, -0.9238795), (0.38268343, 1.2246469e-16, -0.9238795), (0.37533027, -0.19509032, -0.90612745), (0.5448951, -0.19509032, -0.81549317), (0.55557024, 1.2246469e-16, -0.8314696), (0.55557024, 1.2246469e-16, -0.8314696), (0.5448951, -0.19509032, -0.81549317), (0.69351995, -0.19509032, -0.69351995), (0.70710677, 1.2246469e-16, -0.70710677), (0.70710677, 1.2246469e-16, -0.70710677), (0.69351995, -0.19509032, -0.69351995), (0.81549317, -0.19509032, -0.5448951), (0.8314696, 1.2246469e-16, -0.55557024), (0.8314696, 1.2246469e-16, -0.55557024), (0.81549317, -0.19509032, -0.5448951), (0.90612745, -0.19509032, -0.37533027), (0.9238795, 1.2246469e-16, -0.38268343), (0.9238795, 1.2246469e-16, -0.38268343), (0.90612745, -0.19509032, -0.37533027), (0.96193975, -0.19509032, -0.19134171), (0.98078525, 1.2246469e-16, -0.19509032), (0.98078525, 1.2246469e-16, -0.19509032), (0.96193975, -0.19509032, -0.19134171), (0.98078525, -0.19509032, -1.2011156e-16), (1, 1.2246469e-16, -1.2246469e-16), (1, 1.2246469e-16, -1.2246469e-16), (0.98078525, -0.19509032, -1.2011156e-16), (0.96193975, -0.19509032, 0.19134171), (0.98078525, 1.2246469e-16, 0.19509032), (0.98078525, 1.2246469e-16, 0.19509032), (0.96193975, -0.19509032, 0.19134171), (0.90612745, -0.19509032, 0.37533027), (0.9238795, 1.2246469e-16, 0.38268343), (0.9238795, 1.2246469e-16, 0.38268343), (0.90612745, -0.19509032, 0.37533027), (0.81549317, -0.19509032, 0.5448951), (0.8314696, 1.2246469e-16, 0.55557024), (0.8314696, 1.2246469e-16, 0.55557024), (0.81549317, -0.19509032, 0.5448951), (0.69351995, -0.19509032, 0.69351995), (0.70710677, 1.2246469e-16, 0.70710677), (0.70710677, 1.2246469e-16, 0.70710677), (0.69351995, -0.19509032, 0.69351995), (0.5448951, -0.19509032, 0.81549317), (0.55557024, 1.2246469e-16, 0.8314696), (0.55557024, 1.2246469e-16, 0.8314696), (0.5448951, -0.19509032, 0.81549317), (0.37533027, -0.19509032, 0.90612745), (0.38268343, 1.2246469e-16, 0.9238795), (0.38268343, 1.2246469e-16, 0.9238795), (0.37533027, -0.19509032, 0.90612745), (0.19134171, -0.19509032, 0.96193975), (0.19509032, 1.2246469e-16, 0.98078525), (0.19509032, 1.2246469e-16, 0.98078525), (0.19134171, -0.19509032, 0.96193975), (1.8016734e-16, -0.19509032, 0.98078525), (1.8369701e-16, 1.2246469e-16, 1), (1.8369701e-16, 1.2246469e-16, 1), (1.8016734e-16, -0.19509032, 0.98078525), (-0.19134171, -0.19509032, 0.96193975), (-0.19509032, 1.2246469e-16, 0.98078525), (-0.19509032, 1.2246469e-16, 0.98078525), (-0.19134171, -0.19509032, 0.96193975), (-0.37533027, -0.19509032, 0.90612745), (-0.38268343, 1.2246469e-16, 0.9238795), (-0.38268343, 1.2246469e-16, 0.9238795), (-0.37533027, -0.19509032, 0.90612745), (-0.5448951, -0.19509032, 0.81549317), (-0.55557024, 1.2246469e-16, 0.8314696), (-0.55557024, 1.2246469e-16, 0.8314696), (-0.5448951, -0.19509032, 0.81549317), (-0.69351995, -0.19509032, 0.69351995), (-0.70710677, 1.2246469e-16, 0.70710677), (-0.70710677, 1.2246469e-16, 0.70710677), (-0.69351995, -0.19509032, 0.69351995), (-0.81549317, -0.19509032, 0.5448951), (-0.8314696, 1.2246469e-16, 0.55557024), (-0.8314696, 1.2246469e-16, 0.55557024), (-0.81549317, -0.19509032, 0.5448951), (-0.90612745, -0.19509032, 0.37533027), (-0.9238795, 1.2246469e-16, 0.38268343), (-0.9238795, 1.2246469e-16, 0.38268343), (-0.90612745, -0.19509032, 0.37533027), (-0.96193975, -0.19509032, 0.19134171), (-0.98078525, 1.2246469e-16, 0.19509032), (-0.98078525, 1.2246469e-16, 0.19509032), (-0.96193975, -0.19509032, 0.19134171), (-0.98078525, -0.19509032, 0), (-1, 1.2246469e-16, 0), (-0.98078525, -0.19509032, 0), (-0.9238795, -0.38268343, 0), (-0.90612745, -0.38268343, -0.18023996), (-0.96193975, -0.19509032, -0.19134171), (-0.96193975, -0.19509032, -0.19134171), (-0.90612745, -0.38268343, -0.18023996), (-0.8535534, -0.38268343, -0.35355338), (-0.90612745, -0.19509032, -0.37533027), (-0.90612745, -0.19509032, -0.37533027), (-0.8535534, -0.38268343, -0.35355338), (-0.76817775, -0.38268343, -0.51328), (-0.81549317, -0.19509032, -0.5448951), (-0.81549317, -0.19509032, -0.5448951), (-0.76817775, -0.38268343, -0.51328), (-0.6532815, -0.38268343, -0.6532815), (-0.69351995, -0.19509032, -0.69351995), (-0.69351995, -0.19509032, -0.69351995), (-0.6532815, -0.38268343, -0.6532815), (-0.51328, -0.38268343, -0.76817775), (-0.5448951, -0.19509032, -0.81549317), (-0.5448951, -0.19509032, -0.81549317), (-0.51328, -0.38268343, -0.76817775), (-0.35355338, -0.38268343, -0.8535534), (-0.37533027, -0.19509032, -0.90612745), (-0.37533027, -0.19509032, -0.90612745), (-0.35355338, -0.38268343, -0.8535534), (-0.18023996, -0.38268343, -0.90612745), (-0.19134171, -0.19509032, -0.96193975), (-0.19134171, -0.19509032, -0.96193975), (-0.18023996, -0.38268343, -0.90612745), (-5.6571306e-17, -0.38268343, -0.9238795), (-6.005578e-17, -0.19509032, -0.98078525), (-6.005578e-17, -0.19509032, -0.98078525), (-5.6571306e-17, -0.38268343, -0.9238795), (0.18023996, -0.38268343, -0.90612745), (0.19134171, -0.19509032, -0.96193975), (0.19134171, -0.19509032, -0.96193975), (0.18023996, -0.38268343, -0.90612745), (0.35355338, -0.38268343, -0.8535534), (0.37533027, -0.19509032, -0.90612745), (0.37533027, -0.19509032, -0.90612745), (0.35355338, -0.38268343, -0.8535534), (0.51328, -0.38268343, -0.76817775), (0.5448951, -0.19509032, -0.81549317), (0.5448951, -0.19509032, -0.81549317), (0.51328, -0.38268343, -0.76817775), (0.6532815, -0.38268343, -0.6532815), (0.69351995, -0.19509032, -0.69351995), (0.69351995, -0.19509032, -0.69351995), (0.6532815, -0.38268343, -0.6532815), (0.76817775, -0.38268343, -0.51328), (0.81549317, -0.19509032, -0.5448951), (0.81549317, -0.19509032, -0.5448951), (0.76817775, -0.38268343, -0.51328), (0.8535534, -0.38268343, -0.35355338), (0.90612745, -0.19509032, -0.37533027), (0.90612745, -0.19509032, -0.37533027), (0.8535534, -0.38268343, -0.35355338), (0.90612745, -0.38268343, -0.18023996), (0.96193975, -0.19509032, -0.19134171), (0.96193975, -0.19509032, -0.19134171), (0.90612745, -0.38268343, -0.18023996), (0.9238795, -0.38268343, -1.1314261e-16), (0.98078525, -0.19509032, -1.2011156e-16), (0.98078525, -0.19509032, -1.2011156e-16), (0.9238795, -0.38268343, -1.1314261e-16), (0.90612745, -0.38268343, 0.18023996), (0.96193975, -0.19509032, 0.19134171), (0.96193975, -0.19509032, 0.19134171), (0.90612745, -0.38268343, 0.18023996), (0.8535534, -0.38268343, 0.35355338), (0.90612745, -0.19509032, 0.37533027), (0.90612745, -0.19509032, 0.37533027), (0.8535534, -0.38268343, 0.35355338), (0.76817775, -0.38268343, 0.51328), (0.81549317, -0.19509032, 0.5448951), (0.81549317, -0.19509032, 0.5448951), (0.76817775, -0.38268343, 0.51328), (0.6532815, -0.38268343, 0.6532815), (0.69351995, -0.19509032, 0.69351995), (0.69351995, -0.19509032, 0.69351995), (0.6532815, -0.38268343, 0.6532815), (0.51328, -0.38268343, 0.76817775), (0.5448951, -0.19509032, 0.81549317), (0.5448951, -0.19509032, 0.81549317), (0.51328, -0.38268343, 0.76817775), (0.35355338, -0.38268343, 0.8535534), (0.37533027, -0.19509032, 0.90612745), (0.37533027, -0.19509032, 0.90612745), (0.35355338, -0.38268343, 0.8535534), (0.18023996, -0.38268343, 0.90612745), (0.19134171, -0.19509032, 0.96193975), (0.19134171, -0.19509032, 0.96193975), (0.18023996, -0.38268343, 0.90612745), (1.6971392e-16, -0.38268343, 0.9238795), (1.8016734e-16, -0.19509032, 0.98078525), (1.8016734e-16, -0.19509032, 0.98078525), (1.6971392e-16, -0.38268343, 0.9238795), (-0.18023996, -0.38268343, 0.90612745), (-0.19134171, -0.19509032, 0.96193975), (-0.19134171, -0.19509032, 0.96193975), (-0.18023996, -0.38268343, 0.90612745), (-0.35355338, -0.38268343, 0.8535534), (-0.37533027, -0.19509032, 0.90612745), (-0.37533027, -0.19509032, 0.90612745), (-0.35355338, -0.38268343, 0.8535534), (-0.51328, -0.38268343, 0.76817775), (-0.5448951, -0.19509032, 0.81549317), (-0.5448951, -0.19509032, 0.81549317), (-0.51328, -0.38268343, 0.76817775), (-0.6532815, -0.38268343, 0.6532815), (-0.69351995, -0.19509032, 0.69351995), (-0.69351995, -0.19509032, 0.69351995), (-0.6532815, -0.38268343, 0.6532815), (-0.76817775, -0.38268343, 0.51328), (-0.81549317, -0.19509032, 0.5448951), (-0.81549317, -0.19509032, 0.5448951), (-0.76817775, -0.38268343, 0.51328), (-0.8535534, -0.38268343, 0.35355338), (-0.90612745, -0.19509032, 0.37533027), (-0.90612745, -0.19509032, 0.37533027), (-0.8535534, -0.38268343, 0.35355338), (-0.90612745, -0.38268343, 0.18023996), (-0.96193975, -0.19509032, 0.19134171), (-0.96193975, -0.19509032, 0.19134171), (-0.90612745, -0.38268343, 0.18023996), (-0.9238795, -0.38268343, 0), (-0.98078525, -0.19509032, 0), (-0.9238795, -0.38268343, 0), (-0.8314696, -0.55557024, 0), (-0.81549317, -0.55557024, -0.16221167), (-0.90612745, -0.38268343, -0.18023996), (-0.90612745, -0.38268343, -0.18023996), (-0.81549317, -0.55557024, -0.16221167), (-0.76817775, -0.55557024, -0.31818965), (-0.8535534, -0.38268343, -0.35355338), (-0.8535534, -0.38268343, -0.35355338), (-0.76817775, -0.55557024, -0.31818965), (-0.6913417, -0.55557024, -0.46193975), (-0.76817775, -0.38268343, -0.51328), (-0.76817775, -0.38268343, -0.51328), (-0.6913417, -0.55557024, -0.46193975), (-0.5879378, -0.55557024, -0.5879378), (-0.6532815, -0.38268343, -0.6532815), (-0.6532815, -0.38268343, -0.6532815), (-0.5879378, -0.55557024, -0.5879378), (-0.46193975, -0.55557024, -0.6913417), (-0.51328, -0.38268343, -0.76817775), (-0.51328, -0.38268343, -0.76817775), (-0.46193975, -0.55557024, -0.6913417), (-0.31818965, -0.55557024, -0.76817775), (-0.35355338, -0.38268343, -0.8535534), (-0.35355338, -0.38268343, -0.8535534), (-0.31818965, -0.55557024, -0.76817775), (-0.16221167, -0.55557024, -0.81549317), (-0.18023996, -0.38268343, -0.90612745), (-0.18023996, -0.38268343, -0.90612745), (-0.16221167, -0.55557024, -0.81549317), (-5.091283e-17, -0.55557024, -0.8314696), (-5.6571306e-17, -0.38268343, -0.9238795), (-5.6571306e-17, -0.38268343, -0.9238795), (-5.091283e-17, -0.55557024, -0.8314696), (0.16221167, -0.55557024, -0.81549317), (0.18023996, -0.38268343, -0.90612745), (0.18023996, -0.38268343, -0.90612745), (0.16221167, -0.55557024, -0.81549317), (0.31818965, -0.55557024, -0.76817775), (0.35355338, -0.38268343, -0.8535534), (0.35355338, -0.38268343, -0.8535534), (0.31818965, -0.55557024, -0.76817775), (0.46193975, -0.55557024, -0.6913417), (0.51328, -0.38268343, -0.76817775), (0.51328, -0.38268343, -0.76817775), (0.46193975, -0.55557024, -0.6913417), (0.5879378, -0.55557024, -0.5879378), (0.6532815, -0.38268343, -0.6532815), (0.6532815, -0.38268343, -0.6532815), (0.5879378, -0.55557024, -0.5879378), (0.6913417, -0.55557024, -0.46193975), (0.76817775, -0.38268343, -0.51328), (0.76817775, -0.38268343, -0.51328), (0.6913417, -0.55557024, -0.46193975), (0.76817775, -0.55557024, -0.31818965), (0.8535534, -0.38268343, -0.35355338), (0.8535534, -0.38268343, -0.35355338), (0.76817775, -0.55557024, -0.31818965), (0.81549317, -0.55557024, -0.16221167), (0.90612745, -0.38268343, -0.18023996), (0.90612745, -0.38268343, -0.18023996), (0.81549317, -0.55557024, -0.16221167), (0.8314696, -0.55557024, -1.0182566e-16), (0.9238795, -0.38268343, -1.1314261e-16), (0.9238795, -0.38268343, -1.1314261e-16), (0.8314696, -0.55557024, -1.0182566e-16), (0.81549317, -0.55557024, 0.16221167), (0.90612745, -0.38268343, 0.18023996), (0.90612745, -0.38268343, 0.18023996), (0.81549317, -0.55557024, 0.16221167), (0.76817775, -0.55557024, 0.31818965), (0.8535534, -0.38268343, 0.35355338), (0.8535534, -0.38268343, 0.35355338), (0.76817775, -0.55557024, 0.31818965), (0.6913417, -0.55557024, 0.46193975), (0.76817775, -0.38268343, 0.51328), (0.76817775, -0.38268343, 0.51328), (0.6913417, -0.55557024, 0.46193975), (0.5879378, -0.55557024, 0.5879378), (0.6532815, -0.38268343, 0.6532815), (0.6532815, -0.38268343, 0.6532815), (0.5879378, -0.55557024, 0.5879378), (0.46193975, -0.55557024, 0.6913417), (0.51328, -0.38268343, 0.76817775), (0.51328, -0.38268343, 0.76817775), (0.46193975, -0.55557024, 0.6913417), (0.31818965, -0.55557024, 0.76817775), (0.35355338, -0.38268343, 0.8535534), (0.35355338, -0.38268343, 0.8535534), (0.31818965, -0.55557024, 0.76817775), (0.16221167, -0.55557024, 0.81549317), (0.18023996, -0.38268343, 0.90612745), (0.18023996, -0.38268343, 0.90612745), (0.16221167, -0.55557024, 0.81549317), (1.5273849e-16, -0.55557024, 0.8314696), (1.6971392e-16, -0.38268343, 0.9238795), (1.6971392e-16, -0.38268343, 0.9238795), (1.5273849e-16, -0.55557024, 0.8314696), (-0.16221167, -0.55557024, 0.81549317), (-0.18023996, -0.38268343, 0.90612745), (-0.18023996, -0.38268343, 0.90612745), (-0.16221167, -0.55557024, 0.81549317), (-0.31818965, -0.55557024, 0.76817775), (-0.35355338, -0.38268343, 0.8535534), (-0.35355338, -0.38268343, 0.8535534), (-0.31818965, -0.55557024, 0.76817775), (-0.46193975, -0.55557024, 0.6913417), (-0.51328, -0.38268343, 0.76817775), (-0.51328, -0.38268343, 0.76817775), (-0.46193975, -0.55557024, 0.6913417), (-0.5879378, -0.55557024, 0.5879378), (-0.6532815, -0.38268343, 0.6532815), (-0.6532815, -0.38268343, 0.6532815), (-0.5879378, -0.55557024, 0.5879378), (-0.6913417, -0.55557024, 0.46193975), (-0.76817775, -0.38268343, 0.51328), (-0.76817775, -0.38268343, 0.51328), (-0.6913417, -0.55557024, 0.46193975), (-0.76817775, -0.55557024, 0.31818965), (-0.8535534, -0.38268343, 0.35355338), (-0.8535534, -0.38268343, 0.35355338), (-0.76817775, -0.55557024, 0.31818965), (-0.81549317, -0.55557024, 0.16221167), (-0.90612745, -0.38268343, 0.18023996), (-0.90612745, -0.38268343, 0.18023996), (-0.81549317, -0.55557024, 0.16221167), (-0.8314696, -0.55557024, 0), (-0.9238795, -0.38268343, 0), (-0.8314696, -0.55557024, 0), (-0.70710677, -0.70710677, 0), (-0.69351995, -0.70710677, -0.13794969), (-0.81549317, -0.55557024, -0.16221167), (-0.81549317, -0.55557024, -0.16221167), (-0.69351995, -0.70710677, -0.13794969), (-0.6532815, -0.70710677, -0.27059805), (-0.76817775, -0.55557024, -0.31818965), (-0.76817775, -0.55557024, -0.31818965), (-0.6532815, -0.70710677, -0.27059805), (-0.5879378, -0.70710677, -0.39284748), (-0.6913417, -0.55557024, -0.46193975), (-0.6913417, -0.55557024, -0.46193975), (-0.5879378, -0.70710677, -0.39284748), (-0.5, -0.70710677, -0.5), (-0.5879378, -0.55557024, -0.5879378), (-0.5879378, -0.55557024, -0.5879378), (-0.5, -0.70710677, -0.5), (-0.39284748, -0.70710677, -0.5879378), (-0.46193975, -0.55557024, -0.6913417), (-0.46193975, -0.55557024, -0.6913417), (-0.39284748, -0.70710677, -0.5879378), (-0.27059805, -0.70710677, -0.6532815), (-0.31818965, -0.55557024, -0.76817775), (-0.31818965, -0.55557024, -0.76817775), (-0.27059805, -0.70710677, -0.6532815), (-0.13794969, -0.70710677, -0.69351995), (-0.16221167, -0.55557024, -0.81549317), (-0.16221167, -0.55557024, -0.81549317), (-0.13794969, -0.70710677, -0.69351995), (-4.3297803e-17, -0.70710677, -0.70710677), (-5.091283e-17, -0.55557024, -0.8314696), (-5.091283e-17, -0.55557024, -0.8314696), (-4.3297803e-17, -0.70710677, -0.70710677), (0.13794969, -0.70710677, -0.69351995), (0.16221167, -0.55557024, -0.81549317), (0.16221167, -0.55557024, -0.81549317), (0.13794969, -0.70710677, -0.69351995), (0.27059805, -0.70710677, -0.6532815), (0.31818965, -0.55557024, -0.76817775), (0.31818965, -0.55557024, -0.76817775), (0.27059805, -0.70710677, -0.6532815), (0.39284748, -0.70710677, -0.5879378), (0.46193975, -0.55557024, -0.6913417), (0.46193975, -0.55557024, -0.6913417), (0.39284748, -0.70710677, -0.5879378), (0.5, -0.70710677, -0.5), (0.5879378, -0.55557024, -0.5879378), (0.5879378, -0.55557024, -0.5879378), (0.5, -0.70710677, -0.5), (0.5879378, -0.70710677, -0.39284748), (0.6913417, -0.55557024, -0.46193975), (0.6913417, -0.55557024, -0.46193975), (0.5879378, -0.70710677, -0.39284748), (0.6532815, -0.70710677, -0.27059805), (0.76817775, -0.55557024, -0.31818965), (0.76817775, -0.55557024, -0.31818965), (0.6532815, -0.70710677, -0.27059805), (0.69351995, -0.70710677, -0.13794969), (0.81549317, -0.55557024, -0.16221167), (0.81549317, -0.55557024, -0.16221167), (0.69351995, -0.70710677, -0.13794969), (0.70710677, -0.70710677, -8.6595606e-17), (0.8314696, -0.55557024, -1.0182566e-16), (0.8314696, -0.55557024, -1.0182566e-16), (0.70710677, -0.70710677, -8.6595606e-17), (0.69351995, -0.70710677, 0.13794969), (0.81549317, -0.55557024, 0.16221167), (0.81549317, -0.55557024, 0.16221167), (0.69351995, -0.70710677, 0.13794969), (0.6532815, -0.70710677, 0.27059805), (0.76817775, -0.55557024, 0.31818965), (0.76817775, -0.55557024, 0.31818965), (0.6532815, -0.70710677, 0.27059805), (0.5879378, -0.70710677, 0.39284748), (0.6913417, -0.55557024, 0.46193975), (0.6913417, -0.55557024, 0.46193975), (0.5879378, -0.70710677, 0.39284748), (0.5, -0.70710677, 0.5), (0.5879378, -0.55557024, 0.5879378), (0.5879378, -0.55557024, 0.5879378), (0.5, -0.70710677, 0.5), (0.39284748, -0.70710677, 0.5879378), (0.46193975, -0.55557024, 0.6913417), (0.46193975, -0.55557024, 0.6913417), (0.39284748, -0.70710677, 0.5879378), (0.27059805, -0.70710677, 0.6532815), (0.31818965, -0.55557024, 0.76817775), (0.31818965, -0.55557024, 0.76817775), (0.27059805, -0.70710677, 0.6532815), (0.13794969, -0.70710677, 0.69351995), (0.16221167, -0.55557024, 0.81549317), (0.16221167, -0.55557024, 0.81549317), (0.13794969, -0.70710677, 0.69351995), (1.298934e-16, -0.70710677, 0.70710677), (1.5273849e-16, -0.55557024, 0.8314696), (1.5273849e-16, -0.55557024, 0.8314696), (1.298934e-16, -0.70710677, 0.70710677), (-0.13794969, -0.70710677, 0.69351995), (-0.16221167, -0.55557024, 0.81549317), (-0.16221167, -0.55557024, 0.81549317), (-0.13794969, -0.70710677, 0.69351995), (-0.27059805, -0.70710677, 0.6532815), (-0.31818965, -0.55557024, 0.76817775), (-0.31818965, -0.55557024, 0.76817775), (-0.27059805, -0.70710677, 0.6532815), (-0.39284748, -0.70710677, 0.5879378), (-0.46193975, -0.55557024, 0.6913417), (-0.46193975, -0.55557024, 0.6913417), (-0.39284748, -0.70710677, 0.5879378), (-0.5, -0.70710677, 0.5), (-0.5879378, -0.55557024, 0.5879378), (-0.5879378, -0.55557024, 0.5879378), (-0.5, -0.70710677, 0.5), (-0.5879378, -0.70710677, 0.39284748), (-0.6913417, -0.55557024, 0.46193975), (-0.6913417, -0.55557024, 0.46193975), (-0.5879378, -0.70710677, 0.39284748), (-0.6532815, -0.70710677, 0.27059805), (-0.76817775, -0.55557024, 0.31818965), (-0.76817775, -0.55557024, 0.31818965), (-0.6532815, -0.70710677, 0.27059805), (-0.69351995, -0.70710677, 0.13794969), (-0.81549317, -0.55557024, 0.16221167), (-0.81549317, -0.55557024, 0.16221167), (-0.69351995, -0.70710677, 0.13794969), (-0.70710677, -0.70710677, 0), (-0.8314696, -0.55557024, 0), (-0.70710677, -0.70710677, 0), (-0.55557024, -0.8314696, 0), (-0.5448951, -0.8314696, -0.108386375), (-0.69351995, -0.70710677, -0.13794969), (-0.69351995, -0.70710677, -0.13794969), (-0.5448951, -0.8314696, -0.108386375), (-0.51328, -0.8314696, -0.21260752), (-0.6532815, -0.70710677, -0.27059805), (-0.6532815, -0.70710677, -0.27059805), (-0.51328, -0.8314696, -0.21260752), (-0.46193975, -0.8314696, -0.30865827), (-0.5879378, -0.70710677, -0.39284748), (-0.5879378, -0.70710677, -0.39284748), (-0.46193975, -0.8314696, -0.30865827), (-0.39284748, -0.8314696, -0.39284748), (-0.5, -0.70710677, -0.5), (-0.5, -0.70710677, -0.5), (-0.39284748, -0.8314696, -0.39284748), (-0.30865827, -0.8314696, -0.46193975), (-0.39284748, -0.70710677, -0.5879378), (-0.39284748, -0.70710677, -0.5879378), (-0.30865827, -0.8314696, -0.46193975), (-0.21260752, -0.8314696, -0.51328), (-0.27059805, -0.70710677, -0.6532815), (-0.27059805, -0.70710677, -0.6532815), (-0.21260752, -0.8314696, -0.51328), (-0.108386375, -0.8314696, -0.5448951), (-0.13794969, -0.70710677, -0.69351995), (-0.13794969, -0.70710677, -0.69351995), (-0.108386375, -0.8314696, -0.5448951), (-3.4018865e-17, -0.8314696, -0.55557024), (-4.3297803e-17, -0.70710677, -0.70710677), (-4.3297803e-17, -0.70710677, -0.70710677), (-3.4018865e-17, -0.8314696, -0.55557024), (0.108386375, -0.8314696, -0.5448951), (0.13794969, -0.70710677, -0.69351995), (0.13794969, -0.70710677, -0.69351995), (0.108386375, -0.8314696, -0.5448951), (0.21260752, -0.8314696, -0.51328), (0.27059805, -0.70710677, -0.6532815), (0.27059805, -0.70710677, -0.6532815), (0.21260752, -0.8314696, -0.51328), (0.30865827, -0.8314696, -0.46193975), (0.39284748, -0.70710677, -0.5879378), (0.39284748, -0.70710677, -0.5879378), (0.30865827, -0.8314696, -0.46193975), (0.39284748, -0.8314696, -0.39284748), (0.5, -0.70710677, -0.5), (0.5, -0.70710677, -0.5), (0.39284748, -0.8314696, -0.39284748), (0.46193975, -0.8314696, -0.30865827), (0.5879378, -0.70710677, -0.39284748), (0.5879378, -0.70710677, -0.39284748), (0.46193975, -0.8314696, -0.30865827), (0.51328, -0.8314696, -0.21260752), (0.6532815, -0.70710677, -0.27059805), (0.6532815, -0.70710677, -0.27059805), (0.51328, -0.8314696, -0.21260752), (0.5448951, -0.8314696, -0.108386375), (0.69351995, -0.70710677, -0.13794969), (0.69351995, -0.70710677, -0.13794969), (0.5448951, -0.8314696, -0.108386375), (0.55557024, -0.8314696, -6.803773e-17), (0.70710677, -0.70710677, -8.6595606e-17), (0.70710677, -0.70710677, -8.6595606e-17), (0.55557024, -0.8314696, -6.803773e-17), (0.5448951, -0.8314696, 0.108386375), (0.69351995, -0.70710677, 0.13794969), (0.69351995, -0.70710677, 0.13794969), (0.5448951, -0.8314696, 0.108386375), (0.51328, -0.8314696, 0.21260752), (0.6532815, -0.70710677, 0.27059805), (0.6532815, -0.70710677, 0.27059805), (0.51328, -0.8314696, 0.21260752), (0.46193975, -0.8314696, 0.30865827), (0.5879378, -0.70710677, 0.39284748), (0.5879378, -0.70710677, 0.39284748), (0.46193975, -0.8314696, 0.30865827), (0.39284748, -0.8314696, 0.39284748), (0.5, -0.70710677, 0.5), (0.5, -0.70710677, 0.5), (0.39284748, -0.8314696, 0.39284748), (0.30865827, -0.8314696, 0.46193975), (0.39284748, -0.70710677, 0.5879378), (0.39284748, -0.70710677, 0.5879378), (0.30865827, -0.8314696, 0.46193975), (0.21260752, -0.8314696, 0.51328), (0.27059805, -0.70710677, 0.6532815), (0.27059805, -0.70710677, 0.6532815), (0.21260752, -0.8314696, 0.51328), (0.108386375, -0.8314696, 0.5448951), (0.13794969, -0.70710677, 0.69351995), (0.13794969, -0.70710677, 0.69351995), (0.108386375, -0.8314696, 0.5448951), (1.020566e-16, -0.8314696, 0.55557024), (1.298934e-16, -0.70710677, 0.70710677), (1.298934e-16, -0.70710677, 0.70710677), (1.020566e-16, -0.8314696, 0.55557024), (-0.108386375, -0.8314696, 0.5448951), (-0.13794969, -0.70710677, 0.69351995), (-0.13794969, -0.70710677, 0.69351995), (-0.108386375, -0.8314696, 0.5448951), (-0.21260752, -0.8314696, 0.51328), (-0.27059805, -0.70710677, 0.6532815), (-0.27059805, -0.70710677, 0.6532815), (-0.21260752, -0.8314696, 0.51328), (-0.30865827, -0.8314696, 0.46193975), (-0.39284748, -0.70710677, 0.5879378), (-0.39284748, -0.70710677, 0.5879378), (-0.30865827, -0.8314696, 0.46193975), (-0.39284748, -0.8314696, 0.39284748), (-0.5, -0.70710677, 0.5), (-0.5, -0.70710677, 0.5), (-0.39284748, -0.8314696, 0.39284748), (-0.46193975, -0.8314696, 0.30865827), (-0.5879378, -0.70710677, 0.39284748), (-0.5879378, -0.70710677, 0.39284748), (-0.46193975, -0.8314696, 0.30865827), (-0.51328, -0.8314696, 0.21260752), (-0.6532815, -0.70710677, 0.27059805), (-0.6532815, -0.70710677, 0.27059805), (-0.51328, -0.8314696, 0.21260752), (-0.5448951, -0.8314696, 0.108386375), (-0.69351995, -0.70710677, 0.13794969), (-0.69351995, -0.70710677, 0.13794969), (-0.5448951, -0.8314696, 0.108386375), (-0.55557024, -0.8314696, 0), (-0.70710677, -0.70710677, 0), (-0.55557024, -0.8314696, 0), (-0.38268343, -0.9238795, 0), (-0.37533027, -0.9238795, -0.074657835), (-0.5448951, -0.8314696, -0.108386375), (-0.5448951, -0.8314696, -0.108386375), (-0.37533027, -0.9238795, -0.074657835), (-0.35355338, -0.9238795, -0.14644662), (-0.51328, -0.8314696, -0.21260752), (-0.51328, -0.8314696, -0.21260752), (-0.35355338, -0.9238795, -0.14644662), (-0.31818965, -0.9238795, -0.21260752), (-0.46193975, -0.8314696, -0.30865827), (-0.46193975, -0.8314696, -0.30865827), (-0.31818965, -0.9238795, -0.21260752), (-0.27059805, -0.9238795, -0.27059805), (-0.39284748, -0.8314696, -0.39284748), (-0.39284748, -0.8314696, -0.39284748), (-0.27059805, -0.9238795, -0.27059805), (-0.21260752, -0.9238795, -0.31818965), (-0.30865827, -0.8314696, -0.46193975), (-0.30865827, -0.8314696, -0.46193975), (-0.21260752, -0.9238795, -0.31818965), (-0.14644662, -0.9238795, -0.35355338), (-0.21260752, -0.8314696, -0.51328), (-0.21260752, -0.8314696, -0.51328), (-0.14644662, -0.9238795, -0.35355338), (-0.074657835, -0.9238795, -0.37533027), (-0.108386375, -0.8314696, -0.5448951), (-0.108386375, -0.8314696, -0.5448951), (-0.074657835, -0.9238795, -0.37533027), (-2.3432602e-17, -0.9238795, -0.38268343), (-3.4018865e-17, -0.8314696, -0.55557024), (-3.4018865e-17, -0.8314696, -0.55557024), (-2.3432602e-17, -0.9238795, -0.38268343), (0.074657835, -0.9238795, -0.37533027), (0.108386375, -0.8314696, -0.5448951), (0.108386375, -0.8314696, -0.5448951), (0.074657835, -0.9238795, -0.37533027), (0.14644662, -0.9238795, -0.35355338), (0.21260752, -0.8314696, -0.51328), (0.21260752, -0.8314696, -0.51328), (0.14644662, -0.9238795, -0.35355338), (0.21260752, -0.9238795, -0.31818965), (0.30865827, -0.8314696, -0.46193975), (0.30865827, -0.8314696, -0.46193975), (0.21260752, -0.9238795, -0.31818965), (0.27059805, -0.9238795, -0.27059805), (0.39284748, -0.8314696, -0.39284748), (0.39284748, -0.8314696, -0.39284748), (0.27059805, -0.9238795, -0.27059805), (0.31818965, -0.9238795, -0.21260752), (0.46193975, -0.8314696, -0.30865827), (0.46193975, -0.8314696, -0.30865827), (0.31818965, -0.9238795, -0.21260752), (0.35355338, -0.9238795, -0.14644662), (0.51328, -0.8314696, -0.21260752), (0.51328, -0.8314696, -0.21260752), (0.35355338, -0.9238795, -0.14644662), (0.37533027, -0.9238795, -0.074657835), (0.5448951, -0.8314696, -0.108386375), (0.5448951, -0.8314696, -0.108386375), (0.37533027, -0.9238795, -0.074657835), (0.38268343, -0.9238795, -4.6865205e-17), (0.55557024, -0.8314696, -6.803773e-17), (0.55557024, -0.8314696, -6.803773e-17), (0.38268343, -0.9238795, -4.6865205e-17), (0.37533027, -0.9238795, 0.074657835), (0.5448951, -0.8314696, 0.108386375), (0.5448951, -0.8314696, 0.108386375), (0.37533027, -0.9238795, 0.074657835), (0.35355338, -0.9238795, 0.14644662), (0.51328, -0.8314696, 0.21260752), (0.51328, -0.8314696, 0.21260752), (0.35355338, -0.9238795, 0.14644662), (0.31818965, -0.9238795, 0.21260752), (0.46193975, -0.8314696, 0.30865827), (0.46193975, -0.8314696, 0.30865827), (0.31818965, -0.9238795, 0.21260752), (0.27059805, -0.9238795, 0.27059805), (0.39284748, -0.8314696, 0.39284748), (0.39284748, -0.8314696, 0.39284748), (0.27059805, -0.9238795, 0.27059805), (0.21260752, -0.9238795, 0.31818965), (0.30865827, -0.8314696, 0.46193975), (0.30865827, -0.8314696, 0.46193975), (0.21260752, -0.9238795, 0.31818965), (0.14644662, -0.9238795, 0.35355338), (0.21260752, -0.8314696, 0.51328), (0.21260752, -0.8314696, 0.51328), (0.14644662, -0.9238795, 0.35355338), (0.074657835, -0.9238795, 0.37533027), (0.108386375, -0.8314696, 0.5448951), (0.108386375, -0.8314696, 0.5448951), (0.074657835, -0.9238795, 0.37533027), (7.0297805e-17, -0.9238795, 0.38268343), (1.020566e-16, -0.8314696, 0.55557024), (1.020566e-16, -0.8314696, 0.55557024), (7.0297805e-17, -0.9238795, 0.38268343), (-0.074657835, -0.9238795, 0.37533027), (-0.108386375, -0.8314696, 0.5448951), (-0.108386375, -0.8314696, 0.5448951), (-0.074657835, -0.9238795, 0.37533027), (-0.14644662, -0.9238795, 0.35355338), (-0.21260752, -0.8314696, 0.51328), (-0.21260752, -0.8314696, 0.51328), (-0.14644662, -0.9238795, 0.35355338), (-0.21260752, -0.9238795, 0.31818965), (-0.30865827, -0.8314696, 0.46193975), (-0.30865827, -0.8314696, 0.46193975), (-0.21260752, -0.9238795, 0.31818965), (-0.27059805, -0.9238795, 0.27059805), (-0.39284748, -0.8314696, 0.39284748), (-0.39284748, -0.8314696, 0.39284748), (-0.27059805, -0.9238795, 0.27059805), (-0.31818965, -0.9238795, 0.21260752), (-0.46193975, -0.8314696, 0.30865827), (-0.46193975, -0.8314696, 0.30865827), (-0.31818965, -0.9238795, 0.21260752), (-0.35355338, -0.9238795, 0.14644662), (-0.51328, -0.8314696, 0.21260752), (-0.51328, -0.8314696, 0.21260752), (-0.35355338, -0.9238795, 0.14644662), (-0.37533027, -0.9238795, 0.074657835), (-0.5448951, -0.8314696, 0.108386375), (-0.5448951, -0.8314696, 0.108386375), (-0.37533027, -0.9238795, 0.074657835), (-0.38268343, -0.9238795, 0), (-0.55557024, -0.8314696, 0), (-0.38268343, -0.9238795, 0), (-0.19509032, -0.98078525, 0), (-0.19134171, -0.98078525, -0.038060233), (-0.37533027, -0.9238795, -0.074657835), (-0.37533027, -0.9238795, -0.074657835), (-0.19134171, -0.98078525, -0.038060233), (-0.18023996, -0.98078525, -0.074657835), (-0.35355338, -0.9238795, -0.14644662), (-0.35355338, -0.9238795, -0.14644662), (-0.18023996, -0.98078525, -0.074657835), (-0.16221167, -0.98078525, -0.108386375), (-0.31818965, -0.9238795, -0.21260752), (-0.31818965, -0.9238795, -0.21260752), (-0.16221167, -0.98078525, -0.108386375), (-0.13794969, -0.98078525, -0.13794969), (-0.27059805, -0.9238795, -0.27059805), (-0.27059805, -0.9238795, -0.27059805), (-0.13794969, -0.98078525, -0.13794969), (-0.108386375, -0.98078525, -0.16221167), (-0.21260752, -0.9238795, -0.31818965), (-0.21260752, -0.9238795, -0.31818965), (-0.108386375, -0.98078525, -0.16221167), (-0.074657835, -0.98078525, -0.18023996), (-0.14644662, -0.9238795, -0.35355338), (-0.14644662, -0.9238795, -0.35355338), (-0.074657835, -0.98078525, -0.18023996), (-0.038060233, -0.98078525, -0.19134171), (-0.074657835, -0.9238795, -0.37533027), (-0.074657835, -0.9238795, -0.37533027), (-0.038060233, -0.98078525, -0.19134171), (-1.1945837e-17, -0.98078525, -0.19509032), (-2.3432602e-17, -0.9238795, -0.38268343), (-2.3432602e-17, -0.9238795, -0.38268343), (-1.1945837e-17, -0.98078525, -0.19509032), (0.038060233, -0.98078525, -0.19134171), (0.074657835, -0.9238795, -0.37533027), (0.074657835, -0.9238795, -0.37533027), (0.038060233, -0.98078525, -0.19134171), (0.074657835, -0.98078525, -0.18023996), (0.14644662, -0.9238795, -0.35355338), (0.14644662, -0.9238795, -0.35355338), (0.074657835, -0.98078525, -0.18023996), (0.108386375, -0.98078525, -0.16221167), (0.21260752, -0.9238795, -0.31818965), (0.21260752, -0.9238795, -0.31818965), (0.108386375, -0.98078525, -0.16221167), (0.13794969, -0.98078525, -0.13794969), (0.27059805, -0.9238795, -0.27059805), (0.27059805, -0.9238795, -0.27059805), (0.13794969, -0.98078525, -0.13794969), (0.16221167, -0.98078525, -0.108386375), (0.31818965, -0.9238795, -0.21260752), (0.31818965, -0.9238795, -0.21260752), (0.16221167, -0.98078525, -0.108386375), (0.18023996, -0.98078525, -0.074657835), (0.35355338, -0.9238795, -0.14644662), (0.35355338, -0.9238795, -0.14644662), (0.18023996, -0.98078525, -0.074657835), (0.19134171, -0.98078525, -0.038060233), (0.37533027, -0.9238795, -0.074657835), (0.37533027, -0.9238795, -0.074657835), (0.19134171, -0.98078525, -0.038060233), (0.19509032, -0.98078525, -2.3891674e-17), (0.38268343, -0.9238795, -4.6865205e-17), (0.38268343, -0.9238795, -4.6865205e-17), (0.19509032, -0.98078525, -2.3891674e-17), (0.19134171, -0.98078525, 0.038060233), (0.37533027, -0.9238795, 0.074657835), (0.37533027, -0.9238795, 0.074657835), (0.19134171, -0.98078525, 0.038060233), (0.18023996, -0.98078525, 0.074657835), (0.35355338, -0.9238795, 0.14644662), (0.35355338, -0.9238795, 0.14644662), (0.18023996, -0.98078525, 0.074657835), (0.16221167, -0.98078525, 0.108386375), (0.31818965, -0.9238795, 0.21260752), (0.31818965, -0.9238795, 0.21260752), (0.16221167, -0.98078525, 0.108386375), (0.13794969, -0.98078525, 0.13794969), (0.27059805, -0.9238795, 0.27059805), (0.27059805, -0.9238795, 0.27059805), (0.13794969, -0.98078525, 0.13794969), (0.108386375, -0.98078525, 0.16221167), (0.21260752, -0.9238795, 0.31818965), (0.21260752, -0.9238795, 0.31818965), (0.108386375, -0.98078525, 0.16221167), (0.074657835, -0.98078525, 0.18023996), (0.14644662, -0.9238795, 0.35355338), (0.14644662, -0.9238795, 0.35355338), (0.074657835, -0.98078525, 0.18023996), (0.038060233, -0.98078525, 0.19134171), (0.074657835, -0.9238795, 0.37533027), (0.074657835, -0.9238795, 0.37533027), (0.038060233, -0.98078525, 0.19134171), (3.583751e-17, -0.98078525, 0.19509032), (7.0297805e-17, -0.9238795, 0.38268343), (7.0297805e-17, -0.9238795, 0.38268343), (3.583751e-17, -0.98078525, 0.19509032), (-0.038060233, -0.98078525, 0.19134171), (-0.074657835, -0.9238795, 0.37533027), (-0.074657835, -0.9238795, 0.37533027), (-0.038060233, -0.98078525, 0.19134171), (-0.074657835, -0.98078525, 0.18023996), (-0.14644662, -0.9238795, 0.35355338), (-0.14644662, -0.9238795, 0.35355338), (-0.074657835, -0.98078525, 0.18023996), (-0.108386375, -0.98078525, 0.16221167), (-0.21260752, -0.9238795, 0.31818965), (-0.21260752, -0.9238795, 0.31818965), (-0.108386375, -0.98078525, 0.16221167), (-0.13794969, -0.98078525, 0.13794969), (-0.27059805, -0.9238795, 0.27059805), (-0.27059805, -0.9238795, 0.27059805), (-0.13794969, -0.98078525, 0.13794969), (-0.16221167, -0.98078525, 0.108386375), (-0.31818965, -0.9238795, 0.21260752), (-0.31818965, -0.9238795, 0.21260752), (-0.16221167, -0.98078525, 0.108386375), (-0.18023996, -0.98078525, 0.074657835), (-0.35355338, -0.9238795, 0.14644662), (-0.35355338, -0.9238795, 0.14644662), (-0.18023996, -0.98078525, 0.074657835), (-0.19134171, -0.98078525, 0.038060233), (-0.37533027, -0.9238795, 0.074657835), (-0.37533027, -0.9238795, 0.074657835), (-0.19134171, -0.98078525, 0.038060233), (-0.19509032, -0.98078525, 0), (-0.38268343, -0.9238795, 0), (-0.19509032, -0.98078525, 0), (-2.220446e-16, -1, 0), (-2.220446e-16, -1, -5.551115e-17), (-0.19134171, -0.98078525, -0.038060233), (-0.19134171, -0.98078525, -0.038060233), (-2.220446e-16, -1, -5.551115e-17), (-2.220446e-16, -1, -1.110223e-16), (-0.18023996, -0.98078525, -0.074657835), (-0.18023996, -0.98078525, -0.074657835), (-2.220446e-16, -1, -1.110223e-16), (-2.220446e-16, -1, -2.220446e-16), (-0.16221167, -0.98078525, -0.108386375), (-0.16221167, -0.98078525, -0.108386375), (-2.220446e-16, -1, -2.220446e-16), (-2.220446e-16, -1, -2.220446e-16), (-0.13794969, -0.98078525, -0.13794969), (-0.13794969, -0.98078525, -0.13794969), (-2.220446e-16, -1, -2.220446e-16), (-2.220446e-16, -1, -2.220446e-16), (-0.108386375, -0.98078525, -0.16221167), (-0.108386375, -0.98078525, -0.16221167), (-2.220446e-16, -1, -2.220446e-16), (-1.110223e-16, -1, -2.220446e-16), (-0.074657835, -0.98078525, -0.18023996), (-0.074657835, -0.98078525, -0.18023996), (-1.110223e-16, -1, -2.220446e-16), (-5.551115e-17, -1, -2.220446e-16), (-0.038060233, -0.98078525, -0.19134171), (-0.038060233, -0.98078525, -0.19134171), (-5.551115e-17, -1, -2.220446e-16), (-2.4651903e-32, -1, -2.220446e-16), (-1.1945837e-17, -0.98078525, -0.19509032), (-1.1945837e-17, -0.98078525, -0.19509032), (-2.4651903e-32, -1, -2.220446e-16), (5.551115e-17, -1, -2.220446e-16), (0.038060233, -0.98078525, -0.19134171), (0.038060233, -0.98078525, -0.19134171), (5.551115e-17, -1, -2.220446e-16), (1.110223e-16, -1, -2.220446e-16), (0.074657835, -0.98078525, -0.18023996), (0.074657835, -0.98078525, -0.18023996), (1.110223e-16, -1, -2.220446e-16), (2.220446e-16, -1, -2.220446e-16), (0.108386375, -0.98078525, -0.16221167), (0.108386375, -0.98078525, -0.16221167), (2.220446e-16, -1, -2.220446e-16), (2.220446e-16, -1, -2.220446e-16), (0.13794969, -0.98078525, -0.13794969), (0.13794969, -0.98078525, -0.13794969), (2.220446e-16, -1, -2.220446e-16), (2.220446e-16, -1, -2.220446e-16), (0.16221167, -0.98078525, -0.108386375), (0.16221167, -0.98078525, -0.108386375), (2.220446e-16, -1, -2.220446e-16), (2.220446e-16, -1, -1.110223e-16), (0.18023996, -0.98078525, -0.074657835), (0.18023996, -0.98078525, -0.074657835), (2.220446e-16, -1, -1.110223e-16), (2.220446e-16, -1, -5.551115e-17), (0.19134171, -0.98078525, -0.038060233), (0.19134171, -0.98078525, -0.038060233), (2.220446e-16, -1, -5.551115e-17), (2.220446e-16, -1, -4.9303807e-32), (0.19509032, -0.98078525, -2.3891674e-17), (0.19509032, -0.98078525, -2.3891674e-17), (2.220446e-16, -1, -4.9303807e-32), (2.220446e-16, -1, 5.551115e-17), (0.19134171, -0.98078525, 0.038060233), (0.19134171, -0.98078525, 0.038060233), (2.220446e-16, -1, 5.551115e-17), (2.220446e-16, -1, 1.110223e-16), (0.18023996, -0.98078525, 0.074657835), (0.18023996, -0.98078525, 0.074657835), (2.220446e-16, -1, 1.110223e-16), (2.220446e-16, -1, 2.220446e-16), (0.16221167, -0.98078525, 0.108386375), (0.16221167, -0.98078525, 0.108386375), (2.220446e-16, -1, 2.220446e-16), (2.220446e-16, -1, 2.220446e-16), (0.13794969, -0.98078525, 0.13794969), (0.13794969, -0.98078525, 0.13794969), (2.220446e-16, -1, 2.220446e-16), (2.220446e-16, -1, 2.220446e-16), (0.108386375, -0.98078525, 0.16221167), (0.108386375, -0.98078525, 0.16221167), (2.220446e-16, -1, 2.220446e-16), (1.110223e-16, -1, 2.220446e-16), (0.074657835, -0.98078525, 0.18023996), (0.074657835, -0.98078525, 0.18023996), (1.110223e-16, -1, 2.220446e-16), (5.551115e-17, -1, 2.220446e-16), (0.038060233, -0.98078525, 0.19134171), (0.038060233, -0.98078525, 0.19134171), (5.551115e-17, -1, 2.220446e-16), (4.9303807e-32, -1, 2.220446e-16), (3.583751e-17, -0.98078525, 0.19509032), (3.583751e-17, -0.98078525, 0.19509032), (4.9303807e-32, -1, 2.220446e-16), (-5.551115e-17, -1, 2.220446e-16), (-0.038060233, -0.98078525, 0.19134171), (-0.038060233, -0.98078525, 0.19134171), (-5.551115e-17, -1, 2.220446e-16), (-1.110223e-16, -1, 2.220446e-16), (-0.074657835, -0.98078525, 0.18023996), (-0.074657835, -0.98078525, 0.18023996), (-1.110223e-16, -1, 2.220446e-16), (-2.220446e-16, -1, 2.220446e-16), (-0.108386375, -0.98078525, 0.16221167), (-0.108386375, -0.98078525, 0.16221167), (-2.220446e-16, -1, 2.220446e-16), (-2.220446e-16, -1, 2.220446e-16), (-0.13794969, -0.98078525, 0.13794969), (-0.13794969, -0.98078525, 0.13794969), (-2.220446e-16, -1, 2.220446e-16), (-2.220446e-16, -1, 2.220446e-16), (-0.16221167, -0.98078525, 0.108386375), (-0.16221167, -0.98078525, 0.108386375), (-2.220446e-16, -1, 2.220446e-16), (-2.220446e-16, -1, 1.110223e-16), (-0.18023996, -0.98078525, 0.074657835), (-0.18023996, -0.98078525, 0.074657835), (-2.220446e-16, -1, 1.110223e-16), (-2.220446e-16, -1, 5.551115e-17), (-0.19134171, -0.98078525, 0.038060233), (-0.19134171, -0.98078525, 0.038060233), (-2.220446e-16, -1, 5.551115e-17), (-2.220446e-16, -1, 0), (-0.19509032, -0.98078525, 0), (-2.220446e-16, -1, 0), (0.19509032, -0.98078525, 0), (0.19134171, -0.98078525, 0.038060233), (-2.220446e-16, -1, -5.551115e-17), (-2.220446e-16, -1, -5.551115e-17), (0.19134171, -0.98078525, 0.038060233), (0.18023996, -0.98078525, 0.074657835), (-2.220446e-16, -1, -1.110223e-16), (-2.220446e-16, -1, -1.110223e-16), (0.18023996, -0.98078525, 0.074657835), (0.16221167, -0.98078525, 0.108386375), (-2.220446e-16, -1, -2.220446e-16), (-2.220446e-16, -1, -2.220446e-16), (0.16221167, -0.98078525, 0.108386375), (0.13794969, -0.98078525, 0.13794969), (-2.220446e-16, -1, -2.220446e-16), (-2.220446e-16, -1, -2.220446e-16), (0.13794969, -0.98078525, 0.13794969), (0.108386375, -0.98078525, 0.16221167), (-2.220446e-16, -1, -2.220446e-16), (-2.220446e-16, -1, -2.220446e-16), (0.108386375, -0.98078525, 0.16221167), (0.074657835, -0.98078525, 0.18023996), (-1.110223e-16, -1, -2.220446e-16), (-1.110223e-16, -1, -2.220446e-16), (0.074657835, -0.98078525, 0.18023996), (0.038060233, -0.98078525, 0.19134171), (-5.551115e-17, -1, -2.220446e-16), (-5.551115e-17, -1, -2.220446e-16), (0.038060233, -0.98078525, 0.19134171), (1.1945837e-17, -0.98078525, 0.19509032), (-2.4651903e-32, -1, -2.220446e-16), (-2.4651903e-32, -1, -2.220446e-16), (1.1945837e-17, -0.98078525, 0.19509032), (-0.038060233, -0.98078525, 0.19134171), (5.551115e-17, -1, -2.220446e-16), (5.551115e-17, -1, -2.220446e-16), (-0.038060233, -0.98078525, 0.19134171), (-0.074657835, -0.98078525, 0.18023996), (1.110223e-16, -1, -2.220446e-16), (1.110223e-16, -1, -2.220446e-16), (-0.074657835, -0.98078525, 0.18023996), (-0.108386375, -0.98078525, 0.16221167), (2.220446e-16, -1, -2.220446e-16), (2.220446e-16, -1, -2.220446e-16), (-0.108386375, -0.98078525, 0.16221167), (-0.13794969, -0.98078525, 0.13794969), (2.220446e-16, -1, -2.220446e-16), (2.220446e-16, -1, -2.220446e-16), (-0.13794969, -0.98078525, 0.13794969), (-0.16221167, -0.98078525, 0.108386375), (2.220446e-16, -1, -2.220446e-16), (2.220446e-16, -1, -2.220446e-16), (-0.16221167, -0.98078525, 0.108386375), (-0.18023996, -0.98078525, 0.074657835), (2.220446e-16, -1, -1.110223e-16), (2.220446e-16, -1, -1.110223e-16), (-0.18023996, -0.98078525, 0.074657835), (-0.19134171, -0.98078525, 0.038060233), (2.220446e-16, -1, -5.551115e-17), (2.220446e-16, -1, -5.551115e-17), (-0.19134171, -0.98078525, 0.038060233), (-0.19509032, -0.98078525, 2.3891674e-17), (2.220446e-16, -1, -4.9303807e-32), (2.220446e-16, -1, -4.9303807e-32), (-0.19509032, -0.98078525, 2.3891674e-17), (-0.19134171, -0.98078525, -0.038060233), (2.220446e-16, -1, 5.551115e-17), (2.220446e-16, -1, 5.551115e-17), (-0.19134171, -0.98078525, -0.038060233), (-0.18023996, -0.98078525, -0.074657835), (2.220446e-16, -1, 1.110223e-16), (2.220446e-16, -1, 1.110223e-16), (-0.18023996, -0.98078525, -0.074657835), (-0.16221167, -0.98078525, -0.108386375), (2.220446e-16, -1, 2.220446e-16), (2.220446e-16, -1, 2.220446e-16), (-0.16221167, -0.98078525, -0.108386375), (-0.13794969, -0.98078525, -0.13794969), (2.220446e-16, -1, 2.220446e-16), (2.220446e-16, -1, 2.220446e-16), (-0.13794969, -0.98078525, -0.13794969), (-0.108386375, -0.98078525, -0.16221167), (2.220446e-16, -1, 2.220446e-16), (2.220446e-16, -1, 2.220446e-16), (-0.108386375, -0.98078525, -0.16221167), (-0.074657835, -0.98078525, -0.18023996), (1.110223e-16, -1, 2.220446e-16), (1.110223e-16, -1, 2.220446e-16), (-0.074657835, -0.98078525, -0.18023996), (-0.038060233, -0.98078525, -0.19134171), (5.551115e-17, -1, 2.220446e-16), (5.551115e-17, -1, 2.220446e-16), (-0.038060233, -0.98078525, -0.19134171), (-3.583751e-17, -0.98078525, -0.19509032), (4.9303807e-32, -1, 2.220446e-16), (4.9303807e-32, -1, 2.220446e-16), (-3.583751e-17, -0.98078525, -0.19509032), (0.038060233, -0.98078525, -0.19134171), (-5.551115e-17, -1, 2.220446e-16), (-5.551115e-17, -1, 2.220446e-16), (0.038060233, -0.98078525, -0.19134171), (0.074657835, -0.98078525, -0.18023996), (-1.110223e-16, -1, 2.220446e-16), (-1.110223e-16, -1, 2.220446e-16), (0.074657835, -0.98078525, -0.18023996), (0.108386375, -0.98078525, -0.16221167), (-2.220446e-16, -1, 2.220446e-16), (-2.220446e-16, -1, 2.220446e-16), (0.108386375, -0.98078525, -0.16221167), (0.13794969, -0.98078525, -0.13794969), (-2.220446e-16, -1, 2.220446e-16), (-2.220446e-16, -1, 2.220446e-16), (0.13794969, -0.98078525, -0.13794969), (0.16221167, -0.98078525, -0.108386375), (-2.220446e-16, -1, 2.220446e-16), (-2.220446e-16, -1, 2.220446e-16), (0.16221167, -0.98078525, -0.108386375), (0.18023996, -0.98078525, -0.074657835), (-2.220446e-16, -1, 1.110223e-16), (-2.220446e-16, -1, 1.110223e-16), (0.18023996, -0.98078525, -0.074657835), (0.19134171, -0.98078525, -0.038060233), (-2.220446e-16, -1, 5.551115e-17), (-2.220446e-16, -1, 5.551115e-17), (0.19134171, -0.98078525, -0.038060233), (0.19509032, -0.98078525, 0), (-2.220446e-16, -1, 0), (0.19509032, -0.98078525, 0), (0.38268343, -0.9238795, 0), (0.37533027, -0.9238795, 0.074657835), (0.19134171, -0.98078525, 0.038060233), (0.19134171, -0.98078525, 0.038060233), (0.37533027, -0.9238795, 0.074657835), (0.35355338, -0.9238795, 0.14644662), (0.18023996, -0.98078525, 0.074657835), (0.18023996, -0.98078525, 0.074657835), (0.35355338, -0.9238795, 0.14644662), (0.31818965, -0.9238795, 0.21260752), (0.16221167, -0.98078525, 0.108386375), (0.16221167, -0.98078525, 0.108386375), (0.31818965, -0.9238795, 0.21260752), (0.27059805, -0.9238795, 0.27059805), (0.13794969, -0.98078525, 0.13794969), (0.13794969, -0.98078525, 0.13794969), (0.27059805, -0.9238795, 0.27059805), (0.21260752, -0.9238795, 0.31818965), (0.108386375, -0.98078525, 0.16221167), (0.108386375, -0.98078525, 0.16221167), (0.21260752, -0.9238795, 0.31818965), (0.14644662, -0.9238795, 0.35355338), (0.074657835, -0.98078525, 0.18023996), (0.074657835, -0.98078525, 0.18023996), (0.14644662, -0.9238795, 0.35355338), (0.074657835, -0.9238795, 0.37533027), (0.038060233, -0.98078525, 0.19134171), (0.038060233, -0.98078525, 0.19134171), (0.074657835, -0.9238795, 0.37533027), (2.3432602e-17, -0.9238795, 0.38268343), (1.1945837e-17, -0.98078525, 0.19509032), (1.1945837e-17, -0.98078525, 0.19509032), (2.3432602e-17, -0.9238795, 0.38268343), (-0.074657835, -0.9238795, 0.37533027), (-0.038060233, -0.98078525, 0.19134171), (-0.038060233, -0.98078525, 0.19134171), (-0.074657835, -0.9238795, 0.37533027), (-0.14644662, -0.9238795, 0.35355338), (-0.074657835, -0.98078525, 0.18023996), (-0.074657835, -0.98078525, 0.18023996), (-0.14644662, -0.9238795, 0.35355338), (-0.21260752, -0.9238795, 0.31818965), (-0.108386375, -0.98078525, 0.16221167), (-0.108386375, -0.98078525, 0.16221167), (-0.21260752, -0.9238795, 0.31818965), (-0.27059805, -0.9238795, 0.27059805), (-0.13794969, -0.98078525, 0.13794969), (-0.13794969, -0.98078525, 0.13794969), (-0.27059805, -0.9238795, 0.27059805), (-0.31818965, -0.9238795, 0.21260752), (-0.16221167, -0.98078525, 0.108386375), (-0.16221167, -0.98078525, 0.108386375), (-0.31818965, -0.9238795, 0.21260752), (-0.35355338, -0.9238795, 0.14644662), (-0.18023996, -0.98078525, 0.074657835), (-0.18023996, -0.98078525, 0.074657835), (-0.35355338, -0.9238795, 0.14644662), (-0.37533027, -0.9238795, 0.074657835), (-0.19134171, -0.98078525, 0.038060233), (-0.19134171, -0.98078525, 0.038060233), (-0.37533027, -0.9238795, 0.074657835), (-0.38268343, -0.9238795, 4.6865205e-17), (-0.19509032, -0.98078525, 2.3891674e-17), (-0.19509032, -0.98078525, 2.3891674e-17), (-0.38268343, -0.9238795, 4.6865205e-17), (-0.37533027, -0.9238795, -0.074657835), (-0.19134171, -0.98078525, -0.038060233), (-0.19134171, -0.98078525, -0.038060233), (-0.37533027, -0.9238795, -0.074657835), (-0.35355338, -0.9238795, -0.14644662), (-0.18023996, -0.98078525, -0.074657835), (-0.18023996, -0.98078525, -0.074657835), (-0.35355338, -0.9238795, -0.14644662), (-0.31818965, -0.9238795, -0.21260752), (-0.16221167, -0.98078525, -0.108386375), (-0.16221167, -0.98078525, -0.108386375), (-0.31818965, -0.9238795, -0.21260752), (-0.27059805, -0.9238795, -0.27059805), (-0.13794969, -0.98078525, -0.13794969), (-0.13794969, -0.98078525, -0.13794969), (-0.27059805, -0.9238795, -0.27059805), (-0.21260752, -0.9238795, -0.31818965), (-0.108386375, -0.98078525, -0.16221167), (-0.108386375, -0.98078525, -0.16221167), (-0.21260752, -0.9238795, -0.31818965), (-0.14644662, -0.9238795, -0.35355338), (-0.074657835, -0.98078525, -0.18023996), (-0.074657835, -0.98078525, -0.18023996), (-0.14644662, -0.9238795, -0.35355338), (-0.074657835, -0.9238795, -0.37533027), (-0.038060233, -0.98078525, -0.19134171), (-0.038060233, -0.98078525, -0.19134171), (-0.074657835, -0.9238795, -0.37533027), (-7.0297805e-17, -0.9238795, -0.38268343), (-3.583751e-17, -0.98078525, -0.19509032), (-3.583751e-17, -0.98078525, -0.19509032), (-7.0297805e-17, -0.9238795, -0.38268343), (0.074657835, -0.9238795, -0.37533027), (0.038060233, -0.98078525, -0.19134171), (0.038060233, -0.98078525, -0.19134171), (0.074657835, -0.9238795, -0.37533027), (0.14644662, -0.9238795, -0.35355338), (0.074657835, -0.98078525, -0.18023996), (0.074657835, -0.98078525, -0.18023996), (0.14644662, -0.9238795, -0.35355338), (0.21260752, -0.9238795, -0.31818965), (0.108386375, -0.98078525, -0.16221167), (0.108386375, -0.98078525, -0.16221167), (0.21260752, -0.9238795, -0.31818965), (0.27059805, -0.9238795, -0.27059805), (0.13794969, -0.98078525, -0.13794969), (0.13794969, -0.98078525, -0.13794969), (0.27059805, -0.9238795, -0.27059805), (0.31818965, -0.9238795, -0.21260752), (0.16221167, -0.98078525, -0.108386375), (0.16221167, -0.98078525, -0.108386375), (0.31818965, -0.9238795, -0.21260752), (0.35355338, -0.9238795, -0.14644662), (0.18023996, -0.98078525, -0.074657835), (0.18023996, -0.98078525, -0.074657835), (0.35355338, -0.9238795, -0.14644662), (0.37533027, -0.9238795, -0.074657835), (0.19134171, -0.98078525, -0.038060233), (0.19134171, -0.98078525, -0.038060233), (0.37533027, -0.9238795, -0.074657835), (0.38268343, -0.9238795, 0), (0.19509032, -0.98078525, 0), (0.38268343, -0.9238795, 0), (0.55557024, -0.8314696, 0), (0.5448951, -0.8314696, 0.108386375), (0.37533027, -0.9238795, 0.074657835), (0.37533027, -0.9238795, 0.074657835), (0.5448951, -0.8314696, 0.108386375), (0.51328, -0.8314696, 0.21260752), (0.35355338, -0.9238795, 0.14644662), (0.35355338, -0.9238795, 0.14644662), (0.51328, -0.8314696, 0.21260752), (0.46193975, -0.8314696, 0.30865827), (0.31818965, -0.9238795, 0.21260752), (0.31818965, -0.9238795, 0.21260752), (0.46193975, -0.8314696, 0.30865827), (0.39284748, -0.8314696, 0.39284748), (0.27059805, -0.9238795, 0.27059805), (0.27059805, -0.9238795, 0.27059805), (0.39284748, -0.8314696, 0.39284748), (0.30865827, -0.8314696, 0.46193975), (0.21260752, -0.9238795, 0.31818965), (0.21260752, -0.9238795, 0.31818965), (0.30865827, -0.8314696, 0.46193975), (0.21260752, -0.8314696, 0.51328), (0.14644662, -0.9238795, 0.35355338), (0.14644662, -0.9238795, 0.35355338), (0.21260752, -0.8314696, 0.51328), (0.108386375, -0.8314696, 0.5448951), (0.074657835, -0.9238795, 0.37533027), (0.074657835, -0.9238795, 0.37533027), (0.108386375, -0.8314696, 0.5448951), (3.4018865e-17, -0.8314696, 0.55557024), (2.3432602e-17, -0.9238795, 0.38268343), (2.3432602e-17, -0.9238795, 0.38268343), (3.4018865e-17, -0.8314696, 0.55557024), (-0.108386375, -0.8314696, 0.5448951), (-0.074657835, -0.9238795, 0.37533027), (-0.074657835, -0.9238795, 0.37533027), (-0.108386375, -0.8314696, 0.5448951), (-0.21260752, -0.8314696, 0.51328), (-0.14644662, -0.9238795, 0.35355338), (-0.14644662, -0.9238795, 0.35355338), (-0.21260752, -0.8314696, 0.51328), (-0.30865827, -0.8314696, 0.46193975), (-0.21260752, -0.9238795, 0.31818965), (-0.21260752, -0.9238795, 0.31818965), (-0.30865827, -0.8314696, 0.46193975), (-0.39284748, -0.8314696, 0.39284748), (-0.27059805, -0.9238795, 0.27059805), (-0.27059805, -0.9238795, 0.27059805), (-0.39284748, -0.8314696, 0.39284748), (-0.46193975, -0.8314696, 0.30865827), (-0.31818965, -0.9238795, 0.21260752), (-0.31818965, -0.9238795, 0.21260752), (-0.46193975, -0.8314696, 0.30865827), (-0.51328, -0.8314696, 0.21260752), (-0.35355338, -0.9238795, 0.14644662), (-0.35355338, -0.9238795, 0.14644662), (-0.51328, -0.8314696, 0.21260752), (-0.5448951, -0.8314696, 0.108386375), (-0.37533027, -0.9238795, 0.074657835), (-0.37533027, -0.9238795, 0.074657835), (-0.5448951, -0.8314696, 0.108386375), (-0.55557024, -0.8314696, 6.803773e-17), (-0.38268343, -0.9238795, 4.6865205e-17), (-0.38268343, -0.9238795, 4.6865205e-17), (-0.55557024, -0.8314696, 6.803773e-17), (-0.5448951, -0.8314696, -0.108386375), (-0.37533027, -0.9238795, -0.074657835), (-0.37533027, -0.9238795, -0.074657835), (-0.5448951, -0.8314696, -0.108386375), (-0.51328, -0.8314696, -0.21260752), (-0.35355338, -0.9238795, -0.14644662), (-0.35355338, -0.9238795, -0.14644662), (-0.51328, -0.8314696, -0.21260752), (-0.46193975, -0.8314696, -0.30865827), (-0.31818965, -0.9238795, -0.21260752), (-0.31818965, -0.9238795, -0.21260752), (-0.46193975, -0.8314696, -0.30865827), (-0.39284748, -0.8314696, -0.39284748), (-0.27059805, -0.9238795, -0.27059805), (-0.27059805, -0.9238795, -0.27059805), (-0.39284748, -0.8314696, -0.39284748), (-0.30865827, -0.8314696, -0.46193975), (-0.21260752, -0.9238795, -0.31818965), (-0.21260752, -0.9238795, -0.31818965), (-0.30865827, -0.8314696, -0.46193975), (-0.21260752, -0.8314696, -0.51328), (-0.14644662, -0.9238795, -0.35355338), (-0.14644662, -0.9238795, -0.35355338), (-0.21260752, -0.8314696, -0.51328), (-0.108386375, -0.8314696, -0.5448951), (-0.074657835, -0.9238795, -0.37533027), (-0.074657835, -0.9238795, -0.37533027), (-0.108386375, -0.8314696, -0.5448951), (-1.020566e-16, -0.8314696, -0.55557024), (-7.0297805e-17, -0.9238795, -0.38268343), (-7.0297805e-17, -0.9238795, -0.38268343), (-1.020566e-16, -0.8314696, -0.55557024), (0.108386375, -0.8314696, -0.5448951), (0.074657835, -0.9238795, -0.37533027), (0.074657835, -0.9238795, -0.37533027), (0.108386375, -0.8314696, -0.5448951), (0.21260752, -0.8314696, -0.51328), (0.14644662, -0.9238795, -0.35355338), (0.14644662, -0.9238795, -0.35355338), (0.21260752, -0.8314696, -0.51328), (0.30865827, -0.8314696, -0.46193975), (0.21260752, -0.9238795, -0.31818965), (0.21260752, -0.9238795, -0.31818965), (0.30865827, -0.8314696, -0.46193975), (0.39284748, -0.8314696, -0.39284748), (0.27059805, -0.9238795, -0.27059805), (0.27059805, -0.9238795, -0.27059805), (0.39284748, -0.8314696, -0.39284748), (0.46193975, -0.8314696, -0.30865827), (0.31818965, -0.9238795, -0.21260752), (0.31818965, -0.9238795, -0.21260752), (0.46193975, -0.8314696, -0.30865827), (0.51328, -0.8314696, -0.21260752), (0.35355338, -0.9238795, -0.14644662), (0.35355338, -0.9238795, -0.14644662), (0.51328, -0.8314696, -0.21260752), (0.5448951, -0.8314696, -0.108386375), (0.37533027, -0.9238795, -0.074657835), (0.37533027, -0.9238795, -0.074657835), (0.5448951, -0.8314696, -0.108386375), (0.55557024, -0.8314696, 0), (0.38268343, -0.9238795, 0), (0.55557024, -0.8314696, 0), (0.70710677, -0.70710677, 0), (0.69351995, -0.70710677, 0.13794969), (0.5448951, -0.8314696, 0.108386375), (0.5448951, -0.8314696, 0.108386375), (0.69351995, -0.70710677, 0.13794969), (0.6532815, -0.70710677, 0.27059805), (0.51328, -0.8314696, 0.21260752), (0.51328, -0.8314696, 0.21260752), (0.6532815, -0.70710677, 0.27059805), (0.5879378, -0.70710677, 0.39284748), (0.46193975, -0.8314696, 0.30865827), (0.46193975, -0.8314696, 0.30865827), (0.5879378, -0.70710677, 0.39284748), (0.5, -0.70710677, 0.5), (0.39284748, -0.8314696, 0.39284748), (0.39284748, -0.8314696, 0.39284748), (0.5, -0.70710677, 0.5), (0.39284748, -0.70710677, 0.5879378), (0.30865827, -0.8314696, 0.46193975), (0.30865827, -0.8314696, 0.46193975), (0.39284748, -0.70710677, 0.5879378), (0.27059805, -0.70710677, 0.6532815), (0.21260752, -0.8314696, 0.51328), (0.21260752, -0.8314696, 0.51328), (0.27059805, -0.70710677, 0.6532815), (0.13794969, -0.70710677, 0.69351995), (0.108386375, -0.8314696, 0.5448951), (0.108386375, -0.8314696, 0.5448951), (0.13794969, -0.70710677, 0.69351995), (4.3297803e-17, -0.70710677, 0.70710677), (3.4018865e-17, -0.8314696, 0.55557024), (3.4018865e-17, -0.8314696, 0.55557024), (4.3297803e-17, -0.70710677, 0.70710677), (-0.13794969, -0.70710677, 0.69351995), (-0.108386375, -0.8314696, 0.5448951), (-0.108386375, -0.8314696, 0.5448951), (-0.13794969, -0.70710677, 0.69351995), (-0.27059805, -0.70710677, 0.6532815), (-0.21260752, -0.8314696, 0.51328), (-0.21260752, -0.8314696, 0.51328), (-0.27059805, -0.70710677, 0.6532815), (-0.39284748, -0.70710677, 0.5879378), (-0.30865827, -0.8314696, 0.46193975), (-0.30865827, -0.8314696, 0.46193975), (-0.39284748, -0.70710677, 0.5879378), (-0.5, -0.70710677, 0.5), (-0.39284748, -0.8314696, 0.39284748), (-0.39284748, -0.8314696, 0.39284748), (-0.5, -0.70710677, 0.5), (-0.5879378, -0.70710677, 0.39284748), (-0.46193975, -0.8314696, 0.30865827), (-0.46193975, -0.8314696, 0.30865827), (-0.5879378, -0.70710677, 0.39284748), (-0.6532815, -0.70710677, 0.27059805), (-0.51328, -0.8314696, 0.21260752), (-0.51328, -0.8314696, 0.21260752), (-0.6532815, -0.70710677, 0.27059805), (-0.69351995, -0.70710677, 0.13794969), (-0.5448951, -0.8314696, 0.108386375), (-0.5448951, -0.8314696, 0.108386375), (-0.69351995, -0.70710677, 0.13794969), (-0.70710677, -0.70710677, 8.6595606e-17), (-0.55557024, -0.8314696, 6.803773e-17), (-0.55557024, -0.8314696, 6.803773e-17), (-0.70710677, -0.70710677, 8.6595606e-17), (-0.69351995, -0.70710677, -0.13794969), (-0.5448951, -0.8314696, -0.108386375), (-0.5448951, -0.8314696, -0.108386375), (-0.69351995, -0.70710677, -0.13794969), (-0.6532815, -0.70710677, -0.27059805), (-0.51328, -0.8314696, -0.21260752), (-0.51328, -0.8314696, -0.21260752), (-0.6532815, -0.70710677, -0.27059805), (-0.5879378, -0.70710677, -0.39284748), (-0.46193975, -0.8314696, -0.30865827), (-0.46193975, -0.8314696, -0.30865827), (-0.5879378, -0.70710677, -0.39284748), (-0.5, -0.70710677, -0.5), (-0.39284748, -0.8314696, -0.39284748), (-0.39284748, -0.8314696, -0.39284748), (-0.5, -0.70710677, -0.5), (-0.39284748, -0.70710677, -0.5879378), (-0.30865827, -0.8314696, -0.46193975), (-0.30865827, -0.8314696, -0.46193975), (-0.39284748, -0.70710677, -0.5879378), (-0.27059805, -0.70710677, -0.6532815), (-0.21260752, -0.8314696, -0.51328), (-0.21260752, -0.8314696, -0.51328), (-0.27059805, -0.70710677, -0.6532815), (-0.13794969, -0.70710677, -0.69351995), (-0.108386375, -0.8314696, -0.5448951), (-0.108386375, -0.8314696, -0.5448951), (-0.13794969, -0.70710677, -0.69351995), (-1.298934e-16, -0.70710677, -0.70710677), (-1.020566e-16, -0.8314696, -0.55557024), (-1.020566e-16, -0.8314696, -0.55557024), (-1.298934e-16, -0.70710677, -0.70710677), (0.13794969, -0.70710677, -0.69351995), (0.108386375, -0.8314696, -0.5448951), (0.108386375, -0.8314696, -0.5448951), (0.13794969, -0.70710677, -0.69351995), (0.27059805, -0.70710677, -0.6532815), (0.21260752, -0.8314696, -0.51328), (0.21260752, -0.8314696, -0.51328), (0.27059805, -0.70710677, -0.6532815), (0.39284748, -0.70710677, -0.5879378), (0.30865827, -0.8314696, -0.46193975), (0.30865827, -0.8314696, -0.46193975), (0.39284748, -0.70710677, -0.5879378), (0.5, -0.70710677, -0.5), (0.39284748, -0.8314696, -0.39284748), (0.39284748, -0.8314696, -0.39284748), (0.5, -0.70710677, -0.5), (0.5879378, -0.70710677, -0.39284748), (0.46193975, -0.8314696, -0.30865827), (0.46193975, -0.8314696, -0.30865827), (0.5879378, -0.70710677, -0.39284748), (0.6532815, -0.70710677, -0.27059805), (0.51328, -0.8314696, -0.21260752), (0.51328, -0.8314696, -0.21260752), (0.6532815, -0.70710677, -0.27059805), (0.69351995, -0.70710677, -0.13794969), (0.5448951, -0.8314696, -0.108386375), (0.5448951, -0.8314696, -0.108386375), (0.69351995, -0.70710677, -0.13794969), (0.70710677, -0.70710677, 0), (0.55557024, -0.8314696, 0), (0.70710677, -0.70710677, 0), (0.8314696, -0.55557024, 0), (0.81549317, -0.55557024, 0.16221167), (0.69351995, -0.70710677, 0.13794969), (0.69351995, -0.70710677, 0.13794969), (0.81549317, -0.55557024, 0.16221167), (0.76817775, -0.55557024, 0.31818965), (0.6532815, -0.70710677, 0.27059805), (0.6532815, -0.70710677, 0.27059805), (0.76817775, -0.55557024, 0.31818965), (0.6913417, -0.55557024, 0.46193975), (0.5879378, -0.70710677, 0.39284748), (0.5879378, -0.70710677, 0.39284748), (0.6913417, -0.55557024, 0.46193975), (0.5879378, -0.55557024, 0.5879378), (0.5, -0.70710677, 0.5), (0.5, -0.70710677, 0.5), (0.5879378, -0.55557024, 0.5879378), (0.46193975, -0.55557024, 0.6913417), (0.39284748, -0.70710677, 0.5879378), (0.39284748, -0.70710677, 0.5879378), (0.46193975, -0.55557024, 0.6913417), (0.31818965, -0.55557024, 0.76817775), (0.27059805, -0.70710677, 0.6532815), (0.27059805, -0.70710677, 0.6532815), (0.31818965, -0.55557024, 0.76817775), (0.16221167, -0.55557024, 0.81549317), (0.13794969, -0.70710677, 0.69351995), (0.13794969, -0.70710677, 0.69351995), (0.16221167, -0.55557024, 0.81549317), (5.091283e-17, -0.55557024, 0.8314696), (4.3297803e-17, -0.70710677, 0.70710677), (4.3297803e-17, -0.70710677, 0.70710677), (5.091283e-17, -0.55557024, 0.8314696), (-0.16221167, -0.55557024, 0.81549317), (-0.13794969, -0.70710677, 0.69351995), (-0.13794969, -0.70710677, 0.69351995), (-0.16221167, -0.55557024, 0.81549317), (-0.31818965, -0.55557024, 0.76817775), (-0.27059805, -0.70710677, 0.6532815), (-0.27059805, -0.70710677, 0.6532815), (-0.31818965, -0.55557024, 0.76817775), (-0.46193975, -0.55557024, 0.6913417), (-0.39284748, -0.70710677, 0.5879378), (-0.39284748, -0.70710677, 0.5879378), (-0.46193975, -0.55557024, 0.6913417), (-0.5879378, -0.55557024, 0.5879378), (-0.5, -0.70710677, 0.5), (-0.5, -0.70710677, 0.5), (-0.5879378, -0.55557024, 0.5879378), (-0.6913417, -0.55557024, 0.46193975), (-0.5879378, -0.70710677, 0.39284748), (-0.5879378, -0.70710677, 0.39284748), (-0.6913417, -0.55557024, 0.46193975), (-0.76817775, -0.55557024, 0.31818965), (-0.6532815, -0.70710677, 0.27059805), (-0.6532815, -0.70710677, 0.27059805), (-0.76817775, -0.55557024, 0.31818965), (-0.81549317, -0.55557024, 0.16221167), (-0.69351995, -0.70710677, 0.13794969), (-0.69351995, -0.70710677, 0.13794969), (-0.81549317, -0.55557024, 0.16221167), (-0.8314696, -0.55557024, 1.0182566e-16), (-0.70710677, -0.70710677, 8.6595606e-17), (-0.70710677, -0.70710677, 8.6595606e-17), (-0.8314696, -0.55557024, 1.0182566e-16), (-0.81549317, -0.55557024, -0.16221167), (-0.69351995, -0.70710677, -0.13794969), (-0.69351995, -0.70710677, -0.13794969), (-0.81549317, -0.55557024, -0.16221167), (-0.76817775, -0.55557024, -0.31818965), (-0.6532815, -0.70710677, -0.27059805), (-0.6532815, -0.70710677, -0.27059805), (-0.76817775, -0.55557024, -0.31818965), (-0.6913417, -0.55557024, -0.46193975), (-0.5879378, -0.70710677, -0.39284748), (-0.5879378, -0.70710677, -0.39284748), (-0.6913417, -0.55557024, -0.46193975), (-0.5879378, -0.55557024, -0.5879378), (-0.5, -0.70710677, -0.5), (-0.5, -0.70710677, -0.5), (-0.5879378, -0.55557024, -0.5879378), (-0.46193975, -0.55557024, -0.6913417), (-0.39284748, -0.70710677, -0.5879378), (-0.39284748, -0.70710677, -0.5879378), (-0.46193975, -0.55557024, -0.6913417), (-0.31818965, -0.55557024, -0.76817775), (-0.27059805, -0.70710677, -0.6532815), (-0.27059805, -0.70710677, -0.6532815), (-0.31818965, -0.55557024, -0.76817775), (-0.16221167, -0.55557024, -0.81549317), (-0.13794969, -0.70710677, -0.69351995), (-0.13794969, -0.70710677, -0.69351995), (-0.16221167, -0.55557024, -0.81549317), (-1.5273849e-16, -0.55557024, -0.8314696), (-1.298934e-16, -0.70710677, -0.70710677), (-1.298934e-16, -0.70710677, -0.70710677), (-1.5273849e-16, -0.55557024, -0.8314696), (0.16221167, -0.55557024, -0.81549317), (0.13794969, -0.70710677, -0.69351995), (0.13794969, -0.70710677, -0.69351995), (0.16221167, -0.55557024, -0.81549317), (0.31818965, -0.55557024, -0.76817775), (0.27059805, -0.70710677, -0.6532815), (0.27059805, -0.70710677, -0.6532815), (0.31818965, -0.55557024, -0.76817775), (0.46193975, -0.55557024, -0.6913417), (0.39284748, -0.70710677, -0.5879378), (0.39284748, -0.70710677, -0.5879378), (0.46193975, -0.55557024, -0.6913417), (0.5879378, -0.55557024, -0.5879378), (0.5, -0.70710677, -0.5), (0.5, -0.70710677, -0.5), (0.5879378, -0.55557024, -0.5879378), (0.6913417, -0.55557024, -0.46193975), (0.5879378, -0.70710677, -0.39284748), (0.5879378, -0.70710677, -0.39284748), (0.6913417, -0.55557024, -0.46193975), (0.76817775, -0.55557024, -0.31818965), (0.6532815, -0.70710677, -0.27059805), (0.6532815, -0.70710677, -0.27059805), (0.76817775, -0.55557024, -0.31818965), (0.81549317, -0.55557024, -0.16221167), (0.69351995, -0.70710677, -0.13794969), (0.69351995, -0.70710677, -0.13794969), (0.81549317, -0.55557024, -0.16221167), (0.8314696, -0.55557024, 0), (0.70710677, -0.70710677, 0), (0.8314696, -0.55557024, 0), (0.9238795, -0.38268343, 0), (0.90612745, -0.38268343, 0.18023996), (0.81549317, -0.55557024, 0.16221167), (0.81549317, -0.55557024, 0.16221167), (0.90612745, -0.38268343, 0.18023996), (0.8535534, -0.38268343, 0.35355338), (0.76817775, -0.55557024, 0.31818965), (0.76817775, -0.55557024, 0.31818965), (0.8535534, -0.38268343, 0.35355338), (0.76817775, -0.38268343, 0.51328), (0.6913417, -0.55557024, 0.46193975), (0.6913417, -0.55557024, 0.46193975), (0.76817775, -0.38268343, 0.51328), (0.6532815, -0.38268343, 0.6532815), (0.5879378, -0.55557024, 0.5879378), (0.5879378, -0.55557024, 0.5879378), (0.6532815, -0.38268343, 0.6532815), (0.51328, -0.38268343, 0.76817775), (0.46193975, -0.55557024, 0.6913417), (0.46193975, -0.55557024, 0.6913417), (0.51328, -0.38268343, 0.76817775), (0.35355338, -0.38268343, 0.8535534), (0.31818965, -0.55557024, 0.76817775), (0.31818965, -0.55557024, 0.76817775), (0.35355338, -0.38268343, 0.8535534), (0.18023996, -0.38268343, 0.90612745), (0.16221167, -0.55557024, 0.81549317), (0.16221167, -0.55557024, 0.81549317), (0.18023996, -0.38268343, 0.90612745), (5.6571306e-17, -0.38268343, 0.9238795), (5.091283e-17, -0.55557024, 0.8314696), (5.091283e-17, -0.55557024, 0.8314696), (5.6571306e-17, -0.38268343, 0.9238795), (-0.18023996, -0.38268343, 0.90612745), (-0.16221167, -0.55557024, 0.81549317), (-0.16221167, -0.55557024, 0.81549317), (-0.18023996, -0.38268343, 0.90612745), (-0.35355338, -0.38268343, 0.8535534), (-0.31818965, -0.55557024, 0.76817775), (-0.31818965, -0.55557024, 0.76817775), (-0.35355338, -0.38268343, 0.8535534), (-0.51328, -0.38268343, 0.76817775), (-0.46193975, -0.55557024, 0.6913417), (-0.46193975, -0.55557024, 0.6913417), (-0.51328, -0.38268343, 0.76817775), (-0.6532815, -0.38268343, 0.6532815), (-0.5879378, -0.55557024, 0.5879378), (-0.5879378, -0.55557024, 0.5879378), (-0.6532815, -0.38268343, 0.6532815), (-0.76817775, -0.38268343, 0.51328), (-0.6913417, -0.55557024, 0.46193975), (-0.6913417, -0.55557024, 0.46193975), (-0.76817775, -0.38268343, 0.51328), (-0.8535534, -0.38268343, 0.35355338), (-0.76817775, -0.55557024, 0.31818965), (-0.76817775, -0.55557024, 0.31818965), (-0.8535534, -0.38268343, 0.35355338), (-0.90612745, -0.38268343, 0.18023996), (-0.81549317, -0.55557024, 0.16221167), (-0.81549317, -0.55557024, 0.16221167), (-0.90612745, -0.38268343, 0.18023996), (-0.9238795, -0.38268343, 1.1314261e-16), (-0.8314696, -0.55557024, 1.0182566e-16), (-0.8314696, -0.55557024, 1.0182566e-16), (-0.9238795, -0.38268343, 1.1314261e-16), (-0.90612745, -0.38268343, -0.18023996), (-0.81549317, -0.55557024, -0.16221167), (-0.81549317, -0.55557024, -0.16221167), (-0.90612745, -0.38268343, -0.18023996), (-0.8535534, -0.38268343, -0.35355338), (-0.76817775, -0.55557024, -0.31818965), (-0.76817775, -0.55557024, -0.31818965), (-0.8535534, -0.38268343, -0.35355338), (-0.76817775, -0.38268343, -0.51328), (-0.6913417, -0.55557024, -0.46193975), (-0.6913417, -0.55557024, -0.46193975), (-0.76817775, -0.38268343, -0.51328), (-0.6532815, -0.38268343, -0.6532815), (-0.5879378, -0.55557024, -0.5879378), (-0.5879378, -0.55557024, -0.5879378), (-0.6532815, -0.38268343, -0.6532815), (-0.51328, -0.38268343, -0.76817775), (-0.46193975, -0.55557024, -0.6913417), (-0.46193975, -0.55557024, -0.6913417), (-0.51328, -0.38268343, -0.76817775), (-0.35355338, -0.38268343, -0.8535534), (-0.31818965, -0.55557024, -0.76817775), (-0.31818965, -0.55557024, -0.76817775), (-0.35355338, -0.38268343, -0.8535534), (-0.18023996, -0.38268343, -0.90612745), (-0.16221167, -0.55557024, -0.81549317), (-0.16221167, -0.55557024, -0.81549317), (-0.18023996, -0.38268343, -0.90612745), (-1.6971392e-16, -0.38268343, -0.9238795), (-1.5273849e-16, -0.55557024, -0.8314696), (-1.5273849e-16, -0.55557024, -0.8314696), (-1.6971392e-16, -0.38268343, -0.9238795), (0.18023996, -0.38268343, -0.90612745), (0.16221167, -0.55557024, -0.81549317), (0.16221167, -0.55557024, -0.81549317), (0.18023996, -0.38268343, -0.90612745), (0.35355338, -0.38268343, -0.8535534), (0.31818965, -0.55557024, -0.76817775), (0.31818965, -0.55557024, -0.76817775), (0.35355338, -0.38268343, -0.8535534), (0.51328, -0.38268343, -0.76817775), (0.46193975, -0.55557024, -0.6913417), (0.46193975, -0.55557024, -0.6913417), (0.51328, -0.38268343, -0.76817775), (0.6532815, -0.38268343, -0.6532815), (0.5879378, -0.55557024, -0.5879378), (0.5879378, -0.55557024, -0.5879378), (0.6532815, -0.38268343, -0.6532815), (0.76817775, -0.38268343, -0.51328), (0.6913417, -0.55557024, -0.46193975), (0.6913417, -0.55557024, -0.46193975), (0.76817775, -0.38268343, -0.51328), (0.8535534, -0.38268343, -0.35355338), (0.76817775, -0.55557024, -0.31818965), (0.76817775, -0.55557024, -0.31818965), (0.8535534, -0.38268343, -0.35355338), (0.90612745, -0.38268343, -0.18023996), (0.81549317, -0.55557024, -0.16221167), (0.81549317, -0.55557024, -0.16221167), (0.90612745, -0.38268343, -0.18023996), (0.9238795, -0.38268343, 0), (0.8314696, -0.55557024, 0), (0.9238795, -0.38268343, 0), (0.98078525, -0.19509032, 0), (0.96193975, -0.19509032, 0.19134171), (0.90612745, -0.38268343, 0.18023996), (0.90612745, -0.38268343, 0.18023996), (0.96193975, -0.19509032, 0.19134171), (0.90612745, -0.19509032, 0.37533027), (0.8535534, -0.38268343, 0.35355338), (0.8535534, -0.38268343, 0.35355338), (0.90612745, -0.19509032, 0.37533027), (0.81549317, -0.19509032, 0.5448951), (0.76817775, -0.38268343, 0.51328), (0.76817775, -0.38268343, 0.51328), (0.81549317, -0.19509032, 0.5448951), (0.69351995, -0.19509032, 0.69351995), (0.6532815, -0.38268343, 0.6532815), (0.6532815, -0.38268343, 0.6532815), (0.69351995, -0.19509032, 0.69351995), (0.5448951, -0.19509032, 0.81549317), (0.51328, -0.38268343, 0.76817775), (0.51328, -0.38268343, 0.76817775), (0.5448951, -0.19509032, 0.81549317), (0.37533027, -0.19509032, 0.90612745), (0.35355338, -0.38268343, 0.8535534), (0.35355338, -0.38268343, 0.8535534), (0.37533027, -0.19509032, 0.90612745), (0.19134171, -0.19509032, 0.96193975), (0.18023996, -0.38268343, 0.90612745), (0.18023996, -0.38268343, 0.90612745), (0.19134171, -0.19509032, 0.96193975), (6.005578e-17, -0.19509032, 0.98078525), (5.6571306e-17, -0.38268343, 0.9238795), (5.6571306e-17, -0.38268343, 0.9238795), (6.005578e-17, -0.19509032, 0.98078525), (-0.19134171, -0.19509032, 0.96193975), (-0.18023996, -0.38268343, 0.90612745), (-0.18023996, -0.38268343, 0.90612745), (-0.19134171, -0.19509032, 0.96193975), (-0.37533027, -0.19509032, 0.90612745), (-0.35355338, -0.38268343, 0.8535534), (-0.35355338, -0.38268343, 0.8535534), (-0.37533027, -0.19509032, 0.90612745), (-0.5448951, -0.19509032, 0.81549317), (-0.51328, -0.38268343, 0.76817775), (-0.51328, -0.38268343, 0.76817775), (-0.5448951, -0.19509032, 0.81549317), (-0.69351995, -0.19509032, 0.69351995), (-0.6532815, -0.38268343, 0.6532815), (-0.6532815, -0.38268343, 0.6532815), (-0.69351995, -0.19509032, 0.69351995), (-0.81549317, -0.19509032, 0.5448951), (-0.76817775, -0.38268343, 0.51328), (-0.76817775, -0.38268343, 0.51328), (-0.81549317, -0.19509032, 0.5448951), (-0.90612745, -0.19509032, 0.37533027), (-0.8535534, -0.38268343, 0.35355338), (-0.8535534, -0.38268343, 0.35355338), (-0.90612745, -0.19509032, 0.37533027), (-0.96193975, -0.19509032, 0.19134171), (-0.90612745, -0.38268343, 0.18023996), (-0.90612745, -0.38268343, 0.18023996), (-0.96193975, -0.19509032, 0.19134171), (-0.98078525, -0.19509032, 1.2011156e-16), (-0.9238795, -0.38268343, 1.1314261e-16), (-0.9238795, -0.38268343, 1.1314261e-16), (-0.98078525, -0.19509032, 1.2011156e-16), (-0.96193975, -0.19509032, -0.19134171), (-0.90612745, -0.38268343, -0.18023996), (-0.90612745, -0.38268343, -0.18023996), (-0.96193975, -0.19509032, -0.19134171), (-0.90612745, -0.19509032, -0.37533027), (-0.8535534, -0.38268343, -0.35355338), (-0.8535534, -0.38268343, -0.35355338), (-0.90612745, -0.19509032, -0.37533027), (-0.81549317, -0.19509032, -0.5448951), (-0.76817775, -0.38268343, -0.51328), (-0.76817775, -0.38268343, -0.51328), (-0.81549317, -0.19509032, -0.5448951), (-0.69351995, -0.19509032, -0.69351995), (-0.6532815, -0.38268343, -0.6532815), (-0.6532815, -0.38268343, -0.6532815), (-0.69351995, -0.19509032, -0.69351995), (-0.5448951, -0.19509032, -0.81549317), (-0.51328, -0.38268343, -0.76817775), (-0.51328, -0.38268343, -0.76817775), (-0.5448951, -0.19509032, -0.81549317), (-0.37533027, -0.19509032, -0.90612745), (-0.35355338, -0.38268343, -0.8535534), (-0.35355338, -0.38268343, -0.8535534), (-0.37533027, -0.19509032, -0.90612745), (-0.19134171, -0.19509032, -0.96193975), (-0.18023996, -0.38268343, -0.90612745), (-0.18023996, -0.38268343, -0.90612745), (-0.19134171, -0.19509032, -0.96193975), (-1.8016734e-16, -0.19509032, -0.98078525), (-1.6971392e-16, -0.38268343, -0.9238795), (-1.6971392e-16, -0.38268343, -0.9238795), (-1.8016734e-16, -0.19509032, -0.98078525), (0.19134171, -0.19509032, -0.96193975), (0.18023996, -0.38268343, -0.90612745), (0.18023996, -0.38268343, -0.90612745), (0.19134171, -0.19509032, -0.96193975), (0.37533027, -0.19509032, -0.90612745), (0.35355338, -0.38268343, -0.8535534), (0.35355338, -0.38268343, -0.8535534), (0.37533027, -0.19509032, -0.90612745), (0.5448951, -0.19509032, -0.81549317), (0.51328, -0.38268343, -0.76817775), (0.51328, -0.38268343, -0.76817775), (0.5448951, -0.19509032, -0.81549317), (0.69351995, -0.19509032, -0.69351995), (0.6532815, -0.38268343, -0.6532815), (0.6532815, -0.38268343, -0.6532815), (0.69351995, -0.19509032, -0.69351995), (0.81549317, -0.19509032, -0.5448951), (0.76817775, -0.38268343, -0.51328), (0.76817775, -0.38268343, -0.51328), (0.81549317, -0.19509032, -0.5448951), (0.90612745, -0.19509032, -0.37533027), (0.8535534, -0.38268343, -0.35355338), (0.8535534, -0.38268343, -0.35355338), (0.90612745, -0.19509032, -0.37533027), (0.96193975, -0.19509032, -0.19134171), (0.90612745, -0.38268343, -0.18023996), (0.90612745, -0.38268343, -0.18023996), (0.96193975, -0.19509032, -0.19134171), (0.98078525, -0.19509032, 0), (0.9238795, -0.38268343, 0), (0.98078525, -0.19509032, 0), (1, 0, 0), (0.98078525, 0, 0.19509032), (0.96193975, -0.19509032, 0.19134171), (0.96193975, -0.19509032, 0.19134171), (0.98078525, 0, 0.19509032), (0.9238795, 0, 0.38268343), (0.90612745, -0.19509032, 0.37533027), (0.90612745, -0.19509032, 0.37533027), (0.9238795, 0, 0.38268343), (0.8314696, 0, 0.55557024), (0.81549317, -0.19509032, 0.5448951), (0.81549317, -0.19509032, 0.5448951), (0.8314696, 0, 0.55557024), (0.70710677, 0, 0.70710677), (0.69351995, -0.19509032, 0.69351995), (0.69351995, -0.19509032, 0.69351995), (0.70710677, 0, 0.70710677), (0.55557024, 0, 0.8314696), (0.5448951, -0.19509032, 0.81549317), (0.5448951, -0.19509032, 0.81549317), (0.55557024, 0, 0.8314696), (0.38268343, 0, 0.9238795), (0.37533027, -0.19509032, 0.90612745), (0.37533027, -0.19509032, 0.90612745), (0.38268343, 0, 0.9238795), (0.19509032, 0, 0.98078525), (0.19134171, -0.19509032, 0.96193975), (0.19134171, -0.19509032, 0.96193975), (0.19509032, 0, 0.98078525), (6.123234e-17, 0, 1), (6.005578e-17, -0.19509032, 0.98078525), (6.005578e-17, -0.19509032, 0.98078525), (6.123234e-17, 0, 1), (-0.19509032, 0, 0.98078525), (-0.19134171, -0.19509032, 0.96193975), (-0.19134171, -0.19509032, 0.96193975), (-0.19509032, 0, 0.98078525), (-0.38268343, 0, 0.9238795), (-0.37533027, -0.19509032, 0.90612745), (-0.37533027, -0.19509032, 0.90612745), (-0.38268343, 0, 0.9238795), (-0.55557024, 0, 0.8314696), (-0.5448951, -0.19509032, 0.81549317), (-0.5448951, -0.19509032, 0.81549317), (-0.55557024, 0, 0.8314696), (-0.70710677, 0, 0.70710677), (-0.69351995, -0.19509032, 0.69351995), (-0.69351995, -0.19509032, 0.69351995), (-0.70710677, 0, 0.70710677), (-0.8314696, 0, 0.55557024), (-0.81549317, -0.19509032, 0.5448951), (-0.81549317, -0.19509032, 0.5448951), (-0.8314696, 0, 0.55557024), (-0.9238795, 0, 0.38268343), (-0.90612745, -0.19509032, 0.37533027), (-0.90612745, -0.19509032, 0.37533027), (-0.9238795, 0, 0.38268343), (-0.98078525, 0, 0.19509032), (-0.96193975, -0.19509032, 0.19134171), (-0.96193975, -0.19509032, 0.19134171), (-0.98078525, 0, 0.19509032), (-1, 0, 1.2246469e-16), (-0.98078525, -0.19509032, 1.2011156e-16), (-0.98078525, -0.19509032, 1.2011156e-16), (-1, 0, 1.2246469e-16), (-0.98078525, 0, -0.19509032), (-0.96193975, -0.19509032, -0.19134171), (-0.96193975, -0.19509032, -0.19134171), (-0.98078525, 0, -0.19509032), (-0.9238795, 0, -0.38268343), (-0.90612745, -0.19509032, -0.37533027), (-0.90612745, -0.19509032, -0.37533027), (-0.9238795, 0, -0.38268343), (-0.8314696, 0, -0.55557024), (-0.81549317, -0.19509032, -0.5448951), (-0.81549317, -0.19509032, -0.5448951), (-0.8314696, 0, -0.55557024), (-0.70710677, 0, -0.70710677), (-0.69351995, -0.19509032, -0.69351995), (-0.69351995, -0.19509032, -0.69351995), (-0.70710677, 0, -0.70710677), (-0.55557024, 0, -0.8314696), (-0.5448951, -0.19509032, -0.81549317), (-0.5448951, -0.19509032, -0.81549317), (-0.55557024, 0, -0.8314696), (-0.38268343, 0, -0.9238795), (-0.37533027, -0.19509032, -0.90612745), (-0.37533027, -0.19509032, -0.90612745), (-0.38268343, 0, -0.9238795), (-0.19509032, 0, -0.98078525), (-0.19134171, -0.19509032, -0.96193975), (-0.19134171, -0.19509032, -0.96193975), (-0.19509032, 0, -0.98078525), (-1.8369701e-16, 0, -1), (-1.8016734e-16, -0.19509032, -0.98078525), (-1.8016734e-16, -0.19509032, -0.98078525), (-1.8369701e-16, 0, -1), (0.19509032, 0, -0.98078525), (0.19134171, -0.19509032, -0.96193975), (0.19134171, -0.19509032, -0.96193975), (0.19509032, 0, -0.98078525), (0.38268343, 0, -0.9238795), (0.37533027, -0.19509032, -0.90612745), (0.37533027, -0.19509032, -0.90612745), (0.38268343, 0, -0.9238795), (0.55557024, 0, -0.8314696), (0.5448951, -0.19509032, -0.81549317), (0.5448951, -0.19509032, -0.81549317), (0.55557024, 0, -0.8314696), (0.70710677, 0, -0.70710677), (0.69351995, -0.19509032, -0.69351995), (0.69351995, -0.19509032, -0.69351995), (0.70710677, 0, -0.70710677), (0.8314696, 0, -0.55557024), (0.81549317, -0.19509032, -0.5448951), (0.81549317, -0.19509032, -0.5448951), (0.8314696, 0, -0.55557024), (0.9238795, 0, -0.38268343), (0.90612745, -0.19509032, -0.37533027), (0.90612745, -0.19509032, -0.37533027), (0.9238795, 0, -0.38268343), (0.98078525, 0, -0.19509032), (0.96193975, -0.19509032, -0.19134171), (0.96193975, -0.19509032, -0.19134171), (0.98078525, 0, -0.19509032), (1, 0, 0), (0.98078525, -0.19509032, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(75, 0, 0), (73.5589, 0, 14.631774), (69.29096, 0, 28.701258), (62.36022, 0, 41.667767), (53.03301, 0, 53.03301), (41.667767, 0, 62.36022), (28.701258, 0, 69.29096), (14.631774, 0, 73.5589), (4.5924254e-15, 0, 75), (-14.631774, 0, 73.5589), (-28.701258, 0, 69.29096), (-41.667767, 0, 62.36022), (-53.03301, 0, 53.03301), (-62.36022, 0, 41.667767), (-69.29096, 0, 28.701258), (-73.5589, 0, 14.631774), (-75, 0, 9.184851e-15), (-73.5589, 0, -14.631774), (-69.29096, 0, -28.701258), (-62.36022, 0, -41.667767), (-53.03301, 0, -53.03301), (-41.667767, 0, -62.36022), (-28.701258, 0, -69.29096), (-14.631774, 0, -73.5589), (-1.3777276e-14, 0, -75), (14.631774, 0, -73.5589), (28.701258, 0, -69.29096), (41.667767, 0, -62.36022), (53.03301, 0, -53.03301), (62.36022, 0, -41.667767), (69.29096, 0, -28.701258), (73.5589, 0, -14.631774), (74.51963, 4.877258, 0), (73.08776, 4.877258, 14.538059), (68.84716, 4.877258, 28.51743), (61.960808, 4.877258, 41.40089), (52.693336, 4.877258, 52.693336), (41.40089, 4.877258, 61.960808), (28.51743, 4.877258, 68.84716), (14.538059, 4.877258, 73.08776), (4.5630114e-15, 4.877258, 74.51963), (-14.538059, 4.877258, 73.08776), (-28.51743, 4.877258, 68.84716), (-41.40089, 4.877258, 61.960808), (-52.693336, 4.877258, 52.693336), (-61.960808, 4.877258, 41.40089), (-68.84716, 4.877258, 28.51743), (-73.08776, 4.877258, 14.538059), (-74.51963, 4.877258, 9.126023e-15), (-73.08776, 4.877258, -14.538059), (-68.84716, 4.877258, -28.51743), (-61.960808, 4.877258, -41.40089), (-52.693336, 4.877258, -52.693336), (-41.40089, 4.877258, -61.960808), (-28.51743, 4.877258, -68.84716), (-14.538059, 4.877258, -73.08776), (-1.3689034e-14, 4.877258, -74.51963), (14.538059, 4.877258, -73.08776), (28.51743, 4.877258, -68.84716), (41.40089, 4.877258, -61.960808), (52.693336, 4.877258, -52.693336), (61.960808, 4.877258, -41.40089), (68.84716, 4.877258, -28.51743), (73.08776, 4.877258, -14.538059), (73.096985, 9.567086, 0), (71.69245, 9.567086, 14.260515), (67.532814, 9.567086, 27.973007), (60.777924, 9.567086, 40.61051), (51.687378, 9.567086, 51.687378), (40.61051, 9.567086, 60.777924), (27.973007, 9.567086, 67.532814), (14.260515, 9.567086, 71.69245), (4.4758995e-15, 9.567086, 73.096985), (-14.260515, 9.567086, 71.69245), (-27.973007, 9.567086, 67.532814), (-40.61051, 9.567086, 60.777924), (-51.687378, 9.567086, 51.687378), (-60.777924, 9.567086, 40.61051), (-67.532814, 9.567086, 27.973007), (-71.69245, 9.567086, 14.260515), (-73.096985, 9.567086, 8.951799e-15), (-71.69245, 9.567086, -14.260515), (-67.532814, 9.567086, -27.973007), (-60.777924, 9.567086, -40.61051), (-51.687378, 9.567086, -51.687378), (-40.61051, 9.567086, -60.777924), (-27.973007, 9.567086, -67.532814), (-14.260515, 9.567086, -71.69245), (-1.3427699e-14, 9.567086, -73.096985), (14.260515, 9.567086, -71.69245), (27.973007, 9.567086, -67.532814), (40.61051, 9.567086, -60.777924), (51.687378, 9.567086, -51.687378), (60.777924, 9.567086, -40.61051), (67.532814, 9.567086, -27.973007), (71.69245, 9.567086, -14.260515), (70.78674, 13.889256, 0), (69.42659, 13.889256, 13.809808), (65.39842, 13.889256, 27.088913), (58.857025, 13.889256, 39.327007), (50.053783, 13.889256, 50.053783), (39.327007, 13.889256, 58.857025), (27.088913, 13.889256, 65.39842), (13.809808, 13.889256, 69.42659), (4.334438e-15, 13.889256, 70.78674), (-13.809808, 13.889256, 69.42659), (-27.088913, 13.889256, 65.39842), (-39.327007, 13.889256, 58.857025), (-50.053783, 13.889256, 50.053783), (-58.857025, 13.889256, 39.327007), (-65.39842, 13.889256, 27.088913), (-69.42659, 13.889256, 13.809808), (-70.78674, 13.889256, 8.668876e-15), (-69.42659, 13.889256, -13.809808), (-65.39842, 13.889256, -27.088913), (-58.857025, 13.889256, -39.327007), (-50.053783, 13.889256, -50.053783), (-39.327007, 13.889256, -58.857025), (-27.088913, 13.889256, -65.39842), (-13.809808, 13.889256, -69.42659), (-1.30033135e-14, 13.889256, -70.78674), (13.809808, 13.889256, -69.42659), (27.088913, 13.889256, -65.39842), (39.327007, 13.889256, -58.857025), (50.053783, 13.889256, -50.053783), (58.857025, 13.889256, -39.327007), (65.39842, 13.889256, -27.088913), (69.42659, 13.889256, -13.809808), (67.67767, 17.67767, 0), (66.37726, 17.67767, 13.2032585), (62.526012, 17.67767, 25.899122), (56.271927, 17.67767, 37.599697), (47.85534, 17.67767, 47.85534), (37.599697, 17.67767, 56.271927), (25.899122, 17.67767, 62.526012), (13.2032585, 17.67767, 66.37726), (4.144062e-15, 17.67767, 67.67767), (-13.2032585, 17.67767, 66.37726), (-25.899122, 17.67767, 62.526012), (-37.599697, 17.67767, 56.271927), (-47.85534, 17.67767, 47.85534), (-56.271927, 17.67767, 37.599697), (-62.526012, 17.67767, 25.899122), (-66.37726, 17.67767, 13.2032585), (-67.67767, 17.67767, 8.288124e-15), (-66.37726, 17.67767, -13.2032585), (-62.526012, 17.67767, -25.899122), (-56.271927, 17.67767, -37.599697), (-47.85534, 17.67767, -47.85534), (-37.599697, 17.67767, -56.271927), (-25.899122, 17.67767, -62.526012), (-13.2032585, 17.67767, -66.37726), (-1.2432186e-14, 17.67767, -67.67767), (13.2032585, 17.67767, -66.37726), (25.899122, 17.67767, -62.526012), (37.599697, 17.67767, -56.271927), (47.85534, 17.67767, -47.85534), (56.271927, 17.67767, -37.599697), (62.526012, 17.67767, -25.899122), (66.37726, 17.67767, -13.2032585), (63.889256, 20.786741, 0), (62.66164, 20.786741, 12.464175), (59.025974, 20.786741, 24.44936), (53.121975, 20.786741, 35.49497), (45.176525, 20.786741, 45.176525), (35.49497, 20.786741, 53.121975), (24.44936, 20.786741, 59.025974), (12.464175, 20.786741, 62.66164), (3.9120886e-15, 20.786741, 63.889256), (-12.464175, 20.786741, 62.66164), (-24.44936, 20.786741, 59.025974), (-35.49497, 20.786741, 53.121975), (-45.176525, 20.786741, 45.176525), (-53.121975, 20.786741, 35.49497), (-59.025974, 20.786741, 24.44936), (-62.66164, 20.786741, 12.464175), (-63.889256, 20.786741, 7.824177e-15), (-62.66164, 20.786741, -12.464175), (-59.025974, 20.786741, -24.44936), (-53.121975, 20.786741, -35.49497), (-45.176525, 20.786741, -45.176525), (-35.49497, 20.786741, -53.121975), (-24.44936, 20.786741, -59.025974), (-12.464175, 20.786741, -62.66164), (-1.1736266e-14, 20.786741, -63.889256), (12.464175, 20.786741, -62.66164), (24.44936, 20.786741, -59.025974), (35.49497, 20.786741, -53.121975), (45.176525, 20.786741, -45.176525), (53.121975, 20.786741, -35.49497), (59.025974, 20.786741, -24.44936), (62.66164, 20.786741, -12.464175), (59.567085, 23.096989, 0), (58.42252, 23.096989, 11.620962), (55.03281, 23.096989, 22.795338), (49.52822, 23.096989, 33.0937), (42.12029, 23.096989, 42.12029), (33.0937, 23.096989, 49.52822), (22.795338, 23.096989, 55.03281), (11.620962, 23.096989, 58.42252), (3.647432e-15, 23.096989, 59.567085), (-11.620962, 23.096989, 58.42252), (-22.795338, 23.096989, 55.03281), (-33.0937, 23.096989, 49.52822), (-42.12029, 23.096989, 42.12029), (-49.52822, 23.096989, 33.0937), (-55.03281, 23.096989, 22.795338), (-58.42252, 23.096989, 11.620962), (-59.567085, 23.096989, 7.294864e-15), (-58.42252, 23.096989, -11.620962), (-55.03281, 23.096989, -22.795338), (-49.52822, 23.096989, -33.0937), (-42.12029, 23.096989, -42.12029), (-33.0937, 23.096989, -49.52822), (-22.795338, 23.096989, -55.03281), (-11.620962, 23.096989, -58.42252), (-1.0942296e-14, 23.096989, -59.567085), (11.620962, 23.096989, -58.42252), (22.795338, 23.096989, -55.03281), (33.0937, 23.096989, -49.52822), (42.12029, 23.096989, -42.12029), (49.52822, 23.096989, -33.0937), (55.03281, 23.096989, -22.795338), (58.42252, 23.096989, -11.620962), (54.87726, 24.519632, 0), (53.822807, 24.519632, 10.706022), (50.699974, 24.519632, 21.000618), (45.628773, 24.519632, 30.48817), (38.80408, 24.519632, 38.80408), (30.48817, 24.519632, 45.628773), (21.000618, 24.519632, 50.699974), (10.706022, 24.519632, 53.822807), (3.360263e-15, 24.519632, 54.87726), (-10.706022, 24.519632, 53.822807), (-21.000618, 24.519632, 50.699974), (-30.48817, 24.519632, 45.628773), (-38.80408, 24.519632, 38.80408), (-45.628773, 24.519632, 30.48817), (-50.699974, 24.519632, 21.000618), (-53.822807, 24.519632, 10.706022), (-54.87726, 24.519632, 6.720526e-15), (-53.822807, 24.519632, -10.706022), (-50.699974, 24.519632, -21.000618), (-45.628773, 24.519632, -30.48817), (-38.80408, 24.519632, -38.80408), (-30.48817, 24.519632, -45.628773), (-21.000618, 24.519632, -50.699974), (-10.706022, 24.519632, -53.822807), (-1.0080789e-14, 24.519632, -54.87726), (10.706022, 24.519632, -53.822807), (21.000618, 24.519632, -50.699974), (30.48817, 24.519632, -45.628773), (38.80408, 24.519632, -38.80408), (45.628773, 24.519632, -30.48817), (50.699974, 24.519632, -21.000618), (53.822807, 24.519632, -10.706022), (50, 25, 0), (49.039265, 25, 9.754516), (46.193977, 25, 19.134172), (41.573483, 25, 27.778511), (35.35534, 25, 35.35534), (27.778511, 25, 41.573483), (19.134172, 25, 46.193977), (9.754516, 25, 49.039265), (3.0616169e-15, 25, 50), (-9.754516, 25, 49.039265), (-19.134172, 25, 46.193977), (-27.778511, 25, 41.573483), (-35.35534, 25, 35.35534), (-41.573483, 25, 27.778511), (-46.193977, 25, 19.134172), (-49.039265, 25, 9.754516), (-50, 25, 6.1232338e-15), (-49.039265, 25, -9.754516), (-46.193977, 25, -19.134172), (-41.573483, 25, -27.778511), (-35.35534, 25, -35.35534), (-27.778511, 25, -41.573483), (-19.134172, 25, -46.193977), (-9.754516, 25, -49.039265), (-9.184851e-15, 25, -50), (9.754516, 25, -49.039265), (19.134172, 25, -46.193977), (27.778511, 25, -41.573483), (35.35534, 25, -35.35534), (41.573483, 25, -27.778511), (46.193977, 25, -19.134172), (49.039265, 25, -9.754516), (45.12274, 24.519632, 0), (44.255722, 24.519632, 8.80301), (41.687977, 24.519632, 17.267725), (37.51819, 24.519632, 25.068851), (31.906597, 24.519632, 31.906597), (25.068851, 24.519632, 37.51819), (17.267725, 24.519632, 41.687977), (8.80301, 24.519632, 44.255722), (2.762971e-15, 24.519632, 45.12274), (-8.80301, 24.519632, 44.255722), (-17.267725, 24.519632, 41.687977), (-25.068851, 24.519632, 37.51819), (-31.906597, 24.519632, 31.906597), (-37.51819, 24.519632, 25.068851), (-41.687977, 24.519632, 17.267725), (-44.255722, 24.519632, 8.80301), (-45.12274, 24.519632, 5.525942e-15), (-44.255722, 24.519632, -8.80301), (-41.687977, 24.519632, -17.267725), (-37.51819, 24.519632, -25.068851), (-31.906597, 24.519632, -31.906597), (-25.068851, 24.519632, -37.51819), (-17.267725, 24.519632, -41.687977), (-8.80301, 24.519632, -44.255722), (-8.288913e-15, 24.519632, -45.12274), (8.80301, 24.519632, -44.255722), (17.267725, 24.519632, -41.687977), (25.068851, 24.519632, -37.51819), (31.906597, 24.519632, -31.906597), (37.51819, 24.519632, -25.068851), (41.687977, 24.519632, -17.267725), (44.255722, 24.519632, -8.80301), (40.432915, 23.096989, 0), (39.656006, 23.096989, 7.88807), (37.35514, 23.096989, 15.473006), (33.61874, 23.096989, 22.463324), (28.590387, 23.096989, 28.590387), (22.463324, 23.096989, 33.61874), (15.473006, 23.096989, 37.35514), (7.88807, 23.096989, 39.656006), (2.475802e-15, 23.096989, 40.432915), (-7.88807, 23.096989, 39.656006), (-15.473006, 23.096989, 37.35514), (-22.463324, 23.096989, 33.61874), (-28.590387, 23.096989, 28.590387), (-33.61874, 23.096989, 22.463324), (-37.35514, 23.096989, 15.473006), (-39.656006, 23.096989, 7.88807), (-40.432915, 23.096989, 4.951604e-15), (-39.656006, 23.096989, -7.88807), (-37.35514, 23.096989, -15.473006), (-33.61874, 23.096989, -22.463324), (-28.590387, 23.096989, -28.590387), (-22.463324, 23.096989, -33.61874), (-15.473006, 23.096989, -37.35514), (-7.88807, 23.096989, -39.656006), (-7.427406e-15, 23.096989, -40.432915), (7.88807, 23.096989, -39.656006), (15.473006, 23.096989, -37.35514), (22.463324, 23.096989, -33.61874), (28.590387, 23.096989, -28.590387), (33.61874, 23.096989, -22.463324), (37.35514, 23.096989, -15.473006), (39.656006, 23.096989, -7.88807), (36.110744, 20.786741, 0), (35.416885, 20.786741, 7.0448565), (33.361977, 20.786741, 13.818983), (30.024986, 20.786741, 20.062054), (25.534153, 20.786741, 25.534153), (20.062054, 20.786741, 30.024986), (13.818983, 20.786741, 33.361977), (7.0448565, 20.786741, 35.416885), (2.2111454e-15, 20.786741, 36.110744), (-7.0448565, 20.786741, 35.416885), (-13.818983, 20.786741, 33.361977), (-20.062054, 20.786741, 30.024986), (-25.534153, 20.786741, 25.534153), (-30.024986, 20.786741, 20.062054), (-33.361977, 20.786741, 13.818983), (-35.416885, 20.786741, 7.0448565), (-36.110744, 20.786741, 4.422291e-15), (-35.416885, 20.786741, -7.0448565), (-33.361977, 20.786741, -13.818983), (-30.024986, 20.786741, -20.062054), (-25.534153, 20.786741, -25.534153), (-20.062054, 20.786741, -30.024986), (-13.818983, 20.786741, -33.361977), (-7.0448565, 20.786741, -35.416885), (-6.633436e-15, 20.786741, -36.110744), (7.0448565, 20.786741, -35.416885), (13.818983, 20.786741, -33.361977), (20.062054, 20.786741, -30.024986), (25.534153, 20.786741, -25.534153), (30.024986, 20.786741, -20.062054), (33.361977, 20.786741, -13.818983), (35.416885, 20.786741, -7.0448565), (32.32233, 17.67767, 0), (31.701265, 17.67767, 6.3057737), (29.86194, 17.67767, 12.369221), (26.875036, 17.67767, 17.957325), (22.85534, 17.67767, 22.85534), (17.957325, 17.67767, 26.875036), (12.369221, 17.67767, 29.86194), (6.3057737, 17.67767, 31.701265), (1.9791719e-15, 17.67767, 32.32233), (-6.3057737, 17.67767, 31.701265), (-12.369221, 17.67767, 29.86194), (-17.957325, 17.67767, 26.875036), (-22.85534, 17.67767, 22.85534), (-26.875036, 17.67767, 17.957325), (-29.86194, 17.67767, 12.369221), (-31.701265, 17.67767, 6.3057737), (-32.32233, 17.67767, 3.9583438e-15), (-31.701265, 17.67767, -6.3057737), (-29.86194, 17.67767, -12.369221), (-26.875036, 17.67767, -17.957325), (-22.85534, 17.67767, -22.85534), (-17.957325, 17.67767, -26.875036), (-12.369221, 17.67767, -29.86194), (-6.3057737, 17.67767, -31.701265), (-5.937516e-15, 17.67767, -32.32233), (6.3057737, 17.67767, -31.701265), (12.369221, 17.67767, -29.86194), (17.957325, 17.67767, -26.875036), (22.85534, 17.67767, -22.85534), (26.875036, 17.67767, -17.957325), (29.86194, 17.67767, -12.369221), (31.701265, 17.67767, -6.3057737), (29.213259, 13.889256, 0), (28.651936, 13.889256, 5.6992245), (26.989532, 13.889256, 11.179431), (24.289938, 13.889256, 16.230017), (20.656895, 13.889256, 20.656895), (16.230017, 13.889256, 24.289938), (11.179431, 13.889256, 26.989532), (5.6992245, 13.889256, 28.651936), (1.7887962e-15, 13.889256, 29.213259), (-5.6992245, 13.889256, 28.651936), (-11.179431, 13.889256, 26.989532), (-16.230017, 13.889256, 24.289938), (-20.656895, 13.889256, 20.656895), (-24.289938, 13.889256, 16.230017), (-26.989532, 13.889256, 11.179431), (-28.651936, 13.889256, 5.6992245), (-29.213259, 13.889256, 3.5775923e-15), (-28.651936, 13.889256, -5.6992245), (-26.989532, 13.889256, -11.179431), (-24.289938, 13.889256, -16.230017), (-20.656895, 13.889256, -20.656895), (-16.230017, 13.889256, -24.289938), (-11.179431, 13.889256, -26.989532), (-5.6992245, 13.889256, -28.651936), (-5.3663887e-15, 13.889256, -29.213259), (5.6992245, 13.889256, -28.651936), (11.179431, 13.889256, -26.989532), (16.230017, 13.889256, -24.289938), (20.656895, 13.889256, -20.656895), (24.289938, 13.889256, -16.230017), (26.989532, 13.889256, -11.179431), (28.651936, 13.889256, -5.6992245), (26.903011, 9.567086, 0), (26.386078, 9.567086, 5.248517), (24.855143, 9.567086, 10.295337), (22.369038, 9.567086, 14.946512), (19.023302, 9.567086, 19.023302), (14.946512, 9.567086, 22.369038), (10.295337, 9.567086, 24.855143), (5.248517, 9.567086, 26.386078), (1.6473343e-15, 9.567086, 26.903011), (-5.248517, 9.567086, 26.386078), (-10.295337, 9.567086, 24.855143), (-14.946512, 9.567086, 22.369038), (-19.023302, 9.567086, 19.023302), (-22.369038, 9.567086, 14.946512), (-24.855143, 9.567086, 10.295337), (-26.386078, 9.567086, 5.248517), (-26.903011, 9.567086, 3.2946687e-15), (-26.386078, 9.567086, -5.248517), (-24.855143, 9.567086, -10.295337), (-22.369038, 9.567086, -14.946512), (-19.023302, 9.567086, -19.023302), (-14.946512, 9.567086, -22.369038), (-10.295337, 9.567086, -24.855143), (-5.248517, 9.567086, -26.386078), (-4.942003e-15, 9.567086, -26.903011), (5.248517, 9.567086, -26.386078), (10.295337, 9.567086, -24.855143), (14.946512, 9.567086, -22.369038), (19.023302, 9.567086, -19.023302), (22.369038, 9.567086, -14.946512), (24.855143, 9.567086, -10.295337), (26.386078, 9.567086, -5.248517), (25.480368, 4.877258, 0), (24.99077, 4.877258, 4.970973), (23.54079, 4.877258, 9.750915), (21.186152, 4.877258, 14.156134), (18.017342, 4.877258, 18.017342), (14.156134, 4.877258, 21.186152), (9.750915, 4.877258, 23.54079), (4.970973, 4.877258, 24.99077), (1.5602225e-15, 4.877258, 25.480368), (-4.970973, 4.877258, 24.99077), (-9.750915, 4.877258, 23.54079), (-14.156134, 4.877258, 21.186152), (-18.017342, 4.877258, 18.017342), (-21.186152, 4.877258, 14.156134), (-23.54079, 4.877258, 9.750915), (-24.99077, 4.877258, 4.970973), (-25.480368, 4.877258, 3.120445e-15), (-24.99077, 4.877258, -4.970973), (-23.54079, 4.877258, -9.750915), (-21.186152, 4.877258, -14.156134), (-18.017342, 4.877258, -18.017342), (-14.156134, 4.877258, -21.186152), (-9.750915, 4.877258, -23.54079), (-4.970973, 4.877258, -24.99077), (-4.6806676e-15, 4.877258, -25.480368), (4.970973, 4.877258, -24.99077), (9.750915, 4.877258, -23.54079), (14.156134, 4.877258, -21.186152), (18.017342, 4.877258, -18.017342), (21.186152, 4.877258, -14.156134), (23.54079, 4.877258, -9.750915), (24.99077, 4.877258, -4.970973), (25, 3.0616169e-15, 0), (24.519632, 3.0616169e-15, 4.877258), (23.096989, 3.0616169e-15, 9.567086), (20.786741, 3.0616169e-15, 13.889256), (17.67767, 3.0616169e-15, 17.67767), (13.889256, 3.0616169e-15, 20.786741), (9.567086, 3.0616169e-15, 23.096989), (4.877258, 3.0616169e-15, 24.519632), (1.5308084e-15, 3.0616169e-15, 25), (-4.877258, 3.0616169e-15, 24.519632), (-9.567086, 3.0616169e-15, 23.096989), (-13.889256, 3.0616169e-15, 20.786741), (-17.67767, 3.0616169e-15, 17.67767), (-20.786741, 3.0616169e-15, 13.889256), (-23.096989, 3.0616169e-15, 9.567086), (-24.519632, 3.0616169e-15, 4.877258), (-25, 3.0616169e-15, 3.0616169e-15), (-24.519632, 3.0616169e-15, -4.877258), (-23.096989, 3.0616169e-15, -9.567086), (-20.786741, 3.0616169e-15, -13.889256), (-17.67767, 3.0616169e-15, -17.67767), (-13.889256, 3.0616169e-15, -20.786741), (-9.567086, 3.0616169e-15, -23.096989), (-4.877258, 3.0616169e-15, -24.519632), (-4.5924254e-15, 3.0616169e-15, -25), (4.877258, 3.0616169e-15, -24.519632), (9.567086, 3.0616169e-15, -23.096989), (13.889256, 3.0616169e-15, -20.786741), (17.67767, 3.0616169e-15, -17.67767), (20.786741, 3.0616169e-15, -13.889256), (23.096989, 3.0616169e-15, -9.567086), (24.519632, 3.0616169e-15, -4.877258), (25.480368, -4.877258, 0), (24.99077, -4.877258, 4.970973), (23.54079, -4.877258, 9.750915), (21.186152, -4.877258, 14.156134), (18.017342, -4.877258, 18.017342), (14.156134, -4.877258, 21.186152), (9.750915, -4.877258, 23.54079), (4.970973, -4.877258, 24.99077), (1.5602225e-15, -4.877258, 25.480368), (-4.970973, -4.877258, 24.99077), (-9.750915, -4.877258, 23.54079), (-14.156134, -4.877258, 21.186152), (-18.017342, -4.877258, 18.017342), (-21.186152, -4.877258, 14.156134), (-23.54079, -4.877258, 9.750915), (-24.99077, -4.877258, 4.970973), (-25.480368, -4.877258, 3.120445e-15), (-24.99077, -4.877258, -4.970973), (-23.54079, -4.877258, -9.750915), (-21.186152, -4.877258, -14.156134), (-18.017342, -4.877258, -18.017342), (-14.156134, -4.877258, -21.186152), (-9.750915, -4.877258, -23.54079), (-4.970973, -4.877258, -24.99077), (-4.6806676e-15, -4.877258, -25.480368), (4.970973, -4.877258, -24.99077), (9.750915, -4.877258, -23.54079), (14.156134, -4.877258, -21.186152), (18.017342, -4.877258, -18.017342), (21.186152, -4.877258, -14.156134), (23.54079, -4.877258, -9.750915), (24.99077, -4.877258, -4.970973), (26.903011, -9.567086, 0), (26.386078, -9.567086, 5.248517), (24.855143, -9.567086, 10.295337), (22.369038, -9.567086, 14.946512), (19.023302, -9.567086, 19.023302), (14.946512, -9.567086, 22.369038), (10.295337, -9.567086, 24.855143), (5.248517, -9.567086, 26.386078), (1.6473343e-15, -9.567086, 26.903011), (-5.248517, -9.567086, 26.386078), (-10.295337, -9.567086, 24.855143), (-14.946512, -9.567086, 22.369038), (-19.023302, -9.567086, 19.023302), (-22.369038, -9.567086, 14.946512), (-24.855143, -9.567086, 10.295337), (-26.386078, -9.567086, 5.248517), (-26.903011, -9.567086, 3.2946687e-15), (-26.386078, -9.567086, -5.248517), (-24.855143, -9.567086, -10.295337), (-22.369038, -9.567086, -14.946512), (-19.023302, -9.567086, -19.023302), (-14.946512, -9.567086, -22.369038), (-10.295337, -9.567086, -24.855143), (-5.248517, -9.567086, -26.386078), (-4.942003e-15, -9.567086, -26.903011), (5.248517, -9.567086, -26.386078), (10.295337, -9.567086, -24.855143), (14.946512, -9.567086, -22.369038), (19.023302, -9.567086, -19.023302), (22.369038, -9.567086, -14.946512), (24.855143, -9.567086, -10.295337), (26.386078, -9.567086, -5.248517), (29.213259, -13.889256, 0), (28.651936, -13.889256, 5.6992245), (26.989532, -13.889256, 11.179431), (24.289938, -13.889256, 16.230017), (20.656895, -13.889256, 20.656895), (16.230017, -13.889256, 24.289938), (11.179431, -13.889256, 26.989532), (5.6992245, -13.889256, 28.651936), (1.7887962e-15, -13.889256, 29.213259), (-5.6992245, -13.889256, 28.651936), (-11.179431, -13.889256, 26.989532), (-16.230017, -13.889256, 24.289938), (-20.656895, -13.889256, 20.656895), (-24.289938, -13.889256, 16.230017), (-26.989532, -13.889256, 11.179431), (-28.651936, -13.889256, 5.6992245), (-29.213259, -13.889256, 3.5775923e-15), (-28.651936, -13.889256, -5.6992245), (-26.989532, -13.889256, -11.179431), (-24.289938, -13.889256, -16.230017), (-20.656895, -13.889256, -20.656895), (-16.230017, -13.889256, -24.289938), (-11.179431, -13.889256, -26.989532), (-5.6992245, -13.889256, -28.651936), (-5.3663887e-15, -13.889256, -29.213259), (5.6992245, -13.889256, -28.651936), (11.179431, -13.889256, -26.989532), (16.230017, -13.889256, -24.289938), (20.656895, -13.889256, -20.656895), (24.289938, -13.889256, -16.230017), (26.989532, -13.889256, -11.179431), (28.651936, -13.889256, -5.6992245), (32.32233, -17.67767, 0), (31.701265, -17.67767, 6.3057737), (29.86194, -17.67767, 12.369221), (26.875036, -17.67767, 17.957325), (22.85534, -17.67767, 22.85534), (17.957325, -17.67767, 26.875036), (12.369221, -17.67767, 29.86194), (6.3057737, -17.67767, 31.701265), (1.9791719e-15, -17.67767, 32.32233), (-6.3057737, -17.67767, 31.701265), (-12.369221, -17.67767, 29.86194), (-17.957325, -17.67767, 26.875036), (-22.85534, -17.67767, 22.85534), (-26.875036, -17.67767, 17.957325), (-29.86194, -17.67767, 12.369221), (-31.701265, -17.67767, 6.3057737), (-32.32233, -17.67767, 3.9583438e-15), (-31.701265, -17.67767, -6.3057737), (-29.86194, -17.67767, -12.369221), (-26.875036, -17.67767, -17.957325), (-22.85534, -17.67767, -22.85534), (-17.957325, -17.67767, -26.875036), (-12.369221, -17.67767, -29.86194), (-6.3057737, -17.67767, -31.701265), (-5.937516e-15, -17.67767, -32.32233), (6.3057737, -17.67767, -31.701265), (12.369221, -17.67767, -29.86194), (17.957325, -17.67767, -26.875036), (22.85534, -17.67767, -22.85534), (26.875036, -17.67767, -17.957325), (29.86194, -17.67767, -12.369221), (31.701265, -17.67767, -6.3057737), (36.110744, -20.786741, 0), (35.416885, -20.786741, 7.0448565), (33.361977, -20.786741, 13.818983), (30.024986, -20.786741, 20.062054), (25.534153, -20.786741, 25.534153), (20.062054, -20.786741, 30.024986), (13.818983, -20.786741, 33.361977), (7.0448565, -20.786741, 35.416885), (2.2111454e-15, -20.786741, 36.110744), (-7.0448565, -20.786741, 35.416885), (-13.818983, -20.786741, 33.361977), (-20.062054, -20.786741, 30.024986), (-25.534153, -20.786741, 25.534153), (-30.024986, -20.786741, 20.062054), (-33.361977, -20.786741, 13.818983), (-35.416885, -20.786741, 7.0448565), (-36.110744, -20.786741, 4.422291e-15), (-35.416885, -20.786741, -7.0448565), (-33.361977, -20.786741, -13.818983), (-30.024986, -20.786741, -20.062054), (-25.534153, -20.786741, -25.534153), (-20.062054, -20.786741, -30.024986), (-13.818983, -20.786741, -33.361977), (-7.0448565, -20.786741, -35.416885), (-6.633436e-15, -20.786741, -36.110744), (7.0448565, -20.786741, -35.416885), (13.818983, -20.786741, -33.361977), (20.062054, -20.786741, -30.024986), (25.534153, -20.786741, -25.534153), (30.024986, -20.786741, -20.062054), (33.361977, -20.786741, -13.818983), (35.416885, -20.786741, -7.0448565), (40.432915, -23.096989, 0), (39.656006, -23.096989, 7.88807), (37.35514, -23.096989, 15.473006), (33.61874, -23.096989, 22.463324), (28.590387, -23.096989, 28.590387), (22.463324, -23.096989, 33.61874), (15.473006, -23.096989, 37.35514), (7.88807, -23.096989, 39.656006), (2.475802e-15, -23.096989, 40.432915), (-7.88807, -23.096989, 39.656006), (-15.473006, -23.096989, 37.35514), (-22.463324, -23.096989, 33.61874), (-28.590387, -23.096989, 28.590387), (-33.61874, -23.096989, 22.463324), (-37.35514, -23.096989, 15.473006), (-39.656006, -23.096989, 7.88807), (-40.432915, -23.096989, 4.951604e-15), (-39.656006, -23.096989, -7.88807), (-37.35514, -23.096989, -15.473006), (-33.61874, -23.096989, -22.463324), (-28.590387, -23.096989, -28.590387), (-22.463324, -23.096989, -33.61874), (-15.473006, -23.096989, -37.35514), (-7.88807, -23.096989, -39.656006), (-7.427406e-15, -23.096989, -40.432915), (7.88807, -23.096989, -39.656006), (15.473006, -23.096989, -37.35514), (22.463324, -23.096989, -33.61874), (28.590387, -23.096989, -28.590387), (33.61874, -23.096989, -22.463324), (37.35514, -23.096989, -15.473006), (39.656006, -23.096989, -7.88807), (45.12274, -24.519632, 0), (44.255722, -24.519632, 8.80301), (41.687977, -24.519632, 17.267725), (37.51819, -24.519632, 25.068851), (31.906597, -24.519632, 31.906597), (25.068851, -24.519632, 37.51819), (17.267725, -24.519632, 41.687977), (8.80301, -24.519632, 44.255722), (2.762971e-15, -24.519632, 45.12274), (-8.80301, -24.519632, 44.255722), (-17.267725, -24.519632, 41.687977), (-25.068851, -24.519632, 37.51819), (-31.906597, -24.519632, 31.906597), (-37.51819, -24.519632, 25.068851), (-41.687977, -24.519632, 17.267725), (-44.255722, -24.519632, 8.80301), (-45.12274, -24.519632, 5.525942e-15), (-44.255722, -24.519632, -8.80301), (-41.687977, -24.519632, -17.267725), (-37.51819, -24.519632, -25.068851), (-31.906597, -24.519632, -31.906597), (-25.068851, -24.519632, -37.51819), (-17.267725, -24.519632, -41.687977), (-8.80301, -24.519632, -44.255722), (-8.288913e-15, -24.519632, -45.12274), (8.80301, -24.519632, -44.255722), (17.267725, -24.519632, -41.687977), (25.068851, -24.519632, -37.51819), (31.906597, -24.519632, -31.906597), (37.51819, -24.519632, -25.068851), (41.687977, -24.519632, -17.267725), (44.255722, -24.519632, -8.80301), (50, -25, 0), (49.039265, -25, 9.754516), (46.193977, -25, 19.134172), (41.573483, -25, 27.778511), (35.35534, -25, 35.35534), (27.778511, -25, 41.573483), (19.134172, -25, 46.193977), (9.754516, -25, 49.039265), (3.0616169e-15, -25, 50), (-9.754516, -25, 49.039265), (-19.134172, -25, 46.193977), (-27.778511, -25, 41.573483), (-35.35534, -25, 35.35534), (-41.573483, -25, 27.778511), (-46.193977, -25, 19.134172), (-49.039265, -25, 9.754516), (-50, -25, 6.1232338e-15), (-49.039265, -25, -9.754516), (-46.193977, -25, -19.134172), (-41.573483, -25, -27.778511), (-35.35534, -25, -35.35534), (-27.778511, -25, -41.573483), (-19.134172, -25, -46.193977), (-9.754516, -25, -49.039265), (-9.184851e-15, -25, -50), (9.754516, -25, -49.039265), (19.134172, -25, -46.193977), (27.778511, -25, -41.573483), (35.35534, -25, -35.35534), (41.573483, -25, -27.778511), (46.193977, -25, -19.134172), (49.039265, -25, -9.754516), (54.87726, -24.519632, 0), (53.822807, -24.519632, 10.706022), (50.699974, -24.519632, 21.000618), (45.628773, -24.519632, 30.48817), (38.80408, -24.519632, 38.80408), (30.48817, -24.519632, 45.628773), (21.000618, -24.519632, 50.699974), (10.706022, -24.519632, 53.822807), (3.360263e-15, -24.519632, 54.87726), (-10.706022, -24.519632, 53.822807), (-21.000618, -24.519632, 50.699974), (-30.48817, -24.519632, 45.628773), (-38.80408, -24.519632, 38.80408), (-45.628773, -24.519632, 30.48817), (-50.699974, -24.519632, 21.000618), (-53.822807, -24.519632, 10.706022), (-54.87726, -24.519632, 6.720526e-15), (-53.822807, -24.519632, -10.706022), (-50.699974, -24.519632, -21.000618), (-45.628773, -24.519632, -30.48817), (-38.80408, -24.519632, -38.80408), (-30.48817, -24.519632, -45.628773), (-21.000618, -24.519632, -50.699974), (-10.706022, -24.519632, -53.822807), (-1.0080789e-14, -24.519632, -54.87726), (10.706022, -24.519632, -53.822807), (21.000618, -24.519632, -50.699974), (30.48817, -24.519632, -45.628773), (38.80408, -24.519632, -38.80408), (45.628773, -24.519632, -30.48817), (50.699974, -24.519632, -21.000618), (53.822807, -24.519632, -10.706022), (59.567085, -23.096989, 0), (58.42252, -23.096989, 11.620962), (55.03281, -23.096989, 22.795338), (49.52822, -23.096989, 33.0937), (42.12029, -23.096989, 42.12029), (33.0937, -23.096989, 49.52822), (22.795338, -23.096989, 55.03281), (11.620962, -23.096989, 58.42252), (3.647432e-15, -23.096989, 59.567085), (-11.620962, -23.096989, 58.42252), (-22.795338, -23.096989, 55.03281), (-33.0937, -23.096989, 49.52822), (-42.12029, -23.096989, 42.12029), (-49.52822, -23.096989, 33.0937), (-55.03281, -23.096989, 22.795338), (-58.42252, -23.096989, 11.620962), (-59.567085, -23.096989, 7.294864e-15), (-58.42252, -23.096989, -11.620962), (-55.03281, -23.096989, -22.795338), (-49.52822, -23.096989, -33.0937), (-42.12029, -23.096989, -42.12029), (-33.0937, -23.096989, -49.52822), (-22.795338, -23.096989, -55.03281), (-11.620962, -23.096989, -58.42252), (-1.0942296e-14, -23.096989, -59.567085), (11.620962, -23.096989, -58.42252), (22.795338, -23.096989, -55.03281), (33.0937, -23.096989, -49.52822), (42.12029, -23.096989, -42.12029), (49.52822, -23.096989, -33.0937), (55.03281, -23.096989, -22.795338), (58.42252, -23.096989, -11.620962), (63.889256, -20.786741, 0), (62.66164, -20.786741, 12.464175), (59.025974, -20.786741, 24.44936), (53.121975, -20.786741, 35.49497), (45.176525, -20.786741, 45.176525), (35.49497, -20.786741, 53.121975), (24.44936, -20.786741, 59.025974), (12.464175, -20.786741, 62.66164), (3.9120886e-15, -20.786741, 63.889256), (-12.464175, -20.786741, 62.66164), (-24.44936, -20.786741, 59.025974), (-35.49497, -20.786741, 53.121975), (-45.176525, -20.786741, 45.176525), (-53.121975, -20.786741, 35.49497), (-59.025974, -20.786741, 24.44936), (-62.66164, -20.786741, 12.464175), (-63.889256, -20.786741, 7.824177e-15), (-62.66164, -20.786741, -12.464175), (-59.025974, -20.786741, -24.44936), (-53.121975, -20.786741, -35.49497), (-45.176525, -20.786741, -45.176525), (-35.49497, -20.786741, -53.121975), (-24.44936, -20.786741, -59.025974), (-12.464175, -20.786741, -62.66164), (-1.1736266e-14, -20.786741, -63.889256), (12.464175, -20.786741, -62.66164), (24.44936, -20.786741, -59.025974), (35.49497, -20.786741, -53.121975), (45.176525, -20.786741, -45.176525), (53.121975, -20.786741, -35.49497), (59.025974, -20.786741, -24.44936), (62.66164, -20.786741, -12.464175), (67.67767, -17.67767, 0), (66.37726, -17.67767, 13.2032585), (62.526012, -17.67767, 25.899122), (56.271927, -17.67767, 37.599697), (47.85534, -17.67767, 47.85534), (37.599697, -17.67767, 56.271927), (25.899122, -17.67767, 62.526012), (13.2032585, -17.67767, 66.37726), (4.144062e-15, -17.67767, 67.67767), (-13.2032585, -17.67767, 66.37726), (-25.899122, -17.67767, 62.526012), (-37.599697, -17.67767, 56.271927), (-47.85534, -17.67767, 47.85534), (-56.271927, -17.67767, 37.599697), (-62.526012, -17.67767, 25.899122), (-66.37726, -17.67767, 13.2032585), (-67.67767, -17.67767, 8.288124e-15), (-66.37726, -17.67767, -13.2032585), (-62.526012, -17.67767, -25.899122), (-56.271927, -17.67767, -37.599697), (-47.85534, -17.67767, -47.85534), (-37.599697, -17.67767, -56.271927), (-25.899122, -17.67767, -62.526012), (-13.2032585, -17.67767, -66.37726), (-1.2432186e-14, -17.67767, -67.67767), (13.2032585, -17.67767, -66.37726), (25.899122, -17.67767, -62.526012), (37.599697, -17.67767, -56.271927), (47.85534, -17.67767, -47.85534), (56.271927, -17.67767, -37.599697), (62.526012, -17.67767, -25.899122), (66.37726, -17.67767, -13.2032585), (70.78674, -13.889256, 0), (69.42659, -13.889256, 13.809808), (65.39842, -13.889256, 27.088913), (58.857025, -13.889256, 39.327007), (50.053783, -13.889256, 50.053783), (39.327007, -13.889256, 58.857025), (27.088913, -13.889256, 65.39842), (13.809808, -13.889256, 69.42659), (4.334438e-15, -13.889256, 70.78674), (-13.809808, -13.889256, 69.42659), (-27.088913, -13.889256, 65.39842), (-39.327007, -13.889256, 58.857025), (-50.053783, -13.889256, 50.053783), (-58.857025, -13.889256, 39.327007), (-65.39842, -13.889256, 27.088913), (-69.42659, -13.889256, 13.809808), (-70.78674, -13.889256, 8.668876e-15), (-69.42659, -13.889256, -13.809808), (-65.39842, -13.889256, -27.088913), (-58.857025, -13.889256, -39.327007), (-50.053783, -13.889256, -50.053783), (-39.327007, -13.889256, -58.857025), (-27.088913, -13.889256, -65.39842), (-13.809808, -13.889256, -69.42659), (-1.30033135e-14, -13.889256, -70.78674), (13.809808, -13.889256, -69.42659), (27.088913, -13.889256, -65.39842), (39.327007, -13.889256, -58.857025), (50.053783, -13.889256, -50.053783), (58.857025, -13.889256, -39.327007), (65.39842, -13.889256, -27.088913), (69.42659, -13.889256, -13.809808), (73.096985, -9.567086, 0), (71.69245, -9.567086, 14.260515), (67.532814, -9.567086, 27.973007), (60.777924, -9.567086, 40.61051), (51.687378, -9.567086, 51.687378), (40.61051, -9.567086, 60.777924), (27.973007, -9.567086, 67.532814), (14.260515, -9.567086, 71.69245), (4.4758995e-15, -9.567086, 73.096985), (-14.260515, -9.567086, 71.69245), (-27.973007, -9.567086, 67.532814), (-40.61051, -9.567086, 60.777924), (-51.687378, -9.567086, 51.687378), (-60.777924, -9.567086, 40.61051), (-67.532814, -9.567086, 27.973007), (-71.69245, -9.567086, 14.260515), (-73.096985, -9.567086, 8.951799e-15), (-71.69245, -9.567086, -14.260515), (-67.532814, -9.567086, -27.973007), (-60.777924, -9.567086, -40.61051), (-51.687378, -9.567086, -51.687378), (-40.61051, -9.567086, -60.777924), (-27.973007, -9.567086, -67.532814), (-14.260515, -9.567086, -71.69245), (-1.3427699e-14, -9.567086, -73.096985), (14.260515, -9.567086, -71.69245), (27.973007, -9.567086, -67.532814), (40.61051, -9.567086, -60.777924), (51.687378, -9.567086, -51.687378), (60.777924, -9.567086, -40.61051), (67.532814, -9.567086, -27.973007), (71.69245, -9.567086, -14.260515), (74.51963, -4.877258, 0), (73.08776, -4.877258, 14.538059), (68.84716, -4.877258, 28.51743), (61.960808, -4.877258, 41.40089), (52.693336, -4.877258, 52.693336), (41.40089, -4.877258, 61.960808), (28.51743, -4.877258, 68.84716), (14.538059, -4.877258, 73.08776), (4.5630114e-15, -4.877258, 74.51963), (-14.538059, -4.877258, 73.08776), (-28.51743, -4.877258, 68.84716), (-41.40089, -4.877258, 61.960808), (-52.693336, -4.877258, 52.693336), (-61.960808, -4.877258, 41.40089), (-68.84716, -4.877258, 28.51743), (-73.08776, -4.877258, 14.538059), (-74.51963, -4.877258, 9.126023e-15), (-73.08776, -4.877258, -14.538059), (-68.84716, -4.877258, -28.51743), (-61.960808, -4.877258, -41.40089), (-52.693336, -4.877258, -52.693336), (-41.40089, -4.877258, -61.960808), (-28.51743, -4.877258, -68.84716), (-14.538059, -4.877258, -73.08776), (-1.3689034e-14, -4.877258, -74.51963), (14.538059, -4.877258, -73.08776), (28.51743, -4.877258, -68.84716), (41.40089, -4.877258, -61.960808), (52.693336, -4.877258, -52.693336), (61.960808, -4.877258, -41.40089), (68.84716, -4.877258, -28.51743), (73.08776, -4.877258, -14.538059)] float2[] primvars:st = [(1, 0), (1, 0.03125), (0.96875, 0.03125), (0.96875, 0), (0.96875, 0), (0.96875, 0.03125), (0.9375, 0.03125), (0.9375, 0), (0.9375, 0), (0.9375, 0.03125), (0.90625, 0.03125), (0.90625, 0), (0.90625, 0), (0.90625, 0.03125), (0.875, 0.03125), (0.875, 0), (0.875, 0), (0.875, 0.03125), (0.84375, 0.03125), (0.84375, 0), (0.84375, 0), (0.84375, 0.03125), (0.8125, 0.03125), (0.8125, 0), (0.8125, 0), (0.8125, 0.03125), (0.78125, 0.03125), (0.78125, 0), (0.78125, 0), (0.78125, 0.03125), (0.75, 0.03125), (0.75, 0), (0.75, 0), (0.75, 0.03125), (0.71875, 0.03125), (0.71875, 0), (0.71875, 0), (0.71875, 0.03125), (0.6875, 0.03125), (0.6875, 0), (0.6875, 0), (0.6875, 0.03125), (0.65625, 0.03125), (0.65625, 0), (0.65625, 0), (0.65625, 0.03125), (0.625, 0.03125), (0.625, 0), (0.625, 0), (0.625, 0.03125), (0.59375, 0.03125), (0.59375, 0), (0.59375, 0), (0.59375, 0.03125), (0.5625, 0.03125), (0.5625, 0), (0.5625, 0), (0.5625, 0.03125), (0.53125, 0.03125), (0.53125, 0), (0.53125, 0), (0.53125, 0.03125), (0.5, 0.03125), (0.5, 0), (0.5, 0), (0.5, 0.03125), (0.46875, 0.03125), (0.46875, 0), (0.46875, 0), (0.46875, 0.03125), (0.4375, 0.03125), (0.4375, 0), (0.4375, 0), (0.4375, 0.03125), (0.40625, 0.03125), (0.40625, 0), (0.40625, 0), (0.40625, 0.03125), (0.375, 0.03125), (0.375, 0), (0.375, 0), (0.375, 0.03125), (0.34375, 0.03125), (0.34375, 0), (0.34375, 0), (0.34375, 0.03125), (0.3125, 0.03125), (0.3125, 0), (0.3125, 0), (0.3125, 0.03125), (0.28125, 0.03125), (0.28125, 0), (0.28125, 0), (0.28125, 0.03125), (0.25, 0.03125), (0.25, 0), (0.25, 0), (0.25, 0.03125), (0.21875, 0.03125), (0.21875, 0), (0.21875, 0), (0.21875, 0.03125), (0.1875, 0.03125), (0.1875, 0), (0.1875, 0), (0.1875, 0.03125), (0.15625, 0.03125), (0.15625, 0), (0.15625, 0), (0.15625, 0.03125), (0.125, 0.03125), (0.125, 0), (0.125, 0), (0.125, 0.03125), (0.09375, 0.03125), (0.09375, 0), (0.09375, 0), (0.09375, 0.03125), (0.0625, 0.03125), (0.0625, 0), (0.0625, 0), (0.0625, 0.03125), (0.03125, 0.03125), (0.03125, 0), (0.03125, 0), (0.03125, 0.03125), (1, 0.03125), (1, 0), (1, 0.03125), (1, 0.0625), (0.96875, 0.0625), (0.96875, 0.03125), (0.96875, 0.03125), (0.96875, 0.0625), (0.9375, 0.0625), (0.9375, 0.03125), (0.9375, 0.03125), (0.9375, 0.0625), (0.90625, 0.0625), (0.90625, 0.03125), (0.90625, 0.03125), (0.90625, 0.0625), (0.875, 0.0625), (0.875, 0.03125), (0.875, 0.03125), (0.875, 0.0625), (0.84375, 0.0625), (0.84375, 0.03125), (0.84375, 0.03125), (0.84375, 0.0625), (0.8125, 0.0625), (0.8125, 0.03125), (0.8125, 0.03125), (0.8125, 0.0625), (0.78125, 0.0625), (0.78125, 0.03125), (0.78125, 0.03125), (0.78125, 0.0625), (0.75, 0.0625), (0.75, 0.03125), (0.75, 0.03125), (0.75, 0.0625), (0.71875, 0.0625), (0.71875, 0.03125), (0.71875, 0.03125), (0.71875, 0.0625), (0.6875, 0.0625), (0.6875, 0.03125), (0.6875, 0.03125), (0.6875, 0.0625), (0.65625, 0.0625), (0.65625, 0.03125), (0.65625, 0.03125), (0.65625, 0.0625), (0.625, 0.0625), (0.625, 0.03125), (0.625, 0.03125), (0.625, 0.0625), (0.59375, 0.0625), (0.59375, 0.03125), (0.59375, 0.03125), (0.59375, 0.0625), (0.5625, 0.0625), (0.5625, 0.03125), (0.5625, 0.03125), (0.5625, 0.0625), (0.53125, 0.0625), (0.53125, 0.03125), (0.53125, 0.03125), (0.53125, 0.0625), (0.5, 0.0625), (0.5, 0.03125), (0.5, 0.03125), (0.5, 0.0625), (0.46875, 0.0625), (0.46875, 0.03125), (0.46875, 0.03125), (0.46875, 0.0625), (0.4375, 0.0625), (0.4375, 0.03125), (0.4375, 0.03125), (0.4375, 0.0625), (0.40625, 0.0625), (0.40625, 0.03125), (0.40625, 0.03125), (0.40625, 0.0625), (0.375, 0.0625), (0.375, 0.03125), (0.375, 0.03125), (0.375, 0.0625), (0.34375, 0.0625), (0.34375, 0.03125), (0.34375, 0.03125), (0.34375, 0.0625), (0.3125, 0.0625), (0.3125, 0.03125), (0.3125, 0.03125), (0.3125, 0.0625), (0.28125, 0.0625), (0.28125, 0.03125), (0.28125, 0.03125), (0.28125, 0.0625), (0.25, 0.0625), (0.25, 0.03125), (0.25, 0.03125), (0.25, 0.0625), (0.21875, 0.0625), (0.21875, 0.03125), (0.21875, 0.03125), (0.21875, 0.0625), (0.1875, 0.0625), (0.1875, 0.03125), (0.1875, 0.03125), (0.1875, 0.0625), (0.15625, 0.0625), (0.15625, 0.03125), (0.15625, 0.03125), (0.15625, 0.0625), (0.125, 0.0625), (0.125, 0.03125), (0.125, 0.03125), (0.125, 0.0625), (0.09375, 0.0625), (0.09375, 0.03125), (0.09375, 0.03125), (0.09375, 0.0625), (0.0625, 0.0625), (0.0625, 0.03125), (0.0625, 0.03125), (0.0625, 0.0625), (0.03125, 0.0625), (0.03125, 0.03125), (0.03125, 0.03125), (0.03125, 0.0625), (1, 0.0625), (1, 0.03125), (1, 0.0625), (1, 0.09375), (0.96875, 0.09375), (0.96875, 0.0625), (0.96875, 0.0625), (0.96875, 0.09375), (0.9375, 0.09375), (0.9375, 0.0625), (0.9375, 0.0625), (0.9375, 0.09375), (0.90625, 0.09375), (0.90625, 0.0625), (0.90625, 0.0625), (0.90625, 0.09375), (0.875, 0.09375), (0.875, 0.0625), (0.875, 0.0625), (0.875, 0.09375), (0.84375, 0.09375), (0.84375, 0.0625), (0.84375, 0.0625), (0.84375, 0.09375), (0.8125, 0.09375), (0.8125, 0.0625), (0.8125, 0.0625), (0.8125, 0.09375), (0.78125, 0.09375), (0.78125, 0.0625), (0.78125, 0.0625), (0.78125, 0.09375), (0.75, 0.09375), (0.75, 0.0625), (0.75, 0.0625), (0.75, 0.09375), (0.71875, 0.09375), (0.71875, 0.0625), (0.71875, 0.0625), (0.71875, 0.09375), (0.6875, 0.09375), (0.6875, 0.0625), (0.6875, 0.0625), (0.6875, 0.09375), (0.65625, 0.09375), (0.65625, 0.0625), (0.65625, 0.0625), (0.65625, 0.09375), (0.625, 0.09375), (0.625, 0.0625), (0.625, 0.0625), (0.625, 0.09375), (0.59375, 0.09375), (0.59375, 0.0625), (0.59375, 0.0625), (0.59375, 0.09375), (0.5625, 0.09375), (0.5625, 0.0625), (0.5625, 0.0625), (0.5625, 0.09375), (0.53125, 0.09375), (0.53125, 0.0625), (0.53125, 0.0625), (0.53125, 0.09375), (0.5, 0.09375), (0.5, 0.0625), (0.5, 0.0625), (0.5, 0.09375), (0.46875, 0.09375), (0.46875, 0.0625), (0.46875, 0.0625), (0.46875, 0.09375), (0.4375, 0.09375), (0.4375, 0.0625), (0.4375, 0.0625), (0.4375, 0.09375), (0.40625, 0.09375), (0.40625, 0.0625), (0.40625, 0.0625), (0.40625, 0.09375), (0.375, 0.09375), (0.375, 0.0625), (0.375, 0.0625), (0.375, 0.09375), (0.34375, 0.09375), (0.34375, 0.0625), (0.34375, 0.0625), (0.34375, 0.09375), (0.3125, 0.09375), (0.3125, 0.0625), (0.3125, 0.0625), (0.3125, 0.09375), (0.28125, 0.09375), (0.28125, 0.0625), (0.28125, 0.0625), (0.28125, 0.09375), (0.25, 0.09375), (0.25, 0.0625), (0.25, 0.0625), (0.25, 0.09375), (0.21875, 0.09375), (0.21875, 0.0625), (0.21875, 0.0625), (0.21875, 0.09375), (0.1875, 0.09375), (0.1875, 0.0625), (0.1875, 0.0625), (0.1875, 0.09375), (0.15625, 0.09375), (0.15625, 0.0625), (0.15625, 0.0625), (0.15625, 0.09375), (0.125, 0.09375), (0.125, 0.0625), (0.125, 0.0625), (0.125, 0.09375), (0.09375, 0.09375), (0.09375, 0.0625), (0.09375, 0.0625), (0.09375, 0.09375), (0.0625, 0.09375), (0.0625, 0.0625), (0.0625, 0.0625), (0.0625, 0.09375), (0.03125, 0.09375), (0.03125, 0.0625), (0.03125, 0.0625), (0.03125, 0.09375), (1, 0.09375), (1, 0.0625), (1, 0.09375), (1, 0.125), (0.96875, 0.125), (0.96875, 0.09375), (0.96875, 0.09375), (0.96875, 0.125), (0.9375, 0.125), (0.9375, 0.09375), (0.9375, 0.09375), (0.9375, 0.125), (0.90625, 0.125), (0.90625, 0.09375), (0.90625, 0.09375), (0.90625, 0.125), (0.875, 0.125), (0.875, 0.09375), (0.875, 0.09375), (0.875, 0.125), (0.84375, 0.125), (0.84375, 0.09375), (0.84375, 0.09375), (0.84375, 0.125), (0.8125, 0.125), (0.8125, 0.09375), (0.8125, 0.09375), (0.8125, 0.125), (0.78125, 0.125), (0.78125, 0.09375), (0.78125, 0.09375), (0.78125, 0.125), (0.75, 0.125), (0.75, 0.09375), (0.75, 0.09375), (0.75, 0.125), (0.71875, 0.125), (0.71875, 0.09375), (0.71875, 0.09375), (0.71875, 0.125), (0.6875, 0.125), (0.6875, 0.09375), (0.6875, 0.09375), (0.6875, 0.125), (0.65625, 0.125), (0.65625, 0.09375), (0.65625, 0.09375), (0.65625, 0.125), (0.625, 0.125), (0.625, 0.09375), (0.625, 0.09375), (0.625, 0.125), (0.59375, 0.125), (0.59375, 0.09375), (0.59375, 0.09375), (0.59375, 0.125), (0.5625, 0.125), (0.5625, 0.09375), (0.5625, 0.09375), (0.5625, 0.125), (0.53125, 0.125), (0.53125, 0.09375), (0.53125, 0.09375), (0.53125, 0.125), (0.5, 0.125), (0.5, 0.09375), (0.5, 0.09375), (0.5, 0.125), (0.46875, 0.125), (0.46875, 0.09375), (0.46875, 0.09375), (0.46875, 0.125), (0.4375, 0.125), (0.4375, 0.09375), (0.4375, 0.09375), (0.4375, 0.125), (0.40625, 0.125), (0.40625, 0.09375), (0.40625, 0.09375), (0.40625, 0.125), (0.375, 0.125), (0.375, 0.09375), (0.375, 0.09375), (0.375, 0.125), (0.34375, 0.125), (0.34375, 0.09375), (0.34375, 0.09375), (0.34375, 0.125), (0.3125, 0.125), (0.3125, 0.09375), (0.3125, 0.09375), (0.3125, 0.125), (0.28125, 0.125), (0.28125, 0.09375), (0.28125, 0.09375), (0.28125, 0.125), (0.25, 0.125), (0.25, 0.09375), (0.25, 0.09375), (0.25, 0.125), (0.21875, 0.125), (0.21875, 0.09375), (0.21875, 0.09375), (0.21875, 0.125), (0.1875, 0.125), (0.1875, 0.09375), (0.1875, 0.09375), (0.1875, 0.125), (0.15625, 0.125), (0.15625, 0.09375), (0.15625, 0.09375), (0.15625, 0.125), (0.125, 0.125), (0.125, 0.09375), (0.125, 0.09375), (0.125, 0.125), (0.09375, 0.125), (0.09375, 0.09375), (0.09375, 0.09375), (0.09375, 0.125), (0.0625, 0.125), (0.0625, 0.09375), (0.0625, 0.09375), (0.0625, 0.125), (0.03125, 0.125), (0.03125, 0.09375), (0.03125, 0.09375), (0.03125, 0.125), (1, 0.125), (1, 0.09375), (1, 0.125), (1, 0.15625), (0.96875, 0.15625), (0.96875, 0.125), (0.96875, 0.125), (0.96875, 0.15625), (0.9375, 0.15625), (0.9375, 0.125), (0.9375, 0.125), (0.9375, 0.15625), (0.90625, 0.15625), (0.90625, 0.125), (0.90625, 0.125), (0.90625, 0.15625), (0.875, 0.15625), (0.875, 0.125), (0.875, 0.125), (0.875, 0.15625), (0.84375, 0.15625), (0.84375, 0.125), (0.84375, 0.125), (0.84375, 0.15625), (0.8125, 0.15625), (0.8125, 0.125), (0.8125, 0.125), (0.8125, 0.15625), (0.78125, 0.15625), (0.78125, 0.125), (0.78125, 0.125), (0.78125, 0.15625), (0.75, 0.15625), (0.75, 0.125), (0.75, 0.125), (0.75, 0.15625), (0.71875, 0.15625), (0.71875, 0.125), (0.71875, 0.125), (0.71875, 0.15625), (0.6875, 0.15625), (0.6875, 0.125), (0.6875, 0.125), (0.6875, 0.15625), (0.65625, 0.15625), (0.65625, 0.125), (0.65625, 0.125), (0.65625, 0.15625), (0.625, 0.15625), (0.625, 0.125), (0.625, 0.125), (0.625, 0.15625), (0.59375, 0.15625), (0.59375, 0.125), (0.59375, 0.125), (0.59375, 0.15625), (0.5625, 0.15625), (0.5625, 0.125), (0.5625, 0.125), (0.5625, 0.15625), (0.53125, 0.15625), (0.53125, 0.125), (0.53125, 0.125), (0.53125, 0.15625), (0.5, 0.15625), (0.5, 0.125), (0.5, 0.125), (0.5, 0.15625), (0.46875, 0.15625), (0.46875, 0.125), (0.46875, 0.125), (0.46875, 0.15625), (0.4375, 0.15625), (0.4375, 0.125), (0.4375, 0.125), (0.4375, 0.15625), (0.40625, 0.15625), (0.40625, 0.125), (0.40625, 0.125), (0.40625, 0.15625), (0.375, 0.15625), (0.375, 0.125), (0.375, 0.125), (0.375, 0.15625), (0.34375, 0.15625), (0.34375, 0.125), (0.34375, 0.125), (0.34375, 0.15625), (0.3125, 0.15625), (0.3125, 0.125), (0.3125, 0.125), (0.3125, 0.15625), (0.28125, 0.15625), (0.28125, 0.125), (0.28125, 0.125), (0.28125, 0.15625), (0.25, 0.15625), (0.25, 0.125), (0.25, 0.125), (0.25, 0.15625), (0.21875, 0.15625), (0.21875, 0.125), (0.21875, 0.125), (0.21875, 0.15625), (0.1875, 0.15625), (0.1875, 0.125), (0.1875, 0.125), (0.1875, 0.15625), (0.15625, 0.15625), (0.15625, 0.125), (0.15625, 0.125), (0.15625, 0.15625), (0.125, 0.15625), (0.125, 0.125), (0.125, 0.125), (0.125, 0.15625), (0.09375, 0.15625), (0.09375, 0.125), (0.09375, 0.125), (0.09375, 0.15625), (0.0625, 0.15625), (0.0625, 0.125), (0.0625, 0.125), (0.0625, 0.15625), (0.03125, 0.15625), (0.03125, 0.125), (0.03125, 0.125), (0.03125, 0.15625), (1, 0.15625), (1, 0.125), (1, 0.15625), (1, 0.1875), (0.96875, 0.1875), (0.96875, 0.15625), (0.96875, 0.15625), (0.96875, 0.1875), (0.9375, 0.1875), (0.9375, 0.15625), (0.9375, 0.15625), (0.9375, 0.1875), (0.90625, 0.1875), (0.90625, 0.15625), (0.90625, 0.15625), (0.90625, 0.1875), (0.875, 0.1875), (0.875, 0.15625), (0.875, 0.15625), (0.875, 0.1875), (0.84375, 0.1875), (0.84375, 0.15625), (0.84375, 0.15625), (0.84375, 0.1875), (0.8125, 0.1875), (0.8125, 0.15625), (0.8125, 0.15625), (0.8125, 0.1875), (0.78125, 0.1875), (0.78125, 0.15625), (0.78125, 0.15625), (0.78125, 0.1875), (0.75, 0.1875), (0.75, 0.15625), (0.75, 0.15625), (0.75, 0.1875), (0.71875, 0.1875), (0.71875, 0.15625), (0.71875, 0.15625), (0.71875, 0.1875), (0.6875, 0.1875), (0.6875, 0.15625), (0.6875, 0.15625), (0.6875, 0.1875), (0.65625, 0.1875), (0.65625, 0.15625), (0.65625, 0.15625), (0.65625, 0.1875), (0.625, 0.1875), (0.625, 0.15625), (0.625, 0.15625), (0.625, 0.1875), (0.59375, 0.1875), (0.59375, 0.15625), (0.59375, 0.15625), (0.59375, 0.1875), (0.5625, 0.1875), (0.5625, 0.15625), (0.5625, 0.15625), (0.5625, 0.1875), (0.53125, 0.1875), (0.53125, 0.15625), (0.53125, 0.15625), (0.53125, 0.1875), (0.5, 0.1875), (0.5, 0.15625), (0.5, 0.15625), (0.5, 0.1875), (0.46875, 0.1875), (0.46875, 0.15625), (0.46875, 0.15625), (0.46875, 0.1875), (0.4375, 0.1875), (0.4375, 0.15625), (0.4375, 0.15625), (0.4375, 0.1875), (0.40625, 0.1875), (0.40625, 0.15625), (0.40625, 0.15625), (0.40625, 0.1875), (0.375, 0.1875), (0.375, 0.15625), (0.375, 0.15625), (0.375, 0.1875), (0.34375, 0.1875), (0.34375, 0.15625), (0.34375, 0.15625), (0.34375, 0.1875), (0.3125, 0.1875), (0.3125, 0.15625), (0.3125, 0.15625), (0.3125, 0.1875), (0.28125, 0.1875), (0.28125, 0.15625), (0.28125, 0.15625), (0.28125, 0.1875), (0.25, 0.1875), (0.25, 0.15625), (0.25, 0.15625), (0.25, 0.1875), (0.21875, 0.1875), (0.21875, 0.15625), (0.21875, 0.15625), (0.21875, 0.1875), (0.1875, 0.1875), (0.1875, 0.15625), (0.1875, 0.15625), (0.1875, 0.1875), (0.15625, 0.1875), (0.15625, 0.15625), (0.15625, 0.15625), (0.15625, 0.1875), (0.125, 0.1875), (0.125, 0.15625), (0.125, 0.15625), (0.125, 0.1875), (0.09375, 0.1875), (0.09375, 0.15625), (0.09375, 0.15625), (0.09375, 0.1875), (0.0625, 0.1875), (0.0625, 0.15625), (0.0625, 0.15625), (0.0625, 0.1875), (0.03125, 0.1875), (0.03125, 0.15625), (0.03125, 0.15625), (0.03125, 0.1875), (1, 0.1875), (1, 0.15625), (1, 0.1875), (1, 0.21875), (0.96875, 0.21875), (0.96875, 0.1875), (0.96875, 0.1875), (0.96875, 0.21875), (0.9375, 0.21875), (0.9375, 0.1875), (0.9375, 0.1875), (0.9375, 0.21875), (0.90625, 0.21875), (0.90625, 0.1875), (0.90625, 0.1875), (0.90625, 0.21875), (0.875, 0.21875), (0.875, 0.1875), (0.875, 0.1875), (0.875, 0.21875), (0.84375, 0.21875), (0.84375, 0.1875), (0.84375, 0.1875), (0.84375, 0.21875), (0.8125, 0.21875), (0.8125, 0.1875), (0.8125, 0.1875), (0.8125, 0.21875), (0.78125, 0.21875), (0.78125, 0.1875), (0.78125, 0.1875), (0.78125, 0.21875), (0.75, 0.21875), (0.75, 0.1875), (0.75, 0.1875), (0.75, 0.21875), (0.71875, 0.21875), (0.71875, 0.1875), (0.71875, 0.1875), (0.71875, 0.21875), (0.6875, 0.21875), (0.6875, 0.1875), (0.6875, 0.1875), (0.6875, 0.21875), (0.65625, 0.21875), (0.65625, 0.1875), (0.65625, 0.1875), (0.65625, 0.21875), (0.625, 0.21875), (0.625, 0.1875), (0.625, 0.1875), (0.625, 0.21875), (0.59375, 0.21875), (0.59375, 0.1875), (0.59375, 0.1875), (0.59375, 0.21875), (0.5625, 0.21875), (0.5625, 0.1875), (0.5625, 0.1875), (0.5625, 0.21875), (0.53125, 0.21875), (0.53125, 0.1875), (0.53125, 0.1875), (0.53125, 0.21875), (0.5, 0.21875), (0.5, 0.1875), (0.5, 0.1875), (0.5, 0.21875), (0.46875, 0.21875), (0.46875, 0.1875), (0.46875, 0.1875), (0.46875, 0.21875), (0.4375, 0.21875), (0.4375, 0.1875), (0.4375, 0.1875), (0.4375, 0.21875), (0.40625, 0.21875), (0.40625, 0.1875), (0.40625, 0.1875), (0.40625, 0.21875), (0.375, 0.21875), (0.375, 0.1875), (0.375, 0.1875), (0.375, 0.21875), (0.34375, 0.21875), (0.34375, 0.1875), (0.34375, 0.1875), (0.34375, 0.21875), (0.3125, 0.21875), (0.3125, 0.1875), (0.3125, 0.1875), (0.3125, 0.21875), (0.28125, 0.21875), (0.28125, 0.1875), (0.28125, 0.1875), (0.28125, 0.21875), (0.25, 0.21875), (0.25, 0.1875), (0.25, 0.1875), (0.25, 0.21875), (0.21875, 0.21875), (0.21875, 0.1875), (0.21875, 0.1875), (0.21875, 0.21875), (0.1875, 0.21875), (0.1875, 0.1875), (0.1875, 0.1875), (0.1875, 0.21875), (0.15625, 0.21875), (0.15625, 0.1875), (0.15625, 0.1875), (0.15625, 0.21875), (0.125, 0.21875), (0.125, 0.1875), (0.125, 0.1875), (0.125, 0.21875), (0.09375, 0.21875), (0.09375, 0.1875), (0.09375, 0.1875), (0.09375, 0.21875), (0.0625, 0.21875), (0.0625, 0.1875), (0.0625, 0.1875), (0.0625, 0.21875), (0.03125, 0.21875), (0.03125, 0.1875), (0.03125, 0.1875), (0.03125, 0.21875), (1, 0.21875), (1, 0.1875), (1, 0.21875), (1, 0.25), (0.96875, 0.25), (0.96875, 0.21875), (0.96875, 0.21875), (0.96875, 0.25), (0.9375, 0.25), (0.9375, 0.21875), (0.9375, 0.21875), (0.9375, 0.25), (0.90625, 0.25), (0.90625, 0.21875), (0.90625, 0.21875), (0.90625, 0.25), (0.875, 0.25), (0.875, 0.21875), (0.875, 0.21875), (0.875, 0.25), (0.84375, 0.25), (0.84375, 0.21875), (0.84375, 0.21875), (0.84375, 0.25), (0.8125, 0.25), (0.8125, 0.21875), (0.8125, 0.21875), (0.8125, 0.25), (0.78125, 0.25), (0.78125, 0.21875), (0.78125, 0.21875), (0.78125, 0.25), (0.75, 0.25), (0.75, 0.21875), (0.75, 0.21875), (0.75, 0.25), (0.71875, 0.25), (0.71875, 0.21875), (0.71875, 0.21875), (0.71875, 0.25), (0.6875, 0.25), (0.6875, 0.21875), (0.6875, 0.21875), (0.6875, 0.25), (0.65625, 0.25), (0.65625, 0.21875), (0.65625, 0.21875), (0.65625, 0.25), (0.625, 0.25), (0.625, 0.21875), (0.625, 0.21875), (0.625, 0.25), (0.59375, 0.25), (0.59375, 0.21875), (0.59375, 0.21875), (0.59375, 0.25), (0.5625, 0.25), (0.5625, 0.21875), (0.5625, 0.21875), (0.5625, 0.25), (0.53125, 0.25), (0.53125, 0.21875), (0.53125, 0.21875), (0.53125, 0.25), (0.5, 0.25), (0.5, 0.21875), (0.5, 0.21875), (0.5, 0.25), (0.46875, 0.25), (0.46875, 0.21875), (0.46875, 0.21875), (0.46875, 0.25), (0.4375, 0.25), (0.4375, 0.21875), (0.4375, 0.21875), (0.4375, 0.25), (0.40625, 0.25), (0.40625, 0.21875), (0.40625, 0.21875), (0.40625, 0.25), (0.375, 0.25), (0.375, 0.21875), (0.375, 0.21875), (0.375, 0.25), (0.34375, 0.25), (0.34375, 0.21875), (0.34375, 0.21875), (0.34375, 0.25), (0.3125, 0.25), (0.3125, 0.21875), (0.3125, 0.21875), (0.3125, 0.25), (0.28125, 0.25), (0.28125, 0.21875), (0.28125, 0.21875), (0.28125, 0.25), (0.25, 0.25), (0.25, 0.21875), (0.25, 0.21875), (0.25, 0.25), (0.21875, 0.25), (0.21875, 0.21875), (0.21875, 0.21875), (0.21875, 0.25), (0.1875, 0.25), (0.1875, 0.21875), (0.1875, 0.21875), (0.1875, 0.25), (0.15625, 0.25), (0.15625, 0.21875), (0.15625, 0.21875), (0.15625, 0.25), (0.125, 0.25), (0.125, 0.21875), (0.125, 0.21875), (0.125, 0.25), (0.09375, 0.25), (0.09375, 0.21875), (0.09375, 0.21875), (0.09375, 0.25), (0.0625, 0.25), (0.0625, 0.21875), (0.0625, 0.21875), (0.0625, 0.25), (0.03125, 0.25), (0.03125, 0.21875), (0.03125, 0.21875), (0.03125, 0.25), (1, 0.25), (1, 0.21875), (1, 0.25), (1, 0.28125), (0.96875, 0.28125), (0.96875, 0.25), (0.96875, 0.25), (0.96875, 0.28125), (0.9375, 0.28125), (0.9375, 0.25), (0.9375, 0.25), (0.9375, 0.28125), (0.90625, 0.28125), (0.90625, 0.25), (0.90625, 0.25), (0.90625, 0.28125), (0.875, 0.28125), (0.875, 0.25), (0.875, 0.25), (0.875, 0.28125), (0.84375, 0.28125), (0.84375, 0.25), (0.84375, 0.25), (0.84375, 0.28125), (0.8125, 0.28125), (0.8125, 0.25), (0.8125, 0.25), (0.8125, 0.28125), (0.78125, 0.28125), (0.78125, 0.25), (0.78125, 0.25), (0.78125, 0.28125), (0.75, 0.28125), (0.75, 0.25), (0.75, 0.25), (0.75, 0.28125), (0.71875, 0.28125), (0.71875, 0.25), (0.71875, 0.25), (0.71875, 0.28125), (0.6875, 0.28125), (0.6875, 0.25), (0.6875, 0.25), (0.6875, 0.28125), (0.65625, 0.28125), (0.65625, 0.25), (0.65625, 0.25), (0.65625, 0.28125), (0.625, 0.28125), (0.625, 0.25), (0.625, 0.25), (0.625, 0.28125), (0.59375, 0.28125), (0.59375, 0.25), (0.59375, 0.25), (0.59375, 0.28125), (0.5625, 0.28125), (0.5625, 0.25), (0.5625, 0.25), (0.5625, 0.28125), (0.53125, 0.28125), (0.53125, 0.25), (0.53125, 0.25), (0.53125, 0.28125), (0.5, 0.28125), (0.5, 0.25), (0.5, 0.25), (0.5, 0.28125), (0.46875, 0.28125), (0.46875, 0.25), (0.46875, 0.25), (0.46875, 0.28125), (0.4375, 0.28125), (0.4375, 0.25), (0.4375, 0.25), (0.4375, 0.28125), (0.40625, 0.28125), (0.40625, 0.25), (0.40625, 0.25), (0.40625, 0.28125), (0.375, 0.28125), (0.375, 0.25), (0.375, 0.25), (0.375, 0.28125), (0.34375, 0.28125), (0.34375, 0.25), (0.34375, 0.25), (0.34375, 0.28125), (0.3125, 0.28125), (0.3125, 0.25), (0.3125, 0.25), (0.3125, 0.28125), (0.28125, 0.28125), (0.28125, 0.25), (0.28125, 0.25), (0.28125, 0.28125), (0.25, 0.28125), (0.25, 0.25), (0.25, 0.25), (0.25, 0.28125), (0.21875, 0.28125), (0.21875, 0.25), (0.21875, 0.25), (0.21875, 0.28125), (0.1875, 0.28125), (0.1875, 0.25), (0.1875, 0.25), (0.1875, 0.28125), (0.15625, 0.28125), (0.15625, 0.25), (0.15625, 0.25), (0.15625, 0.28125), (0.125, 0.28125), (0.125, 0.25), (0.125, 0.25), (0.125, 0.28125), (0.09375, 0.28125), (0.09375, 0.25), (0.09375, 0.25), (0.09375, 0.28125), (0.0625, 0.28125), (0.0625, 0.25), (0.0625, 0.25), (0.0625, 0.28125), (0.03125, 0.28125), (0.03125, 0.25), (0.03125, 0.25), (0.03125, 0.28125), (1, 0.28125), (1, 0.25), (1, 0.28125), (1, 0.3125), (0.96875, 0.3125), (0.96875, 0.28125), (0.96875, 0.28125), (0.96875, 0.3125), (0.9375, 0.3125), (0.9375, 0.28125), (0.9375, 0.28125), (0.9375, 0.3125), (0.90625, 0.3125), (0.90625, 0.28125), (0.90625, 0.28125), (0.90625, 0.3125), (0.875, 0.3125), (0.875, 0.28125), (0.875, 0.28125), (0.875, 0.3125), (0.84375, 0.3125), (0.84375, 0.28125), (0.84375, 0.28125), (0.84375, 0.3125), (0.8125, 0.3125), (0.8125, 0.28125), (0.8125, 0.28125), (0.8125, 0.3125), (0.78125, 0.3125), (0.78125, 0.28125), (0.78125, 0.28125), (0.78125, 0.3125), (0.75, 0.3125), (0.75, 0.28125), (0.75, 0.28125), (0.75, 0.3125), (0.71875, 0.3125), (0.71875, 0.28125), (0.71875, 0.28125), (0.71875, 0.3125), (0.6875, 0.3125), (0.6875, 0.28125), (0.6875, 0.28125), (0.6875, 0.3125), (0.65625, 0.3125), (0.65625, 0.28125), (0.65625, 0.28125), (0.65625, 0.3125), (0.625, 0.3125), (0.625, 0.28125), (0.625, 0.28125), (0.625, 0.3125), (0.59375, 0.3125), (0.59375, 0.28125), (0.59375, 0.28125), (0.59375, 0.3125), (0.5625, 0.3125), (0.5625, 0.28125), (0.5625, 0.28125), (0.5625, 0.3125), (0.53125, 0.3125), (0.53125, 0.28125), (0.53125, 0.28125), (0.53125, 0.3125), (0.5, 0.3125), (0.5, 0.28125), (0.5, 0.28125), (0.5, 0.3125), (0.46875, 0.3125), (0.46875, 0.28125), (0.46875, 0.28125), (0.46875, 0.3125), (0.4375, 0.3125), (0.4375, 0.28125), (0.4375, 0.28125), (0.4375, 0.3125), (0.40625, 0.3125), (0.40625, 0.28125), (0.40625, 0.28125), (0.40625, 0.3125), (0.375, 0.3125), (0.375, 0.28125), (0.375, 0.28125), (0.375, 0.3125), (0.34375, 0.3125), (0.34375, 0.28125), (0.34375, 0.28125), (0.34375, 0.3125), (0.3125, 0.3125), (0.3125, 0.28125), (0.3125, 0.28125), (0.3125, 0.3125), (0.28125, 0.3125), (0.28125, 0.28125), (0.28125, 0.28125), (0.28125, 0.3125), (0.25, 0.3125), (0.25, 0.28125), (0.25, 0.28125), (0.25, 0.3125), (0.21875, 0.3125), (0.21875, 0.28125), (0.21875, 0.28125), (0.21875, 0.3125), (0.1875, 0.3125), (0.1875, 0.28125), (0.1875, 0.28125), (0.1875, 0.3125), (0.15625, 0.3125), (0.15625, 0.28125), (0.15625, 0.28125), (0.15625, 0.3125), (0.125, 0.3125), (0.125, 0.28125), (0.125, 0.28125), (0.125, 0.3125), (0.09375, 0.3125), (0.09375, 0.28125), (0.09375, 0.28125), (0.09375, 0.3125), (0.0625, 0.3125), (0.0625, 0.28125), (0.0625, 0.28125), (0.0625, 0.3125), (0.03125, 0.3125), (0.03125, 0.28125), (0.03125, 0.28125), (0.03125, 0.3125), (1, 0.3125), (1, 0.28125), (1, 0.3125), (1, 0.34375), (0.96875, 0.34375), (0.96875, 0.3125), (0.96875, 0.3125), (0.96875, 0.34375), (0.9375, 0.34375), (0.9375, 0.3125), (0.9375, 0.3125), (0.9375, 0.34375), (0.90625, 0.34375), (0.90625, 0.3125), (0.90625, 0.3125), (0.90625, 0.34375), (0.875, 0.34375), (0.875, 0.3125), (0.875, 0.3125), (0.875, 0.34375), (0.84375, 0.34375), (0.84375, 0.3125), (0.84375, 0.3125), (0.84375, 0.34375), (0.8125, 0.34375), (0.8125, 0.3125), (0.8125, 0.3125), (0.8125, 0.34375), (0.78125, 0.34375), (0.78125, 0.3125), (0.78125, 0.3125), (0.78125, 0.34375), (0.75, 0.34375), (0.75, 0.3125), (0.75, 0.3125), (0.75, 0.34375), (0.71875, 0.34375), (0.71875, 0.3125), (0.71875, 0.3125), (0.71875, 0.34375), (0.6875, 0.34375), (0.6875, 0.3125), (0.6875, 0.3125), (0.6875, 0.34375), (0.65625, 0.34375), (0.65625, 0.3125), (0.65625, 0.3125), (0.65625, 0.34375), (0.625, 0.34375), (0.625, 0.3125), (0.625, 0.3125), (0.625, 0.34375), (0.59375, 0.34375), (0.59375, 0.3125), (0.59375, 0.3125), (0.59375, 0.34375), (0.5625, 0.34375), (0.5625, 0.3125), (0.5625, 0.3125), (0.5625, 0.34375), (0.53125, 0.34375), (0.53125, 0.3125), (0.53125, 0.3125), (0.53125, 0.34375), (0.5, 0.34375), (0.5, 0.3125), (0.5, 0.3125), (0.5, 0.34375), (0.46875, 0.34375), (0.46875, 0.3125), (0.46875, 0.3125), (0.46875, 0.34375), (0.4375, 0.34375), (0.4375, 0.3125), (0.4375, 0.3125), (0.4375, 0.34375), (0.40625, 0.34375), (0.40625, 0.3125), (0.40625, 0.3125), (0.40625, 0.34375), (0.375, 0.34375), (0.375, 0.3125), (0.375, 0.3125), (0.375, 0.34375), (0.34375, 0.34375), (0.34375, 0.3125), (0.34375, 0.3125), (0.34375, 0.34375), (0.3125, 0.34375), (0.3125, 0.3125), (0.3125, 0.3125), (0.3125, 0.34375), (0.28125, 0.34375), (0.28125, 0.3125), (0.28125, 0.3125), (0.28125, 0.34375), (0.25, 0.34375), (0.25, 0.3125), (0.25, 0.3125), (0.25, 0.34375), (0.21875, 0.34375), (0.21875, 0.3125), (0.21875, 0.3125), (0.21875, 0.34375), (0.1875, 0.34375), (0.1875, 0.3125), (0.1875, 0.3125), (0.1875, 0.34375), (0.15625, 0.34375), (0.15625, 0.3125), (0.15625, 0.3125), (0.15625, 0.34375), (0.125, 0.34375), (0.125, 0.3125), (0.125, 0.3125), (0.125, 0.34375), (0.09375, 0.34375), (0.09375, 0.3125), (0.09375, 0.3125), (0.09375, 0.34375), (0.0625, 0.34375), (0.0625, 0.3125), (0.0625, 0.3125), (0.0625, 0.34375), (0.03125, 0.34375), (0.03125, 0.3125), (0.03125, 0.3125), (0.03125, 0.34375), (1, 0.34375), (1, 0.3125), (1, 0.34375), (1, 0.375), (0.96875, 0.375), (0.96875, 0.34375), (0.96875, 0.34375), (0.96875, 0.375), (0.9375, 0.375), (0.9375, 0.34375), (0.9375, 0.34375), (0.9375, 0.375), (0.90625, 0.375), (0.90625, 0.34375), (0.90625, 0.34375), (0.90625, 0.375), (0.875, 0.375), (0.875, 0.34375), (0.875, 0.34375), (0.875, 0.375), (0.84375, 0.375), (0.84375, 0.34375), (0.84375, 0.34375), (0.84375, 0.375), (0.8125, 0.375), (0.8125, 0.34375), (0.8125, 0.34375), (0.8125, 0.375), (0.78125, 0.375), (0.78125, 0.34375), (0.78125, 0.34375), (0.78125, 0.375), (0.75, 0.375), (0.75, 0.34375), (0.75, 0.34375), (0.75, 0.375), (0.71875, 0.375), (0.71875, 0.34375), (0.71875, 0.34375), (0.71875, 0.375), (0.6875, 0.375), (0.6875, 0.34375), (0.6875, 0.34375), (0.6875, 0.375), (0.65625, 0.375), (0.65625, 0.34375), (0.65625, 0.34375), (0.65625, 0.375), (0.625, 0.375), (0.625, 0.34375), (0.625, 0.34375), (0.625, 0.375), (0.59375, 0.375), (0.59375, 0.34375), (0.59375, 0.34375), (0.59375, 0.375), (0.5625, 0.375), (0.5625, 0.34375), (0.5625, 0.34375), (0.5625, 0.375), (0.53125, 0.375), (0.53125, 0.34375), (0.53125, 0.34375), (0.53125, 0.375), (0.5, 0.375), (0.5, 0.34375), (0.5, 0.34375), (0.5, 0.375), (0.46875, 0.375), (0.46875, 0.34375), (0.46875, 0.34375), (0.46875, 0.375), (0.4375, 0.375), (0.4375, 0.34375), (0.4375, 0.34375), (0.4375, 0.375), (0.40625, 0.375), (0.40625, 0.34375), (0.40625, 0.34375), (0.40625, 0.375), (0.375, 0.375), (0.375, 0.34375), (0.375, 0.34375), (0.375, 0.375), (0.34375, 0.375), (0.34375, 0.34375), (0.34375, 0.34375), (0.34375, 0.375), (0.3125, 0.375), (0.3125, 0.34375), (0.3125, 0.34375), (0.3125, 0.375), (0.28125, 0.375), (0.28125, 0.34375), (0.28125, 0.34375), (0.28125, 0.375), (0.25, 0.375), (0.25, 0.34375), (0.25, 0.34375), (0.25, 0.375), (0.21875, 0.375), (0.21875, 0.34375), (0.21875, 0.34375), (0.21875, 0.375), (0.1875, 0.375), (0.1875, 0.34375), (0.1875, 0.34375), (0.1875, 0.375), (0.15625, 0.375), (0.15625, 0.34375), (0.15625, 0.34375), (0.15625, 0.375), (0.125, 0.375), (0.125, 0.34375), (0.125, 0.34375), (0.125, 0.375), (0.09375, 0.375), (0.09375, 0.34375), (0.09375, 0.34375), (0.09375, 0.375), (0.0625, 0.375), (0.0625, 0.34375), (0.0625, 0.34375), (0.0625, 0.375), (0.03125, 0.375), (0.03125, 0.34375), (0.03125, 0.34375), (0.03125, 0.375), (1, 0.375), (1, 0.34375), (1, 0.375), (1, 0.40625), (0.96875, 0.40625), (0.96875, 0.375), (0.96875, 0.375), (0.96875, 0.40625), (0.9375, 0.40625), (0.9375, 0.375), (0.9375, 0.375), (0.9375, 0.40625), (0.90625, 0.40625), (0.90625, 0.375), (0.90625, 0.375), (0.90625, 0.40625), (0.875, 0.40625), (0.875, 0.375), (0.875, 0.375), (0.875, 0.40625), (0.84375, 0.40625), (0.84375, 0.375), (0.84375, 0.375), (0.84375, 0.40625), (0.8125, 0.40625), (0.8125, 0.375), (0.8125, 0.375), (0.8125, 0.40625), (0.78125, 0.40625), (0.78125, 0.375), (0.78125, 0.375), (0.78125, 0.40625), (0.75, 0.40625), (0.75, 0.375), (0.75, 0.375), (0.75, 0.40625), (0.71875, 0.40625), (0.71875, 0.375), (0.71875, 0.375), (0.71875, 0.40625), (0.6875, 0.40625), (0.6875, 0.375), (0.6875, 0.375), (0.6875, 0.40625), (0.65625, 0.40625), (0.65625, 0.375), (0.65625, 0.375), (0.65625, 0.40625), (0.625, 0.40625), (0.625, 0.375), (0.625, 0.375), (0.625, 0.40625), (0.59375, 0.40625), (0.59375, 0.375), (0.59375, 0.375), (0.59375, 0.40625), (0.5625, 0.40625), (0.5625, 0.375), (0.5625, 0.375), (0.5625, 0.40625), (0.53125, 0.40625), (0.53125, 0.375), (0.53125, 0.375), (0.53125, 0.40625), (0.5, 0.40625), (0.5, 0.375), (0.5, 0.375), (0.5, 0.40625), (0.46875, 0.40625), (0.46875, 0.375), (0.46875, 0.375), (0.46875, 0.40625), (0.4375, 0.40625), (0.4375, 0.375), (0.4375, 0.375), (0.4375, 0.40625), (0.40625, 0.40625), (0.40625, 0.375), (0.40625, 0.375), (0.40625, 0.40625), (0.375, 0.40625), (0.375, 0.375), (0.375, 0.375), (0.375, 0.40625), (0.34375, 0.40625), (0.34375, 0.375), (0.34375, 0.375), (0.34375, 0.40625), (0.3125, 0.40625), (0.3125, 0.375), (0.3125, 0.375), (0.3125, 0.40625), (0.28125, 0.40625), (0.28125, 0.375), (0.28125, 0.375), (0.28125, 0.40625), (0.25, 0.40625), (0.25, 0.375), (0.25, 0.375), (0.25, 0.40625), (0.21875, 0.40625), (0.21875, 0.375), (0.21875, 0.375), (0.21875, 0.40625), (0.1875, 0.40625), (0.1875, 0.375), (0.1875, 0.375), (0.1875, 0.40625), (0.15625, 0.40625), (0.15625, 0.375), (0.15625, 0.375), (0.15625, 0.40625), (0.125, 0.40625), (0.125, 0.375), (0.125, 0.375), (0.125, 0.40625), (0.09375, 0.40625), (0.09375, 0.375), (0.09375, 0.375), (0.09375, 0.40625), (0.0625, 0.40625), (0.0625, 0.375), (0.0625, 0.375), (0.0625, 0.40625), (0.03125, 0.40625), (0.03125, 0.375), (0.03125, 0.375), (0.03125, 0.40625), (1, 0.40625), (1, 0.375), (1, 0.40625), (1, 0.4375), (0.96875, 0.4375), (0.96875, 0.40625), (0.96875, 0.40625), (0.96875, 0.4375), (0.9375, 0.4375), (0.9375, 0.40625), (0.9375, 0.40625), (0.9375, 0.4375), (0.90625, 0.4375), (0.90625, 0.40625), (0.90625, 0.40625), (0.90625, 0.4375), (0.875, 0.4375), (0.875, 0.40625), (0.875, 0.40625), (0.875, 0.4375), (0.84375, 0.4375), (0.84375, 0.40625), (0.84375, 0.40625), (0.84375, 0.4375), (0.8125, 0.4375), (0.8125, 0.40625), (0.8125, 0.40625), (0.8125, 0.4375), (0.78125, 0.4375), (0.78125, 0.40625), (0.78125, 0.40625), (0.78125, 0.4375), (0.75, 0.4375), (0.75, 0.40625), (0.75, 0.40625), (0.75, 0.4375), (0.71875, 0.4375), (0.71875, 0.40625), (0.71875, 0.40625), (0.71875, 0.4375), (0.6875, 0.4375), (0.6875, 0.40625), (0.6875, 0.40625), (0.6875, 0.4375), (0.65625, 0.4375), (0.65625, 0.40625), (0.65625, 0.40625), (0.65625, 0.4375), (0.625, 0.4375), (0.625, 0.40625), (0.625, 0.40625), (0.625, 0.4375), (0.59375, 0.4375), (0.59375, 0.40625), (0.59375, 0.40625), (0.59375, 0.4375), (0.5625, 0.4375), (0.5625, 0.40625), (0.5625, 0.40625), (0.5625, 0.4375), (0.53125, 0.4375), (0.53125, 0.40625), (0.53125, 0.40625), (0.53125, 0.4375), (0.5, 0.4375), (0.5, 0.40625), (0.5, 0.40625), (0.5, 0.4375), (0.46875, 0.4375), (0.46875, 0.40625), (0.46875, 0.40625), (0.46875, 0.4375), (0.4375, 0.4375), (0.4375, 0.40625), (0.4375, 0.40625), (0.4375, 0.4375), (0.40625, 0.4375), (0.40625, 0.40625), (0.40625, 0.40625), (0.40625, 0.4375), (0.375, 0.4375), (0.375, 0.40625), (0.375, 0.40625), (0.375, 0.4375), (0.34375, 0.4375), (0.34375, 0.40625), (0.34375, 0.40625), (0.34375, 0.4375), (0.3125, 0.4375), (0.3125, 0.40625), (0.3125, 0.40625), (0.3125, 0.4375), (0.28125, 0.4375), (0.28125, 0.40625), (0.28125, 0.40625), (0.28125, 0.4375), (0.25, 0.4375), (0.25, 0.40625), (0.25, 0.40625), (0.25, 0.4375), (0.21875, 0.4375), (0.21875, 0.40625), (0.21875, 0.40625), (0.21875, 0.4375), (0.1875, 0.4375), (0.1875, 0.40625), (0.1875, 0.40625), (0.1875, 0.4375), (0.15625, 0.4375), (0.15625, 0.40625), (0.15625, 0.40625), (0.15625, 0.4375), (0.125, 0.4375), (0.125, 0.40625), (0.125, 0.40625), (0.125, 0.4375), (0.09375, 0.4375), (0.09375, 0.40625), (0.09375, 0.40625), (0.09375, 0.4375), (0.0625, 0.4375), (0.0625, 0.40625), (0.0625, 0.40625), (0.0625, 0.4375), (0.03125, 0.4375), (0.03125, 0.40625), (0.03125, 0.40625), (0.03125, 0.4375), (1, 0.4375), (1, 0.40625), (1, 0.4375), (1, 0.46875), (0.96875, 0.46875), (0.96875, 0.4375), (0.96875, 0.4375), (0.96875, 0.46875), (0.9375, 0.46875), (0.9375, 0.4375), (0.9375, 0.4375), (0.9375, 0.46875), (0.90625, 0.46875), (0.90625, 0.4375), (0.90625, 0.4375), (0.90625, 0.46875), (0.875, 0.46875), (0.875, 0.4375), (0.875, 0.4375), (0.875, 0.46875), (0.84375, 0.46875), (0.84375, 0.4375), (0.84375, 0.4375), (0.84375, 0.46875), (0.8125, 0.46875), (0.8125, 0.4375), (0.8125, 0.4375), (0.8125, 0.46875), (0.78125, 0.46875), (0.78125, 0.4375), (0.78125, 0.4375), (0.78125, 0.46875), (0.75, 0.46875), (0.75, 0.4375), (0.75, 0.4375), (0.75, 0.46875), (0.71875, 0.46875), (0.71875, 0.4375), (0.71875, 0.4375), (0.71875, 0.46875), (0.6875, 0.46875), (0.6875, 0.4375), (0.6875, 0.4375), (0.6875, 0.46875), (0.65625, 0.46875), (0.65625, 0.4375), (0.65625, 0.4375), (0.65625, 0.46875), (0.625, 0.46875), (0.625, 0.4375), (0.625, 0.4375), (0.625, 0.46875), (0.59375, 0.46875), (0.59375, 0.4375), (0.59375, 0.4375), (0.59375, 0.46875), (0.5625, 0.46875), (0.5625, 0.4375), (0.5625, 0.4375), (0.5625, 0.46875), (0.53125, 0.46875), (0.53125, 0.4375), (0.53125, 0.4375), (0.53125, 0.46875), (0.5, 0.46875), (0.5, 0.4375), (0.5, 0.4375), (0.5, 0.46875), (0.46875, 0.46875), (0.46875, 0.4375), (0.46875, 0.4375), (0.46875, 0.46875), (0.4375, 0.46875), (0.4375, 0.4375), (0.4375, 0.4375), (0.4375, 0.46875), (0.40625, 0.46875), (0.40625, 0.4375), (0.40625, 0.4375), (0.40625, 0.46875), (0.375, 0.46875), (0.375, 0.4375), (0.375, 0.4375), (0.375, 0.46875), (0.34375, 0.46875), (0.34375, 0.4375), (0.34375, 0.4375), (0.34375, 0.46875), (0.3125, 0.46875), (0.3125, 0.4375), (0.3125, 0.4375), (0.3125, 0.46875), (0.28125, 0.46875), (0.28125, 0.4375), (0.28125, 0.4375), (0.28125, 0.46875), (0.25, 0.46875), (0.25, 0.4375), (0.25, 0.4375), (0.25, 0.46875), (0.21875, 0.46875), (0.21875, 0.4375), (0.21875, 0.4375), (0.21875, 0.46875), (0.1875, 0.46875), (0.1875, 0.4375), (0.1875, 0.4375), (0.1875, 0.46875), (0.15625, 0.46875), (0.15625, 0.4375), (0.15625, 0.4375), (0.15625, 0.46875), (0.125, 0.46875), (0.125, 0.4375), (0.125, 0.4375), (0.125, 0.46875), (0.09375, 0.46875), (0.09375, 0.4375), (0.09375, 0.4375), (0.09375, 0.46875), (0.0625, 0.46875), (0.0625, 0.4375), (0.0625, 0.4375), (0.0625, 0.46875), (0.03125, 0.46875), (0.03125, 0.4375), (0.03125, 0.4375), (0.03125, 0.46875), (1, 0.46875), (1, 0.4375), (1, 0.46875), (1, 0.5), (0.96875, 0.5), (0.96875, 0.46875), (0.96875, 0.46875), (0.96875, 0.5), (0.9375, 0.5), (0.9375, 0.46875), (0.9375, 0.46875), (0.9375, 0.5), (0.90625, 0.5), (0.90625, 0.46875), (0.90625, 0.46875), (0.90625, 0.5), (0.875, 0.5), (0.875, 0.46875), (0.875, 0.46875), (0.875, 0.5), (0.84375, 0.5), (0.84375, 0.46875), (0.84375, 0.46875), (0.84375, 0.5), (0.8125, 0.5), (0.8125, 0.46875), (0.8125, 0.46875), (0.8125, 0.5), (0.78125, 0.5), (0.78125, 0.46875), (0.78125, 0.46875), (0.78125, 0.5), (0.75, 0.5), (0.75, 0.46875), (0.75, 0.46875), (0.75, 0.5), (0.71875, 0.5), (0.71875, 0.46875), (0.71875, 0.46875), (0.71875, 0.5), (0.6875, 0.5), (0.6875, 0.46875), (0.6875, 0.46875), (0.6875, 0.5), (0.65625, 0.5), (0.65625, 0.46875), (0.65625, 0.46875), (0.65625, 0.5), (0.625, 0.5), (0.625, 0.46875), (0.625, 0.46875), (0.625, 0.5), (0.59375, 0.5), (0.59375, 0.46875), (0.59375, 0.46875), (0.59375, 0.5), (0.5625, 0.5), (0.5625, 0.46875), (0.5625, 0.46875), (0.5625, 0.5), (0.53125, 0.5), (0.53125, 0.46875), (0.53125, 0.46875), (0.53125, 0.5), (0.5, 0.5), (0.5, 0.46875), (0.5, 0.46875), (0.5, 0.5), (0.46875, 0.5), (0.46875, 0.46875), (0.46875, 0.46875), (0.46875, 0.5), (0.4375, 0.5), (0.4375, 0.46875), (0.4375, 0.46875), (0.4375, 0.5), (0.40625, 0.5), (0.40625, 0.46875), (0.40625, 0.46875), (0.40625, 0.5), (0.375, 0.5), (0.375, 0.46875), (0.375, 0.46875), (0.375, 0.5), (0.34375, 0.5), (0.34375, 0.46875), (0.34375, 0.46875), (0.34375, 0.5), (0.3125, 0.5), (0.3125, 0.46875), (0.3125, 0.46875), (0.3125, 0.5), (0.28125, 0.5), (0.28125, 0.46875), (0.28125, 0.46875), (0.28125, 0.5), (0.25, 0.5), (0.25, 0.46875), (0.25, 0.46875), (0.25, 0.5), (0.21875, 0.5), (0.21875, 0.46875), (0.21875, 0.46875), (0.21875, 0.5), (0.1875, 0.5), (0.1875, 0.46875), (0.1875, 0.46875), (0.1875, 0.5), (0.15625, 0.5), (0.15625, 0.46875), (0.15625, 0.46875), (0.15625, 0.5), (0.125, 0.5), (0.125, 0.46875), (0.125, 0.46875), (0.125, 0.5), (0.09375, 0.5), (0.09375, 0.46875), (0.09375, 0.46875), (0.09375, 0.5), (0.0625, 0.5), (0.0625, 0.46875), (0.0625, 0.46875), (0.0625, 0.5), (0.03125, 0.5), (0.03125, 0.46875), (0.03125, 0.46875), (0.03125, 0.5), (1, 0.5), (1, 0.46875), (1, 0.5), (1, 0.53125), (0.96875, 0.53125), (0.96875, 0.5), (0.96875, 0.5), (0.96875, 0.53125), (0.9375, 0.53125), (0.9375, 0.5), (0.9375, 0.5), (0.9375, 0.53125), (0.90625, 0.53125), (0.90625, 0.5), (0.90625, 0.5), (0.90625, 0.53125), (0.875, 0.53125), (0.875, 0.5), (0.875, 0.5), (0.875, 0.53125), (0.84375, 0.53125), (0.84375, 0.5), (0.84375, 0.5), (0.84375, 0.53125), (0.8125, 0.53125), (0.8125, 0.5), (0.8125, 0.5), (0.8125, 0.53125), (0.78125, 0.53125), (0.78125, 0.5), (0.78125, 0.5), (0.78125, 0.53125), (0.75, 0.53125), (0.75, 0.5), (0.75, 0.5), (0.75, 0.53125), (0.71875, 0.53125), (0.71875, 0.5), (0.71875, 0.5), (0.71875, 0.53125), (0.6875, 0.53125), (0.6875, 0.5), (0.6875, 0.5), (0.6875, 0.53125), (0.65625, 0.53125), (0.65625, 0.5), (0.65625, 0.5), (0.65625, 0.53125), (0.625, 0.53125), (0.625, 0.5), (0.625, 0.5), (0.625, 0.53125), (0.59375, 0.53125), (0.59375, 0.5), (0.59375, 0.5), (0.59375, 0.53125), (0.5625, 0.53125), (0.5625, 0.5), (0.5625, 0.5), (0.5625, 0.53125), (0.53125, 0.53125), (0.53125, 0.5), (0.53125, 0.5), (0.53125, 0.53125), (0.5, 0.53125), (0.5, 0.5), (0.5, 0.5), (0.5, 0.53125), (0.46875, 0.53125), (0.46875, 0.5), (0.46875, 0.5), (0.46875, 0.53125), (0.4375, 0.53125), (0.4375, 0.5), (0.4375, 0.5), (0.4375, 0.53125), (0.40625, 0.53125), (0.40625, 0.5), (0.40625, 0.5), (0.40625, 0.53125), (0.375, 0.53125), (0.375, 0.5), (0.375, 0.5), (0.375, 0.53125), (0.34375, 0.53125), (0.34375, 0.5), (0.34375, 0.5), (0.34375, 0.53125), (0.3125, 0.53125), (0.3125, 0.5), (0.3125, 0.5), (0.3125, 0.53125), (0.28125, 0.53125), (0.28125, 0.5), (0.28125, 0.5), (0.28125, 0.53125), (0.25, 0.53125), (0.25, 0.5), (0.25, 0.5), (0.25, 0.53125), (0.21875, 0.53125), (0.21875, 0.5), (0.21875, 0.5), (0.21875, 0.53125), (0.1875, 0.53125), (0.1875, 0.5), (0.1875, 0.5), (0.1875, 0.53125), (0.15625, 0.53125), (0.15625, 0.5), (0.15625, 0.5), (0.15625, 0.53125), (0.125, 0.53125), (0.125, 0.5), (0.125, 0.5), (0.125, 0.53125), (0.09375, 0.53125), (0.09375, 0.5), (0.09375, 0.5), (0.09375, 0.53125), (0.0625, 0.53125), (0.0625, 0.5), (0.0625, 0.5), (0.0625, 0.53125), (0.03125, 0.53125), (0.03125, 0.5), (0.03125, 0.5), (0.03125, 0.53125), (1, 0.53125), (1, 0.5), (1, 0.53125), (1, 0.5625), (0.96875, 0.5625), (0.96875, 0.53125), (0.96875, 0.53125), (0.96875, 0.5625), (0.9375, 0.5625), (0.9375, 0.53125), (0.9375, 0.53125), (0.9375, 0.5625), (0.90625, 0.5625), (0.90625, 0.53125), (0.90625, 0.53125), (0.90625, 0.5625), (0.875, 0.5625), (0.875, 0.53125), (0.875, 0.53125), (0.875, 0.5625), (0.84375, 0.5625), (0.84375, 0.53125), (0.84375, 0.53125), (0.84375, 0.5625), (0.8125, 0.5625), (0.8125, 0.53125), (0.8125, 0.53125), (0.8125, 0.5625), (0.78125, 0.5625), (0.78125, 0.53125), (0.78125, 0.53125), (0.78125, 0.5625), (0.75, 0.5625), (0.75, 0.53125), (0.75, 0.53125), (0.75, 0.5625), (0.71875, 0.5625), (0.71875, 0.53125), (0.71875, 0.53125), (0.71875, 0.5625), (0.6875, 0.5625), (0.6875, 0.53125), (0.6875, 0.53125), (0.6875, 0.5625), (0.65625, 0.5625), (0.65625, 0.53125), (0.65625, 0.53125), (0.65625, 0.5625), (0.625, 0.5625), (0.625, 0.53125), (0.625, 0.53125), (0.625, 0.5625), (0.59375, 0.5625), (0.59375, 0.53125), (0.59375, 0.53125), (0.59375, 0.5625), (0.5625, 0.5625), (0.5625, 0.53125), (0.5625, 0.53125), (0.5625, 0.5625), (0.53125, 0.5625), (0.53125, 0.53125), (0.53125, 0.53125), (0.53125, 0.5625), (0.5, 0.5625), (0.5, 0.53125), (0.5, 0.53125), (0.5, 0.5625), (0.46875, 0.5625), (0.46875, 0.53125), (0.46875, 0.53125), (0.46875, 0.5625), (0.4375, 0.5625), (0.4375, 0.53125), (0.4375, 0.53125), (0.4375, 0.5625), (0.40625, 0.5625), (0.40625, 0.53125), (0.40625, 0.53125), (0.40625, 0.5625), (0.375, 0.5625), (0.375, 0.53125), (0.375, 0.53125), (0.375, 0.5625), (0.34375, 0.5625), (0.34375, 0.53125), (0.34375, 0.53125), (0.34375, 0.5625), (0.3125, 0.5625), (0.3125, 0.53125), (0.3125, 0.53125), (0.3125, 0.5625), (0.28125, 0.5625), (0.28125, 0.53125), (0.28125, 0.53125), (0.28125, 0.5625), (0.25, 0.5625), (0.25, 0.53125), (0.25, 0.53125), (0.25, 0.5625), (0.21875, 0.5625), (0.21875, 0.53125), (0.21875, 0.53125), (0.21875, 0.5625), (0.1875, 0.5625), (0.1875, 0.53125), (0.1875, 0.53125), (0.1875, 0.5625), (0.15625, 0.5625), (0.15625, 0.53125), (0.15625, 0.53125), (0.15625, 0.5625), (0.125, 0.5625), (0.125, 0.53125), (0.125, 0.53125), (0.125, 0.5625), (0.09375, 0.5625), (0.09375, 0.53125), (0.09375, 0.53125), (0.09375, 0.5625), (0.0625, 0.5625), (0.0625, 0.53125), (0.0625, 0.53125), (0.0625, 0.5625), (0.03125, 0.5625), (0.03125, 0.53125), (0.03125, 0.53125), (0.03125, 0.5625), (1, 0.5625), (1, 0.53125), (1, 0.5625), (1, 0.59375), (0.96875, 0.59375), (0.96875, 0.5625), (0.96875, 0.5625), (0.96875, 0.59375), (0.9375, 0.59375), (0.9375, 0.5625), (0.9375, 0.5625), (0.9375, 0.59375), (0.90625, 0.59375), (0.90625, 0.5625), (0.90625, 0.5625), (0.90625, 0.59375), (0.875, 0.59375), (0.875, 0.5625), (0.875, 0.5625), (0.875, 0.59375), (0.84375, 0.59375), (0.84375, 0.5625), (0.84375, 0.5625), (0.84375, 0.59375), (0.8125, 0.59375), (0.8125, 0.5625), (0.8125, 0.5625), (0.8125, 0.59375), (0.78125, 0.59375), (0.78125, 0.5625), (0.78125, 0.5625), (0.78125, 0.59375), (0.75, 0.59375), (0.75, 0.5625), (0.75, 0.5625), (0.75, 0.59375), (0.71875, 0.59375), (0.71875, 0.5625), (0.71875, 0.5625), (0.71875, 0.59375), (0.6875, 0.59375), (0.6875, 0.5625), (0.6875, 0.5625), (0.6875, 0.59375), (0.65625, 0.59375), (0.65625, 0.5625), (0.65625, 0.5625), (0.65625, 0.59375), (0.625, 0.59375), (0.625, 0.5625), (0.625, 0.5625), (0.625, 0.59375), (0.59375, 0.59375), (0.59375, 0.5625), (0.59375, 0.5625), (0.59375, 0.59375), (0.5625, 0.59375), (0.5625, 0.5625), (0.5625, 0.5625), (0.5625, 0.59375), (0.53125, 0.59375), (0.53125, 0.5625), (0.53125, 0.5625), (0.53125, 0.59375), (0.5, 0.59375), (0.5, 0.5625), (0.5, 0.5625), (0.5, 0.59375), (0.46875, 0.59375), (0.46875, 0.5625), (0.46875, 0.5625), (0.46875, 0.59375), (0.4375, 0.59375), (0.4375, 0.5625), (0.4375, 0.5625), (0.4375, 0.59375), (0.40625, 0.59375), (0.40625, 0.5625), (0.40625, 0.5625), (0.40625, 0.59375), (0.375, 0.59375), (0.375, 0.5625), (0.375, 0.5625), (0.375, 0.59375), (0.34375, 0.59375), (0.34375, 0.5625), (0.34375, 0.5625), (0.34375, 0.59375), (0.3125, 0.59375), (0.3125, 0.5625), (0.3125, 0.5625), (0.3125, 0.59375), (0.28125, 0.59375), (0.28125, 0.5625), (0.28125, 0.5625), (0.28125, 0.59375), (0.25, 0.59375), (0.25, 0.5625), (0.25, 0.5625), (0.25, 0.59375), (0.21875, 0.59375), (0.21875, 0.5625), (0.21875, 0.5625), (0.21875, 0.59375), (0.1875, 0.59375), (0.1875, 0.5625), (0.1875, 0.5625), (0.1875, 0.59375), (0.15625, 0.59375), (0.15625, 0.5625), (0.15625, 0.5625), (0.15625, 0.59375), (0.125, 0.59375), (0.125, 0.5625), (0.125, 0.5625), (0.125, 0.59375), (0.09375, 0.59375), (0.09375, 0.5625), (0.09375, 0.5625), (0.09375, 0.59375), (0.0625, 0.59375), (0.0625, 0.5625), (0.0625, 0.5625), (0.0625, 0.59375), (0.03125, 0.59375), (0.03125, 0.5625), (0.03125, 0.5625), (0.03125, 0.59375), (1, 0.59375), (1, 0.5625), (1, 0.59375), (1, 0.625), (0.96875, 0.625), (0.96875, 0.59375), (0.96875, 0.59375), (0.96875, 0.625), (0.9375, 0.625), (0.9375, 0.59375), (0.9375, 0.59375), (0.9375, 0.625), (0.90625, 0.625), (0.90625, 0.59375), (0.90625, 0.59375), (0.90625, 0.625), (0.875, 0.625), (0.875, 0.59375), (0.875, 0.59375), (0.875, 0.625), (0.84375, 0.625), (0.84375, 0.59375), (0.84375, 0.59375), (0.84375, 0.625), (0.8125, 0.625), (0.8125, 0.59375), (0.8125, 0.59375), (0.8125, 0.625), (0.78125, 0.625), (0.78125, 0.59375), (0.78125, 0.59375), (0.78125, 0.625), (0.75, 0.625), (0.75, 0.59375), (0.75, 0.59375), (0.75, 0.625), (0.71875, 0.625), (0.71875, 0.59375), (0.71875, 0.59375), (0.71875, 0.625), (0.6875, 0.625), (0.6875, 0.59375), (0.6875, 0.59375), (0.6875, 0.625), (0.65625, 0.625), (0.65625, 0.59375), (0.65625, 0.59375), (0.65625, 0.625), (0.625, 0.625), (0.625, 0.59375), (0.625, 0.59375), (0.625, 0.625), (0.59375, 0.625), (0.59375, 0.59375), (0.59375, 0.59375), (0.59375, 0.625), (0.5625, 0.625), (0.5625, 0.59375), (0.5625, 0.59375), (0.5625, 0.625), (0.53125, 0.625), (0.53125, 0.59375), (0.53125, 0.59375), (0.53125, 0.625), (0.5, 0.625), (0.5, 0.59375), (0.5, 0.59375), (0.5, 0.625), (0.46875, 0.625), (0.46875, 0.59375), (0.46875, 0.59375), (0.46875, 0.625), (0.4375, 0.625), (0.4375, 0.59375), (0.4375, 0.59375), (0.4375, 0.625), (0.40625, 0.625), (0.40625, 0.59375), (0.40625, 0.59375), (0.40625, 0.625), (0.375, 0.625), (0.375, 0.59375), (0.375, 0.59375), (0.375, 0.625), (0.34375, 0.625), (0.34375, 0.59375), (0.34375, 0.59375), (0.34375, 0.625), (0.3125, 0.625), (0.3125, 0.59375), (0.3125, 0.59375), (0.3125, 0.625), (0.28125, 0.625), (0.28125, 0.59375), (0.28125, 0.59375), (0.28125, 0.625), (0.25, 0.625), (0.25, 0.59375), (0.25, 0.59375), (0.25, 0.625), (0.21875, 0.625), (0.21875, 0.59375), (0.21875, 0.59375), (0.21875, 0.625), (0.1875, 0.625), (0.1875, 0.59375), (0.1875, 0.59375), (0.1875, 0.625), (0.15625, 0.625), (0.15625, 0.59375), (0.15625, 0.59375), (0.15625, 0.625), (0.125, 0.625), (0.125, 0.59375), (0.125, 0.59375), (0.125, 0.625), (0.09375, 0.625), (0.09375, 0.59375), (0.09375, 0.59375), (0.09375, 0.625), (0.0625, 0.625), (0.0625, 0.59375), (0.0625, 0.59375), (0.0625, 0.625), (0.03125, 0.625), (0.03125, 0.59375), (0.03125, 0.59375), (0.03125, 0.625), (1, 0.625), (1, 0.59375), (1, 0.625), (1, 0.65625), (0.96875, 0.65625), (0.96875, 0.625), (0.96875, 0.625), (0.96875, 0.65625), (0.9375, 0.65625), (0.9375, 0.625), (0.9375, 0.625), (0.9375, 0.65625), (0.90625, 0.65625), (0.90625, 0.625), (0.90625, 0.625), (0.90625, 0.65625), (0.875, 0.65625), (0.875, 0.625), (0.875, 0.625), (0.875, 0.65625), (0.84375, 0.65625), (0.84375, 0.625), (0.84375, 0.625), (0.84375, 0.65625), (0.8125, 0.65625), (0.8125, 0.625), (0.8125, 0.625), (0.8125, 0.65625), (0.78125, 0.65625), (0.78125, 0.625), (0.78125, 0.625), (0.78125, 0.65625), (0.75, 0.65625), (0.75, 0.625), (0.75, 0.625), (0.75, 0.65625), (0.71875, 0.65625), (0.71875, 0.625), (0.71875, 0.625), (0.71875, 0.65625), (0.6875, 0.65625), (0.6875, 0.625), (0.6875, 0.625), (0.6875, 0.65625), (0.65625, 0.65625), (0.65625, 0.625), (0.65625, 0.625), (0.65625, 0.65625), (0.625, 0.65625), (0.625, 0.625), (0.625, 0.625), (0.625, 0.65625), (0.59375, 0.65625), (0.59375, 0.625), (0.59375, 0.625), (0.59375, 0.65625), (0.5625, 0.65625), (0.5625, 0.625), (0.5625, 0.625), (0.5625, 0.65625), (0.53125, 0.65625), (0.53125, 0.625), (0.53125, 0.625), (0.53125, 0.65625), (0.5, 0.65625), (0.5, 0.625), (0.5, 0.625), (0.5, 0.65625), (0.46875, 0.65625), (0.46875, 0.625), (0.46875, 0.625), (0.46875, 0.65625), (0.4375, 0.65625), (0.4375, 0.625), (0.4375, 0.625), (0.4375, 0.65625), (0.40625, 0.65625), (0.40625, 0.625), (0.40625, 0.625), (0.40625, 0.65625), (0.375, 0.65625), (0.375, 0.625), (0.375, 0.625), (0.375, 0.65625), (0.34375, 0.65625), (0.34375, 0.625), (0.34375, 0.625), (0.34375, 0.65625), (0.3125, 0.65625), (0.3125, 0.625), (0.3125, 0.625), (0.3125, 0.65625), (0.28125, 0.65625), (0.28125, 0.625), (0.28125, 0.625), (0.28125, 0.65625), (0.25, 0.65625), (0.25, 0.625), (0.25, 0.625), (0.25, 0.65625), (0.21875, 0.65625), (0.21875, 0.625), (0.21875, 0.625), (0.21875, 0.65625), (0.1875, 0.65625), (0.1875, 0.625), (0.1875, 0.625), (0.1875, 0.65625), (0.15625, 0.65625), (0.15625, 0.625), (0.15625, 0.625), (0.15625, 0.65625), (0.125, 0.65625), (0.125, 0.625), (0.125, 0.625), (0.125, 0.65625), (0.09375, 0.65625), (0.09375, 0.625), (0.09375, 0.625), (0.09375, 0.65625), (0.0625, 0.65625), (0.0625, 0.625), (0.0625, 0.625), (0.0625, 0.65625), (0.03125, 0.65625), (0.03125, 0.625), (0.03125, 0.625), (0.03125, 0.65625), (1, 0.65625), (1, 0.625), (1, 0.65625), (1, 0.6875), (0.96875, 0.6875), (0.96875, 0.65625), (0.96875, 0.65625), (0.96875, 0.6875), (0.9375, 0.6875), (0.9375, 0.65625), (0.9375, 0.65625), (0.9375, 0.6875), (0.90625, 0.6875), (0.90625, 0.65625), (0.90625, 0.65625), (0.90625, 0.6875), (0.875, 0.6875), (0.875, 0.65625), (0.875, 0.65625), (0.875, 0.6875), (0.84375, 0.6875), (0.84375, 0.65625), (0.84375, 0.65625), (0.84375, 0.6875), (0.8125, 0.6875), (0.8125, 0.65625), (0.8125, 0.65625), (0.8125, 0.6875), (0.78125, 0.6875), (0.78125, 0.65625), (0.78125, 0.65625), (0.78125, 0.6875), (0.75, 0.6875), (0.75, 0.65625), (0.75, 0.65625), (0.75, 0.6875), (0.71875, 0.6875), (0.71875, 0.65625), (0.71875, 0.65625), (0.71875, 0.6875), (0.6875, 0.6875), (0.6875, 0.65625), (0.6875, 0.65625), (0.6875, 0.6875), (0.65625, 0.6875), (0.65625, 0.65625), (0.65625, 0.65625), (0.65625, 0.6875), (0.625, 0.6875), (0.625, 0.65625), (0.625, 0.65625), (0.625, 0.6875), (0.59375, 0.6875), (0.59375, 0.65625), (0.59375, 0.65625), (0.59375, 0.6875), (0.5625, 0.6875), (0.5625, 0.65625), (0.5625, 0.65625), (0.5625, 0.6875), (0.53125, 0.6875), (0.53125, 0.65625), (0.53125, 0.65625), (0.53125, 0.6875), (0.5, 0.6875), (0.5, 0.65625), (0.5, 0.65625), (0.5, 0.6875), (0.46875, 0.6875), (0.46875, 0.65625), (0.46875, 0.65625), (0.46875, 0.6875), (0.4375, 0.6875), (0.4375, 0.65625), (0.4375, 0.65625), (0.4375, 0.6875), (0.40625, 0.6875), (0.40625, 0.65625), (0.40625, 0.65625), (0.40625, 0.6875), (0.375, 0.6875), (0.375, 0.65625), (0.375, 0.65625), (0.375, 0.6875), (0.34375, 0.6875), (0.34375, 0.65625), (0.34375, 0.65625), (0.34375, 0.6875), (0.3125, 0.6875), (0.3125, 0.65625), (0.3125, 0.65625), (0.3125, 0.6875), (0.28125, 0.6875), (0.28125, 0.65625), (0.28125, 0.65625), (0.28125, 0.6875), (0.25, 0.6875), (0.25, 0.65625), (0.25, 0.65625), (0.25, 0.6875), (0.21875, 0.6875), (0.21875, 0.65625), (0.21875, 0.65625), (0.21875, 0.6875), (0.1875, 0.6875), (0.1875, 0.65625), (0.1875, 0.65625), (0.1875, 0.6875), (0.15625, 0.6875), (0.15625, 0.65625), (0.15625, 0.65625), (0.15625, 0.6875), (0.125, 0.6875), (0.125, 0.65625), (0.125, 0.65625), (0.125, 0.6875), (0.09375, 0.6875), (0.09375, 0.65625), (0.09375, 0.65625), (0.09375, 0.6875), (0.0625, 0.6875), (0.0625, 0.65625), (0.0625, 0.65625), (0.0625, 0.6875), (0.03125, 0.6875), (0.03125, 0.65625), (0.03125, 0.65625), (0.03125, 0.6875), (1, 0.6875), (1, 0.65625), (1, 0.6875), (1, 0.71875), (0.96875, 0.71875), (0.96875, 0.6875), (0.96875, 0.6875), (0.96875, 0.71875), (0.9375, 0.71875), (0.9375, 0.6875), (0.9375, 0.6875), (0.9375, 0.71875), (0.90625, 0.71875), (0.90625, 0.6875), (0.90625, 0.6875), (0.90625, 0.71875), (0.875, 0.71875), (0.875, 0.6875), (0.875, 0.6875), (0.875, 0.71875), (0.84375, 0.71875), (0.84375, 0.6875), (0.84375, 0.6875), (0.84375, 0.71875), (0.8125, 0.71875), (0.8125, 0.6875), (0.8125, 0.6875), (0.8125, 0.71875), (0.78125, 0.71875), (0.78125, 0.6875), (0.78125, 0.6875), (0.78125, 0.71875), (0.75, 0.71875), (0.75, 0.6875), (0.75, 0.6875), (0.75, 0.71875), (0.71875, 0.71875), (0.71875, 0.6875), (0.71875, 0.6875), (0.71875, 0.71875), (0.6875, 0.71875), (0.6875, 0.6875), (0.6875, 0.6875), (0.6875, 0.71875), (0.65625, 0.71875), (0.65625, 0.6875), (0.65625, 0.6875), (0.65625, 0.71875), (0.625, 0.71875), (0.625, 0.6875), (0.625, 0.6875), (0.625, 0.71875), (0.59375, 0.71875), (0.59375, 0.6875), (0.59375, 0.6875), (0.59375, 0.71875), (0.5625, 0.71875), (0.5625, 0.6875), (0.5625, 0.6875), (0.5625, 0.71875), (0.53125, 0.71875), (0.53125, 0.6875), (0.53125, 0.6875), (0.53125, 0.71875), (0.5, 0.71875), (0.5, 0.6875), (0.5, 0.6875), (0.5, 0.71875), (0.46875, 0.71875), (0.46875, 0.6875), (0.46875, 0.6875), (0.46875, 0.71875), (0.4375, 0.71875), (0.4375, 0.6875), (0.4375, 0.6875), (0.4375, 0.71875), (0.40625, 0.71875), (0.40625, 0.6875), (0.40625, 0.6875), (0.40625, 0.71875), (0.375, 0.71875), (0.375, 0.6875), (0.375, 0.6875), (0.375, 0.71875), (0.34375, 0.71875), (0.34375, 0.6875), (0.34375, 0.6875), (0.34375, 0.71875), (0.3125, 0.71875), (0.3125, 0.6875), (0.3125, 0.6875), (0.3125, 0.71875), (0.28125, 0.71875), (0.28125, 0.6875), (0.28125, 0.6875), (0.28125, 0.71875), (0.25, 0.71875), (0.25, 0.6875), (0.25, 0.6875), (0.25, 0.71875), (0.21875, 0.71875), (0.21875, 0.6875), (0.21875, 0.6875), (0.21875, 0.71875), (0.1875, 0.71875), (0.1875, 0.6875), (0.1875, 0.6875), (0.1875, 0.71875), (0.15625, 0.71875), (0.15625, 0.6875), (0.15625, 0.6875), (0.15625, 0.71875), (0.125, 0.71875), (0.125, 0.6875), (0.125, 0.6875), (0.125, 0.71875), (0.09375, 0.71875), (0.09375, 0.6875), (0.09375, 0.6875), (0.09375, 0.71875), (0.0625, 0.71875), (0.0625, 0.6875), (0.0625, 0.6875), (0.0625, 0.71875), (0.03125, 0.71875), (0.03125, 0.6875), (0.03125, 0.6875), (0.03125, 0.71875), (1, 0.71875), (1, 0.6875), (1, 0.71875), (1, 0.75), (0.96875, 0.75), (0.96875, 0.71875), (0.96875, 0.71875), (0.96875, 0.75), (0.9375, 0.75), (0.9375, 0.71875), (0.9375, 0.71875), (0.9375, 0.75), (0.90625, 0.75), (0.90625, 0.71875), (0.90625, 0.71875), (0.90625, 0.75), (0.875, 0.75), (0.875, 0.71875), (0.875, 0.71875), (0.875, 0.75), (0.84375, 0.75), (0.84375, 0.71875), (0.84375, 0.71875), (0.84375, 0.75), (0.8125, 0.75), (0.8125, 0.71875), (0.8125, 0.71875), (0.8125, 0.75), (0.78125, 0.75), (0.78125, 0.71875), (0.78125, 0.71875), (0.78125, 0.75), (0.75, 0.75), (0.75, 0.71875), (0.75, 0.71875), (0.75, 0.75), (0.71875, 0.75), (0.71875, 0.71875), (0.71875, 0.71875), (0.71875, 0.75), (0.6875, 0.75), (0.6875, 0.71875), (0.6875, 0.71875), (0.6875, 0.75), (0.65625, 0.75), (0.65625, 0.71875), (0.65625, 0.71875), (0.65625, 0.75), (0.625, 0.75), (0.625, 0.71875), (0.625, 0.71875), (0.625, 0.75), (0.59375, 0.75), (0.59375, 0.71875), (0.59375, 0.71875), (0.59375, 0.75), (0.5625, 0.75), (0.5625, 0.71875), (0.5625, 0.71875), (0.5625, 0.75), (0.53125, 0.75), (0.53125, 0.71875), (0.53125, 0.71875), (0.53125, 0.75), (0.5, 0.75), (0.5, 0.71875), (0.5, 0.71875), (0.5, 0.75), (0.46875, 0.75), (0.46875, 0.71875), (0.46875, 0.71875), (0.46875, 0.75), (0.4375, 0.75), (0.4375, 0.71875), (0.4375, 0.71875), (0.4375, 0.75), (0.40625, 0.75), (0.40625, 0.71875), (0.40625, 0.71875), (0.40625, 0.75), (0.375, 0.75), (0.375, 0.71875), (0.375, 0.71875), (0.375, 0.75), (0.34375, 0.75), (0.34375, 0.71875), (0.34375, 0.71875), (0.34375, 0.75), (0.3125, 0.75), (0.3125, 0.71875), (0.3125, 0.71875), (0.3125, 0.75), (0.28125, 0.75), (0.28125, 0.71875), (0.28125, 0.71875), (0.28125, 0.75), (0.25, 0.75), (0.25, 0.71875), (0.25, 0.71875), (0.25, 0.75), (0.21875, 0.75), (0.21875, 0.71875), (0.21875, 0.71875), (0.21875, 0.75), (0.1875, 0.75), (0.1875, 0.71875), (0.1875, 0.71875), (0.1875, 0.75), (0.15625, 0.75), (0.15625, 0.71875), (0.15625, 0.71875), (0.15625, 0.75), (0.125, 0.75), (0.125, 0.71875), (0.125, 0.71875), (0.125, 0.75), (0.09375, 0.75), (0.09375, 0.71875), (0.09375, 0.71875), (0.09375, 0.75), (0.0625, 0.75), (0.0625, 0.71875), (0.0625, 0.71875), (0.0625, 0.75), (0.03125, 0.75), (0.03125, 0.71875), (0.03125, 0.71875), (0.03125, 0.75), (1, 0.75), (1, 0.71875), (1, 0.75), (1, 0.78125), (0.96875, 0.78125), (0.96875, 0.75), (0.96875, 0.75), (0.96875, 0.78125), (0.9375, 0.78125), (0.9375, 0.75), (0.9375, 0.75), (0.9375, 0.78125), (0.90625, 0.78125), (0.90625, 0.75), (0.90625, 0.75), (0.90625, 0.78125), (0.875, 0.78125), (0.875, 0.75), (0.875, 0.75), (0.875, 0.78125), (0.84375, 0.78125), (0.84375, 0.75), (0.84375, 0.75), (0.84375, 0.78125), (0.8125, 0.78125), (0.8125, 0.75), (0.8125, 0.75), (0.8125, 0.78125), (0.78125, 0.78125), (0.78125, 0.75), (0.78125, 0.75), (0.78125, 0.78125), (0.75, 0.78125), (0.75, 0.75), (0.75, 0.75), (0.75, 0.78125), (0.71875, 0.78125), (0.71875, 0.75), (0.71875, 0.75), (0.71875, 0.78125), (0.6875, 0.78125), (0.6875, 0.75), (0.6875, 0.75), (0.6875, 0.78125), (0.65625, 0.78125), (0.65625, 0.75), (0.65625, 0.75), (0.65625, 0.78125), (0.625, 0.78125), (0.625, 0.75), (0.625, 0.75), (0.625, 0.78125), (0.59375, 0.78125), (0.59375, 0.75), (0.59375, 0.75), (0.59375, 0.78125), (0.5625, 0.78125), (0.5625, 0.75), (0.5625, 0.75), (0.5625, 0.78125), (0.53125, 0.78125), (0.53125, 0.75), (0.53125, 0.75), (0.53125, 0.78125), (0.5, 0.78125), (0.5, 0.75), (0.5, 0.75), (0.5, 0.78125), (0.46875, 0.78125), (0.46875, 0.75), (0.46875, 0.75), (0.46875, 0.78125), (0.4375, 0.78125), (0.4375, 0.75), (0.4375, 0.75), (0.4375, 0.78125), (0.40625, 0.78125), (0.40625, 0.75), (0.40625, 0.75), (0.40625, 0.78125), (0.375, 0.78125), (0.375, 0.75), (0.375, 0.75), (0.375, 0.78125), (0.34375, 0.78125), (0.34375, 0.75), (0.34375, 0.75), (0.34375, 0.78125), (0.3125, 0.78125), (0.3125, 0.75), (0.3125, 0.75), (0.3125, 0.78125), (0.28125, 0.78125), (0.28125, 0.75), (0.28125, 0.75), (0.28125, 0.78125), (0.25, 0.78125), (0.25, 0.75), (0.25, 0.75), (0.25, 0.78125), (0.21875, 0.78125), (0.21875, 0.75), (0.21875, 0.75), (0.21875, 0.78125), (0.1875, 0.78125), (0.1875, 0.75), (0.1875, 0.75), (0.1875, 0.78125), (0.15625, 0.78125), (0.15625, 0.75), (0.15625, 0.75), (0.15625, 0.78125), (0.125, 0.78125), (0.125, 0.75), (0.125, 0.75), (0.125, 0.78125), (0.09375, 0.78125), (0.09375, 0.75), (0.09375, 0.75), (0.09375, 0.78125), (0.0625, 0.78125), (0.0625, 0.75), (0.0625, 0.75), (0.0625, 0.78125), (0.03125, 0.78125), (0.03125, 0.75), (0.03125, 0.75), (0.03125, 0.78125), (1, 0.78125), (1, 0.75), (1, 0.78125), (1, 0.8125), (0.96875, 0.8125), (0.96875, 0.78125), (0.96875, 0.78125), (0.96875, 0.8125), (0.9375, 0.8125), (0.9375, 0.78125), (0.9375, 0.78125), (0.9375, 0.8125), (0.90625, 0.8125), (0.90625, 0.78125), (0.90625, 0.78125), (0.90625, 0.8125), (0.875, 0.8125), (0.875, 0.78125), (0.875, 0.78125), (0.875, 0.8125), (0.84375, 0.8125), (0.84375, 0.78125), (0.84375, 0.78125), (0.84375, 0.8125), (0.8125, 0.8125), (0.8125, 0.78125), (0.8125, 0.78125), (0.8125, 0.8125), (0.78125, 0.8125), (0.78125, 0.78125), (0.78125, 0.78125), (0.78125, 0.8125), (0.75, 0.8125), (0.75, 0.78125), (0.75, 0.78125), (0.75, 0.8125), (0.71875, 0.8125), (0.71875, 0.78125), (0.71875, 0.78125), (0.71875, 0.8125), (0.6875, 0.8125), (0.6875, 0.78125), (0.6875, 0.78125), (0.6875, 0.8125), (0.65625, 0.8125), (0.65625, 0.78125), (0.65625, 0.78125), (0.65625, 0.8125), (0.625, 0.8125), (0.625, 0.78125), (0.625, 0.78125), (0.625, 0.8125), (0.59375, 0.8125), (0.59375, 0.78125), (0.59375, 0.78125), (0.59375, 0.8125), (0.5625, 0.8125), (0.5625, 0.78125), (0.5625, 0.78125), (0.5625, 0.8125), (0.53125, 0.8125), (0.53125, 0.78125), (0.53125, 0.78125), (0.53125, 0.8125), (0.5, 0.8125), (0.5, 0.78125), (0.5, 0.78125), (0.5, 0.8125), (0.46875, 0.8125), (0.46875, 0.78125), (0.46875, 0.78125), (0.46875, 0.8125), (0.4375, 0.8125), (0.4375, 0.78125), (0.4375, 0.78125), (0.4375, 0.8125), (0.40625, 0.8125), (0.40625, 0.78125), (0.40625, 0.78125), (0.40625, 0.8125), (0.375, 0.8125), (0.375, 0.78125), (0.375, 0.78125), (0.375, 0.8125), (0.34375, 0.8125), (0.34375, 0.78125), (0.34375, 0.78125), (0.34375, 0.8125), (0.3125, 0.8125), (0.3125, 0.78125), (0.3125, 0.78125), (0.3125, 0.8125), (0.28125, 0.8125), (0.28125, 0.78125), (0.28125, 0.78125), (0.28125, 0.8125), (0.25, 0.8125), (0.25, 0.78125), (0.25, 0.78125), (0.25, 0.8125), (0.21875, 0.8125), (0.21875, 0.78125), (0.21875, 0.78125), (0.21875, 0.8125), (0.1875, 0.8125), (0.1875, 0.78125), (0.1875, 0.78125), (0.1875, 0.8125), (0.15625, 0.8125), (0.15625, 0.78125), (0.15625, 0.78125), (0.15625, 0.8125), (0.125, 0.8125), (0.125, 0.78125), (0.125, 0.78125), (0.125, 0.8125), (0.09375, 0.8125), (0.09375, 0.78125), (0.09375, 0.78125), (0.09375, 0.8125), (0.0625, 0.8125), (0.0625, 0.78125), (0.0625, 0.78125), (0.0625, 0.8125), (0.03125, 0.8125), (0.03125, 0.78125), (0.03125, 0.78125), (0.03125, 0.8125), (1, 0.8125), (1, 0.78125), (1, 0.8125), (1, 0.84375), (0.96875, 0.84375), (0.96875, 0.8125), (0.96875, 0.8125), (0.96875, 0.84375), (0.9375, 0.84375), (0.9375, 0.8125), (0.9375, 0.8125), (0.9375, 0.84375), (0.90625, 0.84375), (0.90625, 0.8125), (0.90625, 0.8125), (0.90625, 0.84375), (0.875, 0.84375), (0.875, 0.8125), (0.875, 0.8125), (0.875, 0.84375), (0.84375, 0.84375), (0.84375, 0.8125), (0.84375, 0.8125), (0.84375, 0.84375), (0.8125, 0.84375), (0.8125, 0.8125), (0.8125, 0.8125), (0.8125, 0.84375), (0.78125, 0.84375), (0.78125, 0.8125), (0.78125, 0.8125), (0.78125, 0.84375), (0.75, 0.84375), (0.75, 0.8125), (0.75, 0.8125), (0.75, 0.84375), (0.71875, 0.84375), (0.71875, 0.8125), (0.71875, 0.8125), (0.71875, 0.84375), (0.6875, 0.84375), (0.6875, 0.8125), (0.6875, 0.8125), (0.6875, 0.84375), (0.65625, 0.84375), (0.65625, 0.8125), (0.65625, 0.8125), (0.65625, 0.84375), (0.625, 0.84375), (0.625, 0.8125), (0.625, 0.8125), (0.625, 0.84375), (0.59375, 0.84375), (0.59375, 0.8125), (0.59375, 0.8125), (0.59375, 0.84375), (0.5625, 0.84375), (0.5625, 0.8125), (0.5625, 0.8125), (0.5625, 0.84375), (0.53125, 0.84375), (0.53125, 0.8125), (0.53125, 0.8125), (0.53125, 0.84375), (0.5, 0.84375), (0.5, 0.8125), (0.5, 0.8125), (0.5, 0.84375), (0.46875, 0.84375), (0.46875, 0.8125), (0.46875, 0.8125), (0.46875, 0.84375), (0.4375, 0.84375), (0.4375, 0.8125), (0.4375, 0.8125), (0.4375, 0.84375), (0.40625, 0.84375), (0.40625, 0.8125), (0.40625, 0.8125), (0.40625, 0.84375), (0.375, 0.84375), (0.375, 0.8125), (0.375, 0.8125), (0.375, 0.84375), (0.34375, 0.84375), (0.34375, 0.8125), (0.34375, 0.8125), (0.34375, 0.84375), (0.3125, 0.84375), (0.3125, 0.8125), (0.3125, 0.8125), (0.3125, 0.84375), (0.28125, 0.84375), (0.28125, 0.8125), (0.28125, 0.8125), (0.28125, 0.84375), (0.25, 0.84375), (0.25, 0.8125), (0.25, 0.8125), (0.25, 0.84375), (0.21875, 0.84375), (0.21875, 0.8125), (0.21875, 0.8125), (0.21875, 0.84375), (0.1875, 0.84375), (0.1875, 0.8125), (0.1875, 0.8125), (0.1875, 0.84375), (0.15625, 0.84375), (0.15625, 0.8125), (0.15625, 0.8125), (0.15625, 0.84375), (0.125, 0.84375), (0.125, 0.8125), (0.125, 0.8125), (0.125, 0.84375), (0.09375, 0.84375), (0.09375, 0.8125), (0.09375, 0.8125), (0.09375, 0.84375), (0.0625, 0.84375), (0.0625, 0.8125), (0.0625, 0.8125), (0.0625, 0.84375), (0.03125, 0.84375), (0.03125, 0.8125), (0.03125, 0.8125), (0.03125, 0.84375), (1, 0.84375), (1, 0.8125), (1, 0.84375), (1, 0.875), (0.96875, 0.875), (0.96875, 0.84375), (0.96875, 0.84375), (0.96875, 0.875), (0.9375, 0.875), (0.9375, 0.84375), (0.9375, 0.84375), (0.9375, 0.875), (0.90625, 0.875), (0.90625, 0.84375), (0.90625, 0.84375), (0.90625, 0.875), (0.875, 0.875), (0.875, 0.84375), (0.875, 0.84375), (0.875, 0.875), (0.84375, 0.875), (0.84375, 0.84375), (0.84375, 0.84375), (0.84375, 0.875), (0.8125, 0.875), (0.8125, 0.84375), (0.8125, 0.84375), (0.8125, 0.875), (0.78125, 0.875), (0.78125, 0.84375), (0.78125, 0.84375), (0.78125, 0.875), (0.75, 0.875), (0.75, 0.84375), (0.75, 0.84375), (0.75, 0.875), (0.71875, 0.875), (0.71875, 0.84375), (0.71875, 0.84375), (0.71875, 0.875), (0.6875, 0.875), (0.6875, 0.84375), (0.6875, 0.84375), (0.6875, 0.875), (0.65625, 0.875), (0.65625, 0.84375), (0.65625, 0.84375), (0.65625, 0.875), (0.625, 0.875), (0.625, 0.84375), (0.625, 0.84375), (0.625, 0.875), (0.59375, 0.875), (0.59375, 0.84375), (0.59375, 0.84375), (0.59375, 0.875), (0.5625, 0.875), (0.5625, 0.84375), (0.5625, 0.84375), (0.5625, 0.875), (0.53125, 0.875), (0.53125, 0.84375), (0.53125, 0.84375), (0.53125, 0.875), (0.5, 0.875), (0.5, 0.84375), (0.5, 0.84375), (0.5, 0.875), (0.46875, 0.875), (0.46875, 0.84375), (0.46875, 0.84375), (0.46875, 0.875), (0.4375, 0.875), (0.4375, 0.84375), (0.4375, 0.84375), (0.4375, 0.875), (0.40625, 0.875), (0.40625, 0.84375), (0.40625, 0.84375), (0.40625, 0.875), (0.375, 0.875), (0.375, 0.84375), (0.375, 0.84375), (0.375, 0.875), (0.34375, 0.875), (0.34375, 0.84375), (0.34375, 0.84375), (0.34375, 0.875), (0.3125, 0.875), (0.3125, 0.84375), (0.3125, 0.84375), (0.3125, 0.875), (0.28125, 0.875), (0.28125, 0.84375), (0.28125, 0.84375), (0.28125, 0.875), (0.25, 0.875), (0.25, 0.84375), (0.25, 0.84375), (0.25, 0.875), (0.21875, 0.875), (0.21875, 0.84375), (0.21875, 0.84375), (0.21875, 0.875), (0.1875, 0.875), (0.1875, 0.84375), (0.1875, 0.84375), (0.1875, 0.875), (0.15625, 0.875), (0.15625, 0.84375), (0.15625, 0.84375), (0.15625, 0.875), (0.125, 0.875), (0.125, 0.84375), (0.125, 0.84375), (0.125, 0.875), (0.09375, 0.875), (0.09375, 0.84375), (0.09375, 0.84375), (0.09375, 0.875), (0.0625, 0.875), (0.0625, 0.84375), (0.0625, 0.84375), (0.0625, 0.875), (0.03125, 0.875), (0.03125, 0.84375), (0.03125, 0.84375), (0.03125, 0.875), (1, 0.875), (1, 0.84375), (1, 0.875), (1, 0.90625), (0.96875, 0.90625), (0.96875, 0.875), (0.96875, 0.875), (0.96875, 0.90625), (0.9375, 0.90625), (0.9375, 0.875), (0.9375, 0.875), (0.9375, 0.90625), (0.90625, 0.90625), (0.90625, 0.875), (0.90625, 0.875), (0.90625, 0.90625), (0.875, 0.90625), (0.875, 0.875), (0.875, 0.875), (0.875, 0.90625), (0.84375, 0.90625), (0.84375, 0.875), (0.84375, 0.875), (0.84375, 0.90625), (0.8125, 0.90625), (0.8125, 0.875), (0.8125, 0.875), (0.8125, 0.90625), (0.78125, 0.90625), (0.78125, 0.875), (0.78125, 0.875), (0.78125, 0.90625), (0.75, 0.90625), (0.75, 0.875), (0.75, 0.875), (0.75, 0.90625), (0.71875, 0.90625), (0.71875, 0.875), (0.71875, 0.875), (0.71875, 0.90625), (0.6875, 0.90625), (0.6875, 0.875), (0.6875, 0.875), (0.6875, 0.90625), (0.65625, 0.90625), (0.65625, 0.875), (0.65625, 0.875), (0.65625, 0.90625), (0.625, 0.90625), (0.625, 0.875), (0.625, 0.875), (0.625, 0.90625), (0.59375, 0.90625), (0.59375, 0.875), (0.59375, 0.875), (0.59375, 0.90625), (0.5625, 0.90625), (0.5625, 0.875), (0.5625, 0.875), (0.5625, 0.90625), (0.53125, 0.90625), (0.53125, 0.875), (0.53125, 0.875), (0.53125, 0.90625), (0.5, 0.90625), (0.5, 0.875), (0.5, 0.875), (0.5, 0.90625), (0.46875, 0.90625), (0.46875, 0.875), (0.46875, 0.875), (0.46875, 0.90625), (0.4375, 0.90625), (0.4375, 0.875), (0.4375, 0.875), (0.4375, 0.90625), (0.40625, 0.90625), (0.40625, 0.875), (0.40625, 0.875), (0.40625, 0.90625), (0.375, 0.90625), (0.375, 0.875), (0.375, 0.875), (0.375, 0.90625), (0.34375, 0.90625), (0.34375, 0.875), (0.34375, 0.875), (0.34375, 0.90625), (0.3125, 0.90625), (0.3125, 0.875), (0.3125, 0.875), (0.3125, 0.90625), (0.28125, 0.90625), (0.28125, 0.875), (0.28125, 0.875), (0.28125, 0.90625), (0.25, 0.90625), (0.25, 0.875), (0.25, 0.875), (0.25, 0.90625), (0.21875, 0.90625), (0.21875, 0.875), (0.21875, 0.875), (0.21875, 0.90625), (0.1875, 0.90625), (0.1875, 0.875), (0.1875, 0.875), (0.1875, 0.90625), (0.15625, 0.90625), (0.15625, 0.875), (0.15625, 0.875), (0.15625, 0.90625), (0.125, 0.90625), (0.125, 0.875), (0.125, 0.875), (0.125, 0.90625), (0.09375, 0.90625), (0.09375, 0.875), (0.09375, 0.875), (0.09375, 0.90625), (0.0625, 0.90625), (0.0625, 0.875), (0.0625, 0.875), (0.0625, 0.90625), (0.03125, 0.90625), (0.03125, 0.875), (0.03125, 0.875), (0.03125, 0.90625), (1, 0.90625), (1, 0.875), (1, 0.90625), (1, 0.9375), (0.96875, 0.9375), (0.96875, 0.90625), (0.96875, 0.90625), (0.96875, 0.9375), (0.9375, 0.9375), (0.9375, 0.90625), (0.9375, 0.90625), (0.9375, 0.9375), (0.90625, 0.9375), (0.90625, 0.90625), (0.90625, 0.90625), (0.90625, 0.9375), (0.875, 0.9375), (0.875, 0.90625), (0.875, 0.90625), (0.875, 0.9375), (0.84375, 0.9375), (0.84375, 0.90625), (0.84375, 0.90625), (0.84375, 0.9375), (0.8125, 0.9375), (0.8125, 0.90625), (0.8125, 0.90625), (0.8125, 0.9375), (0.78125, 0.9375), (0.78125, 0.90625), (0.78125, 0.90625), (0.78125, 0.9375), (0.75, 0.9375), (0.75, 0.90625), (0.75, 0.90625), (0.75, 0.9375), (0.71875, 0.9375), (0.71875, 0.90625), (0.71875, 0.90625), (0.71875, 0.9375), (0.6875, 0.9375), (0.6875, 0.90625), (0.6875, 0.90625), (0.6875, 0.9375), (0.65625, 0.9375), (0.65625, 0.90625), (0.65625, 0.90625), (0.65625, 0.9375), (0.625, 0.9375), (0.625, 0.90625), (0.625, 0.90625), (0.625, 0.9375), (0.59375, 0.9375), (0.59375, 0.90625), (0.59375, 0.90625), (0.59375, 0.9375), (0.5625, 0.9375), (0.5625, 0.90625), (0.5625, 0.90625), (0.5625, 0.9375), (0.53125, 0.9375), (0.53125, 0.90625), (0.53125, 0.90625), (0.53125, 0.9375), (0.5, 0.9375), (0.5, 0.90625), (0.5, 0.90625), (0.5, 0.9375), (0.46875, 0.9375), (0.46875, 0.90625), (0.46875, 0.90625), (0.46875, 0.9375), (0.4375, 0.9375), (0.4375, 0.90625), (0.4375, 0.90625), (0.4375, 0.9375), (0.40625, 0.9375), (0.40625, 0.90625), (0.40625, 0.90625), (0.40625, 0.9375), (0.375, 0.9375), (0.375, 0.90625), (0.375, 0.90625), (0.375, 0.9375), (0.34375, 0.9375), (0.34375, 0.90625), (0.34375, 0.90625), (0.34375, 0.9375), (0.3125, 0.9375), (0.3125, 0.90625), (0.3125, 0.90625), (0.3125, 0.9375), (0.28125, 0.9375), (0.28125, 0.90625), (0.28125, 0.90625), (0.28125, 0.9375), (0.25, 0.9375), (0.25, 0.90625), (0.25, 0.90625), (0.25, 0.9375), (0.21875, 0.9375), (0.21875, 0.90625), (0.21875, 0.90625), (0.21875, 0.9375), (0.1875, 0.9375), (0.1875, 0.90625), (0.1875, 0.90625), (0.1875, 0.9375), (0.15625, 0.9375), (0.15625, 0.90625), (0.15625, 0.90625), (0.15625, 0.9375), (0.125, 0.9375), (0.125, 0.90625), (0.125, 0.90625), (0.125, 0.9375), (0.09375, 0.9375), (0.09375, 0.90625), (0.09375, 0.90625), (0.09375, 0.9375), (0.0625, 0.9375), (0.0625, 0.90625), (0.0625, 0.90625), (0.0625, 0.9375), (0.03125, 0.9375), (0.03125, 0.90625), (0.03125, 0.90625), (0.03125, 0.9375), (1, 0.9375), (1, 0.90625), (1, 0.9375), (1, 0.96875), (0.96875, 0.96875), (0.96875, 0.9375), (0.96875, 0.9375), (0.96875, 0.96875), (0.9375, 0.96875), (0.9375, 0.9375), (0.9375, 0.9375), (0.9375, 0.96875), (0.90625, 0.96875), (0.90625, 0.9375), (0.90625, 0.9375), (0.90625, 0.96875), (0.875, 0.96875), (0.875, 0.9375), (0.875, 0.9375), (0.875, 0.96875), (0.84375, 0.96875), (0.84375, 0.9375), (0.84375, 0.9375), (0.84375, 0.96875), (0.8125, 0.96875), (0.8125, 0.9375), (0.8125, 0.9375), (0.8125, 0.96875), (0.78125, 0.96875), (0.78125, 0.9375), (0.78125, 0.9375), (0.78125, 0.96875), (0.75, 0.96875), (0.75, 0.9375), (0.75, 0.9375), (0.75, 0.96875), (0.71875, 0.96875), (0.71875, 0.9375), (0.71875, 0.9375), (0.71875, 0.96875), (0.6875, 0.96875), (0.6875, 0.9375), (0.6875, 0.9375), (0.6875, 0.96875), (0.65625, 0.96875), (0.65625, 0.9375), (0.65625, 0.9375), (0.65625, 0.96875), (0.625, 0.96875), (0.625, 0.9375), (0.625, 0.9375), (0.625, 0.96875), (0.59375, 0.96875), (0.59375, 0.9375), (0.59375, 0.9375), (0.59375, 0.96875), (0.5625, 0.96875), (0.5625, 0.9375), (0.5625, 0.9375), (0.5625, 0.96875), (0.53125, 0.96875), (0.53125, 0.9375), (0.53125, 0.9375), (0.53125, 0.96875), (0.5, 0.96875), (0.5, 0.9375), (0.5, 0.9375), (0.5, 0.96875), (0.46875, 0.96875), (0.46875, 0.9375), (0.46875, 0.9375), (0.46875, 0.96875), (0.4375, 0.96875), (0.4375, 0.9375), (0.4375, 0.9375), (0.4375, 0.96875), (0.40625, 0.96875), (0.40625, 0.9375), (0.40625, 0.9375), (0.40625, 0.96875), (0.375, 0.96875), (0.375, 0.9375), (0.375, 0.9375), (0.375, 0.96875), (0.34375, 0.96875), (0.34375, 0.9375), (0.34375, 0.9375), (0.34375, 0.96875), (0.3125, 0.96875), (0.3125, 0.9375), (0.3125, 0.9375), (0.3125, 0.96875), (0.28125, 0.96875), (0.28125, 0.9375), (0.28125, 0.9375), (0.28125, 0.96875), (0.25, 0.96875), (0.25, 0.9375), (0.25, 0.9375), (0.25, 0.96875), (0.21875, 0.96875), (0.21875, 0.9375), (0.21875, 0.9375), (0.21875, 0.96875), (0.1875, 0.96875), (0.1875, 0.9375), (0.1875, 0.9375), (0.1875, 0.96875), (0.15625, 0.96875), (0.15625, 0.9375), (0.15625, 0.9375), (0.15625, 0.96875), (0.125, 0.96875), (0.125, 0.9375), (0.125, 0.9375), (0.125, 0.96875), (0.09375, 0.96875), (0.09375, 0.9375), (0.09375, 0.9375), (0.09375, 0.96875), (0.0625, 0.96875), (0.0625, 0.9375), (0.0625, 0.9375), (0.0625, 0.96875), (0.03125, 0.96875), (0.03125, 0.9375), (0.03125, 0.9375), (0.03125, 0.96875), (1, 0.96875), (1, 0.9375), (1, 0.96875), (1, 1), (0.96875, 1), (0.96875, 0.96875), (0.96875, 0.96875), (0.96875, 1), (0.9375, 1), (0.9375, 0.96875), (0.9375, 0.96875), (0.9375, 1), (0.90625, 1), (0.90625, 0.96875), (0.90625, 0.96875), (0.90625, 1), (0.875, 1), (0.875, 0.96875), (0.875, 0.96875), (0.875, 1), (0.84375, 1), (0.84375, 0.96875), (0.84375, 0.96875), (0.84375, 1), (0.8125, 1), (0.8125, 0.96875), (0.8125, 0.96875), (0.8125, 1), (0.78125, 1), (0.78125, 0.96875), (0.78125, 0.96875), (0.78125, 1), (0.75, 1), (0.75, 0.96875), (0.75, 0.96875), (0.75, 1), (0.71875, 1), (0.71875, 0.96875), (0.71875, 0.96875), (0.71875, 1), (0.6875, 1), (0.6875, 0.96875), (0.6875, 0.96875), (0.6875, 1), (0.65625, 1), (0.65625, 0.96875), (0.65625, 0.96875), (0.65625, 1), (0.625, 1), (0.625, 0.96875), (0.625, 0.96875), (0.625, 1), (0.59375, 1), (0.59375, 0.96875), (0.59375, 0.96875), (0.59375, 1), (0.5625, 1), (0.5625, 0.96875), (0.5625, 0.96875), (0.5625, 1), (0.53125, 1), (0.53125, 0.96875), (0.53125, 0.96875), (0.53125, 1), (0.5, 1), (0.5, 0.96875), (0.5, 0.96875), (0.5, 1), (0.46875, 1), (0.46875, 0.96875), (0.46875, 0.96875), (0.46875, 1), (0.4375, 1), (0.4375, 0.96875), (0.4375, 0.96875), (0.4375, 1), (0.40625, 1), (0.40625, 0.96875), (0.40625, 0.96875), (0.40625, 1), (0.375, 1), (0.375, 0.96875), (0.375, 0.96875), (0.375, 1), (0.34375, 1), (0.34375, 0.96875), (0.34375, 0.96875), (0.34375, 1), (0.3125, 1), (0.3125, 0.96875), (0.3125, 0.96875), (0.3125, 1), (0.28125, 1), (0.28125, 0.96875), (0.28125, 0.96875), (0.28125, 1), (0.25, 1), (0.25, 0.96875), (0.25, 0.96875), (0.25, 1), (0.21875, 1), (0.21875, 0.96875), (0.21875, 0.96875), (0.21875, 1), (0.1875, 1), (0.1875, 0.96875), (0.1875, 0.96875), (0.1875, 1), (0.15625, 1), (0.15625, 0.96875), (0.15625, 0.96875), (0.15625, 1), (0.125, 1), (0.125, 0.96875), (0.125, 0.96875), (0.125, 1), (0.09375, 1), (0.09375, 0.96875), (0.09375, 0.96875), (0.09375, 1), (0.0625, 1), (0.0625, 0.96875), (0.0625, 0.96875), (0.0625, 1), (0.03125, 1), (0.03125, 0.96875), (0.03125, 0.96875), (0.03125, 1), (1, 1), (1, 0.96875)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (5, 5, 5) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } 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"] } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/cube_ptinst_unpopulated.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (-10665.572460631078, 1870.128013628236, -17416.973515446978) double3 target = (142.88037109375, 12.936767578125, 154.3768310546875) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } int refinementOverrideImplVersion = 0 dictionary renderSettings = { int "rtx:post:aa:op" = 0 float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 bool "rtx:post:lensFlares:enabled" = 1 float "rtx:post:lensFlares:flareScale" = 0.3 bool "rtx:raytracing:fractionalCutoutOpacity" = 1 int "rtx:reflections:maxReflectionBounces" = 27 } } defaultPrim = "World" endTimeCode = 999 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def PointInstancer "output" ( instanceable = false ) { vector3f[] accelerations vector3f[] angularVelocities custom token definition:type = "point_instancer" float3[] extent int64[] ids int64[] invisibleIds = [] quath[] orientations = [] quath[] orientations1 = [(0.702148, 0.10675, -0.0304871, 0.703125), (-0.325195, 0.62793, -0.675293, 0.210938), (0.147217, 0.47876, 0.865234, 0.0114517), (0.626465, -0.164795, -0.158936, 0.745117)] point3f[] positions = [] point3f[] positions1 = [(-57.65753, 93.81689, -51.253258), (-6.9644012, 52.328014, 62.22331), (13.255975, -108.33104, -146.08699), (68.09031, 4.430382, -66.01172)] int[] protoIndices = [] int[] protoIndices1 = [0, 0, 0, 0] prepend rel prototypes = </World/Prototypes/Cube> uniform token purpose = "default" float3[] scales = [] float3[] scales1 = [(0.706293, 0.706293, 0.706293), (0.267138, 0.267138, 0.267138), (0.851309, 0.851309, 0.851309), (0.500866, 0.500866, 0.500866)] # float3[] scales1 = [(26.706293, 26.706293, 26.706293), (29.267138, 29.267138, 29.267138), (29.851309, 29.851309, 29.851309), (27.500866, 27.500866, 27.500866)] vector3f[] velocities token visibility = "inherited" float3 xformOp:rotateXYZ = (0, 0, 0) float3 xformOp:scale = (20, 20, 20) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def SphereLight "SphereLight" ( prepend apiSchemas = ["ShapingAPI"] ) { 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 token visibility = "inherited" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, -852.499714) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Scope "Prototypes" { token visibility = "invisible" 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.rtx.tests/data/usd/hydra/empty_xform_mtx.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } } defaultPrim = "World" doc = """Generated from Composed Stage of root layer """ endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( 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 "Mesh" { int[] faceVertexCounts = [4] int[] faceVertexIndices = [0, 2, 3, 1] normal3f[] normals = [(0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, 0, -50), (50, 0, -50), (-50, 0, 50), (50, 0, 50)] matrix4d xformOp:transform uniform token[] xformOpOrder = ["xformOp:transform"] } } def Camera "OmniverseKit_Persp" ( hide_in_stage_window = true kind = "component" no_delete = true ) { float4[] clippingPlanes = [] float2 clippingRange = (1, 10000000) float focalLength = 18.147562 float focusDistance = 0 float fStop = 0 float horizontalAperture = 20.955 float horizontalApertureOffset = 0 token projection = "perspective" float verticalAperture = 11.789833 float verticalApertureOffset = 0 double3 xformOp:rotateXYZ = (-35.26438968275467, 45.00000000000003, 2.2489917831974733e-15) double3 xformOp:scale = (1, 0.9999999999999999, 0.9999999999999998) double3 xformOp:translate = (500, 500, 499.99999999999983) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Camera "OmniverseKit_Front" ( hide_in_stage_window = true kind = "component" no_delete = true ) { float4[] clippingPlanes = [] float2 clippingRange = (20000, 10000000) float focalLength = 50 float focusDistance = 0 float fStop = 0 float horizontalAperture = 5000 float horizontalApertureOffset = 0 token projection = "orthographic" float verticalAperture = 3648.4849 float verticalApertureOffset = 0 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 50000) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Camera "OmniverseKit_Top" ( hide_in_stage_window = true kind = "component" no_delete = true ) { float4[] clippingPlanes = [] float2 clippingRange = (20000, 10000000) float focalLength = 50 float focusDistance = 0 float fStop = 0 float horizontalAperture = 5000 float horizontalApertureOffset = 0 token projection = "orthographic" float verticalAperture = 3648.4849 float verticalApertureOffset = 0 double3 xformOp:rotateXYZ = (89.99999999999999, -1.3030371538971064e-14, -180) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-4.329780281177466e-12, 50000, 1.1102230246251565e-11) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Camera "OmniverseKit_Right" ( hide_in_stage_window = true kind = "component" no_delete = true ) { float4[] clippingPlanes = [] float2 clippingRange = (20000, 10000000) float focalLength = 50 float focusDistance = 0 float fStop = 0 float horizontalAperture = 5000 float horizontalApertureOffset = 0 token projection = "orthographic" float verticalAperture = 3648.4849 float verticalApertureOffset = 0 double3 xformOp:rotateXYZ = (0, -89.99999999999999, -0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-50000, 0, -1.1102230246251565e-11) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/Green_Side.mdl
mdl 1.4; import OmniPBR::OmniPBR; import ::tex::gamma_mode; import ::state::normal; export material Green_Side(*) = OmniPBR::OmniPBR( color_constant: color(0.f, 1.f, 0.f), enable_basecolor_texture: false, basecolor_texture: texture_2d(), is_ao: false, AO_map: texture_2d(), reflection_roughness_constant: 1.f, enable_reflectionroughness_texture: false, reflectionroughness_texture: texture_2d(), specular: 1.f, metallic_constant: 0.f, enable_metallic_texture: false, metallic_texture: texture_2d(), enable_normalmap_texture: false, normalmap_texture: texture_2d(), normal_factor: 1.f, texture_tiling: 1.f, texture_rotation: 0.f);
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/nestedScenegraphInstances.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (660.7930685989429, 435.6262857330999, 378.9703110039463) double3 target = (100.6614831852921, -99.13605187232162, -8.691718734297892) } 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.009999999776482582 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 "threeCubes" ( instanceable = true prepend references = @./threeCubes.usda@ ) { float3 xformOp:rotateXYZ = (0, 0, 0) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, -221.09611) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/Red_Side.mdl
mdl 1.4; import OmniPBR::OmniPBR; import ::tex::gamma_mode; import ::state::normal; export material Red_Side(*) = OmniPBR::OmniPBR( color_constant: color(1.f, 0.f, 0.f), enable_basecolor_texture: false, basecolor_texture: texture_2d(), is_ao: false, AO_map: texture_2d(), reflection_roughness_constant: 1.f, enable_reflectionroughness_texture: false, reflectionroughness_texture: texture_2d(), specular: 1.f, metallic_constant: 0.f, enable_metallic_texture: false, metallic_texture: texture_2d(), enable_normalmap_texture: false, normalmap_texture: texture_2d(), normal_factor: 1.f, texture_tiling: 1.f, texture_rotation: 0.f);
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/threeCubes.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (630.1805360426509, 475.6632825361468, 394.156181421211) double3 target = (130.1805360426508, -24.336717463853404, -105.84381857878857) } 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.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def "cubeYellow" ( instanceable = true prepend payload = @./cubeYellow.usda@ ) { float3 xformOp:rotateXYZ = (0, -90, -90) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (36.457501, 0, -166.180515) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def "cubeYellow_01" ( instanceable = true prepend payload = @./cubeYellow.usda@ ) { float3 xformOp:rotateXYZ = (0, -90, -90) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (203.990501, 0, -166.180515) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def "cubeYellow_02" ( instanceable = true prepend payload = @./cubeYellow.usda@ ) { float3 xformOp:rotateXYZ = (0, -90, -90) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (347.819839, 0, -166.180515) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/OmniPBR.mdl
/* * Copyright 1986-2017 NVIDIA Corporation. All rights reserved. ****************************************************************************** MDL MATERIALS ARE PROVIDED PURSUANT TO AN END USER LICENSE AGREEMENT, WHICH WAS ACCEPTED IN ORDER TO GAIN ACCESS TO THIS FILE. IN PARTICULAR, 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. */ //notnv/epicgames/UE4/carbon/SourceArt/Omniverse/MDL/OmniPBR.mdl //fixes: customIOR, AO mapping JIC, added bsdf dropdown //fixes 10/12/2018 - converted metallic Bool into float for map. //jjordan 10/18: disabled bsdf_type. imho makes material complicated without real benefit, but final call is for Daniela since she knows feedback //jjordan 10/18: removed all ternaries on material structs and substituted with ternaries on bsdf. this works around https://moskito.nvidia-arc.com/show_bug.cgi?id=18719 but at the same time is shorter then original code //danielaf 10/24/18: replacing ifm annotation with updated 1.4 anno for parameter ui grouping //danielaf 10/24/18: removing all Booleans and using floats instead for dynamic material in RTX_OV //ddanielaf 10/24/18: adding explicit texture input parameter and texture enable parameters for RTX_OV OMN-812 - unless tex::texture_isvalid implemented in RTX_OV //danielaf 10/24/18: removed anisotropy,backscatter, thinfilms, custom_bsdf, abbe_number(things that don't seem to have any effect in RTX_OV ATM) //danielaf 11/2/2018: omni flex trimmed way down //danielaf 11/06/2018: switch enables to bool! :D mdl 1.4; //switched back to 1.3, getting "mdl 1.4 not supported" from my iviewer version 2017 1.4 296300.6298 //switched to 1.2 - getting normalmap_texture parameter type error when switching to 1.4 - still troubleshooting import ::df::*; import ::state::*; import ::math::*; import ::base::*; import ::tex::*; import ::anno::*; import ::nvidia::core_definitions::file_texture; import ::nvidia::core_definitions::normalmap_texture; export using ::base import texture_return; export using ::base import mono_mode; export using ::base import color_layer_mode; export material OmniPBR( color color_constant = color(0.2f) [[ anno::display_name("Base color"), anno::in_group("Base Layer"), anno::description("The color of the material."), ui_position(1) ]], uniform bool enable_basecolor_texture = false [[ anno::display_name("Use Base Color Texture"), anno::in_group("Base Layer"), anno::hard_range(0.0,1.), ui_position(2), anno::description("Set to True to enable texture.") ]], uniform texture_2d basecolor_texture = texture_2d() [[ anno::display_name("Base Color Texture"), anno::in_group("Base Layer"), ui_position(3) ]], uniform bool is_ao = false [[ anno::display_name("Use AO Texture"), anno::in_group("Base Layer","AO"), anno::description("Set to True to enable texture."), ui_position(4) ]], uniform texture_2d AO_map = texture_2d() [[ anno::display_name("AO Map"), anno::in_group("Base Layer","AO"), anno::description("Input AO Map."), anno::enable_if("is_ao"), ui_position(5) //ifm::enableIf("is_ao","%value==True") ]], float reflection_roughness_constant = 0.01f [[ anno::display_name("Roughness"), anno::in_group("Reflectivity"), anno::hard_range(0.0,1.), anno::description("Higher roughness values lead to more blurry reflections"), ui_position(6) ]], uniform bool enable_reflectionroughness_texture = false [[ anno::display_name("Use Roughness Texture"), anno::in_group("Reflectivity"), anno::hard_range(0.0,1.), anno::description("Set to True to enable texture."), ui_position(7) ]], uniform texture_2d reflectionroughness_texture = texture_2d() [[ anno::display_name("Roughness Texture"), anno::in_group("Reflectivity"), ui_position(8) ]], float specular = 1.f [[ anno::display_name("Specular"), anno::in_group("Reflectivity"), anno::hard_range(0.f,1.f) ]], float metallic_constant = 0.f [[ anno::display_name("Metallic"), anno::in_group("Reflectivity"), anno::hard_range(0.0,1.), anno::description("Metallic Material"), ui_position(9) ]], uniform bool enable_metallic_texture = false [[ anno::display_name("Use Metallic Texture"), anno::in_group("Reflectivity"), anno::hard_range(0.0,1.), anno::description("Set to 1.f to enable texture."), ui_position(10) ]], uniform texture_2d metallic_texture = texture_2d() [[ anno::display_name("Metallic Texture"), anno::in_group("Reflectivity"), ui_position(11) ]], uniform bool enable_normalmap_texture = false [[ anno::display_name("Use Normal Texture"), anno::in_group("Normal"), anno::hard_range(0.0,1.), anno::description("Set to 1.f to enable texture."), ui_position(12) ]], uniform texture_2d normalmap_texture = texture_2d() [[ anno::display_name("Normal Texture"), anno::in_group("Normal"), ui_position(13) ]], uniform float normal_factor = 1.f [[ anno::display_name("Normal Strength"), anno::in_group("Normal"), anno::description("Strength of normal."), ui_position(34) ]], uniform float texture_tiling = 1.f [[ anno::display_name("Texture Tiling"), anno::in_group("Transforms") ]], uniform float texture_rotation = 0.f [[ anno::display_name("Texture Rotation"), anno::in_group("Transforms") ]] ) [[ anno::display_name("OmniPBR"), anno::description("PBR Material - MDL - Omniverse"), anno::author("NVIDIA CORPORATION"), anno::key_words(string[]("omni","generic")) ]] = let{ float reflection_roughness = enable_reflectionroughness_texture==true? ::nvidia::core_definitions::file_texture( texture: reflectionroughness_texture,scaling:float2(texture_tiling,texture_tiling),rotation:texture_rotation).mono : reflection_roughness_constant; color base_color = enable_basecolor_texture==true? ::nvidia::core_definitions::file_texture( texture: basecolor_texture,scaling:float2(texture_tiling,texture_tiling),rotation:texture_rotation).tint : color_constant; texture_return blend_color = base::blend_color_layers( layers: base::color_layer[]( base::color_layer( layer_color: ::nvidia::core_definitions::file_texture( texture: AO_map,scaling:float2(texture_tiling,texture_tiling),rotation:texture_rotation).tint, weight: 1.f, mode: color_layer_multiply )), base: base_color ); float metallic = enable_metallic_texture==true? ::nvidia::core_definitions::file_texture( texture: metallic_texture,scaling:float2(texture_tiling,texture_tiling),rotation:texture_rotation).mono : metallic_constant; color reflection_color = metallic ==false? color(1.f,1.f,1.f): base_color; bsdf diffuse_bsdf = df::diffuse_reflection_bsdf( tint:is_ao==true?blend_color.tint:base_color, roughness: 0.f ); /* float3 normal = ::nvidia::core_definitions::normalmap_texture( texture: normalmap_texture, factor: normal_factor); */ float3 normal = enable_normalmap_texture==true? ::nvidia::core_definitions::normalmap_texture( texture: normalmap_texture,scaling:float2(texture_tiling,texture_tiling),rotation:texture_rotation, factor: normal_factor): state::normal() ; bsdf reflection_bsdf = df::microfacet_ggx_vcavities_bsdf( roughness_u:reflection_roughness, roughness_v:reflection_roughness, tint:reflection_color, mode: df::scatter_reflect ); /* bsdf reflection_bsdf = df::simple_glossy_bsdf( roughness_u:reflection_roughness, roughness_v:reflection_roughness, tint:reflection_color, tangent_u:reflection_roughness, mode: df::scatter_reflect ); */ bsdf reflection_fresnel = df::fresnel_layer( ior: 1.4f, weight: specular, layer: reflection_bsdf, base: diffuse_bsdf ); bsdf reflection_metal = df::weighted_layer( weight: metallic, layer: reflection_bsdf, base: reflection_fresnel ); bsdf add_normal = df::weighted_layer( normal: normal, weight: 1., layer: reflection_metal ); material_surface surfaceMat = material_surface( scattering: add_normal ); } in material( ior: 1.4f, surface: surfaceMat );
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/OM-38291-one_ptinst.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (278.4470808503461, 264.8479133427526, 358.081751970601) 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 = { } } int refinementOverrideImplVersion = 0 dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def PointInstancer "PointInstancer" { point3f[] positions = [(100, 100, 0)] int[] protoIndices = [0] delete rel prototypes = </World/Source> prepend rel prototypes = </World/PointInstancer/Sphere> float3 xformOp:rotateXYZ = (0, 0, 0) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Sphere "Sphere" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] rel material:binding = </World/Looks/OmniPBR> ( bindMaterialAs = "weakerThanDescendants" ) color3f[] primvars:displayColor = [(0, 1, 0)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 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.rtx.tests/data/usd/hydra/ptinst_unnested_proto.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 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 PointInstancer "ptinst" { int[] protoIndices = [0] prepend rel prototypes = </World/Cube> point3f[] positions = [(150, 150, 0)] } 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 = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/OM-26055_scene.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (874.8390762853918, 760.4581205401474, 1017.5474271268703) double3 target = (-12.963569641111462, 14.854374460028794, 2.2737367544323206e-12) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } metersPerUnit = 0.009999999776482582 ) def Xform "scenes" { def Xform "scene_1" { def Xform "artbase" { } def Xform "rigid" { def Xform "static" { def Xform "rs_1" { custom uint actorFlags = 1 uint actorFlags.timeSamples = { 0: 1, } custom uint dominanceGroup = 0 uint dominanceGroup.timeSamples = { 0: 0, } custom int myId = 1 custom uint ownerClient = 0 uint ownerClient.timeSamples = { 0: 0, } custom uint64 PhysXObjPtr = 2 custom uint64 userData = 0 token visibility.timeSamples = { -1: "invisible", 0: "inherited", } quatf xformOp:orient = (1, 0, 0, 0) quatf xformOp:orient.timeSamples = { 0: (1, 0, 0, 0), } float3 xformOp:translate = (0, 0, 0) float3 xformOp:translate.timeSamples = { 0: (0, 0, 0), } uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient"] def Xform "s_1" { custom float contactOffset = 0.02 float contactOffset.timeSamples = { 0: 0.02, } custom uint flags = 11 uint flags.timeSamples = { 0: 11, } custom float minTorsionalPatchRadius = 0 float minTorsionalPatchRadius.timeSamples = { 0: 0, } custom uint[] queryFilterData = [0, 0, 0, 0] uint[] queryFilterData.timeSamples = { 0: [0, 0, 0, 0], } custom float restOffset = 0 float restOffset.timeSamples = { 0: 0, } custom uint[] simulationFilterData = [0, 0, 0, 0] uint[] simulationFilterData.timeSamples = { 0: [0, 0, 0, 0], } custom float torsionalPatchRadius = 0 float torsionalPatchRadius.timeSamples = { 0: 0, } custom uint64 userData = 0 token visibility.timeSamples = { -1: "invisible", 0: "inherited", } quatf xformOp:orient = (1, 0, 0, 0) quatf xformOp:orient.timeSamples = { 0: (1, 0, 0, 0), } float3 xformOp:scale float3 xformOp:translate = (0, 0, 0) float3 xformOp:translate.timeSamples = { 0: (0, 0, 0), } uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:orient", "xformOp:scale"] over "mat_1" ( prepend references = @./OM-26055_geom.usda@</geom/materials/mat_1> ) { } over "o" ( prepend references = @./OM-26055_geom.usda@</geom/xm_1> ) { } } } } } } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/ref_ptinst_inside_sginst.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 "Instance" ( instanceable = true prepend references = @./ptinst_inside_sginst.usda@</World/Source> ) { 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.rtx.tests/data/usd/hydra/LightLink.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50500) double radius = 500 } dictionary Perspective = { double3 position = (337.38153736971776, 570.0650348990841, 84.80722709850586) double3 target = (-14.458614885722056, -192.08536441796082, 44.73709418469141) } dictionary Right = { double3 position = (-50500, 0, -1.1213252548714081e-11) double radius = 500 } dictionary Top = { double3 position = (-4.325937547330752e-12, 49955.624378176675, 1.10923768788355e-11) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { token "rtx:rendermode" = "PathTracing" } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 uniform bool collection:lightLink:includeRoot = 0 prepend rel collection:lightLink:includes = </World/Cube> 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] 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 = (-155.994129, -104.583085, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Plane" { int[] faceVertexCounts = [4] int[] faceVertexIndices = [0, 2, 3, 1] normal3f[] normals = [(0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, 0, -50), (50, 0, -50), (-50, 0, 50), (50, 0, 50)] float2[] primvars:st = [(1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (10, 1, 10) double3 xformOp:translate = (0, -254.97166, 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] 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 = (22.027015686035156, -27.185077667236328, -4.458839271137549e-7) double3 xformOp:scale = (0.9999995231628418, 1.0000001192092896, 0.999998927116394) double3 xformOp:translate = (134.981258, -109.47815, -23.340719) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Xform "Left" { 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 "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] 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 = (-216.10941, -156.989997, 214.810354) 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] 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 = (161.948153, -115.070427, 232.475083) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skelcylinder.usda
#usda 1.0 ( defaultPrim = "Root" endTimeCode = 120 startTimeCode = 1 timeCodesPerSecond = 24 upAxis = "Z" customLayerData = { dictionary cameraSettings = { dictionary Perspective = { double3 position = (7.601309856061961, 7.5704013906765235, 12.557101983223568) double3 target = (0.03090846538543701, 0, 4.986700773239136) } string boundCamera = "/OmniverseKit_Persp" } } ) def "Root" ( kind = "component" ) { def SkelRoot "group1" { matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def Mesh "pCylinder1" ( prepend apiSchemas = ["SkelBindingAPI", "ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.0000005, -2.0000002, 0), (2, 2.000001, 10)] 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, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 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] int[] faceVertexIndices = [0, 1, 21, 20, 1, 2, 22, 21, 2, 3, 23, 22, 3, 4, 24, 23, 4, 5, 25, 24, 5, 6, 26, 25, 6, 7, 27, 26, 7, 8, 28, 27, 8, 9, 29, 28, 9, 10, 30, 29, 10, 11, 31, 30, 11, 12, 32, 31, 12, 13, 33, 32, 13, 14, 34, 33, 14, 15, 35, 34, 15, 16, 36, 35, 16, 17, 37, 36, 17, 18, 38, 37, 18, 19, 39, 38, 19, 0, 20, 39, 20, 21, 41, 40, 21, 22, 42, 41, 22, 23, 43, 42, 23, 24, 44, 43, 24, 25, 45, 44, 25, 26, 46, 45, 26, 27, 47, 46, 27, 28, 48, 47, 28, 29, 49, 48, 29, 30, 50, 49, 30, 31, 51, 50, 31, 32, 52, 51, 32, 33, 53, 52, 33, 34, 54, 53, 34, 35, 55, 54, 35, 36, 56, 55, 36, 37, 57, 56, 37, 38, 58, 57, 38, 39, 59, 58, 39, 20, 40, 59, 40, 41, 61, 60, 41, 42, 62, 61, 42, 43, 63, 62, 43, 44, 64, 63, 44, 45, 65, 64, 45, 46, 66, 65, 46, 47, 67, 66, 47, 48, 68, 67, 48, 49, 69, 68, 49, 50, 70, 69, 50, 51, 71, 70, 51, 52, 72, 71, 52, 53, 73, 72, 53, 54, 74, 73, 54, 55, 75, 74, 55, 56, 76, 75, 56, 57, 77, 76, 57, 58, 78, 77, 58, 59, 79, 78, 59, 40, 60, 79, 60, 61, 81, 80, 61, 62, 82, 81, 62, 63, 83, 82, 63, 64, 84, 83, 64, 65, 85, 84, 65, 66, 86, 85, 66, 67, 87, 86, 67, 68, 88, 87, 68, 69, 89, 88, 69, 70, 90, 89, 70, 71, 91, 90, 71, 72, 92, 91, 72, 73, 93, 92, 73, 74, 94, 93, 74, 75, 95, 94, 75, 76, 96, 95, 76, 77, 97, 96, 77, 78, 98, 97, 78, 79, 99, 98, 79, 60, 80, 99, 80, 81, 101, 100, 81, 82, 102, 101, 82, 83, 103, 102, 83, 84, 104, 103, 84, 85, 105, 104, 85, 86, 106, 105, 86, 87, 107, 106, 87, 88, 108, 107, 88, 89, 109, 108, 89, 90, 110, 109, 90, 91, 111, 110, 91, 92, 112, 111, 92, 93, 113, 112, 93, 94, 114, 113, 94, 95, 115, 114, 95, 96, 116, 115, 96, 97, 117, 116, 97, 98, 118, 117, 98, 99, 119, 118, 99, 80, 100, 119, 100, 101, 121, 120, 101, 102, 122, 121, 102, 103, 123, 122, 103, 104, 124, 123, 104, 105, 125, 124, 105, 106, 126, 125, 106, 107, 127, 126, 107, 108, 128, 127, 108, 109, 129, 128, 109, 110, 130, 129, 110, 111, 131, 130, 111, 112, 132, 131, 112, 113, 133, 132, 113, 114, 134, 133, 114, 115, 135, 134, 115, 116, 136, 135, 116, 117, 137, 136, 117, 118, 138, 137, 118, 119, 139, 138, 119, 100, 120, 139, 120, 121, 141, 140, 121, 122, 142, 141, 122, 123, 143, 142, 123, 124, 144, 143, 124, 125, 145, 144, 125, 126, 146, 145, 126, 127, 147, 146, 127, 128, 148, 147, 128, 129, 149, 148, 129, 130, 150, 149, 130, 131, 151, 150, 131, 132, 152, 151, 132, 133, 153, 152, 133, 134, 154, 153, 134, 135, 155, 154, 135, 136, 156, 155, 136, 137, 157, 156, 137, 138, 158, 157, 138, 139, 159, 158, 139, 120, 140, 159, 140, 141, 161, 160, 141, 142, 162, 161, 142, 143, 163, 162, 143, 144, 164, 163, 144, 145, 165, 164, 145, 146, 166, 165, 146, 147, 167, 166, 147, 148, 168, 167, 148, 149, 169, 168, 149, 150, 170, 169, 150, 151, 171, 170, 151, 152, 172, 171, 152, 153, 173, 172, 153, 154, 174, 173, 154, 155, 175, 174, 155, 156, 176, 175, 156, 157, 177, 176, 157, 158, 178, 177, 158, 159, 179, 178, 159, 140, 160, 179, 160, 161, 181, 180, 161, 162, 182, 181, 162, 163, 183, 182, 163, 164, 184, 183, 164, 165, 185, 184, 165, 166, 186, 185, 166, 167, 187, 186, 167, 168, 188, 187, 168, 169, 189, 188, 169, 170, 190, 189, 170, 171, 191, 190, 171, 172, 192, 191, 172, 173, 193, 192, 173, 174, 194, 193, 174, 175, 195, 194, 175, 176, 196, 195, 176, 177, 197, 196, 177, 178, 198, 197, 178, 179, 199, 198, 179, 160, 180, 199, 180, 181, 201, 200, 181, 182, 202, 201, 182, 183, 203, 202, 183, 184, 204, 203, 184, 185, 205, 204, 185, 186, 206, 205, 186, 187, 207, 206, 187, 188, 208, 207, 188, 189, 209, 208, 189, 190, 210, 209, 190, 191, 211, 210, 191, 192, 212, 211, 192, 193, 213, 212, 193, 194, 214, 213, 194, 195, 215, 214, 195, 196, 216, 215, 196, 197, 217, 216, 197, 198, 218, 217, 198, 199, 219, 218, 199, 180, 200, 219, 200, 201, 221, 220, 201, 202, 222, 221, 202, 203, 223, 222, 203, 204, 224, 223, 204, 205, 225, 224, 205, 206, 226, 225, 206, 207, 227, 226, 207, 208, 228, 227, 208, 209, 229, 228, 209, 210, 230, 229, 210, 211, 231, 230, 211, 212, 232, 231, 212, 213, 233, 232, 213, 214, 234, 233, 214, 215, 235, 234, 215, 216, 236, 235, 216, 217, 237, 236, 217, 218, 238, 237, 218, 219, 239, 238, 219, 200, 220, 239, 220, 221, 241, 240, 221, 222, 242, 241, 222, 223, 243, 242, 223, 224, 244, 243, 224, 225, 245, 244, 225, 226, 246, 245, 226, 227, 247, 246, 227, 228, 248, 247, 228, 229, 249, 248, 229, 230, 250, 249, 230, 231, 251, 250, 231, 232, 252, 251, 232, 233, 253, 252, 233, 234, 254, 253, 234, 235, 255, 254, 235, 236, 256, 255, 236, 237, 257, 256, 237, 238, 258, 257, 238, 239, 259, 258, 239, 220, 240, 259, 1, 0, 260, 2, 1, 260, 3, 2, 260, 4, 3, 260, 5, 4, 260, 6, 5, 260, 7, 6, 260, 8, 7, 260, 9, 8, 260, 10, 9, 260, 11, 10, 260, 12, 11, 260, 13, 12, 260, 14, 13, 260, 15, 14, 260, 16, 15, 260, 17, 16, 260, 18, 17, 260, 19, 18, 260, 0, 19, 260, 240, 241, 261, 241, 242, 261, 242, 243, 261, 243, 244, 261, 244, 245, 261, 245, 246, 261, 246, 247, 261, 247, 248, 261, 248, 249, 261, 249, 250, 261, 250, 251, 261, 251, 252, 261, 252, 253, 261, 253, 254, 261, 254, 255, 261, 255, 256, 261, 256, 257, 261, 257, 258, 261, 258, 259, 261, 259, 240, 261] normal3f[] normals = [(0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.9510565, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.5877852, -0.809017, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.809017, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.2095654e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901715, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.5877854, 0.8090168, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877855, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.58778507, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.58778524, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.5877853, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.80901694, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.80901706, 0.5877851, 0), (-0.5877854, 0.80901694, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (8.8258304e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.309017, -0.9510565, 0), (8.8258304e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.5877851, -0.809017, 0), (0.309017, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901694, -0.5877853, 0), (0.5877851, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.5877855, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.80901706, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877855, 0.8090169, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (8.8258304e-8, -1, 0), (8.825832e-8, -1, 0), (-0.30901694, -0.95105654, 0), (8.8258304e-8, -1, 0), (0.309017, -0.9510565, 0), (0.30901703, -0.95105654, 0), (8.825832e-8, -1, 0), (0.309017, -0.9510565, 0), (0.5877851, -0.809017, 0), (0.5877853, -0.80901706, 0), (0.30901703, -0.95105654, 0), (0.5877851, -0.809017, 0), (0.80901694, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.80901706, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.58778524, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.58778524, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.9510566, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.30901694, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.8090169, -0.5877854, 0), (-0.9510565, -0.30901694, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.30901694, -0.9510565, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (8.825832e-8, -1, 0), (9.209566e-8, -1, 0), (-0.30901694, -0.9510565, 0), (8.825832e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.30901703, -0.9510565, 0), (9.209566e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.5877853, -0.80901706, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.80901706, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.309016, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.58778524, 0), (0.8090169, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.58778524, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.80901706, 0), (0.8090169, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.9510566, 0), (0.30901685, 0.9510566, 0), (0.5877851, 0.80901706, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.95105654, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.5877854, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (9.209566e-8, -1, 0), (8.8258325e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209566e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.8090169, 0.5877853, 0), (0.8090169, 0.58778536, 0), (0.9510569, 0.3090161, 0), (0.8090169, 0.5877853, 0), (0.5877851, 0.80901706, 0), (0.58778524, 0.80901706, 0), (0.8090169, 0.58778536, 0), (0.5877851, 0.80901706, 0), (0.30901685, 0.9510566, 0), (0.3090169, 0.9510566, 0), (0.58778524, 0.80901706, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090169, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.95105654, -0.3090171, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.58778554, 0), (-0.95105654, -0.3090171, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.809017, 0), (-0.8090169, -0.58778554, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.3090169, -0.9510566, 0), (-0.5877852, -0.809017, 0), (-0.3090169, -0.95105654, 0), (8.8258325e-8, -1, 0), (8.4420996e-8, -1, 0), (-0.3090169, -0.9510566, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.4420996e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.809017, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.809017, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.3090161, 0), (1, -9.593294e-7, 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, 5.1435853e-7, 1), (0, 7.347982e-7, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, -5.143587e-7, 1), (0, -7.347983e-7, 1), (0, 7.347982e-7, 1), (0, -5.143587e-7, 1), (0, -0.0000020574357, 1), (0, -0.0000022778752, 1), (0, -7.347983e-7, 1), (0, -0.0000020574357, 1), (0, -0, 1), (0, -0, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, -0, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 4.0413923e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 6.062089e-7, 1), (0, 4.0413923e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 1.9288467e-7, 1), (0, 1.1021976e-7, 1), (0, 6.062089e-7, 1), (0, 1.9288467e-7, 1), (0, -6.429489e-8, 1), (0, -9.1849834e-8, 1), (0, 1.1021976e-7, 1), (0, -6.429489e-8, 1), (0, -0, 1), (0, -0, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 8.082787e-7, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 0.0000010287172, 1), (0, 8.0827857e-7, 1), (0, 8.082787e-7, 1), (0, 0.0000010287172, 1), (0, -0, 1), (0, -0, 1), (0, 8.0827857e-7, 1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 7.347982e-7, 1), (0, -1.7359638e-7, 1), (0, 7.347982e-7, 1), (0, -7.347983e-7, 1), (0, -1.7359638e-7, 1), (0, -7.347983e-7, 1), (0, -0.0000022778752, 1), (0, -1.7359638e-7, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 4.0413923e-7, 1), (0, -1.7359638e-7, 1), (0, 4.0413923e-7, 1), (0, 6.062089e-7, 1), (0, -1.7359638e-7, 1), (0, 6.062089e-7, 1), (0, 1.1021976e-7, 1), (0, -1.7359638e-7, 1), (0, 1.1021976e-7, 1), (0, -9.1849834e-8, 1), (0, -1.7359638e-7, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082787e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082787e-7, 1), (0, 8.0827857e-7, 1), (0, -1.7359638e-7, 1), (0, 8.0827857e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1)] ( interpolation = "faceVarying" ) point3f[] points = [(0.95105714, 0.30901718, 0), (0.80901754, 0.5877856, 0), (0.5877856, 0.8090175, 0), (0.30901715, 0.951057, 0), (0, 1.0000005, 0), (-0.30901715, 0.95105696, 0), (-0.5877855, 0.8090173, 0), (-0.80901724, 0.5877854, 0), (-0.9510568, 0.30901706, 0), (-1.0000002, -0, 0), (-0.9510568, -0.30901706, 0), (-0.8090172, -0.58778536, 0), (-0.58778536, -0.8090171, 0), (-0.30901706, -0.95105666, 0), (-2.9802322e-8, -1.0000001, 0), (0.30901697, -0.9510566, 0), (0.58778524, -0.80901706, 0), (0.809017, -0.5877853, 0), (0.95105654, -0.309017, 0), (1, -0, 0), (1.9021143, 0.61803436, 0), (1.6180351, 1.1755712, 0), (1.1755712, 1.618035, 0), (0.6180343, 1.902114, 0), (0, 2.000001, 0), (-0.6180343, 1.9021139, 0), (-1.175571, 1.6180346, 0), (-1.6180345, 1.1755708, 0), (-1.9021136, 0.6180341, 0), (-2.0000005, -0, 0), (-1.9021136, -0.6180341, 0), (-1.6180344, -1.1755707, 0), (-1.1755707, -1.6180342, 0), (-0.6180341, -1.9021133, 0), (-5.9604645e-8, -2.0000002, 0), (0.61803395, -1.9021132, 0), (1.1755705, -1.6180341, 0), (1.618034, -1.1755706, 0), (1.9021131, -0.618034, 0), (2, -0, 0), (1.9021143, 0.61803436, 1), (1.6180351, 1.1755712, 1), (1.1755712, 1.618035, 1), (0.6180343, 1.902114, 1), (0, 2.000001, 1), (-0.6180343, 1.9021139, 1), (-1.175571, 1.6180346, 1), (-1.6180345, 1.1755708, 1), (-1.9021136, 0.6180341, 1), (-2.0000005, -0, 1), (-1.9021136, -0.6180341, 1), (-1.6180344, -1.1755707, 1), (-1.1755707, -1.6180342, 1), (-0.6180341, -1.9021133, 1), (-5.9604645e-8, -2.0000002, 1), (0.61803395, -1.9021132, 1), (1.1755705, -1.6180341, 1), (1.618034, -1.1755706, 1), (1.9021131, -0.618034, 1), (2, -0, 1), (1.9021143, 0.61803436, 2), (1.6180351, 1.1755712, 2), (1.1755712, 1.618035, 2), (0.6180343, 1.902114, 2), (0, 2.000001, 2), (-0.6180343, 1.9021139, 2), (-1.175571, 1.6180346, 2), (-1.6180345, 1.1755708, 2), (-1.9021136, 0.6180341, 2), (-2.0000005, -0, 2), (-1.9021136, -0.6180341, 2), (-1.6180344, -1.1755707, 2), (-1.1755707, -1.6180342, 2), (-0.6180341, -1.9021133, 2), (-5.9604645e-8, -2.0000002, 2), (0.61803395, -1.9021132, 2), (1.1755705, -1.6180341, 2), (1.618034, -1.1755706, 2), (1.9021131, -0.618034, 2), (2, -0, 2), (1.9021143, 0.61803436, 3), (1.6180351, 1.1755712, 3), (1.1755712, 1.618035, 3), (0.6180343, 1.902114, 3), (0, 2.000001, 3), (-0.6180343, 1.9021139, 3), (-1.175571, 1.6180346, 3), (-1.6180345, 1.1755708, 3), (-1.9021136, 0.6180341, 3), (-2.0000005, -0, 3), (-1.9021136, -0.6180341, 3), (-1.6180344, -1.1755707, 3), (-1.1755707, -1.6180342, 3), (-0.6180341, -1.9021133, 3), (-5.9604645e-8, -2.0000002, 3), (0.61803395, -1.9021132, 3), (1.1755705, -1.6180341, 3), (1.618034, -1.1755706, 3), (1.9021131, -0.618034, 3), (2, -0, 3), (1.9021143, 0.61803436, 4), (1.6180351, 1.1755712, 4), (1.1755712, 1.618035, 4), (0.6180343, 1.902114, 4), (0, 2.000001, 4), (-0.6180343, 1.9021139, 4), (-1.175571, 1.6180346, 4), (-1.6180345, 1.1755708, 4), (-1.9021136, 0.6180341, 4), (-2.0000005, -0, 4), (-1.9021136, -0.6180341, 4), (-1.6180344, -1.1755707, 4), (-1.1755707, -1.6180342, 4), (-0.6180341, -1.9021133, 4), (-5.9604645e-8, -2.0000002, 4), (0.61803395, -1.9021132, 4), (1.1755705, -1.6180341, 4), (1.618034, -1.1755706, 4), (1.9021131, -0.618034, 4), (2, -0, 4), (1.9021143, 0.61803436, 5), (1.6180351, 1.1755712, 5), (1.1755712, 1.618035, 5), (0.6180343, 1.902114, 5), (0, 2.000001, 5), (-0.6180343, 1.9021139, 5), (-1.175571, 1.6180346, 5), (-1.6180345, 1.1755708, 5), (-1.9021136, 0.6180341, 5), (-2.0000005, -0, 5), (-1.9021136, -0.6180341, 5), (-1.6180344, -1.1755707, 5), (-1.1755707, -1.6180342, 5), (-0.6180341, -1.9021133, 5), (-5.9604645e-8, -2.0000002, 5), (0.61803395, -1.9021132, 5), (1.1755705, -1.6180341, 5), (1.618034, -1.1755706, 5), (1.9021131, -0.618034, 5), (2, -0, 5), (1.9021143, 0.61803436, 6), (1.6180351, 1.1755712, 6), (1.1755712, 1.618035, 6), (0.6180343, 1.902114, 6), (0, 2.000001, 6), (-0.6180343, 1.9021139, 6), (-1.175571, 1.6180346, 6), (-1.6180345, 1.1755708, 6), (-1.9021136, 0.6180341, 6), (-2.0000005, -0, 6), (-1.9021136, -0.6180341, 6), (-1.6180344, -1.1755707, 6), (-1.1755707, -1.6180342, 6), (-0.6180341, -1.9021133, 6), (-5.9604645e-8, -2.0000002, 6), (0.61803395, -1.9021132, 6), (1.1755705, -1.6180341, 6), (1.618034, -1.1755706, 6), (1.9021131, -0.618034, 6), (2, -0, 6), (1.9021143, 0.61803436, 7), (1.6180351, 1.1755712, 7), (1.1755712, 1.618035, 7), (0.6180343, 1.902114, 7), (0, 2.000001, 7), (-0.6180343, 1.9021139, 7), (-1.175571, 1.6180346, 7), (-1.6180345, 1.1755708, 7), (-1.9021136, 0.6180341, 7), (-2.0000005, -0, 7), (-1.9021136, -0.6180341, 7), (-1.6180344, -1.1755707, 7), (-1.1755707, -1.6180342, 7), (-0.6180341, -1.9021133, 7), (-5.9604645e-8, -2.0000002, 7), (0.61803395, -1.9021132, 7), (1.1755705, -1.6180341, 7), (1.618034, -1.1755706, 7), (1.9021131, -0.618034, 7), (2, -0, 7), (1.9021143, 0.61803436, 8), (1.6180351, 1.1755712, 8), (1.1755712, 1.618035, 8), (0.6180343, 1.902114, 8), (0, 2.000001, 8), (-0.6180343, 1.9021139, 8), (-1.175571, 1.6180346, 8), (-1.6180345, 1.1755708, 8), (-1.9021136, 0.6180341, 8), (-2.0000005, -0, 8), (-1.9021136, -0.6180341, 8), (-1.6180344, -1.1755707, 8), (-1.1755707, -1.6180342, 8), (-0.6180341, -1.9021133, 8), (-5.9604645e-8, -2.0000002, 8), (0.61803395, -1.9021132, 8), (1.1755705, -1.6180341, 8), (1.618034, -1.1755706, 8), (1.9021131, -0.618034, 8), (2, -0, 8), (1.9021143, 0.61803436, 9), (1.6180351, 1.1755712, 9), (1.1755712, 1.618035, 9), (0.6180343, 1.902114, 9), (0, 2.000001, 9), (-0.6180343, 1.9021139, 9), (-1.175571, 1.6180346, 9), (-1.6180345, 1.1755708, 9), (-1.9021136, 0.6180341, 9), (-2.0000005, -0, 9), (-1.9021136, -0.6180341, 9), (-1.6180344, -1.1755707, 9), (-1.1755707, -1.6180342, 9), (-0.6180341, -1.9021133, 9), (-5.9604645e-8, -2.0000002, 9), (0.61803395, -1.9021132, 9), (1.1755705, -1.6180341, 9), (1.618034, -1.1755706, 9), (1.9021131, -0.618034, 9), (2, -0, 9), (1.9021143, 0.61803436, 10), (1.6180351, 1.1755712, 10), (1.1755712, 1.618035, 10), (0.6180343, 1.902114, 10), (0, 2.000001, 10), (-0.6180343, 1.9021139, 10), (-1.175571, 1.6180346, 10), (-1.6180345, 1.1755708, 10), (-1.9021136, 0.6180341, 10), (-2.0000005, -0, 10), (-1.9021136, -0.6180341, 10), (-1.6180344, -1.1755707, 10), (-1.1755707, -1.6180342, 10), (-0.6180341, -1.9021133, 10), (-5.9604645e-8, -2.0000002, 10), (0.61803395, -1.9021132, 10), (1.1755705, -1.6180341, 10), (1.618034, -1.1755706, 10), (1.9021131, -0.618034, 10), (2, -0, 10), (0.95105714, 0.30901718, 10), (0.80901754, 0.5877856, 10), (0.5877856, 0.8090175, 10), (0.30901715, 0.951057, 10), (0, 1.0000005, 10), (-0.30901715, 0.95105696, 10), (-0.5877855, 0.8090173, 10), (-0.80901724, 0.5877854, 10), (-0.9510568, 0.30901706, 10), (-1.0000002, -0, 10), (-0.9510568, -0.30901706, 10), (-0.8090172, -0.58778536, 10), (-0.58778536, -0.8090171, 10), (-0.30901706, -0.95105666, 10), (-2.9802322e-8, -1.0000001, 10), (0.30901697, -0.9510566, 10), (0.58778524, -0.80901706, 10), (0.809017, -0.5877853, 10), (0.95105654, -0.309017, 10), (1, -0, 10), (0, -0, 0), (0, -0, 10)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 0, 1, 2, 0, 0, 4, 3, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [0.9914398, 0.007798158, 0.00056962454, 0.00011597502, 0.00007644505, 0.9911016, 0.008106242, 0.00059212884, 0.00012055687, 0.000079465186, 0.99056286, 0.008597037, 0.0006279794, 0.00012785601, 0.00008427643, 0.98986334, 0.009234303, 0.0006745291, 0.0001373335, 0.00009052352, 0.9890613, 0.009965006, 0.00072790415, 0.00014820059, 0.000097686585, 0.98823136, 0.010720953, 0.0007831231, 0.00015944311, 0.0001050971, 0.9874593, 0.011424304, 0.0008345, 0.00016990342, 0.00011199202, 0.9868309, 0.011996779, 0.00087631703, 0.00017841732, 0.000117603966, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.98627734, 0.012501058, 0.0009131526, 0.000185917, 0.00012254738, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.986831, 0.011996778, 0.00087631686, 0.00017841728, 0.000117603944, 0.9874593, 0.011424296, 0.00083449937, 0.00016990327, 0.000111991925, 0.9882313, 0.01072094, 0.000783122, 0.0001594429, 0.00010509696, 0.98906124, 0.009964993, 0.0007279031, 0.00014820037, 0.00009768643, 0.98986334, 0.009234288, 0.00067452795, 0.00013733325, 0.000090523354, 0.99056286, 0.008597019, 0.000627978, 0.00012785573, 0.00008427624, 0.9911016, 0.008106223, 0.0005921274, 0.000120556564, 0.00007946499, 0.9914398, 0.00779814, 0.0005696231, 0.00011597471, 0.000076444856, 0.991555, 0.00769326, 0.000561962, 0.000114414936, 0.00007541673, 0.9122156, 0.07669155, 0.00810055, 0.0017938935, 0.0011983063, 0.9107189, 0.077999204, 0.00823867, 0.0018244808, 0.0012187384, 0.90837055, 0.0800508, 0.008455371, 0.0018724698, 0.0012507946, 0.90539, 0.0826547, 0.008730407, 0.0019333775, 0.0012914804, 0.9020614, 0.085562706, 0.0090375645, 0.0020013985, 0.001336918, 0.8987084, 0.08849201, 0.009346972, 0.002069918, 0.0013826884, 0.89566416, 0.09115167, 0.009627898, 0.00213213, 0.0014242454, 0.8932356, 0.09327323, 0.0098519875, 0.0021817551, 0.0014573947, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.891131, 0.09511205, 0.010046211, 0.0022247666, 0.0014861261, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.8932356, 0.093273215, 0.009851985, 0.0021817544, 0.0014573943, 0.8956642, 0.091151625, 0.009627892, 0.0021321285, 0.0014242444, 0.8987086, 0.088491954, 0.009346964, 0.0020699159, 0.001382687, 0.9020615, 0.08556263, 0.009037553, 0.002001396, 0.0013369162, 0.90539014, 0.0826546, 0.008730393, 0.0019333743, 0.0012914783, 0.9083707, 0.08005069, 0.008455355, 0.0018724661, 0.0012507922, 0.91071904, 0.07799908, 0.008238653, 0.0018244769, 0.0012187357, 0.91221595, 0.07669144, 0.008100534, 0.0017938899, 0.0011983039, 0.9127295, 0.07624267, 0.008053132, 0.0017833925, 0.0011912917, 0.79757524, 0.18422364, 0.01401941, 0.002549811, 0.0016318791, 0.79559076, 0.18602969, 0.01415685, 0.0025748082, 0.0016478773, 0.7925068, 0.18883635, 0.014370436, 0.0026136546, 0.0016727389, 0.78863347, 0.19236143, 0.014638692, 0.0026624443, 0.0017039644, 0.7843574, 0.19625312, 0.014934849, 0.0027163082, 0.0017384373, 0.7801007, 0.20012699, 0.015229651, 0.002769926, 0.0017727527, 0.77627844, 0.20360558, 0.015494369, 0.0028180722, 0.0018035662, 0.77325755, 0.20635484, 0.015703585, 0.002856124, 0.0018279193, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.77065885, 0.20871985, 0.015883561, 0.0028888572, 0.0018488687, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.7732577, 0.20635484, 0.015703583, 0.0028561235, 0.001827919, 0.7762785, 0.20360552, 0.015494359, 0.0028180701, 0.001803565, 0.7801008, 0.2001269, 0.015229637, 0.0027699233, 0.0017727509, 0.7843574, 0.19625297, 0.014934831, 0.0027163047, 0.001738435, 0.78863364, 0.19236128, 0.014638673, 0.0026624403, 0.0017039618, 0.79250705, 0.18883617, 0.014370412, 0.0026136497, 0.0016727359, 0.795591, 0.18602951, 0.014156824, 0.0025748028, 0.0016478739, 0.7975755, 0.18422346, 0.014019383, 0.0025498057, 0.0016318756, 0.7982601, 0.18360043, 0.01397197, 0.0025411823, 0.0016263566, 0.6015815, 0.37000003, 0.023125038, 0.0032929934, 0.0020004367, 0.60011387, 0.371363, 0.023210224, 0.0033051237, 0.0020078055, 0.59784955, 0.37346572, 0.02334164, 0.0033238372, 0.0020191737, 0.5950339, 0.37608063, 0.02350507, 0.0033471093, 0.002033311, 0.5919611, 0.37893423, 0.023683418, 0.003372506, 0.002048739, 0.58893895, 0.38174084, 0.02385883, 0.0033974845, 0.0020639133, 0.5862557, 0.38423267, 0.024014562, 0.0034196607, 0.0020773849, 0.58415526, 0.3861833, 0.024136472, 0.0034370206, 0.0020879305, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.58236253, 0.3878482, 0.024240525, 0.0034518375, 0.0020969317, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.5841553, 0.3861833, 0.024136467, 0.0034370197, 0.00208793, 0.5862558, 0.38423264, 0.02401455, 0.0034196584, 0.0020773832, 0.588939, 0.3817408, 0.02385881, 0.003397481, 0.002063911, 0.5919612, 0.37893417, 0.023683393, 0.003372502, 0.0020487367, 0.595034, 0.37608057, 0.02350504, 0.0033471042, 0.002033308, 0.5978497, 0.37346566, 0.023341607, 0.0033238316, 0.0020191702, 0.600114, 0.3713629, 0.023210185, 0.0033051171, 0.0020078013, 0.60158163, 0.36999995, 0.023124997, 0.0032929864, 0.0020004322, 0.6020899, 0.36952794, 0.023095496, 0.0032887855, 0.0019978804, 0.47403845, 0.4736809, 0.044845615, 0.0047368202, 0.0026980822, 0.4739865, 0.47372782, 0.04485005, 0.004737289, 0.0026983493, 0.47392228, 0.47378576, 0.044855528, 0.0047378675, 0.0026986788, 0.47387025, 0.47383252, 0.04485995, 0.004738334, 0.0026989444, 0.47385046, 0.47385046, 0.04486164, 0.0047385124, 0.0026990462, 0.47385046, 0.47385046, 0.044861637, 0.0047385124, 0.002699046, 0.47385046, 0.47385046, 0.04486163, 0.004738511, 0.0026990452, 0.47385043, 0.47385043, 0.044861615, 0.004738509, 0.002699044, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861607, 0.0047385083, 0.0026990436, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861604, 0.004738508, 0.0026990434, 0.47385043, 0.47385043, 0.0448616, 0.0047385073, 0.002699043, 0.47385043, 0.47385043, 0.0448616, 0.004738507, 0.002699043, 0.47385043, 0.47385043, 0.044861592, 0.0047385064, 0.0026990424, 0.47387028, 0.47383255, 0.044859894, 0.0047383267, 0.0026989402, 0.47392228, 0.47378573, 0.04485546, 0.004737858, 0.0026986732, 0.47398654, 0.47372785, 0.04484998, 0.0047372794, 0.0026983435, 0.4740386, 0.4736811, 0.044845548, 0.004736811, 0.002698077, 0.47405848, 0.4736632, 0.044843853, 0.0047366316, 0.0026979747, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.1302746, 0.009913891, 0.005210989, 0.5210978, 0.33350274, 0.1302746, 0.009913888, 0.0052109878, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.0052109873, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.005210987, 0.5210979, 0.33350274, 0.13027458, 0.009913885, 0.005210986, 0.5210979, 0.3335027, 0.13027455, 0.009913881, 0.0052109845, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.00991388, 0.0052109836, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.009913879, 0.005210983, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913877, 0.0052109817, 0.52109796, 0.3335027, 0.1302745, 0.009913876, 0.005210981, 0.52109796, 0.3335027, 0.1302745, 0.009913875, 0.0052109803, 0.52109796, 0.3335027, 0.1302745, 0.009913874, 0.0052109803, 0.52109796, 0.3335027, 0.13027449, 0.009913874, 0.00521098, 0.52109796, 0.3335027, 0.13027449, 0.009913873, 0.00521098, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523114, 0.0097612925, 0.5130769, 0.32836935, 0.12826936, 0.02052311, 0.009761291, 0.5130769, 0.32836935, 0.12826934, 0.020523109, 0.009761289, 0.5130769, 0.32836935, 0.12826934, 0.020523107, 0.009761289, 0.51307696, 0.32836935, 0.12826933, 0.020523103, 0.009761286, 0.513077, 0.32836938, 0.12826933, 0.0205231, 0.009761285, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523097, 0.009761283, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523096, 0.009761283, 0.513077, 0.32836932, 0.1282693, 0.020523092, 0.00976128, 0.513077, 0.32836932, 0.1282693, 0.02052309, 0.00976128, 0.513077, 0.32836932, 0.12826928, 0.020523088, 0.009761279, 0.513077, 0.32836932, 0.12826928, 0.020523086, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523082, 0.009761276, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467415, 0.042467415, 0.017942488, 0.44856134, 0.44856134, 0.042467408, 0.042467408, 0.017942484, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467393, 0.042467393, 0.017942477, 0.44856137, 0.44856137, 0.042467386, 0.042467386, 0.017942473, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467378, 0.042467378, 0.01794247, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467374, 0.042467374, 0.017942468, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.042467367, 0.042467367, 0.017942462, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467356, 0.042467356, 0.017942458, 0.4485615, 0.4485615, 0.042467356, 0.042467356, 0.017942458, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.12347673, 0.04676044, 0.019756291, 0.49390635, 0.3161002, 0.12347672, 0.046760432, 0.019756287, 0.49390638, 0.3161002, 0.123476714, 0.04676043, 0.019756285, 0.49390638, 0.3161002, 0.12347671, 0.04676043, 0.019756285, 0.4939064, 0.3161002, 0.1234767, 0.04676042, 0.01975628, 0.49390644, 0.31610018, 0.123476684, 0.04676041, 0.019756276, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760406, 0.019756272, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760403, 0.019756272, 0.49390647, 0.31610018, 0.12347666, 0.0467604, 0.01975627, 0.4939065, 0.31610018, 0.12347666, 0.0467604, 0.019756269, 0.49390656, 0.3161002, 0.12347667, 0.0467604, 0.019756269, 0.4939066, 0.3161002, 0.12347666, 0.04676039, 0.019756267, 0.4939066, 0.3161002, 0.123476654, 0.04676039, 0.019756265, 0.4939066, 0.3161002, 0.123476654, 0.046760388, 0.019756265, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347663, 0.046760384, 0.019756261, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.46317184, 0.2964301, 0.1157931, 0.1157931, 0.008811848, 0.46317187, 0.2964301, 0.11579309, 0.11579309, 0.008811847, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.46317193, 0.29643014, 0.115793094, 0.115793094, 0.008811846, 0.4631719, 0.2964301, 0.115793064, 0.115793064, 0.008811844, 0.46317193, 0.2964301, 0.11579306, 0.11579306, 0.008811842, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.11579303, 0.11579303, 0.008811837, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811836, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317205, 0.2964301, 0.11579301, 0.11579301, 0.008811834, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.03449396, 0.0036434263, 0.36434186, 0.36434186, 0.23317888, 0.034493953, 0.0036434254, 0.36434186, 0.36434186, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317888, 0.03449395, 0.003643425, 0.3643419, 0.3643419, 0.2331789, 0.034493946, 0.0036434243, 0.36434188, 0.36434188, 0.23317887, 0.034493934, 0.0036434229, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.03449393, 0.0036434222, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.034493927, 0.003643422, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.0036434212, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.003643421, 0.3643419, 0.3643419, 0.23317884, 0.03449392, 0.0036434208, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.00364342, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.0036434198, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317882, 0.03449391, 0.0036434191, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.37234294, 0.37234294, 0.23829961, 0.014893747, 0.0021208616, 0.3723429, 0.3723429, 0.23829956, 0.014893741, 0.0021208609, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208606, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208604, 0.3723429, 0.3723429, 0.23829955, 0.014893736, 0.00212086, 0.37234294, 0.37234294, 0.23829953, 0.014893732, 0.0021208592, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829953, 0.014893729, 0.0021208588, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829952, 0.014893728, 0.0021208585, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.014893724, 0.0021208578, 0.37234294, 0.37234294, 0.2382995, 0.014893722, 0.0021208576, 0.37234297, 0.37234297, 0.2382995, 0.014893721, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208571, 0.37234297, 0.37234297, 0.2382995, 0.014893719, 0.0021208571, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.11092093, 0.0015352394, 0.00017747369, 0.44368318, 0.44368318, 0.11092091, 0.0015352389, 0.00017747364, 0.44368318, 0.44368318, 0.110920906, 0.0015352387, 0.00017747362, 0.4436832, 0.4436832, 0.1109209, 0.0015352387, 0.0001774736, 0.4436832, 0.4436832, 0.11092088, 0.0015352382, 0.00017747354, 0.4436832, 0.4436832, 0.11092087, 0.0015352378, 0.0001774735, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352374, 0.00017747346, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352373, 0.00017747344, 0.44368324, 0.44368324, 0.11092085, 0.0015352371, 0.00017747341, 0.44368324, 0.44368324, 0.11092084, 0.001535237, 0.0001774734, 0.44368324, 0.44368324, 0.11092083, 0.0015352367, 0.00017747337, 0.44368324, 0.44368324, 0.110920824, 0.0015352365, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.44368324, 0.44368324, 0.11092082, 0.0015352363, 0.00017747331, 0.44368324, 0.44368324, 0.11092081, 0.0015352361, 0.0001774733, 0.9999998, 1.7388004e-7, 1.08675025e-8, 0, 0, 0.5, 0.5, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float2[] primvars:st = [(0.57430136, 0.13210803), (0.5632045, 0.11032924), (0.626409, 0.064408496), (0.64860266, 0.10796607), (0.5459207, 0.0930455), (0.5918415, 0.02984102), (0.52414197, 0.08194867), (0.54828393, 0.0076473355), (0.5, 0.07812497), (0.5, -7.4505806e-8), (0.47585803, 0.08194867), (0.45171607, 0.0076473504), (0.45407927, 0.09304553), (0.4081585, 0.02984105), (0.43679553, 0.11032927), (0.37359107, 0.064408526), (0.4256987, 0.13210803), (0.3513974, 0.1079661), (0.421875, 0.15625), (0.34374997, 0.15625), (0.4256987, 0.18039197), (0.3513974, 0.2045339), (0.43679553, 0.20217073), (0.37359107, 0.24809146), (0.45407927, 0.21945447), (0.40815854, 0.28265893), (0.47585803, 0.2305513), (0.4517161, 0.3048526), (0.5, 0.234375), (0.5, 0.3125), (0.52414197, 0.2305513), (0.5482839, 0.3048526), (0.5459207, 0.21945447), (0.59184146, 0.28265893), (0.56320447, 0.20217073), (0.62640893, 0.24809146), (0.5743013, 0.18039197), (0.6486026, 0.2045339), (0.578125, 0.15625), (0.65625, 0.15625), (0.375, 0.3125), (0.3875, 0.3125), (0.3875, 0.350094), (0.375, 0.350094), (0.39999998, 0.3125), (0.39999998, 0.350094), (0.41249996, 0.3125), (0.41249996, 0.350094), (0.42499995, 0.3125), (0.42499995, 0.350094), (0.43749994, 0.3125), (0.43749994, 0.350094), (0.44999993, 0.3125), (0.44999993, 0.350094), (0.46249992, 0.3125), (0.46249992, 0.350094), (0.4749999, 0.3125), (0.4749999, 0.350094), (0.4874999, 0.3125), (0.4874999, 0.350094), (0.49999988, 0.3125), (0.49999988, 0.350094), (0.51249987, 0.3125), (0.51249987, 0.350094), (0.52499986, 0.3125), (0.52499986, 0.350094), (0.53749985, 0.3125), (0.53749985, 0.350094), (0.54999983, 0.3125), (0.54999983, 0.350094), (0.5624998, 0.3125), (0.5624998, 0.350094), (0.5749998, 0.3125), (0.5749998, 0.350094), (0.5874998, 0.3125), (0.5874998, 0.350094), (0.5999998, 0.3125), (0.5999998, 0.350094), (0.6124998, 0.3125), (0.6124998, 0.350094), (0.62499976, 0.3125), (0.62499976, 0.350094), (0.3875, 0.38768798), (0.375, 0.38768798), (0.39999998, 0.38768798), (0.41249996, 0.38768798), (0.42499995, 0.38768798), (0.43749994, 0.38768798), (0.44999993, 0.38768798), (0.46249992, 0.38768798), (0.4749999, 0.38768798), (0.4874999, 0.38768798), (0.49999988, 0.38768798), (0.51249987, 0.38768798), (0.52499986, 0.38768798), (0.53749985, 0.38768798), (0.54999983, 0.38768798), (0.5624998, 0.38768798), (0.5749998, 0.38768798), (0.5874998, 0.38768798), (0.5999998, 0.38768798), (0.6124998, 0.38768798), (0.62499976, 0.38768798), (0.3875, 0.42528197), (0.375, 0.42528197), (0.39999998, 0.42528197), (0.41249996, 0.42528197), (0.42499995, 0.42528197), (0.43749994, 0.42528197), (0.44999993, 0.42528197), (0.46249992, 0.42528197), (0.4749999, 0.42528197), (0.4874999, 0.42528197), (0.49999988, 0.42528197), (0.51249987, 0.42528197), (0.52499986, 0.42528197), (0.53749985, 0.42528197), (0.54999983, 0.42528197), (0.5624998, 0.42528197), (0.5749998, 0.42528197), (0.5874998, 0.42528197), (0.5999998, 0.42528197), (0.6124998, 0.42528197), (0.62499976, 0.42528197), (0.3875, 0.46287596), (0.375, 0.46287596), (0.39999998, 0.46287596), (0.41249996, 0.46287596), (0.42499995, 0.46287596), (0.43749994, 0.46287596), (0.44999993, 0.46287596), (0.46249992, 0.46287596), (0.4749999, 0.46287596), (0.4874999, 0.46287596), (0.49999988, 0.46287596), (0.51249987, 0.46287596), (0.52499986, 0.46287596), (0.53749985, 0.46287596), (0.54999983, 0.46287596), (0.5624998, 0.46287596), (0.5749998, 0.46287596), (0.5874998, 0.46287596), (0.5999998, 0.46287596), (0.6124998, 0.46287596), (0.62499976, 0.46287596), (0.3875, 0.5004699), (0.375, 0.5004699), (0.39999998, 0.5004699), (0.41249996, 0.5004699), (0.42499995, 0.5004699), (0.43749994, 0.5004699), (0.44999993, 0.5004699), (0.46249992, 0.5004699), (0.4749999, 0.5004699), (0.4874999, 0.5004699), (0.49999988, 0.5004699), (0.51249987, 0.5004699), (0.52499986, 0.5004699), (0.53749985, 0.5004699), (0.54999983, 0.5004699), (0.5624998, 0.5004699), (0.5749998, 0.5004699), (0.5874998, 0.5004699), (0.5999998, 0.5004699), (0.6124998, 0.5004699), (0.62499976, 0.5004699), (0.3875, 0.5380639), (0.375, 0.5380639), (0.39999998, 0.5380639), (0.41249996, 0.5380639), (0.42499995, 0.5380639), (0.43749994, 0.5380639), (0.44999993, 0.5380639), (0.46249992, 0.5380639), (0.4749999, 0.5380639), (0.4874999, 0.5380639), (0.49999988, 0.5380639), (0.51249987, 0.5380639), (0.52499986, 0.5380639), (0.53749985, 0.5380639), (0.54999983, 0.5380639), (0.5624998, 0.5380639), (0.5749998, 0.5380639), (0.5874998, 0.5380639), (0.5999998, 0.5380639), (0.6124998, 0.5380639), (0.62499976, 0.5380639), (0.3875, 0.57565784), (0.375, 0.57565784), (0.39999998, 0.57565784), (0.41249996, 0.57565784), (0.42499995, 0.57565784), (0.43749994, 0.57565784), (0.44999993, 0.57565784), (0.46249992, 0.57565784), (0.4749999, 0.57565784), (0.4874999, 0.57565784), (0.49999988, 0.57565784), (0.51249987, 0.57565784), (0.52499986, 0.57565784), (0.53749985, 0.57565784), (0.54999983, 0.57565784), (0.5624998, 0.57565784), (0.5749998, 0.57565784), (0.5874998, 0.57565784), (0.5999998, 0.57565784), (0.6124998, 0.57565784), (0.62499976, 0.57565784), (0.3875, 0.6132518), (0.375, 0.6132518), (0.39999998, 0.6132518), (0.41249996, 0.6132518), (0.42499995, 0.6132518), (0.43749994, 0.6132518), (0.44999993, 0.6132518), (0.46249992, 0.6132518), (0.4749999, 0.6132518), (0.4874999, 0.6132518), (0.49999988, 0.6132518), (0.51249987, 0.6132518), (0.52499986, 0.6132518), (0.53749985, 0.6132518), (0.54999983, 0.6132518), (0.5624998, 0.6132518), (0.5749998, 0.6132518), (0.5874998, 0.6132518), (0.5999998, 0.6132518), (0.6124998, 0.6132518), (0.62499976, 0.6132518), (0.3875, 0.65084577), (0.375, 0.65084577), (0.39999998, 0.65084577), (0.41249996, 0.65084577), (0.42499995, 0.65084577), (0.43749994, 0.65084577), (0.44999993, 0.65084577), (0.46249992, 0.65084577), (0.4749999, 0.65084577), (0.4874999, 0.65084577), (0.49999988, 0.65084577), (0.51249987, 0.65084577), (0.52499986, 0.65084577), (0.53749985, 0.65084577), (0.54999983, 0.65084577), (0.5624998, 0.65084577), (0.5749998, 0.65084577), (0.5874998, 0.65084577), (0.5999998, 0.65084577), (0.6124998, 0.65084577), (0.62499976, 0.65084577), (0.3875, 0.6884397), (0.375, 0.6884397), (0.39999998, 0.6884397), (0.41249996, 0.6884397), (0.42499995, 0.6884397), (0.43749994, 0.6884397), (0.44999993, 0.6884397), (0.46249992, 0.6884397), (0.4749999, 0.6884397), (0.4874999, 0.6884397), (0.49999988, 0.6884397), (0.51249987, 0.6884397), (0.52499986, 0.6884397), (0.53749985, 0.6884397), (0.54999983, 0.6884397), (0.5624998, 0.6884397), (0.5749998, 0.6884397), (0.5874998, 0.6884397), (0.5999998, 0.6884397), (0.6124998, 0.6884397), (0.62499976, 0.6884397), (0.6486026, 0.89203393), (0.62640893, 0.93559146), (0.56320447, 0.8896707), (0.5743013, 0.86789197), (0.59184146, 0.97015893), (0.5459207, 0.90695447), (0.5482839, 0.9923526), (0.52414197, 0.9180513), (0.5, 1), (0.5, 0.921875), (0.4517161, 0.9923526), (0.47585803, 0.9180513), (0.40815854, 0.97015893), (0.45407927, 0.90695447), (0.37359107, 0.93559146), (0.43679553, 0.8896707), (0.3513974, 0.89203393), (0.4256987, 0.86789197), (0.34374997, 0.84375), (0.421875, 0.84375), (0.3513974, 0.79546607), (0.4256987, 0.81960803), (0.37359107, 0.75190854), (0.43679553, 0.7978293), (0.4081585, 0.71734107), (0.45407927, 0.78054553), (0.45171607, 0.69514734), (0.47585803, 0.76944864), (0.5, 0.68749994), (0.5, 0.765625), (0.54828393, 0.69514734), (0.52414197, 0.76944864), (0.5918415, 0.717341), (0.5459207, 0.7805455), (0.626409, 0.7519085), (0.5632045, 0.7978293), (0.64860266, 0.79546607), (0.57430136, 0.81960803), (0.65625, 0.84375), (0.578125, 0.84375), (0.5, 0.15), (0.5, 0.8375)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 1, 4, 5, 2, 4, 6, 7, 5, 6, 8, 9, 7, 8, 10, 11, 9, 10, 12, 13, 11, 12, 14, 15, 13, 14, 16, 17, 15, 16, 18, 19, 17, 18, 20, 21, 19, 20, 22, 23, 21, 22, 24, 25, 23, 24, 26, 27, 25, 26, 28, 29, 27, 28, 30, 31, 29, 30, 32, 33, 31, 32, 34, 35, 33, 34, 36, 37, 35, 36, 38, 39, 37, 38, 0, 3, 39, 40, 41, 42, 43, 41, 44, 45, 42, 44, 46, 47, 45, 46, 48, 49, 47, 48, 50, 51, 49, 50, 52, 53, 51, 52, 54, 55, 53, 54, 56, 57, 55, 56, 58, 59, 57, 58, 60, 61, 59, 60, 62, 63, 61, 62, 64, 65, 63, 64, 66, 67, 65, 66, 68, 69, 67, 68, 70, 71, 69, 70, 72, 73, 71, 72, 74, 75, 73, 74, 76, 77, 75, 76, 78, 79, 77, 78, 80, 81, 79, 43, 42, 82, 83, 42, 45, 84, 82, 45, 47, 85, 84, 47, 49, 86, 85, 49, 51, 87, 86, 51, 53, 88, 87, 53, 55, 89, 88, 55, 57, 90, 89, 57, 59, 91, 90, 59, 61, 92, 91, 61, 63, 93, 92, 63, 65, 94, 93, 65, 67, 95, 94, 67, 69, 96, 95, 69, 71, 97, 96, 71, 73, 98, 97, 73, 75, 99, 98, 75, 77, 100, 99, 77, 79, 101, 100, 79, 81, 102, 101, 83, 82, 103, 104, 82, 84, 105, 103, 84, 85, 106, 105, 85, 86, 107, 106, 86, 87, 108, 107, 87, 88, 109, 108, 88, 89, 110, 109, 89, 90, 111, 110, 90, 91, 112, 111, 91, 92, 113, 112, 92, 93, 114, 113, 93, 94, 115, 114, 94, 95, 116, 115, 95, 96, 117, 116, 96, 97, 118, 117, 97, 98, 119, 118, 98, 99, 120, 119, 99, 100, 121, 120, 100, 101, 122, 121, 101, 102, 123, 122, 104, 103, 124, 125, 103, 105, 126, 124, 105, 106, 127, 126, 106, 107, 128, 127, 107, 108, 129, 128, 108, 109, 130, 129, 109, 110, 131, 130, 110, 111, 132, 131, 111, 112, 133, 132, 112, 113, 134, 133, 113, 114, 135, 134, 114, 115, 136, 135, 115, 116, 137, 136, 116, 117, 138, 137, 117, 118, 139, 138, 118, 119, 140, 139, 119, 120, 141, 140, 120, 121, 142, 141, 121, 122, 143, 142, 122, 123, 144, 143, 125, 124, 145, 146, 124, 126, 147, 145, 126, 127, 148, 147, 127, 128, 149, 148, 128, 129, 150, 149, 129, 130, 151, 150, 130, 131, 152, 151, 131, 132, 153, 152, 132, 133, 154, 153, 133, 134, 155, 154, 134, 135, 156, 155, 135, 136, 157, 156, 136, 137, 158, 157, 137, 138, 159, 158, 138, 139, 160, 159, 139, 140, 161, 160, 140, 141, 162, 161, 141, 142, 163, 162, 142, 143, 164, 163, 143, 144, 165, 164, 146, 145, 166, 167, 145, 147, 168, 166, 147, 148, 169, 168, 148, 149, 170, 169, 149, 150, 171, 170, 150, 151, 172, 171, 151, 152, 173, 172, 152, 153, 174, 173, 153, 154, 175, 174, 154, 155, 176, 175, 155, 156, 177, 176, 156, 157, 178, 177, 157, 158, 179, 178, 158, 159, 180, 179, 159, 160, 181, 180, 160, 161, 182, 181, 161, 162, 183, 182, 162, 163, 184, 183, 163, 164, 185, 184, 164, 165, 186, 185, 167, 166, 187, 188, 166, 168, 189, 187, 168, 169, 190, 189, 169, 170, 191, 190, 170, 171, 192, 191, 171, 172, 193, 192, 172, 173, 194, 193, 173, 174, 195, 194, 174, 175, 196, 195, 175, 176, 197, 196, 176, 177, 198, 197, 177, 178, 199, 198, 178, 179, 200, 199, 179, 180, 201, 200, 180, 181, 202, 201, 181, 182, 203, 202, 182, 183, 204, 203, 183, 184, 205, 204, 184, 185, 206, 205, 185, 186, 207, 206, 188, 187, 208, 209, 187, 189, 210, 208, 189, 190, 211, 210, 190, 191, 212, 211, 191, 192, 213, 212, 192, 193, 214, 213, 193, 194, 215, 214, 194, 195, 216, 215, 195, 196, 217, 216, 196, 197, 218, 217, 197, 198, 219, 218, 198, 199, 220, 219, 199, 200, 221, 220, 200, 201, 222, 221, 201, 202, 223, 222, 202, 203, 224, 223, 203, 204, 225, 224, 204, 205, 226, 225, 205, 206, 227, 226, 206, 207, 228, 227, 209, 208, 229, 230, 208, 210, 231, 229, 210, 211, 232, 231, 211, 212, 233, 232, 212, 213, 234, 233, 213, 214, 235, 234, 214, 215, 236, 235, 215, 216, 237, 236, 216, 217, 238, 237, 217, 218, 239, 238, 218, 219, 240, 239, 219, 220, 241, 240, 220, 221, 242, 241, 221, 222, 243, 242, 222, 223, 244, 243, 223, 224, 245, 244, 224, 225, 246, 245, 225, 226, 247, 246, 226, 227, 248, 247, 227, 228, 249, 248, 230, 229, 250, 251, 229, 231, 252, 250, 231, 232, 253, 252, 232, 233, 254, 253, 233, 234, 255, 254, 234, 235, 256, 255, 235, 236, 257, 256, 236, 237, 258, 257, 237, 238, 259, 258, 238, 239, 260, 259, 239, 240, 261, 260, 240, 241, 262, 261, 241, 242, 263, 262, 242, 243, 264, 263, 243, 244, 265, 264, 244, 245, 266, 265, 245, 246, 267, 266, 246, 247, 268, 267, 247, 248, 269, 268, 248, 249, 270, 269, 271, 272, 273, 274, 272, 275, 276, 273, 275, 277, 278, 276, 277, 279, 280, 278, 279, 281, 282, 280, 281, 283, 284, 282, 283, 285, 286, 284, 285, 287, 288, 286, 287, 289, 290, 288, 289, 291, 292, 290, 291, 293, 294, 292, 293, 295, 296, 294, 295, 297, 298, 296, 297, 299, 300, 298, 299, 301, 302, 300, 301, 303, 304, 302, 303, 305, 306, 304, 305, 307, 308, 306, 307, 309, 310, 308, 309, 271, 274, 310, 1, 0, 311, 4, 1, 311, 6, 4, 311, 8, 6, 311, 10, 8, 311, 12, 10, 311, 14, 12, 311, 16, 14, 311, 18, 16, 311, 20, 18, 311, 22, 20, 311, 24, 22, 311, 26, 24, 311, 28, 26, 311, 30, 28, 311, 32, 30, 311, 34, 32, 311, 36, 34, 311, 38, 36, 311, 0, 38, 311, 274, 273, 312, 273, 276, 312, 276, 278, 312, 278, 280, 312, 280, 282, 312, 282, 284, 312, 284, 286, 312, 286, 288, 312, 288, 290, 312, 290, 292, 312, 292, 294, 312, 294, 296, 312, 296, 298, 312, 298, 300, 312, 300, 302, 312, 302, 304, 312, 304, 306, 312, 306, 308, 312, 308, 310, 312, 310, 274, 312] bool shadow:enable = 1 uniform token[] skel:joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] rel skel:skeleton = </Root/group1/joint1> uniform token skel:skinningMethod = "DualQuaternion" uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] } def Skeleton "joint1" ( prepend apiSchemas = ["SkelBindingAPI"] customData = { dictionary Maya = { bool generated = 1 } } ) { uniform matrix4d[] bindTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (-1.3877787807814457e-17, 8.841297486311764e-34, 3.0000000000000004, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (0, 1.2722513410043386e-31, 6, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (9.185754640251975e-34, 1.5649926925511984e-31, 9, 1) ), ( (1, -1.224391440225264e-16, -1.1796119636642288e-16, 0), (1.2243914402252635e-16, 1, -1.1996391250259628e-16, 0), (2.2898349882893854e-16, 1.1996391250259626e-16, 1, 0), (1.2247672853669268e-33, 1.4186220167777685e-31, 10, 1) )] uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] uniform matrix4d[] restTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (0.9997914836161194, 0, 0.0204203155871533, 0), (0, 1, 0, 0), (-0.0204203155871533, 0, 0.9997914836161194, 0), (3.0272297713351164, -9.860761315262648e-32, 7.979727989493313e-16, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.502302236417219e-18, 1.0318135235110049e-14, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.50230223641712e-18, 1.0304257447302234e-14, 1) ), ( (-3.552713678800501e-15, 0, 1, 0), (-1.2246467991473532e-16, -1, -4.437342591868191e-31, 0), (1, -1.2246467991473532e-16, 3.6637359812630166e-15, 0), (1, -2.5007674121390154e-18, 3.434752482434078e-15, 1) )] rel skel:animationSource = </Root/group1/joint1/Animation> def SkelAnimation "Animation" { uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } } } def Xform "locator1" { } def Xform "locator2" { } def Scope "Looks" { def Material "initialShadingGroup" { token outputs:mdl:surface.connect = </Root/Looks/initialShadingGroup/lambert1.outputs:out> def Shader "lambert1" ( kind = "Material" ) { uniform token info:id = "mdlMaterial" custom asset module = @lambert1.mdl@ custom string name = "lambert1" token outputs:out } } } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/inheritedPurpose.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 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 Scope "Scope" { 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 = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/ptinst_inside_sginst.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (778.2586907277156, 740.249061511561, 1000.8373390414704) 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 = { } } int refinementOverrideImplVersion = 0 dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Xform "Source" { double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1.0000003576278687, 1.0000003576278687, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def PointInstancer "PointInstancer" { point3f[] positions = [(-50, 0, 0), (50, 0, 0)] int[] protoIndices = [0, 0] prepend rel prototypes = </World/Source/PointInstancer/Sphere> float3 xformOp:rotateXYZ = (0, -0, 0) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Sphere "Sphere" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 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 Xform "Instance" ( instanceable = false prepend references = </World/Source> ) { double3 xformOp:rotateXYZ = (0, -0, -90) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (200, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/UsdShade.usda
#usda 1.0 ( defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] kind = "model" ) { 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 float3 xformOp:rotateZYX = (315, 0, 0) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX"] over "OmniverseKitViewportLightMesh" { matrix4d xformOp:transform = ( (0, 0, 0, 0), (0, 0, 0, 0), (0, 0, 0, 0), (0, 0, 0, 0) ) over "billboard" { matrix4d xformOp:transform = ( (-0.9711946881845035, 1.2490009027033009e-16, -0.23828738456369208, 0), (0.0810820314574763, 0.9403278020624157, -0.3304683477175917, -0), (0.22406825258597818, -0.34026992912754767, -0.9132413665152276, 0), (0, 0, 0, 1.0000000000000002) ) } } } def Scope "Looks" ( kind = "model" ) { def Material "Green" { token outputs:mdl:displacement.connect = </World/Looks/Green/Green_Side.outputs:out> token outputs:mdl:surface.connect = </World/Looks/Green/Green_Side.outputs:out> token outputs:mdl:volume.connect = </World/Looks/Green/Green_Side.outputs:out> token outputs:surface.connect = None def Shader "Green_Side" ( kind = "Material" ) { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @./Green_Side.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "Green_Side" token outputs:out } } def Material "Red" { token outputs:mdl:displacement.connect = </World/Looks/Red/Red_Side.outputs:out> token outputs:mdl:surface.connect = </World/Looks/Red/Red_Side.outputs:out> token outputs:mdl:volume.connect = </World/Looks/Red/Red_Side.outputs:out> token outputs:surface.connect = None def Shader "Red_Side" ( kind = "Material" ) { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @./Red_Side.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "Red_Side" token outputs:out } } def Material "OmniPBR" { float inputs:albedo_add = 0 ( customData = { float default = 0 dictionary range = { float max = 1 float min = -1 } } displayGroup = "Albedo" displayName = "Albedo Add" ) float inputs:albedo_brightness = 1 ( customData = { float default = 1 dictionary range = { float max = 1 float min = 0 } } displayGroup = "Albedo" displayName = "Albedo Brightness" ) bool inputs:excludeFromWhiteMode = 0 ( customData = { bool default = 0 } displayGroup = "Material Flags" displayName = "Exclude from White Mode" ) float inputs:reflection_roughness_constant = 0.833 ( customData = { float default = 0.5 dictionary range = { float max = 1 float min = 0 } } displayGroup = "Reflectivity" displayName = "Roughness Amount" ) float inputs:specular_level = 1 ( customData = { float default = 0.5 dictionary range = { float max = 1 float min = 0 } } displayGroup = "Reflectivity" displayName = "Specular" ) 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" float inputs:albedo_add = 0 float inputs:albedo_add.connect = </World/Looks/OmniPBR.inputs:albedo_add> float inputs:albedo_brightness = 1 float inputs:albedo_brightness.connect = </World/Looks/OmniPBR.inputs:albedo_brightness> float inputs:albedo_desaturation = 0 float inputs:ao_to_diffuse = 0 float inputs:bump_factor = 1 float inputs:detail_bump_factor = 0.3 float inputs:detail_texture_rotate = 0 float2 inputs:detail_texture_scale = (1, 1) float2 inputs:detail_texture_translate = (0, 0) color3f inputs:diffuse_color_constant = (0.2, 0.2, 0.2) color3f inputs:diffuse_tint = (1, 1, 1) color3f inputs:emissive_color = (1, 0.1, 0.1) float inputs:emissive_intensity = 40 bool inputs:enable_emission = 0 bool inputs:enable_ORM_texture = 0 bool inputs:excludeFromWhiteMode = 0 bool inputs:excludeFromWhiteMode.connect = </World/Looks/OmniPBR.inputs:excludeFromWhiteMode> float inputs:metallic_constant = 0 float inputs:metallic_texture_influence = 0 bool inputs:project_uvw = 0 float inputs:reflection_roughness_constant = 0.2 #This below wouldn't work due to UsdShade rejecting non-UsdShade connections: #prepend float inputs:reflection_roughness_constant.connect = </World/SimpleDataNode.outputs:a_float> float inputs:reflection_roughness_texture_influence = 0 float inputs:specular_level = 1 float inputs:specular_level.connect = </World/Looks/OmniPBR.inputs:specular_level> float inputs:texture_rotate = 0 float2 inputs:texture_scale = (1, 1) float2 inputs:texture_translate = (0, 0) int inputs:uv_space_index = 0 bool inputs:world_or_object = 0 token outputs:out } } } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/simpleCubeAncestralXforms.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 Xform "Xform" { token visibility = "inherited" 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 Xform "Xform_01" { token visibility = "inherited" 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/PreviewSurface> ( 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" token visibility = "inherited" 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 Scope "Looks" { def Material "PreviewSurface" { token outputs:surface.connect = </World/Looks/PreviewSurface/Shader.outputs:surface> def Shader "Shader" { reorder properties = ["inputs:diffuseColor", "inputs:emissiveColor", "inputs:useSpecularWorkflow", "inputs:specularColor", "inputs:metallic", "inputs:roughness", "inputs:clearcoat", "inputs:clearcoatRoughness", "inputs:opacity", "inputs:opacityThreshold", "inputs:ior", "inputs:normal", "inputs:displacement", "inputs:occlusion", "outputs:surface", "outputs:displacement"] uniform token info:id = "UsdPreviewSurface" float inputs:clearcoat = 0 float inputs:clearcoatRoughness = 0.01 color3f inputs:diffuseColor = (0.08122085, 0.20645818, 0.7074074) float inputs:displacement = 0 color3f inputs:emissiveColor = (0, 0, 0) float inputs:ior = 1.5 float inputs:metallic = 0 normal3f inputs:normal = (0, 0, 1) float inputs:occlusion = 1 float inputs:opacity = 1 float inputs:opacityThreshold = 0 float inputs:roughness = 0.5 ( customData = { dictionary range = { double max = 1 double min = 0 } } ) color3f inputs:specularColor = (0, 0, 0) int inputs:useSpecularWorkflow = 0 ( customData = { dictionary range = { int max = 1 int min = 0 } } ) token outputs:displacement token outputs:surface } } } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/nested_ptinst.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (778.2586907277156, 740.249061511561, 1000.8373390414704) 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 = { } } int refinementOverrideImplVersion = 0 dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Xform "Source" { double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1.0000003576278687, 1.0000003576278687, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def PointInstancer "PointInstancer" { point3f[] positions = [(-50, 0, 0)] int[] protoIndices = [0] prepend rel prototypes = </World/Source/PointInstancer/Sphere> float3 xformOp:rotateXYZ = (0, -0, 0) float3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Sphere "Sphere" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 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 PointInstancer "PointInstancer_parent" { point3f[] positions = [(100, 100, 0)] int[] protoIndices = [0] prepend rel prototypes = </World/Source> float3 xformOp:rotateXYZ = (0, -0, 0) float3 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.rtx.tests/data/usd/hydra/OM-26055_geom.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { float "rtx:post:lensDistortion:cameraFocalLength" = 18.147562 } } metersPerUnit = 0.009999999776482582 ) def Xform "geom" { token visibility = "invisible" def Xform "materials" { def "mat_1" { custom float dynamicFriction = 0.5 float dynamicFriction.timeSamples = { 0: 0.5, } custom uint flags = 0 uint flags.timeSamples = { 0: 0, } custom uint frictionCombineMode = 0 uint frictionCombineMode.timeSamples = { 0: 0, } custom float restitution = 0.1 float restitution.timeSamples = { 0: 0.1, } custom uint restitutionCombineMode = 0 uint restitutionCombineMode.timeSamples = { 0: 0, } custom float staticFriction = 0.5 float staticFriction.timeSamples = { 0: 0.5, } custom uint64 userData = 0 } } def Xform "shapes" { } def Xform "xm_1" { def Cube "m" { double size = 100.0 } } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/dome_materials.usda
#usda 1.0 ( defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def Scope "Looks" { def Material "dome_emission_direction" { token outputs:mdl:displacement.connect = </World/Looks/dome_emission_direction/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/dome_emission_direction/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/dome_emission_direction/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @./dome_emission_direction.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "dome_emission_direction" token outputs:out } } def Material "dome_gridspherejulia" { token outputs:mdl:displacement.connect = </World/Looks/dome_gridspherejulia/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/dome_gridspherejulia/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/dome_gridspherejulia/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @./dome_gridspherejulia.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "dome_gridspherejulia" token outputs:out } } } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/skelcylinder_root.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.435988509696834, 14.405080044311397, 19.391780817550533) double3 target = (0.03090846538543701, 0, 4.986700773239136) } dictionary Right = { double3 position = (0, -50002.000000953674, -1.1102674335673174e-11) double radius = 500 } dictionary Top = { double3 position = (0, 0, 50012.000000953674) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { } } defaultPrim = "Root" endTimeCode = 120 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( kind = "component" ) { def SkelRoot "group1" ( prepend apiSchemas = ["SkelBindingAPI"] ) { matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] rel skel:animationSource = </Root/group1/joint1/Animation> def Mesh "pCylinder1" ( prepend apiSchemas = ["SkelBindingAPI", "ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.0000005, -2.0000002, 0), (2, 2.000001, 10)] 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, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 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] int[] faceVertexIndices = [0, 1, 21, 20, 1, 2, 22, 21, 2, 3, 23, 22, 3, 4, 24, 23, 4, 5, 25, 24, 5, 6, 26, 25, 6, 7, 27, 26, 7, 8, 28, 27, 8, 9, 29, 28, 9, 10, 30, 29, 10, 11, 31, 30, 11, 12, 32, 31, 12, 13, 33, 32, 13, 14, 34, 33, 14, 15, 35, 34, 15, 16, 36, 35, 16, 17, 37, 36, 17, 18, 38, 37, 18, 19, 39, 38, 19, 0, 20, 39, 20, 21, 41, 40, 21, 22, 42, 41, 22, 23, 43, 42, 23, 24, 44, 43, 24, 25, 45, 44, 25, 26, 46, 45, 26, 27, 47, 46, 27, 28, 48, 47, 28, 29, 49, 48, 29, 30, 50, 49, 30, 31, 51, 50, 31, 32, 52, 51, 32, 33, 53, 52, 33, 34, 54, 53, 34, 35, 55, 54, 35, 36, 56, 55, 36, 37, 57, 56, 37, 38, 58, 57, 38, 39, 59, 58, 39, 20, 40, 59, 40, 41, 61, 60, 41, 42, 62, 61, 42, 43, 63, 62, 43, 44, 64, 63, 44, 45, 65, 64, 45, 46, 66, 65, 46, 47, 67, 66, 47, 48, 68, 67, 48, 49, 69, 68, 49, 50, 70, 69, 50, 51, 71, 70, 51, 52, 72, 71, 52, 53, 73, 72, 53, 54, 74, 73, 54, 55, 75, 74, 55, 56, 76, 75, 56, 57, 77, 76, 57, 58, 78, 77, 58, 59, 79, 78, 59, 40, 60, 79, 60, 61, 81, 80, 61, 62, 82, 81, 62, 63, 83, 82, 63, 64, 84, 83, 64, 65, 85, 84, 65, 66, 86, 85, 66, 67, 87, 86, 67, 68, 88, 87, 68, 69, 89, 88, 69, 70, 90, 89, 70, 71, 91, 90, 71, 72, 92, 91, 72, 73, 93, 92, 73, 74, 94, 93, 74, 75, 95, 94, 75, 76, 96, 95, 76, 77, 97, 96, 77, 78, 98, 97, 78, 79, 99, 98, 79, 60, 80, 99, 80, 81, 101, 100, 81, 82, 102, 101, 82, 83, 103, 102, 83, 84, 104, 103, 84, 85, 105, 104, 85, 86, 106, 105, 86, 87, 107, 106, 87, 88, 108, 107, 88, 89, 109, 108, 89, 90, 110, 109, 90, 91, 111, 110, 91, 92, 112, 111, 92, 93, 113, 112, 93, 94, 114, 113, 94, 95, 115, 114, 95, 96, 116, 115, 96, 97, 117, 116, 97, 98, 118, 117, 98, 99, 119, 118, 99, 80, 100, 119, 100, 101, 121, 120, 101, 102, 122, 121, 102, 103, 123, 122, 103, 104, 124, 123, 104, 105, 125, 124, 105, 106, 126, 125, 106, 107, 127, 126, 107, 108, 128, 127, 108, 109, 129, 128, 109, 110, 130, 129, 110, 111, 131, 130, 111, 112, 132, 131, 112, 113, 133, 132, 113, 114, 134, 133, 114, 115, 135, 134, 115, 116, 136, 135, 116, 117, 137, 136, 117, 118, 138, 137, 118, 119, 139, 138, 119, 100, 120, 139, 120, 121, 141, 140, 121, 122, 142, 141, 122, 123, 143, 142, 123, 124, 144, 143, 124, 125, 145, 144, 125, 126, 146, 145, 126, 127, 147, 146, 127, 128, 148, 147, 128, 129, 149, 148, 129, 130, 150, 149, 130, 131, 151, 150, 131, 132, 152, 151, 132, 133, 153, 152, 133, 134, 154, 153, 134, 135, 155, 154, 135, 136, 156, 155, 136, 137, 157, 156, 137, 138, 158, 157, 138, 139, 159, 158, 139, 120, 140, 159, 140, 141, 161, 160, 141, 142, 162, 161, 142, 143, 163, 162, 143, 144, 164, 163, 144, 145, 165, 164, 145, 146, 166, 165, 146, 147, 167, 166, 147, 148, 168, 167, 148, 149, 169, 168, 149, 150, 170, 169, 150, 151, 171, 170, 151, 152, 172, 171, 152, 153, 173, 172, 153, 154, 174, 173, 154, 155, 175, 174, 155, 156, 176, 175, 156, 157, 177, 176, 157, 158, 178, 177, 158, 159, 179, 178, 159, 140, 160, 179, 160, 161, 181, 180, 161, 162, 182, 181, 162, 163, 183, 182, 163, 164, 184, 183, 164, 165, 185, 184, 165, 166, 186, 185, 166, 167, 187, 186, 167, 168, 188, 187, 168, 169, 189, 188, 169, 170, 190, 189, 170, 171, 191, 190, 171, 172, 192, 191, 172, 173, 193, 192, 173, 174, 194, 193, 174, 175, 195, 194, 175, 176, 196, 195, 176, 177, 197, 196, 177, 178, 198, 197, 178, 179, 199, 198, 179, 160, 180, 199, 180, 181, 201, 200, 181, 182, 202, 201, 182, 183, 203, 202, 183, 184, 204, 203, 184, 185, 205, 204, 185, 186, 206, 205, 186, 187, 207, 206, 187, 188, 208, 207, 188, 189, 209, 208, 189, 190, 210, 209, 190, 191, 211, 210, 191, 192, 212, 211, 192, 193, 213, 212, 193, 194, 214, 213, 194, 195, 215, 214, 195, 196, 216, 215, 196, 197, 217, 216, 197, 198, 218, 217, 198, 199, 219, 218, 199, 180, 200, 219, 200, 201, 221, 220, 201, 202, 222, 221, 202, 203, 223, 222, 203, 204, 224, 223, 204, 205, 225, 224, 205, 206, 226, 225, 206, 207, 227, 226, 207, 208, 228, 227, 208, 209, 229, 228, 209, 210, 230, 229, 210, 211, 231, 230, 211, 212, 232, 231, 212, 213, 233, 232, 213, 214, 234, 233, 214, 215, 235, 234, 215, 216, 236, 235, 216, 217, 237, 236, 217, 218, 238, 237, 218, 219, 239, 238, 219, 200, 220, 239, 220, 221, 241, 240, 221, 222, 242, 241, 222, 223, 243, 242, 223, 224, 244, 243, 224, 225, 245, 244, 225, 226, 246, 245, 226, 227, 247, 246, 227, 228, 248, 247, 228, 229, 249, 248, 229, 230, 250, 249, 230, 231, 251, 250, 231, 232, 252, 251, 232, 233, 253, 252, 233, 234, 254, 253, 234, 235, 255, 254, 235, 236, 256, 255, 236, 237, 257, 256, 237, 238, 258, 257, 238, 239, 259, 258, 239, 220, 240, 259, 1, 0, 260, 2, 1, 260, 3, 2, 260, 4, 3, 260, 5, 4, 260, 6, 5, 260, 7, 6, 260, 8, 7, 260, 9, 8, 260, 10, 9, 260, 11, 10, 260, 12, 11, 260, 13, 12, 260, 14, 13, 260, 15, 14, 260, 16, 15, 260, 17, 16, 260, 18, 17, 260, 19, 18, 260, 0, 19, 260, 240, 241, 261, 241, 242, 261, 242, 243, 261, 243, 244, 261, 244, 245, 261, 245, 246, 261, 246, 247, 261, 247, 248, 261, 248, 249, 261, 249, 250, 261, 250, 251, 261, 251, 252, 261, 252, 253, 261, 253, 254, 261, 254, 255, 261, 255, 256, 261, 256, 257, 261, 257, 258, 261, 258, 259, 261, 259, 240, 261] normal3f[] normals = [(0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.9510565, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.5877852, -0.809017, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.809017, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.2095654e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901715, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.5877854, 0.8090168, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877855, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.58778507, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.58778524, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.5877853, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.80901694, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.80901706, 0.5877851, 0), (-0.5877854, 0.80901694, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (8.8258304e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.309017, -0.9510565, 0), (8.8258304e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.5877851, -0.809017, 0), (0.309017, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901694, -0.5877853, 0), (0.5877851, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.5877855, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.80901706, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877855, 0.8090169, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (8.8258304e-8, -1, 0), (8.825832e-8, -1, 0), (-0.30901694, -0.95105654, 0), (8.8258304e-8, -1, 0), (0.309017, -0.9510565, 0), (0.30901703, -0.95105654, 0), (8.825832e-8, -1, 0), (0.309017, -0.9510565, 0), (0.5877851, -0.809017, 0), (0.5877853, -0.80901706, 0), (0.30901703, -0.95105654, 0), (0.5877851, -0.809017, 0), (0.80901694, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.80901706, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.58778524, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.58778524, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.9510566, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.30901694, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.8090169, -0.5877854, 0), (-0.9510565, -0.30901694, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.30901694, -0.9510565, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (8.825832e-8, -1, 0), (9.209566e-8, -1, 0), (-0.30901694, -0.9510565, 0), (8.825832e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.30901703, -0.9510565, 0), (9.209566e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.5877853, -0.80901706, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.80901706, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.309016, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.58778524, 0), (0.8090169, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.58778524, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.80901706, 0), (0.8090169, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.9510566, 0), (0.30901685, 0.9510566, 0), (0.5877851, 0.80901706, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.95105654, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.5877854, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (9.209566e-8, -1, 0), (8.8258325e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209566e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.8090169, 0.5877853, 0), (0.8090169, 0.58778536, 0), (0.9510569, 0.3090161, 0), (0.8090169, 0.5877853, 0), (0.5877851, 0.80901706, 0), (0.58778524, 0.80901706, 0), (0.8090169, 0.58778536, 0), (0.5877851, 0.80901706, 0), (0.30901685, 0.9510566, 0), (0.3090169, 0.9510566, 0), (0.58778524, 0.80901706, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090169, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.95105654, -0.3090171, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.58778554, 0), (-0.95105654, -0.3090171, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.809017, 0), (-0.8090169, -0.58778554, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.3090169, -0.9510566, 0), (-0.5877852, -0.809017, 0), (-0.3090169, -0.95105654, 0), (8.8258325e-8, -1, 0), (8.4420996e-8, -1, 0), (-0.3090169, -0.9510566, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.4420996e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.809017, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.809017, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.3090161, 0), (1, -9.593294e-7, 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, 5.1435853e-7, 1), (0, 7.347982e-7, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, -5.143587e-7, 1), (0, -7.347983e-7, 1), (0, 7.347982e-7, 1), (0, -5.143587e-7, 1), (0, -0.0000020574357, 1), (0, -0.0000022778752, 1), (0, -7.347983e-7, 1), (0, -0.0000020574357, 1), (0, -0, 1), (0, -0, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, -0, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 4.0413923e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 6.062089e-7, 1), (0, 4.0413923e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 1.9288467e-7, 1), (0, 1.1021976e-7, 1), (0, 6.062089e-7, 1), (0, 1.9288467e-7, 1), (0, -6.429489e-8, 1), (0, -9.1849834e-8, 1), (0, 1.1021976e-7, 1), (0, -6.429489e-8, 1), (0, -0, 1), (0, -0, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 8.082787e-7, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 0.0000010287172, 1), (0, 8.0827857e-7, 1), (0, 8.082787e-7, 1), (0, 0.0000010287172, 1), (0, -0, 1), (0, -0, 1), (0, 8.0827857e-7, 1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 7.347982e-7, 1), (0, -1.7359638e-7, 1), (0, 7.347982e-7, 1), (0, -7.347983e-7, 1), (0, -1.7359638e-7, 1), (0, -7.347983e-7, 1), (0, -0.0000022778752, 1), (0, -1.7359638e-7, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 4.0413923e-7, 1), (0, -1.7359638e-7, 1), (0, 4.0413923e-7, 1), (0, 6.062089e-7, 1), (0, -1.7359638e-7, 1), (0, 6.062089e-7, 1), (0, 1.1021976e-7, 1), (0, -1.7359638e-7, 1), (0, 1.1021976e-7, 1), (0, -9.1849834e-8, 1), (0, -1.7359638e-7, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082787e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082787e-7, 1), (0, 8.0827857e-7, 1), (0, -1.7359638e-7, 1), (0, 8.0827857e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1)] ( interpolation = "faceVarying" ) point3f[] points = [(0.95105714, 0.30901718, 0), (0.80901754, 0.5877856, 0), (0.5877856, 0.8090175, 0), (0.30901715, 0.951057, 0), (0, 1.0000005, 0), (-0.30901715, 0.95105696, 0), (-0.5877855, 0.8090173, 0), (-0.80901724, 0.5877854, 0), (-0.9510568, 0.30901706, 0), (-1.0000002, -0, 0), (-0.9510568, -0.30901706, 0), (-0.8090172, -0.58778536, 0), (-0.58778536, -0.8090171, 0), (-0.30901706, -0.95105666, 0), (-2.9802322e-8, -1.0000001, 0), (0.30901697, -0.9510566, 0), (0.58778524, -0.80901706, 0), (0.809017, -0.5877853, 0), (0.95105654, -0.309017, 0), (1, -0, 0), (1.9021143, 0.61803436, 0), (1.6180351, 1.1755712, 0), (1.1755712, 1.618035, 0), (0.6180343, 1.902114, 0), (0, 2.000001, 0), (-0.6180343, 1.9021139, 0), (-1.175571, 1.6180346, 0), (-1.6180345, 1.1755708, 0), (-1.9021136, 0.6180341, 0), (-2.0000005, -0, 0), (-1.9021136, -0.6180341, 0), (-1.6180344, -1.1755707, 0), (-1.1755707, -1.6180342, 0), (-0.6180341, -1.9021133, 0), (-5.9604645e-8, -2.0000002, 0), (0.61803395, -1.9021132, 0), (1.1755705, -1.6180341, 0), (1.618034, -1.1755706, 0), (1.9021131, -0.618034, 0), (2, -0, 0), (1.9021143, 0.61803436, 1), (1.6180351, 1.1755712, 1), (1.1755712, 1.618035, 1), (0.6180343, 1.902114, 1), (0, 2.000001, 1), (-0.6180343, 1.9021139, 1), (-1.175571, 1.6180346, 1), (-1.6180345, 1.1755708, 1), (-1.9021136, 0.6180341, 1), (-2.0000005, -0, 1), (-1.9021136, -0.6180341, 1), (-1.6180344, -1.1755707, 1), (-1.1755707, -1.6180342, 1), (-0.6180341, -1.9021133, 1), (-5.9604645e-8, -2.0000002, 1), (0.61803395, -1.9021132, 1), (1.1755705, -1.6180341, 1), (1.618034, -1.1755706, 1), (1.9021131, -0.618034, 1), (2, -0, 1), (1.9021143, 0.61803436, 2), (1.6180351, 1.1755712, 2), (1.1755712, 1.618035, 2), (0.6180343, 1.902114, 2), (0, 2.000001, 2), (-0.6180343, 1.9021139, 2), (-1.175571, 1.6180346, 2), (-1.6180345, 1.1755708, 2), (-1.9021136, 0.6180341, 2), (-2.0000005, -0, 2), (-1.9021136, -0.6180341, 2), (-1.6180344, -1.1755707, 2), (-1.1755707, -1.6180342, 2), (-0.6180341, -1.9021133, 2), (-5.9604645e-8, -2.0000002, 2), (0.61803395, -1.9021132, 2), (1.1755705, -1.6180341, 2), (1.618034, -1.1755706, 2), (1.9021131, -0.618034, 2), (2, -0, 2), (1.9021143, 0.61803436, 3), (1.6180351, 1.1755712, 3), (1.1755712, 1.618035, 3), (0.6180343, 1.902114, 3), (0, 2.000001, 3), (-0.6180343, 1.9021139, 3), (-1.175571, 1.6180346, 3), (-1.6180345, 1.1755708, 3), (-1.9021136, 0.6180341, 3), (-2.0000005, -0, 3), (-1.9021136, -0.6180341, 3), (-1.6180344, -1.1755707, 3), (-1.1755707, -1.6180342, 3), (-0.6180341, -1.9021133, 3), (-5.9604645e-8, -2.0000002, 3), (0.61803395, -1.9021132, 3), (1.1755705, -1.6180341, 3), (1.618034, -1.1755706, 3), (1.9021131, -0.618034, 3), (2, -0, 3), (1.9021143, 0.61803436, 4), (1.6180351, 1.1755712, 4), (1.1755712, 1.618035, 4), (0.6180343, 1.902114, 4), (0, 2.000001, 4), (-0.6180343, 1.9021139, 4), (-1.175571, 1.6180346, 4), (-1.6180345, 1.1755708, 4), (-1.9021136, 0.6180341, 4), (-2.0000005, -0, 4), (-1.9021136, -0.6180341, 4), (-1.6180344, -1.1755707, 4), (-1.1755707, -1.6180342, 4), (-0.6180341, -1.9021133, 4), (-5.9604645e-8, -2.0000002, 4), (0.61803395, -1.9021132, 4), (1.1755705, -1.6180341, 4), (1.618034, -1.1755706, 4), (1.9021131, -0.618034, 4), (2, -0, 4), (1.9021143, 0.61803436, 5), (1.6180351, 1.1755712, 5), (1.1755712, 1.618035, 5), (0.6180343, 1.902114, 5), (0, 2.000001, 5), (-0.6180343, 1.9021139, 5), (-1.175571, 1.6180346, 5), (-1.6180345, 1.1755708, 5), (-1.9021136, 0.6180341, 5), (-2.0000005, -0, 5), (-1.9021136, -0.6180341, 5), (-1.6180344, -1.1755707, 5), (-1.1755707, -1.6180342, 5), (-0.6180341, -1.9021133, 5), (-5.9604645e-8, -2.0000002, 5), (0.61803395, -1.9021132, 5), (1.1755705, -1.6180341, 5), (1.618034, -1.1755706, 5), (1.9021131, -0.618034, 5), (2, -0, 5), (1.9021143, 0.61803436, 6), (1.6180351, 1.1755712, 6), (1.1755712, 1.618035, 6), (0.6180343, 1.902114, 6), (0, 2.000001, 6), (-0.6180343, 1.9021139, 6), (-1.175571, 1.6180346, 6), (-1.6180345, 1.1755708, 6), (-1.9021136, 0.6180341, 6), (-2.0000005, -0, 6), (-1.9021136, -0.6180341, 6), (-1.6180344, -1.1755707, 6), (-1.1755707, -1.6180342, 6), (-0.6180341, -1.9021133, 6), (-5.9604645e-8, -2.0000002, 6), (0.61803395, -1.9021132, 6), (1.1755705, -1.6180341, 6), (1.618034, -1.1755706, 6), (1.9021131, -0.618034, 6), (2, -0, 6), (1.9021143, 0.61803436, 7), (1.6180351, 1.1755712, 7), (1.1755712, 1.618035, 7), (0.6180343, 1.902114, 7), (0, 2.000001, 7), (-0.6180343, 1.9021139, 7), (-1.175571, 1.6180346, 7), (-1.6180345, 1.1755708, 7), (-1.9021136, 0.6180341, 7), (-2.0000005, -0, 7), (-1.9021136, -0.6180341, 7), (-1.6180344, -1.1755707, 7), (-1.1755707, -1.6180342, 7), (-0.6180341, -1.9021133, 7), (-5.9604645e-8, -2.0000002, 7), (0.61803395, -1.9021132, 7), (1.1755705, -1.6180341, 7), (1.618034, -1.1755706, 7), (1.9021131, -0.618034, 7), (2, -0, 7), (1.9021143, 0.61803436, 8), (1.6180351, 1.1755712, 8), (1.1755712, 1.618035, 8), (0.6180343, 1.902114, 8), (0, 2.000001, 8), (-0.6180343, 1.9021139, 8), (-1.175571, 1.6180346, 8), (-1.6180345, 1.1755708, 8), (-1.9021136, 0.6180341, 8), (-2.0000005, -0, 8), (-1.9021136, -0.6180341, 8), (-1.6180344, -1.1755707, 8), (-1.1755707, -1.6180342, 8), (-0.6180341, -1.9021133, 8), (-5.9604645e-8, -2.0000002, 8), (0.61803395, -1.9021132, 8), (1.1755705, -1.6180341, 8), (1.618034, -1.1755706, 8), (1.9021131, -0.618034, 8), (2, -0, 8), (1.9021143, 0.61803436, 9), (1.6180351, 1.1755712, 9), (1.1755712, 1.618035, 9), (0.6180343, 1.902114, 9), (0, 2.000001, 9), (-0.6180343, 1.9021139, 9), (-1.175571, 1.6180346, 9), (-1.6180345, 1.1755708, 9), (-1.9021136, 0.6180341, 9), (-2.0000005, -0, 9), (-1.9021136, -0.6180341, 9), (-1.6180344, -1.1755707, 9), (-1.1755707, -1.6180342, 9), (-0.6180341, -1.9021133, 9), (-5.9604645e-8, -2.0000002, 9), (0.61803395, -1.9021132, 9), (1.1755705, -1.6180341, 9), (1.618034, -1.1755706, 9), (1.9021131, -0.618034, 9), (2, -0, 9), (1.9021143, 0.61803436, 10), (1.6180351, 1.1755712, 10), (1.1755712, 1.618035, 10), (0.6180343, 1.902114, 10), (0, 2.000001, 10), (-0.6180343, 1.9021139, 10), (-1.175571, 1.6180346, 10), (-1.6180345, 1.1755708, 10), (-1.9021136, 0.6180341, 10), (-2.0000005, -0, 10), (-1.9021136, -0.6180341, 10), (-1.6180344, -1.1755707, 10), (-1.1755707, -1.6180342, 10), (-0.6180341, -1.9021133, 10), (-5.9604645e-8, -2.0000002, 10), (0.61803395, -1.9021132, 10), (1.1755705, -1.6180341, 10), (1.618034, -1.1755706, 10), (1.9021131, -0.618034, 10), (2, -0, 10), (0.95105714, 0.30901718, 10), (0.80901754, 0.5877856, 10), (0.5877856, 0.8090175, 10), (0.30901715, 0.951057, 10), (0, 1.0000005, 10), (-0.30901715, 0.95105696, 10), (-0.5877855, 0.8090173, 10), (-0.80901724, 0.5877854, 10), (-0.9510568, 0.30901706, 10), (-1.0000002, -0, 10), (-0.9510568, -0.30901706, 10), (-0.8090172, -0.58778536, 10), (-0.58778536, -0.8090171, 10), (-0.30901706, -0.95105666, 10), (-2.9802322e-8, -1.0000001, 10), (0.30901697, -0.9510566, 10), (0.58778524, -0.80901706, 10), (0.809017, -0.5877853, 10), (0.95105654, -0.309017, 10), (1, -0, 10), (0, -0, 0), (0, -0, 10)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 0, 1, 2, 0, 0, 4, 3, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [0.9914398, 0.007798158, 0.00056962454, 0.00011597502, 0.00007644505, 0.9911016, 0.008106242, 0.00059212884, 0.00012055687, 0.000079465186, 0.99056286, 0.008597037, 0.0006279794, 0.00012785601, 0.00008427643, 0.98986334, 0.009234303, 0.0006745291, 0.0001373335, 0.00009052352, 0.9890613, 0.009965006, 0.00072790415, 0.00014820059, 0.000097686585, 0.98823136, 0.010720953, 0.0007831231, 0.00015944311, 0.0001050971, 0.9874593, 0.011424304, 0.0008345, 0.00016990342, 0.00011199202, 0.9868309, 0.011996779, 0.00087631703, 0.00017841732, 0.000117603966, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.98627734, 0.012501058, 0.0009131526, 0.000185917, 0.00012254738, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.986831, 0.011996778, 0.00087631686, 0.00017841728, 0.000117603944, 0.9874593, 0.011424296, 0.00083449937, 0.00016990327, 0.000111991925, 0.9882313, 0.01072094, 0.000783122, 0.0001594429, 0.00010509696, 0.98906124, 0.009964993, 0.0007279031, 0.00014820037, 0.00009768643, 0.98986334, 0.009234288, 0.00067452795, 0.00013733325, 0.000090523354, 0.99056286, 0.008597019, 0.000627978, 0.00012785573, 0.00008427624, 0.9911016, 0.008106223, 0.0005921274, 0.000120556564, 0.00007946499, 0.9914398, 0.00779814, 0.0005696231, 0.00011597471, 0.000076444856, 0.991555, 0.00769326, 0.000561962, 0.000114414936, 0.00007541673, 0.9122156, 0.07669155, 0.00810055, 0.0017938935, 0.0011983063, 0.9107189, 0.077999204, 0.00823867, 0.0018244808, 0.0012187384, 0.90837055, 0.0800508, 0.008455371, 0.0018724698, 0.0012507946, 0.90539, 0.0826547, 0.008730407, 0.0019333775, 0.0012914804, 0.9020614, 0.085562706, 0.0090375645, 0.0020013985, 0.001336918, 0.8987084, 0.08849201, 0.009346972, 0.002069918, 0.0013826884, 0.89566416, 0.09115167, 0.009627898, 0.00213213, 0.0014242454, 0.8932356, 0.09327323, 0.0098519875, 0.0021817551, 0.0014573947, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.891131, 0.09511205, 0.010046211, 0.0022247666, 0.0014861261, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.8932356, 0.093273215, 0.009851985, 0.0021817544, 0.0014573943, 0.8956642, 0.091151625, 0.009627892, 0.0021321285, 0.0014242444, 0.8987086, 0.088491954, 0.009346964, 0.0020699159, 0.001382687, 0.9020615, 0.08556263, 0.009037553, 0.002001396, 0.0013369162, 0.90539014, 0.0826546, 0.008730393, 0.0019333743, 0.0012914783, 0.9083707, 0.08005069, 0.008455355, 0.0018724661, 0.0012507922, 0.91071904, 0.07799908, 0.008238653, 0.0018244769, 0.0012187357, 0.91221595, 0.07669144, 0.008100534, 0.0017938899, 0.0011983039, 0.9127295, 0.07624267, 0.008053132, 0.0017833925, 0.0011912917, 0.79757524, 0.18422364, 0.01401941, 0.002549811, 0.0016318791, 0.79559076, 0.18602969, 0.01415685, 0.0025748082, 0.0016478773, 0.7925068, 0.18883635, 0.014370436, 0.0026136546, 0.0016727389, 0.78863347, 0.19236143, 0.014638692, 0.0026624443, 0.0017039644, 0.7843574, 0.19625312, 0.014934849, 0.0027163082, 0.0017384373, 0.7801007, 0.20012699, 0.015229651, 0.002769926, 0.0017727527, 0.77627844, 0.20360558, 0.015494369, 0.0028180722, 0.0018035662, 0.77325755, 0.20635484, 0.015703585, 0.002856124, 0.0018279193, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.77065885, 0.20871985, 0.015883561, 0.0028888572, 0.0018488687, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.7732577, 0.20635484, 0.015703583, 0.0028561235, 0.001827919, 0.7762785, 0.20360552, 0.015494359, 0.0028180701, 0.001803565, 0.7801008, 0.2001269, 0.015229637, 0.0027699233, 0.0017727509, 0.7843574, 0.19625297, 0.014934831, 0.0027163047, 0.001738435, 0.78863364, 0.19236128, 0.014638673, 0.0026624403, 0.0017039618, 0.79250705, 0.18883617, 0.014370412, 0.0026136497, 0.0016727359, 0.795591, 0.18602951, 0.014156824, 0.0025748028, 0.0016478739, 0.7975755, 0.18422346, 0.014019383, 0.0025498057, 0.0016318756, 0.7982601, 0.18360043, 0.01397197, 0.0025411823, 0.0016263566, 0.6015815, 0.37000003, 0.023125038, 0.0032929934, 0.0020004367, 0.60011387, 0.371363, 0.023210224, 0.0033051237, 0.0020078055, 0.59784955, 0.37346572, 0.02334164, 0.0033238372, 0.0020191737, 0.5950339, 0.37608063, 0.02350507, 0.0033471093, 0.002033311, 0.5919611, 0.37893423, 0.023683418, 0.003372506, 0.002048739, 0.58893895, 0.38174084, 0.02385883, 0.0033974845, 0.0020639133, 0.5862557, 0.38423267, 0.024014562, 0.0034196607, 0.0020773849, 0.58415526, 0.3861833, 0.024136472, 0.0034370206, 0.0020879305, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.58236253, 0.3878482, 0.024240525, 0.0034518375, 0.0020969317, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.5841553, 0.3861833, 0.024136467, 0.0034370197, 0.00208793, 0.5862558, 0.38423264, 0.02401455, 0.0034196584, 0.0020773832, 0.588939, 0.3817408, 0.02385881, 0.003397481, 0.002063911, 0.5919612, 0.37893417, 0.023683393, 0.003372502, 0.0020487367, 0.595034, 0.37608057, 0.02350504, 0.0033471042, 0.002033308, 0.5978497, 0.37346566, 0.023341607, 0.0033238316, 0.0020191702, 0.600114, 0.3713629, 0.023210185, 0.0033051171, 0.0020078013, 0.60158163, 0.36999995, 0.023124997, 0.0032929864, 0.0020004322, 0.6020899, 0.36952794, 0.023095496, 0.0032887855, 0.0019978804, 0.47403845, 0.4736809, 0.044845615, 0.0047368202, 0.0026980822, 0.4739865, 0.47372782, 0.04485005, 0.004737289, 0.0026983493, 0.47392228, 0.47378576, 0.044855528, 0.0047378675, 0.0026986788, 0.47387025, 0.47383252, 0.04485995, 0.004738334, 0.0026989444, 0.47385046, 0.47385046, 0.04486164, 0.0047385124, 0.0026990462, 0.47385046, 0.47385046, 0.044861637, 0.0047385124, 0.002699046, 0.47385046, 0.47385046, 0.04486163, 0.004738511, 0.0026990452, 0.47385043, 0.47385043, 0.044861615, 0.004738509, 0.002699044, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861607, 0.0047385083, 0.0026990436, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861604, 0.004738508, 0.0026990434, 0.47385043, 0.47385043, 0.0448616, 0.0047385073, 0.002699043, 0.47385043, 0.47385043, 0.0448616, 0.004738507, 0.002699043, 0.47385043, 0.47385043, 0.044861592, 0.0047385064, 0.0026990424, 0.47387028, 0.47383255, 0.044859894, 0.0047383267, 0.0026989402, 0.47392228, 0.47378573, 0.04485546, 0.004737858, 0.0026986732, 0.47398654, 0.47372785, 0.04484998, 0.0047372794, 0.0026983435, 0.4740386, 0.4736811, 0.044845548, 0.004736811, 0.002698077, 0.47405848, 0.4736632, 0.044843853, 0.0047366316, 0.0026979747, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.1302746, 0.009913891, 0.005210989, 0.5210978, 0.33350274, 0.1302746, 0.009913888, 0.0052109878, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.0052109873, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.005210987, 0.5210979, 0.33350274, 0.13027458, 0.009913885, 0.005210986, 0.5210979, 0.3335027, 0.13027455, 0.009913881, 0.0052109845, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.00991388, 0.0052109836, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.009913879, 0.005210983, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913877, 0.0052109817, 0.52109796, 0.3335027, 0.1302745, 0.009913876, 0.005210981, 0.52109796, 0.3335027, 0.1302745, 0.009913875, 0.0052109803, 0.52109796, 0.3335027, 0.1302745, 0.009913874, 0.0052109803, 0.52109796, 0.3335027, 0.13027449, 0.009913874, 0.00521098, 0.52109796, 0.3335027, 0.13027449, 0.009913873, 0.00521098, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523114, 0.0097612925, 0.5130769, 0.32836935, 0.12826936, 0.02052311, 0.009761291, 0.5130769, 0.32836935, 0.12826934, 0.020523109, 0.009761289, 0.5130769, 0.32836935, 0.12826934, 0.020523107, 0.009761289, 0.51307696, 0.32836935, 0.12826933, 0.020523103, 0.009761286, 0.513077, 0.32836938, 0.12826933, 0.0205231, 0.009761285, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523097, 0.009761283, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523096, 0.009761283, 0.513077, 0.32836932, 0.1282693, 0.020523092, 0.00976128, 0.513077, 0.32836932, 0.1282693, 0.02052309, 0.00976128, 0.513077, 0.32836932, 0.12826928, 0.020523088, 0.009761279, 0.513077, 0.32836932, 0.12826928, 0.020523086, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523082, 0.009761276, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467415, 0.042467415, 0.017942488, 0.44856134, 0.44856134, 0.042467408, 0.042467408, 0.017942484, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467393, 0.042467393, 0.017942477, 0.44856137, 0.44856137, 0.042467386, 0.042467386, 0.017942473, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467378, 0.042467378, 0.01794247, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467374, 0.042467374, 0.017942468, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.042467367, 0.042467367, 0.017942462, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467356, 0.042467356, 0.017942458, 0.4485615, 0.4485615, 0.042467356, 0.042467356, 0.017942458, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.12347673, 0.04676044, 0.019756291, 0.49390635, 0.3161002, 0.12347672, 0.046760432, 0.019756287, 0.49390638, 0.3161002, 0.123476714, 0.04676043, 0.019756285, 0.49390638, 0.3161002, 0.12347671, 0.04676043, 0.019756285, 0.4939064, 0.3161002, 0.1234767, 0.04676042, 0.01975628, 0.49390644, 0.31610018, 0.123476684, 0.04676041, 0.019756276, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760406, 0.019756272, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760403, 0.019756272, 0.49390647, 0.31610018, 0.12347666, 0.0467604, 0.01975627, 0.4939065, 0.31610018, 0.12347666, 0.0467604, 0.019756269, 0.49390656, 0.3161002, 0.12347667, 0.0467604, 0.019756269, 0.4939066, 0.3161002, 0.12347666, 0.04676039, 0.019756267, 0.4939066, 0.3161002, 0.123476654, 0.04676039, 0.019756265, 0.4939066, 0.3161002, 0.123476654, 0.046760388, 0.019756265, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347663, 0.046760384, 0.019756261, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.46317184, 0.2964301, 0.1157931, 0.1157931, 0.008811848, 0.46317187, 0.2964301, 0.11579309, 0.11579309, 0.008811847, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.46317193, 0.29643014, 0.115793094, 0.115793094, 0.008811846, 0.4631719, 0.2964301, 0.115793064, 0.115793064, 0.008811844, 0.46317193, 0.2964301, 0.11579306, 0.11579306, 0.008811842, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.11579303, 0.11579303, 0.008811837, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811836, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317205, 0.2964301, 0.11579301, 0.11579301, 0.008811834, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.03449396, 0.0036434263, 0.36434186, 0.36434186, 0.23317888, 0.034493953, 0.0036434254, 0.36434186, 0.36434186, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317888, 0.03449395, 0.003643425, 0.3643419, 0.3643419, 0.2331789, 0.034493946, 0.0036434243, 0.36434188, 0.36434188, 0.23317887, 0.034493934, 0.0036434229, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.03449393, 0.0036434222, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.034493927, 0.003643422, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.0036434212, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.003643421, 0.3643419, 0.3643419, 0.23317884, 0.03449392, 0.0036434208, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.00364342, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.0036434198, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317882, 0.03449391, 0.0036434191, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.37234294, 0.37234294, 0.23829961, 0.014893747, 0.0021208616, 0.3723429, 0.3723429, 0.23829956, 0.014893741, 0.0021208609, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208606, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208604, 0.3723429, 0.3723429, 0.23829955, 0.014893736, 0.00212086, 0.37234294, 0.37234294, 0.23829953, 0.014893732, 0.0021208592, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829953, 0.014893729, 0.0021208588, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829952, 0.014893728, 0.0021208585, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.014893724, 0.0021208578, 0.37234294, 0.37234294, 0.2382995, 0.014893722, 0.0021208576, 0.37234297, 0.37234297, 0.2382995, 0.014893721, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208571, 0.37234297, 0.37234297, 0.2382995, 0.014893719, 0.0021208571, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.11092093, 0.0015352394, 0.00017747369, 0.44368318, 0.44368318, 0.11092091, 0.0015352389, 0.00017747364, 0.44368318, 0.44368318, 0.110920906, 0.0015352387, 0.00017747362, 0.4436832, 0.4436832, 0.1109209, 0.0015352387, 0.0001774736, 0.4436832, 0.4436832, 0.11092088, 0.0015352382, 0.00017747354, 0.4436832, 0.4436832, 0.11092087, 0.0015352378, 0.0001774735, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352374, 0.00017747346, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352373, 0.00017747344, 0.44368324, 0.44368324, 0.11092085, 0.0015352371, 0.00017747341, 0.44368324, 0.44368324, 0.11092084, 0.001535237, 0.0001774734, 0.44368324, 0.44368324, 0.11092083, 0.0015352367, 0.00017747337, 0.44368324, 0.44368324, 0.110920824, 0.0015352365, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.44368324, 0.44368324, 0.11092082, 0.0015352363, 0.00017747331, 0.44368324, 0.44368324, 0.11092081, 0.0015352361, 0.0001774733, 0.9999998, 1.7388004e-7, 1.08675025e-8, 0, 0, 0.5, 0.5, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float2[] primvars:st = [(0.57430136, 0.13210803), (0.5632045, 0.11032924), (0.626409, 0.064408496), (0.64860266, 0.10796607), (0.5459207, 0.0930455), (0.5918415, 0.02984102), (0.52414197, 0.08194867), (0.54828393, 0.0076473355), (0.5, 0.07812497), (0.5, -7.4505806e-8), (0.47585803, 0.08194867), (0.45171607, 0.0076473504), (0.45407927, 0.09304553), (0.4081585, 0.02984105), (0.43679553, 0.11032927), (0.37359107, 0.064408526), (0.4256987, 0.13210803), (0.3513974, 0.1079661), (0.421875, 0.15625), (0.34374997, 0.15625), (0.4256987, 0.18039197), (0.3513974, 0.2045339), (0.43679553, 0.20217073), (0.37359107, 0.24809146), (0.45407927, 0.21945447), (0.40815854, 0.28265893), (0.47585803, 0.2305513), (0.4517161, 0.3048526), (0.5, 0.234375), (0.5, 0.3125), (0.52414197, 0.2305513), (0.5482839, 0.3048526), (0.5459207, 0.21945447), (0.59184146, 0.28265893), (0.56320447, 0.20217073), (0.62640893, 0.24809146), (0.5743013, 0.18039197), (0.6486026, 0.2045339), (0.578125, 0.15625), (0.65625, 0.15625), (0.375, 0.3125), (0.3875, 0.3125), (0.3875, 0.350094), (0.375, 0.350094), (0.39999998, 0.3125), (0.39999998, 0.350094), (0.41249996, 0.3125), (0.41249996, 0.350094), (0.42499995, 0.3125), (0.42499995, 0.350094), (0.43749994, 0.3125), (0.43749994, 0.350094), (0.44999993, 0.3125), (0.44999993, 0.350094), (0.46249992, 0.3125), (0.46249992, 0.350094), (0.4749999, 0.3125), (0.4749999, 0.350094), (0.4874999, 0.3125), (0.4874999, 0.350094), (0.49999988, 0.3125), (0.49999988, 0.350094), (0.51249987, 0.3125), (0.51249987, 0.350094), (0.52499986, 0.3125), (0.52499986, 0.350094), (0.53749985, 0.3125), (0.53749985, 0.350094), (0.54999983, 0.3125), (0.54999983, 0.350094), (0.5624998, 0.3125), (0.5624998, 0.350094), (0.5749998, 0.3125), (0.5749998, 0.350094), (0.5874998, 0.3125), (0.5874998, 0.350094), (0.5999998, 0.3125), (0.5999998, 0.350094), (0.6124998, 0.3125), (0.6124998, 0.350094), (0.62499976, 0.3125), (0.62499976, 0.350094), (0.3875, 0.38768798), (0.375, 0.38768798), (0.39999998, 0.38768798), (0.41249996, 0.38768798), (0.42499995, 0.38768798), (0.43749994, 0.38768798), (0.44999993, 0.38768798), (0.46249992, 0.38768798), (0.4749999, 0.38768798), (0.4874999, 0.38768798), (0.49999988, 0.38768798), (0.51249987, 0.38768798), (0.52499986, 0.38768798), (0.53749985, 0.38768798), (0.54999983, 0.38768798), (0.5624998, 0.38768798), (0.5749998, 0.38768798), (0.5874998, 0.38768798), (0.5999998, 0.38768798), (0.6124998, 0.38768798), (0.62499976, 0.38768798), (0.3875, 0.42528197), (0.375, 0.42528197), (0.39999998, 0.42528197), (0.41249996, 0.42528197), (0.42499995, 0.42528197), (0.43749994, 0.42528197), (0.44999993, 0.42528197), (0.46249992, 0.42528197), (0.4749999, 0.42528197), (0.4874999, 0.42528197), (0.49999988, 0.42528197), (0.51249987, 0.42528197), (0.52499986, 0.42528197), (0.53749985, 0.42528197), (0.54999983, 0.42528197), (0.5624998, 0.42528197), (0.5749998, 0.42528197), (0.5874998, 0.42528197), (0.5999998, 0.42528197), (0.6124998, 0.42528197), (0.62499976, 0.42528197), (0.3875, 0.46287596), (0.375, 0.46287596), (0.39999998, 0.46287596), (0.41249996, 0.46287596), (0.42499995, 0.46287596), (0.43749994, 0.46287596), (0.44999993, 0.46287596), (0.46249992, 0.46287596), (0.4749999, 0.46287596), (0.4874999, 0.46287596), (0.49999988, 0.46287596), (0.51249987, 0.46287596), (0.52499986, 0.46287596), (0.53749985, 0.46287596), (0.54999983, 0.46287596), (0.5624998, 0.46287596), (0.5749998, 0.46287596), (0.5874998, 0.46287596), (0.5999998, 0.46287596), (0.6124998, 0.46287596), (0.62499976, 0.46287596), (0.3875, 0.5004699), (0.375, 0.5004699), (0.39999998, 0.5004699), (0.41249996, 0.5004699), (0.42499995, 0.5004699), (0.43749994, 0.5004699), (0.44999993, 0.5004699), (0.46249992, 0.5004699), (0.4749999, 0.5004699), (0.4874999, 0.5004699), (0.49999988, 0.5004699), (0.51249987, 0.5004699), (0.52499986, 0.5004699), (0.53749985, 0.5004699), (0.54999983, 0.5004699), (0.5624998, 0.5004699), (0.5749998, 0.5004699), (0.5874998, 0.5004699), (0.5999998, 0.5004699), (0.6124998, 0.5004699), (0.62499976, 0.5004699), (0.3875, 0.5380639), (0.375, 0.5380639), (0.39999998, 0.5380639), (0.41249996, 0.5380639), (0.42499995, 0.5380639), (0.43749994, 0.5380639), (0.44999993, 0.5380639), (0.46249992, 0.5380639), (0.4749999, 0.5380639), (0.4874999, 0.5380639), (0.49999988, 0.5380639), (0.51249987, 0.5380639), (0.52499986, 0.5380639), (0.53749985, 0.5380639), (0.54999983, 0.5380639), (0.5624998, 0.5380639), (0.5749998, 0.5380639), (0.5874998, 0.5380639), (0.5999998, 0.5380639), (0.6124998, 0.5380639), (0.62499976, 0.5380639), (0.3875, 0.57565784), (0.375, 0.57565784), (0.39999998, 0.57565784), (0.41249996, 0.57565784), (0.42499995, 0.57565784), (0.43749994, 0.57565784), (0.44999993, 0.57565784), (0.46249992, 0.57565784), (0.4749999, 0.57565784), (0.4874999, 0.57565784), (0.49999988, 0.57565784), (0.51249987, 0.57565784), (0.52499986, 0.57565784), (0.53749985, 0.57565784), (0.54999983, 0.57565784), (0.5624998, 0.57565784), (0.5749998, 0.57565784), (0.5874998, 0.57565784), (0.5999998, 0.57565784), (0.6124998, 0.57565784), (0.62499976, 0.57565784), (0.3875, 0.6132518), (0.375, 0.6132518), (0.39999998, 0.6132518), (0.41249996, 0.6132518), (0.42499995, 0.6132518), (0.43749994, 0.6132518), (0.44999993, 0.6132518), (0.46249992, 0.6132518), (0.4749999, 0.6132518), (0.4874999, 0.6132518), (0.49999988, 0.6132518), (0.51249987, 0.6132518), (0.52499986, 0.6132518), (0.53749985, 0.6132518), (0.54999983, 0.6132518), (0.5624998, 0.6132518), (0.5749998, 0.6132518), (0.5874998, 0.6132518), (0.5999998, 0.6132518), (0.6124998, 0.6132518), (0.62499976, 0.6132518), (0.3875, 0.65084577), (0.375, 0.65084577), (0.39999998, 0.65084577), (0.41249996, 0.65084577), (0.42499995, 0.65084577), (0.43749994, 0.65084577), (0.44999993, 0.65084577), (0.46249992, 0.65084577), (0.4749999, 0.65084577), (0.4874999, 0.65084577), (0.49999988, 0.65084577), (0.51249987, 0.65084577), (0.52499986, 0.65084577), (0.53749985, 0.65084577), (0.54999983, 0.65084577), (0.5624998, 0.65084577), (0.5749998, 0.65084577), (0.5874998, 0.65084577), (0.5999998, 0.65084577), (0.6124998, 0.65084577), (0.62499976, 0.65084577), (0.3875, 0.6884397), (0.375, 0.6884397), (0.39999998, 0.6884397), (0.41249996, 0.6884397), (0.42499995, 0.6884397), (0.43749994, 0.6884397), (0.44999993, 0.6884397), (0.46249992, 0.6884397), (0.4749999, 0.6884397), (0.4874999, 0.6884397), (0.49999988, 0.6884397), (0.51249987, 0.6884397), (0.52499986, 0.6884397), (0.53749985, 0.6884397), (0.54999983, 0.6884397), (0.5624998, 0.6884397), (0.5749998, 0.6884397), (0.5874998, 0.6884397), (0.5999998, 0.6884397), (0.6124998, 0.6884397), (0.62499976, 0.6884397), (0.6486026, 0.89203393), (0.62640893, 0.93559146), (0.56320447, 0.8896707), (0.5743013, 0.86789197), (0.59184146, 0.97015893), (0.5459207, 0.90695447), (0.5482839, 0.9923526), (0.52414197, 0.9180513), (0.5, 1), (0.5, 0.921875), (0.4517161, 0.9923526), (0.47585803, 0.9180513), (0.40815854, 0.97015893), (0.45407927, 0.90695447), (0.37359107, 0.93559146), (0.43679553, 0.8896707), (0.3513974, 0.89203393), (0.4256987, 0.86789197), (0.34374997, 0.84375), (0.421875, 0.84375), (0.3513974, 0.79546607), (0.4256987, 0.81960803), (0.37359107, 0.75190854), (0.43679553, 0.7978293), (0.4081585, 0.71734107), (0.45407927, 0.78054553), (0.45171607, 0.69514734), (0.47585803, 0.76944864), (0.5, 0.68749994), (0.5, 0.765625), (0.54828393, 0.69514734), (0.52414197, 0.76944864), (0.5918415, 0.717341), (0.5459207, 0.7805455), (0.626409, 0.7519085), (0.5632045, 0.7978293), (0.64860266, 0.79546607), (0.57430136, 0.81960803), (0.65625, 0.84375), (0.578125, 0.84375), (0.5, 0.15), (0.5, 0.8375)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 1, 4, 5, 2, 4, 6, 7, 5, 6, 8, 9, 7, 8, 10, 11, 9, 10, 12, 13, 11, 12, 14, 15, 13, 14, 16, 17, 15, 16, 18, 19, 17, 18, 20, 21, 19, 20, 22, 23, 21, 22, 24, 25, 23, 24, 26, 27, 25, 26, 28, 29, 27, 28, 30, 31, 29, 30, 32, 33, 31, 32, 34, 35, 33, 34, 36, 37, 35, 36, 38, 39, 37, 38, 0, 3, 39, 40, 41, 42, 43, 41, 44, 45, 42, 44, 46, 47, 45, 46, 48, 49, 47, 48, 50, 51, 49, 50, 52, 53, 51, 52, 54, 55, 53, 54, 56, 57, 55, 56, 58, 59, 57, 58, 60, 61, 59, 60, 62, 63, 61, 62, 64, 65, 63, 64, 66, 67, 65, 66, 68, 69, 67, 68, 70, 71, 69, 70, 72, 73, 71, 72, 74, 75, 73, 74, 76, 77, 75, 76, 78, 79, 77, 78, 80, 81, 79, 43, 42, 82, 83, 42, 45, 84, 82, 45, 47, 85, 84, 47, 49, 86, 85, 49, 51, 87, 86, 51, 53, 88, 87, 53, 55, 89, 88, 55, 57, 90, 89, 57, 59, 91, 90, 59, 61, 92, 91, 61, 63, 93, 92, 63, 65, 94, 93, 65, 67, 95, 94, 67, 69, 96, 95, 69, 71, 97, 96, 71, 73, 98, 97, 73, 75, 99, 98, 75, 77, 100, 99, 77, 79, 101, 100, 79, 81, 102, 101, 83, 82, 103, 104, 82, 84, 105, 103, 84, 85, 106, 105, 85, 86, 107, 106, 86, 87, 108, 107, 87, 88, 109, 108, 88, 89, 110, 109, 89, 90, 111, 110, 90, 91, 112, 111, 91, 92, 113, 112, 92, 93, 114, 113, 93, 94, 115, 114, 94, 95, 116, 115, 95, 96, 117, 116, 96, 97, 118, 117, 97, 98, 119, 118, 98, 99, 120, 119, 99, 100, 121, 120, 100, 101, 122, 121, 101, 102, 123, 122, 104, 103, 124, 125, 103, 105, 126, 124, 105, 106, 127, 126, 106, 107, 128, 127, 107, 108, 129, 128, 108, 109, 130, 129, 109, 110, 131, 130, 110, 111, 132, 131, 111, 112, 133, 132, 112, 113, 134, 133, 113, 114, 135, 134, 114, 115, 136, 135, 115, 116, 137, 136, 116, 117, 138, 137, 117, 118, 139, 138, 118, 119, 140, 139, 119, 120, 141, 140, 120, 121, 142, 141, 121, 122, 143, 142, 122, 123, 144, 143, 125, 124, 145, 146, 124, 126, 147, 145, 126, 127, 148, 147, 127, 128, 149, 148, 128, 129, 150, 149, 129, 130, 151, 150, 130, 131, 152, 151, 131, 132, 153, 152, 132, 133, 154, 153, 133, 134, 155, 154, 134, 135, 156, 155, 135, 136, 157, 156, 136, 137, 158, 157, 137, 138, 159, 158, 138, 139, 160, 159, 139, 140, 161, 160, 140, 141, 162, 161, 141, 142, 163, 162, 142, 143, 164, 163, 143, 144, 165, 164, 146, 145, 166, 167, 145, 147, 168, 166, 147, 148, 169, 168, 148, 149, 170, 169, 149, 150, 171, 170, 150, 151, 172, 171, 151, 152, 173, 172, 152, 153, 174, 173, 153, 154, 175, 174, 154, 155, 176, 175, 155, 156, 177, 176, 156, 157, 178, 177, 157, 158, 179, 178, 158, 159, 180, 179, 159, 160, 181, 180, 160, 161, 182, 181, 161, 162, 183, 182, 162, 163, 184, 183, 163, 164, 185, 184, 164, 165, 186, 185, 167, 166, 187, 188, 166, 168, 189, 187, 168, 169, 190, 189, 169, 170, 191, 190, 170, 171, 192, 191, 171, 172, 193, 192, 172, 173, 194, 193, 173, 174, 195, 194, 174, 175, 196, 195, 175, 176, 197, 196, 176, 177, 198, 197, 177, 178, 199, 198, 178, 179, 200, 199, 179, 180, 201, 200, 180, 181, 202, 201, 181, 182, 203, 202, 182, 183, 204, 203, 183, 184, 205, 204, 184, 185, 206, 205, 185, 186, 207, 206, 188, 187, 208, 209, 187, 189, 210, 208, 189, 190, 211, 210, 190, 191, 212, 211, 191, 192, 213, 212, 192, 193, 214, 213, 193, 194, 215, 214, 194, 195, 216, 215, 195, 196, 217, 216, 196, 197, 218, 217, 197, 198, 219, 218, 198, 199, 220, 219, 199, 200, 221, 220, 200, 201, 222, 221, 201, 202, 223, 222, 202, 203, 224, 223, 203, 204, 225, 224, 204, 205, 226, 225, 205, 206, 227, 226, 206, 207, 228, 227, 209, 208, 229, 230, 208, 210, 231, 229, 210, 211, 232, 231, 211, 212, 233, 232, 212, 213, 234, 233, 213, 214, 235, 234, 214, 215, 236, 235, 215, 216, 237, 236, 216, 217, 238, 237, 217, 218, 239, 238, 218, 219, 240, 239, 219, 220, 241, 240, 220, 221, 242, 241, 221, 222, 243, 242, 222, 223, 244, 243, 223, 224, 245, 244, 224, 225, 246, 245, 225, 226, 247, 246, 226, 227, 248, 247, 227, 228, 249, 248, 230, 229, 250, 251, 229, 231, 252, 250, 231, 232, 253, 252, 232, 233, 254, 253, 233, 234, 255, 254, 234, 235, 256, 255, 235, 236, 257, 256, 236, 237, 258, 257, 237, 238, 259, 258, 238, 239, 260, 259, 239, 240, 261, 260, 240, 241, 262, 261, 241, 242, 263, 262, 242, 243, 264, 263, 243, 244, 265, 264, 244, 245, 266, 265, 245, 246, 267, 266, 246, 247, 268, 267, 247, 248, 269, 268, 248, 249, 270, 269, 271, 272, 273, 274, 272, 275, 276, 273, 275, 277, 278, 276, 277, 279, 280, 278, 279, 281, 282, 280, 281, 283, 284, 282, 283, 285, 286, 284, 285, 287, 288, 286, 287, 289, 290, 288, 289, 291, 292, 290, 291, 293, 294, 292, 293, 295, 296, 294, 295, 297, 298, 296, 297, 299, 300, 298, 299, 301, 302, 300, 301, 303, 304, 302, 303, 305, 306, 304, 305, 307, 308, 306, 307, 309, 310, 308, 309, 271, 274, 310, 1, 0, 311, 4, 1, 311, 6, 4, 311, 8, 6, 311, 10, 8, 311, 12, 10, 311, 14, 12, 311, 16, 14, 311, 18, 16, 311, 20, 18, 311, 22, 20, 311, 24, 22, 311, 26, 24, 311, 28, 26, 311, 30, 28, 311, 32, 30, 311, 34, 32, 311, 36, 34, 311, 38, 36, 311, 0, 38, 311, 274, 273, 312, 273, 276, 312, 276, 278, 312, 278, 280, 312, 280, 282, 312, 282, 284, 312, 284, 286, 312, 286, 288, 312, 288, 290, 312, 290, 292, 312, 292, 294, 312, 294, 296, 312, 296, 298, 312, 298, 300, 312, 300, 302, 312, 302, 304, 312, 304, 306, 312, 306, 308, 312, 308, 310, 312, 310, 274, 312] bool shadow:enable = 1 uniform token[] skel:blendShapes = ["BlendShape1"] rel skel:blendShapeTargets = </Root/group1/pCylinder1/BlendShape1> uniform token[] skel:joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] rel skel:skeleton = </Root/group1/joint1> uniform token skel:skinningMethod = "DualQuaternion" uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def BlendShape "BlendShape1" { uniform vector3f[] offsets = [(0.055679083, -0, 0), (0.055679083, -0, 0), (0.0076562166, -0, 0), (0.007656336, -1.2980017e-19, 0), (2.5285296, -0, 0), (2.52853, -0, 0), (1.9332323, -0, 0), (0.724032, -0, 0), (0.015010702, -0, 0), (0.0150107145, -0, 0), (0.7240318, -0, 0), (1.9332323, -2.390851e-19, 0), (4.553535, -0, 0), (4.5535345, -0, 0), (3.667693, -0, 0), (1.7491772, -0, 0), (0.2682255, -0, 0), (0.26822555, -0, 0), (1.7491773, -0, 0), (3.6676931, -6.64955e-19, 0), (4.553535, -0, 0), (4.5535345, -0, 0), (3.667693, -0, 0), (1.7491772, -0, 0), (0.2682255, -0, 0), (0.26822555, -0, 0), (1.7491773, -0, 0), (3.6676931, -1.6402312e-18, 0), (2.5285296, -0, 0), (2.52853, -0, 0), (1.9332323, -0, 0), (0.724032, -0, 0), (0.015010702, -0, 0), (0.0150107145, -0, 0), (0.7240318, -0, 0), (1.9332323, -2.3276786e-18, 0), (0.055679083, -0, 0), (0.055679083, -0, 0), (0.0076562166, -0, 0), (0.007656336, -3.0373284e-18, 0)] uniform uint[] pointIndices = [60, 61, 62, 79, 80, 81, 82, 83, 84, 97, 98, 99, 100, 101, 102, 103, 104, 117, 118, 119, 120, 121, 122, 123, 124, 137, 138, 139, 140, 141, 142, 143, 144, 157, 158, 159, 160, 161, 162, 179] } } def Skeleton "joint1" ( prepend apiSchemas = ["SkelBindingAPI"] customData = { dictionary Maya = { bool generated = 1 } } ) { uniform matrix4d[] bindTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (-1.3877787807814457e-17, 8.841297486311764e-34, 3.0000000000000004, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (0, 1.2722513410043386e-31, 6, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (9.185754640251975e-34, 1.5649926925511984e-31, 9, 1) ), ( (1, -1.224391440225264e-16, -1.1796119636642288e-16, 0), (1.2243914402252635e-16, 1, -1.1996391250259628e-16, 0), (2.2898349882893854e-16, 1.1996391250259626e-16, 1, 0), (1.2247672853669268e-33, 1.4186220167777685e-31, 10, 1) )] uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] uniform matrix4d[] restTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (0.9997914836161194, 0, 0.0204203155871533, 0), (0, 1, 0, 0), (-0.0204203155871533, 0, 0.9997914836161194, 0), (3.0272297713351164, -9.860761315262648e-32, 7.979727989493313e-16, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.502302236417219e-18, 1.0318135235110049e-14, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.50230223641712e-18, 1.0304257447302234e-14, 1) ), ( (-3.552713678800501e-15, 0, 1, 0), (-1.2246467991473532e-16, -1, -4.437342591868191e-31, 0), (1, -1.2246467991473532e-16, 3.6637359812630166e-15, 0), (1, -2.5007674121390154e-18, 3.434752482434078e-15, 1) )] def SkelAnimation "Animation" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] float[] blendShapeWeights.timeSamples = { 0: [0], 1: [0], 2: [0.02284429], 3: [0.08548186], 4: [0.17906976], 5: [0.29476503], 6: [0.42372474], 7: [0.5571059], 8: [0.6860656], 9: [0.8017609], 10: [0.8953488], 11: [0.95798635], 12: [0.98083067], 13: [0.94185597], 14: [0.83410245], 15: [0.67132586], 16: [0.46728197], 17: [0.23572654], 18: [-0.009584664], 19: [-0.25489587], 20: [-0.4864513], 21: [-0.6904952], 22: [-0.8532718], 23: [-0.9610253], 24: [-1], 25: [-0.972], 26: [-0.896], 27: [-0.784], 28: [-0.648], 29: [-0.5], 30: [-0.352], 31: [-0.216], 32: [-0.104], 33: [-0.028], 34: [0], 35: [0], 36: [0], 37: [0], 38: [0], 39: [0], 40: [0], 41: [0], 42: [0], 43: [0], 44: [0], 45: [0], 46: [0], 47: [0], 48: [0], } uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } def SkelAnimation "Animation_Static" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } def SkelAnimation "Animation_Flat" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] float[] blendShapeWeights.timeSamples = { 0: [0], 1: [0], 2: [0.02284429], 3: [0.08548186], 4: [0.17906976], 5: [0.29476503], 6: [0.42372474], 7: [0.5571059], 8: [0.6860656], 9: [0.8017609], 10: [0.8953488], 11: [0.95798635], 12: [0.98083067], 13: [0.94185597], 14: [0.83410245], 15: [0.67132586], 16: [0.46728197], 17: [0.23572654], 18: [-0.009584664], 19: [-0.25489587], 20: [-0.4864513], 21: [-0.6904952], 22: [-0.8532718], 23: [-0.9610253], 24: [-1], 25: [-0.972], 26: [-0.896], 27: [-0.784], 28: [-0.648], 29: [-0.5], 30: [-0.352], 31: [-0.216], 32: [-0.104], 33: [-0.028], 34: [0], 35: [0], 36: [0], 37: [0], 38: [0], 39: [0], 40: [0], 41: [0], 42: [0], 43: [0], 44: [0], 45: [0], 46: [0], 47: [0], 48: [0], } uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 3, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } } } def Xform "locator1" { } def Xform "locator2" { } def Scope "Looks" { def Material "initialShadingGroup" { token outputs:mdl:surface.connect = </Root/Looks/initialShadingGroup/lambert1.outputs:out> def Shader "lambert1" ( kind = "Material" ) { uniform token info:id = "mdlMaterial" custom asset module = @lambert1.mdl@ custom string name = "lambert1" token outputs:out } } } def DistantLight "DistantLight" ( 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 = (45, 0, 90) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def SkelAnimation "ZAnimation" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] float[] blendShapeWeights.timeSamples = { 0: [0], 1: [0], 2: [0.02284429], 3: [0.08548186], 4: [0.17906976], 5: [0.29476503], 6: [0.42372474], 7: [0.5571059], 8: [0.6860656], 9: [0.8017609], 10: [0.8953488], 11: [0.95798635], 12: [0.98083067], 13: [0.94185597], 14: [0.83410245], 15: [0.67132586], 16: [0.46728197], 17: [0.23572654], 18: [-0.009584664], 19: [-0.25489587], 20: [-0.4864513], 21: [-0.6904952], 22: [-0.8532718], 23: [-0.9610253], 24: [-1], 25: [-0.972], 26: [-0.896], 27: [-0.784], 28: [-0.648], 29: [-0.5], 30: [-0.352], 31: [-0.216], 32: [-0.104], 33: [-0.028], 34: [0], 35: [0], 36: [0], 37: [0], 38: [0], 39: [0], 40: [0], 41: [0], 42: [0], 43: [0], 44: [0], 45: [0], 46: [0], 47: [0], 48: [0], } uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 2, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/skelcylinder_ref.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.435988509696834, 14.405080044311397, 19.391780817550533) double3 target = (0.03090846538543701, 0, 4.986700773239136) } dictionary Right = { double3 position = (0, -50002.000000953674, -1.1102674335673174e-11) double radius = 500 } dictionary Top = { double3 position = (0, 0, 50012.000000953674) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "Root" endTimeCode = 120 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( kind = "component" ) { def SkelRoot "group1" { matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def Mesh "pCylinder1" ( prepend apiSchemas = ["SkelBindingAPI", "ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.0000005, -2.0000002, 0), (2, 2.000001, 10)] 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, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 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] int[] faceVertexIndices = [0, 1, 21, 20, 1, 2, 22, 21, 2, 3, 23, 22, 3, 4, 24, 23, 4, 5, 25, 24, 5, 6, 26, 25, 6, 7, 27, 26, 7, 8, 28, 27, 8, 9, 29, 28, 9, 10, 30, 29, 10, 11, 31, 30, 11, 12, 32, 31, 12, 13, 33, 32, 13, 14, 34, 33, 14, 15, 35, 34, 15, 16, 36, 35, 16, 17, 37, 36, 17, 18, 38, 37, 18, 19, 39, 38, 19, 0, 20, 39, 20, 21, 41, 40, 21, 22, 42, 41, 22, 23, 43, 42, 23, 24, 44, 43, 24, 25, 45, 44, 25, 26, 46, 45, 26, 27, 47, 46, 27, 28, 48, 47, 28, 29, 49, 48, 29, 30, 50, 49, 30, 31, 51, 50, 31, 32, 52, 51, 32, 33, 53, 52, 33, 34, 54, 53, 34, 35, 55, 54, 35, 36, 56, 55, 36, 37, 57, 56, 37, 38, 58, 57, 38, 39, 59, 58, 39, 20, 40, 59, 40, 41, 61, 60, 41, 42, 62, 61, 42, 43, 63, 62, 43, 44, 64, 63, 44, 45, 65, 64, 45, 46, 66, 65, 46, 47, 67, 66, 47, 48, 68, 67, 48, 49, 69, 68, 49, 50, 70, 69, 50, 51, 71, 70, 51, 52, 72, 71, 52, 53, 73, 72, 53, 54, 74, 73, 54, 55, 75, 74, 55, 56, 76, 75, 56, 57, 77, 76, 57, 58, 78, 77, 58, 59, 79, 78, 59, 40, 60, 79, 60, 61, 81, 80, 61, 62, 82, 81, 62, 63, 83, 82, 63, 64, 84, 83, 64, 65, 85, 84, 65, 66, 86, 85, 66, 67, 87, 86, 67, 68, 88, 87, 68, 69, 89, 88, 69, 70, 90, 89, 70, 71, 91, 90, 71, 72, 92, 91, 72, 73, 93, 92, 73, 74, 94, 93, 74, 75, 95, 94, 75, 76, 96, 95, 76, 77, 97, 96, 77, 78, 98, 97, 78, 79, 99, 98, 79, 60, 80, 99, 80, 81, 101, 100, 81, 82, 102, 101, 82, 83, 103, 102, 83, 84, 104, 103, 84, 85, 105, 104, 85, 86, 106, 105, 86, 87, 107, 106, 87, 88, 108, 107, 88, 89, 109, 108, 89, 90, 110, 109, 90, 91, 111, 110, 91, 92, 112, 111, 92, 93, 113, 112, 93, 94, 114, 113, 94, 95, 115, 114, 95, 96, 116, 115, 96, 97, 117, 116, 97, 98, 118, 117, 98, 99, 119, 118, 99, 80, 100, 119, 100, 101, 121, 120, 101, 102, 122, 121, 102, 103, 123, 122, 103, 104, 124, 123, 104, 105, 125, 124, 105, 106, 126, 125, 106, 107, 127, 126, 107, 108, 128, 127, 108, 109, 129, 128, 109, 110, 130, 129, 110, 111, 131, 130, 111, 112, 132, 131, 112, 113, 133, 132, 113, 114, 134, 133, 114, 115, 135, 134, 115, 116, 136, 135, 116, 117, 137, 136, 117, 118, 138, 137, 118, 119, 139, 138, 119, 100, 120, 139, 120, 121, 141, 140, 121, 122, 142, 141, 122, 123, 143, 142, 123, 124, 144, 143, 124, 125, 145, 144, 125, 126, 146, 145, 126, 127, 147, 146, 127, 128, 148, 147, 128, 129, 149, 148, 129, 130, 150, 149, 130, 131, 151, 150, 131, 132, 152, 151, 132, 133, 153, 152, 133, 134, 154, 153, 134, 135, 155, 154, 135, 136, 156, 155, 136, 137, 157, 156, 137, 138, 158, 157, 138, 139, 159, 158, 139, 120, 140, 159, 140, 141, 161, 160, 141, 142, 162, 161, 142, 143, 163, 162, 143, 144, 164, 163, 144, 145, 165, 164, 145, 146, 166, 165, 146, 147, 167, 166, 147, 148, 168, 167, 148, 149, 169, 168, 149, 150, 170, 169, 150, 151, 171, 170, 151, 152, 172, 171, 152, 153, 173, 172, 153, 154, 174, 173, 154, 155, 175, 174, 155, 156, 176, 175, 156, 157, 177, 176, 157, 158, 178, 177, 158, 159, 179, 178, 159, 140, 160, 179, 160, 161, 181, 180, 161, 162, 182, 181, 162, 163, 183, 182, 163, 164, 184, 183, 164, 165, 185, 184, 165, 166, 186, 185, 166, 167, 187, 186, 167, 168, 188, 187, 168, 169, 189, 188, 169, 170, 190, 189, 170, 171, 191, 190, 171, 172, 192, 191, 172, 173, 193, 192, 173, 174, 194, 193, 174, 175, 195, 194, 175, 176, 196, 195, 176, 177, 197, 196, 177, 178, 198, 197, 178, 179, 199, 198, 179, 160, 180, 199, 180, 181, 201, 200, 181, 182, 202, 201, 182, 183, 203, 202, 183, 184, 204, 203, 184, 185, 205, 204, 185, 186, 206, 205, 186, 187, 207, 206, 187, 188, 208, 207, 188, 189, 209, 208, 189, 190, 210, 209, 190, 191, 211, 210, 191, 192, 212, 211, 192, 193, 213, 212, 193, 194, 214, 213, 194, 195, 215, 214, 195, 196, 216, 215, 196, 197, 217, 216, 197, 198, 218, 217, 198, 199, 219, 218, 199, 180, 200, 219, 200, 201, 221, 220, 201, 202, 222, 221, 202, 203, 223, 222, 203, 204, 224, 223, 204, 205, 225, 224, 205, 206, 226, 225, 206, 207, 227, 226, 207, 208, 228, 227, 208, 209, 229, 228, 209, 210, 230, 229, 210, 211, 231, 230, 211, 212, 232, 231, 212, 213, 233, 232, 213, 214, 234, 233, 214, 215, 235, 234, 215, 216, 236, 235, 216, 217, 237, 236, 217, 218, 238, 237, 218, 219, 239, 238, 219, 200, 220, 239, 220, 221, 241, 240, 221, 222, 242, 241, 222, 223, 243, 242, 223, 224, 244, 243, 224, 225, 245, 244, 225, 226, 246, 245, 226, 227, 247, 246, 227, 228, 248, 247, 228, 229, 249, 248, 229, 230, 250, 249, 230, 231, 251, 250, 231, 232, 252, 251, 232, 233, 253, 252, 233, 234, 254, 253, 234, 235, 255, 254, 235, 236, 256, 255, 236, 237, 257, 256, 237, 238, 258, 257, 238, 239, 259, 258, 239, 220, 240, 259, 1, 0, 260, 2, 1, 260, 3, 2, 260, 4, 3, 260, 5, 4, 260, 6, 5, 260, 7, 6, 260, 8, 7, 260, 9, 8, 260, 10, 9, 260, 11, 10, 260, 12, 11, 260, 13, 12, 260, 14, 13, 260, 15, 14, 260, 16, 15, 260, 17, 16, 260, 18, 17, 260, 19, 18, 260, 0, 19, 260, 240, 241, 261, 241, 242, 261, 242, 243, 261, 243, 244, 261, 244, 245, 261, 245, 246, 261, 246, 247, 261, 247, 248, 261, 248, 249, 261, 249, 250, 261, 250, 251, 261, 251, 252, 261, 252, 253, 261, 253, 254, 261, 254, 255, 261, 255, 256, 261, 256, 257, 261, 257, 258, 261, 258, 259, 261, 259, 240, 261] normal3f[] normals = [(0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.9510565, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.5877852, -0.809017, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.809017, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.2095654e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901715, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.5877854, 0.8090168, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877855, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.58778507, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.58778524, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.5877853, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.80901694, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.80901706, 0.5877851, 0), (-0.5877854, 0.80901694, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (8.8258304e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.309017, -0.9510565, 0), (8.8258304e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.5877851, -0.809017, 0), (0.309017, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901694, -0.5877853, 0), (0.5877851, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.5877855, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.80901706, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877855, 0.8090169, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (8.8258304e-8, -1, 0), (8.825832e-8, -1, 0), (-0.30901694, -0.95105654, 0), (8.8258304e-8, -1, 0), (0.309017, -0.9510565, 0), (0.30901703, -0.95105654, 0), (8.825832e-8, -1, 0), (0.309017, -0.9510565, 0), (0.5877851, -0.809017, 0), (0.5877853, -0.80901706, 0), (0.30901703, -0.95105654, 0), (0.5877851, -0.809017, 0), (0.80901694, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.80901706, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.58778524, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.58778524, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.9510566, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.30901694, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.8090169, -0.5877854, 0), (-0.9510565, -0.30901694, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.30901694, -0.9510565, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (8.825832e-8, -1, 0), (9.209566e-8, -1, 0), (-0.30901694, -0.9510565, 0), (8.825832e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.30901703, -0.9510565, 0), (9.209566e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.5877853, -0.80901706, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.80901706, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.309016, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.58778524, 0), (0.8090169, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.58778524, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.80901706, 0), (0.8090169, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.9510566, 0), (0.30901685, 0.9510566, 0), (0.5877851, 0.80901706, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.95105654, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.5877854, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (9.209566e-8, -1, 0), (8.8258325e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209566e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.8090169, 0.5877853, 0), (0.8090169, 0.58778536, 0), (0.9510569, 0.3090161, 0), (0.8090169, 0.5877853, 0), (0.5877851, 0.80901706, 0), (0.58778524, 0.80901706, 0), (0.8090169, 0.58778536, 0), (0.5877851, 0.80901706, 0), (0.30901685, 0.9510566, 0), (0.3090169, 0.9510566, 0), (0.58778524, 0.80901706, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090169, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.95105654, -0.3090171, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.58778554, 0), (-0.95105654, -0.3090171, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.809017, 0), (-0.8090169, -0.58778554, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.3090169, -0.9510566, 0), (-0.5877852, -0.809017, 0), (-0.3090169, -0.95105654, 0), (8.8258325e-8, -1, 0), (8.4420996e-8, -1, 0), (-0.3090169, -0.9510566, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.4420996e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.809017, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.809017, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.3090161, 0), (1, -9.593294e-7, 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, 5.1435853e-7, 1), (0, 7.347982e-7, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, -5.143587e-7, 1), (0, -7.347983e-7, 1), (0, 7.347982e-7, 1), (0, -5.143587e-7, 1), (0, -0.0000020574357, 1), (0, -0.0000022778752, 1), (0, -7.347983e-7, 1), (0, -0.0000020574357, 1), (0, -0, 1), (0, -0, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, -0, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 4.0413923e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 6.062089e-7, 1), (0, 4.0413923e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 1.9288467e-7, 1), (0, 1.1021976e-7, 1), (0, 6.062089e-7, 1), (0, 1.9288467e-7, 1), (0, -6.429489e-8, 1), (0, -9.1849834e-8, 1), (0, 1.1021976e-7, 1), (0, -6.429489e-8, 1), (0, -0, 1), (0, -0, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 8.082787e-7, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 0.0000010287172, 1), (0, 8.0827857e-7, 1), (0, 8.082787e-7, 1), (0, 0.0000010287172, 1), (0, -0, 1), (0, -0, 1), (0, 8.0827857e-7, 1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 7.347982e-7, 1), (0, -1.7359638e-7, 1), (0, 7.347982e-7, 1), (0, -7.347983e-7, 1), (0, -1.7359638e-7, 1), (0, -7.347983e-7, 1), (0, -0.0000022778752, 1), (0, -1.7359638e-7, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 4.0413923e-7, 1), (0, -1.7359638e-7, 1), (0, 4.0413923e-7, 1), (0, 6.062089e-7, 1), (0, -1.7359638e-7, 1), (0, 6.062089e-7, 1), (0, 1.1021976e-7, 1), (0, -1.7359638e-7, 1), (0, 1.1021976e-7, 1), (0, -9.1849834e-8, 1), (0, -1.7359638e-7, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082787e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082787e-7, 1), (0, 8.0827857e-7, 1), (0, -1.7359638e-7, 1), (0, 8.0827857e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1)] ( interpolation = "faceVarying" ) point3f[] points = [(0.95105714, 0.30901718, 0), (0.80901754, 0.5877856, 0), (0.5877856, 0.8090175, 0), (0.30901715, 0.951057, 0), (0, 1.0000005, 0), (-0.30901715, 0.95105696, 0), (-0.5877855, 0.8090173, 0), (-0.80901724, 0.5877854, 0), (-0.9510568, 0.30901706, 0), (-1.0000002, -0, 0), (-0.9510568, -0.30901706, 0), (-0.8090172, -0.58778536, 0), (-0.58778536, -0.8090171, 0), (-0.30901706, -0.95105666, 0), (-2.9802322e-8, -1.0000001, 0), (0.30901697, -0.9510566, 0), (0.58778524, -0.80901706, 0), (0.809017, -0.5877853, 0), (0.95105654, -0.309017, 0), (1, -0, 0), (1.9021143, 0.61803436, 0), (1.6180351, 1.1755712, 0), (1.1755712, 1.618035, 0), (0.6180343, 1.902114, 0), (0, 2.000001, 0), (-0.6180343, 1.9021139, 0), (-1.175571, 1.6180346, 0), (-1.6180345, 1.1755708, 0), (-1.9021136, 0.6180341, 0), (-2.0000005, -0, 0), (-1.9021136, -0.6180341, 0), (-1.6180344, -1.1755707, 0), (-1.1755707, -1.6180342, 0), (-0.6180341, -1.9021133, 0), (-5.9604645e-8, -2.0000002, 0), (0.61803395, -1.9021132, 0), (1.1755705, -1.6180341, 0), (1.618034, -1.1755706, 0), (1.9021131, -0.618034, 0), (2, -0, 0), (1.9021143, 0.61803436, 1), (1.6180351, 1.1755712, 1), (1.1755712, 1.618035, 1), (0.6180343, 1.902114, 1), (0, 2.000001, 1), (-0.6180343, 1.9021139, 1), (-1.175571, 1.6180346, 1), (-1.6180345, 1.1755708, 1), (-1.9021136, 0.6180341, 1), (-2.0000005, -0, 1), (-1.9021136, -0.6180341, 1), (-1.6180344, -1.1755707, 1), (-1.1755707, -1.6180342, 1), (-0.6180341, -1.9021133, 1), (-5.9604645e-8, -2.0000002, 1), (0.61803395, -1.9021132, 1), (1.1755705, -1.6180341, 1), (1.618034, -1.1755706, 1), (1.9021131, -0.618034, 1), (2, -0, 1), (1.9021143, 0.61803436, 2), (1.6180351, 1.1755712, 2), (1.1755712, 1.618035, 2), (0.6180343, 1.902114, 2), (0, 2.000001, 2), (-0.6180343, 1.9021139, 2), (-1.175571, 1.6180346, 2), (-1.6180345, 1.1755708, 2), (-1.9021136, 0.6180341, 2), (-2.0000005, -0, 2), (-1.9021136, -0.6180341, 2), (-1.6180344, -1.1755707, 2), (-1.1755707, -1.6180342, 2), (-0.6180341, -1.9021133, 2), (-5.9604645e-8, -2.0000002, 2), (0.61803395, -1.9021132, 2), (1.1755705, -1.6180341, 2), (1.618034, -1.1755706, 2), (1.9021131, -0.618034, 2), (2, -0, 2), (1.9021143, 0.61803436, 3), (1.6180351, 1.1755712, 3), (1.1755712, 1.618035, 3), (0.6180343, 1.902114, 3), (0, 2.000001, 3), (-0.6180343, 1.9021139, 3), (-1.175571, 1.6180346, 3), (-1.6180345, 1.1755708, 3), (-1.9021136, 0.6180341, 3), (-2.0000005, -0, 3), (-1.9021136, -0.6180341, 3), (-1.6180344, -1.1755707, 3), (-1.1755707, -1.6180342, 3), (-0.6180341, -1.9021133, 3), (-5.9604645e-8, -2.0000002, 3), (0.61803395, -1.9021132, 3), (1.1755705, -1.6180341, 3), (1.618034, -1.1755706, 3), (1.9021131, -0.618034, 3), (2, -0, 3), (1.9021143, 0.61803436, 4), (1.6180351, 1.1755712, 4), (1.1755712, 1.618035, 4), (0.6180343, 1.902114, 4), (0, 2.000001, 4), (-0.6180343, 1.9021139, 4), (-1.175571, 1.6180346, 4), (-1.6180345, 1.1755708, 4), (-1.9021136, 0.6180341, 4), (-2.0000005, -0, 4), (-1.9021136, -0.6180341, 4), (-1.6180344, -1.1755707, 4), (-1.1755707, -1.6180342, 4), (-0.6180341, -1.9021133, 4), (-5.9604645e-8, -2.0000002, 4), (0.61803395, -1.9021132, 4), (1.1755705, -1.6180341, 4), (1.618034, -1.1755706, 4), (1.9021131, -0.618034, 4), (2, -0, 4), (1.9021143, 0.61803436, 5), (1.6180351, 1.1755712, 5), (1.1755712, 1.618035, 5), (0.6180343, 1.902114, 5), (0, 2.000001, 5), (-0.6180343, 1.9021139, 5), (-1.175571, 1.6180346, 5), (-1.6180345, 1.1755708, 5), (-1.9021136, 0.6180341, 5), (-2.0000005, -0, 5), (-1.9021136, -0.6180341, 5), (-1.6180344, -1.1755707, 5), (-1.1755707, -1.6180342, 5), (-0.6180341, -1.9021133, 5), (-5.9604645e-8, -2.0000002, 5), (0.61803395, -1.9021132, 5), (1.1755705, -1.6180341, 5), (1.618034, -1.1755706, 5), (1.9021131, -0.618034, 5), (2, -0, 5), (1.9021143, 0.61803436, 6), (1.6180351, 1.1755712, 6), (1.1755712, 1.618035, 6), (0.6180343, 1.902114, 6), (0, 2.000001, 6), (-0.6180343, 1.9021139, 6), (-1.175571, 1.6180346, 6), (-1.6180345, 1.1755708, 6), (-1.9021136, 0.6180341, 6), (-2.0000005, -0, 6), (-1.9021136, -0.6180341, 6), (-1.6180344, -1.1755707, 6), (-1.1755707, -1.6180342, 6), (-0.6180341, -1.9021133, 6), (-5.9604645e-8, -2.0000002, 6), (0.61803395, -1.9021132, 6), (1.1755705, -1.6180341, 6), (1.618034, -1.1755706, 6), (1.9021131, -0.618034, 6), (2, -0, 6), (1.9021143, 0.61803436, 7), (1.6180351, 1.1755712, 7), (1.1755712, 1.618035, 7), (0.6180343, 1.902114, 7), (0, 2.000001, 7), (-0.6180343, 1.9021139, 7), (-1.175571, 1.6180346, 7), (-1.6180345, 1.1755708, 7), (-1.9021136, 0.6180341, 7), (-2.0000005, -0, 7), (-1.9021136, -0.6180341, 7), (-1.6180344, -1.1755707, 7), (-1.1755707, -1.6180342, 7), (-0.6180341, -1.9021133, 7), (-5.9604645e-8, -2.0000002, 7), (0.61803395, -1.9021132, 7), (1.1755705, -1.6180341, 7), (1.618034, -1.1755706, 7), (1.9021131, -0.618034, 7), (2, -0, 7), (1.9021143, 0.61803436, 8), (1.6180351, 1.1755712, 8), (1.1755712, 1.618035, 8), (0.6180343, 1.902114, 8), (0, 2.000001, 8), (-0.6180343, 1.9021139, 8), (-1.175571, 1.6180346, 8), (-1.6180345, 1.1755708, 8), (-1.9021136, 0.6180341, 8), (-2.0000005, -0, 8), (-1.9021136, -0.6180341, 8), (-1.6180344, -1.1755707, 8), (-1.1755707, -1.6180342, 8), (-0.6180341, -1.9021133, 8), (-5.9604645e-8, -2.0000002, 8), (0.61803395, -1.9021132, 8), (1.1755705, -1.6180341, 8), (1.618034, -1.1755706, 8), (1.9021131, -0.618034, 8), (2, -0, 8), (1.9021143, 0.61803436, 9), (1.6180351, 1.1755712, 9), (1.1755712, 1.618035, 9), (0.6180343, 1.902114, 9), (0, 2.000001, 9), (-0.6180343, 1.9021139, 9), (-1.175571, 1.6180346, 9), (-1.6180345, 1.1755708, 9), (-1.9021136, 0.6180341, 9), (-2.0000005, -0, 9), (-1.9021136, -0.6180341, 9), (-1.6180344, -1.1755707, 9), (-1.1755707, -1.6180342, 9), (-0.6180341, -1.9021133, 9), (-5.9604645e-8, -2.0000002, 9), (0.61803395, -1.9021132, 9), (1.1755705, -1.6180341, 9), (1.618034, -1.1755706, 9), (1.9021131, -0.618034, 9), (2, -0, 9), (1.9021143, 0.61803436, 10), (1.6180351, 1.1755712, 10), (1.1755712, 1.618035, 10), (0.6180343, 1.902114, 10), (0, 2.000001, 10), (-0.6180343, 1.9021139, 10), (-1.175571, 1.6180346, 10), (-1.6180345, 1.1755708, 10), (-1.9021136, 0.6180341, 10), (-2.0000005, -0, 10), (-1.9021136, -0.6180341, 10), (-1.6180344, -1.1755707, 10), (-1.1755707, -1.6180342, 10), (-0.6180341, -1.9021133, 10), (-5.9604645e-8, -2.0000002, 10), (0.61803395, -1.9021132, 10), (1.1755705, -1.6180341, 10), (1.618034, -1.1755706, 10), (1.9021131, -0.618034, 10), (2, -0, 10), (0.95105714, 0.30901718, 10), (0.80901754, 0.5877856, 10), (0.5877856, 0.8090175, 10), (0.30901715, 0.951057, 10), (0, 1.0000005, 10), (-0.30901715, 0.95105696, 10), (-0.5877855, 0.8090173, 10), (-0.80901724, 0.5877854, 10), (-0.9510568, 0.30901706, 10), (-1.0000002, -0, 10), (-0.9510568, -0.30901706, 10), (-0.8090172, -0.58778536, 10), (-0.58778536, -0.8090171, 10), (-0.30901706, -0.95105666, 10), (-2.9802322e-8, -1.0000001, 10), (0.30901697, -0.9510566, 10), (0.58778524, -0.80901706, 10), (0.809017, -0.5877853, 10), (0.95105654, -0.309017, 10), (1, -0, 10), (0, -0, 0), (0, -0, 10)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 0, 1, 2, 0, 0, 4, 3, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [0.9914398, 0.007798158, 0.00056962454, 0.00011597502, 0.00007644505, 0.9911016, 0.008106242, 0.00059212884, 0.00012055687, 0.000079465186, 0.99056286, 0.008597037, 0.0006279794, 0.00012785601, 0.00008427643, 0.98986334, 0.009234303, 0.0006745291, 0.0001373335, 0.00009052352, 0.9890613, 0.009965006, 0.00072790415, 0.00014820059, 0.000097686585, 0.98823136, 0.010720953, 0.0007831231, 0.00015944311, 0.0001050971, 0.9874593, 0.011424304, 0.0008345, 0.00016990342, 0.00011199202, 0.9868309, 0.011996779, 0.00087631703, 0.00017841732, 0.000117603966, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.98627734, 0.012501058, 0.0009131526, 0.000185917, 0.00012254738, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.986831, 0.011996778, 0.00087631686, 0.00017841728, 0.000117603944, 0.9874593, 0.011424296, 0.00083449937, 0.00016990327, 0.000111991925, 0.9882313, 0.01072094, 0.000783122, 0.0001594429, 0.00010509696, 0.98906124, 0.009964993, 0.0007279031, 0.00014820037, 0.00009768643, 0.98986334, 0.009234288, 0.00067452795, 0.00013733325, 0.000090523354, 0.99056286, 0.008597019, 0.000627978, 0.00012785573, 0.00008427624, 0.9911016, 0.008106223, 0.0005921274, 0.000120556564, 0.00007946499, 0.9914398, 0.00779814, 0.0005696231, 0.00011597471, 0.000076444856, 0.991555, 0.00769326, 0.000561962, 0.000114414936, 0.00007541673, 0.9122156, 0.07669155, 0.00810055, 0.0017938935, 0.0011983063, 0.9107189, 0.077999204, 0.00823867, 0.0018244808, 0.0012187384, 0.90837055, 0.0800508, 0.008455371, 0.0018724698, 0.0012507946, 0.90539, 0.0826547, 0.008730407, 0.0019333775, 0.0012914804, 0.9020614, 0.085562706, 0.0090375645, 0.0020013985, 0.001336918, 0.8987084, 0.08849201, 0.009346972, 0.002069918, 0.0013826884, 0.89566416, 0.09115167, 0.009627898, 0.00213213, 0.0014242454, 0.8932356, 0.09327323, 0.0098519875, 0.0021817551, 0.0014573947, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.891131, 0.09511205, 0.010046211, 0.0022247666, 0.0014861261, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.8932356, 0.093273215, 0.009851985, 0.0021817544, 0.0014573943, 0.8956642, 0.091151625, 0.009627892, 0.0021321285, 0.0014242444, 0.8987086, 0.088491954, 0.009346964, 0.0020699159, 0.001382687, 0.9020615, 0.08556263, 0.009037553, 0.002001396, 0.0013369162, 0.90539014, 0.0826546, 0.008730393, 0.0019333743, 0.0012914783, 0.9083707, 0.08005069, 0.008455355, 0.0018724661, 0.0012507922, 0.91071904, 0.07799908, 0.008238653, 0.0018244769, 0.0012187357, 0.91221595, 0.07669144, 0.008100534, 0.0017938899, 0.0011983039, 0.9127295, 0.07624267, 0.008053132, 0.0017833925, 0.0011912917, 0.79757524, 0.18422364, 0.01401941, 0.002549811, 0.0016318791, 0.79559076, 0.18602969, 0.01415685, 0.0025748082, 0.0016478773, 0.7925068, 0.18883635, 0.014370436, 0.0026136546, 0.0016727389, 0.78863347, 0.19236143, 0.014638692, 0.0026624443, 0.0017039644, 0.7843574, 0.19625312, 0.014934849, 0.0027163082, 0.0017384373, 0.7801007, 0.20012699, 0.015229651, 0.002769926, 0.0017727527, 0.77627844, 0.20360558, 0.015494369, 0.0028180722, 0.0018035662, 0.77325755, 0.20635484, 0.015703585, 0.002856124, 0.0018279193, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.77065885, 0.20871985, 0.015883561, 0.0028888572, 0.0018488687, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.7732577, 0.20635484, 0.015703583, 0.0028561235, 0.001827919, 0.7762785, 0.20360552, 0.015494359, 0.0028180701, 0.001803565, 0.7801008, 0.2001269, 0.015229637, 0.0027699233, 0.0017727509, 0.7843574, 0.19625297, 0.014934831, 0.0027163047, 0.001738435, 0.78863364, 0.19236128, 0.014638673, 0.0026624403, 0.0017039618, 0.79250705, 0.18883617, 0.014370412, 0.0026136497, 0.0016727359, 0.795591, 0.18602951, 0.014156824, 0.0025748028, 0.0016478739, 0.7975755, 0.18422346, 0.014019383, 0.0025498057, 0.0016318756, 0.7982601, 0.18360043, 0.01397197, 0.0025411823, 0.0016263566, 0.6015815, 0.37000003, 0.023125038, 0.0032929934, 0.0020004367, 0.60011387, 0.371363, 0.023210224, 0.0033051237, 0.0020078055, 0.59784955, 0.37346572, 0.02334164, 0.0033238372, 0.0020191737, 0.5950339, 0.37608063, 0.02350507, 0.0033471093, 0.002033311, 0.5919611, 0.37893423, 0.023683418, 0.003372506, 0.002048739, 0.58893895, 0.38174084, 0.02385883, 0.0033974845, 0.0020639133, 0.5862557, 0.38423267, 0.024014562, 0.0034196607, 0.0020773849, 0.58415526, 0.3861833, 0.024136472, 0.0034370206, 0.0020879305, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.58236253, 0.3878482, 0.024240525, 0.0034518375, 0.0020969317, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.5841553, 0.3861833, 0.024136467, 0.0034370197, 0.00208793, 0.5862558, 0.38423264, 0.02401455, 0.0034196584, 0.0020773832, 0.588939, 0.3817408, 0.02385881, 0.003397481, 0.002063911, 0.5919612, 0.37893417, 0.023683393, 0.003372502, 0.0020487367, 0.595034, 0.37608057, 0.02350504, 0.0033471042, 0.002033308, 0.5978497, 0.37346566, 0.023341607, 0.0033238316, 0.0020191702, 0.600114, 0.3713629, 0.023210185, 0.0033051171, 0.0020078013, 0.60158163, 0.36999995, 0.023124997, 0.0032929864, 0.0020004322, 0.6020899, 0.36952794, 0.023095496, 0.0032887855, 0.0019978804, 0.47403845, 0.4736809, 0.044845615, 0.0047368202, 0.0026980822, 0.4739865, 0.47372782, 0.04485005, 0.004737289, 0.0026983493, 0.47392228, 0.47378576, 0.044855528, 0.0047378675, 0.0026986788, 0.47387025, 0.47383252, 0.04485995, 0.004738334, 0.0026989444, 0.47385046, 0.47385046, 0.04486164, 0.0047385124, 0.0026990462, 0.47385046, 0.47385046, 0.044861637, 0.0047385124, 0.002699046, 0.47385046, 0.47385046, 0.04486163, 0.004738511, 0.0026990452, 0.47385043, 0.47385043, 0.044861615, 0.004738509, 0.002699044, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861607, 0.0047385083, 0.0026990436, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861604, 0.004738508, 0.0026990434, 0.47385043, 0.47385043, 0.0448616, 0.0047385073, 0.002699043, 0.47385043, 0.47385043, 0.0448616, 0.004738507, 0.002699043, 0.47385043, 0.47385043, 0.044861592, 0.0047385064, 0.0026990424, 0.47387028, 0.47383255, 0.044859894, 0.0047383267, 0.0026989402, 0.47392228, 0.47378573, 0.04485546, 0.004737858, 0.0026986732, 0.47398654, 0.47372785, 0.04484998, 0.0047372794, 0.0026983435, 0.4740386, 0.4736811, 0.044845548, 0.004736811, 0.002698077, 0.47405848, 0.4736632, 0.044843853, 0.0047366316, 0.0026979747, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.1302746, 0.009913891, 0.005210989, 0.5210978, 0.33350274, 0.1302746, 0.009913888, 0.0052109878, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.0052109873, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.005210987, 0.5210979, 0.33350274, 0.13027458, 0.009913885, 0.005210986, 0.5210979, 0.3335027, 0.13027455, 0.009913881, 0.0052109845, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.00991388, 0.0052109836, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.009913879, 0.005210983, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913877, 0.0052109817, 0.52109796, 0.3335027, 0.1302745, 0.009913876, 0.005210981, 0.52109796, 0.3335027, 0.1302745, 0.009913875, 0.0052109803, 0.52109796, 0.3335027, 0.1302745, 0.009913874, 0.0052109803, 0.52109796, 0.3335027, 0.13027449, 0.009913874, 0.00521098, 0.52109796, 0.3335027, 0.13027449, 0.009913873, 0.00521098, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523114, 0.0097612925, 0.5130769, 0.32836935, 0.12826936, 0.02052311, 0.009761291, 0.5130769, 0.32836935, 0.12826934, 0.020523109, 0.009761289, 0.5130769, 0.32836935, 0.12826934, 0.020523107, 0.009761289, 0.51307696, 0.32836935, 0.12826933, 0.020523103, 0.009761286, 0.513077, 0.32836938, 0.12826933, 0.0205231, 0.009761285, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523097, 0.009761283, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523096, 0.009761283, 0.513077, 0.32836932, 0.1282693, 0.020523092, 0.00976128, 0.513077, 0.32836932, 0.1282693, 0.02052309, 0.00976128, 0.513077, 0.32836932, 0.12826928, 0.020523088, 0.009761279, 0.513077, 0.32836932, 0.12826928, 0.020523086, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523082, 0.009761276, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467415, 0.042467415, 0.017942488, 0.44856134, 0.44856134, 0.042467408, 0.042467408, 0.017942484, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467393, 0.042467393, 0.017942477, 0.44856137, 0.44856137, 0.042467386, 0.042467386, 0.017942473, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467378, 0.042467378, 0.01794247, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467374, 0.042467374, 0.017942468, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.042467367, 0.042467367, 0.017942462, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467356, 0.042467356, 0.017942458, 0.4485615, 0.4485615, 0.042467356, 0.042467356, 0.017942458, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.12347673, 0.04676044, 0.019756291, 0.49390635, 0.3161002, 0.12347672, 0.046760432, 0.019756287, 0.49390638, 0.3161002, 0.123476714, 0.04676043, 0.019756285, 0.49390638, 0.3161002, 0.12347671, 0.04676043, 0.019756285, 0.4939064, 0.3161002, 0.1234767, 0.04676042, 0.01975628, 0.49390644, 0.31610018, 0.123476684, 0.04676041, 0.019756276, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760406, 0.019756272, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760403, 0.019756272, 0.49390647, 0.31610018, 0.12347666, 0.0467604, 0.01975627, 0.4939065, 0.31610018, 0.12347666, 0.0467604, 0.019756269, 0.49390656, 0.3161002, 0.12347667, 0.0467604, 0.019756269, 0.4939066, 0.3161002, 0.12347666, 0.04676039, 0.019756267, 0.4939066, 0.3161002, 0.123476654, 0.04676039, 0.019756265, 0.4939066, 0.3161002, 0.123476654, 0.046760388, 0.019756265, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347663, 0.046760384, 0.019756261, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.46317184, 0.2964301, 0.1157931, 0.1157931, 0.008811848, 0.46317187, 0.2964301, 0.11579309, 0.11579309, 0.008811847, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.46317193, 0.29643014, 0.115793094, 0.115793094, 0.008811846, 0.4631719, 0.2964301, 0.115793064, 0.115793064, 0.008811844, 0.46317193, 0.2964301, 0.11579306, 0.11579306, 0.008811842, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.11579303, 0.11579303, 0.008811837, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811836, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317205, 0.2964301, 0.11579301, 0.11579301, 0.008811834, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.03449396, 0.0036434263, 0.36434186, 0.36434186, 0.23317888, 0.034493953, 0.0036434254, 0.36434186, 0.36434186, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317888, 0.03449395, 0.003643425, 0.3643419, 0.3643419, 0.2331789, 0.034493946, 0.0036434243, 0.36434188, 0.36434188, 0.23317887, 0.034493934, 0.0036434229, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.03449393, 0.0036434222, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.034493927, 0.003643422, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.0036434212, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.003643421, 0.3643419, 0.3643419, 0.23317884, 0.03449392, 0.0036434208, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.00364342, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.0036434198, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317882, 0.03449391, 0.0036434191, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.37234294, 0.37234294, 0.23829961, 0.014893747, 0.0021208616, 0.3723429, 0.3723429, 0.23829956, 0.014893741, 0.0021208609, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208606, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208604, 0.3723429, 0.3723429, 0.23829955, 0.014893736, 0.00212086, 0.37234294, 0.37234294, 0.23829953, 0.014893732, 0.0021208592, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829953, 0.014893729, 0.0021208588, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829952, 0.014893728, 0.0021208585, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.014893724, 0.0021208578, 0.37234294, 0.37234294, 0.2382995, 0.014893722, 0.0021208576, 0.37234297, 0.37234297, 0.2382995, 0.014893721, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208571, 0.37234297, 0.37234297, 0.2382995, 0.014893719, 0.0021208571, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.11092093, 0.0015352394, 0.00017747369, 0.44368318, 0.44368318, 0.11092091, 0.0015352389, 0.00017747364, 0.44368318, 0.44368318, 0.110920906, 0.0015352387, 0.00017747362, 0.4436832, 0.4436832, 0.1109209, 0.0015352387, 0.0001774736, 0.4436832, 0.4436832, 0.11092088, 0.0015352382, 0.00017747354, 0.4436832, 0.4436832, 0.11092087, 0.0015352378, 0.0001774735, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352374, 0.00017747346, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352373, 0.00017747344, 0.44368324, 0.44368324, 0.11092085, 0.0015352371, 0.00017747341, 0.44368324, 0.44368324, 0.11092084, 0.001535237, 0.0001774734, 0.44368324, 0.44368324, 0.11092083, 0.0015352367, 0.00017747337, 0.44368324, 0.44368324, 0.110920824, 0.0015352365, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.44368324, 0.44368324, 0.11092082, 0.0015352363, 0.00017747331, 0.44368324, 0.44368324, 0.11092081, 0.0015352361, 0.0001774733, 0.9999998, 1.7388004e-7, 1.08675025e-8, 0, 0, 0.5, 0.5, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float2[] primvars:st = [(0.57430136, 0.13210803), (0.5632045, 0.11032924), (0.626409, 0.064408496), (0.64860266, 0.10796607), (0.5459207, 0.0930455), (0.5918415, 0.02984102), (0.52414197, 0.08194867), (0.54828393, 0.0076473355), (0.5, 0.07812497), (0.5, -7.4505806e-8), (0.47585803, 0.08194867), (0.45171607, 0.0076473504), (0.45407927, 0.09304553), (0.4081585, 0.02984105), (0.43679553, 0.11032927), (0.37359107, 0.064408526), (0.4256987, 0.13210803), (0.3513974, 0.1079661), (0.421875, 0.15625), (0.34374997, 0.15625), (0.4256987, 0.18039197), (0.3513974, 0.2045339), (0.43679553, 0.20217073), (0.37359107, 0.24809146), (0.45407927, 0.21945447), (0.40815854, 0.28265893), (0.47585803, 0.2305513), (0.4517161, 0.3048526), (0.5, 0.234375), (0.5, 0.3125), (0.52414197, 0.2305513), (0.5482839, 0.3048526), (0.5459207, 0.21945447), (0.59184146, 0.28265893), (0.56320447, 0.20217073), (0.62640893, 0.24809146), (0.5743013, 0.18039197), (0.6486026, 0.2045339), (0.578125, 0.15625), (0.65625, 0.15625), (0.375, 0.3125), (0.3875, 0.3125), (0.3875, 0.350094), (0.375, 0.350094), (0.39999998, 0.3125), (0.39999998, 0.350094), (0.41249996, 0.3125), (0.41249996, 0.350094), (0.42499995, 0.3125), (0.42499995, 0.350094), (0.43749994, 0.3125), (0.43749994, 0.350094), (0.44999993, 0.3125), (0.44999993, 0.350094), (0.46249992, 0.3125), (0.46249992, 0.350094), (0.4749999, 0.3125), (0.4749999, 0.350094), (0.4874999, 0.3125), (0.4874999, 0.350094), (0.49999988, 0.3125), (0.49999988, 0.350094), (0.51249987, 0.3125), (0.51249987, 0.350094), (0.52499986, 0.3125), (0.52499986, 0.350094), (0.53749985, 0.3125), (0.53749985, 0.350094), (0.54999983, 0.3125), (0.54999983, 0.350094), (0.5624998, 0.3125), (0.5624998, 0.350094), (0.5749998, 0.3125), (0.5749998, 0.350094), (0.5874998, 0.3125), (0.5874998, 0.350094), (0.5999998, 0.3125), (0.5999998, 0.350094), (0.6124998, 0.3125), (0.6124998, 0.350094), (0.62499976, 0.3125), (0.62499976, 0.350094), (0.3875, 0.38768798), (0.375, 0.38768798), (0.39999998, 0.38768798), (0.41249996, 0.38768798), (0.42499995, 0.38768798), (0.43749994, 0.38768798), (0.44999993, 0.38768798), (0.46249992, 0.38768798), (0.4749999, 0.38768798), (0.4874999, 0.38768798), (0.49999988, 0.38768798), (0.51249987, 0.38768798), (0.52499986, 0.38768798), (0.53749985, 0.38768798), (0.54999983, 0.38768798), (0.5624998, 0.38768798), (0.5749998, 0.38768798), (0.5874998, 0.38768798), (0.5999998, 0.38768798), (0.6124998, 0.38768798), (0.62499976, 0.38768798), (0.3875, 0.42528197), (0.375, 0.42528197), (0.39999998, 0.42528197), (0.41249996, 0.42528197), (0.42499995, 0.42528197), (0.43749994, 0.42528197), (0.44999993, 0.42528197), (0.46249992, 0.42528197), (0.4749999, 0.42528197), (0.4874999, 0.42528197), (0.49999988, 0.42528197), (0.51249987, 0.42528197), (0.52499986, 0.42528197), (0.53749985, 0.42528197), (0.54999983, 0.42528197), (0.5624998, 0.42528197), (0.5749998, 0.42528197), (0.5874998, 0.42528197), (0.5999998, 0.42528197), (0.6124998, 0.42528197), (0.62499976, 0.42528197), (0.3875, 0.46287596), (0.375, 0.46287596), (0.39999998, 0.46287596), (0.41249996, 0.46287596), (0.42499995, 0.46287596), (0.43749994, 0.46287596), (0.44999993, 0.46287596), (0.46249992, 0.46287596), (0.4749999, 0.46287596), (0.4874999, 0.46287596), (0.49999988, 0.46287596), (0.51249987, 0.46287596), (0.52499986, 0.46287596), (0.53749985, 0.46287596), (0.54999983, 0.46287596), (0.5624998, 0.46287596), (0.5749998, 0.46287596), (0.5874998, 0.46287596), (0.5999998, 0.46287596), (0.6124998, 0.46287596), (0.62499976, 0.46287596), (0.3875, 0.5004699), (0.375, 0.5004699), (0.39999998, 0.5004699), (0.41249996, 0.5004699), (0.42499995, 0.5004699), (0.43749994, 0.5004699), (0.44999993, 0.5004699), (0.46249992, 0.5004699), (0.4749999, 0.5004699), (0.4874999, 0.5004699), (0.49999988, 0.5004699), (0.51249987, 0.5004699), (0.52499986, 0.5004699), (0.53749985, 0.5004699), (0.54999983, 0.5004699), (0.5624998, 0.5004699), (0.5749998, 0.5004699), (0.5874998, 0.5004699), (0.5999998, 0.5004699), (0.6124998, 0.5004699), (0.62499976, 0.5004699), (0.3875, 0.5380639), (0.375, 0.5380639), (0.39999998, 0.5380639), (0.41249996, 0.5380639), (0.42499995, 0.5380639), (0.43749994, 0.5380639), (0.44999993, 0.5380639), (0.46249992, 0.5380639), (0.4749999, 0.5380639), (0.4874999, 0.5380639), (0.49999988, 0.5380639), (0.51249987, 0.5380639), (0.52499986, 0.5380639), (0.53749985, 0.5380639), (0.54999983, 0.5380639), (0.5624998, 0.5380639), (0.5749998, 0.5380639), (0.5874998, 0.5380639), (0.5999998, 0.5380639), (0.6124998, 0.5380639), (0.62499976, 0.5380639), (0.3875, 0.57565784), (0.375, 0.57565784), (0.39999998, 0.57565784), (0.41249996, 0.57565784), (0.42499995, 0.57565784), (0.43749994, 0.57565784), (0.44999993, 0.57565784), (0.46249992, 0.57565784), (0.4749999, 0.57565784), (0.4874999, 0.57565784), (0.49999988, 0.57565784), (0.51249987, 0.57565784), (0.52499986, 0.57565784), (0.53749985, 0.57565784), (0.54999983, 0.57565784), (0.5624998, 0.57565784), (0.5749998, 0.57565784), (0.5874998, 0.57565784), (0.5999998, 0.57565784), (0.6124998, 0.57565784), (0.62499976, 0.57565784), (0.3875, 0.6132518), (0.375, 0.6132518), (0.39999998, 0.6132518), (0.41249996, 0.6132518), (0.42499995, 0.6132518), (0.43749994, 0.6132518), (0.44999993, 0.6132518), (0.46249992, 0.6132518), (0.4749999, 0.6132518), (0.4874999, 0.6132518), (0.49999988, 0.6132518), (0.51249987, 0.6132518), (0.52499986, 0.6132518), (0.53749985, 0.6132518), (0.54999983, 0.6132518), (0.5624998, 0.6132518), (0.5749998, 0.6132518), (0.5874998, 0.6132518), (0.5999998, 0.6132518), (0.6124998, 0.6132518), (0.62499976, 0.6132518), (0.3875, 0.65084577), (0.375, 0.65084577), (0.39999998, 0.65084577), (0.41249996, 0.65084577), (0.42499995, 0.65084577), (0.43749994, 0.65084577), (0.44999993, 0.65084577), (0.46249992, 0.65084577), (0.4749999, 0.65084577), (0.4874999, 0.65084577), (0.49999988, 0.65084577), (0.51249987, 0.65084577), (0.52499986, 0.65084577), (0.53749985, 0.65084577), (0.54999983, 0.65084577), (0.5624998, 0.65084577), (0.5749998, 0.65084577), (0.5874998, 0.65084577), (0.5999998, 0.65084577), (0.6124998, 0.65084577), (0.62499976, 0.65084577), (0.3875, 0.6884397), (0.375, 0.6884397), (0.39999998, 0.6884397), (0.41249996, 0.6884397), (0.42499995, 0.6884397), (0.43749994, 0.6884397), (0.44999993, 0.6884397), (0.46249992, 0.6884397), (0.4749999, 0.6884397), (0.4874999, 0.6884397), (0.49999988, 0.6884397), (0.51249987, 0.6884397), (0.52499986, 0.6884397), (0.53749985, 0.6884397), (0.54999983, 0.6884397), (0.5624998, 0.6884397), (0.5749998, 0.6884397), (0.5874998, 0.6884397), (0.5999998, 0.6884397), (0.6124998, 0.6884397), (0.62499976, 0.6884397), (0.6486026, 0.89203393), (0.62640893, 0.93559146), (0.56320447, 0.8896707), (0.5743013, 0.86789197), (0.59184146, 0.97015893), (0.5459207, 0.90695447), (0.5482839, 0.9923526), (0.52414197, 0.9180513), (0.5, 1), (0.5, 0.921875), (0.4517161, 0.9923526), (0.47585803, 0.9180513), (0.40815854, 0.97015893), (0.45407927, 0.90695447), (0.37359107, 0.93559146), (0.43679553, 0.8896707), (0.3513974, 0.89203393), (0.4256987, 0.86789197), (0.34374997, 0.84375), (0.421875, 0.84375), (0.3513974, 0.79546607), (0.4256987, 0.81960803), (0.37359107, 0.75190854), (0.43679553, 0.7978293), (0.4081585, 0.71734107), (0.45407927, 0.78054553), (0.45171607, 0.69514734), (0.47585803, 0.76944864), (0.5, 0.68749994), (0.5, 0.765625), (0.54828393, 0.69514734), (0.52414197, 0.76944864), (0.5918415, 0.717341), (0.5459207, 0.7805455), (0.626409, 0.7519085), (0.5632045, 0.7978293), (0.64860266, 0.79546607), (0.57430136, 0.81960803), (0.65625, 0.84375), (0.578125, 0.84375), (0.5, 0.15), (0.5, 0.8375)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 1, 4, 5, 2, 4, 6, 7, 5, 6, 8, 9, 7, 8, 10, 11, 9, 10, 12, 13, 11, 12, 14, 15, 13, 14, 16, 17, 15, 16, 18, 19, 17, 18, 20, 21, 19, 20, 22, 23, 21, 22, 24, 25, 23, 24, 26, 27, 25, 26, 28, 29, 27, 28, 30, 31, 29, 30, 32, 33, 31, 32, 34, 35, 33, 34, 36, 37, 35, 36, 38, 39, 37, 38, 0, 3, 39, 40, 41, 42, 43, 41, 44, 45, 42, 44, 46, 47, 45, 46, 48, 49, 47, 48, 50, 51, 49, 50, 52, 53, 51, 52, 54, 55, 53, 54, 56, 57, 55, 56, 58, 59, 57, 58, 60, 61, 59, 60, 62, 63, 61, 62, 64, 65, 63, 64, 66, 67, 65, 66, 68, 69, 67, 68, 70, 71, 69, 70, 72, 73, 71, 72, 74, 75, 73, 74, 76, 77, 75, 76, 78, 79, 77, 78, 80, 81, 79, 43, 42, 82, 83, 42, 45, 84, 82, 45, 47, 85, 84, 47, 49, 86, 85, 49, 51, 87, 86, 51, 53, 88, 87, 53, 55, 89, 88, 55, 57, 90, 89, 57, 59, 91, 90, 59, 61, 92, 91, 61, 63, 93, 92, 63, 65, 94, 93, 65, 67, 95, 94, 67, 69, 96, 95, 69, 71, 97, 96, 71, 73, 98, 97, 73, 75, 99, 98, 75, 77, 100, 99, 77, 79, 101, 100, 79, 81, 102, 101, 83, 82, 103, 104, 82, 84, 105, 103, 84, 85, 106, 105, 85, 86, 107, 106, 86, 87, 108, 107, 87, 88, 109, 108, 88, 89, 110, 109, 89, 90, 111, 110, 90, 91, 112, 111, 91, 92, 113, 112, 92, 93, 114, 113, 93, 94, 115, 114, 94, 95, 116, 115, 95, 96, 117, 116, 96, 97, 118, 117, 97, 98, 119, 118, 98, 99, 120, 119, 99, 100, 121, 120, 100, 101, 122, 121, 101, 102, 123, 122, 104, 103, 124, 125, 103, 105, 126, 124, 105, 106, 127, 126, 106, 107, 128, 127, 107, 108, 129, 128, 108, 109, 130, 129, 109, 110, 131, 130, 110, 111, 132, 131, 111, 112, 133, 132, 112, 113, 134, 133, 113, 114, 135, 134, 114, 115, 136, 135, 115, 116, 137, 136, 116, 117, 138, 137, 117, 118, 139, 138, 118, 119, 140, 139, 119, 120, 141, 140, 120, 121, 142, 141, 121, 122, 143, 142, 122, 123, 144, 143, 125, 124, 145, 146, 124, 126, 147, 145, 126, 127, 148, 147, 127, 128, 149, 148, 128, 129, 150, 149, 129, 130, 151, 150, 130, 131, 152, 151, 131, 132, 153, 152, 132, 133, 154, 153, 133, 134, 155, 154, 134, 135, 156, 155, 135, 136, 157, 156, 136, 137, 158, 157, 137, 138, 159, 158, 138, 139, 160, 159, 139, 140, 161, 160, 140, 141, 162, 161, 141, 142, 163, 162, 142, 143, 164, 163, 143, 144, 165, 164, 146, 145, 166, 167, 145, 147, 168, 166, 147, 148, 169, 168, 148, 149, 170, 169, 149, 150, 171, 170, 150, 151, 172, 171, 151, 152, 173, 172, 152, 153, 174, 173, 153, 154, 175, 174, 154, 155, 176, 175, 155, 156, 177, 176, 156, 157, 178, 177, 157, 158, 179, 178, 158, 159, 180, 179, 159, 160, 181, 180, 160, 161, 182, 181, 161, 162, 183, 182, 162, 163, 184, 183, 163, 164, 185, 184, 164, 165, 186, 185, 167, 166, 187, 188, 166, 168, 189, 187, 168, 169, 190, 189, 169, 170, 191, 190, 170, 171, 192, 191, 171, 172, 193, 192, 172, 173, 194, 193, 173, 174, 195, 194, 174, 175, 196, 195, 175, 176, 197, 196, 176, 177, 198, 197, 177, 178, 199, 198, 178, 179, 200, 199, 179, 180, 201, 200, 180, 181, 202, 201, 181, 182, 203, 202, 182, 183, 204, 203, 183, 184, 205, 204, 184, 185, 206, 205, 185, 186, 207, 206, 188, 187, 208, 209, 187, 189, 210, 208, 189, 190, 211, 210, 190, 191, 212, 211, 191, 192, 213, 212, 192, 193, 214, 213, 193, 194, 215, 214, 194, 195, 216, 215, 195, 196, 217, 216, 196, 197, 218, 217, 197, 198, 219, 218, 198, 199, 220, 219, 199, 200, 221, 220, 200, 201, 222, 221, 201, 202, 223, 222, 202, 203, 224, 223, 203, 204, 225, 224, 204, 205, 226, 225, 205, 206, 227, 226, 206, 207, 228, 227, 209, 208, 229, 230, 208, 210, 231, 229, 210, 211, 232, 231, 211, 212, 233, 232, 212, 213, 234, 233, 213, 214, 235, 234, 214, 215, 236, 235, 215, 216, 237, 236, 216, 217, 238, 237, 217, 218, 239, 238, 218, 219, 240, 239, 219, 220, 241, 240, 220, 221, 242, 241, 221, 222, 243, 242, 222, 223, 244, 243, 223, 224, 245, 244, 224, 225, 246, 245, 225, 226, 247, 246, 226, 227, 248, 247, 227, 228, 249, 248, 230, 229, 250, 251, 229, 231, 252, 250, 231, 232, 253, 252, 232, 233, 254, 253, 233, 234, 255, 254, 234, 235, 256, 255, 235, 236, 257, 256, 236, 237, 258, 257, 237, 238, 259, 258, 238, 239, 260, 259, 239, 240, 261, 260, 240, 241, 262, 261, 241, 242, 263, 262, 242, 243, 264, 263, 243, 244, 265, 264, 244, 245, 266, 265, 245, 246, 267, 266, 246, 247, 268, 267, 247, 248, 269, 268, 248, 249, 270, 269, 271, 272, 273, 274, 272, 275, 276, 273, 275, 277, 278, 276, 277, 279, 280, 278, 279, 281, 282, 280, 281, 283, 284, 282, 283, 285, 286, 284, 285, 287, 288, 286, 287, 289, 290, 288, 289, 291, 292, 290, 291, 293, 294, 292, 293, 295, 296, 294, 295, 297, 298, 296, 297, 299, 300, 298, 299, 301, 302, 300, 301, 303, 304, 302, 303, 305, 306, 304, 305, 307, 308, 306, 307, 309, 310, 308, 309, 271, 274, 310, 1, 0, 311, 4, 1, 311, 6, 4, 311, 8, 6, 311, 10, 8, 311, 12, 10, 311, 14, 12, 311, 16, 14, 311, 18, 16, 311, 20, 18, 311, 22, 20, 311, 24, 22, 311, 26, 24, 311, 28, 26, 311, 30, 28, 311, 32, 30, 311, 34, 32, 311, 36, 34, 311, 38, 36, 311, 0, 38, 311, 274, 273, 312, 273, 276, 312, 276, 278, 312, 278, 280, 312, 280, 282, 312, 282, 284, 312, 284, 286, 312, 286, 288, 312, 288, 290, 312, 290, 292, 312, 292, 294, 312, 294, 296, 312, 296, 298, 312, 298, 300, 312, 300, 302, 312, 302, 304, 312, 304, 306, 312, 306, 308, 312, 308, 310, 312, 310, 274, 312] bool shadow:enable = 1 uniform token[] skel:blendShapes = ["BlendShape1"] rel skel:blendShapeTargets = </Root/group1/pCylinder1/BlendShape1> uniform token[] skel:joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] rel skel:skeleton = </Root/group1/joint1> uniform token skel:skinningMethod = "DualQuaternion" uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def BlendShape "BlendShape1" { uniform vector3f[] offsets = [(0.055679083, -0, 0), (0.055679083, -0, 0), (0.0076562166, -0, 0), (0.007656336, -1.2980017e-19, 0), (2.5285296, -0, 0), (2.52853, -0, 0), (1.9332323, -0, 0), (0.724032, -0, 0), (0.015010702, -0, 0), (0.0150107145, -0, 0), (0.7240318, -0, 0), (1.9332323, -2.390851e-19, 0), (4.553535, -0, 0), (4.5535345, -0, 0), (3.667693, -0, 0), (1.7491772, -0, 0), (0.2682255, -0, 0), (0.26822555, -0, 0), (1.7491773, -0, 0), (3.6676931, -6.64955e-19, 0), (4.553535, -0, 0), (4.5535345, -0, 0), (3.667693, -0, 0), (1.7491772, -0, 0), (0.2682255, -0, 0), (0.26822555, -0, 0), (1.7491773, -0, 0), (3.6676931, -1.6402312e-18, 0), (2.5285296, -0, 0), (2.52853, -0, 0), (1.9332323, -0, 0), (0.724032, -0, 0), (0.015010702, -0, 0), (0.0150107145, -0, 0), (0.7240318, -0, 0), (1.9332323, -2.3276786e-18, 0), (0.055679083, -0, 0), (0.055679083, -0, 0), (0.0076562166, -0, 0), (0.007656336, -3.0373284e-18, 0)] uniform uint[] pointIndices = [60, 61, 62, 79, 80, 81, 82, 83, 84, 97, 98, 99, 100, 101, 102, 103, 104, 117, 118, 119, 120, 121, 122, 123, 124, 137, 138, 139, 140, 141, 142, 143, 144, 157, 158, 159, 160, 161, 162, 179] } } def Skeleton "joint1" ( prepend apiSchemas = ["SkelBindingAPI"] customData = { dictionary Maya = { bool generated = 1 } } ) { uniform matrix4d[] bindTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (-1.3877787807814457e-17, 8.841297486311764e-34, 3.0000000000000004, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (0, 1.2722513410043386e-31, 6, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (9.185754640251975e-34, 1.5649926925511984e-31, 9, 1) ), ( (1, -1.224391440225264e-16, -1.1796119636642288e-16, 0), (1.2243914402252635e-16, 1, -1.1996391250259628e-16, 0), (2.2898349882893854e-16, 1.1996391250259626e-16, 1, 0), (1.2247672853669268e-33, 1.4186220167777685e-31, 10, 1) )] uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] uniform matrix4d[] restTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (0.9997914836161194, 0, 0.0204203155871533, 0), (0, 1, 0, 0), (-0.0204203155871533, 0, 0.9997914836161194, 0), (3.0272297713351164, -9.860761315262648e-32, 7.979727989493313e-16, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.502302236417219e-18, 1.0318135235110049e-14, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.50230223641712e-18, 1.0304257447302234e-14, 1) ), ( (-3.552713678800501e-15, 0, 1, 0), (-1.2246467991473532e-16, -1, -4.437342591868191e-31, 0), (1, -1.2246467991473532e-16, 3.6637359812630166e-15, 0), (1, -2.5007674121390154e-18, 3.434752482434078e-15, 1) )] rel skel:animationSource = </Root/group1/joint1/Animation> def "Animation"( prepend references = @./assets/skelcylinder_anim.usda@ ) { } def "Animation_Static"( prepend references = @./assets/skelcylinder_anim_static.usda@ ) { } def "Animation_Flat"( prepend references = @./assets/skelcylinder_anim_flat.usda@ ) { } } } def Xform "locator1" { } def Xform "locator2" { } def Scope "Looks" { def Material "initialShadingGroup" { token outputs:mdl:surface.connect = </Root/Looks/initialShadingGroup/lambert1.outputs:out> def Shader "lambert1" ( kind = "Material" ) { uniform token info:id = "mdlMaterial" custom asset module = @../CODE/Git/frzhang/kit/kit/_build/windows-x86_64/release/exts/omni.rtx.tests/data/usd/hydra/skel/lambert1.mdl@ custom string name = "lambert1" token outputs:out } } } def DistantLight "DistantLight" ( 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 = (45, 0, 90) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def "ZAnimation"( prepend references = @./assets/skelcylinder_anim_flat2.usda@ ) { }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/skelcylinder.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.435988509696834, 14.405080044311397, 19.391780817550533) double3 target = (0.03090846538543701, 0, 4.986700773239136) } dictionary Right = { double3 position = (0, -50002.000000953674, -1.1102674335673174e-11) double radius = 500 } dictionary Top = { double3 position = (0, 0, 50012.000000953674) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { } } defaultPrim = "Root" endTimeCode = 120 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def "Root" ( kind = "component" ) { def SkelRoot "group1" { matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def Mesh "pCylinder1" ( prepend apiSchemas = ["SkelBindingAPI", "ShadowAPI"] ) { uniform bool doubleSided = 1 float3[] extent = [(-2.0000005, -2.0000002, 0), (2, 2.000001, 10)] 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, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 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] int[] faceVertexIndices = [0, 1, 21, 20, 1, 2, 22, 21, 2, 3, 23, 22, 3, 4, 24, 23, 4, 5, 25, 24, 5, 6, 26, 25, 6, 7, 27, 26, 7, 8, 28, 27, 8, 9, 29, 28, 9, 10, 30, 29, 10, 11, 31, 30, 11, 12, 32, 31, 12, 13, 33, 32, 13, 14, 34, 33, 14, 15, 35, 34, 15, 16, 36, 35, 16, 17, 37, 36, 17, 18, 38, 37, 18, 19, 39, 38, 19, 0, 20, 39, 20, 21, 41, 40, 21, 22, 42, 41, 22, 23, 43, 42, 23, 24, 44, 43, 24, 25, 45, 44, 25, 26, 46, 45, 26, 27, 47, 46, 27, 28, 48, 47, 28, 29, 49, 48, 29, 30, 50, 49, 30, 31, 51, 50, 31, 32, 52, 51, 32, 33, 53, 52, 33, 34, 54, 53, 34, 35, 55, 54, 35, 36, 56, 55, 36, 37, 57, 56, 37, 38, 58, 57, 38, 39, 59, 58, 39, 20, 40, 59, 40, 41, 61, 60, 41, 42, 62, 61, 42, 43, 63, 62, 43, 44, 64, 63, 44, 45, 65, 64, 45, 46, 66, 65, 46, 47, 67, 66, 47, 48, 68, 67, 48, 49, 69, 68, 49, 50, 70, 69, 50, 51, 71, 70, 51, 52, 72, 71, 52, 53, 73, 72, 53, 54, 74, 73, 54, 55, 75, 74, 55, 56, 76, 75, 56, 57, 77, 76, 57, 58, 78, 77, 58, 59, 79, 78, 59, 40, 60, 79, 60, 61, 81, 80, 61, 62, 82, 81, 62, 63, 83, 82, 63, 64, 84, 83, 64, 65, 85, 84, 65, 66, 86, 85, 66, 67, 87, 86, 67, 68, 88, 87, 68, 69, 89, 88, 69, 70, 90, 89, 70, 71, 91, 90, 71, 72, 92, 91, 72, 73, 93, 92, 73, 74, 94, 93, 74, 75, 95, 94, 75, 76, 96, 95, 76, 77, 97, 96, 77, 78, 98, 97, 78, 79, 99, 98, 79, 60, 80, 99, 80, 81, 101, 100, 81, 82, 102, 101, 82, 83, 103, 102, 83, 84, 104, 103, 84, 85, 105, 104, 85, 86, 106, 105, 86, 87, 107, 106, 87, 88, 108, 107, 88, 89, 109, 108, 89, 90, 110, 109, 90, 91, 111, 110, 91, 92, 112, 111, 92, 93, 113, 112, 93, 94, 114, 113, 94, 95, 115, 114, 95, 96, 116, 115, 96, 97, 117, 116, 97, 98, 118, 117, 98, 99, 119, 118, 99, 80, 100, 119, 100, 101, 121, 120, 101, 102, 122, 121, 102, 103, 123, 122, 103, 104, 124, 123, 104, 105, 125, 124, 105, 106, 126, 125, 106, 107, 127, 126, 107, 108, 128, 127, 108, 109, 129, 128, 109, 110, 130, 129, 110, 111, 131, 130, 111, 112, 132, 131, 112, 113, 133, 132, 113, 114, 134, 133, 114, 115, 135, 134, 115, 116, 136, 135, 116, 117, 137, 136, 117, 118, 138, 137, 118, 119, 139, 138, 119, 100, 120, 139, 120, 121, 141, 140, 121, 122, 142, 141, 122, 123, 143, 142, 123, 124, 144, 143, 124, 125, 145, 144, 125, 126, 146, 145, 126, 127, 147, 146, 127, 128, 148, 147, 128, 129, 149, 148, 129, 130, 150, 149, 130, 131, 151, 150, 131, 132, 152, 151, 132, 133, 153, 152, 133, 134, 154, 153, 134, 135, 155, 154, 135, 136, 156, 155, 136, 137, 157, 156, 137, 138, 158, 157, 138, 139, 159, 158, 139, 120, 140, 159, 140, 141, 161, 160, 141, 142, 162, 161, 142, 143, 163, 162, 143, 144, 164, 163, 144, 145, 165, 164, 145, 146, 166, 165, 146, 147, 167, 166, 147, 148, 168, 167, 148, 149, 169, 168, 149, 150, 170, 169, 150, 151, 171, 170, 151, 152, 172, 171, 152, 153, 173, 172, 153, 154, 174, 173, 154, 155, 175, 174, 155, 156, 176, 175, 156, 157, 177, 176, 157, 158, 178, 177, 158, 159, 179, 178, 159, 140, 160, 179, 160, 161, 181, 180, 161, 162, 182, 181, 162, 163, 183, 182, 163, 164, 184, 183, 164, 165, 185, 184, 165, 166, 186, 185, 166, 167, 187, 186, 167, 168, 188, 187, 168, 169, 189, 188, 169, 170, 190, 189, 170, 171, 191, 190, 171, 172, 192, 191, 172, 173, 193, 192, 173, 174, 194, 193, 174, 175, 195, 194, 175, 176, 196, 195, 176, 177, 197, 196, 177, 178, 198, 197, 178, 179, 199, 198, 179, 160, 180, 199, 180, 181, 201, 200, 181, 182, 202, 201, 182, 183, 203, 202, 183, 184, 204, 203, 184, 185, 205, 204, 185, 186, 206, 205, 186, 187, 207, 206, 187, 188, 208, 207, 188, 189, 209, 208, 189, 190, 210, 209, 190, 191, 211, 210, 191, 192, 212, 211, 192, 193, 213, 212, 193, 194, 214, 213, 194, 195, 215, 214, 195, 196, 216, 215, 196, 197, 217, 216, 197, 198, 218, 217, 198, 199, 219, 218, 199, 180, 200, 219, 200, 201, 221, 220, 201, 202, 222, 221, 202, 203, 223, 222, 203, 204, 224, 223, 204, 205, 225, 224, 205, 206, 226, 225, 206, 207, 227, 226, 207, 208, 228, 227, 208, 209, 229, 228, 209, 210, 230, 229, 210, 211, 231, 230, 211, 212, 232, 231, 212, 213, 233, 232, 213, 214, 234, 233, 214, 215, 235, 234, 215, 216, 236, 235, 216, 217, 237, 236, 217, 218, 238, 237, 218, 219, 239, 238, 219, 200, 220, 239, 220, 221, 241, 240, 221, 222, 242, 241, 222, 223, 243, 242, 223, 224, 244, 243, 224, 225, 245, 244, 225, 226, 246, 245, 226, 227, 247, 246, 227, 228, 248, 247, 228, 229, 249, 248, 229, 230, 250, 249, 230, 231, 251, 250, 231, 232, 252, 251, 232, 233, 253, 252, 233, 234, 254, 253, 234, 235, 255, 254, 235, 236, 256, 255, 236, 237, 257, 256, 237, 238, 258, 257, 238, 239, 259, 258, 239, 220, 240, 259, 1, 0, 260, 2, 1, 260, 3, 2, 260, 4, 3, 260, 5, 4, 260, 6, 5, 260, 7, 6, 260, 8, 7, 260, 9, 8, 260, 10, 9, 260, 11, 10, 260, 12, 11, 260, 13, 12, 260, 14, 13, 260, 15, 14, 260, 16, 15, 260, 17, 16, 260, 18, 17, 260, 19, 18, 260, 0, 19, 260, 240, 241, 261, 241, 242, 261, 242, 243, 261, 243, 244, 261, 244, 245, 261, 245, 246, 261, 246, 247, 261, 247, 248, 261, 248, 249, 261, 249, 250, 261, 250, 251, 261, 251, 252, 261, 252, 253, 261, 253, 254, 261, 254, 255, 261, 255, 256, 261, 256, 257, 261, 257, 258, 261, 258, 259, 261, 259, 240, 261] normal3f[] normals = [(0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.9510565, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.5877852, -0.809017, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.809017, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.2095654e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901715, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.5877854, 0.8090168, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877855, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.58778507, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.58778524, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.5877853, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.80901694, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.80901706, 0.5877851, 0), (-0.5877854, 0.80901694, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (8.8258304e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.309017, -0.9510565, 0), (8.8258304e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.5877851, -0.809017, 0), (0.309017, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901694, -0.5877853, 0), (0.5877851, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.5877855, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.80901706, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877855, 0.8090169, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (8.8258304e-8, -1, 0), (8.825832e-8, -1, 0), (-0.30901694, -0.95105654, 0), (8.8258304e-8, -1, 0), (0.309017, -0.9510565, 0), (0.30901703, -0.95105654, 0), (8.825832e-8, -1, 0), (0.309017, -0.9510565, 0), (0.5877851, -0.809017, 0), (0.5877853, -0.80901706, 0), (0.30901703, -0.95105654, 0), (0.5877851, -0.809017, 0), (0.80901694, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.80901706, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.58778524, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.58778524, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.9510566, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.30901694, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.8090169, -0.5877854, 0), (-0.9510565, -0.30901694, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.30901694, -0.9510565, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (8.825832e-8, -1, 0), (9.209566e-8, -1, 0), (-0.30901694, -0.9510565, 0), (8.825832e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.30901703, -0.9510565, 0), (9.209566e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.5877853, -0.80901706, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.80901706, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.309016, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.58778524, 0), (0.8090169, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.58778524, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.80901706, 0), (0.8090169, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.9510566, 0), (0.30901685, 0.9510566, 0), (0.5877851, 0.80901706, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.95105654, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.5877854, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (9.209566e-8, -1, 0), (8.8258325e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209566e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.8090169, 0.5877853, 0), (0.8090169, 0.58778536, 0), (0.9510569, 0.3090161, 0), (0.8090169, 0.5877853, 0), (0.5877851, 0.80901706, 0), (0.58778524, 0.80901706, 0), (0.8090169, 0.58778536, 0), (0.5877851, 0.80901706, 0), (0.30901685, 0.9510566, 0), (0.3090169, 0.9510566, 0), (0.58778524, 0.80901706, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090169, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.95105654, -0.3090171, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.58778554, 0), (-0.95105654, -0.3090171, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.809017, 0), (-0.8090169, -0.58778554, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.3090169, -0.9510566, 0), (-0.5877852, -0.809017, 0), (-0.3090169, -0.95105654, 0), (8.8258325e-8, -1, 0), (8.4420996e-8, -1, 0), (-0.3090169, -0.9510566, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.4420996e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.809017, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.809017, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.3090161, 0), (1, -9.593294e-7, 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, 5.1435853e-7, 1), (0, 7.347982e-7, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, -5.143587e-7, 1), (0, -7.347983e-7, 1), (0, 7.347982e-7, 1), (0, -5.143587e-7, 1), (0, -0.0000020574357, 1), (0, -0.0000022778752, 1), (0, -7.347983e-7, 1), (0, -0.0000020574357, 1), (0, -0, 1), (0, -0, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, -0, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 4.0413923e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 6.062089e-7, 1), (0, 4.0413923e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 1.9288467e-7, 1), (0, 1.1021976e-7, 1), (0, 6.062089e-7, 1), (0, 1.9288467e-7, 1), (0, -6.429489e-8, 1), (0, -9.1849834e-8, 1), (0, 1.1021976e-7, 1), (0, -6.429489e-8, 1), (0, -0, 1), (0, -0, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 8.082787e-7, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 0.0000010287172, 1), (0, 8.0827857e-7, 1), (0, 8.082787e-7, 1), (0, 0.0000010287172, 1), (0, -0, 1), (0, -0, 1), (0, 8.0827857e-7, 1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 7.347982e-7, 1), (0, -1.7359638e-7, 1), (0, 7.347982e-7, 1), (0, -7.347983e-7, 1), (0, -1.7359638e-7, 1), (0, -7.347983e-7, 1), (0, -0.0000022778752, 1), (0, -1.7359638e-7, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 4.0413923e-7, 1), (0, -1.7359638e-7, 1), (0, 4.0413923e-7, 1), (0, 6.062089e-7, 1), (0, -1.7359638e-7, 1), (0, 6.062089e-7, 1), (0, 1.1021976e-7, 1), (0, -1.7359638e-7, 1), (0, 1.1021976e-7, 1), (0, -9.1849834e-8, 1), (0, -1.7359638e-7, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082787e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082787e-7, 1), (0, 8.0827857e-7, 1), (0, -1.7359638e-7, 1), (0, 8.0827857e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1)] ( interpolation = "faceVarying" ) point3f[] points = [(0.95105714, 0.30901718, 0), (0.80901754, 0.5877856, 0), (0.5877856, 0.8090175, 0), (0.30901715, 0.951057, 0), (0, 1.0000005, 0), (-0.30901715, 0.95105696, 0), (-0.5877855, 0.8090173, 0), (-0.80901724, 0.5877854, 0), (-0.9510568, 0.30901706, 0), (-1.0000002, -0, 0), (-0.9510568, -0.30901706, 0), (-0.8090172, -0.58778536, 0), (-0.58778536, -0.8090171, 0), (-0.30901706, -0.95105666, 0), (-2.9802322e-8, -1.0000001, 0), (0.30901697, -0.9510566, 0), (0.58778524, -0.80901706, 0), (0.809017, -0.5877853, 0), (0.95105654, -0.309017, 0), (1, -0, 0), (1.9021143, 0.61803436, 0), (1.6180351, 1.1755712, 0), (1.1755712, 1.618035, 0), (0.6180343, 1.902114, 0), (0, 2.000001, 0), (-0.6180343, 1.9021139, 0), (-1.175571, 1.6180346, 0), (-1.6180345, 1.1755708, 0), (-1.9021136, 0.6180341, 0), (-2.0000005, -0, 0), (-1.9021136, -0.6180341, 0), (-1.6180344, -1.1755707, 0), (-1.1755707, -1.6180342, 0), (-0.6180341, -1.9021133, 0), (-5.9604645e-8, -2.0000002, 0), (0.61803395, -1.9021132, 0), (1.1755705, -1.6180341, 0), (1.618034, -1.1755706, 0), (1.9021131, -0.618034, 0), (2, -0, 0), (1.9021143, 0.61803436, 1), (1.6180351, 1.1755712, 1), (1.1755712, 1.618035, 1), (0.6180343, 1.902114, 1), (0, 2.000001, 1), (-0.6180343, 1.9021139, 1), (-1.175571, 1.6180346, 1), (-1.6180345, 1.1755708, 1), (-1.9021136, 0.6180341, 1), (-2.0000005, -0, 1), (-1.9021136, -0.6180341, 1), (-1.6180344, -1.1755707, 1), (-1.1755707, -1.6180342, 1), (-0.6180341, -1.9021133, 1), (-5.9604645e-8, -2.0000002, 1), (0.61803395, -1.9021132, 1), (1.1755705, -1.6180341, 1), (1.618034, -1.1755706, 1), (1.9021131, -0.618034, 1), (2, -0, 1), (1.9021143, 0.61803436, 2), (1.6180351, 1.1755712, 2), (1.1755712, 1.618035, 2), (0.6180343, 1.902114, 2), (0, 2.000001, 2), (-0.6180343, 1.9021139, 2), (-1.175571, 1.6180346, 2), (-1.6180345, 1.1755708, 2), (-1.9021136, 0.6180341, 2), (-2.0000005, -0, 2), (-1.9021136, -0.6180341, 2), (-1.6180344, -1.1755707, 2), (-1.1755707, -1.6180342, 2), (-0.6180341, -1.9021133, 2), (-5.9604645e-8, -2.0000002, 2), (0.61803395, -1.9021132, 2), (1.1755705, -1.6180341, 2), (1.618034, -1.1755706, 2), (1.9021131, -0.618034, 2), (2, -0, 2), (1.9021143, 0.61803436, 3), (1.6180351, 1.1755712, 3), (1.1755712, 1.618035, 3), (0.6180343, 1.902114, 3), (0, 2.000001, 3), (-0.6180343, 1.9021139, 3), (-1.175571, 1.6180346, 3), (-1.6180345, 1.1755708, 3), (-1.9021136, 0.6180341, 3), (-2.0000005, -0, 3), (-1.9021136, -0.6180341, 3), (-1.6180344, -1.1755707, 3), (-1.1755707, -1.6180342, 3), (-0.6180341, -1.9021133, 3), (-5.9604645e-8, -2.0000002, 3), (0.61803395, -1.9021132, 3), (1.1755705, -1.6180341, 3), (1.618034, -1.1755706, 3), (1.9021131, -0.618034, 3), (2, -0, 3), (1.9021143, 0.61803436, 4), (1.6180351, 1.1755712, 4), (1.1755712, 1.618035, 4), (0.6180343, 1.902114, 4), (0, 2.000001, 4), (-0.6180343, 1.9021139, 4), (-1.175571, 1.6180346, 4), (-1.6180345, 1.1755708, 4), (-1.9021136, 0.6180341, 4), (-2.0000005, -0, 4), (-1.9021136, -0.6180341, 4), (-1.6180344, -1.1755707, 4), (-1.1755707, -1.6180342, 4), (-0.6180341, -1.9021133, 4), (-5.9604645e-8, -2.0000002, 4), (0.61803395, -1.9021132, 4), (1.1755705, -1.6180341, 4), (1.618034, -1.1755706, 4), (1.9021131, -0.618034, 4), (2, -0, 4), (1.9021143, 0.61803436, 5), (1.6180351, 1.1755712, 5), (1.1755712, 1.618035, 5), (0.6180343, 1.902114, 5), (0, 2.000001, 5), (-0.6180343, 1.9021139, 5), (-1.175571, 1.6180346, 5), (-1.6180345, 1.1755708, 5), (-1.9021136, 0.6180341, 5), (-2.0000005, -0, 5), (-1.9021136, -0.6180341, 5), (-1.6180344, -1.1755707, 5), (-1.1755707, -1.6180342, 5), (-0.6180341, -1.9021133, 5), (-5.9604645e-8, -2.0000002, 5), (0.61803395, -1.9021132, 5), (1.1755705, -1.6180341, 5), (1.618034, -1.1755706, 5), (1.9021131, -0.618034, 5), (2, -0, 5), (1.9021143, 0.61803436, 6), (1.6180351, 1.1755712, 6), (1.1755712, 1.618035, 6), (0.6180343, 1.902114, 6), (0, 2.000001, 6), (-0.6180343, 1.9021139, 6), (-1.175571, 1.6180346, 6), (-1.6180345, 1.1755708, 6), (-1.9021136, 0.6180341, 6), (-2.0000005, -0, 6), (-1.9021136, -0.6180341, 6), (-1.6180344, -1.1755707, 6), (-1.1755707, -1.6180342, 6), (-0.6180341, -1.9021133, 6), (-5.9604645e-8, -2.0000002, 6), (0.61803395, -1.9021132, 6), (1.1755705, -1.6180341, 6), (1.618034, -1.1755706, 6), (1.9021131, -0.618034, 6), (2, -0, 6), (1.9021143, 0.61803436, 7), (1.6180351, 1.1755712, 7), (1.1755712, 1.618035, 7), (0.6180343, 1.902114, 7), (0, 2.000001, 7), (-0.6180343, 1.9021139, 7), (-1.175571, 1.6180346, 7), (-1.6180345, 1.1755708, 7), (-1.9021136, 0.6180341, 7), (-2.0000005, -0, 7), (-1.9021136, -0.6180341, 7), (-1.6180344, -1.1755707, 7), (-1.1755707, -1.6180342, 7), (-0.6180341, -1.9021133, 7), (-5.9604645e-8, -2.0000002, 7), (0.61803395, -1.9021132, 7), (1.1755705, -1.6180341, 7), (1.618034, -1.1755706, 7), (1.9021131, -0.618034, 7), (2, -0, 7), (1.9021143, 0.61803436, 8), (1.6180351, 1.1755712, 8), (1.1755712, 1.618035, 8), (0.6180343, 1.902114, 8), (0, 2.000001, 8), (-0.6180343, 1.9021139, 8), (-1.175571, 1.6180346, 8), (-1.6180345, 1.1755708, 8), (-1.9021136, 0.6180341, 8), (-2.0000005, -0, 8), (-1.9021136, -0.6180341, 8), (-1.6180344, -1.1755707, 8), (-1.1755707, -1.6180342, 8), (-0.6180341, -1.9021133, 8), (-5.9604645e-8, -2.0000002, 8), (0.61803395, -1.9021132, 8), (1.1755705, -1.6180341, 8), (1.618034, -1.1755706, 8), (1.9021131, -0.618034, 8), (2, -0, 8), (1.9021143, 0.61803436, 9), (1.6180351, 1.1755712, 9), (1.1755712, 1.618035, 9), (0.6180343, 1.902114, 9), (0, 2.000001, 9), (-0.6180343, 1.9021139, 9), (-1.175571, 1.6180346, 9), (-1.6180345, 1.1755708, 9), (-1.9021136, 0.6180341, 9), (-2.0000005, -0, 9), (-1.9021136, -0.6180341, 9), (-1.6180344, -1.1755707, 9), (-1.1755707, -1.6180342, 9), (-0.6180341, -1.9021133, 9), (-5.9604645e-8, -2.0000002, 9), (0.61803395, -1.9021132, 9), (1.1755705, -1.6180341, 9), (1.618034, -1.1755706, 9), (1.9021131, -0.618034, 9), (2, -0, 9), (1.9021143, 0.61803436, 10), (1.6180351, 1.1755712, 10), (1.1755712, 1.618035, 10), (0.6180343, 1.902114, 10), (0, 2.000001, 10), (-0.6180343, 1.9021139, 10), (-1.175571, 1.6180346, 10), (-1.6180345, 1.1755708, 10), (-1.9021136, 0.6180341, 10), (-2.0000005, -0, 10), (-1.9021136, -0.6180341, 10), (-1.6180344, -1.1755707, 10), (-1.1755707, -1.6180342, 10), (-0.6180341, -1.9021133, 10), (-5.9604645e-8, -2.0000002, 10), (0.61803395, -1.9021132, 10), (1.1755705, -1.6180341, 10), (1.618034, -1.1755706, 10), (1.9021131, -0.618034, 10), (2, -0, 10), (0.95105714, 0.30901718, 10), (0.80901754, 0.5877856, 10), (0.5877856, 0.8090175, 10), (0.30901715, 0.951057, 10), (0, 1.0000005, 10), (-0.30901715, 0.95105696, 10), (-0.5877855, 0.8090173, 10), (-0.80901724, 0.5877854, 10), (-0.9510568, 0.30901706, 10), (-1.0000002, -0, 10), (-0.9510568, -0.30901706, 10), (-0.8090172, -0.58778536, 10), (-0.58778536, -0.8090171, 10), (-0.30901706, -0.95105666, 10), (-2.9802322e-8, -1.0000001, 10), (0.30901697, -0.9510566, 10), (0.58778524, -0.80901706, 10), (0.809017, -0.5877853, 10), (0.95105654, -0.309017, 10), (1, -0, 10), (0, -0, 0), (0, -0, 10)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 0, 1, 2, 0, 0, 4, 3, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [0.9914398, 0.007798158, 0.00056962454, 0.00011597502, 0.00007644505, 0.9911016, 0.008106242, 0.00059212884, 0.00012055687, 0.000079465186, 0.99056286, 0.008597037, 0.0006279794, 0.00012785601, 0.00008427643, 0.98986334, 0.009234303, 0.0006745291, 0.0001373335, 0.00009052352, 0.9890613, 0.009965006, 0.00072790415, 0.00014820059, 0.000097686585, 0.98823136, 0.010720953, 0.0007831231, 0.00015944311, 0.0001050971, 0.9874593, 0.011424304, 0.0008345, 0.00016990342, 0.00011199202, 0.9868309, 0.011996779, 0.00087631703, 0.00017841732, 0.000117603966, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.98627734, 0.012501058, 0.0009131526, 0.000185917, 0.00012254738, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.986831, 0.011996778, 0.00087631686, 0.00017841728, 0.000117603944, 0.9874593, 0.011424296, 0.00083449937, 0.00016990327, 0.000111991925, 0.9882313, 0.01072094, 0.000783122, 0.0001594429, 0.00010509696, 0.98906124, 0.009964993, 0.0007279031, 0.00014820037, 0.00009768643, 0.98986334, 0.009234288, 0.00067452795, 0.00013733325, 0.000090523354, 0.99056286, 0.008597019, 0.000627978, 0.00012785573, 0.00008427624, 0.9911016, 0.008106223, 0.0005921274, 0.000120556564, 0.00007946499, 0.9914398, 0.00779814, 0.0005696231, 0.00011597471, 0.000076444856, 0.991555, 0.00769326, 0.000561962, 0.000114414936, 0.00007541673, 0.9122156, 0.07669155, 0.00810055, 0.0017938935, 0.0011983063, 0.9107189, 0.077999204, 0.00823867, 0.0018244808, 0.0012187384, 0.90837055, 0.0800508, 0.008455371, 0.0018724698, 0.0012507946, 0.90539, 0.0826547, 0.008730407, 0.0019333775, 0.0012914804, 0.9020614, 0.085562706, 0.0090375645, 0.0020013985, 0.001336918, 0.8987084, 0.08849201, 0.009346972, 0.002069918, 0.0013826884, 0.89566416, 0.09115167, 0.009627898, 0.00213213, 0.0014242454, 0.8932356, 0.09327323, 0.0098519875, 0.0021817551, 0.0014573947, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.891131, 0.09511205, 0.010046211, 0.0022247666, 0.0014861261, 0.89167106, 0.09464019, 0.009996371, 0.0022137295, 0.0014787534, 0.8932356, 0.093273215, 0.009851985, 0.0021817544, 0.0014573943, 0.8956642, 0.091151625, 0.009627892, 0.0021321285, 0.0014242444, 0.8987086, 0.088491954, 0.009346964, 0.0020699159, 0.001382687, 0.9020615, 0.08556263, 0.009037553, 0.002001396, 0.0013369162, 0.90539014, 0.0826546, 0.008730393, 0.0019333743, 0.0012914783, 0.9083707, 0.08005069, 0.008455355, 0.0018724661, 0.0012507922, 0.91071904, 0.07799908, 0.008238653, 0.0018244769, 0.0012187357, 0.91221595, 0.07669144, 0.008100534, 0.0017938899, 0.0011983039, 0.9127295, 0.07624267, 0.008053132, 0.0017833925, 0.0011912917, 0.79757524, 0.18422364, 0.01401941, 0.002549811, 0.0016318791, 0.79559076, 0.18602969, 0.01415685, 0.0025748082, 0.0016478773, 0.7925068, 0.18883635, 0.014370436, 0.0026136546, 0.0016727389, 0.78863347, 0.19236143, 0.014638692, 0.0026624443, 0.0017039644, 0.7843574, 0.19625312, 0.014934849, 0.0027163082, 0.0017384373, 0.7801007, 0.20012699, 0.015229651, 0.002769926, 0.0017727527, 0.77627844, 0.20360558, 0.015494369, 0.0028180722, 0.0018035662, 0.77325755, 0.20635484, 0.015703585, 0.002856124, 0.0018279193, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.77065885, 0.20871985, 0.015883561, 0.0028888572, 0.0018488687, 0.7713241, 0.20811455, 0.015837498, 0.0028804794, 0.0018435069, 0.7732577, 0.20635484, 0.015703583, 0.0028561235, 0.001827919, 0.7762785, 0.20360552, 0.015494359, 0.0028180701, 0.001803565, 0.7801008, 0.2001269, 0.015229637, 0.0027699233, 0.0017727509, 0.7843574, 0.19625297, 0.014934831, 0.0027163047, 0.001738435, 0.78863364, 0.19236128, 0.014638673, 0.0026624403, 0.0017039618, 0.79250705, 0.18883617, 0.014370412, 0.0026136497, 0.0016727359, 0.795591, 0.18602951, 0.014156824, 0.0025748028, 0.0016478739, 0.7975755, 0.18422346, 0.014019383, 0.0025498057, 0.0016318756, 0.7982601, 0.18360043, 0.01397197, 0.0025411823, 0.0016263566, 0.6015815, 0.37000003, 0.023125038, 0.0032929934, 0.0020004367, 0.60011387, 0.371363, 0.023210224, 0.0033051237, 0.0020078055, 0.59784955, 0.37346572, 0.02334164, 0.0033238372, 0.0020191737, 0.5950339, 0.37608063, 0.02350507, 0.0033471093, 0.002033311, 0.5919611, 0.37893423, 0.023683418, 0.003372506, 0.002048739, 0.58893895, 0.38174084, 0.02385883, 0.0033974845, 0.0020639133, 0.5862557, 0.38423267, 0.024014562, 0.0034196607, 0.0020773849, 0.58415526, 0.3861833, 0.024136472, 0.0034370206, 0.0020879305, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.58236253, 0.3878482, 0.024240525, 0.0034518375, 0.0020969317, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.5841553, 0.3861833, 0.024136467, 0.0034370197, 0.00208793, 0.5862558, 0.38423264, 0.02401455, 0.0034196584, 0.0020773832, 0.588939, 0.3817408, 0.02385881, 0.003397481, 0.002063911, 0.5919612, 0.37893417, 0.023683393, 0.003372502, 0.0020487367, 0.595034, 0.37608057, 0.02350504, 0.0033471042, 0.002033308, 0.5978497, 0.37346566, 0.023341607, 0.0033238316, 0.0020191702, 0.600114, 0.3713629, 0.023210185, 0.0033051171, 0.0020078013, 0.60158163, 0.36999995, 0.023124997, 0.0032929864, 0.0020004322, 0.6020899, 0.36952794, 0.023095496, 0.0032887855, 0.0019978804, 0.47403845, 0.4736809, 0.044845615, 0.0047368202, 0.0026980822, 0.4739865, 0.47372782, 0.04485005, 0.004737289, 0.0026983493, 0.47392228, 0.47378576, 0.044855528, 0.0047378675, 0.0026986788, 0.47387025, 0.47383252, 0.04485995, 0.004738334, 0.0026989444, 0.47385046, 0.47385046, 0.04486164, 0.0047385124, 0.0026990462, 0.47385046, 0.47385046, 0.044861637, 0.0047385124, 0.002699046, 0.47385046, 0.47385046, 0.04486163, 0.004738511, 0.0026990452, 0.47385043, 0.47385043, 0.044861615, 0.004738509, 0.002699044, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861607, 0.0047385083, 0.0026990436, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861604, 0.004738508, 0.0026990434, 0.47385043, 0.47385043, 0.0448616, 0.0047385073, 0.002699043, 0.47385043, 0.47385043, 0.0448616, 0.004738507, 0.002699043, 0.47385043, 0.47385043, 0.044861592, 0.0047385064, 0.0026990424, 0.47387028, 0.47383255, 0.044859894, 0.0047383267, 0.0026989402, 0.47392228, 0.47378573, 0.04485546, 0.004737858, 0.0026986732, 0.47398654, 0.47372785, 0.04484998, 0.0047372794, 0.0026983435, 0.4740386, 0.4736811, 0.044845548, 0.004736811, 0.002698077, 0.47405848, 0.4736632, 0.044843853, 0.0047366316, 0.0026979747, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.1302746, 0.009913891, 0.005210989, 0.5210978, 0.33350274, 0.1302746, 0.009913888, 0.0052109878, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.0052109873, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.005210987, 0.5210979, 0.33350274, 0.13027458, 0.009913885, 0.005210986, 0.5210979, 0.3335027, 0.13027455, 0.009913881, 0.0052109845, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.00991388, 0.0052109836, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.009913879, 0.005210983, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913877, 0.0052109817, 0.52109796, 0.3335027, 0.1302745, 0.009913876, 0.005210981, 0.52109796, 0.3335027, 0.1302745, 0.009913875, 0.0052109803, 0.52109796, 0.3335027, 0.1302745, 0.009913874, 0.0052109803, 0.52109796, 0.3335027, 0.13027449, 0.009913874, 0.00521098, 0.52109796, 0.3335027, 0.13027449, 0.009913873, 0.00521098, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523114, 0.0097612925, 0.5130769, 0.32836935, 0.12826936, 0.02052311, 0.009761291, 0.5130769, 0.32836935, 0.12826934, 0.020523109, 0.009761289, 0.5130769, 0.32836935, 0.12826934, 0.020523107, 0.009761289, 0.51307696, 0.32836935, 0.12826933, 0.020523103, 0.009761286, 0.513077, 0.32836938, 0.12826933, 0.0205231, 0.009761285, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523097, 0.009761283, 0.513077, 0.32836935, 0.12826933, 0.0205231, 0.009761284, 0.513077, 0.32836935, 0.12826931, 0.020523096, 0.009761283, 0.513077, 0.32836932, 0.1282693, 0.020523092, 0.00976128, 0.513077, 0.32836932, 0.1282693, 0.02052309, 0.00976128, 0.513077, 0.32836932, 0.12826928, 0.020523088, 0.009761279, 0.513077, 0.32836932, 0.12826928, 0.020523086, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523082, 0.009761276, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467415, 0.042467415, 0.017942488, 0.44856134, 0.44856134, 0.042467408, 0.042467408, 0.017942484, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467393, 0.042467393, 0.017942477, 0.44856137, 0.44856137, 0.042467386, 0.042467386, 0.017942473, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467378, 0.042467378, 0.01794247, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467374, 0.042467374, 0.017942468, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.042467367, 0.042467367, 0.017942462, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467356, 0.042467356, 0.017942458, 0.4485615, 0.4485615, 0.042467356, 0.042467356, 0.017942458, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.12347673, 0.04676044, 0.019756291, 0.49390635, 0.3161002, 0.12347672, 0.046760432, 0.019756287, 0.49390638, 0.3161002, 0.123476714, 0.04676043, 0.019756285, 0.49390638, 0.3161002, 0.12347671, 0.04676043, 0.019756285, 0.4939064, 0.3161002, 0.1234767, 0.04676042, 0.01975628, 0.49390644, 0.31610018, 0.123476684, 0.04676041, 0.019756276, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760406, 0.019756272, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760403, 0.019756272, 0.49390647, 0.31610018, 0.12347666, 0.0467604, 0.01975627, 0.4939065, 0.31610018, 0.12347666, 0.0467604, 0.019756269, 0.49390656, 0.3161002, 0.12347667, 0.0467604, 0.019756269, 0.4939066, 0.3161002, 0.12347666, 0.04676039, 0.019756267, 0.4939066, 0.3161002, 0.123476654, 0.04676039, 0.019756265, 0.4939066, 0.3161002, 0.123476654, 0.046760388, 0.019756265, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347663, 0.046760384, 0.019756261, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.46317184, 0.2964301, 0.1157931, 0.1157931, 0.008811848, 0.46317187, 0.2964301, 0.11579309, 0.11579309, 0.008811847, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.46317193, 0.29643014, 0.115793094, 0.115793094, 0.008811846, 0.4631719, 0.2964301, 0.115793064, 0.115793064, 0.008811844, 0.46317193, 0.2964301, 0.11579306, 0.11579306, 0.008811842, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.11579303, 0.11579303, 0.008811837, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811836, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317205, 0.2964301, 0.11579301, 0.11579301, 0.008811834, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.03449396, 0.0036434263, 0.36434186, 0.36434186, 0.23317888, 0.034493953, 0.0036434254, 0.36434186, 0.36434186, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317888, 0.03449395, 0.003643425, 0.3643419, 0.3643419, 0.2331789, 0.034493946, 0.0036434243, 0.36434188, 0.36434188, 0.23317887, 0.034493934, 0.0036434229, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.03449393, 0.0036434222, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.034493927, 0.003643422, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.0036434212, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.003643421, 0.3643419, 0.3643419, 0.23317884, 0.03449392, 0.0036434208, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.00364342, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.0036434198, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317882, 0.03449391, 0.0036434191, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.37234294, 0.37234294, 0.23829961, 0.014893747, 0.0021208616, 0.3723429, 0.3723429, 0.23829956, 0.014893741, 0.0021208609, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208606, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208604, 0.3723429, 0.3723429, 0.23829955, 0.014893736, 0.00212086, 0.37234294, 0.37234294, 0.23829953, 0.014893732, 0.0021208592, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829953, 0.014893729, 0.0021208588, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829952, 0.014893728, 0.0021208585, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.014893724, 0.0021208578, 0.37234294, 0.37234294, 0.2382995, 0.014893722, 0.0021208576, 0.37234297, 0.37234297, 0.2382995, 0.014893721, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208571, 0.37234297, 0.37234297, 0.2382995, 0.014893719, 0.0021208571, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.11092093, 0.0015352394, 0.00017747369, 0.44368318, 0.44368318, 0.11092091, 0.0015352389, 0.00017747364, 0.44368318, 0.44368318, 0.110920906, 0.0015352387, 0.00017747362, 0.4436832, 0.4436832, 0.1109209, 0.0015352387, 0.0001774736, 0.4436832, 0.4436832, 0.11092088, 0.0015352382, 0.00017747354, 0.4436832, 0.4436832, 0.11092087, 0.0015352378, 0.0001774735, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352374, 0.00017747346, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352373, 0.00017747344, 0.44368324, 0.44368324, 0.11092085, 0.0015352371, 0.00017747341, 0.44368324, 0.44368324, 0.11092084, 0.001535237, 0.0001774734, 0.44368324, 0.44368324, 0.11092083, 0.0015352367, 0.00017747337, 0.44368324, 0.44368324, 0.110920824, 0.0015352365, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.4436833, 0.4436833, 0.11092083, 0.0015352366, 0.00017747334, 0.44368324, 0.44368324, 0.11092082, 0.0015352363, 0.00017747331, 0.44368324, 0.44368324, 0.11092081, 0.0015352361, 0.0001774733, 0.9999998, 1.7388004e-7, 1.08675025e-8, 0, 0, 0.5, 0.5, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float2[] primvars:st = [(0.57430136, 0.13210803), (0.5632045, 0.11032924), (0.626409, 0.064408496), (0.64860266, 0.10796607), (0.5459207, 0.0930455), (0.5918415, 0.02984102), (0.52414197, 0.08194867), (0.54828393, 0.0076473355), (0.5, 0.07812497), (0.5, -7.4505806e-8), (0.47585803, 0.08194867), (0.45171607, 0.0076473504), (0.45407927, 0.09304553), (0.4081585, 0.02984105), (0.43679553, 0.11032927), (0.37359107, 0.064408526), (0.4256987, 0.13210803), (0.3513974, 0.1079661), (0.421875, 0.15625), (0.34374997, 0.15625), (0.4256987, 0.18039197), (0.3513974, 0.2045339), (0.43679553, 0.20217073), (0.37359107, 0.24809146), (0.45407927, 0.21945447), (0.40815854, 0.28265893), (0.47585803, 0.2305513), (0.4517161, 0.3048526), (0.5, 0.234375), (0.5, 0.3125), (0.52414197, 0.2305513), (0.5482839, 0.3048526), (0.5459207, 0.21945447), (0.59184146, 0.28265893), (0.56320447, 0.20217073), (0.62640893, 0.24809146), (0.5743013, 0.18039197), (0.6486026, 0.2045339), (0.578125, 0.15625), (0.65625, 0.15625), (0.375, 0.3125), (0.3875, 0.3125), (0.3875, 0.350094), (0.375, 0.350094), (0.39999998, 0.3125), (0.39999998, 0.350094), (0.41249996, 0.3125), (0.41249996, 0.350094), (0.42499995, 0.3125), (0.42499995, 0.350094), (0.43749994, 0.3125), (0.43749994, 0.350094), (0.44999993, 0.3125), (0.44999993, 0.350094), (0.46249992, 0.3125), (0.46249992, 0.350094), (0.4749999, 0.3125), (0.4749999, 0.350094), (0.4874999, 0.3125), (0.4874999, 0.350094), (0.49999988, 0.3125), (0.49999988, 0.350094), (0.51249987, 0.3125), (0.51249987, 0.350094), (0.52499986, 0.3125), (0.52499986, 0.350094), (0.53749985, 0.3125), (0.53749985, 0.350094), (0.54999983, 0.3125), (0.54999983, 0.350094), (0.5624998, 0.3125), (0.5624998, 0.350094), (0.5749998, 0.3125), (0.5749998, 0.350094), (0.5874998, 0.3125), (0.5874998, 0.350094), (0.5999998, 0.3125), (0.5999998, 0.350094), (0.6124998, 0.3125), (0.6124998, 0.350094), (0.62499976, 0.3125), (0.62499976, 0.350094), (0.3875, 0.38768798), (0.375, 0.38768798), (0.39999998, 0.38768798), (0.41249996, 0.38768798), (0.42499995, 0.38768798), (0.43749994, 0.38768798), (0.44999993, 0.38768798), (0.46249992, 0.38768798), (0.4749999, 0.38768798), (0.4874999, 0.38768798), (0.49999988, 0.38768798), (0.51249987, 0.38768798), (0.52499986, 0.38768798), (0.53749985, 0.38768798), (0.54999983, 0.38768798), (0.5624998, 0.38768798), (0.5749998, 0.38768798), (0.5874998, 0.38768798), (0.5999998, 0.38768798), (0.6124998, 0.38768798), (0.62499976, 0.38768798), (0.3875, 0.42528197), (0.375, 0.42528197), (0.39999998, 0.42528197), (0.41249996, 0.42528197), (0.42499995, 0.42528197), (0.43749994, 0.42528197), (0.44999993, 0.42528197), (0.46249992, 0.42528197), (0.4749999, 0.42528197), (0.4874999, 0.42528197), (0.49999988, 0.42528197), (0.51249987, 0.42528197), (0.52499986, 0.42528197), (0.53749985, 0.42528197), (0.54999983, 0.42528197), (0.5624998, 0.42528197), (0.5749998, 0.42528197), (0.5874998, 0.42528197), (0.5999998, 0.42528197), (0.6124998, 0.42528197), (0.62499976, 0.42528197), (0.3875, 0.46287596), (0.375, 0.46287596), (0.39999998, 0.46287596), (0.41249996, 0.46287596), (0.42499995, 0.46287596), (0.43749994, 0.46287596), (0.44999993, 0.46287596), (0.46249992, 0.46287596), (0.4749999, 0.46287596), (0.4874999, 0.46287596), (0.49999988, 0.46287596), (0.51249987, 0.46287596), (0.52499986, 0.46287596), (0.53749985, 0.46287596), (0.54999983, 0.46287596), (0.5624998, 0.46287596), (0.5749998, 0.46287596), (0.5874998, 0.46287596), (0.5999998, 0.46287596), (0.6124998, 0.46287596), (0.62499976, 0.46287596), (0.3875, 0.5004699), (0.375, 0.5004699), (0.39999998, 0.5004699), (0.41249996, 0.5004699), (0.42499995, 0.5004699), (0.43749994, 0.5004699), (0.44999993, 0.5004699), (0.46249992, 0.5004699), (0.4749999, 0.5004699), (0.4874999, 0.5004699), (0.49999988, 0.5004699), (0.51249987, 0.5004699), (0.52499986, 0.5004699), (0.53749985, 0.5004699), (0.54999983, 0.5004699), (0.5624998, 0.5004699), (0.5749998, 0.5004699), (0.5874998, 0.5004699), (0.5999998, 0.5004699), (0.6124998, 0.5004699), (0.62499976, 0.5004699), (0.3875, 0.5380639), (0.375, 0.5380639), (0.39999998, 0.5380639), (0.41249996, 0.5380639), (0.42499995, 0.5380639), (0.43749994, 0.5380639), (0.44999993, 0.5380639), (0.46249992, 0.5380639), (0.4749999, 0.5380639), (0.4874999, 0.5380639), (0.49999988, 0.5380639), (0.51249987, 0.5380639), (0.52499986, 0.5380639), (0.53749985, 0.5380639), (0.54999983, 0.5380639), (0.5624998, 0.5380639), (0.5749998, 0.5380639), (0.5874998, 0.5380639), (0.5999998, 0.5380639), (0.6124998, 0.5380639), (0.62499976, 0.5380639), (0.3875, 0.57565784), (0.375, 0.57565784), (0.39999998, 0.57565784), (0.41249996, 0.57565784), (0.42499995, 0.57565784), (0.43749994, 0.57565784), (0.44999993, 0.57565784), (0.46249992, 0.57565784), (0.4749999, 0.57565784), (0.4874999, 0.57565784), (0.49999988, 0.57565784), (0.51249987, 0.57565784), (0.52499986, 0.57565784), (0.53749985, 0.57565784), (0.54999983, 0.57565784), (0.5624998, 0.57565784), (0.5749998, 0.57565784), (0.5874998, 0.57565784), (0.5999998, 0.57565784), (0.6124998, 0.57565784), (0.62499976, 0.57565784), (0.3875, 0.6132518), (0.375, 0.6132518), (0.39999998, 0.6132518), (0.41249996, 0.6132518), (0.42499995, 0.6132518), (0.43749994, 0.6132518), (0.44999993, 0.6132518), (0.46249992, 0.6132518), (0.4749999, 0.6132518), (0.4874999, 0.6132518), (0.49999988, 0.6132518), (0.51249987, 0.6132518), (0.52499986, 0.6132518), (0.53749985, 0.6132518), (0.54999983, 0.6132518), (0.5624998, 0.6132518), (0.5749998, 0.6132518), (0.5874998, 0.6132518), (0.5999998, 0.6132518), (0.6124998, 0.6132518), (0.62499976, 0.6132518), (0.3875, 0.65084577), (0.375, 0.65084577), (0.39999998, 0.65084577), (0.41249996, 0.65084577), (0.42499995, 0.65084577), (0.43749994, 0.65084577), (0.44999993, 0.65084577), (0.46249992, 0.65084577), (0.4749999, 0.65084577), (0.4874999, 0.65084577), (0.49999988, 0.65084577), (0.51249987, 0.65084577), (0.52499986, 0.65084577), (0.53749985, 0.65084577), (0.54999983, 0.65084577), (0.5624998, 0.65084577), (0.5749998, 0.65084577), (0.5874998, 0.65084577), (0.5999998, 0.65084577), (0.6124998, 0.65084577), (0.62499976, 0.65084577), (0.3875, 0.6884397), (0.375, 0.6884397), (0.39999998, 0.6884397), (0.41249996, 0.6884397), (0.42499995, 0.6884397), (0.43749994, 0.6884397), (0.44999993, 0.6884397), (0.46249992, 0.6884397), (0.4749999, 0.6884397), (0.4874999, 0.6884397), (0.49999988, 0.6884397), (0.51249987, 0.6884397), (0.52499986, 0.6884397), (0.53749985, 0.6884397), (0.54999983, 0.6884397), (0.5624998, 0.6884397), (0.5749998, 0.6884397), (0.5874998, 0.6884397), (0.5999998, 0.6884397), (0.6124998, 0.6884397), (0.62499976, 0.6884397), (0.6486026, 0.89203393), (0.62640893, 0.93559146), (0.56320447, 0.8896707), (0.5743013, 0.86789197), (0.59184146, 0.97015893), (0.5459207, 0.90695447), (0.5482839, 0.9923526), (0.52414197, 0.9180513), (0.5, 1), (0.5, 0.921875), (0.4517161, 0.9923526), (0.47585803, 0.9180513), (0.40815854, 0.97015893), (0.45407927, 0.90695447), (0.37359107, 0.93559146), (0.43679553, 0.8896707), (0.3513974, 0.89203393), (0.4256987, 0.86789197), (0.34374997, 0.84375), (0.421875, 0.84375), (0.3513974, 0.79546607), (0.4256987, 0.81960803), (0.37359107, 0.75190854), (0.43679553, 0.7978293), (0.4081585, 0.71734107), (0.45407927, 0.78054553), (0.45171607, 0.69514734), (0.47585803, 0.76944864), (0.5, 0.68749994), (0.5, 0.765625), (0.54828393, 0.69514734), (0.52414197, 0.76944864), (0.5918415, 0.717341), (0.5459207, 0.7805455), (0.626409, 0.7519085), (0.5632045, 0.7978293), (0.64860266, 0.79546607), (0.57430136, 0.81960803), (0.65625, 0.84375), (0.578125, 0.84375), (0.5, 0.15), (0.5, 0.8375)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 1, 4, 5, 2, 4, 6, 7, 5, 6, 8, 9, 7, 8, 10, 11, 9, 10, 12, 13, 11, 12, 14, 15, 13, 14, 16, 17, 15, 16, 18, 19, 17, 18, 20, 21, 19, 20, 22, 23, 21, 22, 24, 25, 23, 24, 26, 27, 25, 26, 28, 29, 27, 28, 30, 31, 29, 30, 32, 33, 31, 32, 34, 35, 33, 34, 36, 37, 35, 36, 38, 39, 37, 38, 0, 3, 39, 40, 41, 42, 43, 41, 44, 45, 42, 44, 46, 47, 45, 46, 48, 49, 47, 48, 50, 51, 49, 50, 52, 53, 51, 52, 54, 55, 53, 54, 56, 57, 55, 56, 58, 59, 57, 58, 60, 61, 59, 60, 62, 63, 61, 62, 64, 65, 63, 64, 66, 67, 65, 66, 68, 69, 67, 68, 70, 71, 69, 70, 72, 73, 71, 72, 74, 75, 73, 74, 76, 77, 75, 76, 78, 79, 77, 78, 80, 81, 79, 43, 42, 82, 83, 42, 45, 84, 82, 45, 47, 85, 84, 47, 49, 86, 85, 49, 51, 87, 86, 51, 53, 88, 87, 53, 55, 89, 88, 55, 57, 90, 89, 57, 59, 91, 90, 59, 61, 92, 91, 61, 63, 93, 92, 63, 65, 94, 93, 65, 67, 95, 94, 67, 69, 96, 95, 69, 71, 97, 96, 71, 73, 98, 97, 73, 75, 99, 98, 75, 77, 100, 99, 77, 79, 101, 100, 79, 81, 102, 101, 83, 82, 103, 104, 82, 84, 105, 103, 84, 85, 106, 105, 85, 86, 107, 106, 86, 87, 108, 107, 87, 88, 109, 108, 88, 89, 110, 109, 89, 90, 111, 110, 90, 91, 112, 111, 91, 92, 113, 112, 92, 93, 114, 113, 93, 94, 115, 114, 94, 95, 116, 115, 95, 96, 117, 116, 96, 97, 118, 117, 97, 98, 119, 118, 98, 99, 120, 119, 99, 100, 121, 120, 100, 101, 122, 121, 101, 102, 123, 122, 104, 103, 124, 125, 103, 105, 126, 124, 105, 106, 127, 126, 106, 107, 128, 127, 107, 108, 129, 128, 108, 109, 130, 129, 109, 110, 131, 130, 110, 111, 132, 131, 111, 112, 133, 132, 112, 113, 134, 133, 113, 114, 135, 134, 114, 115, 136, 135, 115, 116, 137, 136, 116, 117, 138, 137, 117, 118, 139, 138, 118, 119, 140, 139, 119, 120, 141, 140, 120, 121, 142, 141, 121, 122, 143, 142, 122, 123, 144, 143, 125, 124, 145, 146, 124, 126, 147, 145, 126, 127, 148, 147, 127, 128, 149, 148, 128, 129, 150, 149, 129, 130, 151, 150, 130, 131, 152, 151, 131, 132, 153, 152, 132, 133, 154, 153, 133, 134, 155, 154, 134, 135, 156, 155, 135, 136, 157, 156, 136, 137, 158, 157, 137, 138, 159, 158, 138, 139, 160, 159, 139, 140, 161, 160, 140, 141, 162, 161, 141, 142, 163, 162, 142, 143, 164, 163, 143, 144, 165, 164, 146, 145, 166, 167, 145, 147, 168, 166, 147, 148, 169, 168, 148, 149, 170, 169, 149, 150, 171, 170, 150, 151, 172, 171, 151, 152, 173, 172, 152, 153, 174, 173, 153, 154, 175, 174, 154, 155, 176, 175, 155, 156, 177, 176, 156, 157, 178, 177, 157, 158, 179, 178, 158, 159, 180, 179, 159, 160, 181, 180, 160, 161, 182, 181, 161, 162, 183, 182, 162, 163, 184, 183, 163, 164, 185, 184, 164, 165, 186, 185, 167, 166, 187, 188, 166, 168, 189, 187, 168, 169, 190, 189, 169, 170, 191, 190, 170, 171, 192, 191, 171, 172, 193, 192, 172, 173, 194, 193, 173, 174, 195, 194, 174, 175, 196, 195, 175, 176, 197, 196, 176, 177, 198, 197, 177, 178, 199, 198, 178, 179, 200, 199, 179, 180, 201, 200, 180, 181, 202, 201, 181, 182, 203, 202, 182, 183, 204, 203, 183, 184, 205, 204, 184, 185, 206, 205, 185, 186, 207, 206, 188, 187, 208, 209, 187, 189, 210, 208, 189, 190, 211, 210, 190, 191, 212, 211, 191, 192, 213, 212, 192, 193, 214, 213, 193, 194, 215, 214, 194, 195, 216, 215, 195, 196, 217, 216, 196, 197, 218, 217, 197, 198, 219, 218, 198, 199, 220, 219, 199, 200, 221, 220, 200, 201, 222, 221, 201, 202, 223, 222, 202, 203, 224, 223, 203, 204, 225, 224, 204, 205, 226, 225, 205, 206, 227, 226, 206, 207, 228, 227, 209, 208, 229, 230, 208, 210, 231, 229, 210, 211, 232, 231, 211, 212, 233, 232, 212, 213, 234, 233, 213, 214, 235, 234, 214, 215, 236, 235, 215, 216, 237, 236, 216, 217, 238, 237, 217, 218, 239, 238, 218, 219, 240, 239, 219, 220, 241, 240, 220, 221, 242, 241, 221, 222, 243, 242, 222, 223, 244, 243, 223, 224, 245, 244, 224, 225, 246, 245, 225, 226, 247, 246, 226, 227, 248, 247, 227, 228, 249, 248, 230, 229, 250, 251, 229, 231, 252, 250, 231, 232, 253, 252, 232, 233, 254, 253, 233, 234, 255, 254, 234, 235, 256, 255, 235, 236, 257, 256, 236, 237, 258, 257, 237, 238, 259, 258, 238, 239, 260, 259, 239, 240, 261, 260, 240, 241, 262, 261, 241, 242, 263, 262, 242, 243, 264, 263, 243, 244, 265, 264, 244, 245, 266, 265, 245, 246, 267, 266, 246, 247, 268, 267, 247, 248, 269, 268, 248, 249, 270, 269, 271, 272, 273, 274, 272, 275, 276, 273, 275, 277, 278, 276, 277, 279, 280, 278, 279, 281, 282, 280, 281, 283, 284, 282, 283, 285, 286, 284, 285, 287, 288, 286, 287, 289, 290, 288, 289, 291, 292, 290, 291, 293, 294, 292, 293, 295, 296, 294, 295, 297, 298, 296, 297, 299, 300, 298, 299, 301, 302, 300, 301, 303, 304, 302, 303, 305, 306, 304, 305, 307, 308, 306, 307, 309, 310, 308, 309, 271, 274, 310, 1, 0, 311, 4, 1, 311, 6, 4, 311, 8, 6, 311, 10, 8, 311, 12, 10, 311, 14, 12, 311, 16, 14, 311, 18, 16, 311, 20, 18, 311, 22, 20, 311, 24, 22, 311, 26, 24, 311, 28, 26, 311, 30, 28, 311, 32, 30, 311, 34, 32, 311, 36, 34, 311, 38, 36, 311, 0, 38, 311, 274, 273, 312, 273, 276, 312, 276, 278, 312, 278, 280, 312, 280, 282, 312, 282, 284, 312, 284, 286, 312, 286, 288, 312, 288, 290, 312, 290, 292, 312, 292, 294, 312, 294, 296, 312, 296, 298, 312, 298, 300, 312, 300, 302, 312, 302, 304, 312, 304, 306, 312, 306, 308, 312, 308, 310, 312, 310, 274, 312] bool shadow:enable = 1 uniform token[] skel:blendShapes = ["BlendShape1"] rel skel:blendShapeTargets = </Root/group1/pCylinder1/BlendShape1> uniform token[] skel:joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] rel skel:skeleton = </Root/group1/joint1> uniform token skel:skinningMethod = "DualQuaternion" uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def BlendShape "BlendShape1" { uniform vector3f[] offsets = [(0.055679083, -0, 0), (0.055679083, -0, 0), (0.0076562166, -0, 0), (0.007656336, -1.2980017e-19, 0), (2.5285296, -0, 0), (2.52853, -0, 0), (1.9332323, -0, 0), (0.724032, -0, 0), (0.015010702, -0, 0), (0.0150107145, -0, 0), (0.7240318, -0, 0), (1.9332323, -2.390851e-19, 0), (4.553535, -0, 0), (4.5535345, -0, 0), (3.667693, -0, 0), (1.7491772, -0, 0), (0.2682255, -0, 0), (0.26822555, -0, 0), (1.7491773, -0, 0), (3.6676931, -6.64955e-19, 0), (4.553535, -0, 0), (4.5535345, -0, 0), (3.667693, -0, 0), (1.7491772, -0, 0), (0.2682255, -0, 0), (0.26822555, -0, 0), (1.7491773, -0, 0), (3.6676931, -1.6402312e-18, 0), (2.5285296, -0, 0), (2.52853, -0, 0), (1.9332323, -0, 0), (0.724032, -0, 0), (0.015010702, -0, 0), (0.0150107145, -0, 0), (0.7240318, -0, 0), (1.9332323, -2.3276786e-18, 0), (0.055679083, -0, 0), (0.055679083, -0, 0), (0.0076562166, -0, 0), (0.007656336, -3.0373284e-18, 0)] uniform uint[] pointIndices = [60, 61, 62, 79, 80, 81, 82, 83, 84, 97, 98, 99, 100, 101, 102, 103, 104, 117, 118, 119, 120, 121, 122, 123, 124, 137, 138, 139, 140, 141, 142, 143, 144, 157, 158, 159, 160, 161, 162, 179] } } def Skeleton "joint1" ( prepend apiSchemas = ["SkelBindingAPI"] customData = { dictionary Maya = { bool generated = 1 } } ) { uniform matrix4d[] bindTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (-1.3877787807814457e-17, 8.841297486311764e-34, 3.0000000000000004, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (0, 1.2722513410043386e-31, 6, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (9.185754640251975e-34, 1.5649926925511984e-31, 9, 1) ), ( (1, -1.224391440225264e-16, -1.1796119636642288e-16, 0), (1.2243914402252635e-16, 1, -1.1996391250259628e-16, 0), (2.2898349882893854e-16, 1.1996391250259626e-16, 1, 0), (1.2247672853669268e-33, 1.4186220167777685e-31, 10, 1) )] uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] uniform matrix4d[] restTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (0.9997914836161194, 0, 0.0204203155871533, 0), (0, 1, 0, 0), (-0.0204203155871533, 0, 0.9997914836161194, 0), (3.0272297713351164, -9.860761315262648e-32, 7.979727989493313e-16, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.502302236417219e-18, 1.0318135235110049e-14, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.50230223641712e-18, 1.0304257447302234e-14, 1) ), ( (-3.552713678800501e-15, 0, 1, 0), (-1.2246467991473532e-16, -1, -4.437342591868191e-31, 0), (1, -1.2246467991473532e-16, 3.6637359812630166e-15, 0), (1, -2.5007674121390154e-18, 3.434752482434078e-15, 1) )] def SkelAnimation "Animation" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] float[] blendShapeWeights.timeSamples = { 0: [0], 1: [0], 2: [0.02284429], 3: [0.08548186], 4: [0.17906976], 5: [0.29476503], 6: [0.42372474], 7: [0.5571059], 8: [0.6860656], 9: [0.8017609], 10: [0.8953488], 11: [0.95798635], 12: [0.98083067], 13: [0.94185597], 14: [0.83410245], 15: [0.67132586], 16: [0.46728197], 17: [0.23572654], 18: [-0.009584664], 19: [-0.25489587], 20: [-0.4864513], 21: [-0.6904952], 22: [-0.8532718], 23: [-0.9610253], 24: [-1], 25: [-0.972], 26: [-0.896], 27: [-0.784], 28: [-0.648], 29: [-0.5], 30: [-0.352], 31: [-0.216], 32: [-0.104], 33: [-0.028], 34: [0], 35: [0], 36: [0], 37: [0], 38: [0], 39: [0], 40: [0], 41: [0], 42: [0], 43: [0], 44: [0], 45: [0], 46: [0], 47: [0], 48: [0], } uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } def SkelAnimation "Animation_Static" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } def SkelAnimation "Animation_Flat" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] float[] blendShapeWeights.timeSamples = { 0: [0], 1: [0], 2: [0.02284429], 3: [0.08548186], 4: [0.17906976], 5: [0.29476503], 6: [0.42372474], 7: [0.5571059], 8: [0.6860656], 9: [0.8017609], 10: [0.8953488], 11: [0.95798635], 12: [0.98083067], 13: [0.94185597], 14: [0.83410245], 15: [0.67132586], 16: [0.46728197], 17: [0.23572654], 18: [-0.009584664], 19: [-0.25489587], 20: [-0.4864513], 21: [-0.6904952], 22: [-0.8532718], 23: [-0.9610253], 24: [-1], 25: [-0.972], 26: [-0.896], 27: [-0.784], 28: [-0.648], 29: [-0.5], 30: [-0.352], 31: [-0.216], 32: [-0.104], 33: [-0.028], 34: [0], 35: [0], 36: [0], 37: [0], 38: [0], 39: [0], 40: [0], 41: [0], 42: [0], 43: [0], 44: [0], 45: [0], 46: [0], 47: [0], 48: [0], } uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 3, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } } } def Xform "locator1" { } def Xform "locator2" { } def Scope "Looks" { def Material "initialShadingGroup" { token outputs:mdl:surface.connect = </Root/Looks/initialShadingGroup/lambert1.outputs:out> def Shader "lambert1" ( kind = "Material" ) { uniform token info:id = "mdlMaterial" custom asset module = @lambert1.mdl@ custom string name = "lambert1" token outputs:out } } } def DistantLight "DistantLight" ( 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 = (45, 0, 90) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def SkelAnimation "ZAnimation" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] float[] blendShapeWeights.timeSamples = { 0: [0], 1: [0], 2: [0.02284429], 3: [0.08548186], 4: [0.17906976], 5: [0.29476503], 6: [0.42372474], 7: [0.5571059], 8: [0.6860656], 9: [0.8017609], 10: [0.8953488], 11: [0.95798635], 12: [0.98083067], 13: [0.94185597], 14: [0.83410245], 15: [0.67132586], 16: [0.46728197], 17: [0.23572654], 18: [-0.009584664], 19: [-0.25489587], 20: [-0.4864513], 21: [-0.6904952], 22: [-0.8532718], 23: [-0.9610253], 24: [-1], 25: [-0.972], 26: [-0.896], 27: [-0.784], 28: [-0.648], 29: [-0.5], 30: [-0.352], 31: [-0.216], 32: [-0.104], 33: [-0.028], 34: [0], 35: [0], 36: [0], 37: [0], 38: [0], 39: [0], 40: [0], 41: [0], 42: [0], 43: [0], 44: [0], 45: [0], 46: [0], 47: [0], 48: [0], } uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 2, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/skelcylinder_material_test.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (17.498477559307794, 17.46756909392238, 22.454269867161457) double3 target = (0.03090846538543701, 0, 4.986700773239136) } dictionary Right = { double3 position = (0, -50002.000000953674, -1.1102674335673174e-11) double radius = 500 } dictionary Top = { double3 position = (0, 0, 50012.000000953674) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { float3 "rtx:debugView:pixelDebug:textColor" = (0, 1e18, 0) float3 "rtx:dynamicDiffuseGI:probeCounts" = (6, 6, 6) float3 "rtx:dynamicDiffuseGI:probeGridOrigin" = (-210, -250, -10) float3 "rtx:dynamicDiffuseGI:volumeSize" = (600, 440, 300) float3 "rtx:fog:fogColor" = (0.75, 0.75, 0.75) float3 "rtx:iray:environment_dome_ground_position" = (0, 0, 0) float3 "rtx:iray:environment_dome_ground_reflectivity" = (0, 0, 0) float3 "rtx:iray:environment_dome_rotation_axis" = (0, 0, 1) float3 "rtx:lightspeed:material:overrideAlbedo" = (0.5, 0.5, 0.5) float3 "rtx:lightspeed:material:overrideEmissiveColor" = (0.5, 0.5, 0.5) float3 "rtx:post:backgroundZeroAlpha:backgroundDefaultColor" = (0, 0, 0) float3 "rtx:post:colorcorr:contrast" = (1, 1, 1) float3 "rtx:post:colorcorr:gain" = (1, 1, 1) float3 "rtx:post:colorcorr:gamma" = (1, 1, 1) float3 "rtx:post:colorcorr:offset" = (0, 0, 0) float3 "rtx:post:colorcorr:saturation" = (1, 1, 1) float3 "rtx:post:colorgrad:blackpoint" = (0, 0, 0) float3 "rtx:post:colorgrad:contrast" = (1, 1, 1) float3 "rtx:post:colorgrad:gain" = (1, 1, 1) float3 "rtx:post:colorgrad:gamma" = (1, 1, 1) float3 "rtx:post:colorgrad:lift" = (0, 0, 0) float3 "rtx:post:colorgrad:multiply" = (1, 1, 1) float3 "rtx:post:colorgrad:offset" = (0, 0, 0) float3 "rtx:post:colorgrad:whitepoint" = (1, 1, 1) float3 "rtx:post:lensDistortion:lensFocalLengthArray" = (10, 30, 50) float3 "rtx:post:lensFlares:anisoFlareFalloffX" = (450, 475, 500) float3 "rtx:post:lensFlares:anisoFlareFalloffY" = (10, 10, 10) float3 "rtx:post:lensFlares:cutoffPoint" = (2, 2, 2) float3 "rtx:post:lensFlares:haloFlareFalloff" = (10, 10, 10) float3 "rtx:post:lensFlares:haloFlareRadius" = (75, 75, 75) float3 "rtx:post:lensFlares:isotropicFlareFalloff" = (50, 50, 50) float3 "rtx:post:tonemap:whitepoint" = (1, 1, 1) float3 "rtx:raytracing:inscattering:singleScatteringAlbedo" = (0.9, 0.9, 0.9) float3 "rtx:raytracing:inscattering:transmittanceColor" = (0.5, 0.5, 0.5) float3 "rtx:sceneDb:ambientLightColor" = (0.1, 0.1, 0.1) } } defaultPrim = "Root" endTimeCode = 48 metersPerUnit = 0.01 startTimeCode = 0 upAxis = "Z" ) def "Root" ( kind = "component" ) { def SkelRoot "BLENDWEIGHT_group1" { matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def Mesh "BLENDWEIGHT_pCylinder1" ( prepend apiSchemas = ["SkelBindingAPI"] ) { bool BypassRenderSkinning = 0 uniform bool doubleSided = 1 float3[] extent = [(-2.0000005, -2.0000002, 0), (2, 2.000001, 10)] 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, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 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] int[] faceVertexIndices = [0, 1, 21, 20, 1, 2, 22, 21, 2, 3, 23, 22, 3, 4, 24, 23, 4, 5, 25, 24, 5, 6, 26, 25, 6, 7, 27, 26, 7, 8, 28, 27, 8, 9, 29, 28, 9, 10, 30, 29, 10, 11, 31, 30, 11, 12, 32, 31, 12, 13, 33, 32, 13, 14, 34, 33, 14, 15, 35, 34, 15, 16, 36, 35, 16, 17, 37, 36, 17, 18, 38, 37, 18, 19, 39, 38, 19, 0, 20, 39, 20, 21, 41, 40, 21, 22, 42, 41, 22, 23, 43, 42, 23, 24, 44, 43, 24, 25, 45, 44, 25, 26, 46, 45, 26, 27, 47, 46, 27, 28, 48, 47, 28, 29, 49, 48, 29, 30, 50, 49, 30, 31, 51, 50, 31, 32, 52, 51, 32, 33, 53, 52, 33, 34, 54, 53, 34, 35, 55, 54, 35, 36, 56, 55, 36, 37, 57, 56, 37, 38, 58, 57, 38, 39, 59, 58, 39, 20, 40, 59, 40, 41, 61, 60, 41, 42, 62, 61, 42, 43, 63, 62, 43, 44, 64, 63, 44, 45, 65, 64, 45, 46, 66, 65, 46, 47, 67, 66, 47, 48, 68, 67, 48, 49, 69, 68, 49, 50, 70, 69, 50, 51, 71, 70, 51, 52, 72, 71, 52, 53, 73, 72, 53, 54, 74, 73, 54, 55, 75, 74, 55, 56, 76, 75, 56, 57, 77, 76, 57, 58, 78, 77, 58, 59, 79, 78, 59, 40, 60, 79, 60, 61, 81, 80, 61, 62, 82, 81, 62, 63, 83, 82, 63, 64, 84, 83, 64, 65, 85, 84, 65, 66, 86, 85, 66, 67, 87, 86, 67, 68, 88, 87, 68, 69, 89, 88, 69, 70, 90, 89, 70, 71, 91, 90, 71, 72, 92, 91, 72, 73, 93, 92, 73, 74, 94, 93, 74, 75, 95, 94, 75, 76, 96, 95, 76, 77, 97, 96, 77, 78, 98, 97, 78, 79, 99, 98, 79, 60, 80, 99, 80, 81, 101, 100, 81, 82, 102, 101, 82, 83, 103, 102, 83, 84, 104, 103, 84, 85, 105, 104, 85, 86, 106, 105, 86, 87, 107, 106, 87, 88, 108, 107, 88, 89, 109, 108, 89, 90, 110, 109, 90, 91, 111, 110, 91, 92, 112, 111, 92, 93, 113, 112, 93, 94, 114, 113, 94, 95, 115, 114, 95, 96, 116, 115, 96, 97, 117, 116, 97, 98, 118, 117, 98, 99, 119, 118, 99, 80, 100, 119, 100, 101, 121, 120, 101, 102, 122, 121, 102, 103, 123, 122, 103, 104, 124, 123, 104, 105, 125, 124, 105, 106, 126, 125, 106, 107, 127, 126, 107, 108, 128, 127, 108, 109, 129, 128, 109, 110, 130, 129, 110, 111, 131, 130, 111, 112, 132, 131, 112, 113, 133, 132, 113, 114, 134, 133, 114, 115, 135, 134, 115, 116, 136, 135, 116, 117, 137, 136, 117, 118, 138, 137, 118, 119, 139, 138, 119, 100, 120, 139, 120, 121, 141, 140, 121, 122, 142, 141, 122, 123, 143, 142, 123, 124, 144, 143, 124, 125, 145, 144, 125, 126, 146, 145, 126, 127, 147, 146, 127, 128, 148, 147, 128, 129, 149, 148, 129, 130, 150, 149, 130, 131, 151, 150, 131, 132, 152, 151, 132, 133, 153, 152, 133, 134, 154, 153, 134, 135, 155, 154, 135, 136, 156, 155, 136, 137, 157, 156, 137, 138, 158, 157, 138, 139, 159, 158, 139, 120, 140, 159, 140, 141, 161, 160, 141, 142, 162, 161, 142, 143, 163, 162, 143, 144, 164, 163, 144, 145, 165, 164, 145, 146, 166, 165, 146, 147, 167, 166, 147, 148, 168, 167, 148, 149, 169, 168, 149, 150, 170, 169, 150, 151, 171, 170, 151, 152, 172, 171, 152, 153, 173, 172, 153, 154, 174, 173, 154, 155, 175, 174, 155, 156, 176, 175, 156, 157, 177, 176, 157, 158, 178, 177, 158, 159, 179, 178, 159, 140, 160, 179, 160, 161, 181, 180, 161, 162, 182, 181, 162, 163, 183, 182, 163, 164, 184, 183, 164, 165, 185, 184, 165, 166, 186, 185, 166, 167, 187, 186, 167, 168, 188, 187, 168, 169, 189, 188, 169, 170, 190, 189, 170, 171, 191, 190, 171, 172, 192, 191, 172, 173, 193, 192, 173, 174, 194, 193, 174, 175, 195, 194, 175, 176, 196, 195, 176, 177, 197, 196, 177, 178, 198, 197, 178, 179, 199, 198, 179, 160, 180, 199, 180, 181, 201, 200, 181, 182, 202, 201, 182, 183, 203, 202, 183, 184, 204, 203, 184, 185, 205, 204, 185, 186, 206, 205, 186, 187, 207, 206, 187, 188, 208, 207, 188, 189, 209, 208, 189, 190, 210, 209, 190, 191, 211, 210, 191, 192, 212, 211, 192, 193, 213, 212, 193, 194, 214, 213, 194, 195, 215, 214, 195, 196, 216, 215, 196, 197, 217, 216, 197, 198, 218, 217, 198, 199, 219, 218, 199, 180, 200, 219, 200, 201, 221, 220, 201, 202, 222, 221, 202, 203, 223, 222, 203, 204, 224, 223, 204, 205, 225, 224, 205, 206, 226, 225, 206, 207, 227, 226, 207, 208, 228, 227, 208, 209, 229, 228, 209, 210, 230, 229, 210, 211, 231, 230, 211, 212, 232, 231, 212, 213, 233, 232, 213, 214, 234, 233, 214, 215, 235, 234, 215, 216, 236, 235, 216, 217, 237, 236, 217, 218, 238, 237, 218, 219, 239, 238, 219, 200, 220, 239, 220, 221, 241, 240, 221, 222, 242, 241, 222, 223, 243, 242, 223, 224, 244, 243, 224, 225, 245, 244, 225, 226, 246, 245, 226, 227, 247, 246, 227, 228, 248, 247, 228, 229, 249, 248, 229, 230, 250, 249, 230, 231, 251, 250, 231, 232, 252, 251, 232, 233, 253, 252, 233, 234, 254, 253, 234, 235, 255, 254, 235, 236, 256, 255, 236, 237, 257, 256, 237, 238, 258, 257, 238, 239, 259, 258, 239, 220, 240, 259, 1, 0, 260, 2, 1, 260, 3, 2, 260, 4, 3, 260, 5, 4, 260, 6, 5, 260, 7, 6, 260, 8, 7, 260, 9, 8, 260, 10, 9, 260, 11, 10, 260, 12, 11, 260, 13, 12, 260, 14, 13, 260, 15, 14, 260, 16, 15, 260, 17, 16, 260, 18, 17, 260, 19, 18, 260, 0, 19, 260, 240, 241, 261, 241, 242, 261, 242, 243, 261, 243, 244, 261, 244, 245, 261, 245, 246, 261, 246, 247, 261, 247, 248, 261, 248, 249, 261, 249, 250, 261, 250, 251, 261, 251, 252, 261, 252, 253, 261, 253, 254, 261, 254, 255, 261, 255, 256, 261, 256, 257, 261, 257, 258, 261, 258, 259, 261, 259, 240, 261] rel material:binding = </Root/Looks/PreviewSurface_Red> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.9510565, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.5877852, -0.809017, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.809017, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.2095654e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901715, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.5877854, 0.8090168, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877855, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.58778507, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.58778524, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.5877853, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.80901694, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.80901706, 0.5877851, 0), (-0.5877854, 0.80901694, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (8.8258304e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.309017, -0.9510565, 0), (8.8258304e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.5877851, -0.809017, 0), (0.309017, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901694, -0.5877853, 0), (0.5877851, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.5877855, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.80901706, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877855, 0.8090169, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (8.8258304e-8, -1, 0), (8.825832e-8, -1, 0), (-0.30901694, -0.95105654, 0), (8.8258304e-8, -1, 0), (0.309017, -0.9510565, 0), (0.30901703, -0.95105654, 0), (8.825832e-8, -1, 0), (0.309017, -0.9510565, 0), (0.5877851, -0.809017, 0), (0.5877853, -0.80901706, 0), (0.30901703, -0.95105654, 0), (0.5877851, -0.809017, 0), (0.80901694, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.80901706, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.58778524, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.58778524, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.9510566, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.30901694, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.8090169, -0.5877854, 0), (-0.9510565, -0.30901694, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.30901694, -0.9510565, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (8.825832e-8, -1, 0), (9.209566e-8, -1, 0), (-0.30901694, -0.9510565, 0), (8.825832e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.30901703, -0.9510565, 0), (9.209566e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.5877853, -0.80901706, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.80901706, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.309016, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.58778524, 0), (0.8090169, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.58778524, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.80901706, 0), (0.8090169, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.9510566, 0), (0.30901685, 0.9510566, 0), (0.5877851, 0.80901706, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.95105654, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.5877854, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (9.209566e-8, -1, 0), (8.8258325e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209566e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.8090169, 0.5877853, 0), (0.8090169, 0.58778536, 0), (0.9510569, 0.3090161, 0), (0.8090169, 0.5877853, 0), (0.5877851, 0.80901706, 0), (0.58778524, 0.80901706, 0), (0.8090169, 0.58778536, 0), (0.5877851, 0.80901706, 0), (0.30901685, 0.9510566, 0), (0.3090169, 0.9510566, 0), (0.58778524, 0.80901706, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090169, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.95105654, -0.3090171, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.58778554, 0), (-0.95105654, -0.3090171, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.809017, 0), (-0.8090169, -0.58778554, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.3090169, -0.9510566, 0), (-0.5877852, -0.809017, 0), (-0.3090169, -0.95105654, 0), (8.8258325e-8, -1, 0), (8.4420996e-8, -1, 0), (-0.3090169, -0.9510566, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.4420996e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.809017, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.809017, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.3090161, 0), (1, -9.593294e-7, 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, 5.1435853e-7, 1), (0, 7.347982e-7, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, -5.143587e-7, 1), (0, -7.347983e-7, 1), (0, 7.347982e-7, 1), (0, -5.143587e-7, 1), (0, -0.0000020574357, 1), (0, -0.0000022778752, 1), (0, -7.347983e-7, 1), (0, -0.0000020574357, 1), (0, -0, 1), (0, -0, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, -0, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 4.0413923e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 6.062089e-7, 1), (0, 4.0413923e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 1.9288467e-7, 1), (0, 1.1021976e-7, 1), (0, 6.062089e-7, 1), (0, 1.9288467e-7, 1), (0, -6.429489e-8, 1), (0, -9.1849834e-8, 1), (0, 1.1021976e-7, 1), (0, -6.429489e-8, 1), (0, -0, 1), (0, -0, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 8.082787e-7, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 0.0000010287172, 1), (0, 8.0827857e-7, 1), (0, 8.082787e-7, 1), (0, 0.0000010287172, 1), (0, -0, 1), (0, -0, 1), (0, 8.0827857e-7, 1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 7.347982e-7, 1), (0, -1.7359638e-7, 1), (0, 7.347982e-7, 1), (0, -7.347983e-7, 1), (0, -1.7359638e-7, 1), (0, -7.347983e-7, 1), (0, -0.0000022778752, 1), (0, -1.7359638e-7, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 4.0413923e-7, 1), (0, -1.7359638e-7, 1), (0, 4.0413923e-7, 1), (0, 6.062089e-7, 1), (0, -1.7359638e-7, 1), (0, 6.062089e-7, 1), (0, 1.1021976e-7, 1), (0, -1.7359638e-7, 1), (0, 1.1021976e-7, 1), (0, -9.1849834e-8, 1), (0, -1.7359638e-7, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082787e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082787e-7, 1), (0, 8.0827857e-7, 1), (0, -1.7359638e-7, 1), (0, 8.0827857e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1)] ( interpolation = "faceVarying" ) point3f[] points = [(0.95105714, 0.30901718, 0), (0.80901754, 0.5877856, 0), (0.5877856, 0.8090175, 0), (0.30901715, 0.951057, 0), (0, 1.0000005, 0), (-0.30901715, 0.95105696, 0), (-0.5877855, 0.8090173, 0), (-0.80901724, 0.5877854, 0), (-0.9510568, 0.30901706, 0), (-1.0000002, -0, 0), (-0.9510568, -0.30901706, 0), (-0.8090172, -0.58778536, 0), (-0.58778536, -0.8090171, 0), (-0.30901706, -0.95105666, 0), (-2.9802322e-8, -1.0000001, 0), (0.30901697, -0.9510566, 0), (0.58778524, -0.80901706, 0), (0.809017, -0.5877853, 0), (0.95105654, -0.309017, 0), (1, -0, 0), (1.9021143, 0.61803436, 0), (1.6180351, 1.1755712, 0), (1.1755712, 1.618035, 0), (0.6180343, 1.902114, 0), (0, 2.000001, 0), (-0.6180343, 1.9021139, 0), (-1.175571, 1.6180346, 0), (-1.6180345, 1.1755708, 0), (-1.9021136, 0.6180341, 0), (-2.0000005, -0, 0), (-1.9021136, -0.6180341, 0), (-1.6180344, -1.1755707, 0), (-1.1755707, -1.6180342, 0), (-0.6180341, -1.9021133, 0), (-5.9604645e-8, -2.0000002, 0), (0.61803395, -1.9021132, 0), (1.1755705, -1.6180341, 0), (1.618034, -1.1755706, 0), (1.9021131, -0.618034, 0), (2, -0, 0), (1.9021143, 0.61803436, 1), (1.6180351, 1.1755712, 1), (1.1755712, 1.618035, 1), (0.6180343, 1.902114, 1), (0, 2.000001, 1), (-0.6180343, 1.9021139, 1), (-1.175571, 1.6180346, 1), (-1.6180345, 1.1755708, 1), (-1.9021136, 0.6180341, 1), (-2.0000005, -0, 1), (-1.9021136, -0.6180341, 1), (-1.6180344, -1.1755707, 1), (-1.1755707, -1.6180342, 1), (-0.6180341, -1.9021133, 1), (-5.9604645e-8, -2.0000002, 1), (0.61803395, -1.9021132, 1), (1.1755705, -1.6180341, 1), (1.618034, -1.1755706, 1), (1.9021131, -0.618034, 1), (2, -0, 1), (1.9021143, 0.61803436, 2), (1.6180351, 1.1755712, 2), (1.1755712, 1.618035, 2), (0.6180343, 1.902114, 2), (0, 2.000001, 2), (-0.6180343, 1.9021139, 2), (-1.175571, 1.6180346, 2), (-1.6180345, 1.1755708, 2), (-1.9021136, 0.6180341, 2), (-2.0000005, -0, 2), (-1.9021136, -0.6180341, 2), (-1.6180344, -1.1755707, 2), (-1.1755707, -1.6180342, 2), (-0.6180341, -1.9021133, 2), (-5.9604645e-8, -2.0000002, 2), (0.61803395, -1.9021132, 2), (1.1755705, -1.6180341, 2), (1.618034, -1.1755706, 2), (1.9021131, -0.618034, 2), (2, -0, 2), (1.9021143, 0.61803436, 3), (1.6180351, 1.1755712, 3), (1.1755712, 1.618035, 3), (0.6180343, 1.902114, 3), (0, 2.000001, 3), (-0.6180343, 1.9021139, 3), (-1.175571, 1.6180346, 3), (-1.6180345, 1.1755708, 3), (-1.9021136, 0.6180341, 3), (-2.0000005, -0, 3), (-1.9021136, -0.6180341, 3), (-1.6180344, -1.1755707, 3), (-1.1755707, -1.6180342, 3), (-0.6180341, -1.9021133, 3), (-5.9604645e-8, -2.0000002, 3), (0.61803395, -1.9021132, 3), (1.1755705, -1.6180341, 3), (1.618034, -1.1755706, 3), (1.9021131, -0.618034, 3), (2, -0, 3), (1.9021143, 0.61803436, 4), (1.6180351, 1.1755712, 4), (1.1755712, 1.618035, 4), (0.6180343, 1.902114, 4), (0, 2.000001, 4), (-0.6180343, 1.9021139, 4), (-1.175571, 1.6180346, 4), (-1.6180345, 1.1755708, 4), (-1.9021136, 0.6180341, 4), (-2.0000005, -0, 4), (-1.9021136, -0.6180341, 4), (-1.6180344, -1.1755707, 4), (-1.1755707, -1.6180342, 4), (-0.6180341, -1.9021133, 4), (-5.9604645e-8, -2.0000002, 4), (0.61803395, -1.9021132, 4), (1.1755705, -1.6180341, 4), (1.618034, -1.1755706, 4), (1.9021131, -0.618034, 4), (2, -0, 4), (1.9021143, 0.61803436, 5), (1.6180351, 1.1755712, 5), (1.1755712, 1.618035, 5), (0.6180343, 1.902114, 5), (0, 2.000001, 5), (-0.6180343, 1.9021139, 5), (-1.175571, 1.6180346, 5), (-1.6180345, 1.1755708, 5), (-1.9021136, 0.6180341, 5), (-2.0000005, -0, 5), (-1.9021136, -0.6180341, 5), (-1.6180344, -1.1755707, 5), (-1.1755707, -1.6180342, 5), (-0.6180341, -1.9021133, 5), (-5.9604645e-8, -2.0000002, 5), (0.61803395, -1.9021132, 5), (1.1755705, -1.6180341, 5), (1.618034, -1.1755706, 5), (1.9021131, -0.618034, 5), (2, -0, 5), (1.9021143, 0.61803436, 6), (1.6180351, 1.1755712, 6), (1.1755712, 1.618035, 6), (0.6180343, 1.902114, 6), (0, 2.000001, 6), (-0.6180343, 1.9021139, 6), (-1.175571, 1.6180346, 6), (-1.6180345, 1.1755708, 6), (-1.9021136, 0.6180341, 6), (-2.0000005, -0, 6), (-1.9021136, -0.6180341, 6), (-1.6180344, -1.1755707, 6), (-1.1755707, -1.6180342, 6), (-0.6180341, -1.9021133, 6), (-5.9604645e-8, -2.0000002, 6), (0.61803395, -1.9021132, 6), (1.1755705, -1.6180341, 6), (1.618034, -1.1755706, 6), (1.9021131, -0.618034, 6), (2, -0, 6), (1.9021143, 0.61803436, 7), (1.6180351, 1.1755712, 7), (1.1755712, 1.618035, 7), (0.6180343, 1.902114, 7), (0, 2.000001, 7), (-0.6180343, 1.9021139, 7), (-1.175571, 1.6180346, 7), (-1.6180345, 1.1755708, 7), (-1.9021136, 0.6180341, 7), (-2.0000005, -0, 7), (-1.9021136, -0.6180341, 7), (-1.6180344, -1.1755707, 7), (-1.1755707, -1.6180342, 7), (-0.6180341, -1.9021133, 7), (-5.9604645e-8, -2.0000002, 7), (0.61803395, -1.9021132, 7), (1.1755705, -1.6180341, 7), (1.618034, -1.1755706, 7), (1.9021131, -0.618034, 7), (2, -0, 7), (1.9021143, 0.61803436, 8), (1.6180351, 1.1755712, 8), (1.1755712, 1.618035, 8), (0.6180343, 1.902114, 8), (0, 2.000001, 8), (-0.6180343, 1.9021139, 8), (-1.175571, 1.6180346, 8), (-1.6180345, 1.1755708, 8), (-1.9021136, 0.6180341, 8), (-2.0000005, -0, 8), (-1.9021136, -0.6180341, 8), (-1.6180344, -1.1755707, 8), (-1.1755707, -1.6180342, 8), (-0.6180341, -1.9021133, 8), (-5.9604645e-8, -2.0000002, 8), (0.61803395, -1.9021132, 8), (1.1755705, -1.6180341, 8), (1.618034, -1.1755706, 8), (1.9021131, -0.618034, 8), (2, -0, 8), (1.9021143, 0.61803436, 9), (1.6180351, 1.1755712, 9), (1.1755712, 1.618035, 9), (0.6180343, 1.902114, 9), (0, 2.000001, 9), (-0.6180343, 1.9021139, 9), (-1.175571, 1.6180346, 9), (-1.6180345, 1.1755708, 9), (-1.9021136, 0.6180341, 9), (-2.0000005, -0, 9), (-1.9021136, -0.6180341, 9), (-1.6180344, -1.1755707, 9), (-1.1755707, -1.6180342, 9), (-0.6180341, -1.9021133, 9), (-5.9604645e-8, -2.0000002, 9), (0.61803395, -1.9021132, 9), (1.1755705, -1.6180341, 9), (1.618034, -1.1755706, 9), (1.9021131, -0.618034, 9), (2, -0, 9), (1.9021143, 0.61803436, 10), (1.6180351, 1.1755712, 10), (1.1755712, 1.618035, 10), (0.6180343, 1.902114, 10), (0, 2.000001, 10), (-0.6180343, 1.9021139, 10), (-1.175571, 1.6180346, 10), (-1.6180345, 1.1755708, 10), (-1.9021136, 0.6180341, 10), (-2.0000005, -0, 10), (-1.9021136, -0.6180341, 10), (-1.6180344, -1.1755707, 10), (-1.1755707, -1.6180342, 10), (-0.6180341, -1.9021133, 10), (-5.9604645e-8, -2.0000002, 10), (0.61803395, -1.9021132, 10), (1.1755705, -1.6180341, 10), (1.618034, -1.1755706, 10), (1.9021131, -0.618034, 10), (2, -0, 10), (0.95105714, 0.30901718, 10), (0.80901754, 0.5877856, 10), (0.5877856, 0.8090175, 10), (0.30901715, 0.951057, 10), (0, 1.0000005, 10), (-0.30901715, 0.95105696, 10), (-0.5877855, 0.8090173, 10), (-0.80901724, 0.5877854, 10), (-0.9510568, 0.30901706, 10), (-1.0000002, -0, 10), (-0.9510568, -0.30901706, 10), (-0.8090172, -0.58778536, 10), (-0.58778536, -0.8090171, 10), (-0.30901706, -0.95105666, 10), (-2.9802322e-8, -1.0000001, 10), (0.30901697, -0.9510566, 10), (0.58778524, -0.80901706, 10), (0.809017, -0.5877853, 10), (0.95105654, -0.309017, 10), (1, -0, 10), (0, -0, 0), (0, -0, 10)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) int[] primvars:skel:jointIndices = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 0, 1, 2, 0, 0, 4, 3, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [0.9914398, 0.007798158, 0.00056962454, 0.00011597502, 0.00007644505, 0.9911016, 0.008106242, 0.00059212884, 0.00012055687, 0.000079465186, 0.99056286, 0.008597037, 0.0006279794, 0.00012785601, 0.00008427643, 0.98986334, 0.009234303, 0.0006745291, 0.0001373335, 0.00009052352, 0.9890612, 0.009965005, 0.0007279041, 0.00014820058, 0.00009768657, 0.98823136, 0.010720953, 0.0007831231, 0.00015944311, 0.0001050971, 0.9874593, 0.011424304, 0.0008345, 0.00016990342, 0.00011199202, 0.9868309, 0.011996779, 0.00087631703, 0.00017841732, 0.000117603966, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.98627734, 0.012501058, 0.0009131526, 0.000185917, 0.00012254738, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.9868309, 0.011996776, 0.00087631674, 0.00017841726, 0.00011760393, 0.9874593, 0.011424296, 0.00083449937, 0.00016990327, 0.000111991925, 0.9882314, 0.010720941, 0.00078312214, 0.00015944292, 0.00010509697, 0.98906124, 0.009964993, 0.0007279031, 0.00014820037, 0.00009768643, 0.98986334, 0.009234288, 0.00067452795, 0.00013733325, 0.000090523354, 0.99056286, 0.008597019, 0.000627978, 0.00012785573, 0.00008427624, 0.9911016, 0.008106223, 0.0005921274, 0.000120556564, 0.00007946499, 0.9914398, 0.00779814, 0.0005696231, 0.00011597471, 0.000076444856, 0.991555, 0.00769326, 0.000561962, 0.000114414936, 0.00007541673, 0.9122157, 0.07669156, 0.008100551, 0.0017938938, 0.0011983064, 0.9107189, 0.077999204, 0.00823867, 0.0018244808, 0.0012187384, 0.90837055, 0.0800508, 0.008455371, 0.0018724698, 0.0012507946, 0.90539, 0.0826547, 0.008730407, 0.0019333775, 0.0012914804, 0.9020614, 0.085562706, 0.0090375645, 0.0020013985, 0.001336918, 0.8987084, 0.08849201, 0.009346972, 0.002069918, 0.0013826884, 0.89566404, 0.09115166, 0.009627897, 0.0021321299, 0.0014242453, 0.8932356, 0.09327323, 0.0098519875, 0.0021817551, 0.0014573947, 0.89167094, 0.09464017, 0.00999637, 0.0022137293, 0.0014787532, 0.89113086, 0.09511203, 0.01004621, 0.0022247664, 0.0014861259, 0.89167094, 0.09464017, 0.00999637, 0.0022137293, 0.0014787532, 0.8932356, 0.093273215, 0.009851985, 0.0021817544, 0.0014573943, 0.8956641, 0.09115162, 0.009627891, 0.0021321282, 0.0014242443, 0.89870846, 0.08849195, 0.009346963, 0.0020699156, 0.0013826869, 0.9020615, 0.08556263, 0.009037553, 0.002001396, 0.0013369162, 0.90539014, 0.0826546, 0.008730393, 0.0019333743, 0.0012914783, 0.9083707, 0.08005069, 0.008455355, 0.0018724661, 0.0012507922, 0.91071904, 0.07799908, 0.008238653, 0.0018244769, 0.0012187357, 0.9122158, 0.076691434, 0.008100533, 0.0017938897, 0.0011983038, 0.9127295, 0.07624267, 0.008053132, 0.0017833925, 0.0011912917, 0.79757524, 0.18422364, 0.01401941, 0.002549811, 0.0016318791, 0.79559076, 0.18602969, 0.01415685, 0.0025748082, 0.0016478773, 0.7925068, 0.18883635, 0.014370436, 0.0026136546, 0.0016727389, 0.78863347, 0.19236143, 0.014638692, 0.0026624443, 0.0017039644, 0.7843573, 0.19625309, 0.014934847, 0.002716308, 0.0017384371, 0.7801007, 0.20012699, 0.015229651, 0.002769926, 0.0017727527, 0.77627844, 0.20360558, 0.015494369, 0.0028180722, 0.0018035662, 0.77325755, 0.20635484, 0.015703585, 0.002856124, 0.0018279193, 0.771324, 0.20811452, 0.015837496, 0.0028804792, 0.0018435067, 0.77065885, 0.20871985, 0.015883561, 0.0028888572, 0.0018488687, 0.771324, 0.20811452, 0.015837496, 0.0028804792, 0.0018435067, 0.77325755, 0.20635481, 0.015703581, 0.0028561233, 0.0018279188, 0.7762785, 0.20360552, 0.015494359, 0.0028180701, 0.001803565, 0.7801008, 0.2001269, 0.015229637, 0.0027699233, 0.0017727509, 0.7843574, 0.19625297, 0.014934831, 0.0027163047, 0.001738435, 0.78863364, 0.19236128, 0.014638673, 0.0026624403, 0.0017039618, 0.79250705, 0.18883617, 0.014370412, 0.0026136497, 0.0016727359, 0.795591, 0.18602951, 0.014156824, 0.0025748028, 0.0016478739, 0.7975755, 0.18422346, 0.014019383, 0.0025498057, 0.0016318756, 0.7982601, 0.18360043, 0.01397197, 0.0025411823, 0.0016263566, 0.6015815, 0.37000003, 0.023125038, 0.0032929934, 0.0020004367, 0.60011387, 0.371363, 0.023210224, 0.0033051237, 0.0020078055, 0.5978496, 0.37346575, 0.023341643, 0.0033238376, 0.002019174, 0.5950339, 0.37608063, 0.02350507, 0.0033471093, 0.002033311, 0.5919611, 0.37893423, 0.023683418, 0.003372506, 0.002048739, 0.58893895, 0.38174084, 0.02385883, 0.0033974845, 0.0020639133, 0.5862557, 0.38423267, 0.024014562, 0.0034196607, 0.0020773849, 0.58415526, 0.3861833, 0.024136472, 0.0034370206, 0.0020879305, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.58236253, 0.3878482, 0.024240525, 0.0034518375, 0.0020969317, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.5841553, 0.3861833, 0.024136467, 0.0034370197, 0.00208793, 0.5862558, 0.38423264, 0.02401455, 0.0034196584, 0.0020773832, 0.588939, 0.3817408, 0.02385881, 0.003397481, 0.002063911, 0.5919612, 0.37893417, 0.023683393, 0.003372502, 0.0020487367, 0.595034, 0.37608057, 0.02350504, 0.0033471042, 0.002033308, 0.5978497, 0.37346566, 0.023341607, 0.0033238316, 0.0020191702, 0.600114, 0.3713629, 0.023210185, 0.0033051171, 0.0020078013, 0.60158163, 0.36999995, 0.023124997, 0.0032929864, 0.0020004322, 0.6020899, 0.36952794, 0.023095496, 0.0032887855, 0.0019978804, 0.4740385, 0.47368097, 0.04484562, 0.0047368207, 0.0026980825, 0.4739865, 0.47372782, 0.04485005, 0.004737289, 0.0026983493, 0.47392222, 0.4737857, 0.044855524, 0.004737867, 0.0026986785, 0.47387025, 0.47383252, 0.04485995, 0.004738334, 0.0026989444, 0.4738504, 0.4738504, 0.044861637, 0.004738512, 0.002699046, 0.4738504, 0.4738504, 0.044861633, 0.004738512, 0.0026990457, 0.4738504, 0.4738504, 0.044861626, 0.0047385106, 0.002699045, 0.47385043, 0.47385043, 0.044861615, 0.004738509, 0.002699044, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861607, 0.0047385083, 0.0026990436, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861604, 0.004738508, 0.0026990434, 0.47385043, 0.47385043, 0.0448616, 0.0047385073, 0.002699043, 0.47385043, 0.47385043, 0.0448616, 0.004738507, 0.002699043, 0.47385043, 0.47385043, 0.044861592, 0.0047385064, 0.0026990424, 0.47387028, 0.47383255, 0.044859894, 0.0047383267, 0.0026989402, 0.47392228, 0.47378573, 0.04485546, 0.004737858, 0.0026986732, 0.47398654, 0.47372785, 0.04484998, 0.0047372794, 0.0026983435, 0.47403854, 0.47368103, 0.044845544, 0.0047368105, 0.0026980767, 0.47405842, 0.47366315, 0.04484385, 0.004736631, 0.0026979744, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.1302746, 0.009913891, 0.005210989, 0.5210978, 0.33350274, 0.1302746, 0.009913888, 0.0052109878, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.0052109873, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.005210987, 0.52109784, 0.3335027, 0.13027456, 0.009913884, 0.0052109854, 0.5210979, 0.3335027, 0.13027455, 0.009913881, 0.0052109845, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.00991388, 0.0052109836, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.009913879, 0.005210983, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913877, 0.0052109817, 0.52109796, 0.3335027, 0.1302745, 0.009913876, 0.005210981, 0.52109796, 0.3335027, 0.1302745, 0.009913875, 0.0052109803, 0.52109796, 0.3335027, 0.1302745, 0.009913874, 0.0052109803, 0.52109796, 0.3335027, 0.13027449, 0.009913874, 0.00521098, 0.52109796, 0.3335027, 0.13027449, 0.009913873, 0.00521098, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523114, 0.0097612925, 0.5130769, 0.32836935, 0.12826936, 0.02052311, 0.009761291, 0.5130769, 0.32836935, 0.12826934, 0.020523109, 0.009761289, 0.5130769, 0.32836935, 0.12826934, 0.020523107, 0.009761289, 0.51307696, 0.32836935, 0.12826933, 0.020523103, 0.009761286, 0.51307696, 0.32836935, 0.12826931, 0.020523097, 0.009761284, 0.51307696, 0.32836932, 0.12826931, 0.020523097, 0.009761283, 0.51307696, 0.32836932, 0.1282693, 0.020523096, 0.009761282, 0.51307696, 0.32836932, 0.12826931, 0.020523097, 0.009761283, 0.51307696, 0.32836932, 0.1282693, 0.020523094, 0.009761282, 0.513077, 0.32836932, 0.1282693, 0.020523092, 0.00976128, 0.513077, 0.32836932, 0.1282693, 0.02052309, 0.00976128, 0.513077, 0.32836932, 0.12826928, 0.020523088, 0.009761279, 0.513077, 0.32836932, 0.12826928, 0.020523086, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523082, 0.009761276, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467415, 0.042467415, 0.017942488, 0.44856134, 0.44856134, 0.042467408, 0.042467408, 0.017942484, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467393, 0.042467393, 0.017942477, 0.44856137, 0.44856137, 0.042467386, 0.042467386, 0.017942473, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467378, 0.042467378, 0.01794247, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467374, 0.042467374, 0.017942468, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.042467367, 0.042467367, 0.017942462, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467352, 0.042467352, 0.017942457, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.12347673, 0.04676044, 0.019756291, 0.49390635, 0.3161002, 0.12347672, 0.046760432, 0.019756287, 0.49390638, 0.3161002, 0.123476714, 0.04676043, 0.019756285, 0.49390638, 0.3161002, 0.12347671, 0.04676043, 0.019756285, 0.4939064, 0.3161002, 0.1234767, 0.04676042, 0.01975628, 0.49390644, 0.31610018, 0.123476684, 0.04676041, 0.019756276, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760406, 0.019756272, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760403, 0.019756272, 0.49390647, 0.31610018, 0.12347666, 0.0467604, 0.01975627, 0.4939065, 0.31610018, 0.12347666, 0.0467604, 0.019756269, 0.4939065, 0.31610018, 0.123476654, 0.046760395, 0.019756267, 0.49390653, 0.31610018, 0.12347665, 0.046760388, 0.019756265, 0.49390653, 0.31610018, 0.12347664, 0.046760388, 0.019756263, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347663, 0.046760384, 0.019756261, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.46317184, 0.2964301, 0.1157931, 0.1157931, 0.008811848, 0.46317187, 0.2964301, 0.11579309, 0.11579309, 0.008811847, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.4631719, 0.2964301, 0.115793064, 0.115793064, 0.008811844, 0.46317193, 0.2964301, 0.11579306, 0.11579306, 0.008811842, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.11579303, 0.11579303, 0.008811837, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811836, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317205, 0.2964301, 0.11579301, 0.11579301, 0.008811834, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.03449396, 0.0036434263, 0.36434186, 0.36434186, 0.23317888, 0.034493953, 0.0036434254, 0.36434186, 0.36434186, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317887, 0.03449394, 0.0036434238, 0.36434188, 0.36434188, 0.23317887, 0.034493934, 0.0036434229, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.03449393, 0.0036434222, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.034493927, 0.003643422, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.0036434212, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.003643421, 0.3643419, 0.3643419, 0.23317884, 0.03449392, 0.0036434208, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.00364342, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.0036434198, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317882, 0.03449391, 0.0036434191, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893745, 0.0021208613, 0.3723429, 0.3723429, 0.23829956, 0.014893741, 0.0021208609, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208606, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208604, 0.3723429, 0.3723429, 0.23829955, 0.014893736, 0.00212086, 0.37234294, 0.37234294, 0.23829953, 0.014893732, 0.0021208592, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829953, 0.014893729, 0.0021208588, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829952, 0.014893728, 0.0021208585, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.014893724, 0.0021208578, 0.37234294, 0.37234294, 0.2382995, 0.014893722, 0.0021208576, 0.37234297, 0.37234297, 0.2382995, 0.014893721, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208571, 0.37234297, 0.37234297, 0.2382995, 0.014893719, 0.0021208571, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.11092093, 0.0015352394, 0.00017747369, 0.44368318, 0.44368318, 0.11092091, 0.0015352389, 0.00017747364, 0.44368318, 0.44368318, 0.110920906, 0.0015352387, 0.00017747362, 0.4436832, 0.4436832, 0.1109209, 0.0015352387, 0.0001774736, 0.4436832, 0.4436832, 0.11092088, 0.0015352382, 0.00017747354, 0.4436832, 0.4436832, 0.11092087, 0.0015352378, 0.0001774735, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352374, 0.00017747346, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352373, 0.00017747344, 0.44368324, 0.44368324, 0.11092085, 0.0015352371, 0.00017747341, 0.44368324, 0.44368324, 0.11092084, 0.001535237, 0.0001774734, 0.44368324, 0.44368324, 0.11092083, 0.0015352367, 0.00017747337, 0.44368324, 0.44368324, 0.110920824, 0.0015352365, 0.00017747334, 0.44368324, 0.44368324, 0.11092082, 0.0015352364, 0.00017747332, 0.44368324, 0.44368324, 0.11092082, 0.0015352364, 0.00017747332, 0.44368324, 0.44368324, 0.11092082, 0.0015352363, 0.00017747331, 0.44368324, 0.44368324, 0.11092081, 0.0015352361, 0.0001774733, 0.9999998, 1.7388004e-7, 1.08675025e-8, 0, 0, 0.5, 0.5, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float2[] primvars:st = [(0.57430136, 0.13210803), (0.5632045, 0.11032924), (0.626409, 0.064408496), (0.64860266, 0.10796607), (0.5459207, 0.0930455), (0.5918415, 0.02984102), (0.52414197, 0.08194867), (0.54828393, 0.0076473355), (0.5, 0.07812497), (0.5, -7.4505806e-8), (0.47585803, 0.08194867), (0.45171607, 0.0076473504), (0.45407927, 0.09304553), (0.4081585, 0.02984105), (0.43679553, 0.11032927), (0.37359107, 0.064408526), (0.4256987, 0.13210803), (0.3513974, 0.1079661), (0.421875, 0.15625), (0.34374997, 0.15625), (0.4256987, 0.18039197), (0.3513974, 0.2045339), (0.43679553, 0.20217073), (0.37359107, 0.24809146), (0.45407927, 0.21945447), (0.40815854, 0.28265893), (0.47585803, 0.2305513), (0.4517161, 0.3048526), (0.5, 0.234375), (0.5, 0.3125), (0.52414197, 0.2305513), (0.5482839, 0.3048526), (0.5459207, 0.21945447), (0.59184146, 0.28265893), (0.56320447, 0.20217073), (0.62640893, 0.24809146), (0.5743013, 0.18039197), (0.6486026, 0.2045339), (0.578125, 0.15625), (0.65625, 0.15625), (0.375, 0.3125), (0.3875, 0.3125), (0.3875, 0.350094), (0.375, 0.350094), (0.39999998, 0.3125), (0.39999998, 0.350094), (0.41249996, 0.3125), (0.41249996, 0.350094), (0.42499995, 0.3125), (0.42499995, 0.350094), (0.43749994, 0.3125), (0.43749994, 0.350094), (0.44999993, 0.3125), (0.44999993, 0.350094), (0.46249992, 0.3125), (0.46249992, 0.350094), (0.4749999, 0.3125), (0.4749999, 0.350094), (0.4874999, 0.3125), (0.4874999, 0.350094), (0.49999988, 0.3125), (0.49999988, 0.350094), (0.51249987, 0.3125), (0.51249987, 0.350094), (0.52499986, 0.3125), (0.52499986, 0.350094), (0.53749985, 0.3125), (0.53749985, 0.350094), (0.54999983, 0.3125), (0.54999983, 0.350094), (0.5624998, 0.3125), (0.5624998, 0.350094), (0.5749998, 0.3125), (0.5749998, 0.350094), (0.5874998, 0.3125), (0.5874998, 0.350094), (0.5999998, 0.3125), (0.5999998, 0.350094), (0.6124998, 0.3125), (0.6124998, 0.350094), (0.62499976, 0.3125), (0.62499976, 0.350094), (0.3875, 0.38768798), (0.375, 0.38768798), (0.39999998, 0.38768798), (0.41249996, 0.38768798), (0.42499995, 0.38768798), (0.43749994, 0.38768798), (0.44999993, 0.38768798), (0.46249992, 0.38768798), (0.4749999, 0.38768798), (0.4874999, 0.38768798), (0.49999988, 0.38768798), (0.51249987, 0.38768798), (0.52499986, 0.38768798), (0.53749985, 0.38768798), (0.54999983, 0.38768798), (0.5624998, 0.38768798), (0.5749998, 0.38768798), (0.5874998, 0.38768798), (0.5999998, 0.38768798), (0.6124998, 0.38768798), (0.62499976, 0.38768798), (0.3875, 0.42528197), (0.375, 0.42528197), (0.39999998, 0.42528197), (0.41249996, 0.42528197), (0.42499995, 0.42528197), (0.43749994, 0.42528197), (0.44999993, 0.42528197), (0.46249992, 0.42528197), (0.4749999, 0.42528197), (0.4874999, 0.42528197), (0.49999988, 0.42528197), (0.51249987, 0.42528197), (0.52499986, 0.42528197), (0.53749985, 0.42528197), (0.54999983, 0.42528197), (0.5624998, 0.42528197), (0.5749998, 0.42528197), (0.5874998, 0.42528197), (0.5999998, 0.42528197), (0.6124998, 0.42528197), (0.62499976, 0.42528197), (0.3875, 0.46287596), (0.375, 0.46287596), (0.39999998, 0.46287596), (0.41249996, 0.46287596), (0.42499995, 0.46287596), (0.43749994, 0.46287596), (0.44999993, 0.46287596), (0.46249992, 0.46287596), (0.4749999, 0.46287596), (0.4874999, 0.46287596), (0.49999988, 0.46287596), (0.51249987, 0.46287596), (0.52499986, 0.46287596), (0.53749985, 0.46287596), (0.54999983, 0.46287596), (0.5624998, 0.46287596), (0.5749998, 0.46287596), (0.5874998, 0.46287596), (0.5999998, 0.46287596), (0.6124998, 0.46287596), (0.62499976, 0.46287596), (0.3875, 0.5004699), (0.375, 0.5004699), (0.39999998, 0.5004699), (0.41249996, 0.5004699), (0.42499995, 0.5004699), (0.43749994, 0.5004699), (0.44999993, 0.5004699), (0.46249992, 0.5004699), (0.4749999, 0.5004699), (0.4874999, 0.5004699), (0.49999988, 0.5004699), (0.51249987, 0.5004699), (0.52499986, 0.5004699), (0.53749985, 0.5004699), (0.54999983, 0.5004699), (0.5624998, 0.5004699), (0.5749998, 0.5004699), (0.5874998, 0.5004699), (0.5999998, 0.5004699), (0.6124998, 0.5004699), (0.62499976, 0.5004699), (0.3875, 0.5380639), (0.375, 0.5380639), (0.39999998, 0.5380639), (0.41249996, 0.5380639), (0.42499995, 0.5380639), (0.43749994, 0.5380639), (0.44999993, 0.5380639), (0.46249992, 0.5380639), (0.4749999, 0.5380639), (0.4874999, 0.5380639), (0.49999988, 0.5380639), (0.51249987, 0.5380639), (0.52499986, 0.5380639), (0.53749985, 0.5380639), (0.54999983, 0.5380639), (0.5624998, 0.5380639), (0.5749998, 0.5380639), (0.5874998, 0.5380639), (0.5999998, 0.5380639), (0.6124998, 0.5380639), (0.62499976, 0.5380639), (0.3875, 0.57565784), (0.375, 0.57565784), (0.39999998, 0.57565784), (0.41249996, 0.57565784), (0.42499995, 0.57565784), (0.43749994, 0.57565784), (0.44999993, 0.57565784), (0.46249992, 0.57565784), (0.4749999, 0.57565784), (0.4874999, 0.57565784), (0.49999988, 0.57565784), (0.51249987, 0.57565784), (0.52499986, 0.57565784), (0.53749985, 0.57565784), (0.54999983, 0.57565784), (0.5624998, 0.57565784), (0.5749998, 0.57565784), (0.5874998, 0.57565784), (0.5999998, 0.57565784), (0.6124998, 0.57565784), (0.62499976, 0.57565784), (0.3875, 0.6132518), (0.375, 0.6132518), (0.39999998, 0.6132518), (0.41249996, 0.6132518), (0.42499995, 0.6132518), (0.43749994, 0.6132518), (0.44999993, 0.6132518), (0.46249992, 0.6132518), (0.4749999, 0.6132518), (0.4874999, 0.6132518), (0.49999988, 0.6132518), (0.51249987, 0.6132518), (0.52499986, 0.6132518), (0.53749985, 0.6132518), (0.54999983, 0.6132518), (0.5624998, 0.6132518), (0.5749998, 0.6132518), (0.5874998, 0.6132518), (0.5999998, 0.6132518), (0.6124998, 0.6132518), (0.62499976, 0.6132518), (0.3875, 0.65084577), (0.375, 0.65084577), (0.39999998, 0.65084577), (0.41249996, 0.65084577), (0.42499995, 0.65084577), (0.43749994, 0.65084577), (0.44999993, 0.65084577), (0.46249992, 0.65084577), (0.4749999, 0.65084577), (0.4874999, 0.65084577), (0.49999988, 0.65084577), (0.51249987, 0.65084577), (0.52499986, 0.65084577), (0.53749985, 0.65084577), (0.54999983, 0.65084577), (0.5624998, 0.65084577), (0.5749998, 0.65084577), (0.5874998, 0.65084577), (0.5999998, 0.65084577), (0.6124998, 0.65084577), (0.62499976, 0.65084577), (0.3875, 0.6884397), (0.375, 0.6884397), (0.39999998, 0.6884397), (0.41249996, 0.6884397), (0.42499995, 0.6884397), (0.43749994, 0.6884397), (0.44999993, 0.6884397), (0.46249992, 0.6884397), (0.4749999, 0.6884397), (0.4874999, 0.6884397), (0.49999988, 0.6884397), (0.51249987, 0.6884397), (0.52499986, 0.6884397), (0.53749985, 0.6884397), (0.54999983, 0.6884397), (0.5624998, 0.6884397), (0.5749998, 0.6884397), (0.5874998, 0.6884397), (0.5999998, 0.6884397), (0.6124998, 0.6884397), (0.62499976, 0.6884397), (0.6486026, 0.89203393), (0.62640893, 0.93559146), (0.56320447, 0.8896707), (0.5743013, 0.86789197), (0.59184146, 0.97015893), (0.5459207, 0.90695447), (0.5482839, 0.9923526), (0.52414197, 0.9180513), (0.5, 1), (0.5, 0.921875), (0.4517161, 0.9923526), (0.47585803, 0.9180513), (0.40815854, 0.97015893), (0.45407927, 0.90695447), (0.37359107, 0.93559146), (0.43679553, 0.8896707), (0.3513974, 0.89203393), (0.4256987, 0.86789197), (0.34374997, 0.84375), (0.421875, 0.84375), (0.3513974, 0.79546607), (0.4256987, 0.81960803), (0.37359107, 0.75190854), (0.43679553, 0.7978293), (0.4081585, 0.71734107), (0.45407927, 0.78054553), (0.45171607, 0.69514734), (0.47585803, 0.76944864), (0.5, 0.68749994), (0.5, 0.765625), (0.54828393, 0.69514734), (0.52414197, 0.76944864), (0.5918415, 0.717341), (0.5459207, 0.7805455), (0.626409, 0.7519085), (0.5632045, 0.7978293), (0.64860266, 0.79546607), (0.57430136, 0.81960803), (0.65625, 0.84375), (0.578125, 0.84375), (0.5, 0.15), (0.5, 0.8375)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 1, 4, 5, 2, 4, 6, 7, 5, 6, 8, 9, 7, 8, 10, 11, 9, 10, 12, 13, 11, 12, 14, 15, 13, 14, 16, 17, 15, 16, 18, 19, 17, 18, 20, 21, 19, 20, 22, 23, 21, 22, 24, 25, 23, 24, 26, 27, 25, 26, 28, 29, 27, 28, 30, 31, 29, 30, 32, 33, 31, 32, 34, 35, 33, 34, 36, 37, 35, 36, 38, 39, 37, 38, 0, 3, 39, 40, 41, 42, 43, 41, 44, 45, 42, 44, 46, 47, 45, 46, 48, 49, 47, 48, 50, 51, 49, 50, 52, 53, 51, 52, 54, 55, 53, 54, 56, 57, 55, 56, 58, 59, 57, 58, 60, 61, 59, 60, 62, 63, 61, 62, 64, 65, 63, 64, 66, 67, 65, 66, 68, 69, 67, 68, 70, 71, 69, 70, 72, 73, 71, 72, 74, 75, 73, 74, 76, 77, 75, 76, 78, 79, 77, 78, 80, 81, 79, 43, 42, 82, 83, 42, 45, 84, 82, 45, 47, 85, 84, 47, 49, 86, 85, 49, 51, 87, 86, 51, 53, 88, 87, 53, 55, 89, 88, 55, 57, 90, 89, 57, 59, 91, 90, 59, 61, 92, 91, 61, 63, 93, 92, 63, 65, 94, 93, 65, 67, 95, 94, 67, 69, 96, 95, 69, 71, 97, 96, 71, 73, 98, 97, 73, 75, 99, 98, 75, 77, 100, 99, 77, 79, 101, 100, 79, 81, 102, 101, 83, 82, 103, 104, 82, 84, 105, 103, 84, 85, 106, 105, 85, 86, 107, 106, 86, 87, 108, 107, 87, 88, 109, 108, 88, 89, 110, 109, 89, 90, 111, 110, 90, 91, 112, 111, 91, 92, 113, 112, 92, 93, 114, 113, 93, 94, 115, 114, 94, 95, 116, 115, 95, 96, 117, 116, 96, 97, 118, 117, 97, 98, 119, 118, 98, 99, 120, 119, 99, 100, 121, 120, 100, 101, 122, 121, 101, 102, 123, 122, 104, 103, 124, 125, 103, 105, 126, 124, 105, 106, 127, 126, 106, 107, 128, 127, 107, 108, 129, 128, 108, 109, 130, 129, 109, 110, 131, 130, 110, 111, 132, 131, 111, 112, 133, 132, 112, 113, 134, 133, 113, 114, 135, 134, 114, 115, 136, 135, 115, 116, 137, 136, 116, 117, 138, 137, 117, 118, 139, 138, 118, 119, 140, 139, 119, 120, 141, 140, 120, 121, 142, 141, 121, 122, 143, 142, 122, 123, 144, 143, 125, 124, 145, 146, 124, 126, 147, 145, 126, 127, 148, 147, 127, 128, 149, 148, 128, 129, 150, 149, 129, 130, 151, 150, 130, 131, 152, 151, 131, 132, 153, 152, 132, 133, 154, 153, 133, 134, 155, 154, 134, 135, 156, 155, 135, 136, 157, 156, 136, 137, 158, 157, 137, 138, 159, 158, 138, 139, 160, 159, 139, 140, 161, 160, 140, 141, 162, 161, 141, 142, 163, 162, 142, 143, 164, 163, 143, 144, 165, 164, 146, 145, 166, 167, 145, 147, 168, 166, 147, 148, 169, 168, 148, 149, 170, 169, 149, 150, 171, 170, 150, 151, 172, 171, 151, 152, 173, 172, 152, 153, 174, 173, 153, 154, 175, 174, 154, 155, 176, 175, 155, 156, 177, 176, 156, 157, 178, 177, 157, 158, 179, 178, 158, 159, 180, 179, 159, 160, 181, 180, 160, 161, 182, 181, 161, 162, 183, 182, 162, 163, 184, 183, 163, 164, 185, 184, 164, 165, 186, 185, 167, 166, 187, 188, 166, 168, 189, 187, 168, 169, 190, 189, 169, 170, 191, 190, 170, 171, 192, 191, 171, 172, 193, 192, 172, 173, 194, 193, 173, 174, 195, 194, 174, 175, 196, 195, 175, 176, 197, 196, 176, 177, 198, 197, 177, 178, 199, 198, 178, 179, 200, 199, 179, 180, 201, 200, 180, 181, 202, 201, 181, 182, 203, 202, 182, 183, 204, 203, 183, 184, 205, 204, 184, 185, 206, 205, 185, 186, 207, 206, 188, 187, 208, 209, 187, 189, 210, 208, 189, 190, 211, 210, 190, 191, 212, 211, 191, 192, 213, 212, 192, 193, 214, 213, 193, 194, 215, 214, 194, 195, 216, 215, 195, 196, 217, 216, 196, 197, 218, 217, 197, 198, 219, 218, 198, 199, 220, 219, 199, 200, 221, 220, 200, 201, 222, 221, 201, 202, 223, 222, 202, 203, 224, 223, 203, 204, 225, 224, 204, 205, 226, 225, 205, 206, 227, 226, 206, 207, 228, 227, 209, 208, 229, 230, 208, 210, 231, 229, 210, 211, 232, 231, 211, 212, 233, 232, 212, 213, 234, 233, 213, 214, 235, 234, 214, 215, 236, 235, 215, 216, 237, 236, 216, 217, 238, 237, 217, 218, 239, 238, 218, 219, 240, 239, 219, 220, 241, 240, 220, 221, 242, 241, 221, 222, 243, 242, 222, 223, 244, 243, 223, 224, 245, 244, 224, 225, 246, 245, 225, 226, 247, 246, 226, 227, 248, 247, 227, 228, 249, 248, 230, 229, 250, 251, 229, 231, 252, 250, 231, 232, 253, 252, 232, 233, 254, 253, 233, 234, 255, 254, 234, 235, 256, 255, 235, 236, 257, 256, 236, 237, 258, 257, 237, 238, 259, 258, 238, 239, 260, 259, 239, 240, 261, 260, 240, 241, 262, 261, 241, 242, 263, 262, 242, 243, 264, 263, 243, 244, 265, 264, 244, 245, 266, 265, 245, 246, 267, 266, 246, 247, 268, 267, 247, 248, 269, 268, 248, 249, 270, 269, 271, 272, 273, 274, 272, 275, 276, 273, 275, 277, 278, 276, 277, 279, 280, 278, 279, 281, 282, 280, 281, 283, 284, 282, 283, 285, 286, 284, 285, 287, 288, 286, 287, 289, 290, 288, 289, 291, 292, 290, 291, 293, 294, 292, 293, 295, 296, 294, 295, 297, 298, 296, 297, 299, 300, 298, 299, 301, 302, 300, 301, 303, 304, 302, 303, 305, 306, 304, 305, 307, 308, 306, 307, 309, 310, 308, 309, 271, 274, 310, 1, 0, 311, 4, 1, 311, 6, 4, 311, 8, 6, 311, 10, 8, 311, 12, 10, 311, 14, 12, 311, 16, 14, 311, 18, 16, 311, 20, 18, 311, 22, 20, 311, 24, 22, 311, 26, 24, 311, 28, 26, 311, 30, 28, 311, 32, 30, 311, 34, 32, 311, 36, 34, 311, 38, 36, 311, 0, 38, 311, 274, 273, 312, 273, 276, 312, 276, 278, 312, 278, 280, 312, 280, 282, 312, 282, 284, 312, 284, 286, 312, 286, 288, 312, 288, 290, 312, 290, 292, 312, 292, 294, 312, 294, 296, 312, 296, 298, 312, 298, 300, 312, 300, 302, 312, 302, 304, 312, 304, 306, 312, 306, 308, 312, 308, 310, 312, 310, 274, 312] uniform token[] skel:blendShapes = ["pCylinder4"] rel skel:blendShapeTargets = </Root/BLENDWEIGHT_group1/BLENDWEIGHT_pCylinder1/pCylinder4> uniform token[] skel:joints = ["BLENDWEIGHT_joint1", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3/BLENDWEIGHT_joint4", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3/BLENDWEIGHT_joint4/BLENDWEIGHT_joint5"] rel skel:skeleton = </Root/BLENDWEIGHT_group1/BLENDWEIGHT_joint1> custom uniform int skel:skinningMethod = 0 uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def BlendShape "pCylinder4" { uniform vector3f[] offsets = [(0.055679083, -0, 0), (0.055679083, -0, 0), (0.0076562166, -0, 0), (0.007656336, -1.2980017e-19, 0), (2.5285296, -0, 0), (2.52853, -0, 0), (1.9332323, -0, 0), (0.724032, -0, 0), (0.015010702, -0, 0), (0.0150107145, -0, 0), (0.7240318, -0, 0), (1.9332323, -2.390851e-19, 0), (4.553535, -0, 0), (4.5535345, -0, 0), (3.667693, -0, 0), (1.7491772, -0, 0), (0.2682255, -0, 0), (0.26822555, -0, 0), (1.7491773, -0, 0), (3.6676931, -6.64955e-19, 0), (4.553535, -0, 0), (4.5535345, -0, 0), (3.667693, -0, 0), (1.7491772, -0, 0), (0.2682255, -0, 0), (0.26822555, -0, 0), (1.7491773, -0, 0), (3.6676931, -1.6402312e-18, 0), (2.5285296, -0, 0), (2.52853, -0, 0), (1.9332323, -0, 0), (0.724032, -0, 0), (0.015010702, -0, 0), (0.0150107145, -0, 0), (0.7240318, -0, 0), (1.9332323, -2.3276786e-18, 0), (0.055679083, -0, 0), (0.055679083, -0, 0), (0.0076562166, -0, 0), (0.007656336, -3.0373284e-18, 0)] uniform uint[] pointIndices = [60, 61, 62, 79, 80, 81, 82, 83, 84, 97, 98, 99, 100, 101, 102, 103, 104, 117, 118, 119, 120, 121, 122, 123, 124, 137, 138, 139, 140, 141, 142, 143, 144, 157, 158, 159, 160, 161, 162, 179] } } def Skeleton "BLENDWEIGHT_joint1" ( prepend apiSchemas = ["SkelBindingAPI"] customData = { dictionary Maya = { bool generated = 1 } } ) { uniform matrix4d[] bindTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (-1.3877787807814457e-17, 8.841297486311764e-34, 3.0000000000000004, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (0, 1.2722513410043386e-31, 6, 1) ), ( (-3.434752482434078e-15, -2.5007674121386094e-18, 1, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (1, -1.224391440225264e-16, 3.434752482434078e-15, 0), (9.185754640251975e-34, 1.5649926925511984e-31, 9, 1) ), ( (1, -1.224391440225264e-16, -1.1796119636642288e-16, 0), (1.2243914402252635e-16, 1, -1.1996391250259628e-16, 0), (2.2898349882893854e-16, 1.1996391250259626e-16, 1, 0), (1.2247672853669268e-33, 1.4186220167777685e-31, 10, 1) )] uniform token[] joints = ["BLENDWEIGHT_joint1", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3/BLENDWEIGHT_joint4", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3/BLENDWEIGHT_joint4/BLENDWEIGHT_joint5"] uniform matrix4d[] restTransforms = [( (-0.020420315587156734, 0, 0.9997914836161192, 0), (-1.2243914402252638e-16, -1, -2.50076741213904e-18, 0), (0.9997914836161192, -1.2246467991473532e-16, 0.020420315587156734, 0), (0.06181698728549858, 0, -0.02659854433002078, 1) ), ( (0.9997914836161194, 0, 0.0204203155871533, 0), (0, 1, 0, 0), (-0.0204203155871533, 0, 0.9997914836161194, 0), (3.0272297713351164, -9.860761315262648e-32, 7.979727989493313e-16, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.502302236417219e-18, 1.0318135235110049e-14, 1) ), ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (3, -7.50230223641712e-18, 1.0304257447302234e-14, 1) ), ( (-3.552713678800501e-15, 0, 1, 0), (-1.2246467991473532e-16, -1, -4.437342591868191e-31, 0), (1, -1.2246467991473532e-16, 3.6637359812630166e-15, 0), (1, -2.5007674121390154e-18, 3.434752482434078e-15, 1) )] rel skel:animationSource = </Root/BLENDWEIGHT_group1/BLENDWEIGHT_joint1/Animation> def SkelAnimation "Animation" { uniform token[] blendShapes = ["pCylinder4"] float[] blendShapeWeights.timeSamples = { 0: [0], 1: [0], 2: [0.02284429], 3: [0.08548186], 4: [0.17906976], 5: [0.29476503], 6: [0.42372474], 7: [0.5571059], 8: [0.6860656], 9: [0.8017609], 10: [0.8953488], 11: [0.95798635], 12: [0.98083067], 13: [0.94185597], 14: [0.83410245], 15: [0.67132586], 16: [0.46728197], 17: [0.23572654], 18: [-0.009584664], 19: [-0.25489587], 20: [-0.4864513], 21: [-0.6904952], 22: [-0.8532718], 23: [-0.9610253], 24: [-1], 25: [-0.972], 26: [-0.896], 27: [-0.784], 28: [-0.648], 29: [-0.5], 30: [-0.352], 31: [-0.216], 32: [-0.104], 33: [-0.028], 34: [0], 35: [0], 36: [0], 37: [0], 38: [0], 39: [0], 40: [0], 41: [0], 42: [0], 43: [0], 44: [0], 45: [0], 46: [0], 47: [0], 48: [0], } uniform token[] joints = ["BLENDWEIGHT_joint1", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3/BLENDWEIGHT_joint4", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3/BLENDWEIGHT_joint4/BLENDWEIGHT_joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] } } def Mesh "BLENDWEIGHT_pCylinder2" ( prepend apiSchemas = ["SkelBindingAPI"] ) { bool BypassRenderSkinning = 0 uniform bool doubleSided = 1 float3[] extent = [(-2.0000005, -2.0000002, 0), (2, 2.000001, 10)] 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, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 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] int[] faceVertexIndices = [0, 1, 21, 20, 1, 2, 22, 21, 2, 3, 23, 22, 3, 4, 24, 23, 4, 5, 25, 24, 5, 6, 26, 25, 6, 7, 27, 26, 7, 8, 28, 27, 8, 9, 29, 28, 9, 10, 30, 29, 10, 11, 31, 30, 11, 12, 32, 31, 12, 13, 33, 32, 13, 14, 34, 33, 14, 15, 35, 34, 15, 16, 36, 35, 16, 17, 37, 36, 17, 18, 38, 37, 18, 19, 39, 38, 19, 0, 20, 39, 20, 21, 41, 40, 21, 22, 42, 41, 22, 23, 43, 42, 23, 24, 44, 43, 24, 25, 45, 44, 25, 26, 46, 45, 26, 27, 47, 46, 27, 28, 48, 47, 28, 29, 49, 48, 29, 30, 50, 49, 30, 31, 51, 50, 31, 32, 52, 51, 32, 33, 53, 52, 33, 34, 54, 53, 34, 35, 55, 54, 35, 36, 56, 55, 36, 37, 57, 56, 37, 38, 58, 57, 38, 39, 59, 58, 39, 20, 40, 59, 40, 41, 61, 60, 41, 42, 62, 61, 42, 43, 63, 62, 43, 44, 64, 63, 44, 45, 65, 64, 45, 46, 66, 65, 46, 47, 67, 66, 47, 48, 68, 67, 48, 49, 69, 68, 49, 50, 70, 69, 50, 51, 71, 70, 51, 52, 72, 71, 52, 53, 73, 72, 53, 54, 74, 73, 54, 55, 75, 74, 55, 56, 76, 75, 56, 57, 77, 76, 57, 58, 78, 77, 58, 59, 79, 78, 59, 40, 60, 79, 60, 61, 81, 80, 61, 62, 82, 81, 62, 63, 83, 82, 63, 64, 84, 83, 64, 65, 85, 84, 65, 66, 86, 85, 66, 67, 87, 86, 67, 68, 88, 87, 68, 69, 89, 88, 69, 70, 90, 89, 70, 71, 91, 90, 71, 72, 92, 91, 72, 73, 93, 92, 73, 74, 94, 93, 74, 75, 95, 94, 75, 76, 96, 95, 76, 77, 97, 96, 77, 78, 98, 97, 78, 79, 99, 98, 79, 60, 80, 99, 80, 81, 101, 100, 81, 82, 102, 101, 82, 83, 103, 102, 83, 84, 104, 103, 84, 85, 105, 104, 85, 86, 106, 105, 86, 87, 107, 106, 87, 88, 108, 107, 88, 89, 109, 108, 89, 90, 110, 109, 90, 91, 111, 110, 91, 92, 112, 111, 92, 93, 113, 112, 93, 94, 114, 113, 94, 95, 115, 114, 95, 96, 116, 115, 96, 97, 117, 116, 97, 98, 118, 117, 98, 99, 119, 118, 99, 80, 100, 119, 100, 101, 121, 120, 101, 102, 122, 121, 102, 103, 123, 122, 103, 104, 124, 123, 104, 105, 125, 124, 105, 106, 126, 125, 106, 107, 127, 126, 107, 108, 128, 127, 108, 109, 129, 128, 109, 110, 130, 129, 110, 111, 131, 130, 111, 112, 132, 131, 112, 113, 133, 132, 113, 114, 134, 133, 114, 115, 135, 134, 115, 116, 136, 135, 116, 117, 137, 136, 117, 118, 138, 137, 118, 119, 139, 138, 119, 100, 120, 139, 120, 121, 141, 140, 121, 122, 142, 141, 122, 123, 143, 142, 123, 124, 144, 143, 124, 125, 145, 144, 125, 126, 146, 145, 126, 127, 147, 146, 127, 128, 148, 147, 128, 129, 149, 148, 129, 130, 150, 149, 130, 131, 151, 150, 131, 132, 152, 151, 132, 133, 153, 152, 133, 134, 154, 153, 134, 135, 155, 154, 135, 136, 156, 155, 136, 137, 157, 156, 137, 138, 158, 157, 138, 139, 159, 158, 139, 120, 140, 159, 140, 141, 161, 160, 141, 142, 162, 161, 142, 143, 163, 162, 143, 144, 164, 163, 144, 145, 165, 164, 145, 146, 166, 165, 146, 147, 167, 166, 147, 148, 168, 167, 148, 149, 169, 168, 149, 150, 170, 169, 150, 151, 171, 170, 151, 152, 172, 171, 152, 153, 173, 172, 153, 154, 174, 173, 154, 155, 175, 174, 155, 156, 176, 175, 156, 157, 177, 176, 157, 158, 178, 177, 158, 159, 179, 178, 159, 140, 160, 179, 160, 161, 181, 180, 161, 162, 182, 181, 162, 163, 183, 182, 163, 164, 184, 183, 164, 165, 185, 184, 165, 166, 186, 185, 166, 167, 187, 186, 167, 168, 188, 187, 168, 169, 189, 188, 169, 170, 190, 189, 170, 171, 191, 190, 171, 172, 192, 191, 172, 173, 193, 192, 173, 174, 194, 193, 174, 175, 195, 194, 175, 176, 196, 195, 176, 177, 197, 196, 177, 178, 198, 197, 178, 179, 199, 198, 179, 160, 180, 199, 180, 181, 201, 200, 181, 182, 202, 201, 182, 183, 203, 202, 183, 184, 204, 203, 184, 185, 205, 204, 185, 186, 206, 205, 186, 187, 207, 206, 187, 188, 208, 207, 188, 189, 209, 208, 189, 190, 210, 209, 190, 191, 211, 210, 191, 192, 212, 211, 192, 193, 213, 212, 193, 194, 214, 213, 194, 195, 215, 214, 195, 196, 216, 215, 196, 197, 217, 216, 197, 198, 218, 217, 198, 199, 219, 218, 199, 180, 200, 219, 200, 201, 221, 220, 201, 202, 222, 221, 202, 203, 223, 222, 203, 204, 224, 223, 204, 205, 225, 224, 205, 206, 226, 225, 206, 207, 227, 226, 207, 208, 228, 227, 208, 209, 229, 228, 209, 210, 230, 229, 210, 211, 231, 230, 211, 212, 232, 231, 212, 213, 233, 232, 213, 214, 234, 233, 214, 215, 235, 234, 215, 216, 236, 235, 216, 217, 237, 236, 217, 218, 238, 237, 218, 219, 239, 238, 219, 200, 220, 239, 220, 221, 241, 240, 221, 222, 242, 241, 222, 223, 243, 242, 223, 224, 244, 243, 224, 225, 245, 244, 225, 226, 246, 245, 226, 227, 247, 246, 227, 228, 248, 247, 228, 229, 249, 248, 229, 230, 250, 249, 230, 231, 251, 250, 231, 232, 252, 251, 232, 233, 253, 252, 233, 234, 254, 253, 234, 235, 255, 254, 235, 236, 256, 255, 236, 237, 257, 256, 237, 238, 258, 257, 238, 239, 259, 258, 239, 220, 240, 259, 1, 0, 260, 2, 1, 260, 3, 2, 260, 4, 3, 260, 5, 4, 260, 6, 5, 260, 7, 6, 260, 8, 7, 260, 9, 8, 260, 10, 9, 260, 11, 10, 260, 12, 11, 260, 13, 12, 260, 14, 13, 260, 15, 14, 260, 16, 15, 260, 17, 16, 260, 18, 17, 260, 19, 18, 260, 0, 19, 260, 240, 241, 261, 241, 242, 261, 242, 243, 261, 243, 244, 261, 244, 245, 261, 245, 246, 261, 246, 247, 261, 247, 248, 261, 248, 249, 261, 249, 250, 261, 250, 251, 261, 251, 252, 261, 252, 253, 261, 253, 254, 261, 254, 255, 261, 255, 256, 261, 256, 257, 261, 257, 258, 261, 258, 259, 261, 259, 240, 261] rel material:binding = </Root/Looks/PreviewSurface_Blue> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.9510565, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877854, 0), (-0.5877852, -0.809017, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.809017, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.809017, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.9510565, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.2095654e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.30901688, 0.95105666, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901715, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.5877854, 0.8090168, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.30901694, -0.9510566, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.9510566, 0), (9.2095654e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.30901688, 0.95105666, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.30901688, 0.95105666, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901715, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877855, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.58778507, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510566, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.5877854, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.8090172, 0.5877851, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.58778507, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (9.209565e-8, -1, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.58778524, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.5877853, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209561e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.5877854, 0.80901694, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.80901706, 0.5877851, 0), (-0.5877854, 0.80901694, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (9.209565e-8, -1, 0), (8.8258304e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209565e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.309017, -0.9510565, 0), (8.8258304e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.5877851, -0.809017, 0), (0.309017, -0.9510565, 0), (0.58778524, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.80901694, -0.5877853, 0), (0.5877851, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.809017, 0), (0.80901694, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.95105654, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.95105654, 0), (-9.209561e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.5877855, 0.8090169, 0), (-0.30901712, 0.95105654, 0), (-0.5877854, 0.80901694, 0), (-0.80901706, 0.5877851, 0), (-0.8090172, 0.5877851, 0), (-0.5877855, 0.8090169, 0), (-0.80901706, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.80901694, -0.5877853, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.30901694, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (8.8258304e-8, -1, 0), (8.825832e-8, -1, 0), (-0.30901694, -0.95105654, 0), (8.8258304e-8, -1, 0), (0.309017, -0.9510565, 0), (0.30901703, -0.95105654, 0), (8.825832e-8, -1, 0), (0.309017, -0.9510565, 0), (0.5877851, -0.809017, 0), (0.5877853, -0.80901706, 0), (0.30901703, -0.95105654, 0), (0.5877851, -0.809017, 0), (0.80901694, -0.5877853, 0), (0.80901706, -0.5877853, 0), (0.5877853, -0.80901706, 0), (0.80901694, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.5877853, 0), (0.80901694, 0.58778524, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.5877853, 0), (0.5877851, 0.809017, 0), (0.58778507, 0.80901706, 0), (0.80901694, 0.58778524, 0), (0.5877851, 0.809017, 0), (0.3090168, 0.95105654, 0), (0.3090168, 0.9510566, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.95105654, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877855, 0.8090169, 0), (-0.8090172, 0.5877851, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.5877851, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.9510565, -0.30901694, 0), (-1, -0, 0), (-0.9510565, -0.309017, 0), (-0.80901694, -0.5877853, 0), (-0.8090169, -0.5877854, 0), (-0.9510565, -0.30901694, 0), (-0.80901694, -0.5877853, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (-0.30901694, -0.9510565, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.95105654, 0), (8.825832e-8, -1, 0), (9.209566e-8, -1, 0), (-0.30901694, -0.9510565, 0), (8.825832e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.30901703, -0.9510565, 0), (9.209566e-8, -1, 0), (0.30901703, -0.95105654, 0), (0.5877853, -0.80901706, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.80901706, 0), (0.80901706, -0.5877853, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.5877853, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.309016, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.80901694, 0.58778524, 0), (0.8090169, 0.5877853, 0), (0.9510569, 0.30901602, 0), (0.80901694, 0.58778524, 0), (0.58778507, 0.80901706, 0), (0.5877851, 0.80901706, 0), (0.8090169, 0.5877853, 0), (0.58778507, 0.80901706, 0), (0.3090168, 0.9510566, 0), (0.30901685, 0.9510566, 0), (0.5877851, 0.80901706, 0), (0.3090168, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.95105654, -0.309017, 0), (-1, -0, 0), (-0.9510565, -0.30901694, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.5877854, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.80901706, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (-0.3090169, -0.95105654, 0), (-0.5877852, -0.80901706, 0), (-0.30901694, -0.9510565, 0), (9.209566e-8, -1, 0), (8.8258325e-8, -1, 0), (-0.3090169, -0.95105654, 0), (9.209566e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.80901706, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.309016, 0), (0.9510569, 0.30901602, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.8090169, 0.5877853, 0), (0.8090169, 0.58778536, 0), (0.9510569, 0.3090161, 0), (0.8090169, 0.5877853, 0), (0.5877851, 0.80901706, 0), (0.58778524, 0.80901706, 0), (0.8090169, 0.58778536, 0), (0.5877851, 0.80901706, 0), (0.30901685, 0.9510566, 0), (0.3090169, 0.9510566, 0), (0.58778524, 0.80901706, 0), (0.30901685, 0.9510566, 0), (-9.209559e-8, 1, 0), (-9.209559e-8, 1, 0), (0.3090169, 0.9510566, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.30901712, 0.95105654, 0), (-9.209559e-8, 1, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.5877856, 0.8090168, 0), (-0.30901712, 0.95105654, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.8090172, 0.587785, 0), (-0.5877856, 0.8090168, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-0.95105654, 0.30901688, 0), (-0.8090172, 0.587785, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-1, -0, 0), (-0.95105654, 0.30901688, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.95105654, -0.3090171, 0), (-1, -0, 0), (-0.95105654, -0.309017, 0), (-0.8090169, -0.5877854, 0), (-0.8090169, -0.58778554, 0), (-0.95105654, -0.3090171, 0), (-0.8090169, -0.5877854, 0), (-0.5877852, -0.80901706, 0), (-0.5877852, -0.809017, 0), (-0.8090169, -0.58778554, 0), (-0.5877852, -0.80901706, 0), (-0.3090169, -0.95105654, 0), (-0.3090169, -0.9510566, 0), (-0.5877852, -0.809017, 0), (-0.3090169, -0.95105654, 0), (8.8258325e-8, -1, 0), (8.4420996e-8, -1, 0), (-0.3090169, -0.9510566, 0), (8.8258325e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.30901703, -0.9510565, 0), (8.4420996e-8, -1, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.5877853, -0.809017, 0), (0.30901703, -0.9510565, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.809017, -0.58778524, 0), (0.5877853, -0.809017, 0), (0.80901706, -0.58778524, 0), (0.9510565, -0.30901694, 0), (0.9510565, -0.30901694, 0), (0.809017, -0.58778524, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (1, -9.593294e-7, 0), (0.9510565, -0.30901694, 0), (1, -9.593294e-7, 0), (0.9510569, 0.30901602, 0), (0.9510569, 0.3090161, 0), (1, -9.593294e-7, 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, 5.1435853e-7, 1), (0, 7.347982e-7, 1), (0, -0, 1), (0, 5.1435853e-7, 1), (0, -5.143587e-7, 1), (0, -7.347983e-7, 1), (0, 7.347982e-7, 1), (0, -5.143587e-7, 1), (0, -0.0000020574357, 1), (0, -0.0000022778752, 1), (0, -7.347983e-7, 1), (0, -0.0000020574357, 1), (0, -0, 1), (0, -0, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 0.000001028718, 1), (0, -0, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 4.0413923e-7, 1), (0, -0, 1), (0, 5.1435893e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 6.062089e-7, 1), (0, 4.0413923e-7, 1), (0, 7.715385e-7, 0.99999994), (0, 1.9288467e-7, 1), (0, 1.1021976e-7, 1), (0, 6.062089e-7, 1), (0, 1.9288467e-7, 1), (0, -6.429489e-8, 1), (0, -9.1849834e-8, 1), (0, 1.1021976e-7, 1), (0, -6.429489e-8, 1), (0, -0, 1), (0, -0, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 8.082787e-7, 1), (0, -0, 1), (0, 0.0000010287182, 1), (0, 0.0000010287172, 1), (0, 8.0827857e-7, 1), (0, 8.082787e-7, 1), (0, 0.0000010287172, 1), (0, -0, 1), (0, -0, 1), (0, 8.0827857e-7, 1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, -1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 7.347982e-7, 1), (0, -1.7359638e-7, 1), (0, 7.347982e-7, 1), (0, -7.347983e-7, 1), (0, -1.7359638e-7, 1), (0, -7.347983e-7, 1), (0, -0.0000022778752, 1), (0, -1.7359638e-7, 1), (0, -0.0000022778752, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082783e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082783e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 4.0413923e-7, 1), (0, -1.7359638e-7, 1), (0, 4.0413923e-7, 1), (0, 6.062089e-7, 1), (0, -1.7359638e-7, 1), (0, 6.062089e-7, 1), (0, 1.1021976e-7, 1), (0, -1.7359638e-7, 1), (0, 1.1021976e-7, 1), (0, -9.1849834e-8, 1), (0, -1.7359638e-7, 1), (0, -9.1849834e-8, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, -0, 1), (0, -1.7359638e-7, 1), (0, -0, 1), (0, 8.082787e-7, 1), (0, -1.7359638e-7, 1), (0, 8.082787e-7, 1), (0, 8.0827857e-7, 1), (0, -1.7359638e-7, 1), (0, 8.0827857e-7, 1), (0, -0, 1), (0, -1.7359638e-7, 1)] ( interpolation = "faceVarying" ) point3f[] points = [(0.95105714, 0.30901718, 0), (0.80901754, 0.5877856, 0), (0.5877856, 0.8090175, 0), (0.30901715, 0.951057, 0), (0, 1.0000005, 0), (-0.30901715, 0.95105696, 0), (-0.5877855, 0.8090173, 0), (-0.80901724, 0.5877854, 0), (-0.9510568, 0.30901706, 0), (-1.0000002, -0, 0), (-0.9510568, -0.30901706, 0), (-0.8090172, -0.58778536, 0), (-0.58778536, -0.8090171, 0), (-0.30901706, -0.95105666, 0), (-2.9802322e-8, -1.0000001, 0), (0.30901697, -0.9510566, 0), (0.58778524, -0.80901706, 0), (0.809017, -0.5877853, 0), (0.95105654, -0.309017, 0), (1, -0, 0), (1.9021143, 0.61803436, 0), (1.6180351, 1.1755712, 0), (1.1755712, 1.618035, 0), (0.6180343, 1.902114, 0), (0, 2.000001, 0), (-0.6180343, 1.9021139, 0), (-1.175571, 1.6180346, 0), (-1.6180345, 1.1755708, 0), (-1.9021136, 0.6180341, 0), (-2.0000005, -0, 0), (-1.9021136, -0.6180341, 0), (-1.6180344, -1.1755707, 0), (-1.1755707, -1.6180342, 0), (-0.6180341, -1.9021133, 0), (-5.9604645e-8, -2.0000002, 0), (0.61803395, -1.9021132, 0), (1.1755705, -1.6180341, 0), (1.618034, -1.1755706, 0), (1.9021131, -0.618034, 0), (2, -0, 0), (1.9021143, 0.61803436, 1), (1.6180351, 1.1755712, 1), (1.1755712, 1.618035, 1), (0.6180343, 1.902114, 1), (0, 2.000001, 1), (-0.6180343, 1.9021139, 1), (-1.175571, 1.6180346, 1), (-1.6180345, 1.1755708, 1), (-1.9021136, 0.6180341, 1), (-2.0000005, -0, 1), (-1.9021136, -0.6180341, 1), (-1.6180344, -1.1755707, 1), (-1.1755707, -1.6180342, 1), (-0.6180341, -1.9021133, 1), (-5.9604645e-8, -2.0000002, 1), (0.61803395, -1.9021132, 1), (1.1755705, -1.6180341, 1), (1.618034, -1.1755706, 1), (1.9021131, -0.618034, 1), (2, -0, 1), (1.9021143, 0.61803436, 2), (1.6180351, 1.1755712, 2), (1.1755712, 1.618035, 2), (0.6180343, 1.902114, 2), (0, 2.000001, 2), (-0.6180343, 1.9021139, 2), (-1.175571, 1.6180346, 2), (-1.6180345, 1.1755708, 2), (-1.9021136, 0.6180341, 2), (-2.0000005, -0, 2), (-1.9021136, -0.6180341, 2), (-1.6180344, -1.1755707, 2), (-1.1755707, -1.6180342, 2), (-0.6180341, -1.9021133, 2), (-5.9604645e-8, -2.0000002, 2), (0.61803395, -1.9021132, 2), (1.1755705, -1.6180341, 2), (1.618034, -1.1755706, 2), (1.9021131, -0.618034, 2), (2, -0, 2), (1.9021143, 0.61803436, 3), (1.6180351, 1.1755712, 3), (1.1755712, 1.618035, 3), (0.6180343, 1.902114, 3), (0, 2.000001, 3), (-0.6180343, 1.9021139, 3), (-1.175571, 1.6180346, 3), (-1.6180345, 1.1755708, 3), (-1.9021136, 0.6180341, 3), (-2.0000005, -0, 3), (-1.9021136, -0.6180341, 3), (-1.6180344, -1.1755707, 3), (-1.1755707, -1.6180342, 3), (-0.6180341, -1.9021133, 3), (-5.9604645e-8, -2.0000002, 3), (0.61803395, -1.9021132, 3), (1.1755705, -1.6180341, 3), (1.618034, -1.1755706, 3), (1.9021131, -0.618034, 3), (2, -0, 3), (1.9021143, 0.61803436, 4), (1.6180351, 1.1755712, 4), (1.1755712, 1.618035, 4), (0.6180343, 1.902114, 4), (0, 2.000001, 4), (-0.6180343, 1.9021139, 4), (-1.175571, 1.6180346, 4), (-1.6180345, 1.1755708, 4), (-1.9021136, 0.6180341, 4), (-2.0000005, -0, 4), (-1.9021136, -0.6180341, 4), (-1.6180344, -1.1755707, 4), (-1.1755707, -1.6180342, 4), (-0.6180341, -1.9021133, 4), (-5.9604645e-8, -2.0000002, 4), (0.61803395, -1.9021132, 4), (1.1755705, -1.6180341, 4), (1.618034, -1.1755706, 4), (1.9021131, -0.618034, 4), (2, -0, 4), (1.9021143, 0.61803436, 5), (1.6180351, 1.1755712, 5), (1.1755712, 1.618035, 5), (0.6180343, 1.902114, 5), (0, 2.000001, 5), (-0.6180343, 1.9021139, 5), (-1.175571, 1.6180346, 5), (-1.6180345, 1.1755708, 5), (-1.9021136, 0.6180341, 5), (-2.0000005, -0, 5), (-1.9021136, -0.6180341, 5), (-1.6180344, -1.1755707, 5), (-1.1755707, -1.6180342, 5), (-0.6180341, -1.9021133, 5), (-5.9604645e-8, -2.0000002, 5), (0.61803395, -1.9021132, 5), (1.1755705, -1.6180341, 5), (1.618034, -1.1755706, 5), (1.9021131, -0.618034, 5), (2, -0, 5), (1.9021143, 0.61803436, 6), (1.6180351, 1.1755712, 6), (1.1755712, 1.618035, 6), (0.6180343, 1.902114, 6), (0, 2.000001, 6), (-0.6180343, 1.9021139, 6), (-1.175571, 1.6180346, 6), (-1.6180345, 1.1755708, 6), (-1.9021136, 0.6180341, 6), (-2.0000005, -0, 6), (-1.9021136, -0.6180341, 6), (-1.6180344, -1.1755707, 6), (-1.1755707, -1.6180342, 6), (-0.6180341, -1.9021133, 6), (-5.9604645e-8, -2.0000002, 6), (0.61803395, -1.9021132, 6), (1.1755705, -1.6180341, 6), (1.618034, -1.1755706, 6), (1.9021131, -0.618034, 6), (2, -0, 6), (1.9021143, 0.61803436, 7), (1.6180351, 1.1755712, 7), (1.1755712, 1.618035, 7), (0.6180343, 1.902114, 7), (0, 2.000001, 7), (-0.6180343, 1.9021139, 7), (-1.175571, 1.6180346, 7), (-1.6180345, 1.1755708, 7), (-1.9021136, 0.6180341, 7), (-2.0000005, -0, 7), (-1.9021136, -0.6180341, 7), (-1.6180344, -1.1755707, 7), (-1.1755707, -1.6180342, 7), (-0.6180341, -1.9021133, 7), (-5.9604645e-8, -2.0000002, 7), (0.61803395, -1.9021132, 7), (1.1755705, -1.6180341, 7), (1.618034, -1.1755706, 7), (1.9021131, -0.618034, 7), (2, -0, 7), (1.9021143, 0.61803436, 8), (1.6180351, 1.1755712, 8), (1.1755712, 1.618035, 8), (0.6180343, 1.902114, 8), (0, 2.000001, 8), (-0.6180343, 1.9021139, 8), (-1.175571, 1.6180346, 8), (-1.6180345, 1.1755708, 8), (-1.9021136, 0.6180341, 8), (-2.0000005, -0, 8), (-1.9021136, -0.6180341, 8), (-1.6180344, -1.1755707, 8), (-1.1755707, -1.6180342, 8), (-0.6180341, -1.9021133, 8), (-5.9604645e-8, -2.0000002, 8), (0.61803395, -1.9021132, 8), (1.1755705, -1.6180341, 8), (1.618034, -1.1755706, 8), (1.9021131, -0.618034, 8), (2, -0, 8), (1.9021143, 0.61803436, 9), (1.6180351, 1.1755712, 9), (1.1755712, 1.618035, 9), (0.6180343, 1.902114, 9), (0, 2.000001, 9), (-0.6180343, 1.9021139, 9), (-1.175571, 1.6180346, 9), (-1.6180345, 1.1755708, 9), (-1.9021136, 0.6180341, 9), (-2.0000005, -0, 9), (-1.9021136, -0.6180341, 9), (-1.6180344, -1.1755707, 9), (-1.1755707, -1.6180342, 9), (-0.6180341, -1.9021133, 9), (-5.9604645e-8, -2.0000002, 9), (0.61803395, -1.9021132, 9), (1.1755705, -1.6180341, 9), (1.618034, -1.1755706, 9), (1.9021131, -0.618034, 9), (2, -0, 9), (1.9021143, 0.61803436, 10), (1.6180351, 1.1755712, 10), (1.1755712, 1.618035, 10), (0.6180343, 1.902114, 10), (0, 2.000001, 10), (-0.6180343, 1.9021139, 10), (-1.175571, 1.6180346, 10), (-1.6180345, 1.1755708, 10), (-1.9021136, 0.6180341, 10), (-2.0000005, -0, 10), (-1.9021136, -0.6180341, 10), (-1.6180344, -1.1755707, 10), (-1.1755707, -1.6180342, 10), (-0.6180341, -1.9021133, 10), (-5.9604645e-8, -2.0000002, 10), (0.61803395, -1.9021132, 10), (1.1755705, -1.6180341, 10), (1.618034, -1.1755706, 10), (1.9021131, -0.618034, 10), (2, -0, 10), (0.95105714, 0.30901718, 10), (0.80901754, 0.5877856, 10), (0.5877856, 0.8090175, 10), (0.30901715, 0.951057, 10), (0, 1.0000005, 10), (-0.30901715, 0.95105696, 10), (-0.5877855, 0.8090173, 10), (-0.80901724, 0.5877854, 10), (-0.9510568, 0.30901706, 10), (-1.0000002, -0, 10), (-0.9510568, -0.30901706, 10), (-0.8090172, -0.58778536, 10), (-0.58778536, -0.8090171, 10), (-0.30901706, -0.95105666, 10), (-2.9802322e-8, -1.0000001, 10), (0.30901697, -0.9510566, 10), (0.58778524, -0.80901706, 10), (0.809017, -0.5877853, 10), (0.95105654, -0.309017, 10), (1, -0, 10), (0, -0, 0), (0, -0, 10)] color3f[] primvars:displayColor = [(0.4, 0.4, 0.4)] ( customData = { dictionary Maya = { bool generated = 1 } } ) matrix4d primvars:skel:geomBindTransform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 5, 0, 1) ) int[] primvars:skel:jointIndices = [0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 0, 1, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 1, 2, 0, 3, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 0, 4, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 1, 3, 4, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 2, 3, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 3, 2, 4, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 4, 3, 2, 1, 0, 0, 1, 2, 0, 0, 4, 3, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float[] primvars:skel:jointWeights = [0.9914398, 0.007798158, 0.00056962454, 0.00011597502, 0.00007644505, 0.9911016, 0.008106242, 0.00059212884, 0.00012055687, 0.000079465186, 0.99056286, 0.008597037, 0.0006279794, 0.00012785601, 0.00008427643, 0.98986334, 0.009234303, 0.0006745291, 0.0001373335, 0.00009052352, 0.9890612, 0.009965005, 0.0007279041, 0.00014820058, 0.00009768657, 0.98823136, 0.010720953, 0.0007831231, 0.00015944311, 0.0001050971, 0.9874593, 0.011424304, 0.0008345, 0.00016990342, 0.00011199202, 0.9868309, 0.011996779, 0.00087631703, 0.00017841732, 0.000117603966, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.98627734, 0.012501058, 0.0009131526, 0.000185917, 0.00012254738, 0.98642015, 0.012370941, 0.0009036481, 0.00018398189, 0.000121271856, 0.9868309, 0.011996776, 0.00087631674, 0.00017841726, 0.00011760393, 0.9874593, 0.011424296, 0.00083449937, 0.00016990327, 0.000111991925, 0.9882314, 0.010720941, 0.00078312214, 0.00015944292, 0.00010509697, 0.98906124, 0.009964993, 0.0007279031, 0.00014820037, 0.00009768643, 0.98986334, 0.009234288, 0.00067452795, 0.00013733325, 0.000090523354, 0.99056286, 0.008597019, 0.000627978, 0.00012785573, 0.00008427624, 0.9911016, 0.008106223, 0.0005921274, 0.000120556564, 0.00007946499, 0.9914398, 0.00779814, 0.0005696231, 0.00011597471, 0.000076444856, 0.991555, 0.00769326, 0.000561962, 0.000114414936, 0.00007541673, 0.9122157, 0.07669156, 0.008100551, 0.0017938938, 0.0011983064, 0.9107189, 0.077999204, 0.00823867, 0.0018244808, 0.0012187384, 0.90837055, 0.0800508, 0.008455371, 0.0018724698, 0.0012507946, 0.90539, 0.0826547, 0.008730407, 0.0019333775, 0.0012914804, 0.9020614, 0.085562706, 0.0090375645, 0.0020013985, 0.001336918, 0.8987084, 0.08849201, 0.009346972, 0.002069918, 0.0013826884, 0.89566404, 0.09115166, 0.009627897, 0.0021321299, 0.0014242453, 0.8932356, 0.09327323, 0.0098519875, 0.0021817551, 0.0014573947, 0.89167094, 0.09464017, 0.00999637, 0.0022137293, 0.0014787532, 0.89113086, 0.09511203, 0.01004621, 0.0022247664, 0.0014861259, 0.89167094, 0.09464017, 0.00999637, 0.0022137293, 0.0014787532, 0.8932356, 0.093273215, 0.009851985, 0.0021817544, 0.0014573943, 0.8956641, 0.09115162, 0.009627891, 0.0021321282, 0.0014242443, 0.89870846, 0.08849195, 0.009346963, 0.0020699156, 0.0013826869, 0.9020615, 0.08556263, 0.009037553, 0.002001396, 0.0013369162, 0.90539014, 0.0826546, 0.008730393, 0.0019333743, 0.0012914783, 0.9083707, 0.08005069, 0.008455355, 0.0018724661, 0.0012507922, 0.91071904, 0.07799908, 0.008238653, 0.0018244769, 0.0012187357, 0.9122158, 0.076691434, 0.008100533, 0.0017938897, 0.0011983038, 0.9127295, 0.07624267, 0.008053132, 0.0017833925, 0.0011912917, 0.79757524, 0.18422364, 0.01401941, 0.002549811, 0.0016318791, 0.79559076, 0.18602969, 0.01415685, 0.0025748082, 0.0016478773, 0.7925068, 0.18883635, 0.014370436, 0.0026136546, 0.0016727389, 0.78863347, 0.19236143, 0.014638692, 0.0026624443, 0.0017039644, 0.7843573, 0.19625309, 0.014934847, 0.002716308, 0.0017384371, 0.7801007, 0.20012699, 0.015229651, 0.002769926, 0.0017727527, 0.77627844, 0.20360558, 0.015494369, 0.0028180722, 0.0018035662, 0.77325755, 0.20635484, 0.015703585, 0.002856124, 0.0018279193, 0.771324, 0.20811452, 0.015837496, 0.0028804792, 0.0018435067, 0.77065885, 0.20871985, 0.015883561, 0.0028888572, 0.0018488687, 0.771324, 0.20811452, 0.015837496, 0.0028804792, 0.0018435067, 0.77325755, 0.20635481, 0.015703581, 0.0028561233, 0.0018279188, 0.7762785, 0.20360552, 0.015494359, 0.0028180701, 0.001803565, 0.7801008, 0.2001269, 0.015229637, 0.0027699233, 0.0017727509, 0.7843574, 0.19625297, 0.014934831, 0.0027163047, 0.001738435, 0.78863364, 0.19236128, 0.014638673, 0.0026624403, 0.0017039618, 0.79250705, 0.18883617, 0.014370412, 0.0026136497, 0.0016727359, 0.795591, 0.18602951, 0.014156824, 0.0025748028, 0.0016478739, 0.7975755, 0.18422346, 0.014019383, 0.0025498057, 0.0016318756, 0.7982601, 0.18360043, 0.01397197, 0.0025411823, 0.0016263566, 0.6015815, 0.37000003, 0.023125038, 0.0032929934, 0.0020004367, 0.60011387, 0.371363, 0.023210224, 0.0033051237, 0.0020078055, 0.5978496, 0.37346575, 0.023341643, 0.0033238376, 0.002019174, 0.5950339, 0.37608063, 0.02350507, 0.0033471093, 0.002033311, 0.5919611, 0.37893423, 0.023683418, 0.003372506, 0.002048739, 0.58893895, 0.38174084, 0.02385883, 0.0033974845, 0.0020639133, 0.5862557, 0.38423267, 0.024014562, 0.0034196607, 0.0020773849, 0.58415526, 0.3861833, 0.024136472, 0.0034370206, 0.0020879305, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.58236253, 0.3878482, 0.024240525, 0.0034518375, 0.0020969317, 0.5828201, 0.38742322, 0.024213966, 0.0034480554, 0.002094634, 0.5841553, 0.3861833, 0.024136467, 0.0034370197, 0.00208793, 0.5862558, 0.38423264, 0.02401455, 0.0034196584, 0.0020773832, 0.588939, 0.3817408, 0.02385881, 0.003397481, 0.002063911, 0.5919612, 0.37893417, 0.023683393, 0.003372502, 0.0020487367, 0.595034, 0.37608057, 0.02350504, 0.0033471042, 0.002033308, 0.5978497, 0.37346566, 0.023341607, 0.0033238316, 0.0020191702, 0.600114, 0.3713629, 0.023210185, 0.0033051171, 0.0020078013, 0.60158163, 0.36999995, 0.023124997, 0.0032929864, 0.0020004322, 0.6020899, 0.36952794, 0.023095496, 0.0032887855, 0.0019978804, 0.4740385, 0.47368097, 0.04484562, 0.0047368207, 0.0026980825, 0.4739865, 0.47372782, 0.04485005, 0.004737289, 0.0026983493, 0.47392222, 0.4737857, 0.044855524, 0.004737867, 0.0026986785, 0.47387025, 0.47383252, 0.04485995, 0.004738334, 0.0026989444, 0.4738504, 0.4738504, 0.044861637, 0.004738512, 0.002699046, 0.4738504, 0.4738504, 0.044861633, 0.004738512, 0.0026990457, 0.4738504, 0.4738504, 0.044861626, 0.0047385106, 0.002699045, 0.47385043, 0.47385043, 0.044861615, 0.004738509, 0.002699044, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861607, 0.0047385083, 0.0026990436, 0.47385043, 0.47385043, 0.04486161, 0.0047385087, 0.0026990438, 0.47385043, 0.47385043, 0.044861604, 0.004738508, 0.0026990434, 0.47385043, 0.47385043, 0.0448616, 0.0047385073, 0.002699043, 0.47385043, 0.47385043, 0.0448616, 0.004738507, 0.002699043, 0.47385043, 0.47385043, 0.044861592, 0.0047385064, 0.0026990424, 0.47387028, 0.47383255, 0.044859894, 0.0047383267, 0.0026989402, 0.47392228, 0.47378573, 0.04485546, 0.004737858, 0.0026986732, 0.47398654, 0.47372785, 0.04484998, 0.0047372794, 0.0026983435, 0.47403854, 0.47368103, 0.044845544, 0.0047368105, 0.0026980767, 0.47405842, 0.47366315, 0.04484385, 0.004736631, 0.0026979744, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.13027461, 0.009913892, 0.0052109896, 0.5210978, 0.33350274, 0.1302746, 0.009913891, 0.005210989, 0.5210978, 0.33350274, 0.1302746, 0.009913888, 0.0052109878, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.0052109873, 0.52109784, 0.33350274, 0.13027458, 0.009913887, 0.005210987, 0.52109784, 0.3335027, 0.13027456, 0.009913884, 0.0052109854, 0.5210979, 0.3335027, 0.13027455, 0.009913881, 0.0052109845, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.00991388, 0.0052109836, 0.5210979, 0.3335027, 0.13027453, 0.009913881, 0.005210984, 0.5210979, 0.3335027, 0.13027453, 0.009913879, 0.005210983, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913878, 0.005210982, 0.5210979, 0.3335027, 0.13027452, 0.009913877, 0.0052109817, 0.52109796, 0.3335027, 0.1302745, 0.009913876, 0.005210981, 0.52109796, 0.3335027, 0.1302745, 0.009913875, 0.0052109803, 0.52109796, 0.3335027, 0.1302745, 0.009913874, 0.0052109803, 0.52109796, 0.3335027, 0.13027449, 0.009913874, 0.00521098, 0.52109796, 0.3335027, 0.13027449, 0.009913873, 0.00521098, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523116, 0.009761293, 0.51307684, 0.32836935, 0.12826937, 0.020523114, 0.0097612925, 0.5130769, 0.32836935, 0.12826936, 0.02052311, 0.009761291, 0.5130769, 0.32836935, 0.12826934, 0.020523109, 0.009761289, 0.5130769, 0.32836935, 0.12826934, 0.020523107, 0.009761289, 0.51307696, 0.32836935, 0.12826933, 0.020523103, 0.009761286, 0.51307696, 0.32836935, 0.12826931, 0.020523097, 0.009761284, 0.51307696, 0.32836932, 0.12826931, 0.020523097, 0.009761283, 0.51307696, 0.32836932, 0.1282693, 0.020523096, 0.009761282, 0.51307696, 0.32836932, 0.12826931, 0.020523097, 0.009761283, 0.51307696, 0.32836932, 0.1282693, 0.020523094, 0.009761282, 0.513077, 0.32836932, 0.1282693, 0.020523092, 0.00976128, 0.513077, 0.32836932, 0.1282693, 0.02052309, 0.00976128, 0.513077, 0.32836932, 0.12826928, 0.020523088, 0.009761279, 0.513077, 0.32836932, 0.12826928, 0.020523086, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761278, 0.513077, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523084, 0.009761277, 0.5130771, 0.32836932, 0.12826927, 0.020523082, 0.009761276, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467423, 0.042467423, 0.01794249, 0.44856134, 0.44856134, 0.042467415, 0.042467415, 0.017942488, 0.44856134, 0.44856134, 0.042467408, 0.042467408, 0.017942484, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467404, 0.042467404, 0.01794248, 0.44856137, 0.44856137, 0.042467393, 0.042467393, 0.017942477, 0.44856137, 0.44856137, 0.042467386, 0.042467386, 0.017942473, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467378, 0.042467378, 0.01794247, 0.44856137, 0.44856137, 0.04246738, 0.04246738, 0.017942471, 0.4485614, 0.4485614, 0.042467374, 0.042467374, 0.017942468, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.04246737, 0.04246737, 0.017942466, 0.4485614, 0.4485614, 0.042467367, 0.042467367, 0.017942462, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.04246736, 0.04246736, 0.01794246, 0.4485614, 0.4485614, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467356, 0.042467356, 0.017942458, 0.44856143, 0.44856143, 0.042467352, 0.042467352, 0.017942457, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.123476736, 0.046760444, 0.019756293, 0.49390632, 0.3161002, 0.12347673, 0.04676044, 0.019756291, 0.49390635, 0.3161002, 0.12347672, 0.046760432, 0.019756287, 0.49390638, 0.3161002, 0.123476714, 0.04676043, 0.019756285, 0.49390638, 0.3161002, 0.12347671, 0.04676043, 0.019756285, 0.4939064, 0.3161002, 0.1234767, 0.04676042, 0.01975628, 0.49390644, 0.31610018, 0.123476684, 0.04676041, 0.019756276, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760406, 0.019756272, 0.49390644, 0.31610018, 0.12347668, 0.04676041, 0.019756274, 0.49390647, 0.31610018, 0.12347667, 0.046760403, 0.019756272, 0.49390647, 0.31610018, 0.12347666, 0.0467604, 0.01975627, 0.4939065, 0.31610018, 0.12347666, 0.0467604, 0.019756269, 0.4939065, 0.31610018, 0.123476654, 0.046760395, 0.019756267, 0.49390653, 0.31610018, 0.12347665, 0.046760388, 0.019756265, 0.49390653, 0.31610018, 0.12347664, 0.046760388, 0.019756263, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347664, 0.046760384, 0.019756263, 0.49390653, 0.31610018, 0.12347663, 0.046760384, 0.019756261, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.4631718, 0.2964301, 0.1157931, 0.1157931, 0.00881185, 0.46317184, 0.2964301, 0.1157931, 0.1157931, 0.008811848, 0.46317187, 0.2964301, 0.11579309, 0.11579309, 0.008811847, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.46317187, 0.2964301, 0.11579308, 0.11579308, 0.008811845, 0.4631719, 0.2964301, 0.115793064, 0.115793064, 0.008811844, 0.46317193, 0.2964301, 0.11579306, 0.11579306, 0.008811842, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.46317196, 0.2964301, 0.11579305, 0.11579305, 0.008811841, 0.46317196, 0.2964301, 0.11579304, 0.11579304, 0.00881184, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.115793034, 0.115793034, 0.008811838, 0.463172, 0.2964301, 0.11579303, 0.11579303, 0.008811837, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811836, 0.46317202, 0.2964301, 0.11579302, 0.11579302, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317202, 0.2964301, 0.11579301, 0.11579301, 0.008811835, 0.46317205, 0.2964301, 0.11579301, 0.11579301, 0.008811834, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.034493964, 0.003643427, 0.36434186, 0.36434186, 0.2331789, 0.03449396, 0.0036434263, 0.36434186, 0.36434186, 0.23317888, 0.034493953, 0.0036434254, 0.36434186, 0.36434186, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317888, 0.03449395, 0.003643425, 0.36434188, 0.36434188, 0.23317887, 0.03449394, 0.0036434238, 0.36434188, 0.36434188, 0.23317887, 0.034493934, 0.0036434229, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.03449393, 0.0036434222, 0.36434188, 0.36434188, 0.23317885, 0.034493934, 0.0036434224, 0.36434188, 0.36434188, 0.23317885, 0.034493927, 0.003643422, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.0036434212, 0.3643419, 0.3643419, 0.23317885, 0.034493923, 0.003643421, 0.3643419, 0.3643419, 0.23317884, 0.03449392, 0.0036434208, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.00364342, 0.3643419, 0.3643419, 0.23317884, 0.034493916, 0.0036434198, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317884, 0.034493912, 0.0036434196, 0.3643419, 0.3643419, 0.23317882, 0.03449391, 0.0036434191, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893747, 0.0021208618, 0.3723429, 0.3723429, 0.23829958, 0.014893745, 0.0021208613, 0.3723429, 0.3723429, 0.23829956, 0.014893741, 0.0021208609, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208606, 0.3723429, 0.3723429, 0.23829956, 0.0148937395, 0.0021208604, 0.3723429, 0.3723429, 0.23829955, 0.014893736, 0.00212086, 0.37234294, 0.37234294, 0.23829953, 0.014893732, 0.0021208592, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829953, 0.014893729, 0.0021208588, 0.37234294, 0.37234294, 0.23829953, 0.01489373, 0.002120859, 0.37234294, 0.37234294, 0.23829952, 0.014893728, 0.0021208585, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.0148937255, 0.0021208583, 0.37234294, 0.37234294, 0.23829952, 0.014893724, 0.0021208578, 0.37234294, 0.37234294, 0.2382995, 0.014893722, 0.0021208576, 0.37234297, 0.37234297, 0.2382995, 0.014893721, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208574, 0.37234297, 0.37234297, 0.2382995, 0.01489372, 0.0021208571, 0.37234297, 0.37234297, 0.2382995, 0.014893719, 0.0021208571, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.110920936, 0.0015352396, 0.00017747372, 0.44368318, 0.44368318, 0.11092093, 0.0015352394, 0.00017747369, 0.44368318, 0.44368318, 0.11092091, 0.0015352389, 0.00017747364, 0.44368318, 0.44368318, 0.110920906, 0.0015352387, 0.00017747362, 0.4436832, 0.4436832, 0.1109209, 0.0015352387, 0.0001774736, 0.4436832, 0.4436832, 0.11092088, 0.0015352382, 0.00017747354, 0.4436832, 0.4436832, 0.11092087, 0.0015352378, 0.0001774735, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352374, 0.00017747346, 0.4436832, 0.4436832, 0.11092086, 0.0015352377, 0.00017747347, 0.4436832, 0.4436832, 0.110920854, 0.0015352373, 0.00017747344, 0.44368324, 0.44368324, 0.11092085, 0.0015352371, 0.00017747341, 0.44368324, 0.44368324, 0.11092084, 0.001535237, 0.0001774734, 0.44368324, 0.44368324, 0.11092083, 0.0015352367, 0.00017747337, 0.44368324, 0.44368324, 0.110920824, 0.0015352365, 0.00017747334, 0.44368324, 0.44368324, 0.11092082, 0.0015352364, 0.00017747332, 0.44368324, 0.44368324, 0.11092082, 0.0015352364, 0.00017747332, 0.44368324, 0.44368324, 0.11092082, 0.0015352363, 0.00017747331, 0.44368324, 0.44368324, 0.11092081, 0.0015352361, 0.0001774733, 0.9999998, 1.7388004e-7, 1.08675025e-8, 0, 0, 0.5, 0.5, 0, 0, 0] ( elementSize = 5 interpolation = "vertex" ) float2[] primvars:st = [(0.57430136, 0.13210803), (0.5632045, 0.11032924), (0.626409, 0.064408496), (0.64860266, 0.10796607), (0.5459207, 0.0930455), (0.5918415, 0.02984102), (0.52414197, 0.08194867), (0.54828393, 0.0076473355), (0.5, 0.07812497), (0.5, -7.4505806e-8), (0.47585803, 0.08194867), (0.45171607, 0.0076473504), (0.45407927, 0.09304553), (0.4081585, 0.02984105), (0.43679553, 0.11032927), (0.37359107, 0.064408526), (0.4256987, 0.13210803), (0.3513974, 0.1079661), (0.421875, 0.15625), (0.34374997, 0.15625), (0.4256987, 0.18039197), (0.3513974, 0.2045339), (0.43679553, 0.20217073), (0.37359107, 0.24809146), (0.45407927, 0.21945447), (0.40815854, 0.28265893), (0.47585803, 0.2305513), (0.4517161, 0.3048526), (0.5, 0.234375), (0.5, 0.3125), (0.52414197, 0.2305513), (0.5482839, 0.3048526), (0.5459207, 0.21945447), (0.59184146, 0.28265893), (0.56320447, 0.20217073), (0.62640893, 0.24809146), (0.5743013, 0.18039197), (0.6486026, 0.2045339), (0.578125, 0.15625), (0.65625, 0.15625), (0.375, 0.3125), (0.3875, 0.3125), (0.3875, 0.350094), (0.375, 0.350094), (0.39999998, 0.3125), (0.39999998, 0.350094), (0.41249996, 0.3125), (0.41249996, 0.350094), (0.42499995, 0.3125), (0.42499995, 0.350094), (0.43749994, 0.3125), (0.43749994, 0.350094), (0.44999993, 0.3125), (0.44999993, 0.350094), (0.46249992, 0.3125), (0.46249992, 0.350094), (0.4749999, 0.3125), (0.4749999, 0.350094), (0.4874999, 0.3125), (0.4874999, 0.350094), (0.49999988, 0.3125), (0.49999988, 0.350094), (0.51249987, 0.3125), (0.51249987, 0.350094), (0.52499986, 0.3125), (0.52499986, 0.350094), (0.53749985, 0.3125), (0.53749985, 0.350094), (0.54999983, 0.3125), (0.54999983, 0.350094), (0.5624998, 0.3125), (0.5624998, 0.350094), (0.5749998, 0.3125), (0.5749998, 0.350094), (0.5874998, 0.3125), (0.5874998, 0.350094), (0.5999998, 0.3125), (0.5999998, 0.350094), (0.6124998, 0.3125), (0.6124998, 0.350094), (0.62499976, 0.3125), (0.62499976, 0.350094), (0.3875, 0.38768798), (0.375, 0.38768798), (0.39999998, 0.38768798), (0.41249996, 0.38768798), (0.42499995, 0.38768798), (0.43749994, 0.38768798), (0.44999993, 0.38768798), (0.46249992, 0.38768798), (0.4749999, 0.38768798), (0.4874999, 0.38768798), (0.49999988, 0.38768798), (0.51249987, 0.38768798), (0.52499986, 0.38768798), (0.53749985, 0.38768798), (0.54999983, 0.38768798), (0.5624998, 0.38768798), (0.5749998, 0.38768798), (0.5874998, 0.38768798), (0.5999998, 0.38768798), (0.6124998, 0.38768798), (0.62499976, 0.38768798), (0.3875, 0.42528197), (0.375, 0.42528197), (0.39999998, 0.42528197), (0.41249996, 0.42528197), (0.42499995, 0.42528197), (0.43749994, 0.42528197), (0.44999993, 0.42528197), (0.46249992, 0.42528197), (0.4749999, 0.42528197), (0.4874999, 0.42528197), (0.49999988, 0.42528197), (0.51249987, 0.42528197), (0.52499986, 0.42528197), (0.53749985, 0.42528197), (0.54999983, 0.42528197), (0.5624998, 0.42528197), (0.5749998, 0.42528197), (0.5874998, 0.42528197), (0.5999998, 0.42528197), (0.6124998, 0.42528197), (0.62499976, 0.42528197), (0.3875, 0.46287596), (0.375, 0.46287596), (0.39999998, 0.46287596), (0.41249996, 0.46287596), (0.42499995, 0.46287596), (0.43749994, 0.46287596), (0.44999993, 0.46287596), (0.46249992, 0.46287596), (0.4749999, 0.46287596), (0.4874999, 0.46287596), (0.49999988, 0.46287596), (0.51249987, 0.46287596), (0.52499986, 0.46287596), (0.53749985, 0.46287596), (0.54999983, 0.46287596), (0.5624998, 0.46287596), (0.5749998, 0.46287596), (0.5874998, 0.46287596), (0.5999998, 0.46287596), (0.6124998, 0.46287596), (0.62499976, 0.46287596), (0.3875, 0.5004699), (0.375, 0.5004699), (0.39999998, 0.5004699), (0.41249996, 0.5004699), (0.42499995, 0.5004699), (0.43749994, 0.5004699), (0.44999993, 0.5004699), (0.46249992, 0.5004699), (0.4749999, 0.5004699), (0.4874999, 0.5004699), (0.49999988, 0.5004699), (0.51249987, 0.5004699), (0.52499986, 0.5004699), (0.53749985, 0.5004699), (0.54999983, 0.5004699), (0.5624998, 0.5004699), (0.5749998, 0.5004699), (0.5874998, 0.5004699), (0.5999998, 0.5004699), (0.6124998, 0.5004699), (0.62499976, 0.5004699), (0.3875, 0.5380639), (0.375, 0.5380639), (0.39999998, 0.5380639), (0.41249996, 0.5380639), (0.42499995, 0.5380639), (0.43749994, 0.5380639), (0.44999993, 0.5380639), (0.46249992, 0.5380639), (0.4749999, 0.5380639), (0.4874999, 0.5380639), (0.49999988, 0.5380639), (0.51249987, 0.5380639), (0.52499986, 0.5380639), (0.53749985, 0.5380639), (0.54999983, 0.5380639), (0.5624998, 0.5380639), (0.5749998, 0.5380639), (0.5874998, 0.5380639), (0.5999998, 0.5380639), (0.6124998, 0.5380639), (0.62499976, 0.5380639), (0.3875, 0.57565784), (0.375, 0.57565784), (0.39999998, 0.57565784), (0.41249996, 0.57565784), (0.42499995, 0.57565784), (0.43749994, 0.57565784), (0.44999993, 0.57565784), (0.46249992, 0.57565784), (0.4749999, 0.57565784), (0.4874999, 0.57565784), (0.49999988, 0.57565784), (0.51249987, 0.57565784), (0.52499986, 0.57565784), (0.53749985, 0.57565784), (0.54999983, 0.57565784), (0.5624998, 0.57565784), (0.5749998, 0.57565784), (0.5874998, 0.57565784), (0.5999998, 0.57565784), (0.6124998, 0.57565784), (0.62499976, 0.57565784), (0.3875, 0.6132518), (0.375, 0.6132518), (0.39999998, 0.6132518), (0.41249996, 0.6132518), (0.42499995, 0.6132518), (0.43749994, 0.6132518), (0.44999993, 0.6132518), (0.46249992, 0.6132518), (0.4749999, 0.6132518), (0.4874999, 0.6132518), (0.49999988, 0.6132518), (0.51249987, 0.6132518), (0.52499986, 0.6132518), (0.53749985, 0.6132518), (0.54999983, 0.6132518), (0.5624998, 0.6132518), (0.5749998, 0.6132518), (0.5874998, 0.6132518), (0.5999998, 0.6132518), (0.6124998, 0.6132518), (0.62499976, 0.6132518), (0.3875, 0.65084577), (0.375, 0.65084577), (0.39999998, 0.65084577), (0.41249996, 0.65084577), (0.42499995, 0.65084577), (0.43749994, 0.65084577), (0.44999993, 0.65084577), (0.46249992, 0.65084577), (0.4749999, 0.65084577), (0.4874999, 0.65084577), (0.49999988, 0.65084577), (0.51249987, 0.65084577), (0.52499986, 0.65084577), (0.53749985, 0.65084577), (0.54999983, 0.65084577), (0.5624998, 0.65084577), (0.5749998, 0.65084577), (0.5874998, 0.65084577), (0.5999998, 0.65084577), (0.6124998, 0.65084577), (0.62499976, 0.65084577), (0.3875, 0.6884397), (0.375, 0.6884397), (0.39999998, 0.6884397), (0.41249996, 0.6884397), (0.42499995, 0.6884397), (0.43749994, 0.6884397), (0.44999993, 0.6884397), (0.46249992, 0.6884397), (0.4749999, 0.6884397), (0.4874999, 0.6884397), (0.49999988, 0.6884397), (0.51249987, 0.6884397), (0.52499986, 0.6884397), (0.53749985, 0.6884397), (0.54999983, 0.6884397), (0.5624998, 0.6884397), (0.5749998, 0.6884397), (0.5874998, 0.6884397), (0.5999998, 0.6884397), (0.6124998, 0.6884397), (0.62499976, 0.6884397), (0.6486026, 0.89203393), (0.62640893, 0.93559146), (0.56320447, 0.8896707), (0.5743013, 0.86789197), (0.59184146, 0.97015893), (0.5459207, 0.90695447), (0.5482839, 0.9923526), (0.52414197, 0.9180513), (0.5, 1), (0.5, 0.921875), (0.4517161, 0.9923526), (0.47585803, 0.9180513), (0.40815854, 0.97015893), (0.45407927, 0.90695447), (0.37359107, 0.93559146), (0.43679553, 0.8896707), (0.3513974, 0.89203393), (0.4256987, 0.86789197), (0.34374997, 0.84375), (0.421875, 0.84375), (0.3513974, 0.79546607), (0.4256987, 0.81960803), (0.37359107, 0.75190854), (0.43679553, 0.7978293), (0.4081585, 0.71734107), (0.45407927, 0.78054553), (0.45171607, 0.69514734), (0.47585803, 0.76944864), (0.5, 0.68749994), (0.5, 0.765625), (0.54828393, 0.69514734), (0.52414197, 0.76944864), (0.5918415, 0.717341), (0.5459207, 0.7805455), (0.626409, 0.7519085), (0.5632045, 0.7978293), (0.64860266, 0.79546607), (0.57430136, 0.81960803), (0.65625, 0.84375), (0.578125, 0.84375), (0.5, 0.15), (0.5, 0.8375)] ( customData = { dictionary Maya = { int UVSetIndex = 0 } } interpolation = "faceVarying" ) int[] primvars:st:indices = [0, 1, 2, 3, 1, 4, 5, 2, 4, 6, 7, 5, 6, 8, 9, 7, 8, 10, 11, 9, 10, 12, 13, 11, 12, 14, 15, 13, 14, 16, 17, 15, 16, 18, 19, 17, 18, 20, 21, 19, 20, 22, 23, 21, 22, 24, 25, 23, 24, 26, 27, 25, 26, 28, 29, 27, 28, 30, 31, 29, 30, 32, 33, 31, 32, 34, 35, 33, 34, 36, 37, 35, 36, 38, 39, 37, 38, 0, 3, 39, 40, 41, 42, 43, 41, 44, 45, 42, 44, 46, 47, 45, 46, 48, 49, 47, 48, 50, 51, 49, 50, 52, 53, 51, 52, 54, 55, 53, 54, 56, 57, 55, 56, 58, 59, 57, 58, 60, 61, 59, 60, 62, 63, 61, 62, 64, 65, 63, 64, 66, 67, 65, 66, 68, 69, 67, 68, 70, 71, 69, 70, 72, 73, 71, 72, 74, 75, 73, 74, 76, 77, 75, 76, 78, 79, 77, 78, 80, 81, 79, 43, 42, 82, 83, 42, 45, 84, 82, 45, 47, 85, 84, 47, 49, 86, 85, 49, 51, 87, 86, 51, 53, 88, 87, 53, 55, 89, 88, 55, 57, 90, 89, 57, 59, 91, 90, 59, 61, 92, 91, 61, 63, 93, 92, 63, 65, 94, 93, 65, 67, 95, 94, 67, 69, 96, 95, 69, 71, 97, 96, 71, 73, 98, 97, 73, 75, 99, 98, 75, 77, 100, 99, 77, 79, 101, 100, 79, 81, 102, 101, 83, 82, 103, 104, 82, 84, 105, 103, 84, 85, 106, 105, 85, 86, 107, 106, 86, 87, 108, 107, 87, 88, 109, 108, 88, 89, 110, 109, 89, 90, 111, 110, 90, 91, 112, 111, 91, 92, 113, 112, 92, 93, 114, 113, 93, 94, 115, 114, 94, 95, 116, 115, 95, 96, 117, 116, 96, 97, 118, 117, 97, 98, 119, 118, 98, 99, 120, 119, 99, 100, 121, 120, 100, 101, 122, 121, 101, 102, 123, 122, 104, 103, 124, 125, 103, 105, 126, 124, 105, 106, 127, 126, 106, 107, 128, 127, 107, 108, 129, 128, 108, 109, 130, 129, 109, 110, 131, 130, 110, 111, 132, 131, 111, 112, 133, 132, 112, 113, 134, 133, 113, 114, 135, 134, 114, 115, 136, 135, 115, 116, 137, 136, 116, 117, 138, 137, 117, 118, 139, 138, 118, 119, 140, 139, 119, 120, 141, 140, 120, 121, 142, 141, 121, 122, 143, 142, 122, 123, 144, 143, 125, 124, 145, 146, 124, 126, 147, 145, 126, 127, 148, 147, 127, 128, 149, 148, 128, 129, 150, 149, 129, 130, 151, 150, 130, 131, 152, 151, 131, 132, 153, 152, 132, 133, 154, 153, 133, 134, 155, 154, 134, 135, 156, 155, 135, 136, 157, 156, 136, 137, 158, 157, 137, 138, 159, 158, 138, 139, 160, 159, 139, 140, 161, 160, 140, 141, 162, 161, 141, 142, 163, 162, 142, 143, 164, 163, 143, 144, 165, 164, 146, 145, 166, 167, 145, 147, 168, 166, 147, 148, 169, 168, 148, 149, 170, 169, 149, 150, 171, 170, 150, 151, 172, 171, 151, 152, 173, 172, 152, 153, 174, 173, 153, 154, 175, 174, 154, 155, 176, 175, 155, 156, 177, 176, 156, 157, 178, 177, 157, 158, 179, 178, 158, 159, 180, 179, 159, 160, 181, 180, 160, 161, 182, 181, 161, 162, 183, 182, 162, 163, 184, 183, 163, 164, 185, 184, 164, 165, 186, 185, 167, 166, 187, 188, 166, 168, 189, 187, 168, 169, 190, 189, 169, 170, 191, 190, 170, 171, 192, 191, 171, 172, 193, 192, 172, 173, 194, 193, 173, 174, 195, 194, 174, 175, 196, 195, 175, 176, 197, 196, 176, 177, 198, 197, 177, 178, 199, 198, 178, 179, 200, 199, 179, 180, 201, 200, 180, 181, 202, 201, 181, 182, 203, 202, 182, 183, 204, 203, 183, 184, 205, 204, 184, 185, 206, 205, 185, 186, 207, 206, 188, 187, 208, 209, 187, 189, 210, 208, 189, 190, 211, 210, 190, 191, 212, 211, 191, 192, 213, 212, 192, 193, 214, 213, 193, 194, 215, 214, 194, 195, 216, 215, 195, 196, 217, 216, 196, 197, 218, 217, 197, 198, 219, 218, 198, 199, 220, 219, 199, 200, 221, 220, 200, 201, 222, 221, 201, 202, 223, 222, 202, 203, 224, 223, 203, 204, 225, 224, 204, 205, 226, 225, 205, 206, 227, 226, 206, 207, 228, 227, 209, 208, 229, 230, 208, 210, 231, 229, 210, 211, 232, 231, 211, 212, 233, 232, 212, 213, 234, 233, 213, 214, 235, 234, 214, 215, 236, 235, 215, 216, 237, 236, 216, 217, 238, 237, 217, 218, 239, 238, 218, 219, 240, 239, 219, 220, 241, 240, 220, 221, 242, 241, 221, 222, 243, 242, 222, 223, 244, 243, 223, 224, 245, 244, 224, 225, 246, 245, 225, 226, 247, 246, 226, 227, 248, 247, 227, 228, 249, 248, 230, 229, 250, 251, 229, 231, 252, 250, 231, 232, 253, 252, 232, 233, 254, 253, 233, 234, 255, 254, 234, 235, 256, 255, 235, 236, 257, 256, 236, 237, 258, 257, 237, 238, 259, 258, 238, 239, 260, 259, 239, 240, 261, 260, 240, 241, 262, 261, 241, 242, 263, 262, 242, 243, 264, 263, 243, 244, 265, 264, 244, 245, 266, 265, 245, 246, 267, 266, 246, 247, 268, 267, 247, 248, 269, 268, 248, 249, 270, 269, 271, 272, 273, 274, 272, 275, 276, 273, 275, 277, 278, 276, 277, 279, 280, 278, 279, 281, 282, 280, 281, 283, 284, 282, 283, 285, 286, 284, 285, 287, 288, 286, 287, 289, 290, 288, 289, 291, 292, 290, 291, 293, 294, 292, 293, 295, 296, 294, 295, 297, 298, 296, 297, 299, 300, 298, 299, 301, 302, 300, 301, 303, 304, 302, 303, 305, 306, 304, 305, 307, 308, 306, 307, 309, 310, 308, 309, 271, 274, 310, 1, 0, 311, 4, 1, 311, 6, 4, 311, 8, 6, 311, 10, 8, 311, 12, 10, 311, 14, 12, 311, 16, 14, 311, 18, 16, 311, 20, 18, 311, 22, 20, 311, 24, 22, 311, 26, 24, 311, 28, 26, 311, 30, 28, 311, 32, 30, 311, 34, 32, 311, 36, 34, 311, 38, 36, 311, 0, 38, 311, 274, 273, 312, 273, 276, 312, 276, 278, 312, 278, 280, 312, 280, 282, 312, 282, 284, 312, 284, 286, 312, 286, 288, 312, 288, 290, 312, 290, 292, 312, 292, 294, 312, 294, 296, 312, 296, 298, 312, 298, 300, 312, 300, 302, 312, 302, 304, 312, 304, 306, 312, 306, 308, 312, 308, 310, 312, 310, 274, 312] uniform token[] skel:blendShapes = ["pCylinder4"] rel skel:blendShapeTargets = </Root/BLENDWEIGHT_group1/BLENDWEIGHT_pCylinder2/pCylinder4> uniform token[] skel:joints = ["BLENDWEIGHT_joint1", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3/BLENDWEIGHT_joint4", "BLENDWEIGHT_joint1/BLENDWEIGHT_joint2/BLENDWEIGHT_joint3/BLENDWEIGHT_joint4/BLENDWEIGHT_joint5"] rel skel:skeleton = </Root/BLENDWEIGHT_group1/BLENDWEIGHT_joint1> custom uniform int skel:skinningMethod = 0 uniform token subdivisionScheme = "none" matrix4d xformOp:transform = ( (1, 0, 0, 0), (0, 1, 0, 0), (0, 0, 1, 0), (0, 0, 0, 1) ) uniform token[] xformOpOrder = ["xformOp:transform"] def BlendShape "pCylinder4" { uniform vector3f[] offsets = [(0.055679083, -0, 0), (0.055679083, -0, 0), (0.0076562166, -0, 0), (0.007656336, -1.2980017e-19, 0), (2.5285296, -0, 0), (2.52853, -0, 0), (1.9332323, -0, 0), (0.724032, -0, 0), (0.015010702, -0, 0), (0.0150107145, -0, 0), (0.7240318, -0, 0), (1.9332323, -2.390851e-19, 0), (4.553535, -0, 0), (4.5535345, -0, 0), (3.667693, -0, 0), (1.7491772, -0, 0), (0.2682255, -0, 0), (0.26822555, -0, 0), (1.7491773, -0, 0), (3.6676931, -6.64955e-19, 0), (4.553535, -0, 0), (4.5535345, -0, 0), (3.667693, -0, 0), (1.7491772, -0, 0), (0.2682255, -0, 0), (0.26822555, -0, 0), (1.7491773, -0, 0), (3.6676931, -1.6402312e-18, 0), (2.5285296, -0, 0), (2.52853, -0, 0), (1.9332323, -0, 0), (0.724032, -0, 0), (0.015010702, -0, 0), (0.0150107145, -0, 0), (0.7240318, -0, 0), (1.9332323, -2.3276786e-18, 0), (0.055679083, -0, 0), (0.055679083, -0, 0), (0.0076562166, -0, 0), (0.007656336, -3.0373284e-18, 0)] uniform uint[] pointIndices = [60, 61, 62, 79, 80, 81, 82, 83, 84, 97, 98, 99, 100, 101, 102, 103, 104, 117, 118, 119, 120, 121, 122, 123, 124, 137, 138, 139, 140, 141, 142, 143, 144, 157, 158, 159, 160, 161, 162, 179] } } } def DistantLight "DistantLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 color3f color = (1, 1, 1) bool enableColorTemperature = 0 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 = (45, 0, 90) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Scope "Looks" { def Material "PreviewSurface_Red" { token outputs:surface.connect = </Root/Looks/PreviewSurface_Red/Shader.outputs:surface> def Shader "Shader" { reorder properties = ["inputs:diffuseColor", "inputs:emissiveColor", "inputs:useSpecularWorkflow", "inputs:specularColor", "inputs:metallic", "inputs:roughness", "inputs:clearcoat", "inputs:clearcoatRoughness", "inputs:opacity", "inputs:opacityThreshold", "inputs:ior", "inputs:normal", "inputs:displacement", "inputs:occlusion", "outputs:surface", "outputs:displacement"] uniform token info:id = "UsdPreviewSurface" float inputs:clearcoat = 0 float inputs:clearcoatRoughness = 0.01 color3f inputs:diffuseColor = (0.9704641, 0.028663522, 0.028663522) float inputs:displacement = 0 color3f inputs:emissiveColor = (0, 0, 0) float inputs:ior = 1.5 float inputs:metallic = 0 normal3f inputs:normal = (0, 0, 1) float inputs:occlusion = 1 float inputs:opacity = 1 float inputs:opacityThreshold = 0 float inputs:roughness = 0.5 ( customData = { dictionary range = { double max = 1 double min = 0 } } ) color3f inputs:specularColor = (0, 0, 0) int inputs:useSpecularWorkflow = 0 ( customData = { dictionary range = { int max = 1 int min = 0 } } ) token outputs:displacement token outputs:surface } } def Material "PreviewSurface_Blue" { token outputs:surface.connect = </Root/Looks/PreviewSurface_Blue/Shader.outputs:surface> def Shader "Shader" { reorder properties = ["inputs:diffuseColor", "inputs:emissiveColor", "inputs:useSpecularWorkflow", "inputs:specularColor", "inputs:metallic", "inputs:roughness", "inputs:clearcoat", "inputs:clearcoatRoughness", "inputs:opacity", "inputs:opacityThreshold", "inputs:ior", "inputs:normal", "inputs:displacement", "inputs:occlusion", "outputs:surface", "outputs:displacement"] uniform token info:id = "UsdPreviewSurface" float inputs:clearcoat = 0 float inputs:clearcoatRoughness = 0.01 color3f inputs:diffuseColor = (0.02002886, 0.22740516, 0.9493671) float inputs:displacement = 0 color3f inputs:emissiveColor = (0, 0, 0) float inputs:ior = 1.5 float inputs:metallic = 0 normal3f inputs:normal = (0, 0, 1) float inputs:occlusion = 1 float inputs:opacity = 1 float inputs:opacityThreshold = 0 float inputs:roughness = 0.5 ( customData = { dictionary range = { double max = 1 double min = 0 } } ) color3f inputs:specularColor = (0, 0, 0) int inputs:useSpecularWorkflow = 0 ( customData = { dictionary range = { int max = 1 int min = 0 } } ) token outputs:displacement token outputs:surface } } } }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/assets/skelcylinder_anim.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.435988509696834, 14.405080044311397, 19.391780817550533) double3 target = (0.03090846538543701, 0, 4.986700773239136) } dictionary Right = { double3 position = (0, -50002.000000953674, -1.1102674335673174e-11) double radius = 500 } dictionary Top = { double3 position = (0, 0, 50012.000000953674) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { } } defaultPrim = "Animation" endTimeCode = 120 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def SkelAnimation "Animation" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] float[] blendShapeWeights.timeSamples = { 0: [0], 1: [0], 2: [0.02284429], 3: [0.08548186], 4: [0.17906976], 5: [0.29476503], 6: [0.42372474], 7: [0.5571059], 8: [0.6860656], 9: [0.8017609], 10: [0.8953488], 11: [0.95798635], 12: [0.98083067], 13: [0.94185597], 14: [0.83410245], 15: [0.67132586], 16: [0.46728197], 17: [0.23572654], 18: [-0.009584664], 19: [-0.25489587], 20: [-0.4864513], 21: [-0.6904952], 22: [-0.8532718], 23: [-0.9610253], 24: [-1], 25: [-0.972], 26: [-0.896], 27: [-0.784], 28: [-0.648], 29: [-0.5], 30: [-0.352], 31: [-0.216], 32: [-0.104], 33: [-0.028], 34: [0], 35: [0], 36: [0], 37: [0], 38: [0], 39: [0], 40: [0], 41: [0], 42: [0], 43: [0], 44: [0], 45: [0], 46: [0], 47: [0], 48: [0], } uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/assets/skelcylinder_anim_flat2.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.435988509696834, 14.405080044311397, 19.391780817550533) double3 target = (0.03090846538543701, 0, 4.986700773239136) } dictionary Right = { double3 position = (0, -50002.000000953674, -1.1102674335673174e-11) double radius = 500 } dictionary Top = { double3 position = (0, 0, 50012.000000953674) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "ZAnimation" endTimeCode = 120 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def SkelAnimation "ZAnimation" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] float[] blendShapeWeights.timeSamples = { 0: [0], 1: [0], 2: [0.02284429], 3: [0.08548186], 4: [0.17906976], 5: [0.29476503], 6: [0.42372474], 7: [0.5571059], 8: [0.6860656], 9: [0.8017609], 10: [0.8953488], 11: [0.95798635], 12: [0.98083067], 13: [0.94185597], 14: [0.83410245], 15: [0.67132586], 16: [0.46728197], 17: [0.23572654], 18: [-0.009584664], 19: [-0.25489587], 20: [-0.4864513], 21: [-0.6904952], 22: [-0.8532718], 23: [-0.9610253], 24: [-1], 25: [-0.972], 26: [-0.896], 27: [-0.784], 28: [-0.648], 29: [-0.5], 30: [-0.352], 31: [-0.216], 32: [-0.104], 33: [-0.028], 34: [0], 35: [0], 36: [0], 37: [0], 38: [0], 39: [0], 40: [0], 41: [0], 42: [0], 43: [0], 44: [0], 45: [0], 46: [0], 47: [0], 48: [0], } uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 2, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/assets/skelcylinder_anim_static.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.435988509696834, 14.405080044311397, 19.391780817550533) double3 target = (0.03090846538543701, 0, 4.986700773239136) } dictionary Right = { double3 position = (0, -50002.000000953674, -1.1102674335673174e-11) double radius = 500 } dictionary Top = { double3 position = (0, 0, 50012.000000953674) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "Animation_Static" endTimeCode = 120 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def SkelAnimation "Animation_Static" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] half3[] scales = [(1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] }
omniverse-code/kit/exts/omni.rtx.tests/data/usd/hydra/skel/assets/skelcylinder_anim_flat.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (50002.06181788446, -1.1102688061789144e-11, 0) double radius = 500 } dictionary Perspective = { double3 position = (14.435988509696834, 14.405080044311397, 19.391780817550533) double3 target = (0.03090846538543701, 0, 4.986700773239136) } dictionary Right = { double3 position = (0, -50002.000000953674, -1.1102674335673174e-11) double radius = 500 } dictionary Top = { double3 position = (0, 0, 50012.000000953674) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary renderSettings = { } } defaultPrim = "Animation_Flat" endTimeCode = 120 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Z" ) def SkelAnimation "Animation_Flat" { uniform token[] blendShapes = ["BlendShape1"] float[] blendShapeWeights = [0] float[] blendShapeWeights.timeSamples = { 0: [0], 1: [0], 2: [0.02284429], 3: [0.08548186], 4: [0.17906976], 5: [0.29476503], 6: [0.42372474], 7: [0.5571059], 8: [0.6860656], 9: [0.8017609], 10: [0.8953488], 11: [0.95798635], 12: [0.98083067], 13: [0.94185597], 14: [0.83410245], 15: [0.67132586], 16: [0.46728197], 17: [0.23572654], 18: [-0.009584664], 19: [-0.25489587], 20: [-0.4864513], 21: [-0.6904952], 22: [-0.8532718], 23: [-0.9610253], 24: [-1], 25: [-0.972], 26: [-0.896], 27: [-0.784], 28: [-0.648], 29: [-0.5], 30: [-0.352], 31: [-0.216], 32: [-0.104], 33: [-0.028], 34: [0], 35: [0], 36: [0], 37: [0], 38: [0], 39: [0], 40: [0], 41: [0], 42: [0], 43: [0], 44: [0], 45: [0], 46: [0], 47: [0], 48: [0], } uniform token[] joints = ["joint1", "joint1/joint2", "joint1/joint2/joint3", "joint1/joint2/joint3/joint4", "joint1/joint2/joint3/joint4/joint5"] quatf[] rotations = [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)] quatf[] rotations.timeSamples = { 1: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (1, 0, 0, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 2: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9997641, 6.236958e-33, -0.021720996, 3.2909726e-35), (0.99999624, 0, 0.0027424013, -3.8518746e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 3: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9986183, 5.8084842e-33, -0.05255021, -3.3373637e-34), (0.99994415, 1.2349047e-32, 0.010570527, -1.7324539e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958437e-17, 0.7071068)], 4: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9952759, 8.419972e-36, -0.09708719, 1.0719098e-34), (0.99973816, 6.126507e-33, 0.022884618, -2.4343037e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 5: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.988742, -1.2090756e-35, -0.14963076, -1.38100015e-33), (0.99923605, 6.168866e-33, 0.039081782, -7.4085352e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.607839e-17, 0.7071068)], 6: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9788749, 5.472309e-33, -0.20446007, -6.8019916e-34), (0.9982843, -6.460354e-33, 0.05855423, -2.5918643e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 7: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96668077, -2.5870152e-18, -0.25598502, 9.769391e-18), (0.9967394, -2.8562294e-33, 0.08068847, 1.3613418e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 8: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95428663, 5.9712946e-33, -0.29889306, 1.958205e-33), (0.9944864, 0, 0.10486588, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 9: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94461256, 8.614725e-36, -0.32818753, 7.714734e-35), (0.991453, 6.0044964e-33, 0.13046467, -1.6081013e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 5.904622e-18, 0.7071068)], 10: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94077206, 3.717885e-35, -0.33903977, 1.0155367e-34), (0.98762035, 0, 0.15686323, 3.120114e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, 3.8818763e-18, 0.7071068)], 11: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9475057, 2.7740445e-33, -0.3197388, 1.0104582e-33), (0.98303014, 6.32211e-33, 0.18344428, -1.2847009e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 12: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.96377945, 2.030969e-35, -0.26670045, 3.223818e-33), (0.9777874, 0, 0.20959933, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 13: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9823428, 2.5188462e-35, -0.18709004, 1.1281289e-34), (0.9720599, -6.564091e-33, 0.23473288, 3.8275936e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -9.041538e-17, 0.7071068)], 14: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99605024, -5.8366924e-37, -0.088791266, 1.0322589e-34), (0.96607393, 8.521877e-33, 0.25826564, -1.5549254e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.2742998e-17, 0.7071068)], 15: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9998168, 6.591292e-39, 0.019142117, 2.892867e-34), (0.9601061, -2.4566083e-33, 0.27963609, 5.7946145e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 16: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99192166, 2.9470727e-34, 0.12685224, 1.6248996e-33), (0.9544722, -3.8604024e-33, 0.2983, -5.2504598e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 17: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9744616, 3.76873e-34, 0.2245543, 1.7342746e-33), (0.9495131, -3.956008e-18, 0.3137275, -1.197307e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -7.4622756e-17, 0.7071068)], 18: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95286465, 2.7759677e-33, 0.3033958, 5.5855252e-33), (0.9455773, -4.273506e-18, 0.3253975, -1.2418443e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.7019346e-17, 0.7071068)], 19: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93457264, -4.4242698e-33, 0.35577238, -6.938029e-34), (0.9430011, 1.6338732e-33, 0.33278978, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -8.54472e-17, 0.7071068)], 20: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9271051, -3.814175e-35, 0.37480146, 1.1338883e-34), (0.94208485, 2.8210937e-33, 0.33537456, -5.508395e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 21: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.93118745, -5.4463813e-18, 0.36454076, -1.3912303e-17), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.4996595e-17, 0.7071068)], 22: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.94169426, -3.3711516e-35, 0.3364699, 1.1016753e-34), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.46769e-17, 0.7071068)], 23: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.95563346, -3.2409287e-33, 0.29455864, 1.6095242e-33), (0.94208485, 1.635462e-33, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 24: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.97005093, -6.9114435e-37, 0.24290179, 9.65094e-35), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 25: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.98256904, -2.9500564e-34, 0.18589815, -1.4612545e-33), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.958982e-17, 0.7071068)], 26: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9917404, -1.2776737e-35, 0.12826133, 9.540489e-35), (0.94208485, -1.8695705e-33, 0.33537456, -2.605372e-33), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 27: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9971905, -7.216408e-36, 0.07490789, 9.706919e-35), (0.94208485, 0, 0.33537456, 0), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 28: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99952555, 1.0151991e-18, 0.03080118, -3.1284174e-20), (0.94208485, 1.6482417e-34, 0.33537456, -3.5473118e-34), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -4.3297806e-17, 0.7071068)], 29: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.99999964, 2.7427435e-20, 0.00083214947, -2.2823734e-23), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -5.677449e-17, 0.7071068)], 30: [(6.123234e-17, 0.69984984, -4.3737645e-17, 0.71428996), (0.9999479, 1.9756056e-36, -0.010210691, -8.708908e-37), (0.94208485, -4.556414e-18, 0.33537456, -1.2799207e-17), (1, 0, 0, 0), (6.123235e-17, 0.7071068, -6.772901e-17, 0.7071068)], } half3[] scales = [(1, 3, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1), (1, 1, 1)] float3[] translations = [(0.061816987, 0, -0.026598545), (3.0272298, -9.8607613e-32, 7.910339e-16), (3, -2.929001e-18, 1.0318135e-14), (3, -7.502302e-18, 1.03042574e-14), (1, -2.5007674e-18, 3.4347525e-15)] }